diff options
46 files changed, 4451 insertions, 3908 deletions
diff --git a/CHANGES b/CHANGES index f803f02d..6b997925 100644 --- a/CHANGES +++ b/CHANGES @@ -1,9 +1,26 @@ --- $LynxId: CHANGES,v 1.340 2008/12/26 01:23:02 tom Exp $ +-- $LynxId: CHANGES,v 1.349 2008/12/30 01:09:07 tom Exp $ =============================================================================== Changes since Lynx 2.8 release =============================================================================== 2008-12-?? (2.8.7dev.12) +* move EBCDIC tables to separate file LYebcdic.c to simplify building test + driver for parsdate.c on z/OS -PG +* fix an off-by-one difference between UTF-8/non-UTF-8 comparisons in + HText_appendCharacter() which would leave an extra character wrapped in some + cases, e.g., in the options menu when field-numbering was turned on -TD +* remove logic in GridText.c for ignoring "excess" characters in a field when + fields are numbered, since highlighting of wrapped multiline links works, + and this feature is incompatible with it -TD +* remove obsolete CF_VARARGS configure check -TD +* modify configure script to build with MinGW and MSYS -TD +* modify configure macro CF_XOPEN_SOURCE to define _ALL_SOURCE for AIX 6.x -TD +* implement a LONG_LIST equivalent for ftp, configurable as FTP_FORMAT -TD +* adapt some of the SH_EX ifdef'd features (TD): + + extra keypad conversions in LYgetch_for() are for PDCurses. + + add -show_cfg option. + + entify embedded blanks in HTDOS_wwwName(). + + treat null file-pointer in HTParseFile(HTFormat() as end-of-file. * change the phase during which "-help" option is processed, to allow it to reflect the configured values of the options in the help-message (prompted by discussion with Dan Jacobson regarding Debian #507083) -TD @@ -22,8 +39,7 @@ Changes since Lynx 2.8 release (patch by Takao Fujiwara) * add "*.dbg" to suffixes to ignore in autoconf script when checking for executables and objects produced by C compile (report by PG, for z/OS) -TD -* modify LYmktime.c and parsdate.y to convert between EBCDIC/ASCII as needed - to work on z/OS (report/analysis by PG) -TD +* modify parsdate.y to convert between EBCDIC/ASCII to work on z/OS -PG, -TD * modify src/makefile.in to make it simple for a build script running in a separate directory to regenerate parsdate.c (prompted by discussion with PG regarding building on z/OS which uses EBCDIC) -TD @@ -60,7 +76,7 @@ Changes since Lynx 2.8 release * correct handling of the option value from configure "--with-ssl", which was not being used in the search-list (report by PGNet) -TD * update configure script macros -TD - CF_CURSES_LIBS - add "pdcurses", e.g., to link with mingw + CF_CURSES_LIBS - add "pdcurses", e.g., to link with MinGW CF_UTF8_LIB - use CF_FIND_LINKAGE to better work with BSD ports. CF_XOPEN_SOURCE - add case for dragonfly * document width-limitation in manpage, fix a few stray 1024's still in the @@ -457,7 +473,7 @@ Changes since Lynx 2.8 release of getfile() is unneeded, we restore the link number as well as the line number (Debian #386561) -TD * modify makefile.msc to allow building with slang configuration -TD -* fixes for keyboard input of slang configuration in win32 (not mingw) which +* fixes for keyboard input of slang configuration in win32 (not MinGW) which was broken in 2.8.3dev.5 -TD * fix LYgetTableString(), making the monochome appearance with an empty ".lss" file for color-style look like the non-color-style (Debian #386216) -TD diff --git a/LYMessages_en.h b/LYMessages_en.h index 02330261..acd7bc5b 100644 --- a/LYMessages_en.h +++ b/LYMessages_en.h @@ -1,5 +1,5 @@ /* - * $LynxId: LYMessages_en.h,v 1.68 2008/01/08 00:50:53 tom Exp $ + * $LynxId: LYMessages_en.h,v 1.69 2008/12/26 22:20:58 tom Exp $ * * Lynx - Hypertext navigation system * @@ -761,6 +761,9 @@ #define SEGMENT_UP_TO gettext("Up to ") #define SEGMENT_CURRENT_DIR gettext("Current directory is ") +/* HTFTP.c */ +#define ENTRY_IS_SYMBOLIC_LINK gettext("Symbolic Link") + /* HTGopher.c */ #define FAILED_NO_RESPONSE gettext("No response from server!") #define GOPHER_CSO_INDEX gettext("CSO index") diff --git a/PACKAGE/lynx-curses.iss b/PACKAGE/lynx-curses.iss index 9be57902..dbc950d6 100644 --- a/PACKAGE/lynx-curses.iss +++ b/PACKAGE/lynx-curses.iss @@ -1,92 +1,11 @@ -; $LynxId: lynx-curses.iss,v 1.4 2008/09/24 22:43:18 tom Exp $ +; $LynxId: lynx-curses.iss,v 1.5 2008/12/29 13:21:17 tom Exp $ ; -; This script assumes environment variables have been set, e.g., to point to -; data which is used by the installer: +; This is an installer for the "color-style" flavor of Lynx. ; -; LYNX_DOCSDIR - files and subdirectories installed from Unix with "make install-doc" -; LYNX_HELPDIR - files and subdirectories installed from Unix with "make install-help" -; -; TODO: install curses or slang dll with executable - -#define MyAppName "Lynx" -#define MyAppVerName "Lynx 2.8.7dev.10" -#define MyAppPublisher "Thomas E Dickey" -#define MyAppURL "http://lynx.isc.org" -#define MyAppExeName "lynx.exe" - -#define BinsSrcDir GetEnv("LYNX_BINDIR") -#if BinsSrcDir == "" -#define BinsSrcDir "..\bin" -#endif - -#define DocsSrcDir GetEnv("LYNX_DOCSDIR") -#if DocsSrcDir == "" -#define DocsSrcDir "..\docs" -#endif - -#define HelpSrcDir GetEnv("LYNX_HELPDIR") -#if HelpSrcDir == "" -#define HelpSrcDir "..\lynx_help" -#endif - -[Setup] -AppName={#MyAppName} -AppVerName={#MyAppVerName} -AppPublisher={#MyAppPublisher} -AppPublisherURL={#MyAppURL} -AppSupportURL={#MyAppURL} -AppUpdatesURL={#MyAppURL} -DefaultDirName={pf}\{#MyAppName} -DefaultGroupName={#MyAppName} -AllowNoIcons=yes -LicenseFile=..\COPYHEADER -InfoBeforeFile=..\README -OutputDir=..\PACKAGE\lynx-setup -OutputBaseFilename=lynx287dev-setup -Compression=lzma -SolidCompression=yes - -[Languages] -Name: "english"; MessagesFile: "compiler:Default.isl" - -[Tasks] -Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked - -[Dirs] -Name: "{app}\doc" -Name: "{app}\doc\samples" -Name: "{app}\doc\test" -Name: "{app}\help" -Name: "{app}\help\keystrokes" -Name: "{app}\icon" -Name: "{app}\tmp" - -[Files] -#emit 'Source: "' + BinsSrcDir + '\lynx-cs.exe"; DestDir: "{app}"; DestName: lynx.exe; Flags: ignoreversion' -#emit 'Source: "' + DocsSrcDir + '\*.*"; DestDir: "{app}\doc"; Flags: ' -#emit 'Source: "' + DocsSrcDir + '\samples\*.*"; DestDir: "{app}\doc\samples"; Flags: ' -#emit 'Source: "' + DocsSrcDir + '\test\*.*"; DestDir: "{app}\doc\test"; Flags: ' -#emit 'Source: "' + HelpSrcDir + '\*.*"; DestDir: "{app}\help"; Flags: ' -#emit 'Source: "' + HelpSrcDir + '\keystrokes\*.*"; DestDir: "{app}\help\keystrokes"; Flags: ' - -; some of these data files are from an earlier installer by Claudio Santambrogio -Source: "..\samples\lynx.ico"; DestDir: "{app}\icon" -Source: "..\samples\lynx.bat"; DestDir: "{app}" -Source: "..\samples\jumps.htm"; DestDir: "{app}" -Source: "..\samples\home.htm"; DestDir: "{app}" -Source: "..\samples\lynx_bookmarks.htm"; DestDir: "{app}" -Source: "..\samples\opaque.lss"; DestDir: "{app}" -Source: "..\samples\lynx.bat"; DestDir: "{app}" -Source: "..\samples\lynx-demo.cfg"; DestDir: "{app}" -Source: "..\lynx.man"; DestDir: "{app}" -Source: "..\lynx.cfg"; DestDir: "{app}" -; NOTE: Don't use "Flags: ignoreversion" on any shared system files - -[Icons] -Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; IconFilename: ..\samples\lynx.ico -Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}" -Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon; IconFilename: ..\samples\lynx.ico +; The script assumes environment variables have been set, e.g., to point to +; data which is used by the installer (see "lynx.lss" for details). -[Run] -Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#MyAppName}}"; Flags: nowait postinstall skipifsilent +#define SetupBaseName "lynx-cs" +#define SourceExeName "lynx-cs.exe" +#include "lynx.iss" diff --git a/PACKAGE/lynx-slang.iss b/PACKAGE/lynx-slang.iss new file mode 100644 index 00000000..9f42316e --- /dev/null +++ b/PACKAGE/lynx-slang.iss @@ -0,0 +1,12 @@ +; $LynxId: lynx-slang.iss,v 1.1 2008/12/29 13:28:38 tom Exp $ +; +; This is an installer for the "color-style" flavor of Lynx. +; +; The script assumes environment variables have been set, e.g., to point to +; data which is used by the installer (see "lynx.lss" for details). + +#define SetupBaseName "lynx-sl" +#define SourceExeName "lynx-slang.exe" +#define NoScreenDll + +#include "lynx.iss" diff --git a/PACKAGE/lynx.iss b/PACKAGE/lynx.iss new file mode 100644 index 00000000..977918da --- /dev/null +++ b/PACKAGE/lynx.iss @@ -0,0 +1,126 @@ +; $LynxId: lynx.iss,v 1.1 2008/12/29 13:27:28 tom Exp $ +; +; This is the BASE script for different flavors of the installer for Lynx. +; It can be overridden to select different source-executables (and their associated +; screen library, e.g., pdcurses or slang). +; +; The script assumes environment variables have been set, e.g., to point to +; data which is used by the installer: +; +; LYNX_BINDIR - directory containing lynx.exe (or different names) +; LYNX_DLLSDIR - directory containing curses or slang dlls. +; LYNX_DOCSDIR - files and subdirectories installed from Unix with "make install-doc" +; LYNX_HELPDIR - files and subdirectories installed from Unix with "make install-help" + +#include "version.iss" + +#ifndef MyAppExeName +#define MyAppExeName "lynx.exe" +#endif + +#ifndef SourceExeName +#define SourceExeName "lynx.exe" +#endif + +#ifndef NoScreenDll +#ifndef ScreenDllName +#define ScreenDllName "pdcurses.dll" +#endif +#endif + +#ifndef SetupBaseName +#define SetupBaseName "lynx" +#endif + +#ifndef BinsSrcDir +#define BinsSrcDir GetEnv("LYNX_BINDIR") +#if BinsSrcDir == "" +#define BinsSrcDir "..\bin" +#endif +#endif + +#ifndef DllsSrcDir +#define DllsSrcDir GetEnv("LYNX_DLLSDIR") +#if DllsSrcDir == "" +#define DllsSrcDir "..\dlls" +#endif +#endif + +#ifndef DocsSrcDir +#define DocsSrcDir GetEnv("LYNX_DOCSDIR") +#if DocsSrcDir == "" +#define DocsSrcDir "..\docs" +#endif +#endif + +#ifndef HelpSrcDir +#define HelpSrcDir GetEnv("LYNX_HELPDIR") +#if HelpSrcDir == "" +#define HelpSrcDir "..\lynx_help" +#endif +#endif + +[Setup] +AppName={#MyAppName} +AppVerName={#MyAppVerName} +AppPublisher={#MyAppPublisher} +AppPublisherURL={#MyAppURL} +AppSupportURL={#MyAppURL} +AppUpdatesURL={#MyAppURL} +DefaultDirName={pf}\{#MyAppName} +DefaultGroupName={#MyAppName} +AllowNoIcons=yes +LicenseFile=..\COPYHEADER +InfoBeforeFile=..\README +OutputDir=..\PACKAGE\lynx-setup +#emit 'OutputBaseFilename=' + SetupBaseName + LYNX_VERSION + '-setup' +Compression=lzma +SolidCompression=yes + +[Languages] +Name: "english"; MessagesFile: "compiler:Default.isl" + +[Tasks] +Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked + +[Dirs] +Name: "{app}\doc" +Name: "{app}\doc\samples" +Name: "{app}\doc\test" +Name: "{app}\help" +Name: "{app}\help\keystrokes" +Name: "{app}\icon" +Name: "{app}\tmp" + +[Files] +#emit 'Source: "' + BinsSrcDir + '\' + SourceExeName + '"; DestDir: "{app}"; DestName: ' + MyAppExeName + '; Flags: ignoreversion' +#ifndef NoScreenDll +#emit 'Source: "' + DllsSrcDir + '\' + ScreenDllName + '"; DestDir: "{app}"; DestName: ' + ScreenDllName + '; Flags: ignoreversion' +#endif +#emit 'Source: "' + DocsSrcDir + '\*.*"; DestDir: "{app}\doc"; Flags: ' +#emit 'Source: "' + DocsSrcDir + '\samples\*.*"; DestDir: "{app}\doc\samples"; Flags: ' +#emit 'Source: "' + DocsSrcDir + '\test\*.*"; DestDir: "{app}\doc\test"; Flags: ' +#emit 'Source: "' + HelpSrcDir + '\*.*"; DestDir: "{app}\help"; Flags: ' +#emit 'Source: "' + HelpSrcDir + '\keystrokes\*.*"; DestDir: "{app}\help\keystrokes"; Flags: ' + +; some of these data files are from an earlier installer by Claudio Santambrogio +Source: "..\samples\lynx.ico"; DestDir: "{app}\icon" +Source: "..\samples\lynx.bat"; DestDir: "{app}" +Source: "..\samples\jumps.htm"; DestDir: "{app}" +Source: "..\samples\home.htm"; DestDir: "{app}" +Source: "..\samples\lynx_bookmarks.htm"; DestDir: "{app}" +Source: "..\samples\opaque.lss"; DestDir: "{app}" +Source: "..\samples\lynx.bat"; DestDir: "{app}" +Source: "..\samples\lynx-demo.cfg"; DestDir: "{app}" +Source: "..\lynx.man"; DestDir: "{app}" +Source: "..\lynx.cfg"; DestDir: "{app}" +; NOTE: Don't use "Flags: ignoreversion" on any shared system files + +[Icons] +Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; IconFilename: ..\samples\lynx.ico +Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}" +Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon; IconFilename: ..\samples\lynx.ico + +[Run] +Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#MyAppName}}"; Flags: nowait postinstall skipifsilent + diff --git a/PACKAGE/version.iss b/PACKAGE/version.iss new file mode 100644 index 00000000..bf73963c --- /dev/null +++ b/PACKAGE/version.iss @@ -0,0 +1,9 @@ +; version used for Inno Setup files. + +; $Format: "#define LYNX_VERSION \"$ProjectVersion$\""$ +#define LYNX_VERSION "2.8.7dev.11" + +#define MyAppName "Lynx" +#define MyAppPublisher "Thomas E Dickey" +#define MyAppURL "http://lynx.isc.org" +#define MyAppVerName "Lynx " + LYNX_VERSION diff --git a/WWW/Library/Implementation/HTDOS.c b/WWW/Library/Implementation/HTDOS.c index d560954c..abf24dfb 100644 --- a/WWW/Library/Implementation/HTDOS.c +++ b/WWW/Library/Implementation/HTDOS.c @@ -1,5 +1,6 @@ -/* DOS specific routines - +/* + * $LynxId: HTDOS.c,v 1.35 2008/12/26 18:07:02 tom Exp $ + * DOS specific routines */ #include <HTUtils.h> @@ -20,8 +21,15 @@ static char *copy_plus(char **result, const char *source) { int length = strlen(source); + int extra = 10; + int n; + + for (n = 0; n < length; ++n) { + if (source[n] == ' ') + ++extra; + } - HTSprintf0(result, "%-*s", length + 10, source); + HTSprintf0(result, "%-*s", length + extra, source); (*result)[length] = 0; return (*result); } @@ -40,8 +48,6 @@ const char *HTDOS_wwwName(const char *dosname) static char *wwwname = NULL; char *cp_url = copy_plus(&wwwname, dosname); int wwwname_len; - -#ifdef SH_EX char ch; while ((ch = *dosname) != '\0') { @@ -62,11 +68,6 @@ const char *HTDOS_wwwName(const char *dosname) dosname++; } *cp_url = '\0'; -#else - for (; *cp_url != '\0'; cp_url++) - if (*cp_url == '\\') - *cp_url = '/'; /* convert dos backslash to unix-style */ -#endif wwwname_len = strlen(wwwname); if (wwwname_len > 1) diff --git a/WWW/Library/Implementation/HTFTP.c b/WWW/Library/Implementation/HTFTP.c index 1ca9f47a..bbf5e35a 100644 --- a/WWW/Library/Implementation/HTFTP.c +++ b/WWW/Library/Implementation/HTFTP.c @@ -1,5 +1,5 @@ /* - * $LynxId: HTFTP.c,v 1.81 2008/09/18 21:34:25 tom Exp $ + * $LynxId: HTFTP.c,v 1.86 2008/12/26 22:19:03 tom Exp $ * * File Transfer Protocol (FTP) Client * for a WorldWideWeb browser @@ -148,12 +148,12 @@ typedef struct _connection { # define LY_SOCKLEN socklen_t #endif -#define PUTC(c) (*targetClass.put_character) (target, c) -#define PUTS(s) (*targetClass.put_string) (target, s) -#define START(e) (*targetClass.start_element) (target, e, 0, 0, -1, 0) -#define END(e) (*targetClass.end_element) (target, e, 0) -#define FREE_TARGET (*targetClass._free) (target) -#define ABORT_TARGET (*targetClass._free) (target) +#define PUTC(c) (*target->isa->put_character) (target, c) +#define PUTS(s) (*target->isa->put_string) (target, s) +#define START(e) (*target->isa->start_element) (target, e, 0, 0, -1, 0) +#define END(e) (*target->isa->end_element) (target, e, 0) +#define FREE_TARGET (*target->isa->_free) (target) +#define ABORT_TARGET (*target->isa->_free) (target) struct _HTStructured { const HTStructuredClass *isa; @@ -1469,11 +1469,17 @@ static void set_years_and_date(void) typedef struct _EntryInfo { char *filename; - char *linkname; + char *linkname; /* symbolic link, if any */ char *type; char *date; - unsigned int size; + unsigned long size; BOOLEAN display; /* show this entry? */ +#ifdef LONG_LIST + unsigned long file_links; + char *file_mode; + char *file_user; + char *file_group; +#endif } EntryInfo; static void free_entryinfo_struct_contents(EntryInfo *entry_info) @@ -1623,25 +1629,29 @@ static void parse_eplf_line(char *line, * Extract the name, size, and date from an ls -l line. */ static void parse_ls_line(char *line, - EntryInfo *entry_info) + EntryInfo *entry) { + char *next; + char *cp; int i, j; - int base = 1; - int size_num = 0; + unsigned long base = 1; + unsigned long size_num = 0; for (i = strlen(line) - 1; (i > 13) && (!isspace(UCH(line[i])) || !is_ls_date(&line[i - 12])); - i--) ; /* null body */ + i--) { + ; /* null body */ + } line[i] = '\0'; if (i > 13) { - StrAllocCopy(entry_info->date, &line[i - 12]); + StrAllocCopy(entry->date, &line[i - 12]); /* replace the 4th location with nbsp if it is a space or zero */ - if (entry_info->date[4] == ' ' || entry_info->date[4] == '0') - entry_info->date[4] = HT_NON_BREAK_SPACE; + if (entry->date[4] == ' ' || entry->date[4] == '0') + entry->date[4] = HT_NON_BREAK_SPACE; /* make sure year or time is flush right */ - if (entry_info->date[11] == ' ') { + if (entry->date[11] == ' ') { for (j = 11; j > 6; j--) { - entry_info->date[j] = entry_info->date[j - 1]; + entry->date[j] = entry->date[j - 1]; } } } @@ -1651,9 +1661,56 @@ static void parse_ls_line(char *line, base *= 10; j--; } - entry_info->size = size_num; - StrAllocCopy(entry_info->filename, &line[i + 1]); -} /* parse_ls_line() */ + entry->size = size_num; + StrAllocCopy(entry->filename, &line[i + 1]); + +#ifdef LONG_LIST + line[j] = '\0'; + + /* + * Extract the file-permissions, as a string. + */ + if ((cp = strchr(line, ' ')) != 0 + && (cp - line) == 10) { + *cp = '\0'; + StrAllocCopy(entry->file_mode, line); + *cp = ' '; + } + + /* + * Next is the link-count. + */ + next = 0; + entry->file_links = strtol(cp, &next, 10); + if (next == 0 || *next != ' ') { + entry->file_links = 0; + next = cp; + } else { + cp = next; + } + /* + * Next is the user-name. + */ + while (isspace(UCH(*cp))) + ++cp; + if ((next = strchr(cp, ' ')) != 0) + *next = '\0'; + if (*cp != '\0') + StrAllocCopy(entry->file_user, cp); + /* + * Next is the group-name (perhaps). + */ + if (next != NULL) { + cp = (next + 1); + while (isspace(UCH(*cp))) + ++cp; + if ((next = strchr(cp, ' ')) != 0) + *next = '\0'; + if (*cp != '\0') + StrAllocCopy(entry->file_group, cp); + } +#endif +} /* * Extract the name and size info and whether it refers to a directory from a @@ -1730,7 +1787,7 @@ static void parse_dls_line(char *line, cps = LYSkipBlanks(&line[23]); if (!strncmp(cps, "-> ", 3) && cps[3] != '\0' && cps[3] != ' ') { - StrAllocCopy(entry_info->type, gettext("Symbolic Link")); + StrAllocCopy(entry_info->type, ENTRY_IS_SYMBOLIC_LINK); StrAllocCopy(entry_info->linkname, LYSkipBlanks(cps + 3)); entry_info->size = 0; /* don't display size */ } @@ -1893,7 +1950,7 @@ static void parse_vms_dir_entry(char *line, } /* Wrap it up */ - CTRACE((tfp, "HTFTP: VMS filename: %s date: %s size: %u\n", + CTRACE((tfp, "HTFTP: VMS filename: %s date: %s size: %lu\n", entry_info->filename, NonNull(entry_info->date), entry_info->size)); @@ -1965,7 +2022,7 @@ static void parse_ms_windows_dir_entry(char *line, } /* Wrap it up */ - CTRACE((tfp, "HTFTP: MS Windows filename: %s date: %s size: %u\n", + CTRACE((tfp, "HTFTP: MS Windows filename: %s date: %s size: %lu\n", entry_info->filename, NonNull(entry_info->date), entry_info->size)); @@ -2213,7 +2270,7 @@ static void parse_cms_dir_entry(char *line, } /* Wrap it up. */ - CTRACE((tfp, "HTFTP: VM/CMS filename: %s date: %s size: %u\n", + CTRACE((tfp, "HTFTP: VM/CMS filename: %s date: %s size: %lu\n", entry_info->filename, NonNull(entry_info->date), entry_info->size)); @@ -2236,15 +2293,10 @@ static EntryInfo *parse_dir_entry(char *entry, BOOLEAN remove_size = FALSE; char *cp; - entry_info = (EntryInfo *) malloc(sizeof(EntryInfo)); + entry_info = typecalloc(EntryInfo); if (entry_info == NULL) outofmem(__FILE__, "parse_dir_entry"); - entry_info->filename = NULL; - entry_info->linkname = NULL; - entry_info->type = NULL; - entry_info->date = NULL; - entry_info->size = 0; entry_info->display = TRUE; switch (server_type) { @@ -2347,7 +2399,7 @@ static EntryInfo *parse_dir_entry(char *entry, * It's a symbolic link, does the user care about knowing if it is * symbolic? I think so since it might be a directory. */ - StrAllocCopy(entry_info->type, gettext("Symbolic Link")); + StrAllocCopy(entry_info->type, ENTRY_IS_SYMBOLIC_LINK); remove_size = TRUE; /* size is not useful */ /* @@ -2499,9 +2551,11 @@ static EntryInfo *parse_dir_entry(char *entry, } /* switch (server_type) */ +#ifndef LONG_LIST if (remove_size && entry_info->size) { entry_info->size = 0; } +#endif if (entry_info->filename && strlen(entry_info->filename) > 3) { if (((cp = strrchr(entry_info->filename, '.')) != NULL && @@ -2544,7 +2598,7 @@ static EntryInfo *parse_dir_entry(char *entry, } return (entry_info); -} /* parse_dir_entry */ +} static int compare_EntryInfo_structs(EntryInfo *entry1, EntryInfo *entry2) { @@ -2675,6 +2729,219 @@ static int compare_EntryInfo_structs(EntryInfo *entry1, EntryInfo *entry2) } } +#ifdef LONG_LIST +static char *FormatStr(char **bufp, + char *start, + const char *value) +{ + char fmt[512]; + + if (*start) { + sprintf(fmt, "%%%.*ss", (int) sizeof(fmt) - 3, start); + HTSprintf(bufp, fmt, value); + } else if (*bufp && !(value && *value)) { + ; + } else if (value) { + StrAllocCat(*bufp, value); + } + return *bufp; +} + +static char *FormatNum(char **bufp, + char *start, + long value) +{ + char fmt[512]; + + if (*start) { + sprintf(fmt, "%%%.*sld", (int) sizeof(fmt) - 3, start); + HTSprintf(bufp, fmt, value); + } else { + sprintf(fmt, "%ld", value); + StrAllocCat(*bufp, fmt); + } + return *bufp; +} + +static void FlushParse(HTStructured * target, char **buf) +{ + if (*buf && **buf) { + PUTS(*buf); + **buf = '\0'; + } +} + +static void LYListFmtParse(const char *fmtstr, + EntryInfo *data, + HTStructured * target, + char *tail) +{ + char c; + char *s; + char *end; + char *start; + char *str = NULL; + char *buf = NULL; + BOOL is_directory = (data->file_mode != 0 && + (TOUPPER(data->file_mode[0]) == 'D')); + BOOL is_symlinked = (data->file_mode != 0 && + (TOUPPER(data->file_mode[0]) == 'L')); + BOOL remove_size = (is_directory || is_symlinked); + + StrAllocCopy(str, fmtstr); + s = str; + end = str + strlen(str); + while (*s) { + start = s; + while (*s) { + if (*s == '%') { + if (*(s + 1) == '%') /* literal % */ + s++; + else + break; + } + s++; + } + /* s is positioned either at a % or at \0 */ + *s = '\0'; + if (s > start) { /* some literal chars. */ + StrAllocCat(buf, start); + } + if (s == end) + break; + start = ++s; + while (isdigit(UCH(*s)) || *s == '.' || *s == '-' || *s == ' ' || + *s == '#' || *s == '+' || *s == '\'') + s++; + c = *s; /* the format char. or \0 */ + *s = '\0'; + + switch (c) { + case '\0': + StrAllocCat(buf, start); + continue; + + case 'A': + case 'a': /* anchor */ + FlushParse(target, &buf); + HTDirEntry(target, tail, data->filename); + FormatStr(&buf, start, data->filename); + PUTS(buf); + END(HTML_A); + *buf = '\0'; + if (c != 'A' && data->linkname != 0) { + PUTS(" -> "); + PUTS(data->linkname); + } + break; + + case 'T': /* MIME type */ + case 't': /* MIME type description */ + if (is_directory) { + if (c != 'T') { + FormatStr(&buf, start, ENTRY_IS_DIRECTORY); + } else { + FormatStr(&buf, start, ""); + } + } else if (is_symlinked) { + if (c != 'T') { + FormatStr(&buf, start, ENTRY_IS_SYMBOLIC_LINK); + } else { + FormatStr(&buf, start, ""); + } + } else { + const char *cp2; + HTFormat format; + + format = HTFileFormat(data->filename, NULL, &cp2); + + if (c != 'T') { + if (cp2 == NULL) { + if (!strncmp(HTAtom_name(format), + "application", 11)) { + cp2 = HTAtom_name(format) + 12; + if (!strncmp(cp2, "x-", 2)) + cp2 += 2; + } else { + cp2 = HTAtom_name(format); + } + } + FormatStr(&buf, start, cp2); + } else { + FormatStr(&buf, start, HTAtom_name(format)); + } + } + break; + + case 'd': /* date */ + if (data->date) { + FormatStr(&buf, start, data->date); + } else { + FormatStr(&buf, start, " * "); + } + break; + + case 's': /* size in bytes */ + FormatNum(&buf, start, data->size); + break; + + case 'K': /* size in Kilobytes but not for directories */ + if (remove_size) { + FormatStr(&buf, start, ""); + StrAllocCat(buf, " "); + break; + } + /* FALL THROUGH */ + case 'k': /* size in Kilobytes */ + /* FIXME - this is inconsistent with HTFile.c, but historical */ + if (data->size < 1024) { + FormatNum(&buf, start, data->size); + StrAllocCat(buf, " bytes"); + } else { + FormatNum(&buf, start, data->size / 1024); + StrAllocCat(buf, "Kb"); + } + break; + +#ifdef LONG_LIST + case 'p': /* unix-style permission bits */ + FormatStr(&buf, start, NonNull(data->file_mode)); + break; + + case 'o': /* owner */ + FormatStr(&buf, start, NonNull(data->file_user)); + break; + + case 'g': /* group */ + FormatStr(&buf, start, NonNull(data->file_group)); + break; + + case 'l': /* link count */ + FormatNum(&buf, start, data->file_links); + break; +#endif + + case '%': /* literal % with flags/width */ + FormatStr(&buf, start, "%"); + break; + + default: + fprintf(stderr, + "Unknown format character `%c' in list format\n", c); + break; + } + + s++; + } + if (buf) { + LYTrimTrailing(buf); + FlushParse(target, &buf); + FREE(buf); + } + PUTC('\n'); + FREE(str); +} +#endif /* LONG_LIST */ /* Read a directory into an hypertext object from the data socket * -------------------------------------------------------------- * @@ -2697,11 +2964,14 @@ static int read_directory(HTParentAnchor *parent, char *filename = HTParse(address, "", PARSE_PATH + PARSE_PUNCTUATION); EntryInfo *entry_info; BOOLEAN first = TRUE; - char string_buffer[64]; char *lastpath = NULL; /* prefix for link, either "" (for root) or xxx */ BOOL need_parent_link = FALSE; BOOL tildeIsTop = FALSE; +#ifndef LONG_LIST + char string_buffer[64]; +#endif + targetClass = *(target->isa); _HTProgress(gettext("Receiving FTP directory.")); @@ -2887,14 +3157,10 @@ static int read_directory(HTParentAnchor *parent, PUTC('\n'); } - /* Put up header - */ - /* PUTS(" Date Type Size Filename\n"); - */ - /* Run through tree printing out in order */ { +#ifndef LONG_LIST #ifdef SH_EX /* 1997/10/18 (Sat) 14:14:28 */ char *p, name_buff[256]; int name_len, dot_len; @@ -2903,14 +3169,21 @@ static int read_directory(HTParentAnchor *parent, #define FILE_GAP 1 #endif - HTBTElement *ele; int i; +#endif + HTBTElement *ele; for (ele = HTBTree_next(bt, NULL); ele != NULL; ele = HTBTree_next(bt, ele)) { entry_info = (EntryInfo *) HTBTree_object(ele); +#ifdef LONG_LIST + LYListFmtParse(ftp_format, + entry_info, + target, + lastpath); +#else if (entry_info->date) { PUTS(entry_info->date); PUTS(" "); @@ -2924,7 +3197,6 @@ static int read_directory(HTParentAnchor *parent, for (; i < 17; i++) PUTC(' '); } - /* start the anchor */ HTDirEntry(target, lastpath, entry_info->filename); #ifdef SH_EX /* 1997/10/18 (Sat) 16:00 */ @@ -2952,17 +3224,17 @@ static int read_directory(HTParentAnchor *parent, if (entry_info->size) { #ifdef SH_EX /* 1998/02/02 (Mon) 16:34:52 */ if (entry_info->size < 1024) - sprintf(string_buffer, "%6d bytes", + sprintf(string_buffer, "%6ld bytes", entry_info->size); else - sprintf(string_buffer, "%6d Kb", + sprintf(string_buffer, "%6ld Kb", entry_info->size / 1024); #else if (entry_info->size < 1024) - sprintf(string_buffer, " %u bytes", + sprintf(string_buffer, " %lu bytes", entry_info->size); else - sprintf(string_buffer, " %uKb", + sprintf(string_buffer, " %luKb", entry_info->size / 1024); #endif PUTS(string_buffer); @@ -2972,6 +3244,7 @@ static int read_directory(HTParentAnchor *parent, } PUTC('\n'); /* end of this entry */ +#endif free_entryinfo_struct_contents(entry_info); } diff --git a/WWW/Library/Implementation/HTFile.c b/WWW/Library/Implementation/HTFile.c index 680cc3a2..6143c068 100644 --- a/WWW/Library/Implementation/HTFile.c +++ b/WWW/Library/Implementation/HTFile.c @@ -1,5 +1,5 @@ /* - * $LynxId: HTFile.c,v 1.114 2008/12/24 13:18:35 tom Exp $ + * $LynxId: HTFile.c,v 1.115 2008/12/26 22:13:13 tom Exp $ * * File Access HTFile.c * =========== @@ -112,13 +112,13 @@ typedef struct { #include <HTML.h> /* For directory object building */ -#define PUTC(c) (*target->isa->put_character)(target, c) -#define PUTS(s) (*target->isa->put_string)(target, s) -#define START(e) (*target->isa->start_element)(target, e, 0, 0, -1, 0) -#define END(e) (*target->isa->end_element)(target, e, 0) +#define PUTC(c) (*target->isa->put_character)(target, c) +#define PUTS(s) (*target->isa->put_string)(target, s) +#define START(e) (*target->isa->start_element)(target, e, 0, 0, -1, 0) +#define END(e) (*target->isa->end_element)(target, e, 0) #define MAYBE_END(e) if (HTML_dtd.tags[e].contents != SGML_EMPTY) \ (*target->isa->end_element)(target, e, 0) -#define FREE_TARGET (*target->isa->_free)(target) +#define FREE_TARGET (*target->isa->_free)(target) #define ABORT_TARGET (*targetClass._abort)(target, NULL); struct _HTStructured { @@ -927,9 +927,11 @@ HTFormat HTFileFormat(const char *filename, /* defaults tree */ - suff = strchr(filename, '.') ? /* Unknown suffix */ - (unknown_suffix.rep ? &unknown_suffix : &no_suffix) - : &no_suffix; + suff = (strchr(filename, '.') + ? (unknown_suffix.rep + ? &unknown_suffix + : &no_suffix) + : &no_suffix); /* * Set default encoding unless found with suffix already. diff --git a/WWW/Library/Implementation/HTFormat.c b/WWW/Library/Implementation/HTFormat.c index 4a02c57e..1999e10e 100644 --- a/WWW/Library/Implementation/HTFormat.c +++ b/WWW/Library/Implementation/HTFormat.c @@ -1,5 +1,5 @@ /* - * $LynxId: HTFormat.c,v 1.65 2008/12/14 17:11:58 tom Exp $ + * $LynxId: HTFormat.c,v 1.66 2008/12/26 18:08:32 tom Exp $ * * Manage different file formats HTFormat.c * ============================= @@ -1441,10 +1441,8 @@ int HTParseFile(HTFormat rep_in, HTStreamClass targetClass; int rv; -#ifdef SH_EX /* 1998/01/04 (Sun) 16:04:09 */ if (fp == NULL) return HT_LOADED; -#endif stream = HTStreamStack(rep_in, format_out, sink, anchor); diff --git a/WWW/Library/Implementation/HTUtils.h b/WWW/Library/Implementation/HTUtils.h index 5cd1bef6..16137deb 100644 --- a/WWW/Library/Implementation/HTUtils.h +++ b/WWW/Library/Implementation/HTUtils.h @@ -1,5 +1,5 @@ /* - * $LynxId: HTUtils.h,v 1.90 2008/12/14 19:34:34 tom Exp $ + * $LynxId: HTUtils.h,v 1.92 2008/12/29 18:35:59 tom Exp $ * * Utility macros for the W3 code library * MACROS FOR GENERAL USE @@ -74,11 +74,6 @@ char *alloca(); #define DISP_PARTIAL /* experimental */ #endif -/* since 2.8.6dev.1, Lynx requires an ANSI C (c89) compiler */ -#define ANSI_VARARGS 1 -#undef HAVE_STDARG_H -#define HAVE_STDARG_H 1 - #if defined(VMS) || defined(_WINDOWS) #define HAVE_STDLIB_H 1 #endif @@ -426,20 +421,10 @@ are generally not the response status from any specific protocol. #define HT_NOT_LOADED -29999 #ifndef va_arg -# if defined(HAVE_STDARG_H) && defined(ANSI_VARARGS) # include <stdarg.h> -# else -# if HAVE_VARARGS_H -# include <varargs.h> -# endif -# endif #endif -#if defined(ANSI_VARARGS) #define LYva_start(ap,format) va_start(ap,format) -#else -#define LYva_start(ap,format) va_start(ap) -#endif /* * GCC can be told that some functions are like printf (and do type-checking on diff --git a/WWW/Library/Implementation/www_tcp.h b/WWW/Library/Implementation/www_tcp.h index c17fe4ae..45216f7f 100644 --- a/WWW/Library/Implementation/www_tcp.h +++ b/WWW/Library/Implementation/www_tcp.h @@ -1,5 +1,5 @@ /* System dependencies in the W3 library - * $LynxId: www_tcp.h,v 1.37 2007/08/02 20:06:10 tom Exp $ + * $LynxId: www_tcp.h,v 1.38 2008/12/30 01:01:34 Paul.Gilmartin Exp $ * SYSTEM DEPENDENCIES @@ -149,8 +149,8 @@ Default values #ifndef TOASCII #ifdef EBCDIC /* S/390 -- gil -- 1327 */ -extern char un_IBM1047[]; -extern unsigned char IBM1047[]; +extern const char un_IBM1047[]; +extern const unsigned char IBM1047[]; /* For debugging #include <assert.h> diff --git a/aclocal.m4 b/aclocal.m4 index b53abf3a..4f2ee93f 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1,4 +1,4 @@ -dnl $LynxId: aclocal.m4,v 1.131 2008/12/25 14:30:43 tom Exp $ +dnl $LynxId: aclocal.m4,v 1.133 2008/12/29 14:29:10 tom Exp $ dnl Macros for auto-configure script. dnl by T.E.Dickey <dickey@invisible-island.net> dnl and Jim Spath <jspath@mail.bcpl.lib.md.us> @@ -698,7 +698,7 @@ AC_SUBST(EXTRA_CPPFLAGS) ])dnl dnl --------------------------------------------------------------------------- -dnl CF_ADD_INCDIR version: 9 updated: 2008/02/09 13:15:34 +dnl CF_ADD_INCDIR version: 10 updated: 2008/12/27 12:30:03 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, @@ -725,7 +725,7 @@ if test -n "$1" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS @@ -743,9 +743,9 @@ if test -n "$1" ; then CF_VERBOSE(adding $cf_add_incdir to include-path) ifelse($2,,CPPFLAGS,$2)="-I$cf_add_incdir $ifelse($2,,CPPFLAGS,[$]$2)" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -3387,7 +3387,7 @@ EOF test "$cf_cv_ncurses_version" = no || AC_DEFINE(NCURSES) ])dnl dnl --------------------------------------------------------------------------- -dnl CF_NETLIBS version: 4 updated: 1999/12/23 15:20:39 +dnl CF_NETLIBS version: 5 updated: 2008/12/29 08:43:47 dnl ---------- dnl After checking for functions in the default $LIBS, make a further check dnl for the functions that are netlib-related (these aren't always in the @@ -3400,32 +3400,77 @@ dnl -lsocket dnl -lbsd AC_DEFUN([CF_NETLIBS],[ cf_test_netlibs=no + AC_MSG_CHECKING(for network libraries) + AC_CACHE_VAL(cf_cv_netlibs,[ AC_MSG_RESULT(working...) + cf_cv_netlibs="" cf_test_netlibs=yes -AC_CHECK_FUNCS(gethostname,,[ - CF_RECHECK_FUNC(gethostname,nsl,cf_cv_netlibs,[ - CF_RECHECK_FUNC(gethostname,socket,cf_cv_netlibs)])]) -# -# FIXME: sequent needs this library (i.e., -lsocket -linet -lnsl), but -# I don't know the entrypoints - 97/7/22 TD -# AC_HAVE_LIBRARY(inet,cf_cv_netlibs="-linet $cf_cv_netlibs") -AC_CHECK_LIB(inet, main, cf_cv_netlibs="-linet $cf_cv_netlibs") -# -if test "$ac_cv_func_lsocket" != no ; then -AC_CHECK_FUNCS(socket,,[ - CF_RECHECK_FUNC(socket,socket,cf_cv_netlibs,[ - CF_RECHECK_FUNC(socket,bsd,cf_cv_netlibs)])]) -fi -# -AC_CHECK_FUNCS(gethostbyname,,[ - CF_RECHECK_FUNC(gethostbyname,nsl,cf_cv_netlibs)]) -# -AC_CHECK_FUNCS(strcasecmp,,[ - CF_RECHECK_FUNC(strcasecmp,resolv,cf_cv_netlibs)]) + +case $host_os in #(vi +mingw32) # (vi + AC_CHECK_HEADERS( windows.h winsock.h winsock2.h ) + + if test "$ac_cv_header_winsock2_h" = "yes" ; then + cf_winsock_lib="-lws2_32" + elif test "$ac_cv_header_winsock_h" = "yes" ; then + cf_winsock_lib="-lwsock32" + fi + + cf_save_LIBS="$LIBS" + LIBS="$cf_winsock_lib $LIBS" + + AC_TRY_LINK([ +#ifdef HAVE_WINDOWS_H +#undef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#include <windows.h> +#ifdef HAVE_WINSOCK2_H +#include <winsock2.h> +#else +#ifdef HAVE_WINSOCK_H +#include <winsock.h> +#endif +#endif +#endif +],[ + char buffer[1024]; + gethostname(buffer, sizeof(buffer));], + [cf_cv_netlibs="$cf_winsock_lib $cf_cv_netlibs"], + [AC_MSG_ERROR(Cannot link against winsock library)]) + + LIBS="$cf_save_LIBS" + ;; +*) + AC_CHECK_FUNCS(gethostname,,[ + CF_RECHECK_FUNC(gethostname,nsl,cf_cv_netlibs,[ + CF_RECHECK_FUNC(gethostname,socket,cf_cv_netlibs)])]) + + AC_CHECK_LIB(inet, main, cf_cv_netlibs="-linet $cf_cv_netlibs") + + if test "$ac_cv_func_lsocket" != no ; then + AC_CHECK_FUNCS(socket,,[ + CF_RECHECK_FUNC(socket,socket,cf_cv_netlibs,[ + CF_RECHECK_FUNC(socket,bsd,cf_cv_netlibs)])]) + fi + + AC_CHECK_FUNCS(gethostbyname,,[ + CF_RECHECK_FUNC(gethostbyname,nsl,cf_cv_netlibs)]) + + AC_CHECK_FUNCS(strcasecmp,,[ + CF_RECHECK_FUNC(strcasecmp,resolv,cf_cv_netlibs)]) + ;; +esac ]) + +case $cf_cv_netlibs in #(vi +*ws2_32*) + AC_DEFINE(USE_WINSOCK2_H) + ;; +esac + LIBS="$LIBS $cf_cv_netlibs" test $cf_test_netlibs = no && echo "$cf_cv_netlibs" >&AC_FD_MSG ])dnl @@ -5208,32 +5253,6 @@ fi fi ])dnl dnl --------------------------------------------------------------------------- -dnl CF_VARARGS version: 3 updated: 1998/12/10 20:06:29 -dnl ---------- -dnl Check for ANSI stdarg.h vs varargs.h. Note that some systems include -dnl <varargs.h> within <stdarg.h>. -AC_DEFUN([CF_VARARGS], -[ -AC_CHECK_HEADERS(stdarg.h varargs.h) -AC_MSG_CHECKING(for standard varargs) -AC_CACHE_VAL(cf_cv_ansi_varargs,[ - AC_TRY_COMPILE([ -#if HAVE_STDARG_H -#include <stdarg.h> -#else -#if HAVE_VARARGS_H -#include <varargs.h> -#endif -#endif - ], - [return 0;} int foo(char *fmt,...){va_list args;va_start(args,fmt);va_end(args)], - [cf_cv_ansi_varargs=yes], - [cf_cv_ansi_varargs=no]) - ]) -AC_MSG_RESULT($cf_cv_ansi_varargs) -test $cf_cv_ansi_varargs = yes && AC_DEFINE(ANSI_VARARGS) -])dnl -dnl --------------------------------------------------------------------------- dnl CF_VERBOSE version: 3 updated: 2007/07/29 09:55:12 dnl ---------- dnl Use AC_VERBOSE w/o the warnings @@ -5442,7 +5461,7 @@ AC_TRY_LINK([ test $cf_cv_need_xopen_extension = yes && CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED" ])dnl dnl --------------------------------------------------------------------------- -dnl CF_XOPEN_SOURCE version: 27 updated: 2008/12/13 14:08:40 +dnl CF_XOPEN_SOURCE version: 28 updated: 2008/12/27 12:30:03 dnl --------------- dnl Try to get _XOPEN_SOURCE defined properly that we can use POSIX functions, dnl or adapt to the vendor's definitions to get equivalent functionality, @@ -5459,7 +5478,7 @@ cf_XOPEN_SOURCE=ifelse($1,,500,$1) cf_POSIX_C_SOURCE=ifelse($2,,199506L,$2) case $host_os in #(vi -aix[[45]]*) #(vi +aix[[456]]*) #(vi CPPFLAGS="$CPPFLAGS -D_ALL_SOURCE" ;; freebsd*|dragonfly*) #(vi diff --git a/config.hin b/config.hin index cdf85fe5..9c718ad2 100644 --- a/config.hin +++ b/config.hin @@ -1,5 +1,5 @@ /* - * $LynxId: config.hin,v 1.106 2008/12/14 19:32:33 tom Exp $ + * $LynxId: config.hin,v 1.108 2008/12/29 14:28:33 tom Exp $ * vile:cmode * * The configure script translates "config.hin" into "lynx_cfg.h" @@ -9,7 +9,6 @@ #undef ALL_CHARSETS /* AC_ARG_WITH(charsets) */ #undef ALT_CHAR_SET /* CF_ALT_CHAR_SET */ -#undef ANSI_VARARGS /* CF_VARARGS */ #undef ARCHIVE_ONLY /* CF_ARG_DISABLE(dired-archive) */ #undef BZIP2_PATH /* CF_PATH_PROG(bzip2) */ #undef CAN_SET_ERRNO /* CF_SET_ERRNO */ @@ -169,6 +168,9 @@ #undef HAVE_WAITPID #undef HAVE_WATTR_GET #undef HAVE_WBORDER +#undef HAVE_WINDOWS_H /* CF_NETLIBS */ +#undef HAVE_WINSOCK2_H /* CF_NETLIBS */ +#undef HAVE_WINSOCK_H /* CF_NETLIBS */ #undef HAVE_WREDRAWLN #undef HAVE_WRESIZE #undef HAVE_XCURSES /* CF_PDCURSES_X11 */ @@ -275,7 +277,6 @@ #undef XCURSES /* CF_PDCURSES_X11 */ #undef ZCAT_PATH /* CF_PATH_PROG(zcat) */ #undef ZIP_PATH /* CF_PATH_PROG(zip) */ -#undef _ALL_SOURCE /* AC_AIX */ #undef inline /* AC_C_INLINE */ #undef lynx_rand /* CF_SRAND */ #undef lynx_srand /* CF_SRAND */ diff --git a/configure b/configure index ab57fba2..b60db24c 100755 --- a/configure +++ b/configure @@ -3892,6 +3892,89 @@ irix*) linux*) TRY_CFLAGS="$TRY_CFLAGS -DLINUX" ;; +mingw*) + # put these directlyin CPPFLAGS since they will not work in lynx_cfg.h + +cf_fix_cppflags=no +cf_new_cflags= +cf_new_cppflags= +cf_new_extra_cppflags= + +for cf_add_cflags in \ + -DDOSPATH \ + -DNOSIGHUP \ + -DNOUSERS \ + -DWIN_EX \ + -D_CONSOLE \ + -D_MBCS \ + -D_WINDOWS \ + -D_WIN_CC \ + -D__WIN32__ \ + +do +case $cf_fix_cppflags in +no) + case $cf_add_cflags in #(vi + -undef|-nostdinc*|-I*|-D*|-U*|-E|-P|-C) #(vi + case $cf_add_cflags in + -D*) + cf_tst_cflags=`echo ${cf_add_cflags} |sed -e 's/^-D[^=]*='\''\"[^"]*//'` + + test "${cf_add_cflags}" != "${cf_tst_cflags}" \ + && test -z "${cf_tst_cflags}" \ + && cf_fix_cppflags=yes + + if test $cf_fix_cppflags = yes ; then + cf_new_extra_cppflags="$cf_new_extra_cppflags $cf_add_cflags" + continue + elif test "${cf_tst_cflags}" = "\"'" ; then + cf_new_extra_cppflags="$cf_new_extra_cppflags $cf_add_cflags" + continue + fi + ;; + esac + case "$CPPFLAGS" in + *$cf_add_cflags) #(vi + ;; + *) #(vi + cf_new_cppflags="$cf_new_cppflags $cf_add_cflags" + ;; + esac + ;; + *) + cf_new_cflags="$cf_new_cflags $cf_add_cflags" + ;; + esac + ;; +yes) + cf_new_extra_cppflags="$cf_new_extra_cppflags $cf_add_cflags" + + cf_tst_cflags=`echo ${cf_add_cflags} |sed -e 's/^[^"]*"'\''//'` + + test "${cf_add_cflags}" != "${cf_tst_cflags}" \ + && test -z "${cf_tst_cflags}" \ + && cf_fix_cppflags=no + ;; +esac +done + +if test -n "$cf_new_cflags" ; then + + CFLAGS="$CFLAGS $cf_new_cflags" +fi + +if test -n "$cf_new_cppflags" ; then + + CPPFLAGS="$cf_new_cppflags $CPPFLAGS" +fi + +if test -n "$cf_new_extra_cppflags" ; then + + EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS" +fi + + EXTRA_OBJS="$EXTRA_OBJS Xsystem\$o" + ;; msdosdjgpp*) LIBS="$LIBS -lwatt" TRY_CFLAGS="$TRY_CFLAGS -DDOSPATH -DNOUSERS" @@ -3921,14 +4004,14 @@ sco*) # SCO's cc (which is reported to have broken const/volatile). case "$CC" in #(vi cc|*/cc) - { echo "$as_me:3924: WARNING: You should consider using gcc or rcc if available" >&5 + { echo "$as_me:4007: WARNING: You should consider using gcc or rcc if available" >&5 echo "$as_me: WARNING: You should consider using gcc or rcc if available" >&2;} unset ac_cv_prog_CC for ac_prog in gcc rcc do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:3931: checking for $ac_word" >&5 +echo "$as_me:4014: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3943,7 +4026,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_CC="$ac_prog" -echo "$as_me:3946: found $ac_dir/$ac_word" >&5 +echo "$as_me:4029: found $ac_dir/$ac_word" >&5 break done @@ -3951,10 +4034,10 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:3954: result: $CC" >&5 + echo "$as_me:4037: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:3957: result: no" >&5 + echo "$as_me:4040: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -3977,23 +4060,23 @@ sony-newsos*) for ac_header in jcurses.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:3980: checking for $ac_header" >&5 +echo "$as_me:4063: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 3986 "configure" +#line 4069 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:3990: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4073: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:3996: \$? = $ac_status" >&5 + echo "$as_me:4079: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -4012,7 +4095,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:4015: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:4098: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -4040,23 +4123,23 @@ ultrix*) for ac_header in cursesX.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:4043: checking for $ac_header" >&5 +echo "$as_me:4126: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4049 "configure" +#line 4132 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:4053: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4136: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:4059: \$? = $ac_status" >&5 + echo "$as_me:4142: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -4075,7 +4158,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:4078: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:4161: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -4092,7 +4175,7 @@ done ;; esac -echo "$as_me:4095: checking for ${CC-cc} option to accept ANSI C" >&5 +echo "$as_me:4178: checking for ${CC-cc} option to accept ANSI C" >&5 echo $ECHO_N "checking for ${CC-cc} option to accept ANSI C... $ECHO_C" >&6 if test "${cf_cv_ansi_cc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4186,7 +4269,7 @@ if test -n "$cf_new_extra_cppflags" ; then fi cat >conftest.$ac_ext <<_ACEOF -#line 4189 "configure" +#line 4272 "configure" #include "confdefs.h" #ifndef CC_HAS_PROTOS @@ -4207,16 +4290,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4210: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4293: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4213: \$? = $ac_status" >&5 + echo "$as_me:4296: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4216: \"$ac_try\"") >&5 + { (eval echo "$as_me:4299: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4219: \$? = $ac_status" >&5 + echo "$as_me:4302: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ansi_cc="$cf_arg"; break else @@ -4229,7 +4312,7 @@ CFLAGS="$cf_save_CFLAGS" CPPFLAGS="$cf_save_CPPFLAGS" fi -echo "$as_me:4232: result: $cf_cv_ansi_cc" >&5 +echo "$as_me:4315: result: $cf_cv_ansi_cc" >&5 echo "${ECHO_T}$cf_cv_ansi_cc" >&6 if test "$cf_cv_ansi_cc" != "no"; then @@ -4312,7 +4395,7 @@ fi fi if test "$cf_cv_ansi_cc" = "no"; then - { { echo "$as_me:4315: error: Your compiler does not appear to recognize prototypes. + { { echo "$as_me:4398: error: Your compiler does not appear to recognize prototypes. You have the following choices: a. adjust your compiler options b. get an up-to-date compiler @@ -4332,7 +4415,7 @@ if test "${enable_largefile+set}" = set; then fi; if test "$enable_largefile" != no; then - echo "$as_me:4335: checking for special C compiler options needed for large files" >&5 + echo "$as_me:4418: checking for special C compiler options needed for large files" >&5 echo $ECHO_N "checking for special C compiler options needed for large files... $ECHO_C" >&6 if test "${ac_cv_sys_largefile_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4344,7 +4427,7 @@ else # IRIX 6.2 and later do not support large files by default, # so use the C compiler's -n32 option if that helps. cat >conftest.$ac_ext <<_ACEOF -#line 4347 "configure" +#line 4430 "configure" #include "confdefs.h" #include <sys/types.h> /* Check that off_t can represent 2**63 - 1 correctly. @@ -4364,16 +4447,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4367: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4450: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4370: \$? = $ac_status" >&5 + echo "$as_me:4453: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4373: \"$ac_try\"") >&5 + { (eval echo "$as_me:4456: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4376: \$? = $ac_status" >&5 + echo "$as_me:4459: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -4383,16 +4466,16 @@ fi rm -f conftest.$ac_objext CC="$CC -n32" rm -f conftest.$ac_objext -if { (eval echo "$as_me:4386: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4469: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4389: \$? = $ac_status" >&5 + echo "$as_me:4472: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4392: \"$ac_try\"") >&5 + { (eval echo "$as_me:4475: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4395: \$? = $ac_status" >&5 + echo "$as_me:4478: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_largefile_CC=' -n32'; break else @@ -4406,13 +4489,13 @@ rm -f conftest.$ac_objext rm -f conftest.$ac_ext fi fi -echo "$as_me:4409: result: $ac_cv_sys_largefile_CC" >&5 +echo "$as_me:4492: result: $ac_cv_sys_largefile_CC" >&5 echo "${ECHO_T}$ac_cv_sys_largefile_CC" >&6 if test "$ac_cv_sys_largefile_CC" != no; then CC=$CC$ac_cv_sys_largefile_CC fi - echo "$as_me:4415: checking for _FILE_OFFSET_BITS value needed for large files" >&5 + echo "$as_me:4498: checking for _FILE_OFFSET_BITS value needed for large files" >&5 echo $ECHO_N "checking for _FILE_OFFSET_BITS value needed for large files... $ECHO_C" >&6 if test "${ac_cv_sys_file_offset_bits+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4420,7 +4503,7 @@ else while :; do ac_cv_sys_file_offset_bits=no cat >conftest.$ac_ext <<_ACEOF -#line 4423 "configure" +#line 4506 "configure" #include "confdefs.h" #include <sys/types.h> /* Check that off_t can represent 2**63 - 1 correctly. @@ -4440,16 +4523,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4443: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4526: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4446: \$? = $ac_status" >&5 + echo "$as_me:4529: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4449: \"$ac_try\"") >&5 + { (eval echo "$as_me:4532: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4452: \$? = $ac_status" >&5 + echo "$as_me:4535: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -4458,7 +4541,7 @@ cat conftest.$ac_ext >&5 fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 4461 "configure" +#line 4544 "configure" #include "confdefs.h" #define _FILE_OFFSET_BITS 64 #include <sys/types.h> @@ -4479,16 +4562,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4482: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4565: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4485: \$? = $ac_status" >&5 + echo "$as_me:4568: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4488: \"$ac_try\"") >&5 + { (eval echo "$as_me:4571: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4491: \$? = $ac_status" >&5 + echo "$as_me:4574: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_file_offset_bits=64; break else @@ -4499,7 +4582,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext break done fi -echo "$as_me:4502: result: $ac_cv_sys_file_offset_bits" >&5 +echo "$as_me:4585: result: $ac_cv_sys_file_offset_bits" >&5 echo "${ECHO_T}$ac_cv_sys_file_offset_bits" >&6 if test "$ac_cv_sys_file_offset_bits" != no; then @@ -4509,7 +4592,7 @@ EOF fi rm -f conftest* - echo "$as_me:4512: checking for _LARGE_FILES value needed for large files" >&5 + echo "$as_me:4595: checking for _LARGE_FILES value needed for large files" >&5 echo $ECHO_N "checking for _LARGE_FILES value needed for large files... $ECHO_C" >&6 if test "${ac_cv_sys_large_files+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4517,7 +4600,7 @@ else while :; do ac_cv_sys_large_files=no cat >conftest.$ac_ext <<_ACEOF -#line 4520 "configure" +#line 4603 "configure" #include "confdefs.h" #include <sys/types.h> /* Check that off_t can represent 2**63 - 1 correctly. @@ -4537,16 +4620,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4540: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4623: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4543: \$? = $ac_status" >&5 + echo "$as_me:4626: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4546: \"$ac_try\"") >&5 + { (eval echo "$as_me:4629: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4549: \$? = $ac_status" >&5 + echo "$as_me:4632: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -4555,7 +4638,7 @@ cat conftest.$ac_ext >&5 fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 4558 "configure" +#line 4641 "configure" #include "confdefs.h" #define _LARGE_FILES 1 #include <sys/types.h> @@ -4576,16 +4659,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4579: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4662: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4582: \$? = $ac_status" >&5 + echo "$as_me:4665: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4585: \"$ac_try\"") >&5 + { (eval echo "$as_me:4668: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4588: \$? = $ac_status" >&5 + echo "$as_me:4671: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_large_files=1; break else @@ -4596,7 +4679,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext break done fi -echo "$as_me:4599: result: $ac_cv_sys_large_files" >&5 +echo "$as_me:4682: result: $ac_cv_sys_large_files" >&5 echo "${ECHO_T}$ac_cv_sys_large_files" >&6 if test "$ac_cv_sys_large_files" != no; then @@ -4609,7 +4692,7 @@ rm -f conftest* fi if test "$enable_largefile" != no ; then - echo "$as_me:4612: checking for _LARGEFILE_SOURCE value needed for large files" >&5 + echo "$as_me:4695: checking for _LARGEFILE_SOURCE value needed for large files" >&5 echo $ECHO_N "checking for _LARGEFILE_SOURCE value needed for large files... $ECHO_C" >&6 if test "${ac_cv_sys_largefile_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4617,7 +4700,7 @@ else while :; do ac_cv_sys_largefile_source=no cat >conftest.$ac_ext <<_ACEOF -#line 4620 "configure" +#line 4703 "configure" #include "confdefs.h" #include <stdio.h> int @@ -4629,16 +4712,16 @@ return !fseeko; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4632: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4715: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4635: \$? = $ac_status" >&5 + echo "$as_me:4718: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4638: \"$ac_try\"") >&5 + { (eval echo "$as_me:4721: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4641: \$? = $ac_status" >&5 + echo "$as_me:4724: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -4647,7 +4730,7 @@ cat conftest.$ac_ext >&5 fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 4650 "configure" +#line 4733 "configure" #include "confdefs.h" #define _LARGEFILE_SOURCE 1 #include <stdio.h> @@ -4660,16 +4743,16 @@ return !fseeko; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4663: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4746: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4666: \$? = $ac_status" >&5 + echo "$as_me:4749: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4669: \"$ac_try\"") >&5 + { (eval echo "$as_me:4752: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4672: \$? = $ac_status" >&5 + echo "$as_me:4755: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_largefile_source=1; break else @@ -4680,7 +4763,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext break done fi -echo "$as_me:4683: result: $ac_cv_sys_largefile_source" >&5 +echo "$as_me:4766: result: $ac_cv_sys_largefile_source" >&5 echo "${ECHO_T}$ac_cv_sys_largefile_source" >&6 if test "$ac_cv_sys_largefile_source" != no; then @@ -4694,13 +4777,13 @@ rm -f conftest* # We used to try defining _XOPEN_SOURCE=500 too, to work around a bug # in glibc 2.1.3, but that breaks too many other things. # If you want fseeko and ftello with glibc, upgrade to a fixed glibc. -echo "$as_me:4697: checking for fseeko" >&5 +echo "$as_me:4780: checking for fseeko" >&5 echo $ECHO_N "checking for fseeko... $ECHO_C" >&6 if test "${ac_cv_func_fseeko+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4703 "configure" +#line 4786 "configure" #include "confdefs.h" #include <stdio.h> int @@ -4712,16 +4795,16 @@ return fseeko && fseeko (stdin, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4715: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4798: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4718: \$? = $ac_status" >&5 + echo "$as_me:4801: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4721: \"$ac_try\"") >&5 + { (eval echo "$as_me:4804: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4724: \$? = $ac_status" >&5 + echo "$as_me:4807: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_fseeko=yes else @@ -4731,7 +4814,7 @@ ac_cv_func_fseeko=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:4734: result: $ac_cv_func_fseeko" >&5 +echo "$as_me:4817: result: $ac_cv_func_fseeko" >&5 echo "${ECHO_T}$ac_cv_func_fseeko" >&6 if test $ac_cv_func_fseeko = yes; then @@ -4752,14 +4835,14 @@ fi test "$ac_cv_sys_largefile_source" != no && CPPFLAGS="$CPPFLAGS -D_LARGEFILE_SOURCE " test "$ac_cv_sys_file_offset_bits" != no && CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits " - echo "$as_me:4755: checking whether to use struct dirent64" >&5 + echo "$as_me:4838: checking whether to use struct dirent64" >&5 echo $ECHO_N "checking whether to use struct dirent64... $ECHO_C" >&6 if test "${cf_cv_struct_dirent64+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4762 "configure" +#line 4845 "configure" #include "confdefs.h" #include <sys/types.h> @@ -4780,16 +4863,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4783: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4866: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4786: \$? = $ac_status" >&5 + echo "$as_me:4869: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4789: \"$ac_try\"") >&5 + { (eval echo "$as_me:4872: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4792: \$? = $ac_status" >&5 + echo "$as_me:4875: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_struct_dirent64=yes else @@ -4800,7 +4883,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:4803: result: $cf_cv_struct_dirent64" >&5 +echo "$as_me:4886: result: $cf_cv_struct_dirent64" >&5 echo "${ECHO_T}$cf_cv_struct_dirent64" >&6 test "$cf_cv_struct_dirent64" = yes && cat >>confdefs.h <<\EOF #define HAVE_STRUCT_DIRENT64 1 @@ -4816,7 +4899,7 @@ fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 -echo "$as_me:4819: checking for $ac_word" >&5 +echo "$as_me:4902: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4831,7 +4914,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" -echo "$as_me:4834: found $ac_dir/$ac_word" >&5 +echo "$as_me:4917: found $ac_dir/$ac_word" >&5 break done @@ -4839,10 +4922,10 @@ fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then - echo "$as_me:4842: result: $RANLIB" >&5 + echo "$as_me:4925: result: $RANLIB" >&5 echo "${ECHO_T}$RANLIB" >&6 else - echo "$as_me:4845: result: no" >&5 + echo "$as_me:4928: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -4851,7 +4934,7 @@ if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 -echo "$as_me:4854: checking for $ac_word" >&5 +echo "$as_me:4937: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4866,7 +4949,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_RANLIB="ranlib" -echo "$as_me:4869: found $ac_dir/$ac_word" >&5 +echo "$as_me:4952: found $ac_dir/$ac_word" >&5 break done @@ -4875,10 +4958,10 @@ fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then - echo "$as_me:4878: result: $ac_ct_RANLIB" >&5 + echo "$as_me:4961: result: $ac_ct_RANLIB" >&5 echo "${ECHO_T}$ac_ct_RANLIB" >&6 else - echo "$as_me:4881: result: no" >&5 + echo "$as_me:4964: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -4887,13 +4970,13 @@ else RANLIB="$ac_cv_prog_RANLIB" fi -echo "$as_me:4890: checking for ANSI C header files" >&5 +echo "$as_me:4973: checking for ANSI C header files" >&5 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6 if test "${ac_cv_header_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4896 "configure" +#line 4979 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -4901,13 +4984,13 @@ else #include <float.h> _ACEOF -if { (eval echo "$as_me:4904: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4987: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:4910: \$? = $ac_status" >&5 + echo "$as_me:4993: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -4929,7 +5012,7 @@ rm -f conftest.err conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF -#line 4932 "configure" +#line 5015 "configure" #include "confdefs.h" #include <string.h> @@ -4947,7 +5030,7 @@ fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF -#line 4950 "configure" +#line 5033 "configure" #include "confdefs.h" #include <stdlib.h> @@ -4968,7 +5051,7 @@ if test $ac_cv_header_stdc = yes; then : else cat >conftest.$ac_ext <<_ACEOF -#line 4971 "configure" +#line 5054 "configure" #include "confdefs.h" #include <ctype.h> #if ((' ' & 0x0FF) == 0x020) @@ -4994,15 +5077,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:4997: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5080: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5000: \$? = $ac_status" >&5 + echo "$as_me:5083: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:5002: \"$ac_try\"") >&5 + { (eval echo "$as_me:5085: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5005: \$? = $ac_status" >&5 + echo "$as_me:5088: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -5015,7 +5098,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi -echo "$as_me:5018: result: $ac_cv_header_stdc" >&5 +echo "$as_me:5101: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then @@ -5025,7 +5108,7 @@ EOF fi -echo "$as_me:5028: checking for inline" >&5 +echo "$as_me:5111: checking for inline" >&5 echo $ECHO_N "checking for inline... $ECHO_C" >&6 if test "${ac_cv_c_inline+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5033,7 +5116,7 @@ else ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat >conftest.$ac_ext <<_ACEOF -#line 5036 "configure" +#line 5119 "configure" #include "confdefs.h" #ifndef __cplusplus static $ac_kw int static_foo () {return 0; } @@ -5042,16 +5125,16 @@ $ac_kw int foo () {return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5045: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5128: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5048: \$? = $ac_status" >&5 + echo "$as_me:5131: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5051: \"$ac_try\"") >&5 + { (eval echo "$as_me:5134: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5054: \$? = $ac_status" >&5 + echo "$as_me:5137: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_inline=$ac_kw; break else @@ -5062,7 +5145,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:5065: result: $ac_cv_c_inline" >&5 +echo "$as_me:5148: result: $ac_cv_c_inline" >&5 echo "${ECHO_T}$ac_cv_c_inline" >&6 case $ac_cv_c_inline in inline | yes) ;; @@ -5083,28 +5166,28 @@ for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:5086: checking for $ac_header" >&5 +echo "$as_me:5169: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5092 "configure" +#line 5175 "configure" #include "confdefs.h" $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5098: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5181: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5101: \$? = $ac_status" >&5 + echo "$as_me:5184: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5104: \"$ac_try\"") >&5 + { (eval echo "$as_me:5187: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5107: \$? = $ac_status" >&5 + echo "$as_me:5190: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Header=yes" else @@ -5114,7 +5197,7 @@ eval "$as_ac_Header=no" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:5117: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:5200: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -5124,13 +5207,13 @@ EOF fi done -echo "$as_me:5127: checking for off_t" >&5 +echo "$as_me:5210: checking for off_t" >&5 echo $ECHO_N "checking for off_t... $ECHO_C" >&6 if test "${ac_cv_type_off_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5133 "configure" +#line 5216 "configure" #include "confdefs.h" $ac_includes_default int @@ -5145,16 +5228,16 @@ if (sizeof (off_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5148: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5231: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5151: \$? = $ac_status" >&5 + echo "$as_me:5234: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5154: \"$ac_try\"") >&5 + { (eval echo "$as_me:5237: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5157: \$? = $ac_status" >&5 + echo "$as_me:5240: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_off_t=yes else @@ -5164,7 +5247,7 @@ ac_cv_type_off_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:5167: result: $ac_cv_type_off_t" >&5 +echo "$as_me:5250: result: $ac_cv_type_off_t" >&5 echo "${ECHO_T}$ac_cv_type_off_t" >&6 if test $ac_cv_type_off_t = yes; then : @@ -5176,13 +5259,13 @@ EOF fi -echo "$as_me:5179: checking for size_t" >&5 +echo "$as_me:5262: checking for size_t" >&5 echo $ECHO_N "checking for size_t... $ECHO_C" >&6 if test "${ac_cv_type_size_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5185 "configure" +#line 5268 "configure" #include "confdefs.h" $ac_includes_default int @@ -5197,16 +5280,16 @@ if (sizeof (size_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5200: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5283: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5203: \$? = $ac_status" >&5 + echo "$as_me:5286: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5206: \"$ac_try\"") >&5 + { (eval echo "$as_me:5289: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5209: \$? = $ac_status" >&5 + echo "$as_me:5292: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_size_t=yes else @@ -5216,7 +5299,7 @@ ac_cv_type_size_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:5219: result: $ac_cv_type_size_t" >&5 +echo "$as_me:5302: result: $ac_cv_type_size_t" >&5 echo "${ECHO_T}$ac_cv_type_size_t" >&6 if test $ac_cv_type_size_t = yes; then : @@ -5230,13 +5313,13 @@ fi # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! -echo "$as_me:5233: checking for working alloca.h" >&5 +echo "$as_me:5316: checking for working alloca.h" >&5 echo $ECHO_N "checking for working alloca.h... $ECHO_C" >&6 if test "${ac_cv_working_alloca_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5239 "configure" +#line 5322 "configure" #include "confdefs.h" #include <alloca.h> int @@ -5248,16 +5331,16 @@ char *p = (char *) alloca (2 * sizeof (int)); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5251: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5334: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5254: \$? = $ac_status" >&5 + echo "$as_me:5337: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5257: \"$ac_try\"") >&5 + { (eval echo "$as_me:5340: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5260: \$? = $ac_status" >&5 + echo "$as_me:5343: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_working_alloca_h=yes else @@ -5267,7 +5350,7 @@ ac_cv_working_alloca_h=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5270: result: $ac_cv_working_alloca_h" >&5 +echo "$as_me:5353: result: $ac_cv_working_alloca_h" >&5 echo "${ECHO_T}$ac_cv_working_alloca_h" >&6 if test $ac_cv_working_alloca_h = yes; then @@ -5277,13 +5360,13 @@ EOF fi -echo "$as_me:5280: checking for alloca" >&5 +echo "$as_me:5363: checking for alloca" >&5 echo $ECHO_N "checking for alloca... $ECHO_C" >&6 if test "${ac_cv_func_alloca_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5286 "configure" +#line 5369 "configure" #include "confdefs.h" #ifdef __GNUC__ # define alloca __builtin_alloca @@ -5315,16 +5398,16 @@ char *p = (char *) alloca (1); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5318: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5401: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5321: \$? = $ac_status" >&5 + echo "$as_me:5404: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5324: \"$ac_try\"") >&5 + { (eval echo "$as_me:5407: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5327: \$? = $ac_status" >&5 + echo "$as_me:5410: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_alloca_works=yes else @@ -5334,7 +5417,7 @@ ac_cv_func_alloca_works=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5337: result: $ac_cv_func_alloca_works" >&5 +echo "$as_me:5420: result: $ac_cv_func_alloca_works" >&5 echo "${ECHO_T}$ac_cv_func_alloca_works" >&6 if test $ac_cv_func_alloca_works = yes; then @@ -5355,13 +5438,13 @@ cat >>confdefs.h <<\EOF #define C_ALLOCA 1 EOF -echo "$as_me:5358: checking whether \`alloca.c' needs Cray hooks" >&5 +echo "$as_me:5441: checking whether \`alloca.c' needs Cray hooks" >&5 echo $ECHO_N "checking whether \`alloca.c' needs Cray hooks... $ECHO_C" >&6 if test "${ac_cv_os_cray+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5364 "configure" +#line 5447 "configure" #include "confdefs.h" #if defined(CRAY) && ! defined(CRAY2) webecray @@ -5379,18 +5462,18 @@ fi rm -f conftest* fi -echo "$as_me:5382: result: $ac_cv_os_cray" >&5 +echo "$as_me:5465: result: $ac_cv_os_cray" >&5 echo "${ECHO_T}$ac_cv_os_cray" >&6 if test $ac_cv_os_cray = yes; then for ac_func in _getb67 GETB67 getb67; do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:5387: checking for $ac_func" >&5 +echo "$as_me:5470: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5393 "configure" +#line 5476 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -5421,16 +5504,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5424: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5507: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5427: \$? = $ac_status" >&5 + echo "$as_me:5510: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5430: \"$ac_try\"") >&5 + { (eval echo "$as_me:5513: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5433: \$? = $ac_status" >&5 + echo "$as_me:5516: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -5440,7 +5523,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5443: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:5526: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then @@ -5454,7 +5537,7 @@ fi done fi -echo "$as_me:5457: checking stack direction for C alloca" >&5 +echo "$as_me:5540: checking stack direction for C alloca" >&5 echo $ECHO_N "checking stack direction for C alloca... $ECHO_C" >&6 if test "${ac_cv_c_stack_direction+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5463,7 +5546,7 @@ else ac_cv_c_stack_direction=0 else cat >conftest.$ac_ext <<_ACEOF -#line 5466 "configure" +#line 5549 "configure" #include "confdefs.h" int find_stack_direction () @@ -5486,15 +5569,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:5489: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5572: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5492: \$? = $ac_status" >&5 + echo "$as_me:5575: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:5494: \"$ac_try\"") >&5 + { (eval echo "$as_me:5577: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5497: \$? = $ac_status" >&5 + echo "$as_me:5580: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_stack_direction=1 else @@ -5506,7 +5589,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:5509: result: $ac_cv_c_stack_direction" >&5 +echo "$as_me:5592: result: $ac_cv_c_stack_direction" >&5 echo "${ECHO_T}$ac_cv_c_stack_direction" >&6 cat >>confdefs.h <<EOF @@ -5518,23 +5601,23 @@ fi for ac_header in stdlib.h unistd.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:5521: checking for $ac_header" >&5 +echo "$as_me:5604: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5527 "configure" +#line 5610 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:5531: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:5614: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:5537: \$? = $ac_status" >&5 + echo "$as_me:5620: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -5553,7 +5636,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:5556: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:5639: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -5566,13 +5649,13 @@ done for ac_func in getpagesize do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:5569: checking for $ac_func" >&5 +echo "$as_me:5652: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5575 "configure" +#line 5658 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -5603,16 +5686,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5606: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5689: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5609: \$? = $ac_status" >&5 + echo "$as_me:5692: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5612: \"$ac_try\"") >&5 + { (eval echo "$as_me:5695: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5615: \$? = $ac_status" >&5 + echo "$as_me:5698: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -5622,7 +5705,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5625: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:5708: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<EOF @@ -5632,7 +5715,7 @@ EOF fi done -echo "$as_me:5635: checking for working mmap" >&5 +echo "$as_me:5718: checking for working mmap" >&5 echo $ECHO_N "checking for working mmap... $ECHO_C" >&6 if test "${ac_cv_func_mmap_fixed_mapped+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5641,7 +5724,7 @@ else ac_cv_func_mmap_fixed_mapped=no else cat >conftest.$ac_ext <<_ACEOF -#line 5644 "configure" +#line 5727 "configure" #include "confdefs.h" $ac_includes_default /* Thanks to Mike Haertel and Jim Avera for this test. @@ -5768,15 +5851,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:5771: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5854: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5774: \$? = $ac_status" >&5 + echo "$as_me:5857: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:5776: \"$ac_try\"") >&5 + { (eval echo "$as_me:5859: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5779: \$? = $ac_status" >&5 + echo "$as_me:5862: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_mmap_fixed_mapped=yes else @@ -5788,7 +5871,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:5791: result: $ac_cv_func_mmap_fixed_mapped" >&5 +echo "$as_me:5874: result: $ac_cv_func_mmap_fixed_mapped" >&5 echo "${ECHO_T}$ac_cv_func_mmap_fixed_mapped" >&6 if test $ac_cv_func_mmap_fixed_mapped = yes; then @@ -5799,13 +5882,13 @@ EOF fi rm -f conftest.mmap - echo "$as_me:5802: checking whether we are using the GNU C Library 2.1 or newer" >&5 + echo "$as_me:5885: checking whether we are using the GNU C Library 2.1 or newer" >&5 echo $ECHO_N "checking whether we are using the GNU C Library 2.1 or newer... $ECHO_C" >&6 if test "${ac_cv_gnu_library_2_1+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5808 "configure" +#line 5891 "configure" #include "confdefs.h" #include <features.h> @@ -5825,7 +5908,7 @@ fi rm -f conftest* fi -echo "$as_me:5828: result: $ac_cv_gnu_library_2_1" >&5 +echo "$as_me:5911: result: $ac_cv_gnu_library_2_1" >&5 echo "${ECHO_T}$ac_cv_gnu_library_2_1" >&6 GLIBC21="$ac_cv_gnu_library_2_1" @@ -5854,23 +5937,23 @@ for ac_header in argz.h limits.h locale.h nl_types.h malloc.h stddef.h \ stdlib.h string.h unistd.h sys/param.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:5857: checking for $ac_header" >&5 +echo "$as_me:5940: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5863 "configure" +#line 5946 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:5867: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:5950: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:5873: \$? = $ac_status" >&5 + echo "$as_me:5956: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -5889,7 +5972,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:5892: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:5975: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -5904,13 +5987,13 @@ getgid getuid mempcpy munmap putenv setenv setlocale stpcpy strchr strcasecmp \ strdup strtoul tsearch __argz_count __argz_stringify __argz_next do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:5907: checking for $ac_func" >&5 +echo "$as_me:5990: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5913 "configure" +#line 5996 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -5941,16 +6024,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5944: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6027: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5947: \$? = $ac_status" >&5 + echo "$as_me:6030: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5950: \"$ac_try\"") >&5 + { (eval echo "$as_me:6033: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5953: \$? = $ac_status" >&5 + echo "$as_me:6036: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -5960,7 +6043,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5963: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:6046: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<EOF @@ -6002,13 +6085,13 @@ if test -n "$cf_searchpath/include" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 6011 "configure" +#line 6094 "configure" #include "confdefs.h" #include <stdio.h> int @@ -6020,16 +6103,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6023: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6106: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6026: \$? = $ac_status" >&5 + echo "$as_me:6109: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6029: \"$ac_try\"") >&5 + { (eval echo "$as_me:6112: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6032: \$? = $ac_status" >&5 + echo "$as_me:6115: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -6046,13 +6129,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:6049: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:6132: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -6081,13 +6164,13 @@ if test -n "$cf_searchpath/../include" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 6090 "configure" +#line 6173 "configure" #include "confdefs.h" #include <stdio.h> int @@ -6099,16 +6182,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6102: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6185: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6105: \$? = $ac_status" >&5 + echo "$as_me:6188: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6108: \"$ac_try\"") >&5 + { (eval echo "$as_me:6191: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6111: \$? = $ac_status" >&5 + echo "$as_me:6194: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -6125,13 +6208,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:6128: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:6211: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -6141,7 +6224,7 @@ echo "${as_me-configure}:6128: testing adding $cf_add_incdir to include-path ... fi else -{ { echo "$as_me:6144: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:6227: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -6166,7 +6249,7 @@ if test -n "$cf_searchpath/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:6169: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:6252: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -6195,7 +6278,7 @@ if test -n "$cf_searchpath" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:6198: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:6281: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -6204,7 +6287,7 @@ echo "${as_me-configure}:6198: testing adding $cf_add_libdir to library-path ... fi else -{ { echo "$as_me:6207: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:6290: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -6215,7 +6298,7 @@ done fi; - echo "$as_me:6218: checking for iconv" >&5 + echo "$as_me:6301: checking for iconv" >&5 echo $ECHO_N "checking for iconv... $ECHO_C" >&6 if test "${am_cv_func_iconv+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6226,10 +6309,10 @@ else cf_cv_header_path_iconv= cf_cv_library_path_iconv= -echo "${as_me-configure}:6229: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me-configure}:6312: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 6232 "configure" +#line 6315 "configure" #include "confdefs.h" #include <stdlib.h> @@ -6248,16 +6331,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6251: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6334: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6254: \$? = $ac_status" >&5 + echo "$as_me:6337: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6257: \"$ac_try\"") >&5 + { (eval echo "$as_me:6340: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6260: \$? = $ac_status" >&5 + echo "$as_me:6343: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes else @@ -6268,9 +6351,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for iconv library" 1>&6 -echo "${as_me-configure}:6271: testing find linkage for iconv library ..." 1>&5 +echo "${as_me-configure}:6354: testing find linkage for iconv library ..." 1>&5 -echo "${as_me-configure}:6273: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me-configure}:6356: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -6378,11 +6461,11 @@ cf_search="$cf_header_path_list $cf_search" if test -d $cf_cv_header_path_iconv ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_iconv" 1>&6 -echo "${as_me-configure}:6381: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me-configure}:6464: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_iconv" cat >conftest.$ac_ext <<_ACEOF -#line 6385 "configure" +#line 6468 "configure" #include "confdefs.h" #include <stdlib.h> @@ -6401,21 +6484,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6404: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6487: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6407: \$? = $ac_status" >&5 + echo "$as_me:6490: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6410: \"$ac_try\"") >&5 + { (eval echo "$as_me:6493: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6413: \$? = $ac_status" >&5 + echo "$as_me:6496: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found iconv headers in $cf_cv_header_path_iconv" 1>&6 -echo "${as_me-configure}:6418: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me-configure}:6501: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -6433,7 +6516,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_iconv" = maybe ; then -echo "${as_me-configure}:6436: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me-configure}:6519: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -6529,13 +6612,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_iconv ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_iconv" 1>&6 -echo "${as_me-configure}:6532: testing ... testing $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me-configure}:6615: testing ... testing $cf_cv_library_path_iconv ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-liconv $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_iconv" cat >conftest.$ac_ext <<_ACEOF -#line 6538 "configure" +#line 6621 "configure" #include "confdefs.h" #include <stdlib.h> @@ -6554,21 +6637,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6557: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6640: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6560: \$? = $ac_status" >&5 + echo "$as_me:6643: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6563: \"$ac_try\"") >&5 + { (eval echo "$as_me:6646: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6566: \$? = $ac_status" >&5 + echo "$as_me:6649: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found iconv library in $cf_cv_library_path_iconv" 1>&6 -echo "${as_me-configure}:6571: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me-configure}:6654: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=yes cf_cv_library_file_iconv="-liconv" @@ -6604,7 +6687,7 @@ am_cv_func_iconv="no, consider installing GNU libiconv" fi fi -echo "$as_me:6607: result: $am_cv_func_iconv" >&5 +echo "$as_me:6690: result: $am_cv_func_iconv" >&5 echo "${ECHO_T}$am_cv_func_iconv" >&6 if test "$am_cv_func_iconv" = yes; then @@ -6613,14 +6696,14 @@ cat >>confdefs.h <<\EOF #define HAVE_ICONV 1 EOF - echo "$as_me:6616: checking if the declaration of iconv() needs const." >&5 + echo "$as_me:6699: checking if the declaration of iconv() needs const." >&5 echo $ECHO_N "checking if the declaration of iconv() needs const.... $ECHO_C" >&6 if test "${am_cv_proto_iconv_const+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 6623 "configure" +#line 6706 "configure" #include "confdefs.h" #include <stdlib.h> @@ -6645,16 +6728,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6648: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6731: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6651: \$? = $ac_status" >&5 + echo "$as_me:6734: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6654: \"$ac_try\"") >&5 + { (eval echo "$as_me:6737: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6657: \$? = $ac_status" >&5 + echo "$as_me:6740: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_proto_iconv_const=no else @@ -6664,7 +6747,7 @@ am_cv_proto_iconv_const=yes fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:6667: result: $am_cv_proto_iconv_const" >&5 +echo "$as_me:6750: result: $am_cv_proto_iconv_const" >&5 echo "${ECHO_T}$am_cv_proto_iconv_const" >&6 if test "$am_cv_proto_iconv_const" = yes ; then @@ -6700,13 +6783,13 @@ if test -n "$cf_cv_header_path_iconv" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 6709 "configure" +#line 6792 "configure" #include "confdefs.h" #include <stdio.h> int @@ -6718,16 +6801,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6721: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6804: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6724: \$? = $ac_status" >&5 + echo "$as_me:6807: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6727: \"$ac_try\"") >&5 + { (eval echo "$as_me:6810: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6730: \$? = $ac_status" >&5 + echo "$as_me:6813: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -6744,13 +6827,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:6747: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:6830: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -6781,7 +6864,7 @@ if test -n "$cf_cv_library_path_iconv" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:6784: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:6867: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -6792,13 +6875,13 @@ fi fi fi - echo "$as_me:6795: checking for nl_langinfo and CODESET" >&5 + echo "$as_me:6878: checking for nl_langinfo and CODESET" >&5 echo $ECHO_N "checking for nl_langinfo and CODESET... $ECHO_C" >&6 if test "${am_cv_langinfo_codeset+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 6801 "configure" +#line 6884 "configure" #include "confdefs.h" #include <langinfo.h> int @@ -6810,16 +6893,16 @@ char* cs = nl_langinfo(CODESET); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6813: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6896: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6816: \$? = $ac_status" >&5 + echo "$as_me:6899: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6819: \"$ac_try\"") >&5 + { (eval echo "$as_me:6902: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6822: \$? = $ac_status" >&5 + echo "$as_me:6905: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_langinfo_codeset=yes else @@ -6830,7 +6913,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:6833: result: $am_cv_langinfo_codeset" >&5 +echo "$as_me:6916: result: $am_cv_langinfo_codeset" >&5 echo "${ECHO_T}$am_cv_langinfo_codeset" >&6 if test $am_cv_langinfo_codeset = yes; then @@ -6841,13 +6924,13 @@ EOF fi if test $ac_cv_header_locale_h = yes; then - echo "$as_me:6844: checking for LC_MESSAGES" >&5 + echo "$as_me:6927: checking for LC_MESSAGES" >&5 echo $ECHO_N "checking for LC_MESSAGES... $ECHO_C" >&6 if test "${am_cv_val_LC_MESSAGES+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 6850 "configure" +#line 6933 "configure" #include "confdefs.h" #include <locale.h> int @@ -6859,16 +6942,16 @@ return LC_MESSAGES } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6862: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6945: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6865: \$? = $ac_status" >&5 + echo "$as_me:6948: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6868: \"$ac_try\"") >&5 + { (eval echo "$as_me:6951: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6871: \$? = $ac_status" >&5 + echo "$as_me:6954: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_val_LC_MESSAGES=yes else @@ -6878,7 +6961,7 @@ am_cv_val_LC_MESSAGES=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:6881: result: $am_cv_val_LC_MESSAGES" >&5 +echo "$as_me:6964: result: $am_cv_val_LC_MESSAGES" >&5 echo "${ECHO_T}$am_cv_val_LC_MESSAGES" >&6 if test $am_cv_val_LC_MESSAGES = yes; then @@ -6888,7 +6971,7 @@ EOF fi fi - echo "$as_me:6891: checking whether NLS is requested" >&5 + echo "$as_me:6974: checking whether NLS is requested" >&5 echo $ECHO_N "checking whether NLS is requested... $ECHO_C" >&6 # Check whether --enable-nls or --disable-nls was given. @@ -6898,7 +6981,7 @@ if test "${enable_nls+set}" = set; then else USE_NLS=no fi; - echo "$as_me:6901: result: $USE_NLS" >&5 + echo "$as_me:6984: result: $USE_NLS" >&5 echo "${ECHO_T}$USE_NLS" >&6 BUILD_INCLUDED_LIBINTL=no @@ -6911,7 +6994,7 @@ cat >>confdefs.h <<\EOF #define ENABLE_NLS 1 EOF - echo "$as_me:6914: checking whether included gettext is requested" >&5 + echo "$as_me:6997: checking whether included gettext is requested" >&5 echo $ECHO_N "checking whether included gettext is requested... $ECHO_C" >&6 # Check whether --with-included-gettext or --without-included-gettext was given. @@ -6921,14 +7004,14 @@ if test "${with_included_gettext+set}" = set; then else nls_cv_force_use_gnu_gettext=no fi; - echo "$as_me:6924: result: $nls_cv_force_use_gnu_gettext" >&5 + echo "$as_me:7007: result: $nls_cv_force_use_gnu_gettext" >&5 echo "${ECHO_T}$nls_cv_force_use_gnu_gettext" >&6 nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext" if test "$nls_cv_force_use_gnu_gettext" != "yes"; then CATOBJEXT=NONE - echo "$as_me:6931: checking for libintl.h and gettext()" >&5 + echo "$as_me:7014: checking for libintl.h and gettext()" >&5 echo $ECHO_N "checking for libintl.h and gettext()... $ECHO_C" >&6 if test "${cf_cv_func_gettext+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6939,10 +7022,10 @@ else cf_cv_header_path_intl= cf_cv_library_path_intl= -echo "${as_me-configure}:6942: testing Starting FIND_LINKAGE(intl,) ..." 1>&5 +echo "${as_me-configure}:7025: testing Starting FIND_LINKAGE(intl,) ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 6945 "configure" +#line 7028 "configure" #include "confdefs.h" #include <libintl.h> @@ -6962,16 +7045,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6965: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7048: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6968: \$? = $ac_status" >&5 + echo "$as_me:7051: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6971: \"$ac_try\"") >&5 + { (eval echo "$as_me:7054: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6974: \$? = $ac_status" >&5 + echo "$as_me:7057: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_intl=yes else @@ -6982,9 +7065,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for intl library" 1>&6 -echo "${as_me-configure}:6985: testing find linkage for intl library ..." 1>&5 +echo "${as_me-configure}:7068: testing find linkage for intl library ..." 1>&5 -echo "${as_me-configure}:6987: testing Searching for headers in FIND_LINKAGE(intl,) ..." 1>&5 +echo "${as_me-configure}:7070: testing Searching for headers in FIND_LINKAGE(intl,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -7092,11 +7175,11 @@ cf_search="$cf_header_path_list $cf_search" if test -d $cf_cv_header_path_intl ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_intl" 1>&6 -echo "${as_me-configure}:7095: testing ... testing $cf_cv_header_path_intl ..." 1>&5 +echo "${as_me-configure}:7178: testing ... testing $cf_cv_header_path_intl ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_intl" cat >conftest.$ac_ext <<_ACEOF -#line 7099 "configure" +#line 7182 "configure" #include "confdefs.h" #include <libintl.h> @@ -7116,21 +7199,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7119: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7202: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7122: \$? = $ac_status" >&5 + echo "$as_me:7205: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7125: \"$ac_try\"") >&5 + { (eval echo "$as_me:7208: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7128: \$? = $ac_status" >&5 + echo "$as_me:7211: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found intl headers in $cf_cv_header_path_intl" 1>&6 -echo "${as_me-configure}:7133: testing ... found intl headers in $cf_cv_header_path_intl ..." 1>&5 +echo "${as_me-configure}:7216: testing ... found intl headers in $cf_cv_header_path_intl ..." 1>&5 cf_cv_find_linkage_intl=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -7148,7 +7231,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_intl" = maybe ; then -echo "${as_me-configure}:7151: testing Searching for intl library in FIND_LINKAGE(intl,) ..." 1>&5 +echo "${as_me-configure}:7234: testing Searching for intl library in FIND_LINKAGE(intl,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -7244,13 +7327,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_intl ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_intl" 1>&6 -echo "${as_me-configure}:7247: testing ... testing $cf_cv_library_path_intl ..." 1>&5 +echo "${as_me-configure}:7330: testing ... testing $cf_cv_library_path_intl ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lintl $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_intl" cat >conftest.$ac_ext <<_ACEOF -#line 7253 "configure" +#line 7336 "configure" #include "confdefs.h" #include <libintl.h> @@ -7270,21 +7353,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7273: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7356: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7276: \$? = $ac_status" >&5 + echo "$as_me:7359: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7279: \"$ac_try\"") >&5 + { (eval echo "$as_me:7362: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7282: \$? = $ac_status" >&5 + echo "$as_me:7365: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found intl library in $cf_cv_library_path_intl" 1>&6 -echo "${as_me-configure}:7287: testing ... found intl library in $cf_cv_library_path_intl ..." 1>&5 +echo "${as_me-configure}:7370: testing ... found intl library in $cf_cv_library_path_intl ..." 1>&5 cf_cv_find_linkage_intl=yes cf_cv_library_file_intl="-lintl" @@ -7320,7 +7403,7 @@ cf_cv_func_gettext=no fi fi -echo "$as_me:7323: result: $cf_cv_func_gettext" >&5 +echo "$as_me:7406: result: $cf_cv_func_gettext" >&5 echo "${ECHO_T}$cf_cv_func_gettext" >&6 if test "$cf_cv_func_gettext" = yes ; then @@ -7352,13 +7435,13 @@ if test -n "$cf_cv_header_path_intl" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 7361 "configure" +#line 7444 "configure" #include "confdefs.h" #include <stdio.h> int @@ -7370,16 +7453,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7373: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7456: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7376: \$? = $ac_status" >&5 + echo "$as_me:7459: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7379: \"$ac_try\"") >&5 + { (eval echo "$as_me:7462: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7382: \$? = $ac_status" >&5 + echo "$as_me:7465: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -7396,13 +7479,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:7399: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:7482: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -7433,7 +7516,7 @@ if test -n "$cf_cv_library_path_intl" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:7436: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:7519: testing adding $cf_add_libdir to library-path ..." 1>&5 INTLLIBS="-L$cf_add_libdir $$INTLLIBS" fi @@ -7449,13 +7532,13 @@ fi for ac_func in dcgettext do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:7452: checking for $ac_func" >&5 +echo "$as_me:7535: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7458 "configure" +#line 7541 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -7486,16 +7569,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7489: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7572: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7492: \$? = $ac_status" >&5 + echo "$as_me:7575: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7495: \"$ac_try\"") >&5 + { (eval echo "$as_me:7578: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7498: \$? = $ac_status" >&5 + echo "$as_me:7581: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -7505,7 +7588,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7508: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:7591: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<EOF @@ -7520,7 +7603,7 @@ done # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 -echo "$as_me:7523: checking for $ac_word" >&5 +echo "$as_me:7606: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_MSGFMT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7548,16 +7631,16 @@ esac fi MSGFMT="$ac_cv_path_MSGFMT" if test "$MSGFMT" != ":"; then - echo "$as_me:7551: result: $MSGFMT" >&5 + echo "$as_me:7634: result: $MSGFMT" >&5 echo "${ECHO_T}$MSGFMT" >&6 else - echo "$as_me:7554: result: no" >&5 + echo "$as_me:7637: result: no" >&5 echo "${ECHO_T}no" >&6 fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 -echo "$as_me:7560: checking for $ac_word" >&5 +echo "$as_me:7643: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_GMSGFMT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7574,7 +7657,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_GMSGFMT="$ac_dir/$ac_word" - echo "$as_me:7577: found $ac_dir/$ac_word" >&5 + echo "$as_me:7660: found $ac_dir/$ac_word" >&5 break fi done @@ -7586,17 +7669,17 @@ fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then - echo "$as_me:7589: result: $GMSGFMT" >&5 + echo "$as_me:7672: result: $GMSGFMT" >&5 echo "${ECHO_T}$GMSGFMT" >&6 else - echo "$as_me:7592: result: no" >&5 + echo "$as_me:7675: result: no" >&5 echo "${ECHO_T}no" >&6 fi # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 -echo "$as_me:7599: checking for $ac_word" >&5 +echo "$as_me:7682: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_XGETTEXT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7624,10 +7707,10 @@ esac fi XGETTEXT="$ac_cv_path_XGETTEXT" if test "$XGETTEXT" != ":"; then - echo "$as_me:7627: result: $XGETTEXT" >&5 + echo "$as_me:7710: result: $XGETTEXT" >&5 echo "${ECHO_T}$XGETTEXT" >&6 else - echo "$as_me:7630: result: no" >&5 + echo "$as_me:7713: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -7642,7 +7725,7 @@ fi if test "$nls_cv_use_gnu_gettext" = "yes"; then if test ! -d $srcdir/intl ; then - { { echo "$as_me:7645: error: no NLS library is packaged with this application" >&5 + { { echo "$as_me:7728: error: no NLS library is packaged with this application" >&5 echo "$as_me: error: no NLS library is packaged with this application" >&2;} { (exit 1); exit 1; }; } fi @@ -7650,7 +7733,7 @@ echo "$as_me: error: no NLS library is packaged with this application" >&2;} # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 -echo "$as_me:7653: checking for $ac_word" >&5 +echo "$as_me:7736: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_MSGFMT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7678,16 +7761,16 @@ esac fi MSGFMT="$ac_cv_path_MSGFMT" if test "$MSGFMT" != ":"; then - echo "$as_me:7681: result: $MSGFMT" >&5 + echo "$as_me:7764: result: $MSGFMT" >&5 echo "${ECHO_T}$MSGFMT" >&6 else - echo "$as_me:7684: result: no" >&5 + echo "$as_me:7767: result: no" >&5 echo "${ECHO_T}no" >&6 fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 -echo "$as_me:7690: checking for $ac_word" >&5 +echo "$as_me:7773: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_GMSGFMT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7704,7 +7787,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_GMSGFMT="$ac_dir/$ac_word" - echo "$as_me:7707: found $ac_dir/$ac_word" >&5 + echo "$as_me:7790: found $ac_dir/$ac_word" >&5 break fi done @@ -7716,17 +7799,17 @@ fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then - echo "$as_me:7719: result: $GMSGFMT" >&5 + echo "$as_me:7802: result: $GMSGFMT" >&5 echo "${ECHO_T}$GMSGFMT" >&6 else - echo "$as_me:7722: result: no" >&5 + echo "$as_me:7805: result: no" >&5 echo "${ECHO_T}no" >&6 fi # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 -echo "$as_me:7729: checking for $ac_word" >&5 +echo "$as_me:7812: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_XGETTEXT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7754,10 +7837,10 @@ esac fi XGETTEXT="$ac_cv_path_XGETTEXT" if test "$XGETTEXT" != ":"; then - echo "$as_me:7757: result: $XGETTEXT" >&5 + echo "$as_me:7840: result: $XGETTEXT" >&5 echo "${ECHO_T}$XGETTEXT" >&6 else - echo "$as_me:7760: result: no" >&5 + echo "$as_me:7843: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -7772,7 +7855,7 @@ fi if $GMSGFMT --statistics /dev/null >/dev/null 2>&1; then : ; else - echo "$as_me:7775: result: found msgfmt program is not GNU msgfmt; ignore it" >&5 + echo "$as_me:7858: result: found msgfmt program is not GNU msgfmt; ignore it" >&5 echo "${ECHO_T}found msgfmt program is not GNU msgfmt; ignore it" >&6 GMSGFMT=":" fi @@ -7782,7 +7865,7 @@ echo "${ECHO_T}found msgfmt program is not GNU msgfmt; ignore it" >&6 if $XGETTEXT --omit-header /dev/null >/dev/null 2>&1; then : ; else - echo "$as_me:7785: result: found xgettext program is not GNU xgettext; ignore it" >&5 + echo "$as_me:7868: result: found xgettext program is not GNU xgettext; ignore it" >&5 echo "${ECHO_T}found xgettext program is not GNU xgettext; ignore it" >&6 XGETTEXT=":" fi @@ -7802,7 +7885,7 @@ echo "${ECHO_T}found xgettext program is not GNU xgettext; ignore it" >&6 do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:7805: checking for $ac_word" >&5 +echo "$as_me:7888: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_INTLBISON+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7817,7 +7900,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_INTLBISON="$ac_prog" -echo "$as_me:7820: found $ac_dir/$ac_word" >&5 +echo "$as_me:7903: found $ac_dir/$ac_word" >&5 break done @@ -7825,10 +7908,10 @@ fi fi INTLBISON=$ac_cv_prog_INTLBISON if test -n "$INTLBISON"; then - echo "$as_me:7828: result: $INTLBISON" >&5 + echo "$as_me:7911: result: $INTLBISON" >&5 echo "${ECHO_T}$INTLBISON" >&6 else - echo "$as_me:7831: result: no" >&5 + echo "$as_me:7914: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -7838,7 +7921,7 @@ done if test -z "$INTLBISON"; then ac_verc_fail=yes else - echo "$as_me:7841: checking version of bison" >&5 + echo "$as_me:7924: checking version of bison" >&5 echo $ECHO_N "checking version of bison... $ECHO_C" >&6 ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison.* \([0-9]*\.[0-9.]*\).*$/\1/p'` case $ac_prog_version in @@ -7847,7 +7930,7 @@ echo $ECHO_N "checking version of bison... $ECHO_C" >&6 ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;; *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;; esac - echo "$as_me:7850: result: $ac_prog_version" >&5 + echo "$as_me:7933: result: $ac_prog_version" >&5 echo "${ECHO_T}$ac_prog_version" >&6 fi if test $ac_verc_fail = yes; then @@ -7873,7 +7956,7 @@ echo "${ECHO_T}$ac_prog_version" >&6 if test "x$ALL_LINGUAS" = "x"; then LINGUAS= else - echo "$as_me:7876: checking for catalogs to be installed" >&5 + echo "$as_me:7959: checking for catalogs to be installed" >&5 echo $ECHO_N "checking for catalogs to be installed... $ECHO_C" >&6 NEW_LINGUAS= for presentlang in $ALL_LINGUAS; do @@ -7893,7 +7976,7 @@ echo $ECHO_N "checking for catalogs to be installed... $ECHO_C" >&6 fi done LINGUAS=$NEW_LINGUAS - echo "$as_me:7896: result: $LINGUAS" >&5 + echo "$as_me:7979: result: $LINGUAS" >&5 echo "${ECHO_T}$LINGUAS" >&6 fi @@ -7926,7 +8009,7 @@ cf_makefile=makefile use_our_messages=no if test "$USE_NLS" = yes ; then if test -d $srcdir/po ; then -echo "$as_me:7929: checking if we should use included message-library" >&5 +echo "$as_me:8012: checking if we should use included message-library" >&5 echo $ECHO_N "checking if we should use included message-library... $ECHO_C" >&6 # Check whether --enable-included-msgs or --disable-included-msgs was given. @@ -7937,7 +8020,7 @@ else use_our_messages=yes fi; fi -echo "$as_me:7940: result: $use_our_messages" >&5 +echo "$as_me:8023: result: $use_our_messages" >&5 echo "${ECHO_T}$use_our_messages" >&6 fi @@ -7978,23 +8061,23 @@ else for ac_header in libintl.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:7981: checking for $ac_header" >&5 +echo "$as_me:8064: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7987 "configure" +#line 8070 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:7991: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:8074: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:7997: \$? = $ac_status" >&5 + echo "$as_me:8080: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -8013,7 +8096,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:8016: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:8099: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -8096,7 +8179,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:8099: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:8182: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -8105,7 +8188,7 @@ esac fi NLS_DATADIR="$withval" -echo "$as_me:8108: checking if you want full utility pathnames" >&5 +echo "$as_me:8191: checking if you want full utility pathnames" >&5 echo $ECHO_N "checking if you want full utility pathnames... $ECHO_C" >&6 # Check whether --enable-full-paths or --disable-full-paths was given. @@ -8122,13 +8205,13 @@ else with_full_paths=yes fi; -echo "$as_me:8125: result: $with_full_paths" >&5 +echo "$as_me:8208: result: $with_full_paths" >&5 echo "${ECHO_T}$with_full_paths" >&6 test $with_full_paths = no && cat >>confdefs.h <<\EOF #define USE_EXECVP 1 EOF -echo "$as_me:8131: checking for system mailer" >&5 +echo "$as_me:8214: checking for system mailer" >&5 echo $ECHO_N "checking for system mailer... $ECHO_C" >&6 if test "${cf_cv_SYSTEM_MAIL+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8148,13 +8231,13 @@ else fi -echo "$as_me:8151: result: $cf_cv_SYSTEM_MAIL" >&5 +echo "$as_me:8234: result: $cf_cv_SYSTEM_MAIL" >&5 echo "${ECHO_T}$cf_cv_SYSTEM_MAIL" >&6 cat >>confdefs.h <<EOF #define SYSTEM_MAIL "$cf_cv_SYSTEM_MAIL" EOF -echo "$as_me:8157: checking system mail flags" >&5 +echo "$as_me:8240: checking system mail flags" >&5 echo $ECHO_N "checking system mail flags... $ECHO_C" >&6 if test "${cf_cv_system_mail_flags+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8170,7 +8253,7 @@ else fi -echo "$as_me:8173: result: $cf_cv_system_mail_flags" >&5 +echo "$as_me:8256: result: $cf_cv_system_mail_flags" >&5 echo "${ECHO_T}$cf_cv_system_mail_flags" >&6 cat >>confdefs.h <<EOF #define SYSTEM_MAIL_FLAGS "$cf_cv_system_mail_flags" @@ -8182,7 +8265,7 @@ if test $with_full_paths = no ; then fi fi -echo "$as_me:8185: checking if $CC -U and -D options work together" >&5 +echo "$as_me:8268: checking if $CC -U and -D options work together" >&5 echo $ECHO_N "checking if $CC -U and -D options work together... $ECHO_C" >&6 if test "${cf_cv_cc_u_d_options+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8191,7 +8274,7 @@ else cf_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="-UU_D_OPTIONS -DU_D_OPTIONS -DD_U_OPTIONS -UD_U_OPTIONS" cat >conftest.$ac_ext <<_ACEOF -#line 8194 "configure" +#line 8277 "configure" #include "confdefs.h" int @@ -8210,16 +8293,16 @@ make a defined-error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8213: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8296: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8216: \$? = $ac_status" >&5 + echo "$as_me:8299: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8219: \"$ac_try\"") >&5 + { (eval echo "$as_me:8302: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8222: \$? = $ac_status" >&5 + echo "$as_me:8305: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_cc_u_d_options=yes @@ -8233,14 +8316,14 @@ rm -f conftest.$ac_objext conftest.$ac_ext CPPFLAGS="$cf_save_CPPFLAGS" fi -echo "$as_me:8236: result: $cf_cv_cc_u_d_options" >&5 +echo "$as_me:8319: result: $cf_cv_cc_u_d_options" >&5 echo "${ECHO_T}$cf_cv_cc_u_d_options" >&6 cf_XOPEN_SOURCE=600 cf_POSIX_C_SOURCE=199506L case $host_os in #(vi -aix[45]*) #(vi +aix[456]*) #(vi CPPFLAGS="$CPPFLAGS -D_ALL_SOURCE" ;; freebsd*|dragonfly*) #(vi @@ -8259,14 +8342,14 @@ irix[56].*) #(vi ;; linux*|gnu*|mint*|k*bsd*-gnu) #(vi -echo "$as_me:8262: checking if we must define _GNU_SOURCE" >&5 +echo "$as_me:8345: checking if we must define _GNU_SOURCE" >&5 echo $ECHO_N "checking if we must define _GNU_SOURCE... $ECHO_C" >&6 if test "${cf_cv_gnu_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 8269 "configure" +#line 8352 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -8281,16 +8364,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8284: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8367: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8287: \$? = $ac_status" >&5 + echo "$as_me:8370: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8290: \"$ac_try\"") >&5 + { (eval echo "$as_me:8373: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8293: \$? = $ac_status" >&5 + echo "$as_me:8376: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_gnu_source=no else @@ -8299,7 +8382,7 @@ cat conftest.$ac_ext >&5 cf_save="$CPPFLAGS" CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE" cat >conftest.$ac_ext <<_ACEOF -#line 8302 "configure" +#line 8385 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -8314,16 +8397,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8317: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8400: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8320: \$? = $ac_status" >&5 + echo "$as_me:8403: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8323: \"$ac_try\"") >&5 + { (eval echo "$as_me:8406: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8326: \$? = $ac_status" >&5 + echo "$as_me:8409: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_gnu_source=no else @@ -8338,7 +8421,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:8341: result: $cf_cv_gnu_source" >&5 +echo "$as_me:8424: result: $cf_cv_gnu_source" >&5 echo "${ECHO_T}$cf_cv_gnu_source" >&6 test "$cf_cv_gnu_source" = yes && CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE" @@ -8365,14 +8448,14 @@ solaris*) #(vi CPPFLAGS="$CPPFLAGS -D__EXTENSIONS__" ;; *) - echo "$as_me:8368: checking if we should define _XOPEN_SOURCE" >&5 + echo "$as_me:8451: checking if we should define _XOPEN_SOURCE" >&5 echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6 if test "${cf_cv_xopen_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 8375 "configure" +#line 8458 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -8387,16 +8470,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8390: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8473: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8393: \$? = $ac_status" >&5 + echo "$as_me:8476: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8396: \"$ac_try\"") >&5 + { (eval echo "$as_me:8479: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8399: \$? = $ac_status" >&5 + echo "$as_me:8482: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xopen_source=no else @@ -8405,7 +8488,7 @@ cat conftest.$ac_ext >&5 cf_save="$CPPFLAGS" CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE" cat >conftest.$ac_ext <<_ACEOF -#line 8408 "configure" +#line 8491 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -8420,16 +8503,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8423: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8506: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8426: \$? = $ac_status" >&5 + echo "$as_me:8509: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8429: \"$ac_try\"") >&5 + { (eval echo "$as_me:8512: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8432: \$? = $ac_status" >&5 + echo "$as_me:8515: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xopen_source=no else @@ -8444,7 +8527,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:8447: result: $cf_cv_xopen_source" >&5 +echo "$as_me:8530: result: $cf_cv_xopen_source" >&5 echo "${ECHO_T}$cf_cv_xopen_source" >&6 if test "$cf_cv_xopen_source" != no ; then @@ -8478,16 +8561,16 @@ cf_trim_CPPFLAGS=`echo "$cf_save_CPPFLAGS" | \ sed -e 's/-[UD]_POSIX_C_SOURCE\(=[^ ]*\)\?[ ]/ /g' \ -e 's/-[UD]_POSIX_C_SOURCE\(=[^ ]*\)\?$//g'` -echo "$as_me:8481: checking if we should define _POSIX_C_SOURCE" >&5 +echo "$as_me:8564: checking if we should define _POSIX_C_SOURCE" >&5 echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6 if test "${cf_cv_posix_c_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else -echo "${as_me-configure}:8487: testing if the symbol is already defined go no further ..." 1>&5 +echo "${as_me-configure}:8570: testing if the symbol is already defined go no further ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 8490 "configure" +#line 8573 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -8502,16 +8585,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8505: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8588: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8508: \$? = $ac_status" >&5 + echo "$as_me:8591: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8511: \"$ac_try\"") >&5 + { (eval echo "$as_me:8594: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8514: \$? = $ac_status" >&5 + echo "$as_me:8597: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_posix_c_source=no else @@ -8532,7 +8615,7 @@ cf_want_posix_source=no esac if test "$cf_want_posix_source" = yes ; then cat >conftest.$ac_ext <<_ACEOF -#line 8535 "configure" +#line 8618 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -8547,16 +8630,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8550: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8633: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8553: \$? = $ac_status" >&5 + echo "$as_me:8636: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8556: \"$ac_try\"") >&5 + { (eval echo "$as_me:8639: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8559: \$? = $ac_status" >&5 + echo "$as_me:8642: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -8567,15 +8650,15 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "${as_me-configure}:8570: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 +echo "${as_me-configure}:8653: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 CFLAGS="$cf_trim_CFLAGS" CPPFLAGS="$cf_trim_CPPFLAGS $cf_cv_posix_c_source" -echo "${as_me-configure}:8575: testing if the second compile does not leave our definition intact error ..." 1>&5 +echo "${as_me-configure}:8658: testing if the second compile does not leave our definition intact error ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 8578 "configure" +#line 8661 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -8590,16 +8673,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8593: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8676: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8596: \$? = $ac_status" >&5 + echo "$as_me:8679: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8599: \"$ac_try\"") >&5 + { (eval echo "$as_me:8682: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8602: \$? = $ac_status" >&5 + echo "$as_me:8685: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -8615,7 +8698,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:8618: result: $cf_cv_posix_c_source" >&5 +echo "$as_me:8701: result: $cf_cv_posix_c_source" >&5 echo "${ECHO_T}$cf_cv_posix_c_source" >&6 if test "$cf_cv_posix_c_source" != no ; then @@ -8632,14 +8715,14 @@ fi ;; esac -echo "$as_me:8635: checking if SIGWINCH is defined" >&5 +echo "$as_me:8718: checking if SIGWINCH is defined" >&5 echo $ECHO_N "checking if SIGWINCH is defined... $ECHO_C" >&6 if test "${cf_cv_define_sigwinch+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 8642 "configure" +#line 8725 "configure" #include "confdefs.h" #include <sys/types.h> @@ -8654,23 +8737,23 @@ int x = SIGWINCH } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8657: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8740: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8660: \$? = $ac_status" >&5 + echo "$as_me:8743: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8663: \"$ac_try\"") >&5 + { (eval echo "$as_me:8746: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8666: \$? = $ac_status" >&5 + echo "$as_me:8749: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_define_sigwinch=yes else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 8673 "configure" +#line 8756 "configure" #include "confdefs.h" #undef _XOPEN_SOURCE @@ -8688,16 +8771,16 @@ int x = SIGWINCH } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8691: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8774: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8694: \$? = $ac_status" >&5 + echo "$as_me:8777: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8697: \"$ac_try\"") >&5 + { (eval echo "$as_me:8780: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8700: \$? = $ac_status" >&5 + echo "$as_me:8783: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_define_sigwinch=maybe else @@ -8711,11 +8794,11 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:8714: result: $cf_cv_define_sigwinch" >&5 +echo "$as_me:8797: result: $cf_cv_define_sigwinch" >&5 echo "${ECHO_T}$cf_cv_define_sigwinch" >&6 if test "$cf_cv_define_sigwinch" = maybe ; then -echo "$as_me:8718: checking for actual SIGWINCH definition" >&5 +echo "$as_me:8801: checking for actual SIGWINCH definition" >&5 echo $ECHO_N "checking for actual SIGWINCH definition... $ECHO_C" >&6 if test "${cf_cv_fixup_sigwinch+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8726,7 +8809,7 @@ cf_sigwinch=32 while test $cf_sigwinch != 1 do cat >conftest.$ac_ext <<_ACEOF -#line 8729 "configure" +#line 8812 "configure" #include "confdefs.h" #undef _XOPEN_SOURCE @@ -8748,16 +8831,16 @@ int x = SIGWINCH } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8751: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8834: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8754: \$? = $ac_status" >&5 + echo "$as_me:8837: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8757: \"$ac_try\"") >&5 + { (eval echo "$as_me:8840: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8760: \$? = $ac_status" >&5 + echo "$as_me:8843: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fixup_sigwinch=$cf_sigwinch break @@ -8771,7 +8854,7 @@ cf_sigwinch=`expr $cf_sigwinch - 1` done fi -echo "$as_me:8774: result: $cf_cv_fixup_sigwinch" >&5 +echo "$as_me:8857: result: $cf_cv_fixup_sigwinch" >&5 echo "${ECHO_T}$cf_cv_fixup_sigwinch" >&6 if test "$cf_cv_fixup_sigwinch" != unknown ; then @@ -8783,7 +8866,7 @@ if test -n "$TRY_CFLAGS" ; then test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me-configure}:8786: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me-configure}:8869: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -8844,7 +8927,7 @@ done if test -n "$cf_new_cflags" ; then test -n "$verbose" && echo " add to \$CFLAGS $cf_new_cflags" 1>&6 -echo "${as_me-configure}:8847: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me-configure}:8930: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 CFLAGS="$CFLAGS $cf_new_cflags" fi @@ -8852,7 +8935,7 @@ fi if test -n "$cf_new_cppflags" ; then test -n "$verbose" && echo " add to \$CPPFLAGS $cf_new_cppflags" 1>&6 -echo "${as_me-configure}:8855: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me-configure}:8938: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 CPPFLAGS="$cf_new_cppflags $CPPFLAGS" fi @@ -8860,14 +8943,14 @@ fi if test -n "$cf_new_extra_cppflags" ; then test -n "$verbose" && echo " add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6 -echo "${as_me-configure}:8863: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me-configure}:8946: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS" fi if test "$cf_check_cflags" != "$CFLAGS" ; then cat >conftest.$ac_ext <<_ACEOF -#line 8870 "configure" +#line 8953 "configure" #include "confdefs.h" #include <stdio.h> int @@ -8879,16 +8962,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:8882: \"$ac_link\"") >&5 +if { (eval echo "$as_me:8965: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:8885: \$? = $ac_status" >&5 + echo "$as_me:8968: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:8888: \"$ac_try\"") >&5 + { (eval echo "$as_me:8971: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8891: \$? = $ac_status" >&5 + echo "$as_me:8974: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -8896,12 +8979,12 @@ else cat conftest.$ac_ext >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me-configure}:8899: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me-configure}:8982: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 if test "$cf_check_cppflags" != "$CPPFLAGS" ; then test -n "$verbose" && echo " but keeping change to \$CPPFLAGS" 1>&6 -echo "${as_me-configure}:8904: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me-configure}:8987: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_flags" @@ -8913,7 +8996,7 @@ fi ### Look for network libraries first, since some functions (such as gethostname) ### are used in a lot of places. -echo "$as_me:8916: checking if you want NSS compatible SSL libraries" >&5 +echo "$as_me:8999: checking if you want NSS compatible SSL libraries" >&5 echo $ECHO_N "checking if you want NSS compatible SSL libraries... $ECHO_C" >&6 if test "${cf_cv_use_libnss_compat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8928,10 +9011,10 @@ else fi; fi -echo "$as_me:8931: result: $cf_cv_use_libnss_compat" >&5 +echo "$as_me:9014: result: $cf_cv_use_libnss_compat" >&5 echo "${ECHO_T}$cf_cv_use_libnss_compat" >&6 -echo "$as_me:8934: checking if you want ssl library" >&5 +echo "$as_me:9017: checking if you want ssl library" >&5 echo $ECHO_N "checking if you want ssl library... $ECHO_C" >&6 if test "${cf_cv_use_libssl+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8946,10 +9029,10 @@ else fi; fi -echo "$as_me:8949: result: $cf_cv_use_libssl" >&5 +echo "$as_me:9032: result: $cf_cv_use_libssl" >&5 echo "${ECHO_T}$cf_cv_use_libssl" >&6 -echo "$as_me:8952: checking if you want gnutls support" >&5 +echo "$as_me:9035: checking if you want gnutls support" >&5 echo $ECHO_N "checking if you want gnutls support... $ECHO_C" >&6 if test "${cf_cv_use_libgnutls+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8964,11 +9047,11 @@ else fi; fi -echo "$as_me:8967: result: $cf_cv_use_libgnutls" >&5 +echo "$as_me:9050: result: $cf_cv_use_libgnutls" >&5 echo "${ECHO_T}$cf_cv_use_libgnutls" >&6 # this option is mainly for comparing with/without Lynx's wrapper for GNUTLS. -echo "$as_me:8971: checking if you want gnutls-openssl compat" >&5 +echo "$as_me:9054: checking if you want gnutls-openssl compat" >&5 echo $ECHO_N "checking if you want gnutls-openssl compat... $ECHO_C" >&6 if test "${cf_cv_gnutls_compat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8983,10 +9066,10 @@ else fi; fi -echo "$as_me:8986: result: $cf_cv_gnutls_compat" >&5 +echo "$as_me:9069: result: $cf_cv_gnutls_compat" >&5 echo "${ECHO_T}$cf_cv_gnutls_compat" >&6 -echo "$as_me:8989: checking if you want socks library" >&5 +echo "$as_me:9072: checking if you want socks library" >&5 echo $ECHO_N "checking if you want socks library... $ECHO_C" >&6 if test "${cf_cv_use_libsocks+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9001,10 +9084,10 @@ else fi; fi -echo "$as_me:9004: result: $cf_cv_use_libsocks" >&5 +echo "$as_me:9087: result: $cf_cv_use_libsocks" >&5 echo "${ECHO_T}$cf_cv_use_libsocks" >&6 -echo "$as_me:9007: checking if you want socks5 library" >&5 +echo "$as_me:9090: checking if you want socks5 library" >&5 echo $ECHO_N "checking if you want socks5 library... $ECHO_C" >&6 if test "${cf_cv_use_libsocks5+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9019,7 +9102,7 @@ else fi; fi -echo "$as_me:9022: result: $cf_cv_use_libsocks5" >&5 +echo "$as_me:9105: result: $cf_cv_use_libsocks5" >&5 echo "${ECHO_T}$cf_cv_use_libsocks5" >&6 if test "x$cf_cv_use_libsocks" != xno ; then @@ -9052,13 +9135,13 @@ if test -n "$cf_searchpath/include" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 9061 "configure" +#line 9144 "configure" #include "confdefs.h" #include <stdio.h> int @@ -9070,16 +9153,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9073: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9156: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9076: \$? = $ac_status" >&5 + echo "$as_me:9159: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9079: \"$ac_try\"") >&5 + { (eval echo "$as_me:9162: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9082: \$? = $ac_status" >&5 + echo "$as_me:9165: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -9096,13 +9179,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:9099: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:9182: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -9131,13 +9214,13 @@ if test -n "$cf_searchpath/../include" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 9140 "configure" +#line 9223 "configure" #include "confdefs.h" #include <stdio.h> int @@ -9149,16 +9232,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9152: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9235: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9155: \$? = $ac_status" >&5 + echo "$as_me:9238: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9158: \"$ac_try\"") >&5 + { (eval echo "$as_me:9241: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9161: \$? = $ac_status" >&5 + echo "$as_me:9244: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -9175,13 +9258,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:9178: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:9261: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -9191,7 +9274,7 @@ echo "${as_me-configure}:9178: testing adding $cf_add_incdir to include-path ... fi else -{ { echo "$as_me:9194: error: cannot find socks library under $cf_cv_use_libsocks" >&5 +{ { echo "$as_me:9277: error: cannot find socks library under $cf_cv_use_libsocks" >&5 echo "$as_me: error: cannot find socks library under $cf_cv_use_libsocks" >&2;} { (exit 1); exit 1; }; } fi @@ -9216,7 +9299,7 @@ if test -n "$cf_searchpath/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:9219: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:9302: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -9245,7 +9328,7 @@ if test -n "$cf_searchpath" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:9248: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:9331: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -9254,7 +9337,7 @@ echo "${as_me-configure}:9248: testing adding $cf_add_libdir to library-path ... fi else -{ { echo "$as_me:9257: error: cannot find socks library under $cf_cv_use_libsocks" >&5 +{ { echo "$as_me:9340: error: cannot find socks library under $cf_cv_use_libsocks" >&5 echo "$as_me: error: cannot find socks library under $cf_cv_use_libsocks" >&2;} { (exit 1); exit 1; }; } fi @@ -9268,10 +9351,10 @@ done cf_cv_header_path_socks= cf_cv_library_path_socks= -echo "${as_me-configure}:9271: testing Starting FIND_LINKAGE(socks,) ..." 1>&5 +echo "${as_me-configure}:9354: testing Starting FIND_LINKAGE(socks,) ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 9274 "configure" +#line 9357 "configure" #include "confdefs.h" #include <stdio.h> @@ -9287,16 +9370,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:9290: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9373: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9293: \$? = $ac_status" >&5 + echo "$as_me:9376: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:9296: \"$ac_try\"") >&5 + { (eval echo "$as_me:9379: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9299: \$? = $ac_status" >&5 + echo "$as_me:9382: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_socks=yes else @@ -9307,9 +9390,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for socks library" 1>&6 -echo "${as_me-configure}:9310: testing find linkage for socks library ..." 1>&5 +echo "${as_me-configure}:9393: testing find linkage for socks library ..." 1>&5 -echo "${as_me-configure}:9312: testing Searching for headers in FIND_LINKAGE(socks,) ..." 1>&5 +echo "${as_me-configure}:9395: testing Searching for headers in FIND_LINKAGE(socks,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -9417,11 +9500,11 @@ cf_search="$cf_header_path_list $cf_search" if test -d $cf_cv_header_path_socks ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_socks" 1>&6 -echo "${as_me-configure}:9420: testing ... testing $cf_cv_header_path_socks ..." 1>&5 +echo "${as_me-configure}:9503: testing ... testing $cf_cv_header_path_socks ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_socks" cat >conftest.$ac_ext <<_ACEOF -#line 9424 "configure" +#line 9507 "configure" #include "confdefs.h" #include <stdio.h> @@ -9437,21 +9520,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9440: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9523: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9443: \$? = $ac_status" >&5 + echo "$as_me:9526: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9446: \"$ac_try\"") >&5 + { (eval echo "$as_me:9529: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9449: \$? = $ac_status" >&5 + echo "$as_me:9532: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found socks headers in $cf_cv_header_path_socks" 1>&6 -echo "${as_me-configure}:9454: testing ... found socks headers in $cf_cv_header_path_socks ..." 1>&5 +echo "${as_me-configure}:9537: testing ... found socks headers in $cf_cv_header_path_socks ..." 1>&5 cf_cv_find_linkage_socks=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -9469,7 +9552,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_socks" = maybe ; then -echo "${as_me-configure}:9472: testing Searching for socks library in FIND_LINKAGE(socks,) ..." 1>&5 +echo "${as_me-configure}:9555: testing Searching for socks library in FIND_LINKAGE(socks,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -9565,13 +9648,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_socks ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_socks" 1>&6 -echo "${as_me-configure}:9568: testing ... testing $cf_cv_library_path_socks ..." 1>&5 +echo "${as_me-configure}:9651: testing ... testing $cf_cv_library_path_socks ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lsocks $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_socks" cat >conftest.$ac_ext <<_ACEOF -#line 9574 "configure" +#line 9657 "configure" #include "confdefs.h" #include <stdio.h> @@ -9587,21 +9670,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:9590: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9673: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9593: \$? = $ac_status" >&5 + echo "$as_me:9676: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:9596: \"$ac_try\"") >&5 + { (eval echo "$as_me:9679: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9599: \$? = $ac_status" >&5 + echo "$as_me:9682: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found socks library in $cf_cv_library_path_socks" 1>&6 -echo "${as_me-configure}:9604: testing ... found socks library in $cf_cv_library_path_socks ..." 1>&5 +echo "${as_me-configure}:9687: testing ... found socks library in $cf_cv_library_path_socks ..." 1>&5 cf_cv_find_linkage_socks=yes cf_cv_library_file_socks="-lsocks" @@ -9691,13 +9774,13 @@ if test -n "$cf_cv_header_path_socks" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 9700 "configure" +#line 9783 "configure" #include "confdefs.h" #include <stdio.h> int @@ -9709,16 +9792,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9712: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9795: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9715: \$? = $ac_status" >&5 + echo "$as_me:9798: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9718: \"$ac_try\"") >&5 + { (eval echo "$as_me:9801: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9721: \$? = $ac_status" >&5 + echo "$as_me:9804: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -9735,13 +9818,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:9738: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:9821: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -9769,7 +9852,7 @@ if test -n "$cf_cv_library_path_socks" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:9772: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:9855: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -9779,7 +9862,7 @@ fi LIBS="$LIBS -lsocks" else - { { echo "$as_me:9782: error: cannot link with socks library" >&5 + { { echo "$as_me:9865: error: cannot link with socks library" >&5 echo "$as_me: error: cannot link with socks library" >&2;} { (exit 1); exit 1; }; } fi @@ -9814,13 +9897,13 @@ if test -n "$cf_searchpath/include" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 9823 "configure" +#line 9906 "configure" #include "confdefs.h" #include <stdio.h> int @@ -9832,16 +9915,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9835: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9918: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9838: \$? = $ac_status" >&5 + echo "$as_me:9921: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9841: \"$ac_try\"") >&5 + { (eval echo "$as_me:9924: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9844: \$? = $ac_status" >&5 + echo "$as_me:9927: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -9858,13 +9941,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:9861: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:9944: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -9893,13 +9976,13 @@ if test -n "$cf_searchpath/../include" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 9902 "configure" +#line 9985 "configure" #include "confdefs.h" #include <stdio.h> int @@ -9911,16 +9994,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9914: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9997: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9917: \$? = $ac_status" >&5 + echo "$as_me:10000: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9920: \"$ac_try\"") >&5 + { (eval echo "$as_me:10003: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9923: \$? = $ac_status" >&5 + echo "$as_me:10006: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -9937,13 +10020,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:9940: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:10023: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -9953,7 +10036,7 @@ echo "${as_me-configure}:9940: testing adding $cf_add_incdir to include-path ... fi else -{ { echo "$as_me:9956: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 +{ { echo "$as_me:10039: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 echo "$as_me: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&2;} { (exit 1); exit 1; }; } fi @@ -9978,7 +10061,7 @@ if test -n "$cf_searchpath/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:9981: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:10064: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -10007,7 +10090,7 @@ if test -n "$cf_searchpath" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:10010: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:10093: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -10016,7 +10099,7 @@ echo "${as_me-configure}:10010: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:10019: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 +{ { echo "$as_me:10102: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 echo "$as_me: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&2;} { (exit 1); exit 1; }; } fi @@ -10035,11 +10118,11 @@ cat >>confdefs.h <<\EOF #define SOCKS 1 EOF -echo "$as_me:10038: checking if the socks library uses socks4 prefix" >&5 +echo "$as_me:10121: checking if the socks library uses socks4 prefix" >&5 echo $ECHO_N "checking if the socks library uses socks4 prefix... $ECHO_C" >&6 cf_use_socks4=error cat >conftest.$ac_ext <<_ACEOF -#line 10042 "configure" +#line 10125 "configure" #include "confdefs.h" #include <socks.h> @@ -10053,16 +10136,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10056: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10139: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10059: \$? = $ac_status" >&5 + echo "$as_me:10142: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10062: \"$ac_try\"") >&5 + { (eval echo "$as_me:10145: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10065: \$? = $ac_status" >&5 + echo "$as_me:10148: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >>confdefs.h <<\EOF #define USE_SOCKS4_PREFIX 1 @@ -10073,7 +10156,7 @@ else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 10076 "configure" +#line 10159 "configure" #include "confdefs.h" #include <socks.h> int @@ -10085,29 +10168,29 @@ SOCKSinit((char *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10088: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10171: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10091: \$? = $ac_status" >&5 + echo "$as_me:10174: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10094: \"$ac_try\"") >&5 + { (eval echo "$as_me:10177: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10097: \$? = $ac_status" >&5 + echo "$as_me:10180: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_use_socks4=no else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -{ { echo "$as_me:10103: error: Cannot link with socks5 library" >&5 +{ { echo "$as_me:10186: error: Cannot link with socks5 library" >&5 echo "$as_me: error: Cannot link with socks5 library" >&2;} { (exit 1); exit 1; }; } fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:10110: result: $cf_use_socks4" >&5 +echo "$as_me:10193: result: $cf_use_socks4" >&5 echo "${ECHO_T}$cf_use_socks4" >&6 if test "$cf_use_socks4" = "yes" ; then @@ -10162,10 +10245,10 @@ EOF fi -echo "$as_me:10165: checking if socks5p.h is available" >&5 +echo "$as_me:10248: checking if socks5p.h is available" >&5 echo $ECHO_N "checking if socks5p.h is available... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 10168 "configure" +#line 10251 "configure" #include "confdefs.h" #define INCLUDE_PROTOTYPES @@ -10180,16 +10263,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10183: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10266: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10186: \$? = $ac_status" >&5 + echo "$as_me:10269: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10189: \"$ac_try\"") >&5 + { (eval echo "$as_me:10272: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10192: \$? = $ac_status" >&5 + echo "$as_me:10275: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_use_socks5p_h=yes else @@ -10198,7 +10281,7 @@ cat conftest.$ac_ext >&5 cf_use_socks5p_h=no fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:10201: result: $cf_use_socks5p_h" >&5 +echo "$as_me:10284: result: $cf_use_socks5p_h" >&5 echo "${ECHO_T}$cf_use_socks5p_h" >&6 test "$cf_use_socks5p_h" = yes && cat >>confdefs.h <<\EOF @@ -10208,27 +10291,143 @@ EOF else cf_test_netlibs=no -echo "$as_me:10211: checking for network libraries" >&5 + +echo "$as_me:10295: checking for network libraries" >&5 echo $ECHO_N "checking for network libraries... $ECHO_C" >&6 + if test "${cf_cv_netlibs+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else -echo "$as_me:10217: result: working..." >&5 +echo "$as_me:10302: result: working..." >&5 echo "${ECHO_T}working..." >&6 + cf_cv_netlibs="" cf_test_netlibs=yes +case $host_os in #(vi +mingw32) # (vi + +for ac_header in windows.h winsock.h winsock2.h +do +as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +echo "$as_me:10314: checking for $ac_header" >&5 +echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 +if eval "test \"\${$as_ac_Header+set}\" = set"; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.$ac_ext <<_ACEOF +#line 10320 "configure" +#include "confdefs.h" +#include <$ac_header> +_ACEOF +if { (eval echo "$as_me:10324: \"$ac_cpp conftest.$ac_ext\"") >&5 + (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 + ac_status=$? + egrep -v '^ *\+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:10330: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null; then + if test -s conftest.err; then + ac_cpp_err=$ac_c_preproc_warn_flag + else + ac_cpp_err= + fi +else + ac_cpp_err=yes +fi +if test -z "$ac_cpp_err"; then + eval "$as_ac_Header=yes" +else + echo "$as_me: failed program was:" >&5 + cat conftest.$ac_ext >&5 + eval "$as_ac_Header=no" +fi +rm -f conftest.err conftest.$ac_ext +fi +echo "$as_me:10349: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 +if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<EOF +#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +EOF + +fi +done + + if test "$ac_cv_header_winsock2_h" = "yes" ; then + cf_winsock_lib="-lws2_32" + elif test "$ac_cv_header_winsock_h" = "yes" ; then + cf_winsock_lib="-lwsock32" + fi + + cf_save_LIBS="$LIBS" + LIBS="$cf_winsock_lib $LIBS" + + cat >conftest.$ac_ext <<_ACEOF +#line 10369 "configure" +#include "confdefs.h" + +#ifdef HAVE_WINDOWS_H +#undef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#include <windows.h> +#ifdef HAVE_WINSOCK2_H +#include <winsock2.h> +#else +#ifdef HAVE_WINSOCK_H +#include <winsock.h> +#endif +#endif +#endif + +int +main () +{ + + char buffer[1024]; + gethostname(buffer, sizeof(buffer)); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (eval echo "$as_me:10396: \"$ac_link\"") >&5 + (eval $ac_link) 2>&5 + ac_status=$? + echo "$as_me:10399: \$? = $ac_status" >&5 + (exit $ac_status); } && + { ac_try='test -s conftest$ac_exeext' + { (eval echo "$as_me:10402: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:10405: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + cf_cv_netlibs="$cf_winsock_lib $cf_cv_netlibs" +else + echo "$as_me: failed program was:" >&5 +cat conftest.$ac_ext >&5 +{ { echo "$as_me:10411: error: Cannot link against winsock library" >&5 +echo "$as_me: error: Cannot link against winsock library" >&2;} + { (exit 1); exit 1; }; } +fi +rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext + + LIBS="$cf_save_LIBS" + ;; +*) + for ac_func in gethostname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:10225: checking for $ac_func" >&5 +echo "$as_me:10424: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 10231 "configure" +#line 10430 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -10259,16 +10458,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10262: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10461: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10265: \$? = $ac_status" >&5 + echo "$as_me:10464: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10268: \"$ac_try\"") >&5 + { (eval echo "$as_me:10467: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10271: \$? = $ac_status" >&5 + echo "$as_me:10470: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -10278,7 +10477,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:10281: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:10480: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<EOF @@ -10287,7 +10486,7 @@ EOF else -echo "$as_me:10290: checking for gethostname in -lnsl" >&5 +echo "$as_me:10489: checking for gethostname in -lnsl" >&5 echo $ECHO_N "checking for gethostname in -lnsl... $ECHO_C" >&6 if test "${ac_cv_lib_nsl_gethostname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10295,7 +10494,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 10298 "configure" +#line 10497 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -10314,16 +10513,16 @@ gethostname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10317: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10516: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10320: \$? = $ac_status" >&5 + echo "$as_me:10519: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10323: \"$ac_try\"") >&5 + { (eval echo "$as_me:10522: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10326: \$? = $ac_status" >&5 + echo "$as_me:10525: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_gethostname=yes else @@ -10334,7 +10533,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:10337: result: $ac_cv_lib_nsl_gethostname" >&5 +echo "$as_me:10536: result: $ac_cv_lib_nsl_gethostname" >&5 echo "${ECHO_T}$ac_cv_lib_nsl_gethostname" >&6 if test $ac_cv_lib_nsl_gethostname = yes; then @@ -10351,7 +10550,7 @@ else ac_cv_func_gethostname=unknown unset ac_cv_func_gethostname 2>/dev/null -echo "$as_me:10354: checking for gethostname in -lsocket" >&5 +echo "$as_me:10553: checking for gethostname in -lsocket" >&5 echo $ECHO_N "checking for gethostname in -lsocket... $ECHO_C" >&6 if test "${ac_cv_lib_socket_gethostname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10359,7 +10558,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 10362 "configure" +#line 10561 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -10378,16 +10577,16 @@ gethostname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10381: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10580: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10384: \$? = $ac_status" >&5 + echo "$as_me:10583: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10387: \"$ac_try\"") >&5 + { (eval echo "$as_me:10586: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10390: \$? = $ac_status" >&5 + echo "$as_me:10589: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_gethostname=yes else @@ -10398,7 +10597,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:10401: result: $ac_cv_lib_socket_gethostname" >&5 +echo "$as_me:10600: result: $ac_cv_lib_socket_gethostname" >&5 echo "${ECHO_T}$ac_cv_lib_socket_gethostname" >&6 if test $ac_cv_lib_socket_gethostname = yes; then @@ -10422,11 +10621,7 @@ fi fi done -# -# FIXME: sequent needs this library (i.e., -lsocket -linet -lnsl), but -# I don't know the entrypoints - 97/7/22 TD -# AC_HAVE_LIBRARY(inet,cf_cv_netlibs="-linet $cf_cv_netlibs") -echo "$as_me:10429: checking for main in -linet" >&5 + echo "$as_me:10624: checking for main in -linet" >&5 echo $ECHO_N "checking for main in -linet... $ECHO_C" >&6 if test "${ac_cv_lib_inet_main+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10434,7 +10629,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-linet $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 10437 "configure" +#line 10632 "configure" #include "confdefs.h" int @@ -10446,16 +10641,16 @@ main (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10449: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10644: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10452: \$? = $ac_status" >&5 + echo "$as_me:10647: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10455: \"$ac_try\"") >&5 + { (eval echo "$as_me:10650: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10458: \$? = $ac_status" >&5 + echo "$as_me:10653: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_inet_main=yes else @@ -10466,25 +10661,24 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:10469: result: $ac_cv_lib_inet_main" >&5 +echo "$as_me:10664: result: $ac_cv_lib_inet_main" >&5 echo "${ECHO_T}$ac_cv_lib_inet_main" >&6 if test $ac_cv_lib_inet_main = yes; then cf_cv_netlibs="-linet $cf_cv_netlibs" fi -# -if test "$ac_cv_func_lsocket" != no ; then + if test "$ac_cv_func_lsocket" != no ; then for ac_func in socket do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:10481: checking for $ac_func" >&5 +echo "$as_me:10675: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 10487 "configure" +#line 10681 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -10515,16 +10709,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10518: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10712: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10521: \$? = $ac_status" >&5 + echo "$as_me:10715: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10524: \"$ac_try\"") >&5 + { (eval echo "$as_me:10718: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10527: \$? = $ac_status" >&5 + echo "$as_me:10721: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -10534,7 +10728,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:10537: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:10731: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<EOF @@ -10543,7 +10737,7 @@ EOF else -echo "$as_me:10546: checking for socket in -lsocket" >&5 +echo "$as_me:10740: checking for socket in -lsocket" >&5 echo $ECHO_N "checking for socket in -lsocket... $ECHO_C" >&6 if test "${ac_cv_lib_socket_socket+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10551,7 +10745,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 10554 "configure" +#line 10748 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -10570,16 +10764,16 @@ socket (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10573: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10767: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10576: \$? = $ac_status" >&5 + echo "$as_me:10770: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10579: \"$ac_try\"") >&5 + { (eval echo "$as_me:10773: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10582: \$? = $ac_status" >&5 + echo "$as_me:10776: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_socket=yes else @@ -10590,7 +10784,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:10593: result: $ac_cv_lib_socket_socket" >&5 +echo "$as_me:10787: result: $ac_cv_lib_socket_socket" >&5 echo "${ECHO_T}$ac_cv_lib_socket_socket" >&6 if test $ac_cv_lib_socket_socket = yes; then @@ -10607,7 +10801,7 @@ else ac_cv_func_socket=unknown unset ac_cv_func_socket 2>/dev/null -echo "$as_me:10610: checking for socket in -lbsd" >&5 +echo "$as_me:10804: checking for socket in -lbsd" >&5 echo $ECHO_N "checking for socket in -lbsd... $ECHO_C" >&6 if test "${ac_cv_lib_bsd_socket+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10615,7 +10809,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 10618 "configure" +#line 10812 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -10634,16 +10828,16 @@ socket (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10637: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10831: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10640: \$? = $ac_status" >&5 + echo "$as_me:10834: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10643: \"$ac_try\"") >&5 + { (eval echo "$as_me:10837: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10646: \$? = $ac_status" >&5 + echo "$as_me:10840: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_bsd_socket=yes else @@ -10654,7 +10848,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:10657: result: $ac_cv_lib_bsd_socket" >&5 +echo "$as_me:10851: result: $ac_cv_lib_bsd_socket" >&5 echo "${ECHO_T}$ac_cv_lib_bsd_socket" >&6 if test $ac_cv_lib_bsd_socket = yes; then @@ -10678,19 +10872,18 @@ fi fi done -fi -# + fi for ac_func in gethostbyname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:10687: checking for $ac_func" >&5 +echo "$as_me:10880: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 10693 "configure" +#line 10886 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -10721,16 +10914,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10724: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10917: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10727: \$? = $ac_status" >&5 + echo "$as_me:10920: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10730: \"$ac_try\"") >&5 + { (eval echo "$as_me:10923: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10733: \$? = $ac_status" >&5 + echo "$as_me:10926: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -10740,7 +10933,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:10743: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:10936: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<EOF @@ -10749,7 +10942,7 @@ EOF else -echo "$as_me:10752: checking for gethostbyname in -lnsl" >&5 +echo "$as_me:10945: checking for gethostbyname in -lnsl" >&5 echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6 if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10757,7 +10950,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 10760 "configure" +#line 10953 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -10776,16 +10969,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10779: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10972: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10782: \$? = $ac_status" >&5 + echo "$as_me:10975: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10785: \"$ac_try\"") >&5 + { (eval echo "$as_me:10978: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10788: \$? = $ac_status" >&5 + echo "$as_me:10981: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_gethostbyname=yes else @@ -10796,7 +10989,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:10799: result: $ac_cv_lib_nsl_gethostbyname" >&5 +echo "$as_me:10992: result: $ac_cv_lib_nsl_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6 if test $ac_cv_lib_nsl_gethostbyname = yes; then @@ -10818,18 +11011,16 @@ fi fi done -# - for ac_func in strcasecmp do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:10826: checking for $ac_func" >&5 +echo "$as_me:11017: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 10832 "configure" +#line 11023 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -10860,16 +11051,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10863: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11054: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10866: \$? = $ac_status" >&5 + echo "$as_me:11057: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10869: \"$ac_try\"") >&5 + { (eval echo "$as_me:11060: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10872: \$? = $ac_status" >&5 + echo "$as_me:11063: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -10879,7 +11070,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:10882: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:11073: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<EOF @@ -10888,7 +11079,7 @@ EOF else -echo "$as_me:10891: checking for strcasecmp in -lresolv" >&5 +echo "$as_me:11082: checking for strcasecmp in -lresolv" >&5 echo $ECHO_N "checking for strcasecmp in -lresolv... $ECHO_C" >&6 if test "${ac_cv_lib_resolv_strcasecmp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10896,7 +11087,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lresolv $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 10899 "configure" +#line 11090 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -10915,16 +11106,16 @@ strcasecmp (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10918: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11109: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10921: \$? = $ac_status" >&5 + echo "$as_me:11112: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10924: \"$ac_try\"") >&5 + { (eval echo "$as_me:11115: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10927: \$? = $ac_status" >&5 + echo "$as_me:11118: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_resolv_strcasecmp=yes else @@ -10935,7 +11126,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:10938: result: $ac_cv_lib_resolv_strcasecmp" >&5 +echo "$as_me:11129: result: $ac_cv_lib_resolv_strcasecmp" >&5 echo "${ECHO_T}$ac_cv_lib_resolv_strcasecmp" >&6 if test $ac_cv_lib_resolv_strcasecmp = yes; then @@ -10957,21 +11148,33 @@ fi fi done + ;; +esac + fi +case $cf_cv_netlibs in #(vi +*ws2_32*) + cat >>confdefs.h <<\EOF +#define USE_WINSOCK2_H 1 +EOF + + ;; +esac + LIBS="$LIBS $cf_cv_netlibs" test $cf_test_netlibs = no && echo "$cf_cv_netlibs" >&6 fi -echo "$as_me:10967: checking for inet_aton function" >&5 +echo "$as_me:11170: checking for inet_aton function" >&5 echo $ECHO_N "checking for inet_aton function... $ECHO_C" >&6 if test "${cf_cv_have_inet_aton+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 10974 "configure" +#line 11177 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/socket.h> @@ -10987,16 +11190,16 @@ inet_aton(0, (struct in_addr *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10990: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11193: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10993: \$? = $ac_status" >&5 + echo "$as_me:11196: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10996: \"$ac_try\"") >&5 + { (eval echo "$as_me:11199: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10999: \$? = $ac_status" >&5 + echo "$as_me:11202: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_inet_aton=yes else @@ -11006,7 +11209,7 @@ cf_cv_have_inet_aton=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:11009: result: $cf_cv_have_inet_aton" >&5 +echo "$as_me:11212: result: $cf_cv_have_inet_aton" >&5 echo "${ECHO_T}$cf_cv_have_inet_aton" >&6 if test "$cf_cv_have_inet_aton" = yes ; then cat >>confdefs.h <<\EOF @@ -11014,14 +11217,14 @@ if test "$cf_cv_have_inet_aton" = yes ; then EOF else - echo "$as_me:11017: checking for inet_addr function" >&5 + echo "$as_me:11220: checking for inet_addr function" >&5 echo $ECHO_N "checking for inet_addr function... $ECHO_C" >&6 if test "${cf_cv_have_inet_addr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 11024 "configure" +#line 11227 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/socket.h> @@ -11037,16 +11240,16 @@ inet_addr(0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11040: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11243: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11043: \$? = $ac_status" >&5 + echo "$as_me:11246: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11046: \"$ac_try\"") >&5 + { (eval echo "$as_me:11249: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11049: \$? = $ac_status" >&5 + echo "$as_me:11252: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_inet_addr=yes else @@ -11056,10 +11259,10 @@ cf_cv_have_inet_addr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:11059: result: $cf_cv_have_inet_addr" >&5 +echo "$as_me:11262: result: $cf_cv_have_inet_addr" >&5 echo "${ECHO_T}$cf_cv_have_inet_addr" >&6 if test "$cf_cv_have_inet_addr" = no ; then - echo "$as_me:11062: checking for library with inet_addr" >&5 + echo "$as_me:11265: checking for library with inet_addr" >&5 echo $ECHO_N "checking for library with inet_addr... $ECHO_C" >&6 if test "${cf_cv_lib_inet_addr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11070,7 +11273,7 @@ else do LIBS="$cf_save_LIBS $cf_inetlib" cat >conftest.$ac_ext <<_ACEOF -#line 11073 "configure" +#line 11276 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/socket.h> @@ -11086,16 +11289,16 @@ inet_addr(0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11089: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11292: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11092: \$? = $ac_status" >&5 + echo "$as_me:11295: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11095: \"$ac_try\"") >&5 + { (eval echo "$as_me:11298: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11098: \$? = $ac_status" >&5 + echo "$as_me:11301: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_lib_inet_addr=$cf_inetlib else @@ -11109,18 +11312,18 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext done fi -echo "$as_me:11112: result: $cf_cv_lib_inet_addr" >&5 +echo "$as_me:11315: result: $cf_cv_lib_inet_addr" >&5 echo "${ECHO_T}$cf_cv_lib_inet_addr" >&6 if test "$cf_cv_lib_inet_addr" != no ; then LIBS="$LIBS $cf_cv_lib_inet_addr" else - { echo "$as_me:11117: WARNING: Unable to find library for inet_addr function" >&5 + { echo "$as_me:11320: WARNING: Unable to find library for inet_addr function" >&5 echo "$as_me: WARNING: Unable to find library for inet_addr function" >&2;} fi fi fi -echo "$as_me:11123: checking if you want to use pkg-config" >&5 +echo "$as_me:11326: checking if you want to use pkg-config" >&5 echo $ECHO_N "checking if you want to use pkg-config... $ECHO_C" >&6 # Check whether --with-pkg-config or --without-pkg-config was given. @@ -11130,7 +11333,7 @@ if test "${with_pkg_config+set}" = set; then else cf_pkg_config=yes fi; -echo "$as_me:11133: result: $cf_pkg_config" >&5 +echo "$as_me:11336: result: $cf_pkg_config" >&5 echo "${ECHO_T}$cf_pkg_config" >&6 case $cf_pkg_config in @@ -11140,7 +11343,7 @@ no) yes) # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 -echo "$as_me:11143: checking for $ac_word" >&5 +echo "$as_me:11346: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_PKG_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11157,7 +11360,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_PKG_CONFIG="$ac_dir/$ac_word" - echo "$as_me:11160: found $ac_dir/$ac_word" >&5 + echo "$as_me:11363: found $ac_dir/$ac_word" >&5 break fi done @@ -11169,10 +11372,10 @@ fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then - echo "$as_me:11172: result: $PKG_CONFIG" >&5 + echo "$as_me:11375: result: $PKG_CONFIG" >&5 echo "${ECHO_T}$PKG_CONFIG" >&6 else - echo "$as_me:11175: result: no" >&5 + echo "$as_me:11378: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -11210,7 +11413,7 @@ case ".$PKG_CONFIG" in #(vi PKG_CONFIG=`echo $PKG_CONFIG | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:11213: error: expected a pathname, not \"$PKG_CONFIG\"" >&5 + { { echo "$as_me:11416: error: expected a pathname, not \"$PKG_CONFIG\"" >&5 echo "$as_me: error: expected a pathname, not \"$PKG_CONFIG\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -11252,13 +11455,13 @@ if test -n "$cf_searchpath/include" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 11261 "configure" +#line 11464 "configure" #include "confdefs.h" #include <stdio.h> int @@ -11270,16 +11473,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11273: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11476: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11276: \$? = $ac_status" >&5 + echo "$as_me:11479: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11279: \"$ac_try\"") >&5 + { (eval echo "$as_me:11482: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11282: \$? = $ac_status" >&5 + echo "$as_me:11485: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -11296,13 +11499,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:11299: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:11502: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -11331,13 +11534,13 @@ if test -n "$cf_searchpath/../include" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 11340 "configure" +#line 11543 "configure" #include "confdefs.h" #include <stdio.h> int @@ -11349,16 +11552,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11352: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11555: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11355: \$? = $ac_status" >&5 + echo "$as_me:11558: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11358: \"$ac_try\"") >&5 + { (eval echo "$as_me:11561: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11361: \$? = $ac_status" >&5 + echo "$as_me:11564: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -11375,13 +11578,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:11378: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:11581: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -11391,7 +11594,7 @@ echo "${as_me-configure}:11378: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:11394: error: cannot find ssl library under $cf_cv_use_libssl" >&5 +{ { echo "$as_me:11597: error: cannot find ssl library under $cf_cv_use_libssl" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libssl" >&2;} { (exit 1); exit 1; }; } fi @@ -11416,7 +11619,7 @@ if test -n "$cf_searchpath/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:11419: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:11622: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -11445,7 +11648,7 @@ if test -n "$cf_searchpath" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:11448: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:11651: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -11454,7 +11657,7 @@ echo "${as_me-configure}:11448: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:11457: error: cannot find ssl library under $cf_cv_use_libssl" >&5 +{ { echo "$as_me:11660: error: cannot find ssl library under $cf_cv_use_libssl" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libssl" >&2;} { (exit 1); exit 1; }; } fi @@ -11568,7 +11771,7 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me-configure}:11571: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me-configure}:11774: testing adding $cf_libs_ssl to LIBS ..." 1>&5 LIBS="$cf_libs_ssl $LIBS" fi @@ -11586,10 +11789,10 @@ echo "${as_me-configure}:11571: testing adding $cf_libs_ssl to LIBS ..." 1>&5 cf_cv_header_path_ssl= cf_cv_library_path_ssl= -echo "${as_me-configure}:11589: testing Starting FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me-configure}:11792: testing Starting FIND_LINKAGE(ssl,openssl) ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 11592 "configure" +#line 11795 "configure" #include "confdefs.h" #include <stdio.h> @@ -11618,16 +11821,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11621: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11824: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11624: \$? = $ac_status" >&5 + echo "$as_me:11827: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11627: \"$ac_try\"") >&5 + { (eval echo "$as_me:11830: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11630: \$? = $ac_status" >&5 + echo "$as_me:11833: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_ssl=yes else @@ -11638,9 +11841,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for ssl library" 1>&6 -echo "${as_me-configure}:11641: testing find linkage for ssl library ..." 1>&5 +echo "${as_me-configure}:11844: testing find linkage for ssl library ..." 1>&5 -echo "${as_me-configure}:11643: testing Searching for headers in FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me-configure}:11846: testing Searching for headers in FIND_LINKAGE(ssl,openssl) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -11748,11 +11951,11 @@ cf_search="$cf_header_path_list $cf_search" if test -d $cf_cv_header_path_ssl ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_ssl" 1>&6 -echo "${as_me-configure}:11751: testing ... testing $cf_cv_header_path_ssl ..." 1>&5 +echo "${as_me-configure}:11954: testing ... testing $cf_cv_header_path_ssl ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_ssl" cat >conftest.$ac_ext <<_ACEOF -#line 11755 "configure" +#line 11958 "configure" #include "confdefs.h" #include <stdio.h> @@ -11781,21 +11984,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11784: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11987: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11787: \$? = $ac_status" >&5 + echo "$as_me:11990: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11790: \"$ac_try\"") >&5 + { (eval echo "$as_me:11993: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11793: \$? = $ac_status" >&5 + echo "$as_me:11996: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found ssl headers in $cf_cv_header_path_ssl" 1>&6 -echo "${as_me-configure}:11798: testing ... found ssl headers in $cf_cv_header_path_ssl ..." 1>&5 +echo "${as_me-configure}:12001: testing ... found ssl headers in $cf_cv_header_path_ssl ..." 1>&5 cf_cv_find_linkage_ssl=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -11813,7 +12016,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_ssl" = maybe ; then -echo "${as_me-configure}:11816: testing Searching for ssl library in FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me-configure}:12019: testing Searching for ssl library in FIND_LINKAGE(ssl,openssl) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -11821,7 +12024,7 @@ echo "${as_me-configure}:11816: testing Searching for ssl library in FIND_LINKAG CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lssl -lcrypto $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11824 "configure" +#line 12027 "configure" #include "confdefs.h" #include <stdio.h> @@ -11850,21 +12053,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11853: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12056: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11856: \$? = $ac_status" >&5 + echo "$as_me:12059: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11859: \"$ac_try\"") >&5 + { (eval echo "$as_me:12062: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11862: \$? = $ac_status" >&5 + echo "$as_me:12065: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found ssl library in system" 1>&6 -echo "${as_me-configure}:11867: testing ... found ssl library in system ..." 1>&5 +echo "${as_me-configure}:12070: testing ... found ssl library in system ..." 1>&5 cf_cv_find_linkage_ssl=yes else @@ -11966,13 +12169,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_ssl ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_ssl" 1>&6 -echo "${as_me-configure}:11969: testing ... testing $cf_cv_library_path_ssl ..." 1>&5 +echo "${as_me-configure}:12172: testing ... testing $cf_cv_library_path_ssl ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lssl -lcrypto $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_ssl" cat >conftest.$ac_ext <<_ACEOF -#line 11975 "configure" +#line 12178 "configure" #include "confdefs.h" #include <stdio.h> @@ -12001,21 +12204,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12004: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12207: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12007: \$? = $ac_status" >&5 + echo "$as_me:12210: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12010: \"$ac_try\"") >&5 + { (eval echo "$as_me:12213: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12013: \$? = $ac_status" >&5 + echo "$as_me:12216: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found ssl library in $cf_cv_library_path_ssl" 1>&6 -echo "${as_me-configure}:12018: testing ... found ssl library in $cf_cv_library_path_ssl ..." 1>&5 +echo "${as_me-configure}:12221: testing ... found ssl library in $cf_cv_library_path_ssl ..." 1>&5 cf_cv_find_linkage_ssl=yes cf_cv_library_file_ssl="-lssl" @@ -12092,13 +12295,13 @@ if test -n "$cf_cv_header_path_ssl" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 12101 "configure" +#line 12304 "configure" #include "confdefs.h" #include <stdio.h> int @@ -12110,16 +12313,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12113: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12316: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12116: \$? = $ac_status" >&5 + echo "$as_me:12319: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12119: \"$ac_try\"") >&5 + { (eval echo "$as_me:12322: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12122: \$? = $ac_status" >&5 + echo "$as_me:12325: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -12136,13 +12339,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:12139: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:12342: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -12176,7 +12379,7 @@ if test -n "$cf_cv_library_path_ssl" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:12179: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:12382: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -12187,10 +12390,10 @@ fi fi LIBS="-lssl -lcrypto $LIBS" -echo "$as_me:12190: checking for X509 support" >&5 +echo "$as_me:12393: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 12193 "configure" +#line 12396 "configure" #include "confdefs.h" #include <stdio.h> @@ -12214,16 +12417,16 @@ X509_verify_cert_error_string(X509_STORE_CTX_get_error(NULL)) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12217: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12420: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12220: \$? = $ac_status" >&5 + echo "$as_me:12423: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12223: \"$ac_try\"") >&5 + { (eval echo "$as_me:12426: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12226: \$? = $ac_status" >&5 + echo "$as_me:12429: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_x509_support=yes else @@ -12232,7 +12435,7 @@ cat conftest.$ac_ext >&5 cf_x509_support=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:12235: result: $cf_x509_support" >&5 +echo "$as_me:12438: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -12277,13 +12480,13 @@ if test -n "$cf_searchpath/include" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 12286 "configure" +#line 12489 "configure" #include "confdefs.h" #include <stdio.h> int @@ -12295,16 +12498,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12298: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12501: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12301: \$? = $ac_status" >&5 + echo "$as_me:12504: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12304: \"$ac_try\"") >&5 + { (eval echo "$as_me:12507: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12307: \$? = $ac_status" >&5 + echo "$as_me:12510: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -12321,13 +12524,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:12324: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:12527: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -12356,13 +12559,13 @@ if test -n "$cf_searchpath/../include" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 12365 "configure" +#line 12568 "configure" #include "confdefs.h" #include <stdio.h> int @@ -12374,16 +12577,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12377: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12580: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12380: \$? = $ac_status" >&5 + echo "$as_me:12583: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12383: \"$ac_try\"") >&5 + { (eval echo "$as_me:12586: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12386: \$? = $ac_status" >&5 + echo "$as_me:12589: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -12400,13 +12603,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:12403: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:12606: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -12416,7 +12619,7 @@ echo "${as_me-configure}:12403: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:12419: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:12622: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libgnutls" >&2;} { (exit 1); exit 1; }; } fi @@ -12441,7 +12644,7 @@ if test -n "$cf_searchpath/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:12444: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:12647: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -12470,7 +12673,7 @@ if test -n "$cf_searchpath" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:12473: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:12676: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -12479,7 +12682,7 @@ echo "${as_me-configure}:12473: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:12482: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:12685: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libgnutls" >&2;} { (exit 1); exit 1; }; } fi @@ -12497,12 +12700,12 @@ done yes) # if no explicit directory given, try pkg-config test -n "$verbose" && echo " checking pkg-config for $cf_pkg_gnutls" 1>&6 -echo "${as_me-configure}:12500: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 +echo "${as_me-configure}:12703: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 if "$PKG_CONFIG" --exists $cf_pkg_gnutls ; then test -n "$verbose" && echo " ... found $cf_pkg_gnutls in pkg-config" 1>&6 -echo "${as_me-configure}:12505: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me-configure}:12708: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_cv_have_gnutls=yes @@ -12603,14 +12806,14 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me-configure}:12606: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me-configure}:12809: testing adding $cf_libs_ssl to LIBS ..." 1>&5 LIBS="$cf_libs_ssl $LIBS" fi else test -n "$verbose" && echo " ... did not find $cf_pkg_gnutls in pkg-config" 1>&6 -echo "${as_me-configure}:12613: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me-configure}:12816: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_pkg_gnutls=none fi @@ -12630,10 +12833,10 @@ EOF cf_cv_header_path_gnutls= cf_cv_library_path_gnutls= -echo "${as_me-configure}:12633: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me-configure}:12836: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 12636 "configure" +#line 12839 "configure" #include "confdefs.h" #include <stdio.h> @@ -12662,16 +12865,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12665: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12868: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12668: \$? = $ac_status" >&5 + echo "$as_me:12871: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12671: \"$ac_try\"") >&5 + { (eval echo "$as_me:12874: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12674: \$? = $ac_status" >&5 + echo "$as_me:12877: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes else @@ -12682,9 +12885,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for gnutls library" 1>&6 -echo "${as_me-configure}:12685: testing find linkage for gnutls library ..." 1>&5 +echo "${as_me-configure}:12888: testing find linkage for gnutls library ..." 1>&5 -echo "${as_me-configure}:12687: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me-configure}:12890: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -12792,11 +12995,11 @@ cf_search="$cf_header_path_list $cf_search" if test -d $cf_cv_header_path_gnutls ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_gnutls" 1>&6 -echo "${as_me-configure}:12795: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me-configure}:12998: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_gnutls" cat >conftest.$ac_ext <<_ACEOF -#line 12799 "configure" +#line 13002 "configure" #include "confdefs.h" #include <stdio.h> @@ -12825,21 +13028,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12828: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13031: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12831: \$? = $ac_status" >&5 + echo "$as_me:13034: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12834: \"$ac_try\"") >&5 + { (eval echo "$as_me:13037: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12837: \$? = $ac_status" >&5 + echo "$as_me:13040: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found gnutls headers in $cf_cv_header_path_gnutls" 1>&6 -echo "${as_me-configure}:12842: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me-configure}:13045: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -12857,7 +13060,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_gnutls" = maybe ; then -echo "${as_me-configure}:12860: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me-configure}:13063: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -12953,13 +13156,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_gnutls ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_gnutls" 1>&6 -echo "${as_me-configure}:12956: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me-configure}:13159: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lgnutls -lgnutls -lcrypt $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_gnutls" cat >conftest.$ac_ext <<_ACEOF -#line 12962 "configure" +#line 13165 "configure" #include "confdefs.h" #include <stdio.h> @@ -12988,21 +13191,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12991: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13194: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12994: \$? = $ac_status" >&5 + echo "$as_me:13197: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12997: \"$ac_try\"") >&5 + { (eval echo "$as_me:13200: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13000: \$? = $ac_status" >&5 + echo "$as_me:13203: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found gnutls library in $cf_cv_library_path_gnutls" 1>&6 -echo "${as_me-configure}:13005: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me-configure}:13208: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=yes cf_cv_library_file_gnutls="-lgnutls" @@ -13069,13 +13272,13 @@ if test -n "$cf_cv_header_path_gnutls" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 13078 "configure" +#line 13281 "configure" #include "confdefs.h" #include <stdio.h> int @@ -13087,16 +13290,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13090: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13293: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13093: \$? = $ac_status" >&5 + echo "$as_me:13296: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13096: \"$ac_try\"") >&5 + { (eval echo "$as_me:13299: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13099: \$? = $ac_status" >&5 + echo "$as_me:13302: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -13113,13 +13316,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:13116: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:13319: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -13152,7 +13355,7 @@ if test -n "$cf_cv_library_path_gnutls" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:13155: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:13358: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -13165,10 +13368,10 @@ fi EXTRA_OBJS="$EXTRA_OBJS tidy_tls\$o" -echo "$as_me:13168: checking for X509 support" >&5 +echo "$as_me:13371: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 13171 "configure" +#line 13374 "configure" #include "confdefs.h" #include <stdio.h> @@ -13192,16 +13395,16 @@ X509_verify_cert_error_string(X509_STORE_CTX_get_error(NULL)) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13195: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13398: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13198: \$? = $ac_status" >&5 + echo "$as_me:13401: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13201: \"$ac_try\"") >&5 + { (eval echo "$as_me:13404: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13204: \$? = $ac_status" >&5 + echo "$as_me:13407: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_x509_support=yes else @@ -13210,7 +13413,7 @@ cat conftest.$ac_ext >&5 cf_x509_support=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:13213: result: $cf_x509_support" >&5 +echo "$as_me:13416: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -13254,13 +13457,13 @@ if test -n "$cf_searchpath/include" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 13263 "configure" +#line 13466 "configure" #include "confdefs.h" #include <stdio.h> int @@ -13272,16 +13475,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13275: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13478: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13278: \$? = $ac_status" >&5 + echo "$as_me:13481: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13281: \"$ac_try\"") >&5 + { (eval echo "$as_me:13484: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13284: \$? = $ac_status" >&5 + echo "$as_me:13487: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -13298,13 +13501,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:13301: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:13504: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -13333,13 +13536,13 @@ if test -n "$cf_searchpath/../include" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 13342 "configure" +#line 13545 "configure" #include "confdefs.h" #include <stdio.h> int @@ -13351,16 +13554,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13354: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13557: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13357: \$? = $ac_status" >&5 + echo "$as_me:13560: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13360: \"$ac_try\"") >&5 + { (eval echo "$as_me:13563: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13363: \$? = $ac_status" >&5 + echo "$as_me:13566: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -13377,13 +13580,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:13380: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:13583: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -13393,7 +13596,7 @@ echo "${as_me-configure}:13380: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:13396: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:13599: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libgnutls" >&2;} { (exit 1); exit 1; }; } fi @@ -13418,7 +13621,7 @@ if test -n "$cf_searchpath/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:13421: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:13624: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -13447,7 +13650,7 @@ if test -n "$cf_searchpath" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:13450: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:13653: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -13456,7 +13659,7 @@ echo "${as_me-configure}:13450: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:13459: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:13662: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libgnutls" >&2;} { (exit 1); exit 1; }; } fi @@ -13474,12 +13677,12 @@ done yes) # if no explicit directory given, try pkg-config test -n "$verbose" && echo " checking pkg-config for $cf_pkg_gnutls" 1>&6 -echo "${as_me-configure}:13477: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 +echo "${as_me-configure}:13680: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 if "$PKG_CONFIG" --exists $cf_pkg_gnutls ; then test -n "$verbose" && echo " ... found $cf_pkg_gnutls in pkg-config" 1>&6 -echo "${as_me-configure}:13482: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me-configure}:13685: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_cv_have_gnutls=yes @@ -13580,14 +13783,14 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me-configure}:13583: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me-configure}:13786: testing adding $cf_libs_ssl to LIBS ..." 1>&5 LIBS="$cf_libs_ssl $LIBS" fi else test -n "$verbose" && echo " ... did not find $cf_pkg_gnutls in pkg-config" 1>&6 -echo "${as_me-configure}:13590: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me-configure}:13793: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_pkg_gnutls=none fi @@ -13607,10 +13810,10 @@ EOF cf_cv_header_path_gnutls= cf_cv_library_path_gnutls= -echo "${as_me-configure}:13610: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me-configure}:13813: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 13613 "configure" +#line 13816 "configure" #include "confdefs.h" #include <stdio.h> @@ -13639,16 +13842,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13642: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13845: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13645: \$? = $ac_status" >&5 + echo "$as_me:13848: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13648: \"$ac_try\"") >&5 + { (eval echo "$as_me:13851: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13651: \$? = $ac_status" >&5 + echo "$as_me:13854: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes else @@ -13659,9 +13862,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for gnutls library" 1>&6 -echo "${as_me-configure}:13662: testing find linkage for gnutls library ..." 1>&5 +echo "${as_me-configure}:13865: testing find linkage for gnutls library ..." 1>&5 -echo "${as_me-configure}:13664: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me-configure}:13867: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -13769,11 +13972,11 @@ cf_search="$cf_header_path_list $cf_search" if test -d $cf_cv_header_path_gnutls ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_gnutls" 1>&6 -echo "${as_me-configure}:13772: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me-configure}:13975: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_gnutls" cat >conftest.$ac_ext <<_ACEOF -#line 13776 "configure" +#line 13979 "configure" #include "confdefs.h" #include <stdio.h> @@ -13802,21 +14005,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13805: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14008: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13808: \$? = $ac_status" >&5 + echo "$as_me:14011: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13811: \"$ac_try\"") >&5 + { (eval echo "$as_me:14014: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13814: \$? = $ac_status" >&5 + echo "$as_me:14017: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found gnutls headers in $cf_cv_header_path_gnutls" 1>&6 -echo "${as_me-configure}:13819: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me-configure}:14022: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -13834,7 +14037,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_gnutls" = maybe ; then -echo "${as_me-configure}:13837: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me-configure}:14040: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -13930,13 +14133,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_gnutls ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_gnutls" 1>&6 -echo "${as_me-configure}:13933: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me-configure}:14136: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lgnutls -lgnutls-openssl -lgnutls-extra -lgnutls -lcrypt $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_gnutls" cat >conftest.$ac_ext <<_ACEOF -#line 13939 "configure" +#line 14142 "configure" #include "confdefs.h" #include <stdio.h> @@ -13965,21 +14168,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13968: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14171: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13971: \$? = $ac_status" >&5 + echo "$as_me:14174: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13974: \"$ac_try\"") >&5 + { (eval echo "$as_me:14177: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13977: \$? = $ac_status" >&5 + echo "$as_me:14180: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found gnutls library in $cf_cv_library_path_gnutls" 1>&6 -echo "${as_me-configure}:13982: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me-configure}:14185: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=yes cf_cv_library_file_gnutls="-lgnutls" @@ -14046,13 +14249,13 @@ if test -n "$cf_cv_header_path_gnutls" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 14055 "configure" +#line 14258 "configure" #include "confdefs.h" #include <stdio.h> int @@ -14064,16 +14267,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14067: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14270: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14070: \$? = $ac_status" >&5 + echo "$as_me:14273: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14073: \"$ac_try\"") >&5 + { (eval echo "$as_me:14276: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14076: \$? = $ac_status" >&5 + echo "$as_me:14279: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -14090,13 +14293,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:14093: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:14296: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -14129,7 +14332,7 @@ if test -n "$cf_cv_library_path_gnutls" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:14132: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:14335: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -14141,7 +14344,7 @@ fi LIBS="-lgnutls -lcrypt $LIBS" if test "$cf_pkg_gnutls" = none ; then - echo "$as_me:14144: checking for SSL_connect in -lgnutls-openssl" >&5 + echo "$as_me:14347: checking for SSL_connect in -lgnutls-openssl" >&5 echo $ECHO_N "checking for SSL_connect in -lgnutls-openssl... $ECHO_C" >&6 if test "${ac_cv_lib_gnutls_openssl_SSL_connect+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14149,7 +14352,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgnutls-openssl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14152 "configure" +#line 14355 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -14168,16 +14371,16 @@ SSL_connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14171: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14374: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14174: \$? = $ac_status" >&5 + echo "$as_me:14377: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14177: \"$ac_try\"") >&5 + { (eval echo "$as_me:14380: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14180: \$? = $ac_status" >&5 + echo "$as_me:14383: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gnutls_openssl_SSL_connect=yes else @@ -14188,12 +14391,12 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:14191: result: $ac_cv_lib_gnutls_openssl_SSL_connect" >&5 +echo "$as_me:14394: result: $ac_cv_lib_gnutls_openssl_SSL_connect" >&5 echo "${ECHO_T}$ac_cv_lib_gnutls_openssl_SSL_connect" >&6 if test $ac_cv_lib_gnutls_openssl_SSL_connect = yes; then LIBS="-lgnutls-openssl $LIBS" else - echo "$as_me:14196: checking for SSL_connect in -lgnutls-extra" >&5 + echo "$as_me:14399: checking for SSL_connect in -lgnutls-extra" >&5 echo $ECHO_N "checking for SSL_connect in -lgnutls-extra... $ECHO_C" >&6 if test "${ac_cv_lib_gnutls_extra_SSL_connect+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14201,7 +14404,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgnutls-extra $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14204 "configure" +#line 14407 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -14220,16 +14423,16 @@ SSL_connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14223: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14426: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14226: \$? = $ac_status" >&5 + echo "$as_me:14429: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14229: \"$ac_try\"") >&5 + { (eval echo "$as_me:14432: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14232: \$? = $ac_status" >&5 + echo "$as_me:14435: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gnutls_extra_SSL_connect=yes else @@ -14240,12 +14443,12 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:14243: result: $ac_cv_lib_gnutls_extra_SSL_connect" >&5 +echo "$as_me:14446: result: $ac_cv_lib_gnutls_extra_SSL_connect" >&5 echo "${ECHO_T}$ac_cv_lib_gnutls_extra_SSL_connect" >&6 if test $ac_cv_lib_gnutls_extra_SSL_connect = yes; then LIBS="-lgnutls-extra $LIBS" else - { { echo "$as_me:14248: error: cannot find gnutls openssl functions" >&5 + { { echo "$as_me:14451: error: cannot find gnutls openssl functions" >&5 echo "$as_me: error: cannot find gnutls openssl functions" >&2;} { (exit 1); exit 1; }; } fi @@ -14254,10 +14457,10 @@ fi fi -echo "$as_me:14257: checking for X509 support" >&5 +echo "$as_me:14460: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 14260 "configure" +#line 14463 "configure" #include "confdefs.h" #include <stdio.h> @@ -14281,16 +14484,16 @@ X509_verify_cert_error_string(X509_STORE_CTX_get_error(NULL)) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14284: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14487: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14287: \$? = $ac_status" >&5 + echo "$as_me:14490: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14290: \"$ac_try\"") >&5 + { (eval echo "$as_me:14493: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14293: \$? = $ac_status" >&5 + echo "$as_me:14496: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_x509_support=yes else @@ -14299,7 +14502,7 @@ cat conftest.$ac_ext >&5 cf_x509_support=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:14302: result: $cf_x509_support" >&5 +echo "$as_me:14505: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -14331,7 +14534,7 @@ no) #(vi ;; yes) #(vi -echo "$as_me:14334: checking for SSL_get_version in -lnss_compat_ossl" >&5 +echo "$as_me:14537: checking for SSL_get_version in -lnss_compat_ossl" >&5 echo $ECHO_N "checking for SSL_get_version in -lnss_compat_ossl... $ECHO_C" >&6 if test "${ac_cv_lib_nss_compat_ossl_SSL_get_version+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14339,7 +14542,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnss_compat_ossl -lnss_compat_ossl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14342 "configure" +#line 14545 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -14358,16 +14561,16 @@ SSL_get_version (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14361: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14564: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14364: \$? = $ac_status" >&5 + echo "$as_me:14567: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14367: \"$ac_try\"") >&5 + { (eval echo "$as_me:14570: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14370: \$? = $ac_status" >&5 + echo "$as_me:14573: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nss_compat_ossl_SSL_get_version=yes else @@ -14378,7 +14581,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:14381: result: $ac_cv_lib_nss_compat_ossl_SSL_get_version" >&5 +echo "$as_me:14584: result: $ac_cv_lib_nss_compat_ossl_SSL_get_version" >&5 echo "${ECHO_T}$ac_cv_lib_nss_compat_ossl_SSL_get_version" >&6 if test $ac_cv_lib_nss_compat_ossl_SSL_get_version = yes; then cat >>confdefs.h <<EOF @@ -14393,11 +14596,11 @@ else if test -d $cf_ssl_root ; then test -n "$verbose" && echo " assume it is in $cf_ssl_root" 1>&6 -echo "${as_me-configure}:14396: testing assume it is in $cf_ssl_root ..." 1>&5 +echo "${as_me-configure}:14599: testing assume it is in $cf_ssl_root ..." 1>&5 cf_ssl_library="-L$cf_ssl_root/lib $cf_ssl_library" else - { { echo "$as_me:14400: error: cannot find NSS compilant libraries" >&5 + { { echo "$as_me:14603: error: cannot find NSS compilant libraries" >&5 echo "$as_me: error: cannot find NSS compilant libraries" >&2;} { (exit 1); exit 1; }; } fi @@ -14412,13 +14615,13 @@ fi elif test -d $cf_cv_use_libnss_compat/../include ; then cf_ssl_root=$cf_cv_use_libnss_compat/.. else - { { echo "$as_me:14415: error: cannot find NSS compilant library under $cf_cv_use_libnss_compat" >&5 + { { echo "$as_me:14618: error: cannot find NSS compilant library under $cf_cv_use_libnss_compat" >&5 echo "$as_me: error: cannot find NSS compilant library under $cf_cv_use_libnss_compat" >&2;} { (exit 1); exit 1; }; } fi cf_ssl_library="-L$cf_ssl_root/lib $cf_ssl_library" else - { echo "$as_me:14421: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&5 + { echo "$as_me:14624: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&5 echo "$as_me: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&2;} fi ;; @@ -14502,10 +14705,10 @@ if test -n "$cf_new_extra_cppflags" ; then fi if test "$cf_ssl_subincs" = yes ; then -echo "$as_me:14505: checking for NSS compilant include directory" >&5 +echo "$as_me:14708: checking for NSS compilant include directory" >&5 echo $ECHO_N "checking for NSS compilant include directory... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 14508 "configure" +#line 14711 "configure" #include "confdefs.h" #include <stdio.h> @@ -14519,16 +14722,16 @@ SSL_shutdown((SSL *)0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14522: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14725: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14525: \$? = $ac_status" >&5 + echo "$as_me:14728: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14528: \"$ac_try\"") >&5 + { (eval echo "$as_me:14731: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14531: \$? = $ac_status" >&5 + echo "$as_me:14734: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_ssl_incl=yes else @@ -14537,7 +14740,7 @@ cat conftest.$ac_ext >&5 cf_ssl_incl=no fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:14540: result: $cf_ssl_incl" >&5 +echo "$as_me:14743: result: $cf_ssl_incl" >&5 echo "${ECHO_T}$cf_ssl_incl" >&6 test "$cf_ssl_incl" = yes && cat >>confdefs.h <<\EOF #define USE_NSS_COMPAT_INCL 1 @@ -14545,10 +14748,10 @@ EOF fi -echo "$as_me:14548: checking if we can link to NSS compilant library" >&5 +echo "$as_me:14751: checking if we can link to NSS compilant library" >&5 echo $ECHO_N "checking if we can link to NSS compilant library... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 14551 "configure" +#line 14754 "configure" #include "confdefs.h" #include <stdio.h> @@ -14567,16 +14770,16 @@ SSL_shutdown((SSL *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14570: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14773: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14573: \$? = $ac_status" >&5 + echo "$as_me:14776: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14576: \"$ac_try\"") >&5 + { (eval echo "$as_me:14779: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14579: \$? = $ac_status" >&5 + echo "$as_me:14782: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_ssl_library=yes else @@ -14585,7 +14788,7 @@ cat conftest.$ac_ext >&5 cf_ssl_library=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:14588: result: $cf_ssl_library" >&5 +echo "$as_me:14791: result: $cf_ssl_library" >&5 echo "${ECHO_T}$cf_ssl_library" >&6 if test "$cf_ssl_library" = yes ; then cat >>confdefs.h <<\EOF @@ -14597,7 +14800,7 @@ EOF EOF else - { { echo "$as_me:14600: error: Cannot link with NSS compilant libraries" >&5 + { { echo "$as_me:14803: error: Cannot link with NSS compilant libraries" >&5 echo "$as_me: error: Cannot link with NSS compilant libraries" >&2;} { (exit 1); exit 1; }; } fi @@ -14605,7 +14808,7 @@ fi fi ### check for ipv6 support -echo "$as_me:14608: checking whether to enable ipv6" >&5 +echo "$as_me:14811: checking whether to enable ipv6" >&5 echo $ECHO_N "checking whether to enable ipv6... $ECHO_C" >&6 # Check whether --enable-ipv6 or --disable-ipv6 was given. @@ -14621,11 +14824,11 @@ EOF else enableval=no fi; -echo "$as_me:14624: result: $enableval" >&5 +echo "$as_me:14827: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 if test "$enableval" = "yes"; then -echo "$as_me:14628: checking ipv6 stack type" >&5 +echo "$as_me:14831: checking ipv6 stack type" >&5 echo $ECHO_N "checking ipv6 stack type... $ECHO_C" >&6 if test "${cf_cv_ipv6type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14646,7 +14849,7 @@ do ;; inria) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 14649 "configure" +#line 14852 "configure" #include "confdefs.h" #include <netinet/in.h> @@ -14663,7 +14866,7 @@ rm -f conftest* ;; kame) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 14666 "configure" +#line 14869 "configure" #include "confdefs.h" #include <netinet/in.h> @@ -14680,7 +14883,7 @@ rm -f conftest* ;; linux-glibc) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 14683 "configure" +#line 14886 "configure" #include "confdefs.h" #include <features.h> @@ -14706,7 +14909,7 @@ rm -f conftest* ;; toshiba) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 14709 "configure" +#line 14912 "configure" #include "confdefs.h" #include <sys/param.h> @@ -14723,7 +14926,7 @@ rm -f conftest* ;; v6d) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 14726 "configure" +#line 14929 "configure" #include "confdefs.h" #include </usr/local/v6/include/sys/v6config.h> @@ -14740,7 +14943,7 @@ rm -f conftest* ;; zeta) cat >conftest.$ac_ext <<_ACEOF -#line 14743 "configure" +#line 14946 "configure" #include "confdefs.h" #include <sys/param.h> @@ -14762,13 +14965,13 @@ rm -f conftest* done fi -echo "$as_me:14765: result: $cf_cv_ipv6type" >&5 +echo "$as_me:14968: result: $cf_cv_ipv6type" >&5 echo "${ECHO_T}$cf_cv_ipv6type" >&6 cf_ipv6lib=none cf_ipv6dir=none -echo "$as_me:14771: checking for IPv6 library if required" >&5 +echo "$as_me:14974: checking for IPv6 library if required" >&5 echo $ECHO_N "checking for IPv6 library if required... $ECHO_C" >&6 case $cf_cv_ipv6type in #(vi solaris) #(vi @@ -14798,13 +15001,13 @@ zeta) cf_ipv6dir=v6 ;; esac -echo "$as_me:14801: result: $cf_ipv6lib" >&5 +echo "$as_me:15004: result: $cf_ipv6lib" >&5 echo "${ECHO_T}$cf_ipv6lib" >&6 if test "$cf_ipv6lib" != "none"; then cat >conftest.$ac_ext <<_ACEOF -#line 14807 "configure" +#line 15010 "configure" #include "confdefs.h" #include <sys/types.h> @@ -14820,16 +15023,16 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14823: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15026: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14826: \$? = $ac_status" >&5 + echo "$as_me:15029: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14829: \"$ac_try\"") >&5 + { (eval echo "$as_me:15032: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14832: \$? = $ac_status" >&5 + echo "$as_me:15035: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -14958,13 +15161,13 @@ if test -n "$cf_incdir" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 14967 "configure" +#line 15170 "configure" #include "confdefs.h" #include <stdio.h> int @@ -14976,16 +15179,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14979: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15182: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14982: \$? = $ac_status" >&5 + echo "$as_me:15185: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14985: \"$ac_try\"") >&5 + { (eval echo "$as_me:15188: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14988: \$? = $ac_status" >&5 + echo "$as_me:15191: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -15002,13 +15205,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:15005: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:15208: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -15028,13 +15231,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext eval 'cf_cv_have_lib_'$cf_ipv6lib'=no' cf_libdir="" - echo "$as_me:15031: checking for getaddrinfo" >&5 + echo "$as_me:15234: checking for getaddrinfo" >&5 echo $ECHO_N "checking for getaddrinfo... $ECHO_C" >&6 if test "${ac_cv_func_getaddrinfo+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 15037 "configure" +#line 15240 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getaddrinfo (); below. */ @@ -15065,16 +15268,16 @@ f = getaddrinfo; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15068: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15271: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15071: \$? = $ac_status" >&5 + echo "$as_me:15274: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15074: \"$ac_try\"") >&5 + { (eval echo "$as_me:15277: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15077: \$? = $ac_status" >&5 + echo "$as_me:15280: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_getaddrinfo=yes else @@ -15084,18 +15287,18 @@ ac_cv_func_getaddrinfo=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:15087: result: $ac_cv_func_getaddrinfo" >&5 +echo "$as_me:15290: result: $ac_cv_func_getaddrinfo" >&5 echo "${ECHO_T}$ac_cv_func_getaddrinfo" >&6 if test $ac_cv_func_getaddrinfo = yes; then eval 'cf_cv_have_lib_'$cf_ipv6lib'=yes' else cf_save_LIBS="$LIBS" - echo "$as_me:15094: checking for getaddrinfo in -l$cf_ipv6lib" >&5 + echo "$as_me:15297: checking for getaddrinfo in -l$cf_ipv6lib" >&5 echo $ECHO_N "checking for getaddrinfo in -l$cf_ipv6lib... $ECHO_C" >&6 LIBS="-l$cf_ipv6lib $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 15098 "configure" +#line 15301 "configure" #include "confdefs.h" #include <sys/types.h> @@ -15111,25 +15314,25 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15114: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15317: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15117: \$? = $ac_status" >&5 + echo "$as_me:15320: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15120: \"$ac_try\"") >&5 + { (eval echo "$as_me:15323: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15123: \$? = $ac_status" >&5 + echo "$as_me:15326: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:15125: result: yes" >&5 + echo "$as_me:15328: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'$cf_ipv6lib'=yes' else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:15132: result: no" >&5 +echo "$as_me:15335: result: no" >&5 echo "${ECHO_T}no" >&6 cf_library_path_list="" @@ -15218,11 +15421,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:15221: checking for -l$cf_ipv6lib in $cf_libdir" >&5 + echo "$as_me:15424: checking for -l$cf_ipv6lib in $cf_libdir" >&5 echo $ECHO_N "checking for -l$cf_ipv6lib in $cf_libdir... $ECHO_C" >&6 LIBS="-L$cf_libdir -l$cf_ipv6lib $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 15225 "configure" +#line 15428 "configure" #include "confdefs.h" #include <sys/types.h> @@ -15238,25 +15441,25 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15241: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15444: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15244: \$? = $ac_status" >&5 + echo "$as_me:15447: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15247: \"$ac_try\"") >&5 + { (eval echo "$as_me:15450: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15250: \$? = $ac_status" >&5 + echo "$as_me:15453: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:15252: result: yes" >&5 + echo "$as_me:15455: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'$cf_ipv6lib'=yes' break else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:15259: result: no" >&5 +echo "$as_me:15462: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -15271,7 +15474,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_ipv6lib if test $cf_found_library = no ; then - { { echo "$as_me:15274: error: No $cf_ipv6lib library found, cannot continue. You must fetch lib$cf_ipv6lib.a + { { echo "$as_me:15477: error: No $cf_ipv6lib library found, cannot continue. You must fetch lib$cf_ipv6lib.a from an appropriate IPv6 kit and compile beforehand." >&5 echo "$as_me: error: No $cf_ipv6lib library found, cannot continue. You must fetch lib$cf_ipv6lib.a from an appropriate IPv6 kit and compile beforehand." >&2;} @@ -15279,7 +15482,7 @@ from an appropriate IPv6 kit and compile beforehand." >&2;} fi fi -echo "$as_me:15282: checking working getaddrinfo" >&5 +echo "$as_me:15485: checking working getaddrinfo" >&5 echo $ECHO_N "checking working getaddrinfo... $ECHO_C" >&6 if test "${cf_cv_getaddrinfo+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15289,7 +15492,7 @@ if test "$cross_compiling" = yes; then cf_cv_getaddrinfo=unknown else cat >conftest.$ac_ext <<_ACEOF -#line 15292 "configure" +#line 15495 "configure" #include "confdefs.h" #include <sys/types.h> @@ -15369,15 +15572,15 @@ int main() _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:15372: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15575: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15375: \$? = $ac_status" >&5 + echo "$as_me:15578: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:15377: \"$ac_try\"") >&5 + { (eval echo "$as_me:15580: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15380: \$? = $ac_status" >&5 + echo "$as_me:15583: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_getaddrinfo=yes else @@ -15390,7 +15593,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:15393: result: $cf_cv_getaddrinfo" >&5 +echo "$as_me:15596: result: $cf_cv_getaddrinfo" >&5 echo "${ECHO_T}$cf_cv_getaddrinfo" >&6 if test "$cf_cv_getaddrinfo" = yes ; then cat >>confdefs.h <<\EOF @@ -15405,12 +15608,12 @@ fi if test "$cf_cv_getaddrinfo" != "yes"; then if test "$cf_cv_ipv6type" != "linux"; then - { echo "$as_me:15408: WARNING: You must get working getaddrinfo() function, + { echo "$as_me:15611: WARNING: You must get working getaddrinfo() function, or you can specify \"--disable-ipv6\"" >&5 echo "$as_me: WARNING: You must get working getaddrinfo() function, or you can specify \"--disable-ipv6\"" >&2;} else - { echo "$as_me:15413: WARNING: The getaddrinfo() implementation on your system seems be buggy. + { echo "$as_me:15616: WARNING: The getaddrinfo() implementation on your system seems be buggy. You should upgrade your system library to the newest version of GNU C library (aka glibc)." >&5 echo "$as_me: WARNING: The getaddrinfo() implementation on your system seems be buggy. @@ -15421,7 +15624,7 @@ fi fi -echo "$as_me:15424: checking for screen type" >&5 +echo "$as_me:15627: checking for screen type" >&5 echo $ECHO_N "checking for screen type... $ECHO_C" >&6 if test "${cf_cv_screen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15435,7 +15638,7 @@ case $withval in curses|ncurses|ncursesw|pdcurses|slang) cf_cv_screen=$withval ;; -*) { { echo "$as_me:15438: error: Unexpected value" >&5 +*) { { echo "$as_me:15641: error: Unexpected value" >&5 echo "$as_me: error: Unexpected value" >&2;} { (exit 1); exit 1; }; } ;; @@ -15444,7 +15647,7 @@ else cf_cv_screen=curses fi; fi -echo "$as_me:15447: result: $cf_cv_screen" >&5 +echo "$as_me:15650: result: $cf_cv_screen" >&5 echo "${ECHO_T}$cf_cv_screen" >&6 case $cf_cv_screen in @@ -15479,7 +15682,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:15482: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:15685: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -15498,7 +15701,7 @@ dft_color_style=yes case $cf_cv_screen in curses) -echo "$as_me:15501: checking for extra include directories" >&5 +echo "$as_me:15704: checking for extra include directories" >&5 echo $ECHO_N "checking for extra include directories... $ECHO_C" >&6 if test "${cf_cv_curses_incdir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15518,11 +15721,11 @@ sunos3*|sunos4*) esac fi -echo "$as_me:15521: result: $cf_cv_curses_incdir" >&5 +echo "$as_me:15724: result: $cf_cv_curses_incdir" >&5 echo "${ECHO_T}$cf_cv_curses_incdir" >&6 test "$cf_cv_curses_incdir" != no && CPPFLAGS="$cf_cv_curses_incdir $CPPFLAGS" -echo "$as_me:15525: checking if we have identified curses headers" >&5 +echo "$as_me:15728: checking if we have identified curses headers" >&5 echo $ECHO_N "checking if we have identified curses headers... $ECHO_C" >&6 if test "${cf_cv_ncurses_header+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15536,7 +15739,7 @@ for cf_header in \ ncurses/ncurses.h do cat >conftest.$ac_ext <<_ACEOF -#line 15539 "configure" +#line 15742 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -15548,16 +15751,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15551: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15754: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15554: \$? = $ac_status" >&5 + echo "$as_me:15757: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15557: \"$ac_try\"") >&5 + { (eval echo "$as_me:15760: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15560: \$? = $ac_status" >&5 + echo "$as_me:15763: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -15568,11 +15771,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:15571: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:15774: result: $cf_cv_ncurses_header" >&5 echo "${ECHO_T}$cf_cv_ncurses_header" >&6 if test "$cf_cv_ncurses_header" = none ; then - { { echo "$as_me:15575: error: No curses header-files found" >&5 + { { echo "$as_me:15778: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -15582,23 +15785,23 @@ fi for ac_header in $cf_cv_ncurses_header do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:15585: checking for $ac_header" >&5 +echo "$as_me:15788: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 15591 "configure" +#line 15794 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:15595: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:15798: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:15601: \$? = $ac_status" >&5 + echo "$as_me:15804: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -15617,7 +15820,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:15620: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:15823: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -15627,7 +15830,7 @@ EOF fi done -echo "$as_me:15630: checking for terminfo header" >&5 +echo "$as_me:15833: checking for terminfo header" >&5 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6 if test "${cf_cv_term_header+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15645,7 +15848,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 15648 "configure" +#line 15851 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header-curses.h}> @@ -15660,16 +15863,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15663: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15866: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15666: \$? = $ac_status" >&5 + echo "$as_me:15869: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15669: \"$ac_try\"") >&5 + { (eval echo "$as_me:15872: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15672: \$? = $ac_status" >&5 + echo "$as_me:15875: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -15685,7 +15888,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:15688: result: $cf_cv_term_header" >&5 +echo "$as_me:15891: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -15714,7 +15917,7 @@ EOF ;; esac -echo "$as_me:15717: checking for ncurses version" >&5 +echo "$as_me:15920: checking for ncurses version" >&5 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6 if test "${cf_cv_ncurses_version+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15740,10 +15943,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:15743: \"$cf_try\"") >&5 + { (eval echo "$as_me:15946: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:15746: \$? = $ac_status" >&5 + echo "$as_me:15949: \$? = $ac_status" >&5 (exit $ac_status); } if test -f conftest.out ; then cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'` @@ -15753,7 +15956,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 15756 "configure" +#line 15959 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -15778,15 +15981,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:15781: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15984: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15784: \$? = $ac_status" >&5 + echo "$as_me:15987: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:15786: \"$ac_try\"") >&5 + { (eval echo "$as_me:15989: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15789: \$? = $ac_status" >&5 + echo "$as_me:15992: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -15800,16 +16003,16 @@ fi rm -f $cf_tempfile fi -echo "$as_me:15803: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:16006: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:15809: checking if we have identified curses libraries" >&5 +echo "$as_me:16012: checking if we have identified curses libraries" >&5 echo $ECHO_N "checking if we have identified curses libraries... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 15812 "configure" +#line 16015 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -15821,16 +16024,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15824: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16027: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15827: \$? = $ac_status" >&5 + echo "$as_me:16030: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15830: \"$ac_try\"") >&5 + { (eval echo "$as_me:16033: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15833: \$? = $ac_status" >&5 + echo "$as_me:16036: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -15839,13 +16042,13 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:15842: result: $cf_result" >&5 +echo "$as_me:16045: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = no ; then case $host_os in #(vi freebsd*) #(vi - echo "$as_me:15848: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:16051: checking for tgoto in -lmytinfo" >&5 echo $ECHO_N "checking for tgoto in -lmytinfo... $ECHO_C" >&6 if test "${ac_cv_lib_mytinfo_tgoto+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15853,7 +16056,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 15856 "configure" +#line 16059 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -15872,16 +16075,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15875: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16078: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15878: \$? = $ac_status" >&5 + echo "$as_me:16081: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15881: \"$ac_try\"") >&5 + { (eval echo "$as_me:16084: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15884: \$? = $ac_status" >&5 + echo "$as_me:16087: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -15892,7 +16095,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:15895: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:16098: result: $ac_cv_lib_mytinfo_tgoto" >&5 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6 if test $ac_cv_lib_mytinfo_tgoto = yes; then LIBS="-lmytinfo $LIBS" @@ -15900,7 +16103,7 @@ fi ;; hpux10.*) #(vi - echo "$as_me:15903: checking for initscr in -lcur_colr" >&5 + echo "$as_me:16106: checking for initscr in -lcur_colr" >&5 echo $ECHO_N "checking for initscr in -lcur_colr... $ECHO_C" >&6 if test "${ac_cv_lib_cur_colr_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15908,7 +16111,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcur_colr $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 15911 "configure" +#line 16114 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -15927,16 +16130,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15930: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16133: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15933: \$? = $ac_status" >&5 + echo "$as_me:16136: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15936: \"$ac_try\"") >&5 + { (eval echo "$as_me:16139: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15939: \$? = $ac_status" >&5 + echo "$as_me:16142: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_cur_colr_initscr=yes else @@ -15947,7 +16150,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:15950: result: $ac_cv_lib_cur_colr_initscr" >&5 +echo "$as_me:16153: result: $ac_cv_lib_cur_colr_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_cur_colr_initscr" >&6 if test $ac_cv_lib_cur_colr_initscr = yes; then @@ -15956,7 +16159,7 @@ if test $ac_cv_lib_cur_colr_initscr = yes; then else - echo "$as_me:15959: checking for initscr in -lHcurses" >&5 + echo "$as_me:16162: checking for initscr in -lHcurses" >&5 echo $ECHO_N "checking for initscr in -lHcurses... $ECHO_C" >&6 if test "${ac_cv_lib_Hcurses_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15964,7 +16167,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lHcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 15967 "configure" +#line 16170 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -15983,16 +16186,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15986: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16189: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15989: \$? = $ac_status" >&5 + echo "$as_me:16192: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15992: \"$ac_try\"") >&5 + { (eval echo "$as_me:16195: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15995: \$? = $ac_status" >&5 + echo "$as_me:16198: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Hcurses_initscr=yes else @@ -16003,7 +16206,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:16006: result: $ac_cv_lib_Hcurses_initscr" >&5 +echo "$as_me:16209: result: $ac_cv_lib_Hcurses_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_Hcurses_initscr" >&6 if test $ac_cv_lib_Hcurses_initscr = yes; then @@ -16038,7 +16241,7 @@ if test -n "/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:16041: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:16244: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -16069,7 +16272,7 @@ if test -n "/usr/5lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:16072: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:16275: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -16097,13 +16300,13 @@ if test ".$ac_cv_func_initscr" != .yes ; then # Check for library containing tgoto. Do this before curses library # because it may be needed to link the test-case for initscr. - echo "$as_me:16100: checking for tgoto" >&5 + echo "$as_me:16303: checking for tgoto" >&5 echo $ECHO_N "checking for tgoto... $ECHO_C" >&6 if test "${ac_cv_func_tgoto+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 16106 "configure" +#line 16309 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char tgoto (); below. */ @@ -16134,16 +16337,16 @@ f = tgoto; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16137: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16340: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16140: \$? = $ac_status" >&5 + echo "$as_me:16343: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16143: \"$ac_try\"") >&5 + { (eval echo "$as_me:16346: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16146: \$? = $ac_status" >&5 + echo "$as_me:16349: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_tgoto=yes else @@ -16153,7 +16356,7 @@ ac_cv_func_tgoto=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:16156: result: $ac_cv_func_tgoto" >&5 +echo "$as_me:16359: result: $ac_cv_func_tgoto" >&5 echo "${ECHO_T}$ac_cv_func_tgoto" >&6 if test $ac_cv_func_tgoto = yes; then cf_term_lib=predefined @@ -16162,7 +16365,7 @@ else for cf_term_lib in $cf_check_list termcap termlib unknown do as_ac_Lib=`echo "ac_cv_lib_$cf_term_lib''_tgoto" | $as_tr_sh` -echo "$as_me:16165: checking for tgoto in -l$cf_term_lib" >&5 +echo "$as_me:16368: checking for tgoto in -l$cf_term_lib" >&5 echo $ECHO_N "checking for tgoto in -l$cf_term_lib... $ECHO_C" >&6 if eval "test \"\${$as_ac_Lib+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -16170,7 +16373,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-l$cf_term_lib $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16173 "configure" +#line 16376 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -16189,16 +16392,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16192: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16395: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16195: \$? = $ac_status" >&5 + echo "$as_me:16398: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16198: \"$ac_try\"") >&5 + { (eval echo "$as_me:16401: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16201: \$? = $ac_status" >&5 + echo "$as_me:16404: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Lib=yes" else @@ -16209,7 +16412,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:16212: result: `eval echo '${'$as_ac_Lib'}'`" >&5 +echo "$as_me:16415: result: `eval echo '${'$as_ac_Lib'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Lib'}'`" >&6 if test `eval echo '${'$as_ac_Lib'}'` = yes; then break @@ -16224,7 +16427,7 @@ fi for cf_curs_lib in $cf_check_list xcurses jcurses pdcurses unknown do as_ac_Lib=`echo "ac_cv_lib_$cf_curs_lib''_initscr" | $as_tr_sh` -echo "$as_me:16227: checking for initscr in -l$cf_curs_lib" >&5 +echo "$as_me:16430: checking for initscr in -l$cf_curs_lib" >&5 echo $ECHO_N "checking for initscr in -l$cf_curs_lib... $ECHO_C" >&6 if eval "test \"\${$as_ac_Lib+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -16232,7 +16435,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-l$cf_curs_lib $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16235 "configure" +#line 16438 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -16251,16 +16454,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16254: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16457: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16257: \$? = $ac_status" >&5 + echo "$as_me:16460: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16260: \"$ac_try\"") >&5 + { (eval echo "$as_me:16463: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16263: \$? = $ac_status" >&5 + echo "$as_me:16466: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Lib=yes" else @@ -16271,23 +16474,23 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:16274: result: `eval echo '${'$as_ac_Lib'}'`" >&5 +echo "$as_me:16477: result: `eval echo '${'$as_ac_Lib'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Lib'}'`" >&6 if test `eval echo '${'$as_ac_Lib'}'` = yes; then break fi done - test $cf_curs_lib = unknown && { { echo "$as_me:16281: error: no curses library found" >&5 + test $cf_curs_lib = unknown && { { echo "$as_me:16484: error: no curses library found" >&5 echo "$as_me: error: no curses library found" >&2;} { (exit 1); exit 1; }; } LIBS="-l$cf_curs_lib $cf_save_LIBS" if test "$cf_term_lib" = unknown ; then - echo "$as_me:16287: checking if we can link with $cf_curs_lib library" >&5 + echo "$as_me:16490: checking if we can link with $cf_curs_lib library" >&5 echo $ECHO_N "checking if we can link with $cf_curs_lib library... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 16290 "configure" +#line 16493 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -16299,16 +16502,16 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16302: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16505: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16305: \$? = $ac_status" >&5 + echo "$as_me:16508: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16308: \"$ac_try\"") >&5 + { (eval echo "$as_me:16511: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16311: \$? = $ac_status" >&5 + echo "$as_me:16514: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -16317,18 +16520,18 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:16320: result: $cf_result" >&5 + echo "$as_me:16523: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 - test $cf_result = no && { { echo "$as_me:16322: error: Cannot link curses library" >&5 + test $cf_result = no && { { echo "$as_me:16525: error: Cannot link curses library" >&5 echo "$as_me: error: Cannot link curses library" >&2;} { (exit 1); exit 1; }; } elif test "$cf_curs_lib" = "$cf_term_lib" ; then : elif test "$cf_term_lib" != predefined ; then - echo "$as_me:16328: checking if we need both $cf_curs_lib and $cf_term_lib libraries" >&5 + echo "$as_me:16531: checking if we need both $cf_curs_lib and $cf_term_lib libraries" >&5 echo $ECHO_N "checking if we need both $cf_curs_lib and $cf_term_lib libraries... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 16331 "configure" +#line 16534 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -16340,16 +16543,16 @@ initscr(); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16343: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16546: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16346: \$? = $ac_status" >&5 + echo "$as_me:16549: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16349: \"$ac_try\"") >&5 + { (eval echo "$as_me:16552: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16352: \$? = $ac_status" >&5 + echo "$as_me:16555: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=no else @@ -16358,7 +16561,7 @@ cat conftest.$ac_ext >&5 LIBS="-l$cf_curs_lib -l$cf_term_lib $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16361 "configure" +#line 16564 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -16370,16 +16573,16 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16373: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16576: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16376: \$? = $ac_status" >&5 + echo "$as_me:16579: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16379: \"$ac_try\"") >&5 + { (eval echo "$as_me:16582: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16382: \$? = $ac_status" >&5 + echo "$as_me:16585: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -16391,13 +16594,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:16394: result: $cf_result" >&5 + echo "$as_me:16597: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 fi fi fi -echo "$as_me:16400: checking for curses performance tradeoff" >&5 +echo "$as_me:16603: checking for curses performance tradeoff" >&5 echo $ECHO_N "checking for curses performance tradeoff... $ECHO_C" >&6 if test "${cf_cv_curs_performance+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -16405,7 +16608,7 @@ else cf_cv_curs_performance=no cat >conftest.$ac_ext <<_ACEOF -#line 16408 "configure" +#line 16611 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -16424,20 +16627,20 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16427: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16630: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16430: \$? = $ac_status" >&5 + echo "$as_me:16633: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16433: \"$ac_try\"") >&5 + { (eval echo "$as_me:16636: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16436: \$? = $ac_status" >&5 + echo "$as_me:16639: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 16440 "configure" +#line 16643 "configure" #include "confdefs.h" #define CURS_PERFORMANCE @@ -16457,16 +16660,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16460: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16663: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16463: \$? = $ac_status" >&5 + echo "$as_me:16666: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16466: \"$ac_try\"") >&5 + { (eval echo "$as_me:16669: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16469: \$? = $ac_status" >&5 + echo "$as_me:16672: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_curs_performance=yes else @@ -16481,20 +16684,20 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:16484: result: $cf_cv_curs_performance" >&5 +echo "$as_me:16687: result: $cf_cv_curs_performance" >&5 echo "${ECHO_T}$cf_cv_curs_performance" >&6 test $cf_cv_curs_performance = yes && cat >>confdefs.h <<\EOF #define CURS_PERFORMANCE 1 EOF -echo "$as_me:16490: checking for curses touchline function" >&5 +echo "$as_me:16693: checking for curses touchline function" >&5 echo $ECHO_N "checking for curses touchline function... $ECHO_C" >&6 if test "${cf_cv_curs_touchline+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 16497 "configure" +#line 16700 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -16507,23 +16710,23 @@ touchline(stdscr, 1,2,3); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16510: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16713: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16513: \$? = $ac_status" >&5 + echo "$as_me:16716: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16516: \"$ac_try\"") >&5 + { (eval echo "$as_me:16719: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16519: \$? = $ac_status" >&5 + echo "$as_me:16722: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_curs_touchline=bsd else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 16526 "configure" +#line 16729 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -16536,16 +16739,16 @@ touchline(stdscr, 1,2); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16539: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16742: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16542: \$? = $ac_status" >&5 + echo "$as_me:16745: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16545: \"$ac_try\"") >&5 + { (eval echo "$as_me:16748: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16548: \$? = $ac_status" >&5 + echo "$as_me:16751: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_curs_touchline=sysv else @@ -16557,7 +16760,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:16560: result: $cf_cv_curs_touchline" >&5 +echo "$as_me:16763: result: $cf_cv_curs_touchline" >&5 echo "${ECHO_T}$cf_cv_curs_touchline" >&6 case "$cf_cv_curs_touchline" in #(vi bsd) #(vi @@ -16584,7 +16787,7 @@ for ac_prog in ${cf_ncuconfig_root}6-config ${cf_ncuconfig_root}5-config do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:16587: checking for $ac_word" >&5 +echo "$as_me:16790: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_NCURSES_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -16601,7 +16804,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_NCURSES_CONFIG="$ac_dir/$ac_word" - echo "$as_me:16604: found $ac_dir/$ac_word" >&5 + echo "$as_me:16807: found $ac_dir/$ac_word" >&5 break fi done @@ -16612,10 +16815,10 @@ fi NCURSES_CONFIG=$ac_cv_path_NCURSES_CONFIG if test -n "$NCURSES_CONFIG"; then - echo "$as_me:16615: result: $NCURSES_CONFIG" >&5 + echo "$as_me:16818: result: $NCURSES_CONFIG" >&5 echo "${ECHO_T}$NCURSES_CONFIG" >&6 else - echo "$as_me:16618: result: no" >&5 + echo "$as_me:16821: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -16667,13 +16870,13 @@ if test -n "$cf_cv_curses_dir/include $cf_cv_curses_dir/include/$cf_ncuhdr_root" fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 16676 "configure" +#line 16879 "configure" #include "confdefs.h" #include <stdio.h> int @@ -16685,16 +16888,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16688: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16891: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16691: \$? = $ac_status" >&5 + echo "$as_me:16894: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16694: \"$ac_try\"") >&5 + { (eval echo "$as_me:16897: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16697: \$? = $ac_status" >&5 + echo "$as_me:16900: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -16711,13 +16914,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:16714: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:16917: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -16728,7 +16931,7 @@ fi } -echo "$as_me:16731: checking for $cf_ncuhdr_root header in include-path" >&5 +echo "$as_me:16934: checking for $cf_ncuhdr_root header in include-path" >&5 echo $ECHO_N "checking for $cf_ncuhdr_root header in include-path... $ECHO_C" >&6 if test "${cf_cv_ncurses_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -16740,7 +16943,7 @@ else do cat >conftest.$ac_ext <<_ACEOF -#line 16743 "configure" +#line 16946 "configure" #include "confdefs.h" #include <$cf_header> @@ -16764,16 +16967,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16767: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16970: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16770: \$? = $ac_status" >&5 + echo "$as_me:16973: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16773: \"$ac_try\"") >&5 + { (eval echo "$as_me:16976: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16776: \$? = $ac_status" >&5 + echo "$as_me:16979: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h=$cf_header @@ -16788,14 +16991,14 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:16791: result: $cf_cv_ncurses_h" >&5 +echo "$as_me:16994: result: $cf_cv_ncurses_h" >&5 echo "${ECHO_T}$cf_cv_ncurses_h" >&6 if test "$cf_cv_ncurses_h" != no ; then cf_cv_ncurses_header=$cf_cv_ncurses_h else -echo "$as_me:16798: checking for $cf_ncuhdr_root include-path" >&5 +echo "$as_me:17001: checking for $cf_ncuhdr_root include-path" >&5 echo $ECHO_N "checking for $cf_ncuhdr_root include-path... $ECHO_C" >&6 if test "${cf_cv_ncurses_h2+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -16924,13 +17127,13 @@ if test -n "$cf_incdir" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 16933 "configure" +#line 17136 "configure" #include "confdefs.h" #include <stdio.h> int @@ -16942,16 +17145,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16945: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17148: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16948: \$? = $ac_status" >&5 + echo "$as_me:17151: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16951: \"$ac_try\"") >&5 + { (eval echo "$as_me:17154: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16954: \$? = $ac_status" >&5 + echo "$as_me:17157: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -16968,13 +17171,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:16971: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:17174: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -16989,7 +17192,7 @@ fi do cat >conftest.$ac_ext <<_ACEOF -#line 16992 "configure" +#line 17195 "configure" #include "confdefs.h" #include <$cf_header> @@ -17013,16 +17216,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17016: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17219: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17019: \$? = $ac_status" >&5 + echo "$as_me:17222: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17022: \"$ac_try\"") >&5 + { (eval echo "$as_me:17225: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17025: \$? = $ac_status" >&5 + echo "$as_me:17228: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h2=$cf_header @@ -17043,12 +17246,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext CPPFLAGS="$cf_save2_CPPFLAGS" test "$cf_cv_ncurses_h2" != no && break done - test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:17046: error: not found" >&5 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:17249: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:17051: result: $cf_cv_ncurses_h2" >&5 +echo "$as_me:17254: result: $cf_cv_ncurses_h2" >&5 echo "${ECHO_T}$cf_cv_ncurses_h2" >&6 cf_1st_incdir=`echo $cf_cv_ncurses_h2 | sed -e 's%/[^/]*$%%'` @@ -17075,13 +17278,13 @@ if test -n "$cf_1st_incdir" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 17084 "configure" +#line 17287 "configure" #include "confdefs.h" #include <stdio.h> int @@ -17093,16 +17296,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17096: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17299: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17099: \$? = $ac_status" >&5 + echo "$as_me:17302: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17102: \"$ac_try\"") >&5 + { (eval echo "$as_me:17305: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17105: \$? = $ac_status" >&5 + echo "$as_me:17308: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -17119,13 +17322,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:17122: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:17325: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -17162,7 +17365,7 @@ EOF ;; esac -echo "$as_me:17165: checking for terminfo header" >&5 +echo "$as_me:17368: checking for terminfo header" >&5 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6 if test "${cf_cv_term_header+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17180,7 +17383,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 17183 "configure" +#line 17386 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header-curses.h}> @@ -17195,16 +17398,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17198: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17401: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17201: \$? = $ac_status" >&5 + echo "$as_me:17404: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17204: \"$ac_try\"") >&5 + { (eval echo "$as_me:17407: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17207: \$? = $ac_status" >&5 + echo "$as_me:17410: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -17220,7 +17423,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:17223: result: $cf_cv_term_header" >&5 +echo "$as_me:17426: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -17254,7 +17457,7 @@ cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:17257: checking for ncurses version" >&5 +echo "$as_me:17460: checking for ncurses version" >&5 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6 if test "${cf_cv_ncurses_version+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17280,10 +17483,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:17283: \"$cf_try\"") >&5 + { (eval echo "$as_me:17486: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:17286: \$? = $ac_status" >&5 + echo "$as_me:17489: \$? = $ac_status" >&5 (exit $ac_status); } if test -f conftest.out ; then cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'` @@ -17293,7 +17496,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 17296 "configure" +#line 17499 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -17318,15 +17521,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:17321: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17524: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17324: \$? = $ac_status" >&5 + echo "$as_me:17527: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:17326: \"$ac_try\"") >&5 + { (eval echo "$as_me:17529: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17329: \$? = $ac_status" >&5 + echo "$as_me:17532: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -17340,7 +17543,7 @@ fi rm -f $cf_tempfile fi -echo "$as_me:17343: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:17546: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF #define NCURSES 1 @@ -17352,7 +17555,7 @@ cf_nculib_root=ncurses # to link gpm. cf_ncurses_LIBS="" cf_ncurses_SAVE="$LIBS" -echo "$as_me:17355: checking for Gpm_Open in -lgpm" >&5 +echo "$as_me:17558: checking for Gpm_Open in -lgpm" >&5 echo $ECHO_N "checking for Gpm_Open in -lgpm... $ECHO_C" >&6 if test "${ac_cv_lib_gpm_Gpm_Open+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17360,7 +17563,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17363 "configure" +#line 17566 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -17379,16 +17582,16 @@ Gpm_Open (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17382: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17585: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17385: \$? = $ac_status" >&5 + echo "$as_me:17588: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17388: \"$ac_try\"") >&5 + { (eval echo "$as_me:17591: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17391: \$? = $ac_status" >&5 + echo "$as_me:17594: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_Gpm_Open=yes else @@ -17399,10 +17602,10 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:17402: result: $ac_cv_lib_gpm_Gpm_Open" >&5 +echo "$as_me:17605: result: $ac_cv_lib_gpm_Gpm_Open" >&5 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Open" >&6 if test $ac_cv_lib_gpm_Gpm_Open = yes; then - echo "$as_me:17405: checking for initscr in -lgpm" >&5 + echo "$as_me:17608: checking for initscr in -lgpm" >&5 echo $ECHO_N "checking for initscr in -lgpm... $ECHO_C" >&6 if test "${ac_cv_lib_gpm_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17410,7 +17613,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17413 "configure" +#line 17616 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -17429,16 +17632,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17432: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17635: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17435: \$? = $ac_status" >&5 + echo "$as_me:17638: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17438: \"$ac_try\"") >&5 + { (eval echo "$as_me:17641: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17441: \$? = $ac_status" >&5 + echo "$as_me:17644: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_initscr=yes else @@ -17449,7 +17652,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:17452: result: $ac_cv_lib_gpm_initscr" >&5 +echo "$as_me:17655: result: $ac_cv_lib_gpm_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_gpm_initscr" >&6 if test $ac_cv_lib_gpm_initscr = yes; then LIBS="$cf_ncurses_SAVE" @@ -17464,7 +17667,7 @@ freebsd*) # This is only necessary if you are linking against an obsolete # version of ncurses (but it should do no harm, since it's static). if test "$cf_nculib_root" = ncurses ; then - echo "$as_me:17467: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:17670: checking for tgoto in -lmytinfo" >&5 echo $ECHO_N "checking for tgoto in -lmytinfo... $ECHO_C" >&6 if test "${ac_cv_lib_mytinfo_tgoto+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17472,7 +17675,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17475 "configure" +#line 17678 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -17491,16 +17694,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17494: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17697: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17497: \$? = $ac_status" >&5 + echo "$as_me:17700: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17500: \"$ac_try\"") >&5 + { (eval echo "$as_me:17703: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17503: \$? = $ac_status" >&5 + echo "$as_me:17706: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -17511,7 +17714,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:17514: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:17717: result: $ac_cv_lib_mytinfo_tgoto" >&5 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6 if test $ac_cv_lib_mytinfo_tgoto = yes; then cf_ncurses_LIBS="-lmytinfo $cf_ncurses_LIBS" @@ -17545,7 +17748,7 @@ if test -n "$cf_cv_curses_dir/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:17548: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:17751: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -17558,13 +17761,13 @@ else eval 'cf_cv_have_lib_'$cf_nculib_root'=no' cf_libdir="" - echo "$as_me:17561: checking for initscr" >&5 + echo "$as_me:17764: checking for initscr" >&5 echo $ECHO_N "checking for initscr... $ECHO_C" >&6 if test "${ac_cv_func_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 17567 "configure" +#line 17770 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char initscr (); below. */ @@ -17595,16 +17798,16 @@ f = initscr; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17598: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17801: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17601: \$? = $ac_status" >&5 + echo "$as_me:17804: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17604: \"$ac_try\"") >&5 + { (eval echo "$as_me:17807: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17607: \$? = $ac_status" >&5 + echo "$as_me:17810: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_initscr=yes else @@ -17614,18 +17817,18 @@ ac_cv_func_initscr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:17617: result: $ac_cv_func_initscr" >&5 +echo "$as_me:17820: result: $ac_cv_func_initscr" >&5 echo "${ECHO_T}$ac_cv_func_initscr" >&6 if test $ac_cv_func_initscr = yes; then eval 'cf_cv_have_lib_'$cf_nculib_root'=yes' else cf_save_LIBS="$LIBS" - echo "$as_me:17624: checking for initscr in -l$cf_nculib_root" >&5 + echo "$as_me:17827: checking for initscr in -l$cf_nculib_root" >&5 echo $ECHO_N "checking for initscr in -l$cf_nculib_root... $ECHO_C" >&6 LIBS="-l$cf_nculib_root $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17628 "configure" +#line 17831 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -17637,25 +17840,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17640: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17843: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17643: \$? = $ac_status" >&5 + echo "$as_me:17846: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17646: \"$ac_try\"") >&5 + { (eval echo "$as_me:17849: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17649: \$? = $ac_status" >&5 + echo "$as_me:17852: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:17651: result: yes" >&5 + echo "$as_me:17854: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes' else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:17658: result: no" >&5 +echo "$as_me:17861: result: no" >&5 echo "${ECHO_T}no" >&6 cf_library_path_list="" @@ -17744,11 +17947,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:17747: checking for -l$cf_nculib_root in $cf_libdir" >&5 + echo "$as_me:17950: checking for -l$cf_nculib_root in $cf_libdir" >&5 echo $ECHO_N "checking for -l$cf_nculib_root in $cf_libdir... $ECHO_C" >&6 LIBS="-L$cf_libdir -l$cf_nculib_root $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17751 "configure" +#line 17954 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -17760,25 +17963,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17763: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17966: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17766: \$? = $ac_status" >&5 + echo "$as_me:17969: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17769: \"$ac_try\"") >&5 + { (eval echo "$as_me:17972: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17772: \$? = $ac_status" >&5 + echo "$as_me:17975: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:17774: result: yes" >&5 + echo "$as_me:17977: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes' break else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:17781: result: no" >&5 +echo "$as_me:17984: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -17793,7 +17996,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root if test $cf_found_library = no ; then - { { echo "$as_me:17796: error: Cannot link $cf_nculib_root library" >&5 + { { echo "$as_me:17999: error: Cannot link $cf_nculib_root library" >&5 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;} { (exit 1); exit 1; }; } fi @@ -17801,7 +18004,7 @@ fi fi if test -n "$cf_ncurses_LIBS" ; then - echo "$as_me:17804: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 + echo "$as_me:18007: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS... $ECHO_C" >&6 cf_ncurses_SAVE="$LIBS" for p in $cf_ncurses_LIBS ; do @@ -17811,7 +18014,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS.. fi done cat >conftest.$ac_ext <<_ACEOF -#line 17814 "configure" +#line 18017 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -17823,23 +18026,23 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17826: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18029: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17829: \$? = $ac_status" >&5 + echo "$as_me:18032: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17832: \"$ac_try\"") >&5 + { (eval echo "$as_me:18035: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17835: \$? = $ac_status" >&5 + echo "$as_me:18038: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:17837: result: yes" >&5 + echo "$as_me:18040: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:17842: result: no" >&5 +echo "$as_me:18045: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_ncurses_SAVE" fi @@ -17857,7 +18060,7 @@ fi ;; ncursesw) -echo "$as_me:17860: checking for multibyte character support" >&5 +echo "$as_me:18063: checking for multibyte character support" >&5 echo $ECHO_N "checking for multibyte character support... $ECHO_C" >&6 if test "${cf_cv_utf8_lib+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17865,7 +18068,7 @@ else cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17868 "configure" +#line 18071 "configure" #include "confdefs.h" #include <stdlib.h> @@ -17878,16 +18081,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17881: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18084: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17884: \$? = $ac_status" >&5 + echo "$as_me:18087: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17887: \"$ac_try\"") >&5 + { (eval echo "$as_me:18090: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17890: \$? = $ac_status" >&5 + echo "$as_me:18093: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_utf8_lib=yes else @@ -17899,10 +18102,10 @@ cat conftest.$ac_ext >&5 cf_cv_header_path_utf8= cf_cv_library_path_utf8= -echo "${as_me-configure}:17902: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me-configure}:18105: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 17905 "configure" +#line 18108 "configure" #include "confdefs.h" #include <libutf8.h> @@ -17915,16 +18118,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17918: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18121: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17921: \$? = $ac_status" >&5 + echo "$as_me:18124: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17924: \"$ac_try\"") >&5 + { (eval echo "$as_me:18127: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17927: \$? = $ac_status" >&5 + echo "$as_me:18130: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_utf8=yes else @@ -17935,9 +18138,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for utf8 library" 1>&6 -echo "${as_me-configure}:17938: testing find linkage for utf8 library ..." 1>&5 +echo "${as_me-configure}:18141: testing find linkage for utf8 library ..." 1>&5 -echo "${as_me-configure}:17940: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me-configure}:18143: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -18045,11 +18248,11 @@ cf_search="$cf_header_path_list $cf_search" if test -d $cf_cv_header_path_utf8 ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_utf8" 1>&6 -echo "${as_me-configure}:18048: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5 +echo "${as_me-configure}:18251: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_utf8" cat >conftest.$ac_ext <<_ACEOF -#line 18052 "configure" +#line 18255 "configure" #include "confdefs.h" #include <libutf8.h> @@ -18062,21 +18265,21 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18065: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18268: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18068: \$? = $ac_status" >&5 + echo "$as_me:18271: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18071: \"$ac_try\"") >&5 + { (eval echo "$as_me:18274: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18074: \$? = $ac_status" >&5 + echo "$as_me:18277: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found utf8 headers in $cf_cv_header_path_utf8" 1>&6 -echo "${as_me-configure}:18079: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 +echo "${as_me-configure}:18282: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 cf_cv_find_linkage_utf8=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -18094,7 +18297,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_utf8" = maybe ; then -echo "${as_me-configure}:18097: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me-configure}:18300: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -18190,13 +18393,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_utf8 ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_utf8" 1>&6 -echo "${as_me-configure}:18193: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5 +echo "${as_me-configure}:18396: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lutf8 $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_utf8" cat >conftest.$ac_ext <<_ACEOF -#line 18199 "configure" +#line 18402 "configure" #include "confdefs.h" #include <libutf8.h> @@ -18209,21 +18412,21 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18212: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18415: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18215: \$? = $ac_status" >&5 + echo "$as_me:18418: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18218: \"$ac_try\"") >&5 + { (eval echo "$as_me:18421: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18221: \$? = $ac_status" >&5 + echo "$as_me:18424: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found utf8 library in $cf_cv_library_path_utf8" 1>&6 -echo "${as_me-configure}:18226: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 +echo "${as_me-configure}:18429: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 cf_cv_find_linkage_utf8=yes cf_cv_library_file_utf8="-lutf8" @@ -18261,7 +18464,7 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:18264: result: $cf_cv_utf8_lib" >&5 +echo "$as_me:18467: result: $cf_cv_utf8_lib" >&5 echo "${ECHO_T}$cf_cv_utf8_lib" >&6 # HAVE_LIBUTF8_H is used by ncurses if curses.h is shared between @@ -18289,13 +18492,13 @@ if test -n "$cf_cv_header_path_utf8" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 18298 "configure" +#line 18501 "configure" #include "confdefs.h" #include <stdio.h> int @@ -18307,16 +18510,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18310: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18513: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18313: \$? = $ac_status" >&5 + echo "$as_me:18516: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18316: \"$ac_try\"") >&5 + { (eval echo "$as_me:18519: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18319: \$? = $ac_status" >&5 + echo "$as_me:18522: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -18333,13 +18536,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:18336: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:18539: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -18367,7 +18570,7 @@ if test -n "$cf_cv_library_path_utf8" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:18370: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:18573: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -18385,7 +18588,7 @@ for ac_prog in ${cf_ncuconfig_root}6-config ${cf_ncuconfig_root}5-config do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:18388: checking for $ac_word" >&5 +echo "$as_me:18591: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_NCURSES_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18402,7 +18605,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_NCURSES_CONFIG="$ac_dir/$ac_word" - echo "$as_me:18405: found $ac_dir/$ac_word" >&5 + echo "$as_me:18608: found $ac_dir/$ac_word" >&5 break fi done @@ -18413,10 +18616,10 @@ fi NCURSES_CONFIG=$ac_cv_path_NCURSES_CONFIG if test -n "$NCURSES_CONFIG"; then - echo "$as_me:18416: result: $NCURSES_CONFIG" >&5 + echo "$as_me:18619: result: $NCURSES_CONFIG" >&5 echo "${ECHO_T}$NCURSES_CONFIG" >&6 else - echo "$as_me:18419: result: no" >&5 + echo "$as_me:18622: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -18468,13 +18671,13 @@ if test -n "$cf_cv_curses_dir/include $cf_cv_curses_dir/include/$cf_ncuhdr_root" fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 18477 "configure" +#line 18680 "configure" #include "confdefs.h" #include <stdio.h> int @@ -18486,16 +18689,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18489: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18692: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18492: \$? = $ac_status" >&5 + echo "$as_me:18695: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18495: \"$ac_try\"") >&5 + { (eval echo "$as_me:18698: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18498: \$? = $ac_status" >&5 + echo "$as_me:18701: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -18512,13 +18715,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:18515: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:18718: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -18529,7 +18732,7 @@ fi } -echo "$as_me:18532: checking for $cf_ncuhdr_root header in include-path" >&5 +echo "$as_me:18735: checking for $cf_ncuhdr_root header in include-path" >&5 echo $ECHO_N "checking for $cf_ncuhdr_root header in include-path... $ECHO_C" >&6 if test "${cf_cv_ncurses_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18541,7 +18744,7 @@ else do cat >conftest.$ac_ext <<_ACEOF -#line 18544 "configure" +#line 18747 "configure" #include "confdefs.h" #define _XOPEN_SOURCE_EXTENDED @@ -18573,16 +18776,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18576: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18779: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18579: \$? = $ac_status" >&5 + echo "$as_me:18782: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18582: \"$ac_try\"") >&5 + { (eval echo "$as_me:18785: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18585: \$? = $ac_status" >&5 + echo "$as_me:18788: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h=$cf_header @@ -18597,14 +18800,14 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:18600: result: $cf_cv_ncurses_h" >&5 +echo "$as_me:18803: result: $cf_cv_ncurses_h" >&5 echo "${ECHO_T}$cf_cv_ncurses_h" >&6 if test "$cf_cv_ncurses_h" != no ; then cf_cv_ncurses_header=$cf_cv_ncurses_h else -echo "$as_me:18607: checking for $cf_ncuhdr_root include-path" >&5 +echo "$as_me:18810: checking for $cf_ncuhdr_root include-path" >&5 echo $ECHO_N "checking for $cf_ncuhdr_root include-path... $ECHO_C" >&6 if test "${cf_cv_ncurses_h2+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18733,13 +18936,13 @@ if test -n "$cf_incdir" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 18742 "configure" +#line 18945 "configure" #include "confdefs.h" #include <stdio.h> int @@ -18751,16 +18954,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18754: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18957: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18757: \$? = $ac_status" >&5 + echo "$as_me:18960: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18760: \"$ac_try\"") >&5 + { (eval echo "$as_me:18963: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18763: \$? = $ac_status" >&5 + echo "$as_me:18966: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -18777,13 +18980,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:18780: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:18983: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -18798,7 +19001,7 @@ fi do cat >conftest.$ac_ext <<_ACEOF -#line 18801 "configure" +#line 19004 "configure" #include "confdefs.h" #include <$cf_header> @@ -18822,16 +19025,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18825: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19028: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18828: \$? = $ac_status" >&5 + echo "$as_me:19031: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18831: \"$ac_try\"") >&5 + { (eval echo "$as_me:19034: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18834: \$? = $ac_status" >&5 + echo "$as_me:19037: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h2=$cf_header @@ -18852,12 +19055,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext CPPFLAGS="$cf_save2_CPPFLAGS" test "$cf_cv_ncurses_h2" != no && break done - test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:18855: error: not found" >&5 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:19058: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:18860: result: $cf_cv_ncurses_h2" >&5 +echo "$as_me:19063: result: $cf_cv_ncurses_h2" >&5 echo "${ECHO_T}$cf_cv_ncurses_h2" >&6 cf_1st_incdir=`echo $cf_cv_ncurses_h2 | sed -e 's%/[^/]*$%%'` @@ -18884,13 +19087,13 @@ if test -n "$cf_1st_incdir" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 18893 "configure" +#line 19096 "configure" #include "confdefs.h" #include <stdio.h> int @@ -18902,16 +19105,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18905: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19108: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18908: \$? = $ac_status" >&5 + echo "$as_me:19111: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18911: \"$ac_try\"") >&5 + { (eval echo "$as_me:19114: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18914: \$? = $ac_status" >&5 + echo "$as_me:19117: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -18928,13 +19131,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:18931: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:19134: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -18971,7 +19174,7 @@ EOF ;; esac -echo "$as_me:18974: checking for terminfo header" >&5 +echo "$as_me:19177: checking for terminfo header" >&5 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6 if test "${cf_cv_term_header+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18989,7 +19192,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 18992 "configure" +#line 19195 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header-curses.h}> @@ -19004,16 +19207,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19007: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19210: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19010: \$? = $ac_status" >&5 + echo "$as_me:19213: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19013: \"$ac_try\"") >&5 + { (eval echo "$as_me:19216: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19016: \$? = $ac_status" >&5 + echo "$as_me:19219: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -19029,7 +19232,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:19032: result: $cf_cv_term_header" >&5 +echo "$as_me:19235: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -19063,7 +19266,7 @@ cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:19066: checking for ncurses version" >&5 +echo "$as_me:19269: checking for ncurses version" >&5 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6 if test "${cf_cv_ncurses_version+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19089,10 +19292,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:19092: \"$cf_try\"") >&5 + { (eval echo "$as_me:19295: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:19095: \$? = $ac_status" >&5 + echo "$as_me:19298: \$? = $ac_status" >&5 (exit $ac_status); } if test -f conftest.out ; then cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'` @@ -19102,7 +19305,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 19105 "configure" +#line 19308 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -19127,15 +19330,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:19130: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19333: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19133: \$? = $ac_status" >&5 + echo "$as_me:19336: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:19135: \"$ac_try\"") >&5 + { (eval echo "$as_me:19338: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19138: \$? = $ac_status" >&5 + echo "$as_me:19341: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -19149,7 +19352,7 @@ fi rm -f $cf_tempfile fi -echo "$as_me:19152: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:19355: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF #define NCURSES 1 @@ -19161,7 +19364,7 @@ cf_nculib_root=ncursesw # to link gpm. cf_ncurses_LIBS="" cf_ncurses_SAVE="$LIBS" -echo "$as_me:19164: checking for Gpm_Open in -lgpm" >&5 +echo "$as_me:19367: checking for Gpm_Open in -lgpm" >&5 echo $ECHO_N "checking for Gpm_Open in -lgpm... $ECHO_C" >&6 if test "${ac_cv_lib_gpm_Gpm_Open+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19169,7 +19372,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19172 "configure" +#line 19375 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -19188,16 +19391,16 @@ Gpm_Open (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19191: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19394: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19194: \$? = $ac_status" >&5 + echo "$as_me:19397: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19197: \"$ac_try\"") >&5 + { (eval echo "$as_me:19400: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19200: \$? = $ac_status" >&5 + echo "$as_me:19403: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_Gpm_Open=yes else @@ -19208,10 +19411,10 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:19211: result: $ac_cv_lib_gpm_Gpm_Open" >&5 +echo "$as_me:19414: result: $ac_cv_lib_gpm_Gpm_Open" >&5 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Open" >&6 if test $ac_cv_lib_gpm_Gpm_Open = yes; then - echo "$as_me:19214: checking for initscr in -lgpm" >&5 + echo "$as_me:19417: checking for initscr in -lgpm" >&5 echo $ECHO_N "checking for initscr in -lgpm... $ECHO_C" >&6 if test "${ac_cv_lib_gpm_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19219,7 +19422,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19222 "configure" +#line 19425 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -19238,16 +19441,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19241: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19444: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19244: \$? = $ac_status" >&5 + echo "$as_me:19447: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19247: \"$ac_try\"") >&5 + { (eval echo "$as_me:19450: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19250: \$? = $ac_status" >&5 + echo "$as_me:19453: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_initscr=yes else @@ -19258,7 +19461,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:19261: result: $ac_cv_lib_gpm_initscr" >&5 +echo "$as_me:19464: result: $ac_cv_lib_gpm_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_gpm_initscr" >&6 if test $ac_cv_lib_gpm_initscr = yes; then LIBS="$cf_ncurses_SAVE" @@ -19273,7 +19476,7 @@ freebsd*) # This is only necessary if you are linking against an obsolete # version of ncurses (but it should do no harm, since it's static). if test "$cf_nculib_root" = ncurses ; then - echo "$as_me:19276: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:19479: checking for tgoto in -lmytinfo" >&5 echo $ECHO_N "checking for tgoto in -lmytinfo... $ECHO_C" >&6 if test "${ac_cv_lib_mytinfo_tgoto+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19281,7 +19484,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19284 "configure" +#line 19487 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -19300,16 +19503,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19303: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19506: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19306: \$? = $ac_status" >&5 + echo "$as_me:19509: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19309: \"$ac_try\"") >&5 + { (eval echo "$as_me:19512: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19312: \$? = $ac_status" >&5 + echo "$as_me:19515: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -19320,7 +19523,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:19323: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:19526: result: $ac_cv_lib_mytinfo_tgoto" >&5 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6 if test $ac_cv_lib_mytinfo_tgoto = yes; then cf_ncurses_LIBS="-lmytinfo $cf_ncurses_LIBS" @@ -19354,7 +19557,7 @@ if test -n "$cf_cv_curses_dir/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:19357: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:19560: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -19367,13 +19570,13 @@ else eval 'cf_cv_have_lib_'$cf_nculib_root'=no' cf_libdir="" - echo "$as_me:19370: checking for initscr" >&5 + echo "$as_me:19573: checking for initscr" >&5 echo $ECHO_N "checking for initscr... $ECHO_C" >&6 if test "${ac_cv_func_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 19376 "configure" +#line 19579 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char initscr (); below. */ @@ -19404,16 +19607,16 @@ f = initscr; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19407: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19610: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19410: \$? = $ac_status" >&5 + echo "$as_me:19613: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19413: \"$ac_try\"") >&5 + { (eval echo "$as_me:19616: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19416: \$? = $ac_status" >&5 + echo "$as_me:19619: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_initscr=yes else @@ -19423,18 +19626,18 @@ ac_cv_func_initscr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:19426: result: $ac_cv_func_initscr" >&5 +echo "$as_me:19629: result: $ac_cv_func_initscr" >&5 echo "${ECHO_T}$ac_cv_func_initscr" >&6 if test $ac_cv_func_initscr = yes; then eval 'cf_cv_have_lib_'$cf_nculib_root'=yes' else cf_save_LIBS="$LIBS" - echo "$as_me:19433: checking for initscr in -l$cf_nculib_root" >&5 + echo "$as_me:19636: checking for initscr in -l$cf_nculib_root" >&5 echo $ECHO_N "checking for initscr in -l$cf_nculib_root... $ECHO_C" >&6 LIBS="-l$cf_nculib_root $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19437 "configure" +#line 19640 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -19446,25 +19649,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19449: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19652: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19452: \$? = $ac_status" >&5 + echo "$as_me:19655: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19455: \"$ac_try\"") >&5 + { (eval echo "$as_me:19658: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19458: \$? = $ac_status" >&5 + echo "$as_me:19661: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:19460: result: yes" >&5 + echo "$as_me:19663: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes' else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:19467: result: no" >&5 +echo "$as_me:19670: result: no" >&5 echo "${ECHO_T}no" >&6 cf_library_path_list="" @@ -19553,11 +19756,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:19556: checking for -l$cf_nculib_root in $cf_libdir" >&5 + echo "$as_me:19759: checking for -l$cf_nculib_root in $cf_libdir" >&5 echo $ECHO_N "checking for -l$cf_nculib_root in $cf_libdir... $ECHO_C" >&6 LIBS="-L$cf_libdir -l$cf_nculib_root $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19560 "configure" +#line 19763 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -19569,25 +19772,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19572: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19775: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19575: \$? = $ac_status" >&5 + echo "$as_me:19778: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19578: \"$ac_try\"") >&5 + { (eval echo "$as_me:19781: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19581: \$? = $ac_status" >&5 + echo "$as_me:19784: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:19583: result: yes" >&5 + echo "$as_me:19786: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes' break else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:19590: result: no" >&5 +echo "$as_me:19793: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -19602,7 +19805,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root if test $cf_found_library = no ; then - { { echo "$as_me:19605: error: Cannot link $cf_nculib_root library" >&5 + { { echo "$as_me:19808: error: Cannot link $cf_nculib_root library" >&5 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;} { (exit 1); exit 1; }; } fi @@ -19610,7 +19813,7 @@ fi fi if test -n "$cf_ncurses_LIBS" ; then - echo "$as_me:19613: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 + echo "$as_me:19816: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS... $ECHO_C" >&6 cf_ncurses_SAVE="$LIBS" for p in $cf_ncurses_LIBS ; do @@ -19620,7 +19823,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS.. fi done cat >conftest.$ac_ext <<_ACEOF -#line 19623 "configure" +#line 19826 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -19632,23 +19835,23 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19635: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19838: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19638: \$? = $ac_status" >&5 + echo "$as_me:19841: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19641: \"$ac_try\"") >&5 + { (eval echo "$as_me:19844: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19644: \$? = $ac_status" >&5 + echo "$as_me:19847: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:19646: result: yes" >&5 + echo "$as_me:19849: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:19651: result: no" >&5 +echo "$as_me:19854: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_ncurses_SAVE" fi @@ -19671,14 +19874,14 @@ pdcurses) ;; slang) -echo "$as_me:19674: checking for slang header file" >&5 +echo "$as_me:19877: checking for slang header file" >&5 echo $ECHO_N "checking for slang header file... $ECHO_C" >&6 if test "${cf_cv_slang_header+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 19681 "configure" +#line 19884 "configure" #include "confdefs.h" #include <slang.h> int @@ -19690,16 +19893,16 @@ printf("%s\n", SLANG_VERSION) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19693: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19896: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19696: \$? = $ac_status" >&5 + echo "$as_me:19899: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19699: \"$ac_try\"") >&5 + { (eval echo "$as_me:19902: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19702: \$? = $ac_status" >&5 + echo "$as_me:19905: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_header=predefined else @@ -19817,14 +20020,14 @@ cf_search="$cf_header_path_list $cf_search" done test -n "$cf_cv_slang_header" && break done - test -z "$cf_cv_slang_header" && { { echo "$as_me:19820: error: not found" >&5 + test -z "$cf_cv_slang_header" && { { echo "$as_me:20023: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:19827: result: $cf_cv_slang_header" >&5 +echo "$as_me:20030: result: $cf_cv_slang_header" >&5 echo "${ECHO_T}$cf_cv_slang_header" >&6 cat >>confdefs.h <<\EOF #define USE_SLANG 1 @@ -19855,13 +20058,13 @@ if test -n "$cf_incdir" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 19864 "configure" +#line 20067 "configure" #include "confdefs.h" #include <stdio.h> int @@ -19873,16 +20076,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19876: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20079: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19879: \$? = $ac_status" >&5 + echo "$as_me:20082: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19882: \"$ac_try\"") >&5 + { (eval echo "$as_me:20085: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19885: \$? = $ac_status" >&5 + echo "$as_me:20088: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -19899,13 +20102,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:19902: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:20105: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -19919,14 +20122,14 @@ esac # There's an unofficial set of patches for slang that gives it some limited # UTF8 capability. Unfortunately it won't compile unless one defines UTF8. -echo "$as_me:19922: checking if we must define UTF8" >&5 +echo "$as_me:20125: checking if we must define UTF8" >&5 echo $ECHO_N "checking if we must define UTF8... $ECHO_C" >&6 if test "${cf_cv_slang_utf8+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 19929 "configure" +#line 20132 "configure" #include "confdefs.h" #include <slang.h> @@ -19939,16 +20142,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19942: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20145: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19945: \$? = $ac_status" >&5 + echo "$as_me:20148: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19948: \"$ac_try\"") >&5 + { (eval echo "$as_me:20151: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19951: \$? = $ac_status" >&5 + echo "$as_me:20154: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_utf8=no else @@ -19956,7 +20159,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 19959 "configure" +#line 20162 "configure" #include "confdefs.h" #define UTF8 @@ -19970,16 +20173,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19973: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20176: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19976: \$? = $ac_status" >&5 + echo "$as_me:20179: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19979: \"$ac_try\"") >&5 + { (eval echo "$as_me:20182: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19982: \$? = $ac_status" >&5 + echo "$as_me:20185: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_utf8=yes else @@ -19992,7 +20195,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:19995: result: $cf_cv_slang_utf8" >&5 +echo "$as_me:20198: result: $cf_cv_slang_utf8" >&5 echo "${ECHO_T}$cf_cv_slang_utf8" >&6 if test "$cf_cv_slang_utf8" = yes ; then @@ -20010,7 +20213,7 @@ else cf_cv_termlib=none cat >conftest.$ac_ext <<_ACEOF -#line 20013 "configure" +#line 20216 "configure" #include "confdefs.h" int @@ -20022,19 +20225,19 @@ char *x=(char*)tgoto("",0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20025: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20228: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20028: \$? = $ac_status" >&5 + echo "$as_me:20231: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20031: \"$ac_try\"") >&5 + { (eval echo "$as_me:20234: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20034: \$? = $ac_status" >&5 + echo "$as_me:20237: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 20037 "configure" +#line 20240 "configure" #include "confdefs.h" int @@ -20046,16 +20249,16 @@ int x=tigetstr("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20049: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20252: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20052: \$? = $ac_status" >&5 + echo "$as_me:20255: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20055: \"$ac_try\"") >&5 + { (eval echo "$as_me:20258: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20058: \$? = $ac_status" >&5 + echo "$as_me:20261: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termlib=terminfo else @@ -20066,7 +20269,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext test -n "$verbose" && echo " using functions in predefined $cf_cv_termlib LIBS" 1>&6 -echo "${as_me-configure}:20069: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 +echo "${as_me-configure}:20272: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 else echo "$as_me: failed program was:" >&5 @@ -20081,10 +20284,10 @@ if test "$cf_cv_termlib" = none; then LIBS="-l$cf_lib $cf_save_LIBS" for cf_func in tigetstr tgetstr do - echo "$as_me:20084: checking for $cf_func in -l$cf_lib" >&5 + echo "$as_me:20287: checking for $cf_func in -l$cf_lib" >&5 echo $ECHO_N "checking for $cf_func in -l$cf_lib... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 20087 "configure" +#line 20290 "configure" #include "confdefs.h" int @@ -20096,16 +20299,16 @@ int x=$cf_func("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20099: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20302: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20102: \$? = $ac_status" >&5 + echo "$as_me:20305: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20105: \"$ac_try\"") >&5 + { (eval echo "$as_me:20308: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20108: \$? = $ac_status" >&5 + echo "$as_me:20311: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -20114,7 +20317,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:20117: result: $cf_result" >&5 + echo "$as_me:20320: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then if test "$cf_func" = tigetstr ; then @@ -20131,7 +20334,7 @@ echo "${ECHO_T}$cf_result" >&6 fi if test "$cf_cv_termlib" = none; then # allow curses library for broken AIX system. - echo "$as_me:20134: checking for initscr in -lcurses" >&5 + echo "$as_me:20337: checking for initscr in -lcurses" >&5 echo $ECHO_N "checking for initscr in -lcurses... $ECHO_C" >&6 if test "${ac_cv_lib_curses_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -20139,7 +20342,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20142 "configure" +#line 20345 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20158,16 +20361,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20161: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20364: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20164: \$? = $ac_status" >&5 + echo "$as_me:20367: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20167: \"$ac_try\"") >&5 + { (eval echo "$as_me:20370: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20170: \$? = $ac_status" >&5 + echo "$as_me:20373: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_curses_initscr=yes else @@ -20178,13 +20381,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20181: result: $ac_cv_lib_curses_initscr" >&5 +echo "$as_me:20384: result: $ac_cv_lib_curses_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_curses_initscr" >&6 if test $ac_cv_lib_curses_initscr = yes; then LIBS="$LIBS -lcurses" cf_cv_termlib=termcap fi - echo "$as_me:20187: checking for tgoto in -ltermcap" >&5 + echo "$as_me:20390: checking for tgoto in -ltermcap" >&5 echo $ECHO_N "checking for tgoto in -ltermcap... $ECHO_C" >&6 if test "${ac_cv_lib_termcap_tgoto+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -20192,7 +20395,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ltermcap $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20195 "configure" +#line 20398 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20211,16 +20414,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20214: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20417: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20217: \$? = $ac_status" >&5 + echo "$as_me:20420: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20220: \"$ac_try\"") >&5 + { (eval echo "$as_me:20423: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20223: \$? = $ac_status" >&5 + echo "$as_me:20426: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_termcap_tgoto=yes else @@ -20231,7 +20434,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20234: result: $ac_cv_lib_termcap_tgoto" >&5 +echo "$as_me:20437: result: $ac_cv_lib_termcap_tgoto" >&5 echo "${ECHO_T}$ac_cv_lib_termcap_tgoto" >&6 if test $ac_cv_lib_termcap_tgoto = yes; then LIBS="$LIBS -ltermcap" cf_cv_termlib=termcap @@ -20242,20 +20445,20 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test "$cf_cv_termlib" = none; then - { echo "$as_me:20245: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5 + { echo "$as_me:20448: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5 echo "$as_me: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&2;} fi fi cf_slang_LIBS2="$LIBS" -echo "$as_me:20252: checking for acos" >&5 +echo "$as_me:20455: checking for acos" >&5 echo $ECHO_N "checking for acos... $ECHO_C" >&6 if test "${ac_cv_func_acos+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 20258 "configure" +#line 20461 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char acos (); below. */ @@ -20286,16 +20489,16 @@ f = acos; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20289: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20492: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20292: \$? = $ac_status" >&5 + echo "$as_me:20495: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20295: \"$ac_try\"") >&5 + { (eval echo "$as_me:20498: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20298: \$? = $ac_status" >&5 + echo "$as_me:20501: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_acos=yes else @@ -20305,13 +20508,13 @@ ac_cv_func_acos=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:20308: result: $ac_cv_func_acos" >&5 +echo "$as_me:20511: result: $ac_cv_func_acos" >&5 echo "${ECHO_T}$ac_cv_func_acos" >&6 if test $ac_cv_func_acos = yes; then : else -echo "$as_me:20314: checking for acos in -lm" >&5 +echo "$as_me:20517: checking for acos in -lm" >&5 echo $ECHO_N "checking for acos in -lm... $ECHO_C" >&6 if test "${ac_cv_lib_m_acos+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -20319,7 +20522,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20322 "configure" +#line 20525 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20338,16 +20541,16 @@ acos (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20341: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20544: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20344: \$? = $ac_status" >&5 + echo "$as_me:20547: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20347: \"$ac_try\"") >&5 + { (eval echo "$as_me:20550: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20350: \$? = $ac_status" >&5 + echo "$as_me:20553: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_m_acos=yes else @@ -20358,7 +20561,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20361: result: $ac_cv_lib_m_acos" >&5 +echo "$as_me:20564: result: $ac_cv_lib_m_acos" >&5 echo "${ECHO_T}$ac_cv_lib_m_acos" >&6 if test $ac_cv_lib_m_acos = yes; then @@ -20384,13 +20587,13 @@ os2*) eval 'cf_cv_have_lib_'video'=no' cf_libdir="" - echo "$as_me:20387: checking for v_init" >&5 + echo "$as_me:20590: checking for v_init" >&5 echo $ECHO_N "checking for v_init... $ECHO_C" >&6 if test "${ac_cv_func_v_init+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 20393 "configure" +#line 20596 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char v_init (); below. */ @@ -20421,16 +20624,16 @@ f = v_init; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20424: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20627: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20427: \$? = $ac_status" >&5 + echo "$as_me:20630: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20430: \"$ac_try\"") >&5 + { (eval echo "$as_me:20633: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20433: \$? = $ac_status" >&5 + echo "$as_me:20636: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_v_init=yes else @@ -20440,18 +20643,18 @@ ac_cv_func_v_init=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:20443: result: $ac_cv_func_v_init" >&5 +echo "$as_me:20646: result: $ac_cv_func_v_init" >&5 echo "${ECHO_T}$ac_cv_func_v_init" >&6 if test $ac_cv_func_v_init = yes; then eval 'cf_cv_have_lib_'video'=yes' else cf_save_LIBS="$LIBS" - echo "$as_me:20450: checking for v_init in -lvideo" >&5 + echo "$as_me:20653: checking for v_init in -lvideo" >&5 echo $ECHO_N "checking for v_init in -lvideo... $ECHO_C" >&6 LIBS="-lvideo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20454 "configure" +#line 20657 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -20463,25 +20666,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20466: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20669: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20469: \$? = $ac_status" >&5 + echo "$as_me:20672: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20472: \"$ac_try\"") >&5 + { (eval echo "$as_me:20675: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20475: \$? = $ac_status" >&5 + echo "$as_me:20678: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:20477: result: yes" >&5 + echo "$as_me:20680: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'video'=yes' else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:20484: result: no" >&5 +echo "$as_me:20687: result: no" >&5 echo "${ECHO_T}no" >&6 cf_library_path_list="" @@ -20570,11 +20773,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:20573: checking for -lvideo in $cf_libdir" >&5 + echo "$as_me:20776: checking for -lvideo in $cf_libdir" >&5 echo $ECHO_N "checking for -lvideo in $cf_libdir... $ECHO_C" >&6 LIBS="-L$cf_libdir -lvideo $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20577 "configure" +#line 20780 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -20586,25 +20789,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20589: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20792: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20592: \$? = $ac_status" >&5 + echo "$as_me:20795: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20595: \"$ac_try\"") >&5 + { (eval echo "$as_me:20798: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20598: \$? = $ac_status" >&5 + echo "$as_me:20801: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:20600: result: yes" >&5 + echo "$as_me:20803: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'video'=yes' break else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:20607: result: no" >&5 +echo "$as_me:20810: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -20619,7 +20822,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'video if test $cf_found_library = no ; then - { { echo "$as_me:20622: error: Cannot link video library" >&5 + { { echo "$as_me:20825: error: Cannot link video library" >&5 echo "$as_me: error: Cannot link video library" >&2;} { (exit 1); exit 1; }; } fi @@ -20629,13 +20832,13 @@ esac eval 'cf_cv_have_lib_'slang'=no' cf_libdir="" - echo "$as_me:20632: checking for SLtt_get_screen_size" >&5 + echo "$as_me:20835: checking for SLtt_get_screen_size" >&5 echo $ECHO_N "checking for SLtt_get_screen_size... $ECHO_C" >&6 if test "${ac_cv_func_SLtt_get_screen_size+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 20638 "configure" +#line 20841 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char SLtt_get_screen_size (); below. */ @@ -20666,16 +20869,16 @@ f = SLtt_get_screen_size; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20669: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20872: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20672: \$? = $ac_status" >&5 + echo "$as_me:20875: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20675: \"$ac_try\"") >&5 + { (eval echo "$as_me:20878: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20678: \$? = $ac_status" >&5 + echo "$as_me:20881: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_SLtt_get_screen_size=yes else @@ -20685,18 +20888,18 @@ ac_cv_func_SLtt_get_screen_size=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:20688: result: $ac_cv_func_SLtt_get_screen_size" >&5 +echo "$as_me:20891: result: $ac_cv_func_SLtt_get_screen_size" >&5 echo "${ECHO_T}$ac_cv_func_SLtt_get_screen_size" >&6 if test $ac_cv_func_SLtt_get_screen_size = yes; then eval 'cf_cv_have_lib_'slang'=yes' else cf_save_LIBS="$LIBS" - echo "$as_me:20695: checking for SLtt_get_screen_size in -lslang" >&5 + echo "$as_me:20898: checking for SLtt_get_screen_size in -lslang" >&5 echo $ECHO_N "checking for SLtt_get_screen_size in -lslang... $ECHO_C" >&6 LIBS="-lslang $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20699 "configure" +#line 20902 "configure" #include "confdefs.h" #include <slang.h> int @@ -20708,25 +20911,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20711: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20914: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20714: \$? = $ac_status" >&5 + echo "$as_me:20917: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20717: \"$ac_try\"") >&5 + { (eval echo "$as_me:20920: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20720: \$? = $ac_status" >&5 + echo "$as_me:20923: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:20722: result: yes" >&5 + echo "$as_me:20925: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'slang'=yes' else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:20729: result: no" >&5 +echo "$as_me:20932: result: no" >&5 echo "${ECHO_T}no" >&6 cf_library_path_list="" @@ -20815,11 +21018,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:20818: checking for -lslang in $cf_libdir" >&5 + echo "$as_me:21021: checking for -lslang in $cf_libdir" >&5 echo $ECHO_N "checking for -lslang in $cf_libdir... $ECHO_C" >&6 LIBS="-L$cf_libdir -lslang $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20822 "configure" +#line 21025 "configure" #include "confdefs.h" #include <slang.h> int @@ -20831,25 +21034,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20834: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21037: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20837: \$? = $ac_status" >&5 + echo "$as_me:21040: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20840: \"$ac_try\"") >&5 + { (eval echo "$as_me:21043: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20843: \$? = $ac_status" >&5 + echo "$as_me:21046: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:20845: result: yes" >&5 + echo "$as_me:21048: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'slang'=yes' break else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:20852: result: no" >&5 +echo "$as_me:21055: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -20864,13 +21067,13 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'slang if test $cf_found_library = no ; then - { { echo "$as_me:20867: error: Cannot link slang library" >&5 + { { echo "$as_me:21070: error: Cannot link slang library" >&5 echo "$as_me: error: Cannot link slang library" >&2;} { (exit 1); exit 1; }; } fi cf_slang_LIBS3="$LIBS" -echo "$as_me:20873: checking if we can link slang without termcap" >&5 +echo "$as_me:21076: checking if we can link slang without termcap" >&5 echo $ECHO_N "checking if we can link slang without termcap... $ECHO_C" >&6 if test -n "`echo $cf_slang_LIBS1 | sed -e 's/ //g'`" ; then cf_exclude=`echo ".$cf_slang_LIBS2" | sed -e "s%$cf_slang_LIBS1%%" -e 's%^.%%'` @@ -20879,7 +21082,7 @@ else fi LIBS=`echo ".$cf_slang_LIBS3" | sed -e "s%$cf_exclude%%" -e 's%^.%%'` cat >conftest.$ac_ext <<_ACEOF -#line 20882 "configure" +#line 21085 "configure" #include "confdefs.h" #include <slang.h> int @@ -20891,16 +21094,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20894: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21097: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20897: \$? = $ac_status" >&5 + echo "$as_me:21100: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20900: \"$ac_try\"") >&5 + { (eval echo "$as_me:21103: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20903: \$? = $ac_status" >&5 + echo "$as_me:21106: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -20909,18 +21112,18 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:20912: result: $cf_result" >&5 +echo "$as_me:21115: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test $cf_result = no && LIBS="$cf_slang_LIBS3" -echo "$as_me:20916: checking if we must tell slang this is UNIX" >&5 +echo "$as_me:21119: checking if we must tell slang this is UNIX" >&5 echo $ECHO_N "checking if we must tell slang this is UNIX... $ECHO_C" >&6 if test "${cf_cv_slang_unix+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 20923 "configure" +#line 21126 "configure" #include "confdefs.h" #include <slang.h> int @@ -20939,16 +21142,16 @@ SLang_TT_Baud_Rate = 1 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20942: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21145: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20945: \$? = $ac_status" >&5 + echo "$as_me:21148: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20948: \"$ac_try\"") >&5 + { (eval echo "$as_me:21151: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20951: \$? = $ac_status" >&5 + echo "$as_me:21154: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_unix=yes else @@ -20959,7 +21162,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:20962: result: $cf_cv_slang_unix" >&5 +echo "$as_me:21165: result: $cf_cv_slang_unix" >&5 echo "${ECHO_T}$cf_cv_slang_unix" >&6 test $cf_cv_slang_unix = yes && cat >>confdefs.h <<\EOF #define REAL_UNIX_SYSTEM 1 @@ -20969,7 +21172,7 @@ EOF ;; esac -echo "$as_me:20972: checking if you want the wide-curses features" >&5 +echo "$as_me:21175: checking if you want the wide-curses features" >&5 echo $ECHO_N "checking if you want the wide-curses features... $ECHO_C" >&6 # Check whether --enable-widec or --disable-widec was given. @@ -20986,10 +21189,10 @@ else use_wide_curses=$cf_wide_curses fi; -echo "$as_me:20989: result: $use_wide_curses" >&5 +echo "$as_me:21192: result: $use_wide_curses" >&5 echo "${ECHO_T}$use_wide_curses" >&6 -echo "$as_me:20992: checking if color-style code should be used" >&5 +echo "$as_me:21195: checking if color-style code should be used" >&5 echo $ECHO_N "checking if color-style code should be used... $ECHO_C" >&6 # Check whether --enable-color-style or --disable-color-style was given. @@ -21009,7 +21212,7 @@ fi; case $use_color_style in no) - echo "$as_me:21012: result: no" >&5 + echo "$as_me:21215: result: no" >&5 echo "${ECHO_T}no" >&6 INSTALL_LSS= ;; @@ -21018,10 +21221,10 @@ echo "${ECHO_T}no" >&6 #define USE_COLOR_STYLE 1 EOF - echo "$as_me:21021: result: yes" >&5 + echo "$as_me:21224: result: yes" >&5 echo "${ECHO_T}yes" >&6 - echo "$as_me:21024: checking for location of style-sheet file" >&5 + echo "$as_me:21227: checking for location of style-sheet file" >&5 echo $ECHO_N "checking for location of style-sheet file... $ECHO_C" >&6 # Check whether --with-lss-file or --without-lss-file was given. @@ -21057,7 +21260,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:21060: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:21263: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -21066,7 +21269,7 @@ esac fi LYNX_LSS_FILE="$withval" - echo "$as_me:21069: result: $LYNX_LSS_FILE" >&5 + echo "$as_me:21272: result: $LYNX_LSS_FILE" >&5 echo "${ECHO_T}$LYNX_LSS_FILE" >&6 test "$LYNX_LSS_FILE" = no && LYNX_LSS_FILE= @@ -21078,7 +21281,7 @@ EOF ;; esac -echo "$as_me:21081: checking for the default configuration-file" >&5 +echo "$as_me:21284: checking for the default configuration-file" >&5 echo $ECHO_N "checking for the default configuration-file... $ECHO_C" >&6 # Check whether --with-cfg-file or --without-cfg-file was given. @@ -21114,7 +21317,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:21117: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:21320: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -21123,7 +21326,7 @@ esac fi LYNX_CFG_FILE="$withval" -echo "$as_me:21126: result: $LYNX_CFG_FILE" >&5 +echo "$as_me:21329: result: $LYNX_CFG_FILE" >&5 echo "${ECHO_T}$LYNX_CFG_FILE" >&6 test "$LYNX_CFG_FILE" = no && LYNX_CFG_FILE= @@ -21131,7 +21334,7 @@ cat >>confdefs.h <<EOF #define LYNX_CFG_FILE "$LYNX_CFG_FILE" EOF -echo "$as_me:21134: checking if htmlized lynx.cfg should be built" >&5 +echo "$as_me:21337: checking if htmlized lynx.cfg should be built" >&5 echo $ECHO_N "checking if htmlized lynx.cfg should be built... $ECHO_C" >&6 # Check whether --enable-htmlized-cfg or --disable-htmlized-cfg was given. @@ -21148,7 +21351,7 @@ else use_htmlized_cfg=no fi; -echo "$as_me:21151: result: $use_htmlized_cfg" >&5 +echo "$as_me:21354: result: $use_htmlized_cfg" >&5 echo "${ECHO_T}$use_htmlized_cfg" >&6 LYNXCFG_MAKE='' @@ -21156,7 +21359,7 @@ if test $use_htmlized_cfg = no ; then LYNXCFG_MAKE='#' fi -echo "$as_me:21159: checking if local doc directory should be linked to help page" >&5 +echo "$as_me:21362: checking if local doc directory should be linked to help page" >&5 echo $ECHO_N "checking if local doc directory should be linked to help page... $ECHO_C" >&6 # Check whether --enable-local-docs or --disable-local-docs was given. @@ -21173,7 +21376,7 @@ else use_local_docs=no fi; -echo "$as_me:21176: result: $use_local_docs" >&5 +echo "$as_me:21379: result: $use_local_docs" >&5 echo "${ECHO_T}$use_local_docs" >&6 LYNXDOC_MAKE='' @@ -21181,7 +21384,7 @@ if test $use_local_docs = no ; then LYNXDOC_MAKE='#' fi -echo "$as_me:21184: checking for MIME library directory" >&5 +echo "$as_me:21387: checking for MIME library directory" >&5 echo $ECHO_N "checking for MIME library directory... $ECHO_C" >&6 # Check whether --with-mime-libdir or --without-mime-libdir was given. @@ -21217,7 +21420,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:21220: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:21423: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -21226,14 +21429,14 @@ esac fi MIME_LIBDIR="$withval" -echo "$as_me:21229: result: $MIME_LIBDIR" >&5 +echo "$as_me:21432: result: $MIME_LIBDIR" >&5 echo "${ECHO_T}$MIME_LIBDIR" >&6 MIME_LIBDIR=`echo "$MIME_LIBDIR" | sed -e 's,/$,,' -e 's,$,/,'` cat >>confdefs.h <<EOF #define MIME_LIBDIR "$MIME_LIBDIR" EOF -echo "$as_me:21236: checking if locale-charset selection logic should be used" >&5 +echo "$as_me:21439: checking if locale-charset selection logic should be used" >&5 echo $ECHO_N "checking if locale-charset selection logic should be used... $ECHO_C" >&6 # Check whether --enable-locale-charset or --disable-locale-charset was given. @@ -21250,7 +21453,7 @@ else use_locale_charset=yes fi; -echo "$as_me:21253: result: $use_locale_charset" >&5 +echo "$as_me:21456: result: $use_locale_charset" >&5 echo "${ECHO_T}$use_locale_charset" >&6 test $use_locale_charset != no && cat >>confdefs.h <<\EOF #define USE_LOCALE_CHARSET 1 @@ -21258,7 +21461,7 @@ EOF CHARSET_DEFS= -echo "$as_me:21261: checking if you want only a few charsets" >&5 +echo "$as_me:21464: checking if you want only a few charsets" >&5 echo $ECHO_N "checking if you want only a few charsets... $ECHO_C" >&6 # Check whether --with-charsets or --without-charsets was given. @@ -21270,7 +21473,7 @@ else fi; if test -n "$cf_charsets" ; then - echo "$as_me:21273: result: yes" >&5 + echo "$as_me:21476: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define ALL_CHARSETS 0 @@ -21283,7 +21486,7 @@ EOF if test "$cf_charsets" = "minimal" ; then test -n "$verbose" && echo " using minimal list of charsets: $cf_min_charsets" 1>&6 -echo "${as_me-configure}:21286: testing using minimal list of charsets: $cf_min_charsets ..." 1>&5 +echo "${as_me-configure}:21489: testing using minimal list of charsets: $cf_min_charsets ..." 1>&5 fi cf_charsets=`echo $cf_charsets | sed -e "s/minimal/$cf_min_charsets/g" -e 's/,/ /g'` @@ -21310,28 +21513,28 @@ echo "${as_me-configure}:21286: testing using minimal list of charsets: $cf_min_ then test -n "$verbose" && echo " found $cf_charset" 1>&6 -echo "${as_me-configure}:21313: testing found $cf_charset ..." 1>&5 +echo "${as_me-configure}:21516: testing found $cf_charset ..." 1>&5 CHARSET_DEFS="-DNO_CHARSET_${cf_def_charset}=0 $CHARSET_DEFS" else test -n "$verbose" && echo " not found $cf_charset" 1>&6 -echo "${as_me-configure}:21319: testing not found $cf_charset ..." 1>&5 +echo "${as_me-configure}:21522: testing not found $cf_charset ..." 1>&5 fi done else - echo "$as_me:21324: result: no" >&5 + echo "$as_me:21527: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:21328: checking for ANSI C header files" >&5 +echo "$as_me:21531: checking for ANSI C header files" >&5 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6 if test "${ac_cv_header_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 21334 "configure" +#line 21537 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -21339,13 +21542,13 @@ else #include <float.h> _ACEOF -if { (eval echo "$as_me:21342: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:21545: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:21348: \$? = $ac_status" >&5 + echo "$as_me:21551: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -21367,7 +21570,7 @@ rm -f conftest.err conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF -#line 21370 "configure" +#line 21573 "configure" #include "confdefs.h" #include <string.h> @@ -21385,7 +21588,7 @@ fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF -#line 21388 "configure" +#line 21591 "configure" #include "confdefs.h" #include <stdlib.h> @@ -21406,7 +21609,7 @@ if test $ac_cv_header_stdc = yes; then : else cat >conftest.$ac_ext <<_ACEOF -#line 21409 "configure" +#line 21612 "configure" #include "confdefs.h" #include <ctype.h> #if ((' ' & 0x0FF) == 0x020) @@ -21432,15 +21635,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:21435: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21638: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21438: \$? = $ac_status" >&5 + echo "$as_me:21641: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:21440: \"$ac_try\"") >&5 + { (eval echo "$as_me:21643: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21443: \$? = $ac_status" >&5 + echo "$as_me:21646: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -21453,7 +21656,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi -echo "$as_me:21456: result: $ac_cv_header_stdc" >&5 +echo "$as_me:21659: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then @@ -21463,13 +21666,13 @@ EOF fi -echo "$as_me:21466: checking whether time.h and sys/time.h may both be included" >&5 +echo "$as_me:21669: checking whether time.h and sys/time.h may both be included" >&5 echo $ECHO_N "checking whether time.h and sys/time.h may both be included... $ECHO_C" >&6 if test "${ac_cv_header_time+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 21472 "configure" +#line 21675 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/time.h> @@ -21485,16 +21688,16 @@ return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21488: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21691: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21491: \$? = $ac_status" >&5 + echo "$as_me:21694: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21494: \"$ac_try\"") >&5 + { (eval echo "$as_me:21697: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21497: \$? = $ac_status" >&5 + echo "$as_me:21700: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_header_time=yes else @@ -21504,7 +21707,7 @@ ac_cv_header_time=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:21507: result: $ac_cv_header_time" >&5 +echo "$as_me:21710: result: $ac_cv_header_time" >&5 echo "${ECHO_T}$ac_cv_header_time" >&6 if test $ac_cv_header_time = yes; then @@ -21517,13 +21720,13 @@ fi ac_header_dirent=no for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h; do as_ac_Header=`echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh` -echo "$as_me:21520: checking for $ac_hdr that defines DIR" >&5 +echo "$as_me:21723: checking for $ac_hdr that defines DIR" >&5 echo $ECHO_N "checking for $ac_hdr that defines DIR... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 21526 "configure" +#line 21729 "configure" #include "confdefs.h" #include <sys/types.h> #include <$ac_hdr> @@ -21538,16 +21741,16 @@ return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21541: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21744: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21544: \$? = $ac_status" >&5 + echo "$as_me:21747: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21547: \"$ac_try\"") >&5 + { (eval echo "$as_me:21750: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21550: \$? = $ac_status" >&5 + echo "$as_me:21753: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Header=yes" else @@ -21557,7 +21760,7 @@ eval "$as_ac_Header=no" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:21560: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:21763: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -21570,7 +21773,7 @@ fi done # Two versions of opendir et al. are in -ldir and -lx on SCO Xenix. if test $ac_header_dirent = dirent.h; then - echo "$as_me:21573: checking for opendir in -ldir" >&5 + echo "$as_me:21776: checking for opendir in -ldir" >&5 echo $ECHO_N "checking for opendir in -ldir... $ECHO_C" >&6 if test "${ac_cv_lib_dir_opendir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -21578,7 +21781,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldir $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 21581 "configure" +#line 21784 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -21597,16 +21800,16 @@ opendir (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21600: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21803: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21603: \$? = $ac_status" >&5 + echo "$as_me:21806: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21606: \"$ac_try\"") >&5 + { (eval echo "$as_me:21809: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21609: \$? = $ac_status" >&5 + echo "$as_me:21812: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dir_opendir=yes else @@ -21617,14 +21820,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:21620: result: $ac_cv_lib_dir_opendir" >&5 +echo "$as_me:21823: result: $ac_cv_lib_dir_opendir" >&5 echo "${ECHO_T}$ac_cv_lib_dir_opendir" >&6 if test $ac_cv_lib_dir_opendir = yes; then LIBS="$LIBS -ldir" fi else - echo "$as_me:21627: checking for opendir in -lx" >&5 + echo "$as_me:21830: checking for opendir in -lx" >&5 echo $ECHO_N "checking for opendir in -lx... $ECHO_C" >&6 if test "${ac_cv_lib_x_opendir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -21632,7 +21835,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lx $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 21635 "configure" +#line 21838 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -21651,16 +21854,16 @@ opendir (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21654: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21857: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21657: \$? = $ac_status" >&5 + echo "$as_me:21860: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21660: \"$ac_try\"") >&5 + { (eval echo "$as_me:21863: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21663: \$? = $ac_status" >&5 + echo "$as_me:21866: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_x_opendir=yes else @@ -21671,7 +21874,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:21674: result: $ac_cv_lib_x_opendir" >&5 +echo "$as_me:21877: result: $ac_cv_lib_x_opendir" >&5 echo "${ECHO_T}$ac_cv_lib_x_opendir" >&6 if test $ac_cv_lib_x_opendir = yes; then LIBS="$LIBS -lx" @@ -21699,23 +21902,23 @@ for ac_header in \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:21702: checking for $ac_header" >&5 +echo "$as_me:21905: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 21708 "configure" +#line 21911 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:21712: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:21915: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:21718: \$? = $ac_status" >&5 + echo "$as_me:21921: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -21734,7 +21937,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:21737: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:21940: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -21744,14 +21947,14 @@ EOF fi done -echo "$as_me:21747: checking termio.h and termios.h" >&5 +echo "$as_me:21950: checking termio.h and termios.h" >&5 echo $ECHO_N "checking termio.h and termios.h... $ECHO_C" >&6 if test "${cf_cv_termio_and_termios+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 21754 "configure" +#line 21957 "configure" #include "confdefs.h" #if HAVE_TERMIO_H @@ -21769,16 +21972,16 @@ putchar (0x0a) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21772: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21975: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21775: \$? = $ac_status" >&5 + echo "$as_me:21978: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21778: \"$ac_try\"") >&5 + { (eval echo "$as_me:21981: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21781: \$? = $ac_status" >&5 + echo "$as_me:21984: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termio_and_termios=yes else @@ -21789,20 +21992,20 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:21792: result: $cf_cv_termio_and_termios" >&5 +echo "$as_me:21995: result: $cf_cv_termio_and_termios" >&5 echo "${ECHO_T}$cf_cv_termio_and_termios" >&6 test $cf_cv_termio_and_termios = no && cat >>confdefs.h <<\EOF #define TERMIO_AND_TERMIOS 1 EOF -echo "$as_me:21798: checking for sigaction and structs" >&5 +echo "$as_me:22001: checking for sigaction and structs" >&5 echo $ECHO_N "checking for sigaction and structs... $ECHO_C" >&6 if test "${cf_cv_func_sigaction+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 21805 "configure" +#line 22008 "configure" #include "confdefs.h" #include <sys/types.h> @@ -21822,16 +22025,16 @@ struct sigaction act; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21825: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22028: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21828: \$? = $ac_status" >&5 + echo "$as_me:22031: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21831: \"$ac_try\"") >&5 + { (eval echo "$as_me:22034: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21834: \$? = $ac_status" >&5 + echo "$as_me:22037: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_func_sigaction=yes else @@ -21842,7 +22045,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:21845: result: $cf_cv_func_sigaction" >&5 +echo "$as_me:22048: result: $cf_cv_func_sigaction" >&5 echo "${ECHO_T}$cf_cv_func_sigaction" >&6 test "$cf_cv_func_sigaction" = yes && cat >>confdefs.h <<\EOF #define HAVE_SIGACTION 1 @@ -21851,23 +22054,23 @@ EOF for ac_header in sys/wait.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:21854: checking for $ac_header" >&5 +echo "$as_me:22057: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 21860 "configure" +#line 22063 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:21864: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:22067: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:21870: \$? = $ac_status" >&5 + echo "$as_me:22073: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -21886,7 +22089,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:21889: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:22092: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -21907,23 +22110,23 @@ else for ac_header in wait.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:21910: checking for $ac_header" >&5 +echo "$as_me:22113: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 21916 "configure" +#line 22119 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:21920: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:22123: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:21926: \$? = $ac_status" >&5 + echo "$as_me:22129: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -21942,7 +22145,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:21945: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:22148: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -21955,23 +22158,23 @@ done for ac_header in waitstatus.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:21958: checking for $ac_header" >&5 +echo "$as_me:22161: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 21964 "configure" +#line 22167 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:21968: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:22171: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:21974: \$? = $ac_status" >&5 + echo "$as_me:22177: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -21990,7 +22193,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:21993: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:22196: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -22012,14 +22215,14 @@ cf_wait_headers="$cf_wait_headers fi fi -echo "$as_me:22015: checking for union wait" >&5 +echo "$as_me:22218: checking for union wait" >&5 echo $ECHO_N "checking for union wait... $ECHO_C" >&6 if test "${cf_cv_type_unionwait+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 22022 "configure" +#line 22225 "configure" #include "confdefs.h" $cf_wait_headers int @@ -22035,16 +22238,16 @@ int x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22038: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22241: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22041: \$? = $ac_status" >&5 + echo "$as_me:22244: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22044: \"$ac_try\"") >&5 + { (eval echo "$as_me:22247: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22047: \$? = $ac_status" >&5 + echo "$as_me:22250: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_type_unionwait=no echo compiles ok w/o union wait 1>&5 @@ -22054,7 +22257,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 22057 "configure" +#line 22260 "configure" #include "confdefs.h" $cf_wait_headers int @@ -22074,16 +22277,16 @@ union wait x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22077: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22280: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22080: \$? = $ac_status" >&5 + echo "$as_me:22283: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22083: \"$ac_try\"") >&5 + { (eval echo "$as_me:22286: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22086: \$? = $ac_status" >&5 + echo "$as_me:22289: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_type_unionwait=yes echo compiles ok with union wait and possibly macros too 1>&5 @@ -22098,7 +22301,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:22101: result: $cf_cv_type_unionwait" >&5 +echo "$as_me:22304: result: $cf_cv_type_unionwait" >&5 echo "${ECHO_T}$cf_cv_type_unionwait" >&6 test $cf_cv_type_unionwait = yes && cat >>confdefs.h <<\EOF #define HAVE_TYPE_UNIONWAIT 1 @@ -22106,14 +22309,14 @@ EOF if test $cf_cv_type_unionwait = yes; then - echo "$as_me:22109: checking if union wait can be used as wait-arg" >&5 + echo "$as_me:22312: checking if union wait can be used as wait-arg" >&5 echo $ECHO_N "checking if union wait can be used as wait-arg... $ECHO_C" >&6 if test "${cf_cv_arg_union_wait+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 22116 "configure" +#line 22319 "configure" #include "confdefs.h" $cf_wait_headers int @@ -22125,16 +22328,16 @@ union wait x; wait(&x) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22128: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22331: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22131: \$? = $ac_status" >&5 + echo "$as_me:22334: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22134: \"$ac_try\"") >&5 + { (eval echo "$as_me:22337: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22137: \$? = $ac_status" >&5 + echo "$as_me:22340: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_arg_union_wait=yes else @@ -22146,20 +22349,20 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi - echo "$as_me:22149: result: $cf_cv_arg_union_wait" >&5 + echo "$as_me:22352: result: $cf_cv_arg_union_wait" >&5 echo "${ECHO_T}$cf_cv_arg_union_wait" >&6 test $cf_cv_arg_union_wait = yes && cat >>confdefs.h <<\EOF #define WAIT_USES_UNION 1 EOF - echo "$as_me:22155: checking if union wait can be used as waitpid-arg" >&5 + echo "$as_me:22358: checking if union wait can be used as waitpid-arg" >&5 echo $ECHO_N "checking if union wait can be used as waitpid-arg... $ECHO_C" >&6 if test "${cf_cv_arg_union_waitpid+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 22162 "configure" +#line 22365 "configure" #include "confdefs.h" $cf_wait_headers int @@ -22171,16 +22374,16 @@ union wait x; waitpid(0, &x, 0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22174: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22377: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22177: \$? = $ac_status" >&5 + echo "$as_me:22380: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22180: \"$ac_try\"") >&5 + { (eval echo "$as_me:22383: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22183: \$? = $ac_status" >&5 + echo "$as_me:22386: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_arg_union_waitpid=yes else @@ -22192,7 +22395,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi - echo "$as_me:22195: result: $cf_cv_arg_union_waitpid" >&5 + echo "$as_me:22398: result: $cf_cv_arg_union_waitpid" >&5 echo "${ECHO_T}$cf_cv_arg_union_waitpid" >&6 test $cf_cv_arg_union_waitpid = yes && cat >>confdefs.h <<\EOF #define WAITPID_USES_UNION 1 @@ -22200,115 +22403,13 @@ EOF fi -for ac_header in stdarg.h varargs.h -do -as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:22206: checking for $ac_header" >&5 -echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 -if eval "test \"\${$as_ac_Header+set}\" = set"; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -#line 22212 "configure" -#include "confdefs.h" -#include <$ac_header> -_ACEOF -if { (eval echo "$as_me:22216: \"$ac_cpp conftest.$ac_ext\"") >&5 - (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 - ac_status=$? - egrep -v '^ *\+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:22222: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null; then - if test -s conftest.err; then - ac_cpp_err=$ac_c_preproc_warn_flag - else - ac_cpp_err= - fi -else - ac_cpp_err=yes -fi -if test -z "$ac_cpp_err"; then - eval "$as_ac_Header=yes" -else - echo "$as_me: failed program was:" >&5 - cat conftest.$ac_ext >&5 - eval "$as_ac_Header=no" -fi -rm -f conftest.err conftest.$ac_ext -fi -echo "$as_me:22241: result: `eval echo '${'$as_ac_Header'}'`" >&5 -echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 -if test `eval echo '${'$as_ac_Header'}'` = yes; then - cat >>confdefs.h <<EOF -#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 -EOF - -fi -done - -echo "$as_me:22251: checking for standard varargs" >&5 -echo $ECHO_N "checking for standard varargs... $ECHO_C" >&6 -if test "${cf_cv_ansi_varargs+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - - cat >conftest.$ac_ext <<_ACEOF -#line 22258 "configure" -#include "confdefs.h" - -#if HAVE_STDARG_H -#include <stdarg.h> -#else -#if HAVE_VARARGS_H -#include <varargs.h> -#endif -#endif - -int -main () -{ -return 0;} int foo(char *fmt,...){va_list args;va_start(args,fmt);va_end(args) - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:22278: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - echo "$as_me:22281: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22284: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:22287: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - cf_cv_ansi_varargs=yes -else - echo "$as_me: failed program was:" >&5 -cat conftest.$ac_ext >&5 -cf_cv_ansi_varargs=no -fi -rm -f conftest.$ac_objext conftest.$ac_ext - -fi - -echo "$as_me:22299: result: $cf_cv_ansi_varargs" >&5 -echo "${ECHO_T}$cf_cv_ansi_varargs" >&6 -test $cf_cv_ansi_varargs = yes && cat >>confdefs.h <<\EOF -#define ANSI_VARARGS 1 -EOF - -echo "$as_me:22305: checking for uid_t in sys/types.h" >&5 +echo "$as_me:22406: checking for uid_t in sys/types.h" >&5 echo $ECHO_N "checking for uid_t in sys/types.h... $ECHO_C" >&6 if test "${ac_cv_type_uid_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 22311 "configure" +#line 22412 "configure" #include "confdefs.h" #include <sys/types.h> @@ -22322,7 +22423,7 @@ fi rm -f conftest* fi -echo "$as_me:22325: result: $ac_cv_type_uid_t" >&5 +echo "$as_me:22426: result: $ac_cv_type_uid_t" >&5 echo "${ECHO_T}$ac_cv_type_uid_t" >&6 if test $ac_cv_type_uid_t = no; then @@ -22336,7 +22437,7 @@ EOF fi -echo "$as_me:22339: checking type of array argument to getgroups" >&5 +echo "$as_me:22440: checking type of array argument to getgroups" >&5 echo $ECHO_N "checking type of array argument to getgroups... $ECHO_C" >&6 if test "${ac_cv_type_getgroups+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -22345,7 +22446,7 @@ else ac_cv_type_getgroups=cross else cat >conftest.$ac_ext <<_ACEOF -#line 22348 "configure" +#line 22449 "configure" #include "confdefs.h" /* Thanks to Mike Rendell for this test. */ #include <sys/types.h> @@ -22371,15 +22472,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:22374: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22475: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22377: \$? = $ac_status" >&5 + echo "$as_me:22478: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:22379: \"$ac_try\"") >&5 + { (eval echo "$as_me:22480: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22382: \$? = $ac_status" >&5 + echo "$as_me:22483: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_getgroups=gid_t else @@ -22392,7 +22493,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi if test $ac_cv_type_getgroups = cross; then cat >conftest.$ac_ext <<_ACEOF -#line 22395 "configure" +#line 22496 "configure" #include "confdefs.h" #include <unistd.h> @@ -22407,20 +22508,20 @@ rm -f conftest* fi fi -echo "$as_me:22410: result: $ac_cv_type_getgroups" >&5 +echo "$as_me:22511: result: $ac_cv_type_getgroups" >&5 echo "${ECHO_T}$ac_cv_type_getgroups" >&6 cat >>confdefs.h <<EOF #define GETGROUPS_T $ac_cv_type_getgroups EOF -echo "$as_me:22417: checking for off_t" >&5 +echo "$as_me:22518: checking for off_t" >&5 echo $ECHO_N "checking for off_t... $ECHO_C" >&6 if test "${ac_cv_type_off_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 22423 "configure" +#line 22524 "configure" #include "confdefs.h" $ac_includes_default int @@ -22435,16 +22536,16 @@ if (sizeof (off_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22438: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22539: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22441: \$? = $ac_status" >&5 + echo "$as_me:22542: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22444: \"$ac_try\"") >&5 + { (eval echo "$as_me:22545: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22447: \$? = $ac_status" >&5 + echo "$as_me:22548: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_off_t=yes else @@ -22454,7 +22555,7 @@ ac_cv_type_off_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:22457: result: $ac_cv_type_off_t" >&5 +echo "$as_me:22558: result: $ac_cv_type_off_t" >&5 echo "${ECHO_T}$ac_cv_type_off_t" >&6 if test $ac_cv_type_off_t = yes; then : @@ -22466,13 +22567,13 @@ EOF fi -echo "$as_me:22469: checking for pid_t" >&5 +echo "$as_me:22570: checking for pid_t" >&5 echo $ECHO_N "checking for pid_t... $ECHO_C" >&6 if test "${ac_cv_type_pid_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 22475 "configure" +#line 22576 "configure" #include "confdefs.h" $ac_includes_default int @@ -22487,16 +22588,16 @@ if (sizeof (pid_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22490: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22591: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22493: \$? = $ac_status" >&5 + echo "$as_me:22594: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22496: \"$ac_try\"") >&5 + { (eval echo "$as_me:22597: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22499: \$? = $ac_status" >&5 + echo "$as_me:22600: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_pid_t=yes else @@ -22506,7 +22607,7 @@ ac_cv_type_pid_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:22509: result: $ac_cv_type_pid_t" >&5 +echo "$as_me:22610: result: $ac_cv_type_pid_t" >&5 echo "${ECHO_T}$ac_cv_type_pid_t" >&6 if test $ac_cv_type_pid_t = yes; then : @@ -22518,13 +22619,13 @@ EOF fi -echo "$as_me:22521: checking for uid_t in sys/types.h" >&5 +echo "$as_me:22622: checking for uid_t in sys/types.h" >&5 echo $ECHO_N "checking for uid_t in sys/types.h... $ECHO_C" >&6 if test "${ac_cv_type_uid_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 22527 "configure" +#line 22628 "configure" #include "confdefs.h" #include <sys/types.h> @@ -22538,7 +22639,7 @@ fi rm -f conftest* fi -echo "$as_me:22541: result: $ac_cv_type_uid_t" >&5 +echo "$as_me:22642: result: $ac_cv_type_uid_t" >&5 echo "${ECHO_T}$ac_cv_type_uid_t" >&6 if test $ac_cv_type_uid_t = no; then @@ -22552,13 +22653,13 @@ EOF fi -echo "$as_me:22555: checking for mode_t" >&5 +echo "$as_me:22656: checking for mode_t" >&5 echo $ECHO_N "checking for mode_t... $ECHO_C" >&6 if test "${ac_cv_type_mode_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 22561 "configure" +#line 22662 "configure" #include "confdefs.h" $ac_includes_default int @@ -22573,16 +22674,16 @@ if (sizeof (mode_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22576: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22677: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22579: \$? = $ac_status" >&5 + echo "$as_me:22680: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22582: \"$ac_try\"") >&5 + { (eval echo "$as_me:22683: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22585: \$? = $ac_status" >&5 + echo "$as_me:22686: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_mode_t=yes else @@ -22592,7 +22693,7 @@ ac_cv_type_mode_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:22595: result: $ac_cv_type_mode_t" >&5 +echo "$as_me:22696: result: $ac_cv_type_mode_t" >&5 echo "${ECHO_T}$ac_cv_type_mode_t" >&6 if test $ac_cv_type_mode_t = yes; then : @@ -22604,13 +22705,13 @@ EOF fi - echo "$as_me:22607: checking for socklen_t" >&5 + echo "$as_me:22708: checking for socklen_t" >&5 echo $ECHO_N "checking for socklen_t... $ECHO_C" >&6 if test "${ac_cv_type_socklen_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 22613 "configure" +#line 22714 "configure" #include "confdefs.h" #include <sys/socket.h> @@ -22626,16 +22727,16 @@ if (sizeof (socklen_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22629: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22730: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22632: \$? = $ac_status" >&5 + echo "$as_me:22733: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22635: \"$ac_try\"") >&5 + { (eval echo "$as_me:22736: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22638: \$? = $ac_status" >&5 + echo "$as_me:22739: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_socklen_t=yes else @@ -22645,7 +22746,7 @@ ac_cv_type_socklen_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:22648: result: $ac_cv_type_socklen_t" >&5 +echo "$as_me:22749: result: $ac_cv_type_socklen_t" >&5 echo "${ECHO_T}$ac_cv_type_socklen_t" >&6 if test $ac_cv_type_socklen_t = yes; then ac_cv_type_socklen_t=yes @@ -22660,14 +22761,14 @@ EOF fi -echo "$as_me:22663: checking for tm.tm_gmtoff" >&5 +echo "$as_me:22764: checking for tm.tm_gmtoff" >&5 echo $ECHO_N "checking for tm.tm_gmtoff... $ECHO_C" >&6 if test "${cf_cv_tm_gmtoff+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 22670 "configure" +#line 22771 "configure" #include "confdefs.h" #ifdef TIME_WITH_SYS_TIME @@ -22692,16 +22793,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22695: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22796: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22698: \$? = $ac_status" >&5 + echo "$as_me:22799: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22701: \"$ac_try\"") >&5 + { (eval echo "$as_me:22802: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22704: \$? = $ac_status" >&5 + echo "$as_me:22805: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_tm_gmtoff=yes else @@ -22712,19 +22813,19 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:22715: result: $cf_cv_tm_gmtoff" >&5 +echo "$as_me:22816: result: $cf_cv_tm_gmtoff" >&5 echo "${ECHO_T}$cf_cv_tm_gmtoff" >&6 test $cf_cv_tm_gmtoff = no && cat >>confdefs.h <<\EOF #define DONT_HAVE_TM_GMTOFF 1 EOF -echo "$as_me:22721: checking for int" >&5 +echo "$as_me:22822: checking for int" >&5 echo $ECHO_N "checking for int... $ECHO_C" >&6 if test "${ac_cv_type_int+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 22727 "configure" +#line 22828 "configure" #include "confdefs.h" $ac_includes_default int @@ -22739,16 +22840,16 @@ if (sizeof (int)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22742: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22843: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22745: \$? = $ac_status" >&5 + echo "$as_me:22846: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22748: \"$ac_try\"") >&5 + { (eval echo "$as_me:22849: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22751: \$? = $ac_status" >&5 + echo "$as_me:22852: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_int=yes else @@ -22758,10 +22859,10 @@ ac_cv_type_int=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:22761: result: $ac_cv_type_int" >&5 +echo "$as_me:22862: result: $ac_cv_type_int" >&5 echo "${ECHO_T}$ac_cv_type_int" >&6 -echo "$as_me:22764: checking size of int" >&5 +echo "$as_me:22865: checking size of int" >&5 echo $ECHO_N "checking size of int... $ECHO_C" >&6 if test "${ac_cv_sizeof_int+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -22770,7 +22871,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 22773 "configure" +#line 22874 "configure" #include "confdefs.h" $ac_includes_default int @@ -22782,21 +22883,21 @@ int _array_ [1 - 2 * !((sizeof (int)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22785: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22886: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22788: \$? = $ac_status" >&5 + echo "$as_me:22889: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22791: \"$ac_try\"") >&5 + { (eval echo "$as_me:22892: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22794: \$? = $ac_status" >&5 + echo "$as_me:22895: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 22799 "configure" +#line 22900 "configure" #include "confdefs.h" $ac_includes_default int @@ -22808,16 +22909,16 @@ int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22811: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22912: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22814: \$? = $ac_status" >&5 + echo "$as_me:22915: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22817: \"$ac_try\"") >&5 + { (eval echo "$as_me:22918: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22820: \$? = $ac_status" >&5 + echo "$as_me:22921: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -22833,7 +22934,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 22836 "configure" +#line 22937 "configure" #include "confdefs.h" $ac_includes_default int @@ -22845,16 +22946,16 @@ int _array_ [1 - 2 * !((sizeof (int)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22848: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22949: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22851: \$? = $ac_status" >&5 + echo "$as_me:22952: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22854: \"$ac_try\"") >&5 + { (eval echo "$as_me:22955: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22857: \$? = $ac_status" >&5 + echo "$as_me:22958: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -22870,7 +22971,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF -#line 22873 "configure" +#line 22974 "configure" #include "confdefs.h" $ac_includes_default int @@ -22882,16 +22983,16 @@ int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22885: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22986: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22888: \$? = $ac_status" >&5 + echo "$as_me:22989: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22891: \"$ac_try\"") >&5 + { (eval echo "$as_me:22992: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22894: \$? = $ac_status" >&5 + echo "$as_me:22995: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -22904,12 +23005,12 @@ done ac_cv_sizeof_int=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:22907: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:23008: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 22912 "configure" +#line 23013 "configure" #include "confdefs.h" $ac_includes_default int @@ -22925,15 +23026,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:22928: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23029: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22931: \$? = $ac_status" >&5 + echo "$as_me:23032: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:22933: \"$ac_try\"") >&5 + { (eval echo "$as_me:23034: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22936: \$? = $ac_status" >&5 + echo "$as_me:23037: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_int=`cat conftest.val` else @@ -22949,19 +23050,19 @@ else ac_cv_sizeof_int=0 fi fi -echo "$as_me:22952: result: $ac_cv_sizeof_int" >&5 +echo "$as_me:23053: result: $ac_cv_sizeof_int" >&5 echo "${ECHO_T}$ac_cv_sizeof_int" >&6 cat >>confdefs.h <<EOF #define SIZEOF_INT $ac_cv_sizeof_int EOF -echo "$as_me:22958: checking for long" >&5 +echo "$as_me:23059: checking for long" >&5 echo $ECHO_N "checking for long... $ECHO_C" >&6 if test "${ac_cv_type_long+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 22964 "configure" +#line 23065 "configure" #include "confdefs.h" $ac_includes_default int @@ -22976,16 +23077,16 @@ if (sizeof (long)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22979: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23080: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22982: \$? = $ac_status" >&5 + echo "$as_me:23083: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22985: \"$ac_try\"") >&5 + { (eval echo "$as_me:23086: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22988: \$? = $ac_status" >&5 + echo "$as_me:23089: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_long=yes else @@ -22995,10 +23096,10 @@ ac_cv_type_long=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:22998: result: $ac_cv_type_long" >&5 +echo "$as_me:23099: result: $ac_cv_type_long" >&5 echo "${ECHO_T}$ac_cv_type_long" >&6 -echo "$as_me:23001: checking size of long" >&5 +echo "$as_me:23102: checking size of long" >&5 echo $ECHO_N "checking size of long... $ECHO_C" >&6 if test "${ac_cv_sizeof_long+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -23007,7 +23108,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 23010 "configure" +#line 23111 "configure" #include "confdefs.h" $ac_includes_default int @@ -23019,21 +23120,21 @@ int _array_ [1 - 2 * !((sizeof (long)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23022: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23123: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23025: \$? = $ac_status" >&5 + echo "$as_me:23126: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23028: \"$ac_try\"") >&5 + { (eval echo "$as_me:23129: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23031: \$? = $ac_status" >&5 + echo "$as_me:23132: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 23036 "configure" +#line 23137 "configure" #include "confdefs.h" $ac_includes_default int @@ -23045,16 +23146,16 @@ int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23048: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23149: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23051: \$? = $ac_status" >&5 + echo "$as_me:23152: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23054: \"$ac_try\"") >&5 + { (eval echo "$as_me:23155: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23057: \$? = $ac_status" >&5 + echo "$as_me:23158: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -23070,7 +23171,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 23073 "configure" +#line 23174 "configure" #include "confdefs.h" $ac_includes_default int @@ -23082,16 +23183,16 @@ int _array_ [1 - 2 * !((sizeof (long)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23085: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23186: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23088: \$? = $ac_status" >&5 + echo "$as_me:23189: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23091: \"$ac_try\"") >&5 + { (eval echo "$as_me:23192: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23094: \$? = $ac_status" >&5 + echo "$as_me:23195: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -23107,7 +23208,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF -#line 23110 "configure" +#line 23211 "configure" #include "confdefs.h" $ac_includes_default int @@ -23119,16 +23220,16 @@ int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23122: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23223: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23125: \$? = $ac_status" >&5 + echo "$as_me:23226: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23128: \"$ac_try\"") >&5 + { (eval echo "$as_me:23229: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23131: \$? = $ac_status" >&5 + echo "$as_me:23232: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -23141,12 +23242,12 @@ done ac_cv_sizeof_long=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:23144: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:23245: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 23149 "configure" +#line 23250 "configure" #include "confdefs.h" $ac_includes_default int @@ -23162,15 +23263,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:23165: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23266: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23168: \$? = $ac_status" >&5 + echo "$as_me:23269: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:23170: \"$ac_try\"") >&5 + { (eval echo "$as_me:23271: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23173: \$? = $ac_status" >&5 + echo "$as_me:23274: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_long=`cat conftest.val` else @@ -23186,19 +23287,19 @@ else ac_cv_sizeof_long=0 fi fi -echo "$as_me:23189: result: $ac_cv_sizeof_long" >&5 +echo "$as_me:23290: result: $ac_cv_sizeof_long" >&5 echo "${ECHO_T}$ac_cv_sizeof_long" >&6 cat >>confdefs.h <<EOF #define SIZEOF_LONG $ac_cv_sizeof_long EOF -echo "$as_me:23195: checking for off_t" >&5 +echo "$as_me:23296: checking for off_t" >&5 echo $ECHO_N "checking for off_t... $ECHO_C" >&6 if test "${ac_cv_type_off_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 23201 "configure" +#line 23302 "configure" #include "confdefs.h" $ac_includes_default int @@ -23213,16 +23314,16 @@ if (sizeof (off_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23216: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23317: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23219: \$? = $ac_status" >&5 + echo "$as_me:23320: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23222: \"$ac_try\"") >&5 + { (eval echo "$as_me:23323: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23225: \$? = $ac_status" >&5 + echo "$as_me:23326: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_off_t=yes else @@ -23232,10 +23333,10 @@ ac_cv_type_off_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:23235: result: $ac_cv_type_off_t" >&5 +echo "$as_me:23336: result: $ac_cv_type_off_t" >&5 echo "${ECHO_T}$ac_cv_type_off_t" >&6 -echo "$as_me:23238: checking size of off_t" >&5 +echo "$as_me:23339: checking size of off_t" >&5 echo $ECHO_N "checking size of off_t... $ECHO_C" >&6 if test "${ac_cv_sizeof_off_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -23244,7 +23345,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 23247 "configure" +#line 23348 "configure" #include "confdefs.h" $ac_includes_default int @@ -23256,21 +23357,21 @@ int _array_ [1 - 2 * !((sizeof (off_t)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23259: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23360: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23262: \$? = $ac_status" >&5 + echo "$as_me:23363: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23265: \"$ac_try\"") >&5 + { (eval echo "$as_me:23366: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23268: \$? = $ac_status" >&5 + echo "$as_me:23369: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 23273 "configure" +#line 23374 "configure" #include "confdefs.h" $ac_includes_default int @@ -23282,16 +23383,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23285: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23386: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23288: \$? = $ac_status" >&5 + echo "$as_me:23389: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23291: \"$ac_try\"") >&5 + { (eval echo "$as_me:23392: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23294: \$? = $ac_status" >&5 + echo "$as_me:23395: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -23307,7 +23408,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 23310 "configure" +#line 23411 "configure" #include "confdefs.h" $ac_includes_default int @@ -23319,16 +23420,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23322: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23423: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23325: \$? = $ac_status" >&5 + echo "$as_me:23426: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23328: \"$ac_try\"") >&5 + { (eval echo "$as_me:23429: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23331: \$? = $ac_status" >&5 + echo "$as_me:23432: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -23344,7 +23445,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF -#line 23347 "configure" +#line 23448 "configure" #include "confdefs.h" $ac_includes_default int @@ -23356,16 +23457,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23359: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23460: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23362: \$? = $ac_status" >&5 + echo "$as_me:23463: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23365: \"$ac_try\"") >&5 + { (eval echo "$as_me:23466: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23368: \$? = $ac_status" >&5 + echo "$as_me:23469: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -23378,12 +23479,12 @@ done ac_cv_sizeof_off_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:23381: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:23482: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 23386 "configure" +#line 23487 "configure" #include "confdefs.h" $ac_includes_default int @@ -23399,15 +23500,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:23402: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23503: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23405: \$? = $ac_status" >&5 + echo "$as_me:23506: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:23407: \"$ac_try\"") >&5 + { (eval echo "$as_me:23508: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23410: \$? = $ac_status" >&5 + echo "$as_me:23511: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_off_t=`cat conftest.val` else @@ -23423,19 +23524,19 @@ else ac_cv_sizeof_off_t=0 fi fi -echo "$as_me:23426: result: $ac_cv_sizeof_off_t" >&5 +echo "$as_me:23527: result: $ac_cv_sizeof_off_t" >&5 echo "${ECHO_T}$ac_cv_sizeof_off_t" >&6 cat >>confdefs.h <<EOF #define SIZEOF_OFF_T $ac_cv_sizeof_off_t EOF -echo "$as_me:23432: checking for time_t" >&5 +echo "$as_me:23533: checking for time_t" >&5 echo $ECHO_N "checking for time_t... $ECHO_C" >&6 if test "${ac_cv_type_time_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 23438 "configure" +#line 23539 "configure" #include "confdefs.h" $ac_includes_default int @@ -23450,16 +23551,16 @@ if (sizeof (time_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23453: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23554: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23456: \$? = $ac_status" >&5 + echo "$as_me:23557: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23459: \"$ac_try\"") >&5 + { (eval echo "$as_me:23560: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23462: \$? = $ac_status" >&5 + echo "$as_me:23563: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_time_t=yes else @@ -23469,10 +23570,10 @@ ac_cv_type_time_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:23472: result: $ac_cv_type_time_t" >&5 +echo "$as_me:23573: result: $ac_cv_type_time_t" >&5 echo "${ECHO_T}$ac_cv_type_time_t" >&6 -echo "$as_me:23475: checking size of time_t" >&5 +echo "$as_me:23576: checking size of time_t" >&5 echo $ECHO_N "checking size of time_t... $ECHO_C" >&6 if test "${ac_cv_sizeof_time_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -23481,7 +23582,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 23484 "configure" +#line 23585 "configure" #include "confdefs.h" $ac_includes_default int @@ -23493,21 +23594,21 @@ int _array_ [1 - 2 * !((sizeof (time_t)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23496: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23597: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23499: \$? = $ac_status" >&5 + echo "$as_me:23600: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23502: \"$ac_try\"") >&5 + { (eval echo "$as_me:23603: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23505: \$? = $ac_status" >&5 + echo "$as_me:23606: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 23510 "configure" +#line 23611 "configure" #include "confdefs.h" $ac_includes_default int @@ -23519,16 +23620,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23522: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23623: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23525: \$? = $ac_status" >&5 + echo "$as_me:23626: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23528: \"$ac_try\"") >&5 + { (eval echo "$as_me:23629: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23531: \$? = $ac_status" >&5 + echo "$as_me:23632: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -23544,7 +23645,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 23547 "configure" +#line 23648 "configure" #include "confdefs.h" $ac_includes_default int @@ -23556,16 +23657,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23559: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23660: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23562: \$? = $ac_status" >&5 + echo "$as_me:23663: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23565: \"$ac_try\"") >&5 + { (eval echo "$as_me:23666: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23568: \$? = $ac_status" >&5 + echo "$as_me:23669: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -23581,7 +23682,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF -#line 23584 "configure" +#line 23685 "configure" #include "confdefs.h" $ac_includes_default int @@ -23593,16 +23694,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23596: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23697: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23599: \$? = $ac_status" >&5 + echo "$as_me:23700: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23602: \"$ac_try\"") >&5 + { (eval echo "$as_me:23703: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23605: \$? = $ac_status" >&5 + echo "$as_me:23706: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -23615,12 +23716,12 @@ done ac_cv_sizeof_time_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:23618: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:23719: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 23623 "configure" +#line 23724 "configure" #include "confdefs.h" $ac_includes_default int @@ -23636,15 +23737,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:23639: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23740: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23642: \$? = $ac_status" >&5 + echo "$as_me:23743: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:23644: \"$ac_try\"") >&5 + { (eval echo "$as_me:23745: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23647: \$? = $ac_status" >&5 + echo "$as_me:23748: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_time_t=`cat conftest.val` else @@ -23660,7 +23761,7 @@ else ac_cv_sizeof_time_t=0 fi fi -echo "$as_me:23663: result: $ac_cv_sizeof_time_t" >&5 +echo "$as_me:23764: result: $ac_cv_sizeof_time_t" >&5 echo "${ECHO_T}$ac_cv_sizeof_time_t" >&6 cat >>confdefs.h <<EOF #define SIZEOF_TIME_T $ac_cv_sizeof_time_t @@ -23668,13 +23769,13 @@ EOF # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! -echo "$as_me:23671: checking for working alloca.h" >&5 +echo "$as_me:23772: checking for working alloca.h" >&5 echo $ECHO_N "checking for working alloca.h... $ECHO_C" >&6 if test "${ac_cv_working_alloca_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 23677 "configure" +#line 23778 "configure" #include "confdefs.h" #include <alloca.h> int @@ -23686,16 +23787,16 @@ char *p = (char *) alloca (2 * sizeof (int)); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23689: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23790: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23692: \$? = $ac_status" >&5 + echo "$as_me:23793: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23695: \"$ac_try\"") >&5 + { (eval echo "$as_me:23796: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23698: \$? = $ac_status" >&5 + echo "$as_me:23799: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_working_alloca_h=yes else @@ -23705,7 +23806,7 @@ ac_cv_working_alloca_h=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:23708: result: $ac_cv_working_alloca_h" >&5 +echo "$as_me:23809: result: $ac_cv_working_alloca_h" >&5 echo "${ECHO_T}$ac_cv_working_alloca_h" >&6 if test $ac_cv_working_alloca_h = yes; then @@ -23715,13 +23816,13 @@ EOF fi -echo "$as_me:23718: checking for alloca" >&5 +echo "$as_me:23819: checking for alloca" >&5 echo $ECHO_N "checking for alloca... $ECHO_C" >&6 if test "${ac_cv_func_alloca_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 23724 "configure" +#line 23825 "configure" #include "confdefs.h" #ifdef __GNUC__ # define alloca __builtin_alloca @@ -23753,16 +23854,16 @@ char *p = (char *) alloca (1); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23756: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23857: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23759: \$? = $ac_status" >&5 + echo "$as_me:23860: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23762: \"$ac_try\"") >&5 + { (eval echo "$as_me:23863: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23765: \$? = $ac_status" >&5 + echo "$as_me:23866: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_alloca_works=yes else @@ -23772,7 +23873,7 @@ ac_cv_func_alloca_works=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:23775: result: $ac_cv_func_alloca_works" >&5 +echo "$as_me:23876: result: $ac_cv_func_alloca_works" >&5 echo "${ECHO_T}$ac_cv_func_alloca_works" >&6 if test $ac_cv_func_alloca_works = yes; then @@ -23793,13 +23894,13 @@ cat >>confdefs.h <<\EOF #define C_ALLOCA 1 EOF -echo "$as_me:23796: checking whether \`alloca.c' needs Cray hooks" >&5 +echo "$as_me:23897: checking whether \`alloca.c' needs Cray hooks" >&5 echo $ECHO_N "checking whether \`alloca.c' needs Cray hooks... $ECHO_C" >&6 if test "${ac_cv_os_cray+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 23802 "configure" +#line 23903 "configure" #include "confdefs.h" #if defined(CRAY) && ! defined(CRAY2) webecray @@ -23817,18 +23918,18 @@ fi rm -f conftest* fi -echo "$as_me:23820: result: $ac_cv_os_cray" >&5 +echo "$as_me:23921: result: $ac_cv_os_cray" >&5 echo "${ECHO_T}$ac_cv_os_cray" >&6 if test $ac_cv_os_cray = yes; then for ac_func in _getb67 GETB67 getb67; do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:23825: checking for $ac_func" >&5 +echo "$as_me:23926: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 23831 "configure" +#line 23932 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -23859,16 +23960,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:23862: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23963: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23865: \$? = $ac_status" >&5 + echo "$as_me:23966: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:23868: \"$ac_try\"") >&5 + { (eval echo "$as_me:23969: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23871: \$? = $ac_status" >&5 + echo "$as_me:23972: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -23878,7 +23979,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:23881: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:23982: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then @@ -23892,7 +23993,7 @@ fi done fi -echo "$as_me:23895: checking stack direction for C alloca" >&5 +echo "$as_me:23996: checking stack direction for C alloca" >&5 echo $ECHO_N "checking stack direction for C alloca... $ECHO_C" >&6 if test "${ac_cv_c_stack_direction+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -23901,7 +24002,7 @@ else ac_cv_c_stack_direction=0 else cat >conftest.$ac_ext <<_ACEOF -#line 23904 "configure" +#line 24005 "configure" #include "confdefs.h" int find_stack_direction () @@ -23924,15 +24025,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:23927: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24028: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23930: \$? = $ac_status" >&5 + echo "$as_me:24031: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:23932: \"$ac_try\"") >&5 + { (eval echo "$as_me:24033: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23935: \$? = $ac_status" >&5 + echo "$as_me:24036: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_stack_direction=1 else @@ -23944,7 +24045,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:23947: result: $ac_cv_c_stack_direction" >&5 +echo "$as_me:24048: result: $ac_cv_c_stack_direction" >&5 echo "${ECHO_T}$ac_cv_c_stack_direction" >&6 cat >>confdefs.h <<EOF @@ -23956,23 +24057,23 @@ fi for ac_header in unistd.h vfork.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:23959: checking for $ac_header" >&5 +echo "$as_me:24060: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 23965 "configure" +#line 24066 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:23969: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:24070: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:23975: \$? = $ac_status" >&5 + echo "$as_me:24076: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -23991,7 +24092,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:23994: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:24095: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -24004,13 +24105,13 @@ done for ac_func in fork vfork do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:24007: checking for $ac_func" >&5 +echo "$as_me:24108: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 24013 "configure" +#line 24114 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -24041,16 +24142,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24044: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24145: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24047: \$? = $ac_status" >&5 + echo "$as_me:24148: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24050: \"$ac_try\"") >&5 + { (eval echo "$as_me:24151: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24053: \$? = $ac_status" >&5 + echo "$as_me:24154: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -24060,7 +24161,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24063: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:24164: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<EOF @@ -24072,7 +24173,7 @@ done ac_cv_func_fork_works=$ac_cv_func_fork if test "x$ac_cv_func_fork" = xyes; then - echo "$as_me:24075: checking for working fork" >&5 + echo "$as_me:24176: checking for working fork" >&5 echo $ECHO_N "checking for working fork... $ECHO_C" >&6 if test "${ac_cv_func_fork_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -24095,15 +24196,15 @@ else } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:24098: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24199: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24101: \$? = $ac_status" >&5 + echo "$as_me:24202: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:24103: \"$ac_try\"") >&5 + { (eval echo "$as_me:24204: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24106: \$? = $ac_status" >&5 + echo "$as_me:24207: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_fork_works=yes else @@ -24115,7 +24216,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:24118: result: $ac_cv_func_fork_works" >&5 +echo "$as_me:24219: result: $ac_cv_func_fork_works" >&5 echo "${ECHO_T}$ac_cv_func_fork_works" >&6 fi @@ -24129,12 +24230,12 @@ if test "x$ac_cv_func_fork_works" = xcross; then ac_cv_func_fork_works=yes ;; esac - { echo "$as_me:24132: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5 + { echo "$as_me:24233: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5 echo "$as_me: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&2;} fi ac_cv_func_vfork_works=$ac_cv_func_vfork if test "x$ac_cv_func_vfork" = xyes; then - echo "$as_me:24137: checking for working vfork" >&5 + echo "$as_me:24238: checking for working vfork" >&5 echo $ECHO_N "checking for working vfork... $ECHO_C" >&6 if test "${ac_cv_func_vfork_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -24143,7 +24244,7 @@ else ac_cv_func_vfork_works=cross else cat >conftest.$ac_ext <<_ACEOF -#line 24146 "configure" +#line 24247 "configure" #include "confdefs.h" /* Thanks to Paul Eggert for this test. */ #include <stdio.h> @@ -24240,15 +24341,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:24243: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24344: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24246: \$? = $ac_status" >&5 + echo "$as_me:24347: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:24248: \"$ac_try\"") >&5 + { (eval echo "$as_me:24349: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24251: \$? = $ac_status" >&5 + echo "$as_me:24352: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_vfork_works=yes else @@ -24260,13 +24361,13 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:24263: result: $ac_cv_func_vfork_works" >&5 +echo "$as_me:24364: result: $ac_cv_func_vfork_works" >&5 echo "${ECHO_T}$ac_cv_func_vfork_works" >&6 fi; if test "x$ac_cv_func_fork_works" = xcross; then ac_cv_func_vfork_works=ac_cv_func_vfork - { echo "$as_me:24269: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5 + { echo "$as_me:24370: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5 echo "$as_me: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&2;} fi @@ -24291,14 +24392,14 @@ EOF fi -echo "$as_me:24294: checking if we should use fcntl or ioctl" >&5 +echo "$as_me:24395: checking if we should use fcntl or ioctl" >&5 echo $ECHO_N "checking if we should use fcntl or ioctl... $ECHO_C" >&6 if test "${cf_cv_fionbio+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 24301 "configure" +#line 24402 "configure" #include "confdefs.h" #include <sys/types.h> @@ -24315,16 +24416,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24318: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24419: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24321: \$? = $ac_status" >&5 + echo "$as_me:24422: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24324: \"$ac_try\"") >&5 + { (eval echo "$as_me:24425: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24327: \$? = $ac_status" >&5 + echo "$as_me:24428: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fionbio=ioctl else @@ -24332,7 +24433,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 24335 "configure" +#line 24436 "configure" #include "confdefs.h" #include <sys/types.h> @@ -24354,16 +24455,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24357: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24458: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24360: \$? = $ac_status" >&5 + echo "$as_me:24461: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24363: \"$ac_try\"") >&5 + { (eval echo "$as_me:24464: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24366: \$? = $ac_status" >&5 + echo "$as_me:24467: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fionbio=fcntl else @@ -24376,20 +24477,20 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24379: result: $cf_cv_fionbio" >&5 +echo "$as_me:24480: result: $cf_cv_fionbio" >&5 echo "${ECHO_T}$cf_cv_fionbio" >&6 test "$cf_cv_fionbio" = "fcntl" && cat >>confdefs.h <<\EOF #define USE_FCNTL 1 EOF -echo "$as_me:24385: checking for broken/missing definition of remove" >&5 +echo "$as_me:24486: checking for broken/missing definition of remove" >&5 echo $ECHO_N "checking for broken/missing definition of remove... $ECHO_C" >&6 if test "${cf_cv_baddef_remove+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 24392 "configure" +#line 24493 "configure" #include "confdefs.h" #include <stdio.h> int @@ -24401,23 +24502,23 @@ remove("dummy") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24404: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24505: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24407: \$? = $ac_status" >&5 + echo "$as_me:24508: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24410: \"$ac_try\"") >&5 + { (eval echo "$as_me:24511: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24413: \$? = $ac_status" >&5 + echo "$as_me:24514: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_baddef_remove=no else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 24420 "configure" +#line 24521 "configure" #include "confdefs.h" #include <stdio.h> int __unlink(name) { return unlink(name); } @@ -24430,16 +24531,16 @@ remove("dummy") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24433: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24534: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24436: \$? = $ac_status" >&5 + echo "$as_me:24537: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24439: \"$ac_try\"") >&5 + { (eval echo "$as_me:24540: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24442: \$? = $ac_status" >&5 + echo "$as_me:24543: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_baddef_remove=yes else @@ -24454,20 +24555,20 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24457: result: $cf_cv_baddef_remove" >&5 +echo "$as_me:24558: result: $cf_cv_baddef_remove" >&5 echo "${ECHO_T}$cf_cv_baddef_remove" >&6 test "$cf_cv_baddef_remove" != no && cat >>confdefs.h <<\EOF #define NEED_REMOVE 1 EOF -echo "$as_me:24463: checking for lstat" >&5 +echo "$as_me:24564: checking for lstat" >&5 echo $ECHO_N "checking for lstat... $ECHO_C" >&6 if test "${ac_cv_func_lstat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 24470 "configure" +#line 24571 "configure" #include "confdefs.h" #include <sys/types.h> @@ -24481,16 +24582,16 @@ lstat(".", (struct stat *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24484: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24585: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24487: \$? = $ac_status" >&5 + echo "$as_me:24588: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24490: \"$ac_try\"") >&5 + { (eval echo "$as_me:24591: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24493: \$? = $ac_status" >&5 + echo "$as_me:24594: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_lstat=yes else @@ -24502,7 +24603,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24505: result: $ac_cv_func_lstat " >&5 +echo "$as_me:24606: result: $ac_cv_func_lstat " >&5 echo "${ECHO_T}$ac_cv_func_lstat " >&6 if test $ac_cv_func_lstat = yes; then cat >>confdefs.h <<\EOF @@ -24536,13 +24637,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:24539: checking for $ac_func" >&5 +echo "$as_me:24640: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 24545 "configure" +#line 24646 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -24573,16 +24674,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24576: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24677: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24579: \$? = $ac_status" >&5 + echo "$as_me:24680: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24582: \"$ac_try\"") >&5 + { (eval echo "$as_me:24683: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24585: \$? = $ac_status" >&5 + echo "$as_me:24686: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -24592,7 +24693,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24595: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:24696: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<EOF @@ -24608,13 +24709,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:24611: checking for $ac_func" >&5 +echo "$as_me:24712: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 24617 "configure" +#line 24718 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -24645,16 +24746,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24648: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24749: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24651: \$? = $ac_status" >&5 + echo "$as_me:24752: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24654: \"$ac_try\"") >&5 + { (eval echo "$as_me:24755: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24657: \$? = $ac_status" >&5 + echo "$as_me:24758: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -24664,7 +24765,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24667: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:24768: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<EOF @@ -24676,7 +24777,7 @@ else fi done -echo "$as_me:24679: checking for random-integer functions" >&5 +echo "$as_me:24780: checking for random-integer functions" >&5 echo $ECHO_N "checking for random-integer functions... $ECHO_C" >&6 if test "${cf_cv_srand_func+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -24696,7 +24797,7 @@ do esac cat >conftest.$ac_ext <<_ACEOF -#line 24699 "configure" +#line 24800 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -24715,16 +24816,16 @@ long seed = 1; $cf_srand_func(seed); seed = $cf_rand_func() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24718: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24819: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24721: \$? = $ac_status" >&5 + echo "$as_me:24822: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24724: \"$ac_try\"") >&5 + { (eval echo "$as_me:24825: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24727: \$? = $ac_status" >&5 + echo "$as_me:24828: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_srand_func=$cf_func break @@ -24736,10 +24837,10 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext done fi -echo "$as_me:24739: result: $cf_cv_srand_func" >&5 +echo "$as_me:24840: result: $cf_cv_srand_func" >&5 echo "${ECHO_T}$cf_cv_srand_func" >&6 if test "$cf_cv_srand_func" != unknown ; then - echo "$as_me:24742: checking for range of random-integers" >&5 + echo "$as_me:24843: checking for range of random-integers" >&5 echo $ECHO_N "checking for range of random-integers... $ECHO_C" >&6 if test "${cf_cv_rand_max+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -24760,7 +24861,7 @@ else ;; esac cat >conftest.$ac_ext <<_ACEOF -#line 24763 "configure" +#line 24864 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -24779,16 +24880,16 @@ long x = $cf_cv_rand_max } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24782: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24883: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24785: \$? = $ac_status" >&5 + echo "$as_me:24886: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24788: \"$ac_try\"") >&5 + { (eval echo "$as_me:24889: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24791: \$? = $ac_status" >&5 + echo "$as_me:24892: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -24799,7 +24900,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:24802: result: $cf_cv_rand_max" >&5 +echo "$as_me:24903: result: $cf_cv_rand_max" >&5 echo "${ECHO_T}$cf_cv_rand_max" >&6 cf_srand_func=`echo $cf_func | sed -e 's%/.*%%'` @@ -24830,13 +24931,13 @@ fi for ac_func in strstr do -echo "$as_me:24833: checking for $ac_func declaration" >&5 +echo "$as_me:24934: checking for $ac_func declaration" >&5 echo $ECHO_N "checking for $ac_func declaration... $ECHO_C" >&6 if eval "test \"\${ac_cv_func_decl_$ac_func+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 24839 "configure" +#line 24940 "configure" #include "confdefs.h" #include <string.h> int @@ -24850,20 +24951,20 @@ extern int ${ac_func}(); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24853: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24954: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24856: \$? = $ac_status" >&5 + echo "$as_me:24957: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24859: \"$ac_try\"") >&5 + { (eval echo "$as_me:24960: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24862: \$? = $ac_status" >&5 + echo "$as_me:24963: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 24866 "configure" +#line 24967 "configure" #include "confdefs.h" #include <string.h> int @@ -24877,16 +24978,16 @@ int (*p)() = ${ac_func}; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24880: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:24981: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24883: \$? = $ac_status" >&5 + echo "$as_me:24984: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24886: \"$ac_try\"") >&5 + { (eval echo "$as_me:24987: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24889: \$? = $ac_status" >&5 + echo "$as_me:24990: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -24907,11 +25008,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi if eval "test \"`echo '$ac_cv_func_'decl_$ac_func`\" = yes"; then - echo "$as_me:24910: result: yes" >&5 + echo "$as_me:25011: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:24914: result: no" >&5 + echo "$as_me:25015: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -24926,13 +25027,13 @@ done for ac_func in getgrgid getgrnam do -echo "$as_me:24929: checking for $ac_func declaration" >&5 +echo "$as_me:25030: checking for $ac_func declaration" >&5 echo $ECHO_N "checking for $ac_func declaration... $ECHO_C" >&6 if eval "test \"\${ac_cv_func_decl_$ac_func+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 24935 "configure" +#line 25036 "configure" #include "confdefs.h" #include <stdio.h> @@ -24948,20 +25049,20 @@ extern int ${ac_func}(); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24951: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25052: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24954: \$? = $ac_status" >&5 + echo "$as_me:25055: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24957: \"$ac_try\"") >&5 + { (eval echo "$as_me:25058: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24960: \$? = $ac_status" >&5 + echo "$as_me:25061: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 24964 "configure" +#line 25065 "configure" #include "confdefs.h" #include <stdio.h> @@ -24977,16 +25078,16 @@ int (*p)() = ${ac_func}; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:24980: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25081: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:24983: \$? = $ac_status" >&5 + echo "$as_me:25084: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:24986: \"$ac_try\"") >&5 + { (eval echo "$as_me:25087: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24989: \$? = $ac_status" >&5 + echo "$as_me:25090: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -25007,11 +25108,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi if eval "test \"`echo '$ac_cv_func_'decl_$ac_func`\" = yes"; then - echo "$as_me:25010: result: yes" >&5 + echo "$as_me:25111: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:25014: result: no" >&5 + echo "$as_me:25115: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -25023,14 +25124,14 @@ EOF fi done -echo "$as_me:25026: checking if TRUE/FALSE are defined" >&5 +echo "$as_me:25127: checking if TRUE/FALSE are defined" >&5 echo $ECHO_N "checking if TRUE/FALSE are defined... $ECHO_C" >&6 if test "${cf_cv_bool_defs+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25033 "configure" +#line 25134 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -25044,16 +25145,16 @@ int x = TRUE, y = FALSE } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25047: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25148: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25050: \$? = $ac_status" >&5 + echo "$as_me:25151: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25053: \"$ac_try\"") >&5 + { (eval echo "$as_me:25154: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25056: \$? = $ac_status" >&5 + echo "$as_me:25157: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_bool_defs=yes else @@ -25064,7 +25165,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25067: result: $cf_cv_bool_defs" >&5 +echo "$as_me:25168: result: $cf_cv_bool_defs" >&5 echo "${ECHO_T}$cf_cv_bool_defs" >&6 if test "$cf_cv_bool_defs" = no ; then cat >>confdefs.h <<\EOF @@ -25077,14 +25178,14 @@ EOF fi -echo "$as_me:25080: checking if external errno is declared" >&5 +echo "$as_me:25181: checking if external errno is declared" >&5 echo $ECHO_N "checking if external errno is declared... $ECHO_C" >&6 if test "${cf_cv_dcl_errno+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25087 "configure" +#line 25188 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -25102,16 +25203,16 @@ int x = (int) errno } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25105: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25206: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25108: \$? = $ac_status" >&5 + echo "$as_me:25209: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25111: \"$ac_try\"") >&5 + { (eval echo "$as_me:25212: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25114: \$? = $ac_status" >&5 + echo "$as_me:25215: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_errno=yes else @@ -25122,7 +25223,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25125: result: $cf_cv_dcl_errno" >&5 +echo "$as_me:25226: result: $cf_cv_dcl_errno" >&5 echo "${ECHO_T}$cf_cv_dcl_errno" >&6 if test "$cf_cv_dcl_errno" = no ; then @@ -25137,14 +25238,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:25140: checking if external errno exists" >&5 +echo "$as_me:25241: checking if external errno exists" >&5 echo $ECHO_N "checking if external errno exists... $ECHO_C" >&6 if test "${cf_cv_have_errno+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25147 "configure" +#line 25248 "configure" #include "confdefs.h" #undef errno @@ -25159,16 +25260,16 @@ errno = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25162: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25263: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25165: \$? = $ac_status" >&5 + echo "$as_me:25266: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25168: \"$ac_try\"") >&5 + { (eval echo "$as_me:25269: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25171: \$? = $ac_status" >&5 + echo "$as_me:25272: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_errno=yes else @@ -25179,7 +25280,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:25182: result: $cf_cv_have_errno" >&5 +echo "$as_me:25283: result: $cf_cv_have_errno" >&5 echo "${ECHO_T}$cf_cv_have_errno" >&6 if test "$cf_cv_have_errno" = yes ; then @@ -25192,7 +25293,7 @@ EOF fi -echo "$as_me:25195: checking if we can set errno" >&5 +echo "$as_me:25296: checking if we can set errno" >&5 echo $ECHO_N "checking if we can set errno... $ECHO_C" >&6 if test "${cf_cv_set_errno+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -25200,7 +25301,7 @@ else if test "$cross_compiling" = yes; then cat >conftest.$ac_ext <<_ACEOF -#line 25203 "configure" +#line 25304 "configure" #include "confdefs.h" #include <errno.h> int @@ -25212,16 +25313,16 @@ errno = 255 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25215: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25316: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25218: \$? = $ac_status" >&5 + echo "$as_me:25319: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25221: \"$ac_try\"") >&5 + { (eval echo "$as_me:25322: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25224: \$? = $ac_status" >&5 + echo "$as_me:25325: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_set_errno=maybe else @@ -25232,7 +25333,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext else cat >conftest.$ac_ext <<_ACEOF -#line 25235 "configure" +#line 25336 "configure" #include "confdefs.h" #include <errno.h> @@ -25243,15 +25344,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:25246: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25347: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25249: \$? = $ac_status" >&5 + echo "$as_me:25350: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:25251: \"$ac_try\"") >&5 + { (eval echo "$as_me:25352: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25254: \$? = $ac_status" >&5 + echo "$as_me:25355: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_set_errno=yes else @@ -25264,20 +25365,20 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:25267: result: $cf_cv_set_errno" >&5 +echo "$as_me:25368: result: $cf_cv_set_errno" >&5 echo "${ECHO_T}$cf_cv_set_errno" >&6 test "$cf_cv_set_errno" != no && cat >>confdefs.h <<\EOF #define CAN_SET_ERRNO 1 EOF -echo "$as_me:25273: checking for setlocale()" >&5 +echo "$as_me:25374: checking for setlocale()" >&5 echo $ECHO_N "checking for setlocale()... $ECHO_C" >&6 if test "${cf_cv_locale+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25280 "configure" +#line 25381 "configure" #include "confdefs.h" #include <locale.h> int @@ -25289,16 +25390,16 @@ setlocale(LC_ALL, "") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25292: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25393: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25295: \$? = $ac_status" >&5 + echo "$as_me:25396: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25298: \"$ac_try\"") >&5 + { (eval echo "$as_me:25399: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25301: \$? = $ac_status" >&5 + echo "$as_me:25402: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_locale=yes else @@ -25310,21 +25411,21 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:25313: result: $cf_cv_locale" >&5 +echo "$as_me:25414: result: $cf_cv_locale" >&5 echo "${ECHO_T}$cf_cv_locale" >&6 test $cf_cv_locale = yes && { cat >>confdefs.h <<\EOF #define LOCALE 1 EOF } -echo "$as_me:25320: checking if NGROUPS is defined" >&5 +echo "$as_me:25421: checking if NGROUPS is defined" >&5 echo $ECHO_N "checking if NGROUPS is defined... $ECHO_C" >&6 if test "${cf_cv_ngroups+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25327 "configure" +#line 25428 "configure" #include "confdefs.h" #if HAVE_SYS_PARAM_H @@ -25343,23 +25444,23 @@ int x = NGROUPS } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25346: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25447: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25349: \$? = $ac_status" >&5 + echo "$as_me:25450: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25352: \"$ac_try\"") >&5 + { (eval echo "$as_me:25453: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25355: \$? = $ac_status" >&5 + echo "$as_me:25456: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ngroups=yes else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 25362 "configure" +#line 25463 "configure" #include "confdefs.h" #if HAVE_SYS_PARAM_H @@ -25378,16 +25479,16 @@ int x = NGROUPS_MAX } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25381: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25482: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25384: \$? = $ac_status" >&5 + echo "$as_me:25485: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25387: \"$ac_try\"") >&5 + { (eval echo "$as_me:25488: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25390: \$? = $ac_status" >&5 + echo "$as_me:25491: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ngroups=NGROUPS_MAX else @@ -25399,7 +25500,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:25402: result: $cf_cv_ngroups" >&5 +echo "$as_me:25503: result: $cf_cv_ngroups" >&5 echo "${ECHO_T}$cf_cv_ngroups" >&6 fi @@ -25416,14 +25517,14 @@ EOF fi -echo "$as_me:25419: checking if external sys_nerr is declared" >&5 +echo "$as_me:25520: checking if external sys_nerr is declared" >&5 echo $ECHO_N "checking if external sys_nerr is declared... $ECHO_C" >&6 if test "${cf_cv_dcl_sys_nerr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25426 "configure" +#line 25527 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -25441,16 +25542,16 @@ int x = (int) sys_nerr } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25444: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25545: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25447: \$? = $ac_status" >&5 + echo "$as_me:25548: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25450: \"$ac_try\"") >&5 + { (eval echo "$as_me:25551: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25453: \$? = $ac_status" >&5 + echo "$as_me:25554: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_sys_nerr=yes else @@ -25461,7 +25562,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25464: result: $cf_cv_dcl_sys_nerr" >&5 +echo "$as_me:25565: result: $cf_cv_dcl_sys_nerr" >&5 echo "${ECHO_T}$cf_cv_dcl_sys_nerr" >&6 if test "$cf_cv_dcl_sys_nerr" = no ; then @@ -25476,14 +25577,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:25479: checking if external sys_nerr exists" >&5 +echo "$as_me:25580: checking if external sys_nerr exists" >&5 echo $ECHO_N "checking if external sys_nerr exists... $ECHO_C" >&6 if test "${cf_cv_have_sys_nerr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25486 "configure" +#line 25587 "configure" #include "confdefs.h" #undef sys_nerr @@ -25498,16 +25599,16 @@ sys_nerr = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25501: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25602: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25504: \$? = $ac_status" >&5 + echo "$as_me:25605: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25507: \"$ac_try\"") >&5 + { (eval echo "$as_me:25608: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25510: \$? = $ac_status" >&5 + echo "$as_me:25611: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_sys_nerr=yes else @@ -25518,7 +25619,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:25521: result: $cf_cv_have_sys_nerr" >&5 +echo "$as_me:25622: result: $cf_cv_have_sys_nerr" >&5 echo "${ECHO_T}$cf_cv_have_sys_nerr" >&6 if test "$cf_cv_have_sys_nerr" = yes ; then @@ -25531,14 +25632,14 @@ EOF fi -echo "$as_me:25534: checking if external sys_errlist is declared" >&5 +echo "$as_me:25635: checking if external sys_errlist is declared" >&5 echo $ECHO_N "checking if external sys_errlist is declared... $ECHO_C" >&6 if test "${cf_cv_dcl_sys_errlist+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25541 "configure" +#line 25642 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -25556,16 +25657,16 @@ int x = (int) sys_errlist } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25559: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25660: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25562: \$? = $ac_status" >&5 + echo "$as_me:25663: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25565: \"$ac_try\"") >&5 + { (eval echo "$as_me:25666: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25568: \$? = $ac_status" >&5 + echo "$as_me:25669: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_sys_errlist=yes else @@ -25576,7 +25677,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25579: result: $cf_cv_dcl_sys_errlist" >&5 +echo "$as_me:25680: result: $cf_cv_dcl_sys_errlist" >&5 echo "${ECHO_T}$cf_cv_dcl_sys_errlist" >&6 if test "$cf_cv_dcl_sys_errlist" = no ; then @@ -25591,14 +25692,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:25594: checking if external sys_errlist exists" >&5 +echo "$as_me:25695: checking if external sys_errlist exists" >&5 echo $ECHO_N "checking if external sys_errlist exists... $ECHO_C" >&6 if test "${cf_cv_have_sys_errlist+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25601 "configure" +#line 25702 "configure" #include "confdefs.h" #undef sys_errlist @@ -25613,16 +25714,16 @@ sys_errlist = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25616: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25717: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25619: \$? = $ac_status" >&5 + echo "$as_me:25720: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25622: \"$ac_try\"") >&5 + { (eval echo "$as_me:25723: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25625: \$? = $ac_status" >&5 + echo "$as_me:25726: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_sys_errlist=yes else @@ -25633,7 +25734,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:25636: result: $cf_cv_have_sys_errlist" >&5 +echo "$as_me:25737: result: $cf_cv_have_sys_errlist" >&5 echo "${ECHO_T}$cf_cv_have_sys_errlist" >&6 if test "$cf_cv_have_sys_errlist" = yes ; then @@ -25649,23 +25750,23 @@ fi for ac_header in lastlog.h paths.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:25652: checking for $ac_header" >&5 +echo "$as_me:25753: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25658 "configure" +#line 25759 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:25662: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:25763: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:25668: \$? = $ac_status" >&5 + echo "$as_me:25769: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -25684,7 +25785,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:25687: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:25788: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -25694,14 +25795,14 @@ EOF fi done -echo "$as_me:25697: checking for lastlog path" >&5 +echo "$as_me:25798: checking for lastlog path" >&5 echo $ECHO_N "checking for lastlog path... $ECHO_C" >&6 if test "${cf_cv_path_lastlog+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25704 "configure" +#line 25805 "configure" #include "confdefs.h" #include <sys/types.h> @@ -25721,16 +25822,16 @@ char *path = _PATH_LASTLOG } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25724: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25825: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25727: \$? = $ac_status" >&5 + echo "$as_me:25828: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25730: \"$ac_try\"") >&5 + { (eval echo "$as_me:25831: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25733: \$? = $ac_status" >&5 + echo "$as_me:25834: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_path_lastlog="_PATH_LASTLOG" else @@ -25745,13 +25846,13 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25748: result: $cf_cv_path_lastlog" >&5 +echo "$as_me:25849: result: $cf_cv_path_lastlog" >&5 echo "${ECHO_T}$cf_cv_path_lastlog" >&6 test $cf_cv_path_lastlog != no && cat >>confdefs.h <<\EOF #define USE_LASTLOG 1 EOF -echo "$as_me:25754: checking for utmp implementation" >&5 +echo "$as_me:25855: checking for utmp implementation" >&5 echo $ECHO_N "checking for utmp implementation... $ECHO_C" >&6 if test "${cf_cv_have_utmp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -25768,7 +25869,7 @@ cf_utmp_includes=" #endif " cat >conftest.$ac_ext <<_ACEOF -#line 25771 "configure" +#line 25872 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -25782,16 +25883,16 @@ struct $cf_header x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25785: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25886: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25788: \$? = $ac_status" >&5 + echo "$as_me:25889: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25791: \"$ac_try\"") >&5 + { (eval echo "$as_me:25892: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25794: \$? = $ac_status" >&5 + echo "$as_me:25895: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp=$cf_header break @@ -25800,7 +25901,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 25803 "configure" +#line 25904 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -25814,16 +25915,16 @@ struct $cf_header x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25817: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25918: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25820: \$? = $ac_status" >&5 + echo "$as_me:25921: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25823: \"$ac_try\"") >&5 + { (eval echo "$as_me:25924: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25826: \$? = $ac_status" >&5 + echo "$as_me:25927: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp=$cf_header break @@ -25838,7 +25939,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:25841: result: $cf_cv_have_utmp" >&5 +echo "$as_me:25942: result: $cf_cv_have_utmp" >&5 echo "${ECHO_T}$cf_cv_have_utmp" >&6 if test $cf_cv_have_utmp != no ; then @@ -25851,14 +25952,14 @@ EOF EOF if test $cf_cv_have_utmp != no ; then -echo "$as_me:25854: checking if ${cf_cv_have_utmp}.ut_host is declared" >&5 +echo "$as_me:25955: checking if ${cf_cv_have_utmp}.ut_host is declared" >&5 echo $ECHO_N "checking if ${cf_cv_have_utmp}.ut_host is declared... $ECHO_C" >&6 if test "${cf_cv_have_utmp_ut_host+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25861 "configure" +#line 25962 "configure" #include "confdefs.h" #include <sys/types.h> @@ -25872,16 +25973,16 @@ struct $cf_cv_have_utmp x; char *y = &x.ut_host[0] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25875: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25976: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25878: \$? = $ac_status" >&5 + echo "$as_me:25979: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25881: \"$ac_try\"") >&5 + { (eval echo "$as_me:25982: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25884: \$? = $ac_status" >&5 + echo "$as_me:25985: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_host=yes else @@ -25893,7 +25994,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25896: result: $cf_cv_have_utmp_ut_host" >&5 +echo "$as_me:25997: result: $cf_cv_have_utmp_ut_host" >&5 echo "${ECHO_T}$cf_cv_have_utmp_ut_host" >&6 test $cf_cv_have_utmp_ut_host != no && cat >>confdefs.h <<\EOF #define HAVE_UTMP_UT_HOST 1 @@ -25902,14 +26003,14 @@ EOF fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:25905: checking if ${cf_cv_have_utmp}.ut_syslen is declared" >&5 +echo "$as_me:26006: checking if ${cf_cv_have_utmp}.ut_syslen is declared" >&5 echo $ECHO_N "checking if ${cf_cv_have_utmp}.ut_syslen is declared... $ECHO_C" >&6 if test "${cf_cv_have_utmp_ut_syslen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25912 "configure" +#line 26013 "configure" #include "confdefs.h" #include <sys/types.h> @@ -25923,16 +26024,16 @@ struct $cf_cv_have_utmp x; int y = x.ut_syslen } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25926: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26027: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25929: \$? = $ac_status" >&5 + echo "$as_me:26030: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25932: \"$ac_try\"") >&5 + { (eval echo "$as_me:26033: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25935: \$? = $ac_status" >&5 + echo "$as_me:26036: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_syslen=yes else @@ -25944,7 +26045,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25947: result: $cf_cv_have_utmp_ut_syslen" >&5 +echo "$as_me:26048: result: $cf_cv_have_utmp_ut_syslen" >&5 echo "${ECHO_T}$cf_cv_have_utmp_ut_syslen" >&6 test $cf_cv_have_utmp_ut_syslen != no && cat >>confdefs.h <<\EOF #define HAVE_UTMP_UT_SYSLEN 1 @@ -25953,7 +26054,7 @@ EOF fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:25956: checking if ${cf_cv_have_utmp}.ut_name is declared" >&5 +echo "$as_me:26057: checking if ${cf_cv_have_utmp}.ut_name is declared" >&5 echo $ECHO_N "checking if ${cf_cv_have_utmp}.ut_name is declared... $ECHO_C" >&6 if test "${cf_cv_have_utmp_ut_name+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -25970,7 +26071,7 @@ cf_utmp_includes=" " for cf_header in ut_name ut_user ; do cat >conftest.$ac_ext <<_ACEOF -#line 25973 "configure" +#line 26074 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -25984,16 +26085,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25987: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26088: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25990: \$? = $ac_status" >&5 + echo "$as_me:26091: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25993: \"$ac_try\"") >&5 + { (eval echo "$as_me:26094: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25996: \$? = $ac_status" >&5 + echo "$as_me:26097: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_name=$cf_header break @@ -26005,12 +26106,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:26008: result: $cf_cv_have_utmp_ut_name" >&5 +echo "$as_me:26109: result: $cf_cv_have_utmp_ut_name" >&5 echo "${ECHO_T}$cf_cv_have_utmp_ut_name" >&6 case $cf_cv_have_utmp_ut_name in #(vi no) #(vi - { { echo "$as_me:26013: error: Cannot find declaration for ut.ut_name" >&5 + { { echo "$as_me:26114: error: Cannot find declaration for ut.ut_name" >&5 echo "$as_me: error: Cannot find declaration for ut.ut_name" >&2;} { (exit 1); exit 1; }; } ;; @@ -26024,7 +26125,7 @@ esac fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:26027: checking for exit-status in $cf_cv_have_utmp" >&5 +echo "$as_me:26128: checking for exit-status in $cf_cv_have_utmp" >&5 echo $ECHO_N "checking for exit-status in $cf_cv_have_utmp... $ECHO_C" >&6 if test "${cf_cv_have_utmp_ut_xstatus+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -26037,7 +26138,7 @@ for cf_result in \ ut_exit.ut_exit do cat >conftest.$ac_ext <<_ACEOF -#line 26040 "configure" +#line 26141 "configure" #include "confdefs.h" #include <sys/types.h> @@ -26051,16 +26152,16 @@ struct $cf_cv_have_utmp x; long y = x.$cf_result = 0 } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26054: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26155: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26057: \$? = $ac_status" >&5 + echo "$as_me:26158: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26060: \"$ac_try\"") >&5 + { (eval echo "$as_me:26161: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26063: \$? = $ac_status" >&5 + echo "$as_me:26164: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_xstatus=$cf_result break @@ -26073,7 +26174,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:26076: result: $cf_cv_have_utmp_ut_xstatus" >&5 +echo "$as_me:26177: result: $cf_cv_have_utmp_ut_xstatus" >&5 echo "${ECHO_T}$cf_cv_have_utmp_ut_xstatus" >&6 if test $cf_cv_have_utmp_ut_xstatus != no ; then cat >>confdefs.h <<\EOF @@ -26088,14 +26189,14 @@ fi fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:26091: checking if ${cf_cv_have_utmp}.ut_xtime is declared" >&5 +echo "$as_me:26192: checking if ${cf_cv_have_utmp}.ut_xtime is declared" >&5 echo $ECHO_N "checking if ${cf_cv_have_utmp}.ut_xtime is declared... $ECHO_C" >&6 if test "${cf_cv_have_utmp_ut_xtime+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 26098 "configure" +#line 26199 "configure" #include "confdefs.h" #include <sys/types.h> @@ -26109,23 +26210,23 @@ struct $cf_cv_have_utmp x; long y = x.ut_xtime = 0 } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26112: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26213: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26115: \$? = $ac_status" >&5 + echo "$as_me:26216: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26118: \"$ac_try\"") >&5 + { (eval echo "$as_me:26219: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26121: \$? = $ac_status" >&5 + echo "$as_me:26222: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_xtime=yes else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 26128 "configure" +#line 26229 "configure" #include "confdefs.h" #include <sys/types.h> @@ -26139,16 +26240,16 @@ struct $cf_cv_have_utmp x; long y = x.ut_tv.tv_sec } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26142: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26243: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26145: \$? = $ac_status" >&5 + echo "$as_me:26246: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26148: \"$ac_try\"") >&5 + { (eval echo "$as_me:26249: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26151: \$? = $ac_status" >&5 + echo "$as_me:26252: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_xtime=define else @@ -26162,7 +26263,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26165: result: $cf_cv_have_utmp_ut_xtime" >&5 +echo "$as_me:26266: result: $cf_cv_have_utmp_ut_xtime" >&5 echo "${ECHO_T}$cf_cv_have_utmp_ut_xtime" >&6 if test $cf_cv_have_utmp_ut_xtime != no ; then cat >>confdefs.h <<\EOF @@ -26179,14 +26280,14 @@ fi fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:26182: checking if ${cf_cv_have_utmp}.ut_session is declared" >&5 +echo "$as_me:26283: checking if ${cf_cv_have_utmp}.ut_session is declared" >&5 echo $ECHO_N "checking if ${cf_cv_have_utmp}.ut_session is declared... $ECHO_C" >&6 if test "${cf_cv_have_utmp_ut_session+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 26189 "configure" +#line 26290 "configure" #include "confdefs.h" #include <sys/types.h> @@ -26200,16 +26301,16 @@ struct $cf_cv_have_utmp x; long y = x.ut_session } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26203: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26304: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26206: \$? = $ac_status" >&5 + echo "$as_me:26307: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26209: \"$ac_try\"") >&5 + { (eval echo "$as_me:26310: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26212: \$? = $ac_status" >&5 + echo "$as_me:26313: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_session=yes else @@ -26220,7 +26321,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26223: result: $cf_cv_have_utmp_ut_session" >&5 +echo "$as_me:26324: result: $cf_cv_have_utmp_ut_session" >&5 echo "${ECHO_T}$cf_cv_have_utmp_ut_session" >&6 if test $cf_cv_have_utmp_ut_session != no ; then cat >>confdefs.h <<\EOF @@ -26230,7 +26331,7 @@ EOF fi fi -echo "$as_me:26233: checking if $cf_cv_have_utmp is SYSV flavor" >&5 +echo "$as_me:26334: checking if $cf_cv_have_utmp is SYSV flavor" >&5 echo $ECHO_N "checking if $cf_cv_have_utmp is SYSV flavor... $ECHO_C" >&6 if test "${cf_cv_sysv_utmp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -26238,7 +26339,7 @@ else test "$cf_cv_have_utmp" = "utmp" && cf_prefix="ut" || cf_prefix="utx" cat >conftest.$ac_ext <<_ACEOF -#line 26241 "configure" +#line 26342 "configure" #include "confdefs.h" #include <sys/types.h> @@ -26257,16 +26358,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26260: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26361: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26263: \$? = $ac_status" >&5 + echo "$as_me:26364: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26266: \"$ac_try\"") >&5 + { (eval echo "$as_me:26367: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26269: \$? = $ac_status" >&5 + echo "$as_me:26370: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_sysv_utmp=yes else @@ -26277,7 +26378,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:26280: result: $cf_cv_sysv_utmp" >&5 +echo "$as_me:26381: result: $cf_cv_sysv_utmp" >&5 echo "${ECHO_T}$cf_cv_sysv_utmp" >&6 test $cf_cv_sysv_utmp = yes && cat >>confdefs.h <<\EOF #define USE_SYSV_UTMP 1 @@ -26285,14 +26386,14 @@ EOF fi -echo "$as_me:26288: checking if external h_errno exists" >&5 +echo "$as_me:26389: checking if external h_errno exists" >&5 echo $ECHO_N "checking if external h_errno exists... $ECHO_C" >&6 if test "${cf_cv_have_h_errno+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 26295 "configure" +#line 26396 "configure" #include "confdefs.h" #undef h_errno @@ -26307,16 +26408,16 @@ h_errno = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26310: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26411: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26313: \$? = $ac_status" >&5 + echo "$as_me:26414: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26316: \"$ac_try\"") >&5 + { (eval echo "$as_me:26417: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26319: \$? = $ac_status" >&5 + echo "$as_me:26420: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_h_errno=yes else @@ -26327,7 +26428,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:26330: result: $cf_cv_have_h_errno" >&5 +echo "$as_me:26431: result: $cf_cv_have_h_errno" >&5 echo "${ECHO_T}$cf_cv_have_h_errno" >&6 if test "$cf_cv_have_h_errno" = yes ; then @@ -26340,7 +26441,7 @@ EOF fi -echo "$as_me:26343: checking if bibp: URLs should be supported" >&5 +echo "$as_me:26444: checking if bibp: URLs should be supported" >&5 echo $ECHO_N "checking if bibp: URLs should be supported... $ECHO_C" >&6 # Check whether --enable-bibp-urls or --disable-bibp-urls was given. @@ -26357,13 +26458,13 @@ else use_bibp_urls=yes fi; -echo "$as_me:26360: result: $use_bibp_urls" >&5 +echo "$as_me:26461: result: $use_bibp_urls" >&5 echo "${ECHO_T}$use_bibp_urls" >&6 test $use_bibp_urls = no && cat >>confdefs.h <<\EOF #define DISABLE_BIBP 1 EOF -echo "$as_me:26366: checking if configuration info should be browsable" >&5 +echo "$as_me:26467: checking if configuration info should be browsable" >&5 echo $ECHO_N "checking if configuration info should be browsable... $ECHO_C" >&6 # Check whether --enable-config-info or --disable-config-info was given. @@ -26380,13 +26481,13 @@ else use_config_info=yes fi; -echo "$as_me:26383: result: $use_config_info" >&5 +echo "$as_me:26484: result: $use_config_info" >&5 echo "${ECHO_T}$use_config_info" >&6 test $use_config_info = no && cat >>confdefs.h <<\EOF #define NO_CONFIG_INFO 1 EOF -echo "$as_me:26389: checking if new-style forms-based options screen should be used" >&5 +echo "$as_me:26490: checking if new-style forms-based options screen should be used" >&5 echo $ECHO_N "checking if new-style forms-based options screen should be used... $ECHO_C" >&6 # Check whether --enable-forms-options or --disable-forms-options was given. @@ -26403,13 +26504,13 @@ else use_forms_options=yes fi; -echo "$as_me:26406: result: $use_forms_options" >&5 +echo "$as_me:26507: result: $use_forms_options" >&5 echo "${ECHO_T}$use_forms_options" >&6 test $use_forms_options = no && cat >>confdefs.h <<\EOF #define NO_OPTION_FORMS 1 EOF -echo "$as_me:26412: checking if old-style options menu should be used" >&5 +echo "$as_me:26513: checking if old-style options menu should be used" >&5 echo $ECHO_N "checking if old-style options menu should be used... $ECHO_C" >&6 # Check whether --enable-menu-options or --disable-menu-options was given. @@ -26426,13 +26527,13 @@ else use_menu_options=yes fi; -echo "$as_me:26429: result: $use_menu_options" >&5 +echo "$as_me:26530: result: $use_menu_options" >&5 echo "${ECHO_T}$use_menu_options" >&6 test $use_menu_options = no && cat >>confdefs.h <<\EOF #define NO_OPTION_MENU 1 EOF -echo "$as_me:26435: checking if experimental address-list page should be used" >&5 +echo "$as_me:26536: checking if experimental address-list page should be used" >&5 echo $ECHO_N "checking if experimental address-list page should be used... $ECHO_C" >&6 # Check whether --enable-addrlist-page or --disable-addrlist-page was given. @@ -26449,13 +26550,13 @@ else use_addrlist_page=no fi; -echo "$as_me:26452: result: $use_addrlist_page" >&5 +echo "$as_me:26553: result: $use_addrlist_page" >&5 echo "${ECHO_T}$use_addrlist_page" >&6 test $use_addrlist_page != no && cat >>confdefs.h <<\EOF #define EXP_ADDRLIST_PAGE 1 EOF -echo "$as_me:26458: checking if experimental charset-selection logic should be used" >&5 +echo "$as_me:26559: checking if experimental charset-selection logic should be used" >&5 echo $ECHO_N "checking if experimental charset-selection logic should be used... $ECHO_C" >&6 # Check whether --enable-charset-choice or --disable-charset-choice was given. @@ -26472,13 +26573,13 @@ else use_charset_choice=no fi; -echo "$as_me:26475: result: $use_charset_choice" >&5 +echo "$as_me:26576: result: $use_charset_choice" >&5 echo "${ECHO_T}$use_charset_choice" >&6 test $use_charset_choice != no && cat >>confdefs.h <<\EOF #define EXP_CHARSET_CHOICE 1 EOF -echo "$as_me:26481: checking if experimental CJK logic should be used" >&5 +echo "$as_me:26582: checking if experimental CJK logic should be used" >&5 echo $ECHO_N "checking if experimental CJK logic should be used... $ECHO_C" >&6 # Check whether --enable-cjk or --disable-cjk was given. @@ -26495,13 +26596,13 @@ else use_cjk=no fi; -echo "$as_me:26498: result: $use_cjk" >&5 +echo "$as_me:26599: result: $use_cjk" >&5 echo "${ECHO_T}$use_cjk" >&6 test $use_cjk != no && cat >>confdefs.h <<\EOF #define CJK_EX 1 EOF -echo "$as_me:26504: checking if experimental Japanese UTF-8 logic should be used" >&5 +echo "$as_me:26605: checking if experimental Japanese UTF-8 logic should be used" >&5 echo $ECHO_N "checking if experimental Japanese UTF-8 logic should be used... $ECHO_C" >&6 # Check whether --enable-japanese-utf8 or --disable-japanese-utf8 was given. @@ -26518,7 +26619,7 @@ else use_ja_utf8=no fi; -echo "$as_me:26521: result: $use_ja_utf8" >&5 +echo "$as_me:26622: result: $use_ja_utf8" >&5 echo "${ECHO_T}$use_ja_utf8" >&6 if test $use_ja_utf8 != no ; then cat >>confdefs.h <<\EOF @@ -26557,13 +26658,13 @@ if test -n "$cf_searchpath/include" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 26566 "configure" +#line 26667 "configure" #include "confdefs.h" #include <stdio.h> int @@ -26575,16 +26676,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26578: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26679: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26581: \$? = $ac_status" >&5 + echo "$as_me:26682: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26584: \"$ac_try\"") >&5 + { (eval echo "$as_me:26685: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26587: \$? = $ac_status" >&5 + echo "$as_me:26688: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -26601,13 +26702,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:26604: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:26705: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -26636,13 +26737,13 @@ if test -n "$cf_searchpath/../include" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 26645 "configure" +#line 26746 "configure" #include "confdefs.h" #include <stdio.h> int @@ -26654,16 +26755,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26657: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26758: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26660: \$? = $ac_status" >&5 + echo "$as_me:26761: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26663: \"$ac_try\"") >&5 + { (eval echo "$as_me:26764: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26666: \$? = $ac_status" >&5 + echo "$as_me:26767: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -26680,13 +26781,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:26683: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:26784: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -26696,7 +26797,7 @@ echo "${as_me-configure}:26683: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:26699: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:26800: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -26721,7 +26822,7 @@ if test -n "$cf_searchpath/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:26724: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:26825: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -26750,7 +26851,7 @@ if test -n "$cf_searchpath" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:26753: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:26854: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -26759,7 +26860,7 @@ echo "${as_me-configure}:26753: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:26762: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:26863: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -26770,7 +26871,7 @@ done fi; - echo "$as_me:26773: checking for iconv" >&5 + echo "$as_me:26874: checking for iconv" >&5 echo $ECHO_N "checking for iconv... $ECHO_C" >&6 if test "${am_cv_func_iconv+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -26781,10 +26882,10 @@ else cf_cv_header_path_iconv= cf_cv_library_path_iconv= -echo "${as_me-configure}:26784: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me-configure}:26885: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 26787 "configure" +#line 26888 "configure" #include "confdefs.h" #include <stdlib.h> @@ -26803,16 +26904,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26806: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26907: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26809: \$? = $ac_status" >&5 + echo "$as_me:26910: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26812: \"$ac_try\"") >&5 + { (eval echo "$as_me:26913: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26815: \$? = $ac_status" >&5 + echo "$as_me:26916: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes else @@ -26823,9 +26924,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for iconv library" 1>&6 -echo "${as_me-configure}:26826: testing find linkage for iconv library ..." 1>&5 +echo "${as_me-configure}:26927: testing find linkage for iconv library ..." 1>&5 -echo "${as_me-configure}:26828: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me-configure}:26929: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -26933,11 +27034,11 @@ cf_search="$cf_header_path_list $cf_search" if test -d $cf_cv_header_path_iconv ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_iconv" 1>&6 -echo "${as_me-configure}:26936: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me-configure}:27037: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_iconv" cat >conftest.$ac_ext <<_ACEOF -#line 26940 "configure" +#line 27041 "configure" #include "confdefs.h" #include <stdlib.h> @@ -26956,21 +27057,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26959: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27060: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26962: \$? = $ac_status" >&5 + echo "$as_me:27063: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26965: \"$ac_try\"") >&5 + { (eval echo "$as_me:27066: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26968: \$? = $ac_status" >&5 + echo "$as_me:27069: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found iconv headers in $cf_cv_header_path_iconv" 1>&6 -echo "${as_me-configure}:26973: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me-configure}:27074: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -26988,7 +27089,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_iconv" = maybe ; then -echo "${as_me-configure}:26991: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me-configure}:27092: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -27084,13 +27185,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_iconv ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_iconv" 1>&6 -echo "${as_me-configure}:27087: testing ... testing $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me-configure}:27188: testing ... testing $cf_cv_library_path_iconv ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-liconv $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_iconv" cat >conftest.$ac_ext <<_ACEOF -#line 27093 "configure" +#line 27194 "configure" #include "confdefs.h" #include <stdlib.h> @@ -27109,21 +27210,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27112: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27213: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27115: \$? = $ac_status" >&5 + echo "$as_me:27216: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27118: \"$ac_try\"") >&5 + { (eval echo "$as_me:27219: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27121: \$? = $ac_status" >&5 + echo "$as_me:27222: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found iconv library in $cf_cv_library_path_iconv" 1>&6 -echo "${as_me-configure}:27126: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me-configure}:27227: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=yes cf_cv_library_file_iconv="-liconv" @@ -27159,7 +27260,7 @@ am_cv_func_iconv="no, consider installing GNU libiconv" fi fi -echo "$as_me:27162: result: $am_cv_func_iconv" >&5 +echo "$as_me:27263: result: $am_cv_func_iconv" >&5 echo "${ECHO_T}$am_cv_func_iconv" >&6 if test "$am_cv_func_iconv" = yes; then @@ -27168,14 +27269,14 @@ cat >>confdefs.h <<\EOF #define HAVE_ICONV 1 EOF - echo "$as_me:27171: checking if the declaration of iconv() needs const." >&5 + echo "$as_me:27272: checking if the declaration of iconv() needs const." >&5 echo $ECHO_N "checking if the declaration of iconv() needs const.... $ECHO_C" >&6 if test "${am_cv_proto_iconv_const+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 27178 "configure" +#line 27279 "configure" #include "confdefs.h" #include <stdlib.h> @@ -27200,16 +27301,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27203: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27304: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27206: \$? = $ac_status" >&5 + echo "$as_me:27307: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27209: \"$ac_try\"") >&5 + { (eval echo "$as_me:27310: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27212: \$? = $ac_status" >&5 + echo "$as_me:27313: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_proto_iconv_const=no else @@ -27219,7 +27320,7 @@ am_cv_proto_iconv_const=yes fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27222: result: $am_cv_proto_iconv_const" >&5 +echo "$as_me:27323: result: $am_cv_proto_iconv_const" >&5 echo "${ECHO_T}$am_cv_proto_iconv_const" >&6 if test "$am_cv_proto_iconv_const" = yes ; then @@ -27255,13 +27356,13 @@ if test -n "$cf_cv_header_path_iconv" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 27264 "configure" +#line 27365 "configure" #include "confdefs.h" #include <stdio.h> int @@ -27273,16 +27374,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27276: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27377: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27279: \$? = $ac_status" >&5 + echo "$as_me:27380: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27282: \"$ac_try\"") >&5 + { (eval echo "$as_me:27383: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27285: \$? = $ac_status" >&5 + echo "$as_me:27386: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -27299,13 +27400,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:27302: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:27403: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -27336,7 +27437,7 @@ if test -n "$cf_cv_library_path_iconv" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:27339: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:27440: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -27360,7 +27461,7 @@ curses|slang|ncurses*) esac if test "$use_dft_colors" != no ; then -echo "$as_me:27363: checking if you want to use default-colors" >&5 +echo "$as_me:27464: checking if you want to use default-colors" >&5 echo $ECHO_N "checking if you want to use default-colors... $ECHO_C" >&6 # Check whether --enable-default-colors or --disable-default-colors was given. @@ -27377,7 +27478,7 @@ else use_dft_colors=no fi; -echo "$as_me:27380: result: $use_dft_colors" >&5 +echo "$as_me:27481: result: $use_dft_colors" >&5 echo "${ECHO_T}$use_dft_colors" >&6 test $use_dft_colors = "yes" && cat >>confdefs.h <<\EOF #define USE_DEFAULT_COLORS 1 @@ -27385,7 +27486,7 @@ EOF fi -echo "$as_me:27388: checking if experimental keyboard-layout logic should be used" >&5 +echo "$as_me:27489: checking if experimental keyboard-layout logic should be used" >&5 echo $ECHO_N "checking if experimental keyboard-layout logic should be used... $ECHO_C" >&6 # Check whether --enable-kbd-layout or --disable-kbd-layout was given. @@ -27402,13 +27503,13 @@ else use_kbd_layout=no fi; -echo "$as_me:27405: result: $use_kbd_layout" >&5 +echo "$as_me:27506: result: $use_kbd_layout" >&5 echo "${ECHO_T}$use_kbd_layout" >&6 test $use_kbd_layout != no && cat >>confdefs.h <<\EOF #define EXP_KEYBOARD_LAYOUT 1 EOF -echo "$as_me:27411: checking if experimental nested-table logic should be used" >&5 +echo "$as_me:27512: checking if experimental nested-table logic should be used" >&5 echo $ECHO_N "checking if experimental nested-table logic should be used... $ECHO_C" >&6 # Check whether --enable-nested-tables or --disable-nested-tables was given. @@ -27425,13 +27526,13 @@ else use_nested_tables=no fi; -echo "$as_me:27428: result: $use_nested_tables" >&5 +echo "$as_me:27529: result: $use_nested_tables" >&5 echo "${ECHO_T}$use_nested_tables" >&6 test $use_nested_tables != no && cat >>confdefs.h <<\EOF #define EXP_NESTED_TABLES 1 EOF -echo "$as_me:27434: checking if progress-bar code should be used" >&5 +echo "$as_me:27535: checking if progress-bar code should be used" >&5 echo $ECHO_N "checking if progress-bar code should be used... $ECHO_C" >&6 # Check whether --enable-progressbar or --disable-progressbar was given. @@ -27448,13 +27549,13 @@ else use_progressbar=no fi; -echo "$as_me:27451: result: $use_progressbar" >&5 +echo "$as_me:27552: result: $use_progressbar" >&5 echo "${ECHO_T}$use_progressbar" >&6 test $use_progressbar != no && cat >>confdefs.h <<\EOF #define USE_PROGRESSBAR 1 EOF -echo "$as_me:27457: checking if scrollbar code should be used" >&5 +echo "$as_me:27558: checking if scrollbar code should be used" >&5 echo $ECHO_N "checking if scrollbar code should be used... $ECHO_C" >&6 # Check whether --enable-scrollbar or --disable-scrollbar was given. @@ -27471,10 +27572,10 @@ else use_scrollbar=no fi; -echo "$as_me:27474: result: $use_scrollbar" >&5 +echo "$as_me:27575: result: $use_scrollbar" >&5 echo "${ECHO_T}$use_scrollbar" >&6 -echo "$as_me:27477: checking if sessions code should be used" >&5 +echo "$as_me:27578: checking if sessions code should be used" >&5 echo $ECHO_N "checking if sessions code should be used... $ECHO_C" >&6 # Check whether --enable-sessions or --disable-sessions was given. @@ -27491,17 +27592,17 @@ else use_sessions=no fi; -echo "$as_me:27494: result: $use_sessions" >&5 +echo "$as_me:27595: result: $use_sessions" >&5 echo "${ECHO_T}$use_sessions" >&6 if test $use_sessions != no ; then - cat >>confdefs.h <<\EOF + cat >>confdefs.h <<\EOF #define USE_SESSIONS 1 EOF EXTRA_OBJS="$EXTRA_OBJS LYSession\$o" fi -echo "$as_me:27504: checking if session-caching code should be used" >&5 +echo "$as_me:27605: checking if session-caching code should be used" >&5 echo $ECHO_N "checking if session-caching code should be used... $ECHO_C" >&6 # Check whether --enable-session-cache or --disable-session-cache was given. @@ -27518,7 +27619,7 @@ else use_session_cache=no fi; -echo "$as_me:27521: result: $use_session_cache" >&5 +echo "$as_me:27622: result: $use_session_cache" >&5 echo "${ECHO_T}$use_session_cache" >&6 if test $use_session_cache != no ; then cat >>confdefs.h <<\EOF @@ -27527,7 +27628,7 @@ EOF fi -echo "$as_me:27530: checking if alternative line-edit bindings should be used" >&5 +echo "$as_me:27631: checking if alternative line-edit bindings should be used" >&5 echo $ECHO_N "checking if alternative line-edit bindings should be used... $ECHO_C" >&6 # Check whether --enable-alt-bindings or --disable-alt-bindings was given. @@ -27544,13 +27645,13 @@ else use_alt_bindings=yes fi; -echo "$as_me:27547: result: $use_alt_bindings" >&5 +echo "$as_me:27648: result: $use_alt_bindings" >&5 echo "${ECHO_T}$use_alt_bindings" >&6 test $use_alt_bindings != no && cat >>confdefs.h <<\EOF #define EXP_ALT_BINDINGS 1 EOF -echo "$as_me:27553: checking if you want to use extended HTML DTD logic" >&5 +echo "$as_me:27654: checking if you want to use extended HTML DTD logic" >&5 echo $ECHO_N "checking if you want to use extended HTML DTD logic... $ECHO_C" >&6 # Check whether --enable-extended-dtd or --disable-extended-dtd was given. @@ -27567,13 +27668,13 @@ else use_ext_htmldtd=yes fi; -echo "$as_me:27570: result: $use_ext_htmldtd" >&5 +echo "$as_me:27671: result: $use_ext_htmldtd" >&5 echo "${ECHO_T}$use_ext_htmldtd" >&6 test $use_ext_htmldtd = "no" && cat >>confdefs.h <<\EOF #define NO_EXTENDED_HTMLDTD 1 EOF -echo "$as_me:27576: checking if file-upload logic should be used" >&5 +echo "$as_me:27677: checking if file-upload logic should be used" >&5 echo $ECHO_N "checking if file-upload logic should be used... $ECHO_C" >&6 # Check whether --enable-file-upload or --disable-file-upload was given. @@ -27590,13 +27691,13 @@ else use_file_upload=yes fi; -echo "$as_me:27593: result: $use_file_upload" >&5 +echo "$as_me:27694: result: $use_file_upload" >&5 echo "${ECHO_T}$use_file_upload" >&6 test $use_file_upload != no && cat >>confdefs.h <<\EOF #define USE_FILE_UPLOAD 1 EOF -echo "$as_me:27599: checking if element-justification logic should be used" >&5 +echo "$as_me:27700: checking if element-justification logic should be used" >&5 echo $ECHO_N "checking if element-justification logic should be used... $ECHO_C" >&6 # Check whether --enable-justify-elts or --disable-justify-elts was given. @@ -27613,13 +27714,13 @@ else use_justify_elts=yes fi; -echo "$as_me:27616: result: $use_justify_elts" >&5 +echo "$as_me:27717: result: $use_justify_elts" >&5 echo "${ECHO_T}$use_justify_elts" >&6 test $use_justify_elts != no && cat >>confdefs.h <<\EOF #define EXP_JUSTIFY_ELTS 1 EOF -echo "$as_me:27622: checking if partial-display should be used" >&5 +echo "$as_me:27723: checking if partial-display should be used" >&5 echo $ECHO_N "checking if partial-display should be used... $ECHO_C" >&6 # Check whether --enable-partial or --disable-partial was given. @@ -27636,13 +27737,13 @@ else use_partial_display=yes fi; -echo "$as_me:27639: result: $use_partial_display" >&5 +echo "$as_me:27740: result: $use_partial_display" >&5 echo "${ECHO_T}$use_partial_display" >&6 test $use_partial_display != no && cat >>confdefs.h <<\EOF #define DISP_PARTIAL 1 EOF -echo "$as_me:27645: checking if persistent-cookie logic should be used" >&5 +echo "$as_me:27746: checking if persistent-cookie logic should be used" >&5 echo $ECHO_N "checking if persistent-cookie logic should be used... $ECHO_C" >&6 # Check whether --enable-persistent-cookies or --disable-persistent-cookies was given. @@ -27659,13 +27760,13 @@ else use_filed_cookies=yes fi; -echo "$as_me:27662: result: $use_filed_cookies" >&5 +echo "$as_me:27763: result: $use_filed_cookies" >&5 echo "${ECHO_T}$use_filed_cookies" >&6 test $use_filed_cookies != no && cat >>confdefs.h <<\EOF #define USE_PERSISTENT_COOKIES 1 EOF -echo "$as_me:27668: checking if html source should be colorized" >&5 +echo "$as_me:27769: checking if html source should be colorized" >&5 echo $ECHO_N "checking if html source should be colorized... $ECHO_C" >&6 # Check whether --enable-prettysrc or --disable-prettysrc was given. @@ -27682,13 +27783,13 @@ else use_prettysrc=yes fi; -echo "$as_me:27685: result: $use_prettysrc" >&5 +echo "$as_me:27786: result: $use_prettysrc" >&5 echo "${ECHO_T}$use_prettysrc" >&6 test $use_prettysrc != no && cat >>confdefs.h <<\EOF #define USE_PRETTYSRC 1 EOF -echo "$as_me:27691: checking if read-progress message should show ETA" >&5 +echo "$as_me:27792: checking if read-progress message should show ETA" >&5 echo $ECHO_N "checking if read-progress message should show ETA... $ECHO_C" >&6 # Check whether --enable-read-eta or --disable-read-eta was given. @@ -27705,13 +27806,13 @@ else use_read_eta=yes fi; -echo "$as_me:27708: result: $use_read_eta" >&5 +echo "$as_me:27809: result: $use_read_eta" >&5 echo "${ECHO_T}$use_read_eta" >&6 test $use_read_eta != no && cat >>confdefs.h <<\EOF #define USE_READPROGRESS 1 EOF -echo "$as_me:27714: checking if source caching should be used" >&5 +echo "$as_me:27815: checking if source caching should be used" >&5 echo $ECHO_N "checking if source caching should be used... $ECHO_C" >&6 # Check whether --enable-source-cache or --disable-source-cache was given. @@ -27728,13 +27829,13 @@ else use_source_cache=yes fi; -echo "$as_me:27731: result: $use_source_cache" >&5 +echo "$as_me:27832: result: $use_source_cache" >&5 echo "${ECHO_T}$use_source_cache" >&6 test $use_source_cache != no && cat >>confdefs.h <<\EOF #define USE_SOURCE_CACHE 1 EOF -echo "$as_me:27737: checking if you want to use external commands" >&5 +echo "$as_me:27838: checking if you want to use external commands" >&5 echo $ECHO_N "checking if you want to use external commands... $ECHO_C" >&6 # Check whether --enable-externs or --disable-externs was given. @@ -27751,7 +27852,7 @@ else use_externs=no fi; -echo "$as_me:27754: result: $use_externs" >&5 +echo "$as_me:27855: result: $use_externs" >&5 echo "${ECHO_T}$use_externs" >&6 if test $use_externs != "no" ; then cat >>confdefs.h <<\EOF @@ -27761,7 +27862,7 @@ EOF EXTRA_OBJS="$EXTRA_OBJS LYExtern\$o" fi -echo "$as_me:27764: checking if you want to use setfont support" >&5 +echo "$as_me:27865: checking if you want to use setfont support" >&5 echo $ECHO_N "checking if you want to use setfont support... $ECHO_C" >&6 # Check whether --enable-font-switch or --disable-font-switch was given. @@ -27778,7 +27879,7 @@ else use_setfont=no fi; -echo "$as_me:27781: result: $use_setfont" >&5 +echo "$as_me:27882: result: $use_setfont" >&5 echo "${ECHO_T}$use_setfont" >&6 if test $use_setfont = yes ; then case $host_os in @@ -27789,7 +27890,7 @@ for ac_prog in $SETFONT consolechars setfont do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:27792: checking for $ac_word" >&5 +echo "$as_me:27893: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_SETFONT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -27806,7 +27907,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_SETFONT="$ac_dir/$ac_word" - echo "$as_me:27809: found $ac_dir/$ac_word" >&5 + echo "$as_me:27910: found $ac_dir/$ac_word" >&5 break fi done @@ -27817,10 +27918,10 @@ fi SETFONT=$ac_cv_path_SETFONT if test -n "$SETFONT"; then - echo "$as_me:27820: result: $SETFONT" >&5 + echo "$as_me:27921: result: $SETFONT" >&5 echo "${ECHO_T}$SETFONT" >&6 else - echo "$as_me:27823: result: no" >&5 + echo "$as_me:27924: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -27888,7 +27989,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:27891: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:27992: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define SETFONT_PATH "$cf_path_prog" @@ -27905,19 +28006,19 @@ fi SETFONT=built-in test -n "$verbose" && echo " Assume $host_os has font-switching" 1>&6 -echo "${as_me-configure}:27908: testing Assume $host_os has font-switching ..." 1>&5 +echo "${as_me-configure}:28009: testing Assume $host_os has font-switching ..." 1>&5 ;; *) SETFONT=unknown test -n "$verbose" && echo " Assume $host_os has no font-switching" 1>&6 -echo "${as_me-configure}:27915: testing Assume $host_os has no font-switching ..." 1>&5 +echo "${as_me-configure}:28016: testing Assume $host_os has no font-switching ..." 1>&5 ;; esac if test -z "$SETFONT" ; then - { echo "$as_me:27920: WARNING: Cannot find a font-setting program" >&5 + { echo "$as_me:28021: WARNING: Cannot find a font-setting program" >&5 echo "$as_me: WARNING: Cannot find a font-setting program" >&2;} elif test "$SETFONT" != unknown ; then cat >>confdefs.h <<\EOF @@ -27927,7 +28028,7 @@ EOF fi fi -echo "$as_me:27930: checking if you want cgi-link support" >&5 +echo "$as_me:28031: checking if you want cgi-link support" >&5 echo $ECHO_N "checking if you want cgi-link support... $ECHO_C" >&6 # Check whether --enable-cgi-links or --disable-cgi-links was given. @@ -27943,10 +28044,10 @@ EOF else enableval=no fi; -echo "$as_me:27946: result: $enableval" >&5 +echo "$as_me:28047: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 -echo "$as_me:27949: checking if you want change-exec support" >&5 +echo "$as_me:28050: checking if you want change-exec support" >&5 echo $ECHO_N "checking if you want change-exec support... $ECHO_C" >&6 # Check whether --enable-change-exec or --disable-change-exec was given. @@ -27963,13 +28064,13 @@ else use_change_exec=no fi; -echo "$as_me:27966: result: $use_change_exec" >&5 +echo "$as_me:28067: result: $use_change_exec" >&5 echo "${ECHO_T}$use_change_exec" >&6 test $use_change_exec = yes && cat >>confdefs.h <<\EOF #define ENABLE_OPTS_CHANGE_EXEC 1 EOF -echo "$as_me:27972: checking if you want exec-links support" >&5 +echo "$as_me:28073: checking if you want exec-links support" >&5 echo $ECHO_N "checking if you want exec-links support... $ECHO_C" >&6 # Check whether --enable-exec-links or --disable-exec-links was given. @@ -27986,13 +28087,13 @@ else use_exec_links=$enableval fi; -echo "$as_me:27989: result: $use_exec_links" >&5 +echo "$as_me:28090: result: $use_exec_links" >&5 echo "${ECHO_T}$use_exec_links" >&6 test $use_exec_links = yes && cat >>confdefs.h <<\EOF #define EXEC_LINKS 1 EOF -echo "$as_me:27995: checking if you want exec-scripts support" >&5 +echo "$as_me:28096: checking if you want exec-scripts support" >&5 echo $ECHO_N "checking if you want exec-scripts support... $ECHO_C" >&6 # Check whether --enable-exec-scripts or --disable-exec-scripts was given. @@ -28009,13 +28110,13 @@ else use_exec_scripts=$enableval fi; -echo "$as_me:28012: result: $use_exec_scripts" >&5 +echo "$as_me:28113: result: $use_exec_scripts" >&5 echo "${ECHO_T}$use_exec_scripts" >&6 test $use_exec_scripts = yes && cat >>confdefs.h <<\EOF #define EXEC_SCRIPTS 1 EOF -echo "$as_me:28018: checking if you want internal-links feature" >&5 +echo "$as_me:28119: checking if you want internal-links feature" >&5 echo $ECHO_N "checking if you want internal-links feature... $ECHO_C" >&6 # Check whether --enable-internal-links or --disable-internal-links was given. @@ -28032,13 +28133,13 @@ else use_internal_links=no fi; -echo "$as_me:28035: result: $use_internal_links" >&5 +echo "$as_me:28136: result: $use_internal_links" >&5 echo "${ECHO_T}$use_internal_links" >&6 test $use_internal_links = no && cat >>confdefs.h <<\EOF #define DONT_TRACK_INTERNAL_LINKS 1 EOF -echo "$as_me:28041: checking if you want to fork NSL requests" >&5 +echo "$as_me:28142: checking if you want to fork NSL requests" >&5 echo $ECHO_N "checking if you want to fork NSL requests... $ECHO_C" >&6 # Check whether --enable-nsl-fork or --disable-nsl-fork was given. @@ -28055,13 +28156,13 @@ else use_nsl_fork=no fi; -echo "$as_me:28058: result: $use_nsl_fork" >&5 +echo "$as_me:28159: result: $use_nsl_fork" >&5 echo "${ECHO_T}$use_nsl_fork" >&6 test $use_nsl_fork = yes && cat >>confdefs.h <<\EOF #define NSL_FORK 1 EOF -echo "$as_me:28064: checking if you want to log URL requests via syslog" >&5 +echo "$as_me:28165: checking if you want to log URL requests via syslog" >&5 echo $ECHO_N "checking if you want to log URL requests via syslog... $ECHO_C" >&6 # Check whether --enable-syslog or --disable-syslog was given. @@ -28078,13 +28179,13 @@ else use_syslog=no fi; -echo "$as_me:28081: result: $use_syslog" >&5 +echo "$as_me:28182: result: $use_syslog" >&5 echo "${ECHO_T}$use_syslog" >&6 test $use_syslog = yes && cat >>confdefs.h <<\EOF #define SYSLOG_REQUESTED_URLS 1 EOF -echo "$as_me:28087: checking if you want to underline links" >&5 +echo "$as_me:28188: checking if you want to underline links" >&5 echo $ECHO_N "checking if you want to underline links... $ECHO_C" >&6 # Check whether --enable-underlines or --disable-underlines was given. @@ -28101,7 +28202,7 @@ else use_underline=no fi; -echo "$as_me:28104: result: $use_underline" >&5 +echo "$as_me:28205: result: $use_underline" >&5 echo "${ECHO_T}$use_underline" >&6 test $use_underline = yes && cat >>confdefs.h <<\EOF #define UNDERLINE_LINKS 1 @@ -28111,7 +28212,7 @@ test $use_underline = no && cat >>confdefs.h <<\EOF #define UNDERLINE_LINKS 0 EOF -echo "$as_me:28114: checking if help files should be gzip'ed" >&5 +echo "$as_me:28215: checking if help files should be gzip'ed" >&5 echo $ECHO_N "checking if help files should be gzip'ed... $ECHO_C" >&6 # Check whether --enable-gzip-help or --disable-gzip-help was given. @@ -28128,10 +28229,10 @@ else use_gzip_help=no fi; -echo "$as_me:28131: result: $use_gzip_help" >&5 +echo "$as_me:28232: result: $use_gzip_help" >&5 echo "${ECHO_T}$use_gzip_help" >&6 -echo "$as_me:28134: checking if you want to use libbz2 for decompression of some bzip2 files" >&5 +echo "$as_me:28235: checking if you want to use libbz2 for decompression of some bzip2 files" >&5 echo $ECHO_N "checking if you want to use libbz2 for decompression of some bzip2 files... $ECHO_C" >&6 # Check whether --with-bzlib or --without-bzlib was given. @@ -28141,7 +28242,7 @@ if test "${with_bzlib+set}" = set; then else use_bzlib=no fi; -echo "$as_me:28144: result: $use_bzlib" >&5 +echo "$as_me:28245: result: $use_bzlib" >&5 echo "${ECHO_T}$use_bzlib" >&6 if test ".$use_bzlib" != ".no" ; then @@ -28174,13 +28275,13 @@ if test -n "$cf_searchpath/include" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 28183 "configure" +#line 28284 "configure" #include "confdefs.h" #include <stdio.h> int @@ -28192,16 +28293,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28195: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28296: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28198: \$? = $ac_status" >&5 + echo "$as_me:28299: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28201: \"$ac_try\"") >&5 + { (eval echo "$as_me:28302: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28204: \$? = $ac_status" >&5 + echo "$as_me:28305: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -28218,13 +28319,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:28221: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:28322: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -28253,13 +28354,13 @@ if test -n "$cf_searchpath/../include" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 28262 "configure" +#line 28363 "configure" #include "confdefs.h" #include <stdio.h> int @@ -28271,16 +28372,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28274: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28375: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28277: \$? = $ac_status" >&5 + echo "$as_me:28378: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28280: \"$ac_try\"") >&5 + { (eval echo "$as_me:28381: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28283: \$? = $ac_status" >&5 + echo "$as_me:28384: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -28297,13 +28398,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:28300: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:28401: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -28313,7 +28414,7 @@ echo "${as_me-configure}:28300: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:28316: error: cannot find under $use_bzlib" >&5 +{ { echo "$as_me:28417: error: cannot find under $use_bzlib" >&5 echo "$as_me: error: cannot find under $use_bzlib" >&2;} { (exit 1); exit 1; }; } fi @@ -28338,7 +28439,7 @@ if test -n "$cf_searchpath/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:28341: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:28442: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -28367,7 +28468,7 @@ if test -n "$cf_searchpath" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:28370: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:28471: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -28376,7 +28477,7 @@ echo "${as_me-configure}:28370: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:28379: error: cannot find under $use_bzlib" >&5 +{ { echo "$as_me:28480: error: cannot find under $use_bzlib" >&5 echo "$as_me: error: cannot find under $use_bzlib" >&2;} { (exit 1); exit 1; }; } fi @@ -28390,10 +28491,10 @@ done cf_cv_header_path_bz2= cf_cv_library_path_bz2= -echo "${as_me-configure}:28393: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me-configure}:28494: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 28396 "configure" +#line 28497 "configure" #include "confdefs.h" #include <stdio.h> @@ -28410,16 +28511,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28413: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28514: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28416: \$? = $ac_status" >&5 + echo "$as_me:28517: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28419: \"$ac_try\"") >&5 + { (eval echo "$as_me:28520: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28422: \$? = $ac_status" >&5 + echo "$as_me:28523: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_bz2=yes else @@ -28430,9 +28531,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for bz2 library" 1>&6 -echo "${as_me-configure}:28433: testing find linkage for bz2 library ..." 1>&5 +echo "${as_me-configure}:28534: testing find linkage for bz2 library ..." 1>&5 -echo "${as_me-configure}:28435: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me-configure}:28536: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -28540,11 +28641,11 @@ cf_search="$cf_header_path_list $cf_search" if test -d $cf_cv_header_path_bz2 ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_bz2" 1>&6 -echo "${as_me-configure}:28543: testing ... testing $cf_cv_header_path_bz2 ..." 1>&5 +echo "${as_me-configure}:28644: testing ... testing $cf_cv_header_path_bz2 ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_bz2" cat >conftest.$ac_ext <<_ACEOF -#line 28547 "configure" +#line 28648 "configure" #include "confdefs.h" #include <stdio.h> @@ -28561,21 +28662,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28564: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28665: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28567: \$? = $ac_status" >&5 + echo "$as_me:28668: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28570: \"$ac_try\"") >&5 + { (eval echo "$as_me:28671: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28573: \$? = $ac_status" >&5 + echo "$as_me:28674: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found bz2 headers in $cf_cv_header_path_bz2" 1>&6 -echo "${as_me-configure}:28578: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5 +echo "${as_me-configure}:28679: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5 cf_cv_find_linkage_bz2=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -28593,7 +28694,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_bz2" = maybe ; then -echo "${as_me-configure}:28596: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me-configure}:28697: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -28601,7 +28702,7 @@ echo "${as_me-configure}:28596: testing Searching for bz2 library in FIND_LINKAG CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lbz2 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 28604 "configure" +#line 28705 "configure" #include "confdefs.h" #include <stdio.h> @@ -28618,21 +28719,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28621: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28722: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28624: \$? = $ac_status" >&5 + echo "$as_me:28725: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28627: \"$ac_try\"") >&5 + { (eval echo "$as_me:28728: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28630: \$? = $ac_status" >&5 + echo "$as_me:28731: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found bz2 library in system" 1>&6 -echo "${as_me-configure}:28635: testing ... found bz2 library in system ..." 1>&5 +echo "${as_me-configure}:28736: testing ... found bz2 library in system ..." 1>&5 cf_cv_find_linkage_bz2=yes else @@ -28734,13 +28835,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_bz2 ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_bz2" 1>&6 -echo "${as_me-configure}:28737: testing ... testing $cf_cv_library_path_bz2 ..." 1>&5 +echo "${as_me-configure}:28838: testing ... testing $cf_cv_library_path_bz2 ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lbz2 $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_bz2" cat >conftest.$ac_ext <<_ACEOF -#line 28743 "configure" +#line 28844 "configure" #include "confdefs.h" #include <stdio.h> @@ -28757,21 +28858,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28760: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28861: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28763: \$? = $ac_status" >&5 + echo "$as_me:28864: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28766: \"$ac_try\"") >&5 + { (eval echo "$as_me:28867: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28769: \$? = $ac_status" >&5 + echo "$as_me:28870: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found bz2 library in $cf_cv_library_path_bz2" 1>&6 -echo "${as_me-configure}:28774: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5 +echo "${as_me-configure}:28875: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5 cf_cv_find_linkage_bz2=yes cf_cv_library_file_bz2="-lbz2" @@ -28820,13 +28921,13 @@ if test -n "$cf_cv_header_path_bz2" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 28829 "configure" +#line 28930 "configure" #include "confdefs.h" #include <stdio.h> int @@ -28838,16 +28939,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28841: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28942: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28844: \$? = $ac_status" >&5 + echo "$as_me:28945: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28847: \"$ac_try\"") >&5 + { (eval echo "$as_me:28948: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28850: \$? = $ac_status" >&5 + echo "$as_me:28951: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -28864,13 +28965,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:28867: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:28968: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -28898,7 +28999,7 @@ if test -n "$cf_cv_library_path_bz2" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:28901: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:29002: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -28909,7 +29010,7 @@ fi LIBS="-lbz2 $LIBS" else -{ echo "$as_me:28912: WARNING: Cannot find bz2 library" >&5 +{ echo "$as_me:29013: WARNING: Cannot find bz2 library" >&5 echo "$as_me: WARNING: Cannot find bz2 library" >&2;} fi @@ -28919,7 +29020,7 @@ EOF fi -echo "$as_me:28922: checking if you want to use zlib for decompression of some gzip files" >&5 +echo "$as_me:29023: checking if you want to use zlib for decompression of some gzip files" >&5 echo $ECHO_N "checking if you want to use zlib for decompression of some gzip files... $ECHO_C" >&6 # Check whether --with-zlib or --without-zlib was given. @@ -28929,7 +29030,7 @@ if test "${with_zlib+set}" = set; then else use_zlib=no fi; -echo "$as_me:28932: result: $use_zlib" >&5 +echo "$as_me:29033: result: $use_zlib" >&5 echo "${ECHO_T}$use_zlib" >&6 if test ".$use_zlib" != ".no" ; then @@ -28962,13 +29063,13 @@ if test -n "$cf_searchpath/include" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 28971 "configure" +#line 29072 "configure" #include "confdefs.h" #include <stdio.h> int @@ -28980,16 +29081,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28983: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29084: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28986: \$? = $ac_status" >&5 + echo "$as_me:29087: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28989: \"$ac_try\"") >&5 + { (eval echo "$as_me:29090: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28992: \$? = $ac_status" >&5 + echo "$as_me:29093: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -29006,13 +29107,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:29009: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:29110: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -29041,13 +29142,13 @@ if test -n "$cf_searchpath/../include" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 29050 "configure" +#line 29151 "configure" #include "confdefs.h" #include <stdio.h> int @@ -29059,16 +29160,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29062: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29163: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29065: \$? = $ac_status" >&5 + echo "$as_me:29166: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29068: \"$ac_try\"") >&5 + { (eval echo "$as_me:29169: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29071: \$? = $ac_status" >&5 + echo "$as_me:29172: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -29085,13 +29186,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:29088: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:29189: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -29101,7 +29202,7 @@ echo "${as_me-configure}:29088: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:29104: error: cannot find under $use_zlib" >&5 +{ { echo "$as_me:29205: error: cannot find under $use_zlib" >&5 echo "$as_me: error: cannot find under $use_zlib" >&2;} { (exit 1); exit 1; }; } fi @@ -29126,7 +29227,7 @@ if test -n "$cf_searchpath/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:29129: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:29230: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -29155,7 +29256,7 @@ if test -n "$cf_searchpath" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:29158: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:29259: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -29164,7 +29265,7 @@ echo "${as_me-configure}:29158: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:29167: error: cannot find under $use_zlib" >&5 +{ { echo "$as_me:29268: error: cannot find under $use_zlib" >&5 echo "$as_me: error: cannot find under $use_zlib" >&2;} { (exit 1); exit 1; }; } fi @@ -29178,10 +29279,10 @@ done cf_cv_header_path_z= cf_cv_library_path_z= -echo "${as_me-configure}:29181: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me-configure}:29282: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 29184 "configure" +#line 29285 "configure" #include "confdefs.h" #include <zlib.h> @@ -29197,16 +29298,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29200: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29301: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29203: \$? = $ac_status" >&5 + echo "$as_me:29304: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29206: \"$ac_try\"") >&5 + { (eval echo "$as_me:29307: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29209: \$? = $ac_status" >&5 + echo "$as_me:29310: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_z=yes else @@ -29217,9 +29318,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for z library" 1>&6 -echo "${as_me-configure}:29220: testing find linkage for z library ..." 1>&5 +echo "${as_me-configure}:29321: testing find linkage for z library ..." 1>&5 -echo "${as_me-configure}:29222: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me-configure}:29323: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -29327,11 +29428,11 @@ cf_search="$cf_header_path_list $cf_search" if test -d $cf_cv_header_path_z ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_z" 1>&6 -echo "${as_me-configure}:29330: testing ... testing $cf_cv_header_path_z ..." 1>&5 +echo "${as_me-configure}:29431: testing ... testing $cf_cv_header_path_z ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_z" cat >conftest.$ac_ext <<_ACEOF -#line 29334 "configure" +#line 29435 "configure" #include "confdefs.h" #include <zlib.h> @@ -29347,21 +29448,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29350: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29451: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29353: \$? = $ac_status" >&5 + echo "$as_me:29454: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29356: \"$ac_try\"") >&5 + { (eval echo "$as_me:29457: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29359: \$? = $ac_status" >&5 + echo "$as_me:29460: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found z headers in $cf_cv_header_path_z" 1>&6 -echo "${as_me-configure}:29364: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5 +echo "${as_me-configure}:29465: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5 cf_cv_find_linkage_z=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -29379,7 +29480,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_z" = maybe ; then -echo "${as_me-configure}:29382: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me-configure}:29483: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -29387,7 +29488,7 @@ echo "${as_me-configure}:29382: testing Searching for z library in FIND_LINKAGE( CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lz $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 29390 "configure" +#line 29491 "configure" #include "confdefs.h" #include <zlib.h> @@ -29403,21 +29504,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29406: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29507: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29409: \$? = $ac_status" >&5 + echo "$as_me:29510: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29412: \"$ac_try\"") >&5 + { (eval echo "$as_me:29513: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29415: \$? = $ac_status" >&5 + echo "$as_me:29516: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found z library in system" 1>&6 -echo "${as_me-configure}:29420: testing ... found z library in system ..." 1>&5 +echo "${as_me-configure}:29521: testing ... found z library in system ..." 1>&5 cf_cv_find_linkage_z=yes else @@ -29519,13 +29620,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_z ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_z" 1>&6 -echo "${as_me-configure}:29522: testing ... testing $cf_cv_library_path_z ..." 1>&5 +echo "${as_me-configure}:29623: testing ... testing $cf_cv_library_path_z ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lz $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_z" cat >conftest.$ac_ext <<_ACEOF -#line 29528 "configure" +#line 29629 "configure" #include "confdefs.h" #include <zlib.h> @@ -29541,21 +29642,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29544: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29645: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29547: \$? = $ac_status" >&5 + echo "$as_me:29648: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29550: \"$ac_try\"") >&5 + { (eval echo "$as_me:29651: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29553: \$? = $ac_status" >&5 + echo "$as_me:29654: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found z library in $cf_cv_library_path_z" 1>&6 -echo "${as_me-configure}:29558: testing ... found z library in $cf_cv_library_path_z ..." 1>&5 +echo "${as_me-configure}:29659: testing ... found z library in $cf_cv_library_path_z ..." 1>&5 cf_cv_find_linkage_z=yes cf_cv_library_file_z="-lz" @@ -29604,13 +29705,13 @@ if test -n "$cf_cv_header_path_z" ; then fi if test "$cf_have_incdir" = no ; then - if test "$cf_add_incdir" = /usr/local/include ; then + if test "$cf_add_incdir" = /usr/local/include ; then if test "$GCC" = yes then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 29613 "configure" +#line 29714 "configure" #include "confdefs.h" #include <stdio.h> int @@ -29622,16 +29723,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29625: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29726: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29628: \$? = $ac_status" >&5 + echo "$as_me:29729: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29631: \"$ac_try\"") >&5 + { (eval echo "$as_me:29732: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29634: \$? = $ac_status" >&5 + echo "$as_me:29735: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -29648,13 +29749,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me-configure}:29651: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:29752: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS" - cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` - test "$cf_top_incdir" = "$cf_add_incdir" && break - cf_add_incdir="$cf_top_incdir" + cf_top_incdir=`echo $cf_add_incdir | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" else break fi @@ -29682,7 +29783,7 @@ if test -n "$cf_cv_library_path_z" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:29685: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:29786: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -29693,7 +29794,7 @@ fi LIBS="-lz $LIBS" else -{ echo "$as_me:29696: WARNING: Cannot find z library" >&5 +{ echo "$as_me:29797: WARNING: Cannot find z library" >&5 echo "$as_me: WARNING: Cannot find z library" >&2;} fi @@ -29703,7 +29804,7 @@ EOF fi -echo "$as_me:29706: checking if you want to exclude FINGER code" >&5 +echo "$as_me:29807: checking if you want to exclude FINGER code" >&5 echo $ECHO_N "checking if you want to exclude FINGER code... $ECHO_C" >&6 # Check whether --enable-finger or --disable-finger was given. @@ -29720,13 +29821,13 @@ else use_finger=no fi; -echo "$as_me:29723: result: $use_finger" >&5 +echo "$as_me:29824: result: $use_finger" >&5 echo "${ECHO_T}$use_finger" >&6 test $use_finger != "no" && cat >>confdefs.h <<\EOF #define DISABLE_FINGER 1 EOF -echo "$as_me:29729: checking if you want to exclude GOPHER code" >&5 +echo "$as_me:29830: checking if you want to exclude GOPHER code" >&5 echo $ECHO_N "checking if you want to exclude GOPHER code... $ECHO_C" >&6 # Check whether --enable-gopher or --disable-gopher was given. @@ -29743,13 +29844,13 @@ else use_gopher=no fi; -echo "$as_me:29746: result: $use_gopher" >&5 +echo "$as_me:29847: result: $use_gopher" >&5 echo "${ECHO_T}$use_gopher" >&6 test $use_gopher != "no" && cat >>confdefs.h <<\EOF #define DISABLE_GOPHER 1 EOF -echo "$as_me:29752: checking if you want to exclude NEWS code" >&5 +echo "$as_me:29853: checking if you want to exclude NEWS code" >&5 echo $ECHO_N "checking if you want to exclude NEWS code... $ECHO_C" >&6 # Check whether --enable-news or --disable-news was given. @@ -29766,13 +29867,13 @@ else use_news=no fi; -echo "$as_me:29769: result: $use_news" >&5 +echo "$as_me:29870: result: $use_news" >&5 echo "${ECHO_T}$use_news" >&6 test $use_news != "no" && cat >>confdefs.h <<\EOF #define DISABLE_NEWS 1 EOF -echo "$as_me:29775: checking if you want to exclude FTP code" >&5 +echo "$as_me:29876: checking if you want to exclude FTP code" >&5 echo $ECHO_N "checking if you want to exclude FTP code... $ECHO_C" >&6 # Check whether --enable-ftp or --disable-ftp was given. @@ -29789,7 +29890,7 @@ else use_ftp=no fi; -echo "$as_me:29792: result: $use_ftp" >&5 +echo "$as_me:29893: result: $use_ftp" >&5 echo "${ECHO_T}$use_ftp" >&6 test $use_ftp != "no" && cat >>confdefs.h <<\EOF #define DISABLE_FTP 1 @@ -29797,7 +29898,7 @@ EOF # All DirEd functions that were enabled on compilation can be disabled # or modified at run time via DIRED_MENU symbols in lynx.cfg. -echo "$as_me:29800: checking if directory-editor code should be used" >&5 +echo "$as_me:29901: checking if directory-editor code should be used" >&5 echo $ECHO_N "checking if directory-editor code should be used... $ECHO_C" >&6 # Check whether --enable-dired or --disable-dired was given. @@ -29814,7 +29915,7 @@ else use_dired=yes fi; -echo "$as_me:29817: result: $use_dired" >&5 +echo "$as_me:29918: result: $use_dired" >&5 echo "${ECHO_T}$use_dired" >&6 if test ".$use_dired" != ".no" ; then @@ -29823,7 +29924,7 @@ if test ".$use_dired" != ".no" ; then #define DIRED_SUPPORT 1 EOF - echo "$as_me:29826: checking if you wish to allow extracting from archives via DirEd" >&5 + echo "$as_me:29927: checking if you wish to allow extracting from archives via DirEd" >&5 echo $ECHO_N "checking if you wish to allow extracting from archives via DirEd... $ECHO_C" >&6 # Check whether --enable-dired-dearchive or --disable-dired-dearchive was given. @@ -29839,10 +29940,10 @@ EOF else enableval=yes fi; - echo "$as_me:29842: result: $enableval" >&5 + echo "$as_me:29943: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:29845: checking if DirEd mode should override keys" >&5 + echo "$as_me:29946: checking if DirEd mode should override keys" >&5 echo $ECHO_N "checking if DirEd mode should override keys... $ECHO_C" >&6 # Check whether --enable-dired-override or --disable-dired-override was given. @@ -29864,10 +29965,10 @@ else EOF fi; - echo "$as_me:29867: result: $enableval" >&5 + echo "$as_me:29968: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:29870: checking if you wish to allow permissions commands via DirEd" >&5 + echo "$as_me:29971: checking if you wish to allow permissions commands via DirEd" >&5 echo $ECHO_N "checking if you wish to allow permissions commands via DirEd... $ECHO_C" >&6 # Check whether --enable-dired-permit or --disable-dired-permit was given. @@ -29889,10 +29990,10 @@ else EOF fi; - echo "$as_me:29892: result: $enableval" >&5 + echo "$as_me:29993: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:29895: checking if you wish to allow executable-permission commands via DirEd" >&5 + echo "$as_me:29996: checking if you wish to allow executable-permission commands via DirEd" >&5 echo $ECHO_N "checking if you wish to allow executable-permission commands via DirEd... $ECHO_C" >&6 # Check whether --enable-dired-xpermit or --disable-dired-xpermit was given. @@ -29908,10 +30009,10 @@ EOF else enableval=yes fi; - echo "$as_me:29911: result: $enableval" >&5 + echo "$as_me:30012: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:29914: checking if you wish to allow \"tar\" commands from DirEd" >&5 + echo "$as_me:30015: checking if you wish to allow \"tar\" commands from DirEd" >&5 echo $ECHO_N "checking if you wish to allow \"tar\" commands from DirEd... $ECHO_C" >&6 # Check whether --enable-dired-tar or --disable-dired-tar was given. @@ -29933,10 +30034,10 @@ else EOF fi; - echo "$as_me:29936: result: $enableval" >&5 + echo "$as_me:30037: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:29939: checking if you wish to allow \"uudecode\" commands from DirEd" >&5 + echo "$as_me:30040: checking if you wish to allow \"uudecode\" commands from DirEd" >&5 echo $ECHO_N "checking if you wish to allow \"uudecode\" commands from DirEd... $ECHO_C" >&6 # Check whether --enable-dired-uudecode or --disable-dired-uudecode was given. @@ -29958,10 +30059,10 @@ else EOF fi; - echo "$as_me:29961: result: $enableval" >&5 + echo "$as_me:30062: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:29964: checking if you wish to allow \"zip\" and \"unzip\" commands from DirEd" >&5 + echo "$as_me:30065: checking if you wish to allow \"zip\" and \"unzip\" commands from DirEd" >&5 echo $ECHO_N "checking if you wish to allow \"zip\" and \"unzip\" commands from DirEd... $ECHO_C" >&6 # Check whether --enable-dired-zip or --disable-dired-zip was given. @@ -29983,10 +30084,10 @@ else EOF fi; - echo "$as_me:29986: result: $enableval" >&5 + echo "$as_me:30087: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:29989: checking if you wish to allow \"gzip\" and \"gunzip\" commands from DirEd" >&5 + echo "$as_me:30090: checking if you wish to allow \"gzip\" and \"gunzip\" commands from DirEd" >&5 echo $ECHO_N "checking if you wish to allow \"gzip\" and \"gunzip\" commands from DirEd... $ECHO_C" >&6 # Check whether --enable-dired-gzip or --disable-dired-gzip was given. @@ -30008,11 +30109,11 @@ else EOF fi; - echo "$as_me:30011: result: $enableval" >&5 + echo "$as_me:30112: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 fi -echo "$as_me:30015: checking if you want long-directory listings" >&5 +echo "$as_me:30116: checking if you want long-directory listings" >&5 echo $ECHO_N "checking if you want long-directory listings... $ECHO_C" >&6 # Check whether --enable-long-list or --disable-long-list was given. @@ -30034,10 +30135,10 @@ else EOF fi; -echo "$as_me:30037: result: $enableval" >&5 +echo "$as_me:30138: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 -echo "$as_me:30040: checking if parent-directory references are permitted" >&5 +echo "$as_me:30141: checking if parent-directory references are permitted" >&5 echo $ECHO_N "checking if parent-directory references are permitted... $ECHO_C" >&6 # Check whether --enable-parent-dir-refs or --disable-parent-dir-refs was given. @@ -30053,7 +30154,7 @@ EOF else enableval=yes fi; -echo "$as_me:30056: result: $enableval" >&5 +echo "$as_me:30157: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 test -z "$TELNET" && TELNET=telnet @@ -30061,7 +30162,7 @@ for ac_prog in $TELNET telnet do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:30064: checking for $ac_word" >&5 +echo "$as_me:30165: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_TELNET+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -30078,7 +30179,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_TELNET="$ac_dir/$ac_word" - echo "$as_me:30081: found $ac_dir/$ac_word" >&5 + echo "$as_me:30182: found $ac_dir/$ac_word" >&5 break fi done @@ -30089,10 +30190,10 @@ fi TELNET=$ac_cv_path_TELNET if test -n "$TELNET"; then - echo "$as_me:30092: result: $TELNET" >&5 + echo "$as_me:30193: result: $TELNET" >&5 echo "${ECHO_T}$TELNET" >&6 else - echo "$as_me:30095: result: no" >&5 + echo "$as_me:30196: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -30160,7 +30261,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:30163: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:30264: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TELNET_PATH "$cf_path_prog" @@ -30177,7 +30278,7 @@ for ac_prog in $TN3270 tn3270 do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:30180: checking for $ac_word" >&5 +echo "$as_me:30281: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_TN3270+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -30194,7 +30295,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_TN3270="$ac_dir/$ac_word" - echo "$as_me:30197: found $ac_dir/$ac_word" >&5 + echo "$as_me:30298: found $ac_dir/$ac_word" >&5 break fi done @@ -30205,10 +30306,10 @@ fi TN3270=$ac_cv_path_TN3270 if test -n "$TN3270"; then - echo "$as_me:30208: result: $TN3270" >&5 + echo "$as_me:30309: result: $TN3270" >&5 echo "${ECHO_T}$TN3270" >&6 else - echo "$as_me:30211: result: no" >&5 + echo "$as_me:30312: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -30276,7 +30377,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:30279: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:30380: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TN3270_PATH "$cf_path_prog" @@ -30293,7 +30394,7 @@ for ac_prog in $RLOGIN rlogin do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:30296: checking for $ac_word" >&5 +echo "$as_me:30397: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_RLOGIN+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -30310,7 +30411,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_RLOGIN="$ac_dir/$ac_word" - echo "$as_me:30313: found $ac_dir/$ac_word" >&5 + echo "$as_me:30414: found $ac_dir/$ac_word" >&5 break fi done @@ -30321,10 +30422,10 @@ fi RLOGIN=$ac_cv_path_RLOGIN if test -n "$RLOGIN"; then - echo "$as_me:30324: result: $RLOGIN" >&5 + echo "$as_me:30425: result: $RLOGIN" >&5 echo "${ECHO_T}$RLOGIN" >&6 else - echo "$as_me:30327: result: no" >&5 + echo "$as_me:30428: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -30392,7 +30493,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:30395: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:30496: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define RLOGIN_PATH "$cf_path_prog" @@ -30409,7 +30510,7 @@ for ac_prog in $MV mv do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:30412: checking for $ac_word" >&5 +echo "$as_me:30513: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_MV+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -30426,7 +30527,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_MV="$ac_dir/$ac_word" - echo "$as_me:30429: found $ac_dir/$ac_word" >&5 + echo "$as_me:30530: found $ac_dir/$ac_word" >&5 break fi done @@ -30437,10 +30538,10 @@ fi MV=$ac_cv_path_MV if test -n "$MV"; then - echo "$as_me:30440: result: $MV" >&5 + echo "$as_me:30541: result: $MV" >&5 echo "${ECHO_T}$MV" >&6 else - echo "$as_me:30443: result: no" >&5 + echo "$as_me:30544: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -30508,7 +30609,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:30511: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:30612: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define MV_PATH "$cf_path_prog" @@ -30525,7 +30626,7 @@ for ac_prog in $GZIP gzip do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:30528: checking for $ac_word" >&5 +echo "$as_me:30629: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_GZIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -30542,7 +30643,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_GZIP="$ac_dir/$ac_word" - echo "$as_me:30545: found $ac_dir/$ac_word" >&5 + echo "$as_me:30646: found $ac_dir/$ac_word" >&5 break fi done @@ -30553,10 +30654,10 @@ fi GZIP=$ac_cv_path_GZIP if test -n "$GZIP"; then - echo "$as_me:30556: result: $GZIP" >&5 + echo "$as_me:30657: result: $GZIP" >&5 echo "${ECHO_T}$GZIP" >&6 else - echo "$as_me:30559: result: no" >&5 + echo "$as_me:30660: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -30624,7 +30725,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:30627: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:30728: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define GZIP_PATH "$cf_path_prog" @@ -30641,7 +30742,7 @@ for ac_prog in $UNCOMPRESS gunzip do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:30644: checking for $ac_word" >&5 +echo "$as_me:30745: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_UNCOMPRESS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -30658,7 +30759,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_UNCOMPRESS="$ac_dir/$ac_word" - echo "$as_me:30661: found $ac_dir/$ac_word" >&5 + echo "$as_me:30762: found $ac_dir/$ac_word" >&5 break fi done @@ -30669,10 +30770,10 @@ fi UNCOMPRESS=$ac_cv_path_UNCOMPRESS if test -n "$UNCOMPRESS"; then - echo "$as_me:30672: result: $UNCOMPRESS" >&5 + echo "$as_me:30773: result: $UNCOMPRESS" >&5 echo "${ECHO_T}$UNCOMPRESS" >&6 else - echo "$as_me:30675: result: no" >&5 + echo "$as_me:30776: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -30740,7 +30841,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:30743: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:30844: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UNCOMPRESS_PATH "$cf_path_prog" @@ -30757,7 +30858,7 @@ for ac_prog in $UNZIP unzip do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:30760: checking for $ac_word" >&5 +echo "$as_me:30861: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_UNZIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -30774,7 +30875,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_UNZIP="$ac_dir/$ac_word" - echo "$as_me:30777: found $ac_dir/$ac_word" >&5 + echo "$as_me:30878: found $ac_dir/$ac_word" >&5 break fi done @@ -30785,10 +30886,10 @@ fi UNZIP=$ac_cv_path_UNZIP if test -n "$UNZIP"; then - echo "$as_me:30788: result: $UNZIP" >&5 + echo "$as_me:30889: result: $UNZIP" >&5 echo "${ECHO_T}$UNZIP" >&6 else - echo "$as_me:30791: result: no" >&5 + echo "$as_me:30892: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -30856,7 +30957,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:30859: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:30960: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UNZIP_PATH "$cf_path_prog" @@ -30873,7 +30974,7 @@ for ac_prog in $BZIP2 bzip2 do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:30876: checking for $ac_word" >&5 +echo "$as_me:30977: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_BZIP2+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -30890,7 +30991,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_BZIP2="$ac_dir/$ac_word" - echo "$as_me:30893: found $ac_dir/$ac_word" >&5 + echo "$as_me:30994: found $ac_dir/$ac_word" >&5 break fi done @@ -30901,10 +31002,10 @@ fi BZIP2=$ac_cv_path_BZIP2 if test -n "$BZIP2"; then - echo "$as_me:30904: result: $BZIP2" >&5 + echo "$as_me:31005: result: $BZIP2" >&5 echo "${ECHO_T}$BZIP2" >&6 else - echo "$as_me:30907: result: no" >&5 + echo "$as_me:31008: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -30972,7 +31073,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:30975: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:31076: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define BZIP2_PATH "$cf_path_prog" @@ -30989,7 +31090,7 @@ for ac_prog in $TAR tar pax gtar gnutar bsdtar star do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:30992: checking for $ac_word" >&5 +echo "$as_me:31093: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_TAR+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -31006,7 +31107,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_TAR="$ac_dir/$ac_word" - echo "$as_me:31009: found $ac_dir/$ac_word" >&5 + echo "$as_me:31110: found $ac_dir/$ac_word" >&5 break fi done @@ -31017,10 +31118,10 @@ fi TAR=$ac_cv_path_TAR if test -n "$TAR"; then - echo "$as_me:31020: result: $TAR" >&5 + echo "$as_me:31121: result: $TAR" >&5 echo "${ECHO_T}$TAR" >&6 else - echo "$as_me:31023: result: no" >&5 + echo "$as_me:31124: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -31088,7 +31189,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:31091: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:31192: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TAR_PATH "$cf_path_prog" @@ -31145,7 +31246,7 @@ for ac_prog in $COMPRESS compress do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:31148: checking for $ac_word" >&5 +echo "$as_me:31249: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_COMPRESS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -31162,7 +31263,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_COMPRESS="$ac_dir/$ac_word" - echo "$as_me:31165: found $ac_dir/$ac_word" >&5 + echo "$as_me:31266: found $ac_dir/$ac_word" >&5 break fi done @@ -31173,10 +31274,10 @@ fi COMPRESS=$ac_cv_path_COMPRESS if test -n "$COMPRESS"; then - echo "$as_me:31176: result: $COMPRESS" >&5 + echo "$as_me:31277: result: $COMPRESS" >&5 echo "${ECHO_T}$COMPRESS" >&6 else - echo "$as_me:31179: result: no" >&5 + echo "$as_me:31280: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -31244,7 +31345,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:31247: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:31348: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define COMPRESS_PATH "$cf_path_prog" @@ -31261,7 +31362,7 @@ for ac_prog in $RM rm do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:31264: checking for $ac_word" >&5 +echo "$as_me:31365: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_RM+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -31278,7 +31379,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_RM="$ac_dir/$ac_word" - echo "$as_me:31281: found $ac_dir/$ac_word" >&5 + echo "$as_me:31382: found $ac_dir/$ac_word" >&5 break fi done @@ -31289,10 +31390,10 @@ fi RM=$ac_cv_path_RM if test -n "$RM"; then - echo "$as_me:31292: result: $RM" >&5 + echo "$as_me:31393: result: $RM" >&5 echo "${ECHO_T}$RM" >&6 else - echo "$as_me:31295: result: no" >&5 + echo "$as_me:31396: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -31360,7 +31461,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:31363: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:31464: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define RM_PATH "$cf_path_prog" @@ -31377,7 +31478,7 @@ for ac_prog in $UUDECODE uudecode do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:31380: checking for $ac_word" >&5 +echo "$as_me:31481: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_UUDECODE+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -31394,7 +31495,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_UUDECODE="$ac_dir/$ac_word" - echo "$as_me:31397: found $ac_dir/$ac_word" >&5 + echo "$as_me:31498: found $ac_dir/$ac_word" >&5 break fi done @@ -31405,10 +31506,10 @@ fi UUDECODE=$ac_cv_path_UUDECODE if test -n "$UUDECODE"; then - echo "$as_me:31408: result: $UUDECODE" >&5 + echo "$as_me:31509: result: $UUDECODE" >&5 echo "${ECHO_T}$UUDECODE" >&6 else - echo "$as_me:31411: result: no" >&5 + echo "$as_me:31512: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -31476,7 +31577,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:31479: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:31580: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UUDECODE_PATH "$cf_path_prog" @@ -31493,7 +31594,7 @@ for ac_prog in $ZCAT zcat do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:31496: checking for $ac_word" >&5 +echo "$as_me:31597: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_ZCAT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -31510,7 +31611,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_ZCAT="$ac_dir/$ac_word" - echo "$as_me:31513: found $ac_dir/$ac_word" >&5 + echo "$as_me:31614: found $ac_dir/$ac_word" >&5 break fi done @@ -31521,10 +31622,10 @@ fi ZCAT=$ac_cv_path_ZCAT if test -n "$ZCAT"; then - echo "$as_me:31524: result: $ZCAT" >&5 + echo "$as_me:31625: result: $ZCAT" >&5 echo "${ECHO_T}$ZCAT" >&6 else - echo "$as_me:31527: result: no" >&5 + echo "$as_me:31628: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -31592,7 +31693,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:31595: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:31696: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define ZCAT_PATH "$cf_path_prog" @@ -31609,7 +31710,7 @@ for ac_prog in $ZIP zip do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:31612: checking for $ac_word" >&5 +echo "$as_me:31713: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_ZIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -31626,7 +31727,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_ZIP="$ac_dir/$ac_word" - echo "$as_me:31629: found $ac_dir/$ac_word" >&5 + echo "$as_me:31730: found $ac_dir/$ac_word" >&5 break fi done @@ -31637,10 +31738,10 @@ fi ZIP=$ac_cv_path_ZIP if test -n "$ZIP"; then - echo "$as_me:31640: result: $ZIP" >&5 + echo "$as_me:31741: result: $ZIP" >&5 echo "${ECHO_T}$ZIP" >&6 else - echo "$as_me:31643: result: no" >&5 + echo "$as_me:31744: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -31708,7 +31809,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:31711: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:31812: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define ZIP_PATH "$cf_path_prog" @@ -31735,7 +31836,7 @@ for ac_prog in $INSTALL install do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:31738: checking for $ac_word" >&5 +echo "$as_me:31839: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_INSTALL+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -31752,7 +31853,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_INSTALL="$ac_dir/$ac_word" - echo "$as_me:31755: found $ac_dir/$ac_word" >&5 + echo "$as_me:31856: found $ac_dir/$ac_word" >&5 break fi done @@ -31763,10 +31864,10 @@ fi INSTALL=$ac_cv_path_INSTALL if test -n "$INSTALL"; then - echo "$as_me:31766: result: $INSTALL" >&5 + echo "$as_me:31867: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&6 else - echo "$as_me:31769: result: no" >&5 + echo "$as_me:31870: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -31834,7 +31935,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:31837: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:31938: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define INSTALL_PATH "$cf_path_prog" @@ -31860,7 +31961,7 @@ fi if test $cf_cv_screen = pdcurses ; then - echo "$as_me:31863: checking for X" >&5 + echo "$as_me:31964: checking for X" >&5 echo $ECHO_N "checking for X... $ECHO_C" >&6 # Check whether --with-x or --without-x was given. @@ -31957,17 +32058,17 @@ if test "$ac_x_includes" = no; then # Guess where to find include files, by looking for Intrinsic.h. # First, try using that file with no special directory specified. cat >conftest.$ac_ext <<_ACEOF -#line 31960 "configure" +#line 32061 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> _ACEOF -if { (eval echo "$as_me:31964: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:32065: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:31970: \$? = $ac_status" >&5 + echo "$as_me:32071: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -32000,7 +32101,7 @@ if test "$ac_x_libraries" = no; then ac_save_LIBS=$LIBS LIBS="-lXt $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32003 "configure" +#line 32104 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> int @@ -32012,16 +32113,16 @@ XtMalloc (0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32015: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32116: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32018: \$? = $ac_status" >&5 + echo "$as_me:32119: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32021: \"$ac_try\"") >&5 + { (eval echo "$as_me:32122: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32024: \$? = $ac_status" >&5 + echo "$as_me:32125: \$? = $ac_status" >&5 (exit $ac_status); }; }; then LIBS=$ac_save_LIBS # We can link X programs with no special library path. @@ -32059,7 +32160,7 @@ fi fi # $with_x != no if test "$have_x" != yes; then - echo "$as_me:32062: result: $have_x" >&5 + echo "$as_me:32163: result: $have_x" >&5 echo "${ECHO_T}$have_x" >&6 no_x=yes else @@ -32069,7 +32170,7 @@ else # Update the cache value to reflect the command line values. ac_cv_have_x="have_x=yes \ ac_x_includes=$x_includes ac_x_libraries=$x_libraries" - echo "$as_me:32072: result: libraries $x_libraries, headers $x_includes" >&5 + echo "$as_me:32173: result: libraries $x_libraries, headers $x_includes" >&5 echo "${ECHO_T}libraries $x_libraries, headers $x_includes" >&6 fi @@ -32093,11 +32194,11 @@ else # others require no space. Words are not sufficient . . . . case `(uname -sr) 2>/dev/null` in "SunOS 5"*) - echo "$as_me:32096: checking whether -R must be followed by a space" >&5 + echo "$as_me:32197: checking whether -R must be followed by a space" >&5 echo $ECHO_N "checking whether -R must be followed by a space... $ECHO_C" >&6 ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries" cat >conftest.$ac_ext <<_ACEOF -#line 32100 "configure" +#line 32201 "configure" #include "confdefs.h" int @@ -32109,16 +32210,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32112: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32213: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32115: \$? = $ac_status" >&5 + echo "$as_me:32216: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32118: \"$ac_try\"") >&5 + { (eval echo "$as_me:32219: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32121: \$? = $ac_status" >&5 + echo "$as_me:32222: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_R_nospace=yes else @@ -32128,13 +32229,13 @@ ac_R_nospace=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test $ac_R_nospace = yes; then - echo "$as_me:32131: result: no" >&5 + echo "$as_me:32232: result: no" >&5 echo "${ECHO_T}no" >&6 X_LIBS="$X_LIBS -R$x_libraries" else LIBS="$ac_xsave_LIBS -R $x_libraries" cat >conftest.$ac_ext <<_ACEOF -#line 32137 "configure" +#line 32238 "configure" #include "confdefs.h" int @@ -32146,16 +32247,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32149: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32250: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32152: \$? = $ac_status" >&5 + echo "$as_me:32253: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32155: \"$ac_try\"") >&5 + { (eval echo "$as_me:32256: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32158: \$? = $ac_status" >&5 + echo "$as_me:32259: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_R_space=yes else @@ -32165,11 +32266,11 @@ ac_R_space=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test $ac_R_space = yes; then - echo "$as_me:32168: result: yes" >&5 + echo "$as_me:32269: result: yes" >&5 echo "${ECHO_T}yes" >&6 X_LIBS="$X_LIBS -R $x_libraries" else - echo "$as_me:32172: result: neither works" >&5 + echo "$as_me:32273: result: neither works" >&5 echo "${ECHO_T}neither works" >&6 fi fi @@ -32189,7 +32290,7 @@ echo "${ECHO_T}neither works" >&6 # the Alpha needs dnet_stub (dnet does not exist). ac_xsave_LIBS="$LIBS"; LIBS="$LIBS $X_LIBS -lX11" cat >conftest.$ac_ext <<_ACEOF -#line 32192 "configure" +#line 32293 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -32208,22 +32309,22 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32211: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32312: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32214: \$? = $ac_status" >&5 + echo "$as_me:32315: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32217: \"$ac_try\"") >&5 + { (eval echo "$as_me:32318: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32220: \$? = $ac_status" >&5 + echo "$as_me:32321: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:32226: checking for dnet_ntoa in -ldnet" >&5 +echo "$as_me:32327: checking for dnet_ntoa in -ldnet" >&5 echo $ECHO_N "checking for dnet_ntoa in -ldnet... $ECHO_C" >&6 if test "${ac_cv_lib_dnet_dnet_ntoa+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -32231,7 +32332,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32234 "configure" +#line 32335 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -32250,16 +32351,16 @@ dnet_ntoa (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32253: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32354: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32256: \$? = $ac_status" >&5 + echo "$as_me:32357: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32259: \"$ac_try\"") >&5 + { (eval echo "$as_me:32360: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32262: \$? = $ac_status" >&5 + echo "$as_me:32363: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dnet_dnet_ntoa=yes else @@ -32270,14 +32371,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:32273: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 +echo "$as_me:32374: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 echo "${ECHO_T}$ac_cv_lib_dnet_dnet_ntoa" >&6 if test $ac_cv_lib_dnet_dnet_ntoa = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet" fi if test $ac_cv_lib_dnet_dnet_ntoa = no; then - echo "$as_me:32280: checking for dnet_ntoa in -ldnet_stub" >&5 + echo "$as_me:32381: checking for dnet_ntoa in -ldnet_stub" >&5 echo $ECHO_N "checking for dnet_ntoa in -ldnet_stub... $ECHO_C" >&6 if test "${ac_cv_lib_dnet_stub_dnet_ntoa+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -32285,7 +32386,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet_stub $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32288 "configure" +#line 32389 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -32304,16 +32405,16 @@ dnet_ntoa (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32307: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32408: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32310: \$? = $ac_status" >&5 + echo "$as_me:32411: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32313: \"$ac_try\"") >&5 + { (eval echo "$as_me:32414: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32316: \$? = $ac_status" >&5 + echo "$as_me:32417: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dnet_stub_dnet_ntoa=yes else @@ -32324,7 +32425,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:32327: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 +echo "$as_me:32428: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 echo "${ECHO_T}$ac_cv_lib_dnet_stub_dnet_ntoa" >&6 if test $ac_cv_lib_dnet_stub_dnet_ntoa = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub" @@ -32343,13 +32444,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext # on Irix 5.2, according to T.E. Dickey. # The functions gethostbyname, getservbyname, and inet_addr are # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking. - echo "$as_me:32346: checking for gethostbyname" >&5 + echo "$as_me:32447: checking for gethostbyname" >&5 echo $ECHO_N "checking for gethostbyname... $ECHO_C" >&6 if test "${ac_cv_func_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 32352 "configure" +#line 32453 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gethostbyname (); below. */ @@ -32380,16 +32481,16 @@ f = gethostbyname; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32383: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32484: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32386: \$? = $ac_status" >&5 + echo "$as_me:32487: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32389: \"$ac_try\"") >&5 + { (eval echo "$as_me:32490: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32392: \$? = $ac_status" >&5 + echo "$as_me:32493: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_gethostbyname=yes else @@ -32399,11 +32500,11 @@ ac_cv_func_gethostbyname=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:32402: result: $ac_cv_func_gethostbyname" >&5 +echo "$as_me:32503: result: $ac_cv_func_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_func_gethostbyname" >&6 if test $ac_cv_func_gethostbyname = no; then - echo "$as_me:32406: checking for gethostbyname in -lnsl" >&5 + echo "$as_me:32507: checking for gethostbyname in -lnsl" >&5 echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6 if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -32411,7 +32512,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32414 "configure" +#line 32515 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -32430,16 +32531,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32433: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32534: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32436: \$? = $ac_status" >&5 + echo "$as_me:32537: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32439: \"$ac_try\"") >&5 + { (eval echo "$as_me:32540: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32442: \$? = $ac_status" >&5 + echo "$as_me:32543: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_gethostbyname=yes else @@ -32450,14 +32551,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:32453: result: $ac_cv_lib_nsl_gethostbyname" >&5 +echo "$as_me:32554: result: $ac_cv_lib_nsl_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6 if test $ac_cv_lib_nsl_gethostbyname = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl" fi if test $ac_cv_lib_nsl_gethostbyname = no; then - echo "$as_me:32460: checking for gethostbyname in -lbsd" >&5 + echo "$as_me:32561: checking for gethostbyname in -lbsd" >&5 echo $ECHO_N "checking for gethostbyname in -lbsd... $ECHO_C" >&6 if test "${ac_cv_lib_bsd_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -32465,7 +32566,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32468 "configure" +#line 32569 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -32484,16 +32585,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32487: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32588: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32490: \$? = $ac_status" >&5 + echo "$as_me:32591: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32493: \"$ac_try\"") >&5 + { (eval echo "$as_me:32594: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32496: \$? = $ac_status" >&5 + echo "$as_me:32597: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_bsd_gethostbyname=yes else @@ -32504,7 +32605,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:32507: result: $ac_cv_lib_bsd_gethostbyname" >&5 +echo "$as_me:32608: result: $ac_cv_lib_bsd_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_lib_bsd_gethostbyname" >&6 if test $ac_cv_lib_bsd_gethostbyname = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd" @@ -32520,13 +32621,13 @@ fi # variants that don't use the nameserver (or something). -lsocket # must be given before -lnsl if both are needed. We assume that # if connect needs -lnsl, so does gethostbyname. - echo "$as_me:32523: checking for connect" >&5 + echo "$as_me:32624: checking for connect" >&5 echo $ECHO_N "checking for connect... $ECHO_C" >&6 if test "${ac_cv_func_connect+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 32529 "configure" +#line 32630 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char connect (); below. */ @@ -32557,16 +32658,16 @@ f = connect; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32560: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32661: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32563: \$? = $ac_status" >&5 + echo "$as_me:32664: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32566: \"$ac_try\"") >&5 + { (eval echo "$as_me:32667: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32569: \$? = $ac_status" >&5 + echo "$as_me:32670: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_connect=yes else @@ -32576,11 +32677,11 @@ ac_cv_func_connect=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:32579: result: $ac_cv_func_connect" >&5 +echo "$as_me:32680: result: $ac_cv_func_connect" >&5 echo "${ECHO_T}$ac_cv_func_connect" >&6 if test $ac_cv_func_connect = no; then - echo "$as_me:32583: checking for connect in -lsocket" >&5 + echo "$as_me:32684: checking for connect in -lsocket" >&5 echo $ECHO_N "checking for connect in -lsocket... $ECHO_C" >&6 if test "${ac_cv_lib_socket_connect+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -32588,7 +32689,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32591 "configure" +#line 32692 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -32607,16 +32708,16 @@ connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32610: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32711: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32613: \$? = $ac_status" >&5 + echo "$as_me:32714: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32616: \"$ac_try\"") >&5 + { (eval echo "$as_me:32717: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32619: \$? = $ac_status" >&5 + echo "$as_me:32720: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_connect=yes else @@ -32627,7 +32728,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:32630: result: $ac_cv_lib_socket_connect" >&5 +echo "$as_me:32731: result: $ac_cv_lib_socket_connect" >&5 echo "${ECHO_T}$ac_cv_lib_socket_connect" >&6 if test $ac_cv_lib_socket_connect = yes; then X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS" @@ -32636,13 +32737,13 @@ fi fi # Guillermo Gomez says -lposix is necessary on A/UX. - echo "$as_me:32639: checking for remove" >&5 + echo "$as_me:32740: checking for remove" >&5 echo $ECHO_N "checking for remove... $ECHO_C" >&6 if test "${ac_cv_func_remove+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 32645 "configure" +#line 32746 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char remove (); below. */ @@ -32673,16 +32774,16 @@ f = remove; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32676: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32777: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32679: \$? = $ac_status" >&5 + echo "$as_me:32780: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32682: \"$ac_try\"") >&5 + { (eval echo "$as_me:32783: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32685: \$? = $ac_status" >&5 + echo "$as_me:32786: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_remove=yes else @@ -32692,11 +32793,11 @@ ac_cv_func_remove=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:32695: result: $ac_cv_func_remove" >&5 +echo "$as_me:32796: result: $ac_cv_func_remove" >&5 echo "${ECHO_T}$ac_cv_func_remove" >&6 if test $ac_cv_func_remove = no; then - echo "$as_me:32699: checking for remove in -lposix" >&5 + echo "$as_me:32800: checking for remove in -lposix" >&5 echo $ECHO_N "checking for remove in -lposix... $ECHO_C" >&6 if test "${ac_cv_lib_posix_remove+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -32704,7 +32805,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lposix $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32707 "configure" +#line 32808 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -32723,16 +32824,16 @@ remove (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32726: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32827: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32729: \$? = $ac_status" >&5 + echo "$as_me:32830: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32732: \"$ac_try\"") >&5 + { (eval echo "$as_me:32833: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32735: \$? = $ac_status" >&5 + echo "$as_me:32836: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_posix_remove=yes else @@ -32743,7 +32844,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:32746: result: $ac_cv_lib_posix_remove" >&5 +echo "$as_me:32847: result: $ac_cv_lib_posix_remove" >&5 echo "${ECHO_T}$ac_cv_lib_posix_remove" >&6 if test $ac_cv_lib_posix_remove = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix" @@ -32752,13 +32853,13 @@ fi fi # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. - echo "$as_me:32755: checking for shmat" >&5 + echo "$as_me:32856: checking for shmat" >&5 echo $ECHO_N "checking for shmat... $ECHO_C" >&6 if test "${ac_cv_func_shmat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 32761 "configure" +#line 32862 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shmat (); below. */ @@ -32789,16 +32890,16 @@ f = shmat; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32792: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32893: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32795: \$? = $ac_status" >&5 + echo "$as_me:32896: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32798: \"$ac_try\"") >&5 + { (eval echo "$as_me:32899: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32801: \$? = $ac_status" >&5 + echo "$as_me:32902: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_shmat=yes else @@ -32808,11 +32909,11 @@ ac_cv_func_shmat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:32811: result: $ac_cv_func_shmat" >&5 +echo "$as_me:32912: result: $ac_cv_func_shmat" >&5 echo "${ECHO_T}$ac_cv_func_shmat" >&6 if test $ac_cv_func_shmat = no; then - echo "$as_me:32815: checking for shmat in -lipc" >&5 + echo "$as_me:32916: checking for shmat in -lipc" >&5 echo $ECHO_N "checking for shmat in -lipc... $ECHO_C" >&6 if test "${ac_cv_lib_ipc_shmat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -32820,7 +32921,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lipc $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32823 "configure" +#line 32924 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -32839,16 +32940,16 @@ shmat (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32842: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32943: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32845: \$? = $ac_status" >&5 + echo "$as_me:32946: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32848: \"$ac_try\"") >&5 + { (eval echo "$as_me:32949: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32851: \$? = $ac_status" >&5 + echo "$as_me:32952: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_ipc_shmat=yes else @@ -32859,7 +32960,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:32862: result: $ac_cv_lib_ipc_shmat" >&5 +echo "$as_me:32963: result: $ac_cv_lib_ipc_shmat" >&5 echo "${ECHO_T}$ac_cv_lib_ipc_shmat" >&6 if test $ac_cv_lib_ipc_shmat = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc" @@ -32877,7 +32978,7 @@ fi # These have to be linked with before -lX11, unlike the other # libraries we check for below, so use a different variable. # John Interrante, Karl Berry - echo "$as_me:32880: checking for IceConnectionNumber in -lICE" >&5 + echo "$as_me:32981: checking for IceConnectionNumber in -lICE" >&5 echo $ECHO_N "checking for IceConnectionNumber in -lICE... $ECHO_C" >&6 if test "${ac_cv_lib_ICE_IceConnectionNumber+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -32885,7 +32986,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lICE $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32888 "configure" +#line 32989 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -32904,16 +33005,16 @@ IceConnectionNumber (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32907: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33008: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32910: \$? = $ac_status" >&5 + echo "$as_me:33011: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32913: \"$ac_try\"") >&5 + { (eval echo "$as_me:33014: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32916: \$? = $ac_status" >&5 + echo "$as_me:33017: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_ICE_IceConnectionNumber=yes else @@ -32924,7 +33025,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:32927: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 +echo "$as_me:33028: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 echo "${ECHO_T}$ac_cv_lib_ICE_IceConnectionNumber" >&6 if test $ac_cv_lib_ICE_IceConnectionNumber = yes; then X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE" @@ -32942,7 +33043,7 @@ LDFLAGS="$X_LIBS $LDFLAGS" test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me-configure}:32945: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me-configure}:33046: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -33003,7 +33104,7 @@ done if test -n "$cf_new_cflags" ; then test -n "$verbose" && echo " add to \$CFLAGS $cf_new_cflags" 1>&6 -echo "${as_me-configure}:33006: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me-configure}:33107: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 CFLAGS="$CFLAGS $cf_new_cflags" fi @@ -33011,7 +33112,7 @@ fi if test -n "$cf_new_cppflags" ; then test -n "$verbose" && echo " add to \$CPPFLAGS $cf_new_cppflags" 1>&6 -echo "${as_me-configure}:33014: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me-configure}:33115: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 CPPFLAGS="$cf_new_cppflags $CPPFLAGS" fi @@ -33019,14 +33120,14 @@ fi if test -n "$cf_new_extra_cppflags" ; then test -n "$verbose" && echo " add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6 -echo "${as_me-configure}:33022: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me-configure}:33123: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS" fi if test "$cf_check_cflags" != "$CFLAGS" ; then cat >conftest.$ac_ext <<_ACEOF -#line 33029 "configure" +#line 33130 "configure" #include "confdefs.h" #include <stdio.h> int @@ -33038,16 +33139,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33041: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33142: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33044: \$? = $ac_status" >&5 + echo "$as_me:33145: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33047: \"$ac_try\"") >&5 + { (eval echo "$as_me:33148: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33050: \$? = $ac_status" >&5 + echo "$as_me:33151: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -33055,12 +33156,12 @@ else cat conftest.$ac_ext >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me-configure}:33058: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me-configure}:33159: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 if test "$cf_check_cppflags" != "$CPPFLAGS" ; then test -n "$verbose" && echo " but keeping change to \$CPPFLAGS" 1>&6 -echo "${as_me-configure}:33063: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me-configure}:33164: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_flags" @@ -33068,13 +33169,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:33071: checking for XOpenDisplay" >&5 +echo "$as_me:33172: checking for XOpenDisplay" >&5 echo $ECHO_N "checking for XOpenDisplay... $ECHO_C" >&6 if test "${ac_cv_func_XOpenDisplay+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 33077 "configure" +#line 33178 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char XOpenDisplay (); below. */ @@ -33105,16 +33206,16 @@ f = XOpenDisplay; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33108: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33209: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33111: \$? = $ac_status" >&5 + echo "$as_me:33212: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33114: \"$ac_try\"") >&5 + { (eval echo "$as_me:33215: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33117: \$? = $ac_status" >&5 + echo "$as_me:33218: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_XOpenDisplay=yes else @@ -33124,13 +33225,13 @@ ac_cv_func_XOpenDisplay=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:33127: result: $ac_cv_func_XOpenDisplay" >&5 +echo "$as_me:33228: result: $ac_cv_func_XOpenDisplay" >&5 echo "${ECHO_T}$ac_cv_func_XOpenDisplay" >&6 if test $ac_cv_func_XOpenDisplay = yes; then : else -echo "$as_me:33133: checking for XOpenDisplay in -lX11" >&5 +echo "$as_me:33234: checking for XOpenDisplay in -lX11" >&5 echo $ECHO_N "checking for XOpenDisplay in -lX11... $ECHO_C" >&6 if test "${ac_cv_lib_X11_XOpenDisplay+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -33138,7 +33239,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 33141 "configure" +#line 33242 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -33157,16 +33258,16 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33160: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33261: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33163: \$? = $ac_status" >&5 + echo "$as_me:33264: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33166: \"$ac_try\"") >&5 + { (eval echo "$as_me:33267: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33169: \$? = $ac_status" >&5 + echo "$as_me:33270: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_X11_XOpenDisplay=yes else @@ -33177,7 +33278,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:33180: result: $ac_cv_lib_X11_XOpenDisplay" >&5 +echo "$as_me:33281: result: $ac_cv_lib_X11_XOpenDisplay" >&5 echo "${ECHO_T}$ac_cv_lib_X11_XOpenDisplay" >&6 if test $ac_cv_lib_X11_XOpenDisplay = yes; then LIBS="-lX11 $LIBS" @@ -33185,13 +33286,13 @@ fi fi -echo "$as_me:33188: checking for XtAppInitialize" >&5 +echo "$as_me:33289: checking for XtAppInitialize" >&5 echo $ECHO_N "checking for XtAppInitialize... $ECHO_C" >&6 if test "${ac_cv_func_XtAppInitialize+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 33194 "configure" +#line 33295 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char XtAppInitialize (); below. */ @@ -33222,16 +33323,16 @@ f = XtAppInitialize; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33225: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33326: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33228: \$? = $ac_status" >&5 + echo "$as_me:33329: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33231: \"$ac_try\"") >&5 + { (eval echo "$as_me:33332: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33234: \$? = $ac_status" >&5 + echo "$as_me:33335: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_XtAppInitialize=yes else @@ -33241,13 +33342,13 @@ ac_cv_func_XtAppInitialize=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:33244: result: $ac_cv_func_XtAppInitialize" >&5 +echo "$as_me:33345: result: $ac_cv_func_XtAppInitialize" >&5 echo "${ECHO_T}$ac_cv_func_XtAppInitialize" >&6 if test $ac_cv_func_XtAppInitialize = yes; then : else -echo "$as_me:33250: checking for XtAppInitialize in -lXt" >&5 +echo "$as_me:33351: checking for XtAppInitialize in -lXt" >&5 echo $ECHO_N "checking for XtAppInitialize in -lXt... $ECHO_C" >&6 if test "${ac_cv_lib_Xt_XtAppInitialize+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -33255,7 +33356,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lXt $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 33258 "configure" +#line 33359 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -33274,16 +33375,16 @@ XtAppInitialize (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33277: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33378: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33280: \$? = $ac_status" >&5 + echo "$as_me:33381: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33283: \"$ac_try\"") >&5 + { (eval echo "$as_me:33384: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33286: \$? = $ac_status" >&5 + echo "$as_me:33387: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Xt_XtAppInitialize=yes else @@ -33294,7 +33395,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:33297: result: $ac_cv_lib_Xt_XtAppInitialize" >&5 +echo "$as_me:33398: result: $ac_cv_lib_Xt_XtAppInitialize" >&5 echo "${ECHO_T}$ac_cv_lib_Xt_XtAppInitialize" >&6 if test $ac_cv_lib_Xt_XtAppInitialize = yes; then cat >>confdefs.h <<\EOF @@ -33308,7 +33409,7 @@ fi fi if test $cf_have_X_LIBS = no ; then - { echo "$as_me:33311: WARNING: Unable to successfully link X Toolkit library (-lXt) with + { echo "$as_me:33412: WARNING: Unable to successfully link X Toolkit library (-lXt) with test program. You will have to check and add the proper libraries by hand to makefile." >&5 echo "$as_me: WARNING: Unable to successfully link X Toolkit library (-lXt) with @@ -33318,7 +33419,7 @@ fi cf_x_athena=${cf_x_athena-Xaw} -echo "$as_me:33321: checking if you want to link with Xaw 3d library" >&5 +echo "$as_me:33422: checking if you want to link with Xaw 3d library" >&5 echo $ECHO_N "checking if you want to link with Xaw 3d library... $ECHO_C" >&6 withval= @@ -33329,14 +33430,14 @@ if test "${with_Xaw3d+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=Xaw3d - echo "$as_me:33332: result: yes" >&5 + echo "$as_me:33433: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:33335: result: no" >&5 + echo "$as_me:33436: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:33339: checking if you want to link with neXT Athena library" >&5 +echo "$as_me:33440: checking if you want to link with neXT Athena library" >&5 echo $ECHO_N "checking if you want to link with neXT Athena library... $ECHO_C" >&6 withval= @@ -33347,14 +33448,14 @@ if test "${with_neXtaw+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=neXtaw - echo "$as_me:33350: result: yes" >&5 + echo "$as_me:33451: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:33353: result: no" >&5 + echo "$as_me:33454: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:33357: checking if you want to link with Athena-Plus library" >&5 +echo "$as_me:33458: checking if you want to link with Athena-Plus library" >&5 echo $ECHO_N "checking if you want to link with Athena-Plus library... $ECHO_C" >&6 withval= @@ -33365,14 +33466,14 @@ if test "${with_XawPlus+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=XawPlus - echo "$as_me:33368: result: yes" >&5 + echo "$as_me:33469: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:33371: result: no" >&5 + echo "$as_me:33472: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:33375: checking for XextCreateExtension in -lXext" >&5 +echo "$as_me:33476: checking for XextCreateExtension in -lXext" >&5 echo $ECHO_N "checking for XextCreateExtension in -lXext... $ECHO_C" >&6 if test "${ac_cv_lib_Xext_XextCreateExtension+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -33380,7 +33481,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lXext $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 33383 "configure" +#line 33484 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -33399,16 +33500,16 @@ XextCreateExtension (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33402: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33503: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33405: \$? = $ac_status" >&5 + echo "$as_me:33506: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33408: \"$ac_try\"") >&5 + { (eval echo "$as_me:33509: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33411: \$? = $ac_status" >&5 + echo "$as_me:33512: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Xext_XextCreateExtension=yes else @@ -33419,7 +33520,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:33422: result: $ac_cv_lib_Xext_XextCreateExtension" >&5 +echo "$as_me:33523: result: $ac_cv_lib_Xext_XextCreateExtension" >&5 echo "${ECHO_T}$ac_cv_lib_Xext_XextCreateExtension" >&6 if test $ac_cv_lib_Xext_XextCreateExtension = yes; then LIBS="-lXext $LIBS" @@ -33441,14 +33542,14 @@ do cf_test=X11/$cf_x_athena_root/SimpleMenu.h if test $cf_path != default ; then CPPFLAGS="-I$cf_path/include $cf_save" - echo "$as_me:33444: checking for $cf_test in $cf_path" >&5 + echo "$as_me:33545: checking for $cf_test in $cf_path" >&5 echo $ECHO_N "checking for $cf_test in $cf_path... $ECHO_C" >&6 else - echo "$as_me:33447: checking for $cf_test" >&5 + echo "$as_me:33548: checking for $cf_test" >&5 echo $ECHO_N "checking for $cf_test... $ECHO_C" >&6 fi cat >conftest.$ac_ext <<_ACEOF -#line 33451 "configure" +#line 33552 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> @@ -33462,16 +33563,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33465: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33566: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33468: \$? = $ac_status" >&5 + echo "$as_me:33569: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33471: \"$ac_try\"") >&5 + { (eval echo "$as_me:33572: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33474: \$? = $ac_status" >&5 + echo "$as_me:33575: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -33480,7 +33581,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:33483: result: $cf_result" >&5 + echo "$as_me:33584: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then cf_x_athena_include=$cf_path @@ -33492,7 +33593,7 @@ echo "${ECHO_T}$cf_result" >&6 done if test -z "$cf_x_athena_include" ; then - { echo "$as_me:33495: WARNING: Unable to successfully find Athena header files with test program" >&5 + { echo "$as_me:33596: WARNING: Unable to successfully find Athena header files with test program" >&5 echo "$as_me: WARNING: Unable to successfully find Athena header files with test program" >&2;} elif test "$cf_x_athena_include" != default ; then CPPFLAGS="$CPPFLAGS -I$cf_x_athena_include" @@ -33517,15 +33618,15 @@ do cf_test=XawSimpleMenuAddGlobalActions if test $cf_path != default ; then LIBS="-L$cf_path/lib $cf_lib $LIBS" - echo "$as_me:33520: checking for $cf_lib in $cf_path" >&5 + echo "$as_me:33621: checking for $cf_lib in $cf_path" >&5 echo $ECHO_N "checking for $cf_lib in $cf_path... $ECHO_C" >&6 else LIBS="$cf_lib $LIBS" - echo "$as_me:33524: checking for $cf_test in $cf_lib" >&5 + echo "$as_me:33625: checking for $cf_test in $cf_lib" >&5 echo $ECHO_N "checking for $cf_test in $cf_lib... $ECHO_C" >&6 fi cat >conftest.$ac_ext <<_ACEOF -#line 33528 "configure" +#line 33629 "configure" #include "confdefs.h" int @@ -33537,16 +33638,16 @@ $cf_test() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33540: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33641: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33543: \$? = $ac_status" >&5 + echo "$as_me:33644: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33546: \"$ac_try\"") >&5 + { (eval echo "$as_me:33647: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33549: \$? = $ac_status" >&5 + echo "$as_me:33650: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -33555,7 +33656,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:33558: result: $cf_result" >&5 + echo "$as_me:33659: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then cf_x_athena_lib="$cf_lib" @@ -33567,7 +33668,7 @@ echo "${ECHO_T}$cf_result" >&6 done if test -z "$cf_x_athena_lib" ; then - { { echo "$as_me:33570: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&5 + { { echo "$as_me:33671: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&5 echo "$as_me: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&2;} { (exit 1); exit 1; }; } fi @@ -33582,7 +33683,7 @@ for ac_prog in xcurses-config do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:33585: checking for $ac_word" >&5 +echo "$as_me:33686: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_XCURSES_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -33599,7 +33700,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_XCURSES_CONFIG="$ac_dir/$ac_word" - echo "$as_me:33602: found $ac_dir/$ac_word" >&5 + echo "$as_me:33703: found $ac_dir/$ac_word" >&5 break fi done @@ -33610,10 +33711,10 @@ fi XCURSES_CONFIG=$ac_cv_path_XCURSES_CONFIG if test -n "$XCURSES_CONFIG"; then - echo "$as_me:33613: result: $XCURSES_CONFIG" >&5 + echo "$as_me:33714: result: $XCURSES_CONFIG" >&5 echo "${ECHO_T}$XCURSES_CONFIG" >&6 else - echo "$as_me:33616: result: no" >&5 + echo "$as_me:33717: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -33634,7 +33735,7 @@ LDFLAGS="$LDFLAGS $X_LIBS" test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me-configure}:33637: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me-configure}:33738: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -33695,7 +33796,7 @@ done if test -n "$cf_new_cflags" ; then test -n "$verbose" && echo " add to \$CFLAGS $cf_new_cflags" 1>&6 -echo "${as_me-configure}:33698: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me-configure}:33799: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 CFLAGS="$CFLAGS $cf_new_cflags" fi @@ -33703,7 +33804,7 @@ fi if test -n "$cf_new_cppflags" ; then test -n "$verbose" && echo " add to \$CPPFLAGS $cf_new_cppflags" 1>&6 -echo "${as_me-configure}:33706: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me-configure}:33807: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 CPPFLAGS="$cf_new_cppflags $CPPFLAGS" fi @@ -33711,14 +33812,14 @@ fi if test -n "$cf_new_extra_cppflags" ; then test -n "$verbose" && echo " add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6 -echo "${as_me-configure}:33714: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me-configure}:33815: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS" fi if test "$cf_check_cflags" != "$CFLAGS" ; then cat >conftest.$ac_ext <<_ACEOF -#line 33721 "configure" +#line 33822 "configure" #include "confdefs.h" #include <stdio.h> int @@ -33730,16 +33831,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33733: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33834: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33736: \$? = $ac_status" >&5 + echo "$as_me:33837: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33739: \"$ac_try\"") >&5 + { (eval echo "$as_me:33840: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33742: \$? = $ac_status" >&5 + echo "$as_me:33843: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -33747,12 +33848,12 @@ else cat conftest.$ac_ext >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me-configure}:33750: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me-configure}:33851: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 if test "$cf_check_cppflags" != "$CPPFLAGS" ; then test -n "$verbose" && echo " but keeping change to \$CPPFLAGS" 1>&6 -echo "${as_me-configure}:33755: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me-configure}:33856: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_flags" @@ -33760,7 +33861,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:33763: checking for XOpenDisplay in -lX11" >&5 +echo "$as_me:33864: checking for XOpenDisplay in -lX11" >&5 echo $ECHO_N "checking for XOpenDisplay in -lX11... $ECHO_C" >&6 if test "${ac_cv_lib_X11_XOpenDisplay+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -33768,7 +33869,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 33771 "configure" +#line 33872 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -33787,16 +33888,16 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33790: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33891: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33793: \$? = $ac_status" >&5 + echo "$as_me:33894: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33796: \"$ac_try\"") >&5 + { (eval echo "$as_me:33897: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33799: \$? = $ac_status" >&5 + echo "$as_me:33900: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_X11_XOpenDisplay=yes else @@ -33807,13 +33908,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:33810: result: $ac_cv_lib_X11_XOpenDisplay" >&5 +echo "$as_me:33911: result: $ac_cv_lib_X11_XOpenDisplay" >&5 echo "${ECHO_T}$ac_cv_lib_X11_XOpenDisplay" >&6 if test $ac_cv_lib_X11_XOpenDisplay = yes; then LIBS="-lX11 $LIBS" fi -echo "$as_me:33816: checking for XCurses library" >&5 +echo "$as_me:33917: checking for XCurses library" >&5 echo $ECHO_N "checking for XCurses library... $ECHO_C" >&6 if test "${cf_cv_lib_XCurses+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -33821,7 +33922,7 @@ else LIBS="-lXCurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 33824 "configure" +#line 33925 "configure" #include "confdefs.h" #include <xcurses.h> @@ -33836,16 +33937,16 @@ XCursesExit(); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33839: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33940: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33842: \$? = $ac_status" >&5 + echo "$as_me:33943: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33845: \"$ac_try\"") >&5 + { (eval echo "$as_me:33946: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33848: \$? = $ac_status" >&5 + echo "$as_me:33949: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_lib_XCurses=yes else @@ -33856,7 +33957,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:33859: result: $cf_cv_lib_XCurses" >&5 +echo "$as_me:33960: result: $cf_cv_lib_XCurses" >&5 echo "${ECHO_T}$cf_cv_lib_XCurses" >&6 fi @@ -33875,14 +33976,14 @@ EOF EOF else - { { echo "$as_me:33878: error: Cannot link with XCurses" >&5 + { { echo "$as_me:33979: error: Cannot link with XCurses" >&5 echo "$as_me: error: Cannot link with XCurses" >&2;} { (exit 1); exit 1; }; } fi else -echo "$as_me:33885: checking if we can include termio.h with curses" >&5 +echo "$as_me:33986: checking if we can include termio.h with curses" >&5 echo $ECHO_N "checking if we can include termio.h with curses... $ECHO_C" >&6 if test "${cf_cv_termio_and_curses+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -33892,7 +33993,7 @@ else CPPFLAGS="$CPPFLAGS -DHAVE_CONFIG_H -I. -I${srcdir-.} -I${srcdir-.}/src -I${srcdir-.}/WWW/Library/Implementation" touch lynx_cfg.h cat >conftest.$ac_ext <<_ACEOF -#line 33895 "configure" +#line 33996 "configure" #include "confdefs.h" #include <LYCurses.h> @@ -33906,16 +34007,16 @@ putchar(0x0a) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33909: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34010: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33912: \$? = $ac_status" >&5 + echo "$as_me:34013: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33915: \"$ac_try\"") >&5 + { (eval echo "$as_me:34016: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33918: \$? = $ac_status" >&5 + echo "$as_me:34019: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termio_and_curses=yes else @@ -33928,7 +34029,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext rm -f lynx_cfg.h fi -echo "$as_me:33931: result: $cf_cv_termio_and_curses" >&5 +echo "$as_me:34032: result: $cf_cv_termio_and_curses" >&5 echo "${ECHO_T}$cf_cv_termio_and_curses" >&6 test $cf_cv_termio_and_curses = yes && cat >>confdefs.h <<\EOF @@ -33943,23 +34044,23 @@ if test $cf_cv_screen != slang ; then for ac_header in $cf_cv_screen/term.h term.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:33946: checking for $ac_header" >&5 +echo "$as_me:34047: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 33952 "configure" +#line 34053 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:33956: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:34057: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:33962: \$? = $ac_status" >&5 + echo "$as_me:34063: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -33978,7 +34079,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:33981: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:34082: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -33988,7 +34089,7 @@ EOF fi done -echo "$as_me:33991: checking if curses supports alternate-character set" >&5 +echo "$as_me:34092: checking if curses supports alternate-character set" >&5 echo $ECHO_N "checking if curses supports alternate-character set... $ECHO_C" >&6 if test "${cf_cv_alt_char_set+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -33997,7 +34098,7 @@ else for mapname in acs_map _acs_map do cat >conftest.$ac_ext <<_ACEOF -#line 34000 "configure" +#line 34101 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -34011,16 +34112,16 @@ chtype x = $mapname['l']; $mapname['m'] = 0 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34014: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34115: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34017: \$? = $ac_status" >&5 + echo "$as_me:34118: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34020: \"$ac_try\"") >&5 + { (eval echo "$as_me:34121: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34023: \$? = $ac_status" >&5 + echo "$as_me:34124: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_alt_char_set=$mapname break @@ -34034,20 +34135,20 @@ done fi -echo "$as_me:34037: result: $cf_cv_alt_char_set" >&5 +echo "$as_me:34138: result: $cf_cv_alt_char_set" >&5 echo "${ECHO_T}$cf_cv_alt_char_set" >&6 test $cf_cv_alt_char_set != no && cat >>confdefs.h <<EOF #define ALT_CHAR_SET $cf_cv_alt_char_set EOF -echo "$as_me:34043: checking if curses supports fancy attributes" >&5 +echo "$as_me:34144: checking if curses supports fancy attributes" >&5 echo $ECHO_N "checking if curses supports fancy attributes... $ECHO_C" >&6 if test "${cf_cv_fancy_curses+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 34050 "configure" +#line 34151 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -34065,16 +34166,16 @@ attrset(A_UNDERLINE|A_BOLD|A_REVERSE); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34068: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34169: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34071: \$? = $ac_status" >&5 + echo "$as_me:34172: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34074: \"$ac_try\"") >&5 + { (eval echo "$as_me:34175: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34077: \$? = $ac_status" >&5 + echo "$as_me:34178: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fancy_curses=yes else @@ -34086,13 +34187,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:34089: result: $cf_cv_fancy_curses" >&5 +echo "$as_me:34190: result: $cf_cv_fancy_curses" >&5 echo "${ECHO_T}$cf_cv_fancy_curses" >&6 test $cf_cv_fancy_curses = yes && cat >>confdefs.h <<\EOF #define FANCY_CURSES 1 EOF -echo "$as_me:34095: checking for function curses_version" >&5 +echo "$as_me:34196: checking for function curses_version" >&5 echo $ECHO_N "checking for function curses_version... $ECHO_C" >&6 if test "${cf_cv_func_curses_version+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -34102,7 +34203,7 @@ if test "$cross_compiling" = yes; then cf_cv_func_curses_version=unknown else cat >conftest.$ac_ext <<_ACEOF -#line 34105 "configure" +#line 34206 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -34115,15 +34216,15 @@ int main() _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:34118: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34219: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34121: \$? = $ac_status" >&5 + echo "$as_me:34222: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:34123: \"$ac_try\"") >&5 + { (eval echo "$as_me:34224: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34126: \$? = $ac_status" >&5 + echo "$as_me:34227: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_func_curses_version=yes @@ -34138,21 +34239,21 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi rm -f core fi -echo "$as_me:34141: result: $cf_cv_func_curses_version" >&5 +echo "$as_me:34242: result: $cf_cv_func_curses_version" >&5 echo "${ECHO_T}$cf_cv_func_curses_version" >&6 test "$cf_cv_func_curses_version" = yes && cat >>confdefs.h <<\EOF #define HAVE_CURSES_VERSION 1 EOF if test "$cf_cv_ncurses_version" != no ; then -echo "$as_me:34148: checking for obsolete/broken version of ncurses" >&5 +echo "$as_me:34249: checking for obsolete/broken version of ncurses" >&5 echo $ECHO_N "checking for obsolete/broken version of ncurses... $ECHO_C" >&6 if test "${cf_cv_ncurses_broken+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 34155 "configure" +#line 34256 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -34171,16 +34272,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34174: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34275: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34177: \$? = $ac_status" >&5 + echo "$as_me:34278: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34180: \"$ac_try\"") >&5 + { (eval echo "$as_me:34281: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34183: \$? = $ac_status" >&5 + echo "$as_me:34284: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_broken=no else @@ -34192,10 +34293,10 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:34195: result: $cf_cv_ncurses_broken" >&5 +echo "$as_me:34296: result: $cf_cv_ncurses_broken" >&5 echo "${ECHO_T}$cf_cv_ncurses_broken" >&6 if test "$cf_cv_ncurses_broken" = yes ; then - { echo "$as_me:34198: WARNING: hmm... you should get an up-to-date version of ncurses" >&5 + { echo "$as_me:34299: WARNING: hmm... you should get an up-to-date version of ncurses" >&5 echo "$as_me: WARNING: hmm... you should get an up-to-date version of ncurses" >&2;} cat >>confdefs.h <<\EOF #define NCURSES_BROKEN 1 @@ -34204,14 +34305,14 @@ EOF fi fi -echo "$as_me:34207: checking if curses supports color attributes" >&5 +echo "$as_me:34308: checking if curses supports color attributes" >&5 echo $ECHO_N "checking if curses supports color attributes... $ECHO_C" >&6 if test "${cf_cv_color_curses+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 34214 "configure" +#line 34315 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -34231,16 +34332,16 @@ chtype x = COLOR_BLUE; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34234: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34335: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34237: \$? = $ac_status" >&5 + echo "$as_me:34338: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34240: \"$ac_try\"") >&5 + { (eval echo "$as_me:34341: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34243: \$? = $ac_status" >&5 + echo "$as_me:34344: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_color_curses=yes else @@ -34252,7 +34353,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:34255: result: $cf_cv_color_curses" >&5 +echo "$as_me:34356: result: $cf_cv_color_curses" >&5 echo "${ECHO_T}$cf_cv_color_curses" >&6 if test $cf_cv_color_curses = yes ; then cat >>confdefs.h <<\EOF @@ -34272,23 +34373,23 @@ unistd.h \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:34275: checking for $ac_header" >&5 +echo "$as_me:34376: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 34281 "configure" +#line 34382 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:34285: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:34386: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:34291: \$? = $ac_status" >&5 + echo "$as_me:34392: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -34307,7 +34408,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:34310: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:34411: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -34322,23 +34423,23 @@ if test "$ISC" = yes ; then for ac_header in sys/termio.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:34325: checking for $ac_header" >&5 +echo "$as_me:34426: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 34331 "configure" +#line 34432 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:34335: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:34436: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:34341: \$? = $ac_status" >&5 + echo "$as_me:34442: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -34357,7 +34458,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:34360: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:34461: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<EOF @@ -34375,10 +34476,10 @@ if test "$ac_cv_header_termios_h" = yes ; then *) termios_bad=maybe ;; esac if test "$termios_bad" = maybe ; then - echo "$as_me:34378: checking whether termios.h needs _POSIX_SOURCE" >&5 + echo "$as_me:34479: checking whether termios.h needs _POSIX_SOURCE" >&5 echo $ECHO_N "checking whether termios.h needs _POSIX_SOURCE... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 34381 "configure" +#line 34482 "configure" #include "confdefs.h" #include <termios.h> int @@ -34390,16 +34491,16 @@ struct termios foo; int x = foo.c_iflag } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34393: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34494: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34396: \$? = $ac_status" >&5 + echo "$as_me:34497: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34399: \"$ac_try\"") >&5 + { (eval echo "$as_me:34500: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34402: \$? = $ac_status" >&5 + echo "$as_me:34503: \$? = $ac_status" >&5 (exit $ac_status); }; }; then termios_bad=no else @@ -34407,7 +34508,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 34410 "configure" +#line 34511 "configure" #include "confdefs.h" #define _POSIX_SOURCE @@ -34421,16 +34522,16 @@ struct termios foo; int x = foo.c_iflag } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34424: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34525: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34427: \$? = $ac_status" >&5 + echo "$as_me:34528: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34430: \"$ac_try\"") >&5 + { (eval echo "$as_me:34531: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34433: \$? = $ac_status" >&5 + echo "$as_me:34534: \$? = $ac_status" >&5 (exit $ac_status); }; }; then termios_bad=unknown else @@ -34445,12 +34546,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:34448: result: $termios_bad" >&5 + echo "$as_me:34549: result: $termios_bad" >&5 echo "${ECHO_T}$termios_bad" >&6 fi fi -echo "$as_me:34453: checking declaration of size-change" >&5 +echo "$as_me:34554: checking declaration of size-change" >&5 echo $ECHO_N "checking declaration of size-change... $ECHO_C" >&6 if test "${cf_cv_sizechange+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -34465,7 +34566,7 @@ do CPPFLAGS="$cf_save_CPPFLAGS" test -n "$cf_opts" && CPPFLAGS="$CPPFLAGS -D$cf_opts" cat >conftest.$ac_ext <<_ACEOF -#line 34468 "configure" +#line 34569 "configure" #include "confdefs.h" #include <sys/types.h> #ifdef HAVE_TERMIOS_H @@ -34509,16 +34610,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34512: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34613: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34515: \$? = $ac_status" >&5 + echo "$as_me:34616: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34518: \"$ac_try\"") >&5 + { (eval echo "$as_me:34619: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34521: \$? = $ac_status" >&5 + echo "$as_me:34622: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_sizechange=yes else @@ -34537,7 +34638,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:34540: result: $cf_cv_sizechange" >&5 +echo "$as_me:34641: result: $cf_cv_sizechange" >&5 echo "${ECHO_T}$cf_cv_sizechange" >&6 if test "$cf_cv_sizechange" != no ; then cat >>confdefs.h <<\EOF @@ -34554,14 +34655,14 @@ EOF esac fi -echo "$as_me:34557: checking if ttytype is declared in curses library" >&5 +echo "$as_me:34658: checking if ttytype is declared in curses library" >&5 echo $ECHO_N "checking if ttytype is declared in curses library... $ECHO_C" >&6 if test "${cf_cv_have_ttytype+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 34564 "configure" +#line 34665 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -34573,16 +34674,16 @@ char *x = &ttytype[1]; *x = 1 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34576: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34677: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34579: \$? = $ac_status" >&5 + echo "$as_me:34680: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34582: \"$ac_try\"") >&5 + { (eval echo "$as_me:34683: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34585: \$? = $ac_status" >&5 + echo "$as_me:34686: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_ttytype=yes else @@ -34594,7 +34695,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:34597: result: $cf_cv_have_ttytype" >&5 +echo "$as_me:34698: result: $cf_cv_have_ttytype" >&5 echo "${ECHO_T}$cf_cv_have_ttytype" >&6 test $cf_cv_have_ttytype = yes && cat >>confdefs.h <<\EOF #define HAVE_TTYTYPE 1 @@ -34602,14 +34703,14 @@ EOF if test "$use_wide_curses" = yes ; then -echo "$as_me:34605: checking if curses supports wide characters" >&5 +echo "$as_me:34706: checking if curses supports wide characters" >&5 echo $ECHO_N "checking if curses supports wide characters... $ECHO_C" >&6 if test "${cf_cv_widec_curses+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 34612 "configure" +#line 34713 "configure" #include "confdefs.h" #include <stdlib.h> @@ -34628,16 +34729,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34631: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34732: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34634: \$? = $ac_status" >&5 + echo "$as_me:34735: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34637: \"$ac_try\"") >&5 + { (eval echo "$as_me:34738: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34640: \$? = $ac_status" >&5 + echo "$as_me:34741: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_widec_curses=yes else @@ -34648,7 +34749,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:34651: result: $cf_cv_widec_curses" >&5 +echo "$as_me:34752: result: $cf_cv_widec_curses" >&5 echo "${ECHO_T}$cf_cv_widec_curses" >&6 if test "$cf_cv_widec_curses" = yes ; then @@ -34657,14 +34758,14 @@ if test "$cf_cv_widec_curses" = yes ; then EOF # This is needed on Tru64 5.0 to declare mbstate_t - echo "$as_me:34660: checking if we must include wchar.h to declare mbstate_t" >&5 + echo "$as_me:34761: checking if we must include wchar.h to declare mbstate_t" >&5 echo $ECHO_N "checking if we must include wchar.h to declare mbstate_t... $ECHO_C" >&6 if test "${cf_cv_widec_mbstate+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 34667 "configure" +#line 34768 "configure" #include "confdefs.h" #include <stdlib.h> @@ -34678,23 +34779,23 @@ mbstate_t state } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34681: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34782: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34684: \$? = $ac_status" >&5 + echo "$as_me:34785: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34687: \"$ac_try\"") >&5 + { (eval echo "$as_me:34788: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34690: \$? = $ac_status" >&5 + echo "$as_me:34791: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_widec_mbstate=no else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 34697 "configure" +#line 34798 "configure" #include "confdefs.h" #include <stdlib.h> @@ -34709,16 +34810,16 @@ mbstate_t state } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34712: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34813: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34715: \$? = $ac_status" >&5 + echo "$as_me:34816: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34718: \"$ac_try\"") >&5 + { (eval echo "$as_me:34819: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34721: \$? = $ac_status" >&5 + echo "$as_me:34822: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_widec_mbstate=yes else @@ -34730,7 +34831,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:34733: result: $cf_cv_widec_mbstate" >&5 +echo "$as_me:34834: result: $cf_cv_widec_mbstate" >&5 echo "${ECHO_T}$cf_cv_widec_mbstate" >&6 if test "$cf_cv_widec_mbstate" = yes ; then @@ -34751,14 +34852,14 @@ fi fi -echo "$as_me:34754: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5 +echo "$as_me:34855: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5 echo $ECHO_N "checking if we must define _XOPEN_SOURCE_EXTENDED... $ECHO_C" >&6 if test "${cf_cv_need_xopen_extension+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 34761 "configure" +#line 34862 "configure" #include "confdefs.h" #include <stdlib.h> @@ -34775,23 +34876,23 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34778: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34879: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34781: \$? = $ac_status" >&5 + echo "$as_me:34882: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34784: \"$ac_try\"") >&5 + { (eval echo "$as_me:34885: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34787: \$? = $ac_status" >&5 + echo "$as_me:34888: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_need_xopen_extension=no else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 34794 "configure" +#line 34895 "configure" #include "confdefs.h" #define _XOPEN_SOURCE_EXTENDED @@ -34809,16 +34910,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34812: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34913: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34815: \$? = $ac_status" >&5 + echo "$as_me:34916: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34818: \"$ac_try\"") >&5 + { (eval echo "$as_me:34919: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34821: \$? = $ac_status" >&5 + echo "$as_me:34922: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_need_xopen_extension=yes else @@ -34830,11 +34931,11 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:34833: result: $cf_cv_need_xopen_extension" >&5 +echo "$as_me:34934: result: $cf_cv_need_xopen_extension" >&5 echo "${ECHO_T}$cf_cv_need_xopen_extension" >&6 test $cf_cv_need_xopen_extension = yes && CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED" -echo "$as_me:34837: checking for term.h" >&5 +echo "$as_me:34938: checking for term.h" >&5 echo $ECHO_N "checking for term.h... $ECHO_C" >&6 if test "${cf_cv_term_header+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -34847,7 +34948,7 @@ for cf_header in \ term.h do cat >conftest.$ac_ext <<_ACEOF -#line 34850 "configure" +#line 34951 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -34861,16 +34962,16 @@ WINDOW *x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34864: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34965: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34867: \$? = $ac_status" >&5 + echo "$as_me:34968: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34870: \"$ac_try\"") >&5 + { (eval echo "$as_me:34971: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34873: \$? = $ac_status" >&5 + echo "$as_me:34974: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header=$cf_header break @@ -34883,7 +34984,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:34886: result: $cf_cv_term_header" >&5 +echo "$as_me:34987: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 case $cf_cv_term_header in #(vi @@ -34934,10 +35035,10 @@ do cf_tr_func=`echo "$cf_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` - echo "$as_me:34937: checking for ${cf_func}" >&5 + echo "$as_me:35038: checking for ${cf_func}" >&5 echo $ECHO_N "checking for ${cf_func}... $ECHO_C" >&6 -echo "${as_me-configure}:34940: testing ${cf_func} ..." 1>&5 +echo "${as_me-configure}:35041: testing ${cf_func} ..." 1>&5 if eval "test \"\${cf_cv_func_$cf_func+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -34946,7 +35047,7 @@ else eval cf_result='$ac_cv_func_'$cf_func if test ".$cf_result" != ".no"; then cat >conftest.$ac_ext <<_ACEOF -#line 34949 "configure" +#line 35050 "configure" #include "confdefs.h" #ifdef HAVE_XCURSES @@ -34980,16 +35081,16 @@ ${cf_cv_main_return-return}(foo == 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34983: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35084: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34986: \$? = $ac_status" >&5 + echo "$as_me:35087: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34989: \"$ac_try\"") >&5 + { (eval echo "$as_me:35090: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34992: \$? = $ac_status" >&5 + echo "$as_me:35093: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -35005,7 +35106,7 @@ fi # use the computed/retrieved cache-value: eval 'cf_result=$cf_cv_func_'$cf_func - echo "$as_me:35008: result: $cf_result" >&5 + echo "$as_me:35109: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test $cf_result != no; then cat >>confdefs.h <<EOF @@ -35021,13 +35122,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:35024: checking for $ac_func" >&5 +echo "$as_me:35125: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 35030 "configure" +#line 35131 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -35058,16 +35159,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35061: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35162: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35064: \$? = $ac_status" >&5 + echo "$as_me:35165: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35067: \"$ac_try\"") >&5 + { (eval echo "$as_me:35168: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35070: \$? = $ac_status" >&5 + echo "$as_me:35171: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -35077,7 +35178,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:35080: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:35181: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<EOF @@ -35091,12 +35192,12 @@ fi if test $use_color_style != no ; then if test .$cf_cv_color_curses != .yes ; then - { { echo "$as_me:35094: error: Configuration does not support color-styles" >&5 + { { echo "$as_me:35195: error: Configuration does not support color-styles" >&5 echo "$as_me: error: Configuration does not support color-styles" >&2;} { (exit 1); exit 1; }; } fi if test $cf_cv_screen = slang ; then - { { echo "$as_me:35099: error: Configuration does not support color-styles" >&5 + { { echo "$as_me:35200: error: Configuration does not support color-styles" >&5 echo "$as_me: error: Configuration does not support color-styles" >&2;} { (exit 1); exit 1; }; } fi @@ -35104,7 +35205,7 @@ fi if test $use_scrollbar != no ; then if test .$cf_cv_fancy_curses != .yes ; then - { echo "$as_me:35107: WARNING: Configuration does not support ACS_xxx definitions" >&5 + { echo "$as_me:35208: WARNING: Configuration does not support ACS_xxx definitions" >&5 echo "$as_me: WARNING: Configuration does not support ACS_xxx definitions" >&2;} else cat >>confdefs.h <<\EOF @@ -35209,7 +35310,7 @@ DEFS=-DHAVE_CONFIG_H : ${CONFIG_STATUS=./config.status} ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" -{ echo "$as_me:35212: creating $CONFIG_STATUS" >&5 +{ echo "$as_me:35313: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >$CONFIG_STATUS <<_ACEOF #! $SHELL @@ -35385,7 +35486,7 @@ cat >>$CONFIG_STATUS <<\EOF echo "$ac_cs_version"; exit 0 ;; --he | --h) # Conflict between --help and --header - { { echo "$as_me:35388: error: ambiguous option: $1 + { { echo "$as_me:35489: error: ambiguous option: $1 Try \`$0 --help' for more information." >&5 echo "$as_me: error: ambiguous option: $1 Try \`$0 --help' for more information." >&2;} @@ -35404,7 +35505,7 @@ Try \`$0 --help' for more information." >&2;} ac_need_defaults=false;; # This is an error. - -*) { { echo "$as_me:35407: error: unrecognized option: $1 + -*) { { echo "$as_me:35508: error: unrecognized option: $1 Try \`$0 --help' for more information." >&5 echo "$as_me: error: unrecognized option: $1 Try \`$0 --help' for more information." >&2;} @@ -35457,7 +35558,7 @@ do "default-1" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;; "default" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;; "$CONFIG_H" ) CONFIG_HEADERS="$CONFIG_HEADERS $CONFIG_H:config.hin" ;; - *) { { echo "$as_me:35460: error: invalid argument: $ac_config_target" >&5 + *) { { echo "$as_me:35561: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac @@ -35776,7 +35877,7 @@ done; } esac if test x"$ac_file" != x-; then - { echo "$as_me:35779: creating $ac_file" >&5 + { echo "$as_me:35880: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} rm -f "$ac_file" fi @@ -35794,7 +35895,7 @@ echo "$as_me: creating $ac_file" >&6;} -) echo $tmp/stdin ;; [\\/$]*) # Absolute (can't be DOS-style, as IFS=:) - test -f "$f" || { { echo "$as_me:35797: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:35898: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -35807,7 +35908,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:35810: error: cannot find input file: $f" >&5 + { { echo "$as_me:35911: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -35873,7 +35974,7 @@ for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue * ) ac_file_in=$ac_file.in ;; esac - test x"$ac_file" != x- && { echo "$as_me:35876: creating $ac_file" >&5 + test x"$ac_file" != x- && { echo "$as_me:35977: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} # First look for the input files in the build tree, otherwise in the @@ -35884,7 +35985,7 @@ echo "$as_me: creating $ac_file" >&6;} -) echo $tmp/stdin ;; [\\/$]*) # Absolute (can't be DOS-style, as IFS=:) - test -f "$f" || { { echo "$as_me:35887: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:35988: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -35897,7 +35998,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:35900: error: cannot find input file: $f" >&5 + { { echo "$as_me:36001: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -36015,7 +36116,7 @@ cat >>$CONFIG_STATUS <<\EOF rm -f $tmp/in if test x"$ac_file" != x-; then if cmp -s $ac_file $tmp/config.h 2>/dev/null; then - { echo "$as_me:36018: $ac_file is unchanged" >&5 + { echo "$as_me:36119: $ac_file is unchanged" >&5 echo "$as_me: $ac_file is unchanged" >&6;} else ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ diff --git a/configure.in b/configure.in index 5b816358..65e15cb3 100644 --- a/configure.in +++ b/configure.in @@ -1,4 +1,4 @@ -dnl $LynxId: configure.in,v 1.176 2008/12/24 14:35:01 tom Exp $ +dnl $LynxId: configure.in,v 1.178 2008/12/29 14:29:28 tom Exp $ dnl dnl Process this file with autoconf to produce a configure script. dnl @@ -259,6 +259,21 @@ irix*) linux*) TRY_CFLAGS="$TRY_CFLAGS -DLINUX" ;; +mingw*) + # put these directlyin CPPFLAGS since they will not work in lynx_cfg.h + CF_ADD_CFLAGS(\ + -DDOSPATH \ + -DNOSIGHUP \ + -DNOUSERS \ + -DWIN_EX \ + -D_CONSOLE \ + -D_MBCS \ + -D_WINDOWS \ + -D_WIN_CC \ + -D__WIN32__ \ + ) + EXTRA_OBJS="$EXTRA_OBJS Xsystem\$o" + ;; msdosdjgpp*) LIBS="$LIBS -lwatt" TRY_CFLAGS="$TRY_CFLAGS -DDOSPATH -DNOUSERS" @@ -711,7 +726,6 @@ AC_CHECK_HEADERS( \ CF_TERMIO_AND_TERMIOS CF_FUNC_SIGACTION CF_FUNC_WAIT -CF_VARARGS AC_TYPE_GETGROUPS AC_TYPE_OFF_T AC_TYPE_PID_T @@ -920,7 +934,7 @@ CF_ARG_ENABLE(sessions, [use_sessions=no]) AC_MSG_RESULT($use_sessions) if test $use_sessions != no ; then - AC_DEFINE(USE_SESSIONS) + AC_DEFINE(USE_SESSIONS) EXTRA_OBJS="$EXTRA_OBJS LYSession\$o" fi diff --git a/lynx.cfg b/lynx.cfg index c210321c..863df9ee 100644 --- a/lynx.cfg +++ b/lynx.cfg @@ -1,4 +1,4 @@ -# $LynxId: lynx.cfg,v 1.166 2008/12/15 00:24:56 tom Exp $ +# $LynxId: lynx.cfg,v 1.168 2008/12/28 21:35:23 tom Exp $ # lynx.cfg file. # The default placement for this file is /usr/local/lib/lynx.cfg (Unix) # or Lynx_Dir:lynx.cfg (VMS) @@ -2771,14 +2771,14 @@ MINIMAL_COMMENTS:TRUE .h1 Appearance .h2 LIST_FORMAT -# Unix ONLY: -#=========== # LIST_FORMAT defines the display for local files when Lynx has been # compiled with LONG_LIST defined in the Makefile. The default is set # in userdefs.h, normally to "ls -l" format, and can be changed here # by uncommenting the indicated lines, or adding a definition with a # modified parameter list. # +# This feature is not available for VMS. +# # The percent items in the list are interpreted as follows: .nf # @@ -3565,3 +3565,8 @@ COLOR:6:brightred:black # # Each BROKEN_FTP_EPSV gives a string match for the reported FTP server version #BROKEN_FTP_EPSV:(Version wu-2.6.2-12) + +.h2 FTP_FORMAT +# FTP_FORMAT defines the display for remote files. +# It uses the same "%" codes as LIST_FORMAT. +#FTP_FORMAT:%d %-16.16t %a %K diff --git a/lynx.man b/lynx.man index 6307d320..d5eb0b62 100644 --- a/lynx.man +++ b/lynx.man @@ -1,4 +1,4 @@ -.\" $LynxId: lynx.man,v 1.84 2008/12/26 01:19:10 tom Exp $ +.\" $LynxId: lynx.man,v 1.85 2008/12/26 17:40:02 tom Exp $ .nr N -1 .nr D 5 .TH LYNX 1 @@ -687,6 +687,9 @@ show very long URLs in the status line with "..." to represent the portion which cannot be displayed. The beginning and end of the URL are displayed, rather than suppressing the end. .TP +.B \-show_cfg +Print the configuration settings, e.g., as read from "lynx.cfg", and exit. +.TP .B \-show_cursor If enabled the cursor will not be hidden in the right hand corner but will instead be positioned at the start of the diff --git a/po/id.po b/po/id.po index 7f655da8..685752b0 100644 --- a/po/id.po +++ b/po/id.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: lynx 2.8.7-dev9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-12-25 20:32-0500\n" -"PO-Revision-Date: 2008-12-26 09:00+0700\n" +"POT-Creation-Date: 2008-12-26 20:04-0500\n" +"PO-Revision-Date: 2008-12-26 10:50+0700\n" "Last-Translator: Arif E. Nugroho <arif_endro@yahoo.com>\n" "Language-Team: Indonesian <translation-team-id@lists.sourceforge.net>\n" "MIME-Version: 1.0\n" @@ -434,7 +434,7 @@ msgstr " O)ther cmds B)lack E)dit D)downlod ^R)eload ^W)ipe layar cari doc: #. #define NOVICE_LINE_TWO_C #: LYMessages.c:174 msgid "O)ther cmds C)omment History: <backspace> Bookmarks: V)iew, A)dd, R)emove \n" -msgstr "" +msgstr "O)ther cmds C)omment Sejarah: <backspace> Bookmarks: V)iew, A)dd, R)emove\n" #. #define FORM_NOVICELINE_ONE #: LYMessages.c:176 @@ -2413,16 +2413,21 @@ msgstr "Sampai ke " msgid "Current directory is " msgstr "Direktori saat ini adalah " -#. HTGopher.c +#. HTFTP.c #: LYMessages.c:765 +msgid "Symbolic Link" +msgstr "Link simbolik" + +#. HTGopher.c +#: LYMessages.c:768 msgid "No response from server!" msgstr "Tidak ada balasan dari server!" -#: LYMessages.c:766 +#: LYMessages.c:769 msgid "CSO index" msgstr "CSO indeks" -#: LYMessages.c:767 +#: LYMessages.c:770 msgid "" "\n" "This is a searchable index of a CSO database.\n" @@ -2430,16 +2435,16 @@ msgstr "" "\n" " Ini adalah sebuah indeks yang dapat dipindah dari sebuah basis data CSO.\n" -#: LYMessages.c:768 +#: LYMessages.c:771 msgid "CSO Search Results" msgstr "Hasil pencarian CSO" -#: LYMessages.c:769 +#: LYMessages.c:772 #, c-format msgid "Seek fail on %s\n" msgstr "Pencarian gagal di %s\n" -#: LYMessages.c:770 +#: LYMessages.c:773 msgid "" "\n" "Press the 's' key and enter search keywords.\n" @@ -2447,7 +2452,7 @@ msgstr "" "\n" "Tekan tombol 's' dan masukan kata kunci pencarian.\n" -#: LYMessages.c:771 +#: LYMessages.c:774 msgid "" "\n" "This is a searchable Gopher index.\n" @@ -2455,35 +2460,35 @@ msgstr "" "\n" "Ini adalah sebuah indeks Gopher yang dapat dipindai.\n" -#: LYMessages.c:772 +#: LYMessages.c:775 msgid "Gopher index" msgstr "Indeks Gopher" -#: LYMessages.c:773 +#: LYMessages.c:776 msgid "Gopher Menu" msgstr "Menu Gopher" -#: LYMessages.c:774 +#: LYMessages.c:777 msgid " Search Results" msgstr " Hasil Pencarian" -#: LYMessages.c:775 +#: LYMessages.c:778 msgid "Sending CSO/PH request." msgstr "Mengirimkan permintaan CSO/PH." -#: LYMessages.c:776 +#: LYMessages.c:779 msgid "Sending Gopher request." msgstr "Mengirimkan permintaan Gopher." -#: LYMessages.c:777 +#: LYMessages.c:780 msgid "CSO/PH request sent; waiting for response." msgstr "Permintaan CSO/PH dikirimkan; menunggu balasan." -#: LYMessages.c:778 +#: LYMessages.c:781 msgid "Gopher request sent; waiting for response." msgstr "Permintaan Gopher dikirimkan; menunggu balasan." -#: LYMessages.c:779 +#: LYMessages.c:782 msgid "" "\n" "Please enter search keywords.\n" @@ -2491,7 +2496,7 @@ msgstr "" "\n" "Mohon masukan kata kunci pencarian.\n" -#: LYMessages.c:780 +#: LYMessages.c:783 msgid "" "\n" "The keywords that you enter will allow you to search on a" @@ -2499,201 +2504,201 @@ msgstr "" "\n" "Kata kunci yang anda masukan akan mengijinkan anda untuk mencari di" -#: LYMessages.c:781 +#: LYMessages.c:784 msgid " person's name in the database.\n" msgstr " nama orang dalam basis data.\n" #. HTNews.c -#: LYMessages.c:784 +#: LYMessages.c:787 msgid "Connection closed ???" msgstr "Koneksi ditutup ???" -#: LYMessages.c:785 +#: LYMessages.c:788 msgid "Cannot open temporary file for news POST." msgstr "Tidak dapat membuka berkas sementara untuk news POST." -#: LYMessages.c:786 +#: LYMessages.c:789 msgid "This client does not contain support for posting to news with SSL." msgstr "Klien ini tidak berisi dukungan untuk posting ke news dengan SSL." #. HTStyle.c -#: LYMessages.c:789 +#: LYMessages.c:792 #, c-format msgid "Style %d `%s' SGML:%s. Font %s %.1f point.\n" msgstr "Gaya %d `%s' SGML:%s. Font %s %.1f titik.\n" -#: LYMessages.c:791 +#: LYMessages.c:794 #, c-format msgid "\tAlign=%d, %d tabs. (%.0f before, %.0f after)\n" msgstr "\tAlign=%d, %d tabs. (%.0f sebelumnya, %.0f sesudahnya)\n" -#: LYMessages.c:792 +#: LYMessages.c:795 #, c-format msgid "\t\tTab kind=%d at %.0f\n" msgstr "\t\tTab jenis=%d di %.0f\n" #. HTTP.c -#: LYMessages.c:795 +#: LYMessages.c:798 msgid "Can't proceed without a username and password." msgstr "Tidak dapat melanjutkan tanpa sebuah nama pengguna dan kata sandi" -#: LYMessages.c:796 +#: LYMessages.c:799 msgid "Can't retry with authorization! Contact the server's WebMaster." msgstr "Tidak dapat mencoba dengan otorisasi! Hubungi WebMaster server." -#: LYMessages.c:797 +#: LYMessages.c:800 msgid "Can't retry with proxy authorization! Contact the server's WebMaster." msgstr "Tidak dapat mencoba dengan proxy otorisasi! Hubungi WebMaster server." -#: LYMessages.c:798 +#: LYMessages.c:801 msgid "Retrying with proxy authorization information." msgstr "Mencoba dengan informasi otorisasi proxy." -#: LYMessages.c:799 +#: LYMessages.c:802 #, c-format msgid "SSL error:%s-Continue?" msgstr "SSL error:%s-Lanjutkan?" #. HTWAIS.c -#: LYMessages.c:802 +#: LYMessages.c:805 msgid "HTWAIS: Return message too large." msgstr "HTWIS: Pesan yang dikembalikan terlalu besar." -#: LYMessages.c:803 +#: LYMessages.c:806 msgid "Enter WAIS query: " msgstr "Masukan permintaan WAIS: " #. Miscellaneous status -#: LYMessages.c:806 +#: LYMessages.c:809 msgid "Retrying as HTTP0 request." msgstr "Mencoba kembali sebagai permintaan HTTPO." -#: LYMessages.c:807 +#: LYMessages.c:810 #, c-format msgid "Transferred %d bytes" msgstr "Dikirimkan %d bytes" -#: LYMessages.c:808 +#: LYMessages.c:811 msgid "Data transfer complete" msgstr "Transfer data selesai" -#: LYMessages.c:809 +#: LYMessages.c:812 #, c-format msgid "Error processing line %d of %s\n" msgstr "Error memproses baris %d dari %s\n" #. Lynx internal page titles -#: LYMessages.c:812 +#: LYMessages.c:815 msgid "Address List Page" msgstr "Daftar halaman alamat" -#: LYMessages.c:813 +#: LYMessages.c:816 msgid "Bookmark file" msgstr "Berkas bookmark" -#: LYMessages.c:814 +#: LYMessages.c:817 msgid "Configuration Definitions" msgstr "Definisi konfigurasi" -#: LYMessages.c:815 +#: LYMessages.c:818 msgid "Cookie Jar" msgstr "Cookie Jar" -#: LYMessages.c:816 +#: LYMessages.c:819 msgid "Current Key Map" msgstr "Peta kunci saat ini" -#: LYMessages.c:817 +#: LYMessages.c:820 msgid "File Management Options" msgstr "Opsi manajemen berkas" -#: LYMessages.c:818 +#: LYMessages.c:821 msgid "Download Options" msgstr "Opsi unduh" -#: LYMessages.c:819 +#: LYMessages.c:822 msgid "History Page" msgstr "Halaman sejarah" -#: LYMessages.c:820 +#: LYMessages.c:823 msgid "Cache Jar" msgstr "Cache Jar" -#: LYMessages.c:821 +#: LYMessages.c:824 msgid "List Page" msgstr "Daftar Halaman" -#: LYMessages.c:822 +#: LYMessages.c:825 msgid "Lynx.cfg Information" msgstr "Informasi Lynx.cfg" -#: LYMessages.c:823 +#: LYMessages.c:826 msgid "Converted Mosaic Hotlist" msgstr "Diubah Mosaic Hotlist" -#: LYMessages.c:824 +#: LYMessages.c:827 msgid "Options Menu" msgstr "Opsi menu" -#: LYMessages.c:825 +#: LYMessages.c:828 msgid "File Permission Options" msgstr "Opsi ijin berkas" -#: LYMessages.c:826 +#: LYMessages.c:829 msgid "Printing Options" msgstr "Opsi pencetakan" -#: LYMessages.c:827 +#: LYMessages.c:830 msgid "Information about the current document" msgstr "Informasi mengenai dokumen saat ini" -#: LYMessages.c:828 +#: LYMessages.c:831 msgid "Your recent statusline messages" msgstr "Pesan baris status anda baru baru ini" -#: LYMessages.c:829 +#: LYMessages.c:832 msgid "Upload Options" msgstr "Opsi upload" -#: LYMessages.c:830 +#: LYMessages.c:833 msgid "Visited Links Page" msgstr "Sambungan halaman yang pernah dikunjungi" #. CONFIG_DEF_TITLE subtitles -#: LYMessages.c:833 +#: LYMessages.c:836 msgid "See also" msgstr "Lihat juga" -#: LYMessages.c:834 +#: LYMessages.c:837 msgid "your" msgstr "anda" -#: LYMessages.c:835 +#: LYMessages.c:838 msgid "for runtime options" msgstr "opsi untuk waktu jalan" -#: LYMessages.c:836 +#: LYMessages.c:839 msgid "compile time options" msgstr "opsi waktu kompilasi" -#: LYMessages.c:837 +#: LYMessages.c:840 msgid "color-style configuration" msgstr "konfigurasi gaya-warna" -#: LYMessages.c:838 +#: LYMessages.c:841 msgid "latest release" msgstr "keluaran terakhir" -#: LYMessages.c:839 +#: LYMessages.c:842 msgid "pre-release version" msgstr "versi sebelum dikeluarkan" -#: LYMessages.c:840 +#: LYMessages.c:843 msgid "development version" msgstr "versi pengembangan" #. #define AUTOCONF_CONFIG_CACHE -#: LYMessages.c:842 +#: LYMessages.c:845 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" @@ -2704,7 +2709,7 @@ msgstr "" "sebuah salinan dari halaman ini." #. #define AUTOCONF_LYNXCFG_H -#: LYMessages.c:846 +#: LYMessages.c:849 msgid "" "The following data were used as automatically-configured compile-time\n" "definitions when this copy of Lynx was built." @@ -2713,53 +2718,53 @@ msgstr "" "ketika salinan dari lynx dibuat." #. #define DIRED_NOVICELINE -#: LYMessages.c:851 +#: LYMessages.c:854 msgid " C)reate D)ownload E)dit F)ull menu M)odify R)emove T)ag U)pload \n" msgstr " C)reate D)ownload E)dit F)ull menu M)odify R)emove T)ag U)pload \n" -#: LYMessages.c:852 +#: LYMessages.c:855 msgid "Failed to obtain status of current link!" msgstr "Gagal untuk memperoleh status dari sambungan sekarang!" #. #define INVALID_PERMIT_URL -#: LYMessages.c:855 +#: LYMessages.c:858 msgid "Special URL only valid from current File Permission menu!" msgstr "Hanya URL spesial saja yang valid dari menu permisi berkas sekarang!" -#: LYMessages.c:859 +#: LYMessages.c:862 msgid "External support is currently disabled." msgstr "Dukungan eksternal saat ini tidak aktif." #. new with 2.8.4dev.21 -#: LYMessages.c:863 +#: LYMessages.c:866 msgid "Changing working-directory is currently disabled." msgstr "Pengubahan direktori kerja saat ini tidak aktif." -#: LYMessages.c:864 +#: LYMessages.c:867 msgid "Linewrap OFF!" msgstr "Linewrap OFF!" -#: LYMessages.c:865 +#: LYMessages.c:868 msgid "Linewrap ON!" msgstr "Linewrap ON!" -#: LYMessages.c:866 +#: LYMessages.c:869 msgid "Parsing nested-tables toggled OFF! Reloading..." msgstr "Parsing nested tables dimatikan! Memuat kembali..." -#: LYMessages.c:867 +#: LYMessages.c:870 msgid "Parsing nested-tables toggled ON! Reloading..." msgstr "Parsing nested tables diaktifkan! Memuat kembali..." -#: LYMessages.c:868 +#: LYMessages.c:871 msgid "Shifting is disabled while line-wrap is in effect" msgstr "Shifting tidak aktif ketika line-wrap berada dalam efek" -#: LYMessages.c:869 +#: LYMessages.c:872 msgid "Trace not supported" msgstr "Trace tidak didukung" -#: LYMessages.c:790 +#: LYMessages.c:793 #, c-format msgid "\tIndents: first=%.0f others=%.0f, Height=%.1f Desc=%.1f\n" msgstr "\tIndents: pertama=%.0f lain=%.0f, Tinggi=%.1f Desc=%.1f\n" @@ -2802,7 +2807,7 @@ msgstr "Dokumen dengan isi POST tidak ditemukan dalam cache. Kirim kembali?" msgid "Loading failed, use a previous copy." msgstr "Pemuatan gagal, gunakan salinan sebelumnya." -#: WWW/Library/Implementation/HTAccess.c:1047 src/GridText.c:8546 +#: WWW/Library/Implementation/HTAccess.c:1047 src/GridText.c:8542 msgid "Loading incomplete." msgstr "Pemuatan tidak lengkap." @@ -2825,7 +2830,7 @@ msgstr "**** HTAccess: Status yang dikembalikan: %d\n" #. * hack: if we fail in HTAccess.c #. * avoid duplicating URL, oh. #. -#: WWW/Library/Implementation/HTAccess.c:1087 src/LYMainLoop.c:7779 +#: WWW/Library/Implementation/HTAccess.c:1087 src/LYMainLoop.c:7756 msgid "Can't Access" msgstr "Tidak dapat mengakses" @@ -2850,28 +2855,20 @@ msgstr "tutup master socket" msgid "socket for master socket" msgstr "socket untuk master socket" -#. -#. * 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:1733 WWW/Library/Implementation/HTFTP.c:2350 -msgid "Symbolic Link" -msgstr "Link simbolik" - -#: WWW/Library/Implementation/HTFTP.c:2707 +#: WWW/Library/Implementation/HTFTP.c:2977 msgid "Receiving FTP directory." msgstr "Menerima direktori FTP." -#: WWW/Library/Implementation/HTFTP.c:2843 +#: WWW/Library/Implementation/HTFTP.c:3113 #, c-format msgid "Transferred %d bytes (%5d)" msgstr "Ditransfer %d bytes (%5d)" -#: WWW/Library/Implementation/HTFTP.c:3194 +#: WWW/Library/Implementation/HTFTP.c:3467 msgid "connect for data" msgstr "hubungi untuk data" -#: WWW/Library/Implementation/HTFTP.c:3855 +#: WWW/Library/Implementation/HTFTP.c:4128 msgid "Receiving FTP file." msgstr "Menerima berkas FTP." @@ -3488,30 +3485,30 @@ msgstr "daerah keygen" msgid "unknown form field" msgstr "daerah formulir tidak diketahui" -#: src/GridText.c:10279 +#: src/GridText.c:10275 msgid "Can't open file for uploading" msgstr "Tidak dapat membuka berkas untuk upload" -#: src/GridText.c:11438 +#: src/GridText.c:11434 #, c-format msgid "Submitting %s" msgstr "Mengirimkan %s" #. ugliness has happened; inform user and do the best we can -#: src/GridText.c:12491 +#: src/GridText.c:12487 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!" msgstr "Hang Deteksi: TextAnchor struct terkorupsi - disarankan untuk dibatalkan!" #. don't show previous state -#: src/GridText.c:12628 +#: src/GridText.c:12624 msgid "Wrap lines to fit displayed area?" msgstr "Potong baris untuk menyesuaikan daerah penampilan?" -#: src/GridText.c:12680 +#: src/GridText.c:12676 msgid "Very long lines have been wrapped!" msgstr "Baris sangat panjang telah dipotong!" -#: src/GridText.c:13185 +#: src/GridText.c:13181 msgid "Very long lines have been truncated!" msgstr "Baris sangat panjang telah dipotong!" @@ -3603,7 +3600,7 @@ msgstr "tidak" #. #: src/HTAlert.c:911 msgid "Y/N/A/V" -msgstr "" +msgstr "Y/N/A/V" #: src/HTML.c:5913 msgid "Description:" @@ -4249,19 +4246,19 @@ msgstr "Pesan ini secara otomatis dibuat oleh" msgid "No system mailer configured" msgstr "Tidak ada pengirim surat sistem yang dikonfigurasikan" -#: src/LYMain.c:1024 +#: src/LYMain.c:1025 msgid "No Winsock found, sorry." msgstr "Tidak ada Winsock ditemukan, maaf." -#: src/LYMain.c:1220 +#: src/LYMain.c:1222 msgid "You MUST define a valid TMP or TEMP area!" msgstr "Anda HARUS mendefinisikan sebuah daerah valid TMP atau TEMP!" -#: src/LYMain.c:1273 src/LYMainLoop.c:5074 +#: src/LYMain.c:1275 src/LYMainLoop.c:5051 msgid "No such directory" msgstr "Tidak ada direktori seperti itu" -#: src/LYMain.c:1458 +#: src/LYMain.c:1460 #, c-format msgid "" "\n" @@ -4272,7 +4269,7 @@ msgstr "" "Berkas konfigurasi \"%s\" tidak tersedia.\n" "\n" -#: src/LYMain.c:1468 +#: src/LYMain.c:1470 #, c-format msgid "" "\n" @@ -4283,7 +4280,7 @@ msgstr "" "Karakter set Lynx tidak dideklarasikan.\n" "\n" -#: src/LYMain.c:1497 +#: src/LYMain.c:1499 #, c-format msgid "" "\n" @@ -4294,7 +4291,7 @@ msgstr "" "Lunx peta pengubahan tidak dideklarasikan.\n" "\n" -#: src/LYMain.c:1573 +#: src/LYMain.c:1575 #, c-format msgid "" "\n" @@ -4305,172 +4302,172 @@ msgstr "" "Berkas Lynx \"%s\" tidak tersedia.\n" "\n" -#: src/LYMain.c:1648 +#: src/LYMain.c:1650 #, c-format msgid "Ignored %d characters from standard input.\n" msgstr "Diabaikan %d karakter dari standar masukan.\n" -#: src/LYMain.c:1650 +#: src/LYMain.c:1652 #, c-format msgid "Use \"-stdin\" or \"-\" to tell how to handle piped input.\n" msgstr "Gunakan \"-stdin\" atatu \"-\" untuk mengetahui bagaimana menangani masukan piped.\n" -#: src/LYMain.c:1798 +#: src/LYMain.c:1800 msgid "Warning:" msgstr "Peringatan:" -#: src/LYMain.c:2366 +#: src/LYMain.c:2365 msgid "persistent cookies state will be changed in next session only." msgstr "persisten keadaan cookies hanya akan berubah di sesi selanjutnya saja." -#: src/LYMain.c:2611 src/LYMain.c:2656 +#: src/LYMain.c:2610 src/LYMain.c:2655 #, c-format msgid "Lynx: ignoring unrecognized charset=%s\n" msgstr "Lynx: mengabaikan charset=%s tidak diketahui\n" -#: src/LYMain.c:3175 +#: src/LYMain.c:3174 #, c-format msgid "%s Version %s (%s)" msgstr "%s Versi %s (%s)" -#: src/LYMain.c:3213 +#: src/LYMain.c:3212 #, c-format msgid "Built on %s %s %s\n" msgstr "Dibuat di %s %s %s\n" -#: src/LYMain.c:3235 +#: src/LYMain.c:3234 msgid "Copyrights held by the Lynx Developers Group," msgstr "Hak Cipta dipegang oleh Lynx Developers Group," -#: src/LYMain.c:3236 +#: src/LYMain.c:3235 msgid "the University of Kansas, CERN, and other contributors." msgstr "the University of Kansas, CERN, dan kontributor lain." -#: src/LYMain.c:3237 +#: src/LYMain.c:3236 msgid "Distributed under the GNU General Public License (Version 2)." msgstr "Didistribusikan dibawah GNU General Public License (Version 2)." -#: src/LYMain.c:3238 +#: src/LYMain.c:3237 msgid "See http://lynx.isc.org/ and the online help for more information." msgstr "Lihat http://lynx.isc.org/ dan bantuan online untuk informasi lebih lanjut." -#: src/LYMain.c:4059 +#: src/LYMain.c:4056 #, c-format msgid "USAGE: %s [options] [file]\n" msgstr "PENGGUNAAN: %s [opsi] [berkas]\n" -#: src/LYMain.c:4060 +#: src/LYMain.c:4057 #, c-format msgid "Options are:\n" msgstr "Opsi adalah:\n" -#: src/LYMain.c:4359 +#: src/LYMain.c:4356 #, c-format msgid "%s: Invalid Option: %s\n" msgstr "%s: Opsi tidak valid: %s\n" -#: src/LYMainLoop.c:594 +#: src/LYMainLoop.c:571 #, c-format msgid "Internal error: Invalid mouse link %d!" msgstr "Internal error: Sambungan mouse tidak valid %d!" -#: src/LYMainLoop.c:714 src/LYMainLoop.c:5096 +#: src/LYMainLoop.c:691 src/LYMainLoop.c:5073 msgid "A URL specified by the user" msgstr "Sebuah URL dispesifikasikan oleh pengguna" -#: src/LYMainLoop.c:1173 +#: src/LYMainLoop.c:1150 msgid "Enctype multipart/form-data not yet supported! Cannot submit." msgstr "Enctype multipart/form-data belum didukung! Tidak dapat mengirimkan." #. #. * Make a name for this help file. #. -#: src/LYMainLoop.c:3105 +#: src/LYMainLoop.c:3082 msgid "Help Screen" msgstr "Layar Bantuan" -#: src/LYMainLoop.c:3226 +#: src/LYMainLoop.c:3203 msgid "System Index" msgstr "Indeks Sistem" -#: src/LYMainLoop.c:3585 src/LYMainLoop.c:5320 +#: src/LYMainLoop.c:3562 src/LYMainLoop.c:5297 msgid "Entry into main screen" msgstr "Masukan ke layar utama" -#: src/LYMainLoop.c:3843 +#: src/LYMainLoop.c:3820 msgid "No next document present" msgstr "Tidak ada dokumen selanjutnya yang ada" -#: src/LYMainLoop.c:4139 +#: src/LYMainLoop.c:4116 msgid "charset for this document specified explicitly, sorry..." msgstr "charset untuk dokumen ini dispesifikasikan secara eksplisit, maaf..." -#: src/LYMainLoop.c:5052 +#: src/LYMainLoop.c:5029 msgid "cd to:" msgstr "cd ke:" -#: src/LYMainLoop.c:5077 +#: src/LYMainLoop.c:5054 msgid "A component of path is not a directory" msgstr "Sebuah komponen dari jalur bukan sebuah direktori" -#: src/LYMainLoop.c:5080 +#: src/LYMainLoop.c:5057 msgid "failed to change directory" msgstr "gagal untuk berpindah direktori" -#: src/LYMainLoop.c:6252 +#: src/LYMainLoop.c:6229 msgid "Reparsing document under current settings..." msgstr "Reparsing dokumen dibawah konfigurasi saat ini..." -#: src/LYMainLoop.c:6543 +#: src/LYMainLoop.c:6520 #, c-format msgid "Fatal error - could not open output file %s\n" msgstr "Fatal error - tidak dapat membuka berkas keluaran %s\n" -#: src/LYMainLoop.c:6880 +#: src/LYMainLoop.c:6857 msgid "TABLE center enable." msgstr "pusat TABEL aktif." -#: src/LYMainLoop.c:6883 +#: src/LYMainLoop.c:6860 msgid "TABLE center disable." msgstr "pusat TABEL tidak aktif." -#: src/LYMainLoop.c:6960 +#: src/LYMainLoop.c:6937 msgid "Current URL is empty." msgstr "URL sekarang kosong." -#: src/LYMainLoop.c:6962 src/LYUtils.c:1828 +#: src/LYMainLoop.c:6939 src/LYUtils.c:1828 msgid "Copy to clipboard failed." msgstr "Salin ke clipboard gagal." -#: src/LYMainLoop.c:6964 +#: src/LYMainLoop.c:6941 msgid "Document URL put to clipboard." msgstr "URL dokumen diletakan ke clipboard." -#: src/LYMainLoop.c:6966 +#: src/LYMainLoop.c:6943 msgid "Link URL put to clipboard." msgstr "Sambungan URL diletakan ke clipboard." -#: src/LYMainLoop.c:6993 +#: src/LYMainLoop.c:6970 msgid "No URL in the clipboard." msgstr "Tidak ada URL dalam clipboard." -#: src/LYMainLoop.c:7664 src/LYMainLoop.c:7834 +#: src/LYMainLoop.c:7641 src/LYMainLoop.c:7811 msgid "-index-" msgstr "-index-" -#: src/LYMainLoop.c:7774 +#: src/LYMainLoop.c:7751 msgid "lynx: Can't access startfile" msgstr "lynx: Tidak dapat mengakses startfile" -#: src/LYMainLoop.c:7786 +#: src/LYMainLoop.c:7763 msgid "lynx: Start file could not be found or is not text/html or text/plain" msgstr "lynx: Start file tidak dapat ditemukana atau bukan teks/html atau teks/plain" -#: src/LYMainLoop.c:7787 +#: src/LYMainLoop.c:7764 msgid " Exiting..." msgstr " Keluar..." -#: src/LYMainLoop.c:7828 +#: src/LYMainLoop.c:7805 msgid "-more-" msgstr "-lebih-" @@ -5182,38 +5179,38 @@ msgstr "Lunx: tidak dapat memulai, berkas aturan CERN %s tidak tersedia\n" msgid "(no name)" msgstr "(tidak ada nama)" -#: src/LYReadCFG.c:1881 +#: src/LYReadCFG.c:1882 #, c-format msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n" msgstr "Lebih dari %d nested lynx.cfg termasuk -- mungkin disana ada sebuah loop?!?\n" -#: src/LYReadCFG.c:1883 +#: src/LYReadCFG.c:1884 #, c-format msgid "Last attempted include was '%s',\n" msgstr "Percobaan terakhir termasuk '%s',\n" -#: src/LYReadCFG.c:1884 +#: src/LYReadCFG.c:1885 #, c-format msgid "included from '%s'.\n" msgstr "dimasukan dari '%s'.\n" -#: src/LYReadCFG.c:2292 src/LYReadCFG.c:2305 src/LYReadCFG.c:2363 +#: src/LYReadCFG.c:2289 src/LYReadCFG.c:2302 src/LYReadCFG.c:2360 msgid "The following is read from your lynx.cfg file." msgstr "Berikut dibaca dari berkas lynx.cfg anda." -#: src/LYReadCFG.c:2293 src/LYReadCFG.c:2306 +#: src/LYReadCFG.c:2290 src/LYReadCFG.c:2303 msgid "Please read the distribution" msgstr "Mohon baca distribusi" -#: src/LYReadCFG.c:2299 src/LYReadCFG.c:2309 +#: src/LYReadCFG.c:2296 src/LYReadCFG.c:2306 msgid "for more comments." msgstr "Untuk komentar lebih." -#: src/LYReadCFG.c:2345 +#: src/LYReadCFG.c:2342 msgid "RELOAD THE CHANGES" msgstr "MUAT KEMBALI PERUBAHAN" -#: src/LYReadCFG.c:2353 +#: src/LYReadCFG.c:2350 msgid "Your primary configuration" msgstr "Konfigurasi Utama Anda" @@ -5706,6 +5703,10 @@ msgid "" "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 "" +"Berikut mengijinkan anda untuk mendefinisikan berkas sub-bookmark dan deskripsi.\n" +"Format adalah multi_bookmark<huruf_besaar>=<nama berkas>, <deskripsi>\n" +"Sampai ke 26 berkas bookmark (untuk huruf besar bahasa inggris) diijinkan.\n" +"Kita memulai dengan \"multi_bookmarkB\" karena 'A' adalah baku (lihat diatas).\n" #: src/LYrcFile.c:448 msgid "" @@ -5717,6 +5718,13 @@ msgid "" "could leave this field blank, but then you won't have it included in\n" "your mailed comments.\n" msgstr "" +"personal_mail_address menspesifikasikan alamat email pribadi anda.\n" +"Alamat akan dikirimkan ketika transfer berkas HTTP untuk tujuan otorisasi\n" +"dan pencatatan, dan untuk mengirimkan komentar.\n" +"Jika anda tidak ingin informasi ini dikirimkan keluar, set NO_FROM_HEADER\n" +"ke TRUE dalam lynx.cfg, atau gunakan opsi baris perintah -nofrom. Anda\n" +"juga dapat meninggalkan daerah ini kosong, tetapi nanti anda tidak akan\n" +"memasukannya ke komentar surat anda.\n" #: src/LYrcFile.c:457 msgid "" @@ -5733,6 +5741,18 @@ msgid "" "an error response, though the sending of an unacceptable response\n" "is also allowed.\n" msgstr "" +"preferred_charset menspesifikasikan set karakter dalam notasi MIME (e.g,\n" +"ISO-8859-2, ISO-8859-5) dimana Lynx akan mengindikasikan kesukaan anda\n" +"dalam permintaan ke server http menggunakan sebuah header Accept-Charset.\n" +"Nilai seharusnya TIDAK termasuk ISO-8859-1 atau US-ASCII, karena nilai itu\n" +"selalu diasumsikan secara baku. Mungkin berupa sebuah daftar dipisahkan koma.\n" +"Jika sebuah berkas dalam set karakter tersedia, server akan mengirimkannya.\n" +"Jika tidak ada header Accept-Charset yang ada, baku adalah set karakter apapun\n" +"yang diterima. Jika sebuah header Accept-Charset header ada, dan jika server\n" +"tidak dapat mengirimkan sebuah balasan dimana itu dapat diterima\n" +"menurut header Accept-Charset, maka server SEHARUSNYA mengirimkan sebuah\n" +"pesan balasan error, walaupun pengiriman dari sebuah balasan tidak diterima\n" +"juga diijinkan.\n" #: src/LYrcFile.c:473 msgid "" @@ -5742,6 +5762,11 @@ msgid "" "If a file in that language is available, the server will send it.\n" "Otherwise, the server will send the file in its default language.\n" msgstr "" +"preferred_language menspesifikasikan bahasa dalam notasi MIME (e.g., en,\n" +"fr, mungkin berupa daftar dipisahkan koma dalam kesukaan menurun)\n" +"dimana Lynx akan mengindikasikan kesukaan anda dalam permintaan ke server http.\n" +"Jika sebuah berkas dalam bahasa itu tersedia, server akan mengirimkannya.\n" +"Jika tidak, server akan mengirim berkas dalam bahasa bakunya.\n" #: src/LYrcFile.c:484 msgid "" @@ -5755,6 +5780,15 @@ msgid "" " or compromise security. This should only be set to \"on\" if\n" " you are viewing trusted source information.\n" msgstr "" +"Jika run_all_execution_links di set ke \"on\" maka seluruh link eksekusi lokal\n" +"akan dieksekusi ketika mereka dipilih.\n" +"\n" +"PERINGATAN - Ini mungkin akan SANGAT berbahaya. Karena anda mungkin melihat\n" +" informasi yang ditulis oleh sumber yang tidak diketahui dan\n" +" tidak dipercaya dimana ada kemungkinan link ke Trojan Horse dapat\n" +" ditulis. Trojan horse link dapat ditulis untuk menghapus berkas\n" +" atau kompromi keamanan. Ini seharusnya hanya diset ke \"on\" jika\n" +" anda melihat sumber informasi yang dipercaya.\n" #: src/LYrcFile.c:495 msgid "" @@ -5771,6 +5805,17 @@ msgid "" " or compromise security. This should only be set to \"on\" if\n" " you are viewing trusted source information.\n" msgstr "" +"Jika run_execution_links_on_local_files diset ke \"on\" maka seluruh link\n" +"eksekusi lokal yang ditemukan dalam berkas LOCAL akan dieksekusi ketika\n" +"mereka dipilih. Ini berbeda dari run_all_execution_links yang hanya\n" +"berkas yang berada di sistem lokal yang memiliki ijin eksekusi link.\n" +"\n" +"PERINGATAN - Ini mungkin berbahaya. Karena anda mungkin melihat informasi\n" +" yang ditulis oleh sumber yang tidak diketahui dan tidak dipercaya\n" +" ada kemungkinan bahwa link Trojan Horse dapat ditulis. Trojan horse\n" +" link dapat ditulis untuk menghapus berkas atau kompromi keamanan.\n" +" Ini seharusnya diset ke \"on\" jika anda melihat ke sumber\n" +" informasi yang dapat dipercaya.\n" #: src/LYrcFile.c:513 msgid "" @@ -5782,6 +5827,13 @@ msgid "" "as the default while a value of \"off\" will set use of radio boxes.\n" "The default can be overridden via the -popup command line toggle.\n" msgstr "" +"select_popups menspesifikasikan apakah OPSI dalam blok SELECT yang kurang\n" +"atribut MULTIPLE ada sebagai sebuah daftar vertikal dari tombol radio atau\n" +"melalui sebuah menu popup. Catat jika sebuah atribut MULTIPLE ada dalam tag\n" +"mulai SELECT, Lynx selalu membuat sebuah daftar vertikal dari checkboxes\n" +"untuk OPSI. Sebuah NILAI dari \"on\" akan menset popups menu\n" +"sebagai baku ketika sebuah nilai dari \"off\" akan menset penggunaan dari boxes.\n" +"Baku dapat dioverridden melalui opsi baris perintah -popup .\n" #: src/LYrcFile.c:523 msgid "" @@ -5801,6 +5853,21 @@ msgid "" "the 'o'ptions menu. If the option settings are saved, the \"on\" and\n" "\"off\" \"show color\" settings will be treated as \"default\".\n" msgstr "" +"show_color menspesifikasikan bagaiman menset mode warna di waktu awal. Sebuah\n" +"nilai dari \"never\" akan memaksa mode warna tidak aktif (perlakukan termina\n" +"sebagai monochrome) di waktu awal walaupun terminal kelihatannya mampu\n" +"menampilkan warna. Sebuah warna dari \"always\" selalu memaksa mode warna aktif\n" +"walaupun terminal tampak seperti monochrome, jika ini didukung oleh perpustakaan\n" +"yang digunakan untuk membuat lynx.\n" +"Sebuah nilai dari \"default\" akan menghasilkan perilaku dengan mengasumsikan\n" +"sebuah terminal monochrome kecuali kapabilitas warna tidak ada ketika awal\n" +"variabel lingkungan COLORTERM diset. Perilaku baku selalu digunakan dalam akun\n" +"anonim atau jika \"option_save\" pembatasan diset.\n" +"Efek dari nilai yang disimpan dapat dioverride melalui opsi baris perintah\n" +"-color dan -nocolor.\n" +"Mode set di waktu awal dapat diubah melalui opsi \"show color\" dalam menu\n" +"'o'ptions. Jika konfigurasi option disimpan, \"on\" dan \"off\" \"show color\"\n" +"konfigurasi akan diperlakukan sebagai \"default\".\n" #: src/LYrcFile.c:540 msgid "" @@ -5814,6 +5881,15 @@ msgid "" "default while a value of \"off\" will set 'hiding' of the cursor.\n" "The default can be overridden via the -show_cursor command line toggle.\n" msgstr "" +"show_cursor menspesifikasikan apakah 'hide' cursor ke kanan (dan\n" +"bawah, jika memungkinkan) dari layar, atau tempatkan itu ke kiri dari\n" +"link saat ini dalam dokumen, atau opsi sekarang dalam jendela popups yang dipilih\n" +"Posisi kursor dikiri dari link sekarang atau opsi berguna untuk antarmuka\n" +"suara atau braile, dan ketika termina adalah salah satu yang tidak membedakan\n" +"link sekarang berdasarkan dari highlighting atau warna. Sebuah nilai dari \"on\"\n" +"akan menset posisi ke kiri sebagai baku ketika nilai dari \"off\" akan menset\n" +"'hiding' dari kursor.\n" +"baku dapat dioverriden melalui opsi baris perintah -show_cursor.\n" #: src/LYrcFile.c:551 msgid "" @@ -5823,6 +5899,11 @@ msgid "" "restricted via a command line switch. If display of hidden files\n" "is disabled, creation of such files via Lynx also is disabled.\n" msgstr "" +"show_dotfiles menspesifikasikan bahwa daftar direktori seharusnya termasuk\n" +"\"hidden\" (dot) files/direktori. Jika diset \"on\", ini akan dihargai jika\n" +"aktif melalui userdefs.h dan/atau lynx.cfg, dan tidak terbatas melalui\n" +"sebuah opsi baris perintah. Jika penampilan dari berkas tersembunyi tidak \n" +"aktif, pembuatan dari berkas seperti itu melalui Lynx juga tidak aktif.\n" #: src/LYrcFile.c:562 msgid "" @@ -5836,6 +5917,14 @@ msgid "" "user modes. When this option is set to \"standard\", the menu will be\n" "presented regardless of user mode.\n" msgstr "" +"Jika sub_bookmarks tidak di ubah \"off\", dan multiple bookmark telah\n" +"didefinisikan (lihat dibawah), maka semua operasi bookmark pertama akan\n" +"menanyakan pengguna untuk memilih sebuah berkas sub-bookmark aktif. Jika\n" +"bookmark_file Lynx baku didefinisikan (lihat atas), ini akan digunakan\n" +"sebagai pemilihan baku. Ketika opsi ini diset ke \"advanced\", dan mode\n" +"pengguna advanced, perintah bookmark 'v'iew akan memanggil sebuah prompt\n" +"statusline daripada menu terlihat dalam mode pengguna pemula dan menengah.\n" +"Ketika opsi ini diset ke \"standard\", menu akan ditampilkan tidak perduli mode pengguna.\n" #: src/LYrcFile.c:576 msgid "" @@ -5846,6 +5935,12 @@ msgid "" "Use \"ADVANCED\" to see the URL of the currently selected link at the\n" "bottom of the screen.\n" msgstr "" +"user_mode menspesifikasikan tingkat pengetahuan pengguna dengan Lynx. Baku\n" +"adalah \"NOVICE\" dimana menampilkan kelebihan dua baris dari bantuan di bawah\n" +"layar untuk menolong pengguna menggunakan perintah dasar Lynx.\n" +"Set user_mode ke \"INTERMEDIATE\" untuk menon-aktifkan informasi tambahan.\n" +"Gunakan \"ADVANCED\" untuk melihat URL dari link yang saat ini dipilih di\n" +"bawah dari layar.\n" #: src/LYrcFile.c:585 msgid "" @@ -5891,6 +5986,13 @@ msgid "" "and the corresponding keyboard numbers will act as arrow keys,\n" "regardless of whether numlock is on.\n" msgstr "" +"Jika keypad_mode diset ke \"NUMBERS_AS_ARROWS\", maka nomor di keypad\n" +"anda ketika numlock aktif akan berlaku sebagai tombol panah:\n" +" 8 = Panah atas\n" +" 4 = Panah Kiri 6 = Panah Kiri\n" +" 2 = Panah bawah\n" +"dan nomor keyboard yang berhubungan akan berlaku sebagai tombol panah,\n" +"tidak perduli apakah numlock aktif.\n" #: src/LYrcFile.c:828 msgid "" @@ -5910,6 +6012,13 @@ msgid "" "a popup menu, even if the option isn't visible on the screen. Reference\n" "lists and output from the list command also enumerate form inputs.\n" msgstr "" +"Jika keypad_mode diset ke \"LINKS_AND_FORM_FIELD_ARE_NUMBERED\", maka\n" +"nomor akan muncul setelah setiap link dan terlihat dari daerah masukan formulir.\n" +"Nomor digunakan untuk memilih link, atau untuk memindahkan ke \"current link\" ke\n" +"sebuah daerah masukan formulir atau tombol. Sebagai tambahan, opsi dalam menu\n" +"popup terindeks jadi pengguna mugkin mengetikan sebuah nomor opsi untuk memilih\n" +"sebuah opsi dalam sebuah menu popup, bahkan jika opsi tidak terlihat dilayar.\n" +"Daftar referensi dan keluaran dari baris perintah juga mengenumerasi masukan formulir.\n" #: src/LYrcFile.c:841 msgid "" @@ -5955,6 +6064,7 @@ msgid "" msgstr "" #: src/LYrcFile.c:910 +#, fuzzy msgid "" "There is normally no need to edit this file manually, since the defaults\n" "here can be controlled from the Options Screen, and the next time options\n" @@ -5965,6 +6075,16 @@ msgid "" "called \"lynx.cfg\". It has different content and a different format.\n" "It is not this file.\n" msgstr "" +"Berkas Pengguna Baku Lynx\n" +"\n" +"Berkas ini berisi opsi disimpan dari Layar Opsi Lynx (secara normal dengan\n" +"tombol '>'). Disana secara normal tidak dibutuhkan untuk mengubah berkas ini\n" +"secara manual, karena disini baku dapat dikontrol dari Layar Opsi, dan opsi\n" +"selanjutnya disimpan dari Layar Opsi berkas ini akan ditulis ulang.\n" +"Anda telah diperingatkan...\n" +"Jika anda mencari untuk berkas konfigurasi umum - ini secara normal dipanggil\n" +"lynx.cfg, dan ini memiliki isi berbeda dan sebuah format berbeda.\n" +"Ini bukan berkas ini.\n" #~ msgid "Socket read failed for 180,000 tries." #~ msgstr "Pembacaan socket gagal untuk pencobaan 180,000 kali." diff --git a/po/lynx.pot b/po/lynx.pot index 23e59ff7..7c97b5c9 100644 --- a/po/lynx.pot +++ b/po/lynx.pot @@ -1,9 +1,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: lynx 2.8.7dev.10\n" +"Project-Id-Version: lynx 2.8.7dev.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-12-07 20:02-0500\n" +"POT-Creation-Date: 2008-12-26 20:04-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -2414,277 +2414,282 @@ msgstr "" msgid "Current directory is " msgstr "" -#. HTGopher.c +#. HTFTP.c #: LYMessages.c:765 +msgid "Symbolic Link" +msgstr "" + +#. HTGopher.c +#: LYMessages.c:768 msgid "No response from server!" msgstr "" -#: LYMessages.c:766 +#: LYMessages.c:769 msgid "CSO index" msgstr "" -#: LYMessages.c:767 +#: LYMessages.c:770 msgid "" "\n" "This is a searchable index of a CSO database.\n" msgstr "" -#: LYMessages.c:768 +#: LYMessages.c:771 msgid "CSO Search Results" msgstr "" -#: LYMessages.c:769 +#: LYMessages.c:772 #, c-format msgid "Seek fail on %s\n" msgstr "" -#: LYMessages.c:770 +#: LYMessages.c:773 msgid "" "\n" "Press the 's' key and enter search keywords.\n" msgstr "" -#: LYMessages.c:771 +#: LYMessages.c:774 msgid "" "\n" "This is a searchable Gopher index.\n" msgstr "" -#: LYMessages.c:772 +#: LYMessages.c:775 msgid "Gopher index" msgstr "" -#: LYMessages.c:773 +#: LYMessages.c:776 msgid "Gopher Menu" msgstr "" -#: LYMessages.c:774 +#: LYMessages.c:777 msgid " Search Results" msgstr "" -#: LYMessages.c:775 +#: LYMessages.c:778 msgid "Sending CSO/PH request." msgstr "" -#: LYMessages.c:776 +#: LYMessages.c:779 msgid "Sending Gopher request." msgstr "" -#: LYMessages.c:777 +#: LYMessages.c:780 msgid "CSO/PH request sent; waiting for response." msgstr "" -#: LYMessages.c:778 +#: LYMessages.c:781 msgid "Gopher request sent; waiting for response." msgstr "" -#: LYMessages.c:779 +#: LYMessages.c:782 msgid "" "\n" "Please enter search keywords.\n" msgstr "" -#: LYMessages.c:780 +#: LYMessages.c:783 msgid "" "\n" "The keywords that you enter will allow you to search on a" msgstr "" -#: LYMessages.c:781 +#: LYMessages.c:784 msgid " person's name in the database.\n" msgstr "" #. HTNews.c -#: LYMessages.c:784 +#: LYMessages.c:787 msgid "Connection closed ???" msgstr "" -#: LYMessages.c:785 +#: LYMessages.c:788 msgid "Cannot open temporary file for news POST." msgstr "" -#: LYMessages.c:786 +#: LYMessages.c:789 msgid "This client does not contain support for posting to news with SSL." msgstr "" #. HTStyle.c -#: LYMessages.c:789 +#: LYMessages.c:792 #, c-format msgid "Style %d `%s' SGML:%s. Font %s %.1f point.\n" msgstr "" -#: LYMessages.c:791 +#: LYMessages.c:794 #, c-format msgid "\tAlign=%d, %d tabs. (%.0f before, %.0f after)\n" msgstr "" -#: LYMessages.c:792 +#: LYMessages.c:795 #, c-format msgid "\t\tTab kind=%d at %.0f\n" msgstr "" #. HTTP.c -#: LYMessages.c:795 +#: LYMessages.c:798 msgid "Can't proceed without a username and password." msgstr "" -#: LYMessages.c:796 +#: LYMessages.c:799 msgid "Can't retry with authorization! Contact the server's WebMaster." msgstr "" -#: LYMessages.c:797 +#: LYMessages.c:800 msgid "Can't retry with proxy authorization! Contact the server's WebMaster." msgstr "" -#: LYMessages.c:798 +#: LYMessages.c:801 msgid "Retrying with proxy authorization information." msgstr "" -#: LYMessages.c:799 +#: LYMessages.c:802 #, c-format msgid "SSL error:%s-Continue?" msgstr "" #. HTWAIS.c -#: LYMessages.c:802 +#: LYMessages.c:805 msgid "HTWAIS: Return message too large." msgstr "" -#: LYMessages.c:803 +#: LYMessages.c:806 msgid "Enter WAIS query: " msgstr "" #. Miscellaneous status -#: LYMessages.c:806 +#: LYMessages.c:809 msgid "Retrying as HTTP0 request." msgstr "" -#: LYMessages.c:807 +#: LYMessages.c:810 #, c-format msgid "Transferred %d bytes" msgstr "" -#: LYMessages.c:808 +#: LYMessages.c:811 msgid "Data transfer complete" msgstr "" -#: LYMessages.c:809 +#: LYMessages.c:812 #, c-format msgid "Error processing line %d of %s\n" msgstr "" #. Lynx internal page titles -#: LYMessages.c:812 +#: LYMessages.c:815 msgid "Address List Page" msgstr "" -#: LYMessages.c:813 +#: LYMessages.c:816 msgid "Bookmark file" msgstr "" -#: LYMessages.c:814 +#: LYMessages.c:817 msgid "Configuration Definitions" msgstr "" -#: LYMessages.c:815 +#: LYMessages.c:818 msgid "Cookie Jar" msgstr "" -#: LYMessages.c:816 +#: LYMessages.c:819 msgid "Current Key Map" msgstr "" -#: LYMessages.c:817 +#: LYMessages.c:820 msgid "File Management Options" msgstr "" -#: LYMessages.c:818 +#: LYMessages.c:821 msgid "Download Options" msgstr "" -#: LYMessages.c:819 +#: LYMessages.c:822 msgid "History Page" msgstr "" -#: LYMessages.c:820 +#: LYMessages.c:823 msgid "Cache Jar" msgstr "" -#: LYMessages.c:821 +#: LYMessages.c:824 msgid "List Page" msgstr "" -#: LYMessages.c:822 +#: LYMessages.c:825 msgid "Lynx.cfg Information" msgstr "" -#: LYMessages.c:823 +#: LYMessages.c:826 msgid "Converted Mosaic Hotlist" msgstr "" -#: LYMessages.c:824 +#: LYMessages.c:827 msgid "Options Menu" msgstr "" -#: LYMessages.c:825 +#: LYMessages.c:828 msgid "File Permission Options" msgstr "" -#: LYMessages.c:826 +#: LYMessages.c:829 msgid "Printing Options" msgstr "" -#: LYMessages.c:827 +#: LYMessages.c:830 msgid "Information about the current document" msgstr "" -#: LYMessages.c:828 +#: LYMessages.c:831 msgid "Your recent statusline messages" msgstr "" -#: LYMessages.c:829 +#: LYMessages.c:832 msgid "Upload Options" msgstr "" -#: LYMessages.c:830 +#: LYMessages.c:833 msgid "Visited Links Page" msgstr "" #. CONFIG_DEF_TITLE subtitles -#: LYMessages.c:833 +#: LYMessages.c:836 msgid "See also" msgstr "" -#: LYMessages.c:834 +#: LYMessages.c:837 msgid "your" msgstr "" -#: LYMessages.c:835 +#: LYMessages.c:838 msgid "for runtime options" msgstr "" -#: LYMessages.c:836 +#: LYMessages.c:839 msgid "compile time options" msgstr "" -#: LYMessages.c:837 +#: LYMessages.c:840 msgid "color-style configuration" msgstr "" -#: LYMessages.c:838 +#: LYMessages.c:841 msgid "latest release" msgstr "" -#: LYMessages.c:839 +#: LYMessages.c:842 msgid "pre-release version" msgstr "" -#: LYMessages.c:840 +#: LYMessages.c:843 msgid "development version" msgstr "" #. #define AUTOCONF_CONFIG_CACHE -#: LYMessages.c:842 +#: LYMessages.c:845 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" @@ -2692,62 +2697,62 @@ msgid "" msgstr "" #. #define AUTOCONF_LYNXCFG_H -#: LYMessages.c:846 +#: LYMessages.c:849 msgid "" "The following data were used as automatically-configured compile-time\n" "definitions when this copy of Lynx was built." msgstr "" #. #define DIRED_NOVICELINE -#: LYMessages.c:851 +#: LYMessages.c:854 msgid "" " C)reate D)ownload E)dit F)ull menu M)odify R)emove T)ag U)" "pload \n" msgstr "" -#: LYMessages.c:852 +#: LYMessages.c:855 msgid "Failed to obtain status of current link!" msgstr "" #. #define INVALID_PERMIT_URL -#: LYMessages.c:855 +#: LYMessages.c:858 msgid "Special URL only valid from current File Permission menu!" msgstr "" -#: LYMessages.c:859 +#: LYMessages.c:862 msgid "External support is currently disabled." msgstr "" #. new with 2.8.4dev.21 -#: LYMessages.c:863 +#: LYMessages.c:866 msgid "Changing working-directory is currently disabled." msgstr "" -#: LYMessages.c:864 +#: LYMessages.c:867 msgid "Linewrap OFF!" msgstr "" -#: LYMessages.c:865 +#: LYMessages.c:868 msgid "Linewrap ON!" msgstr "" -#: LYMessages.c:866 +#: LYMessages.c:869 msgid "Parsing nested-tables toggled OFF! Reloading..." msgstr "" -#: LYMessages.c:867 +#: LYMessages.c:870 msgid "Parsing nested-tables toggled ON! Reloading..." msgstr "" -#: LYMessages.c:868 +#: LYMessages.c:871 msgid "Shifting is disabled while line-wrap is in effect" msgstr "" -#: LYMessages.c:869 +#: LYMessages.c:872 msgid "Trace not supported" msgstr "" -#: LYMessages.c:790 +#: LYMessages.c:793 #, c-format msgid "\tIndents: first=%.0f others=%.0f, Height=%.1f Desc=%.1f\n" msgstr "" @@ -2793,7 +2798,7 @@ msgstr "" msgid "Loading failed, use a previous copy." msgstr "" -#: WWW/Library/Implementation/HTAccess.c:1047 src/GridText.c:8546 +#: WWW/Library/Implementation/HTAccess.c:1047 src/GridText.c:8542 msgid "Loading incomplete." msgstr "" @@ -2818,7 +2823,7 @@ msgstr "" #. * hack: if we fail in HTAccess.c #. * avoid duplicating URL, oh. #. -#: WWW/Library/Implementation/HTAccess.c:1087 src/LYMainLoop.c:7779 +#: WWW/Library/Implementation/HTAccess.c:1087 src/LYMainLoop.c:7756 msgid "Can't Access" msgstr "" @@ -2843,29 +2848,20 @@ msgstr "" 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:1733 -#: WWW/Library/Implementation/HTFTP.c:2350 -msgid "Symbolic Link" -msgstr "" - -#: WWW/Library/Implementation/HTFTP.c:2707 +#: WWW/Library/Implementation/HTFTP.c:2977 msgid "Receiving FTP directory." msgstr "" -#: WWW/Library/Implementation/HTFTP.c:2843 +#: WWW/Library/Implementation/HTFTP.c:3113 #, c-format msgid "Transferred %d bytes (%5d)" msgstr "" -#: WWW/Library/Implementation/HTFTP.c:3194 +#: WWW/Library/Implementation/HTFTP.c:3467 msgid "connect for data" msgstr "" -#: WWW/Library/Implementation/HTFTP.c:3855 +#: WWW/Library/Implementation/HTFTP.c:4128 msgid "Receiving FTP file." msgstr "" @@ -3078,80 +3074,80 @@ msgstr "" msgid "Certificate issued by: %s" msgstr "" -#: WWW/Library/Implementation/HTTP.c:620 +#: WWW/Library/Implementation/HTTP.c:643 msgid "This client does not contain support for HTTPS URLs." msgstr "" -#: WWW/Library/Implementation/HTTP.c:645 +#: WWW/Library/Implementation/HTTP.c:668 msgid "Unable to connect to remote host." msgstr "" -#: WWW/Library/Implementation/HTTP.c:669 +#: WWW/Library/Implementation/HTTP.c:692 msgid "Retrying connection without TLS." msgstr "" -#: WWW/Library/Implementation/HTTP.c:714 +#: WWW/Library/Implementation/HTTP.c:737 msgid "no issuer was found" msgstr "" -#: WWW/Library/Implementation/HTTP.c:716 +#: WWW/Library/Implementation/HTTP.c:739 msgid "issuer is not a CA" msgstr "" -#: WWW/Library/Implementation/HTTP.c:718 +#: WWW/Library/Implementation/HTTP.c:741 msgid "the certificate has no known issuer" msgstr "" -#: WWW/Library/Implementation/HTTP.c:720 +#: WWW/Library/Implementation/HTTP.c:743 msgid "the certificate has been revoked" msgstr "" -#: WWW/Library/Implementation/HTTP.c:722 +#: WWW/Library/Implementation/HTTP.c:745 msgid "the certificate is not trusted" msgstr "" -#: WWW/Library/Implementation/HTTP.c:807 +#: WWW/Library/Implementation/HTTP.c:821 #, c-format msgid "Verified connection to %s (cert=%s)" msgstr "" -#: WWW/Library/Implementation/HTTP.c:855 WWW/Library/Implementation/HTTP.c:901 +#: WWW/Library/Implementation/HTTP.c:869 WWW/Library/Implementation/HTTP.c:911 #, c-format msgid "Verified connection to %s (subj=%s)" msgstr "" -#: WWW/Library/Implementation/HTTP.c:931 +#: WWW/Library/Implementation/HTTP.c:941 msgid "Can't find common name in certificate" msgstr "" -#: WWW/Library/Implementation/HTTP.c:934 +#: WWW/Library/Implementation/HTTP.c:944 #, c-format msgid "SSL error:host(%s)!=cert(%s)-Continue?" msgstr "" -#: WWW/Library/Implementation/HTTP.c:947 +#: WWW/Library/Implementation/HTTP.c:957 #, c-format msgid "UNVERIFIED connection to %s (cert=%s)" msgstr "" -#: WWW/Library/Implementation/HTTP.c:956 +#: WWW/Library/Implementation/HTTP.c:966 #, c-format msgid "Secure %d-bit %s (%s) HTTP connection" msgstr "" -#: WWW/Library/Implementation/HTTP.c:1426 +#: WWW/Library/Implementation/HTTP.c:1433 msgid "Sending HTTP request." msgstr "" -#: WWW/Library/Implementation/HTTP.c:1465 +#: WWW/Library/Implementation/HTTP.c:1472 msgid "Unexpected network write error; connection aborted." msgstr "" -#: WWW/Library/Implementation/HTTP.c:1471 +#: WWW/Library/Implementation/HTTP.c:1478 msgid "HTTP request sent; waiting for response." msgstr "" -#: WWW/Library/Implementation/HTTP.c:1539 +#: WWW/Library/Implementation/HTTP.c:1546 msgid "Unexpected network read error; connection aborted." msgstr "" @@ -3164,7 +3160,7 @@ msgstr "" #. * line and possibly other headers, so we'll deal with them by #. * showing the full header to the user as text/plain. - FM #. -#: WWW/Library/Implementation/HTTP.c:1733 +#: WWW/Library/Implementation/HTTP.c:1740 msgid "Got unexpected Informational Status." msgstr "" @@ -3174,7 +3170,7 @@ msgstr "" #. * content. We'll instruct the user to do that, and #. * restore the current document. - FM #. -#: WWW/Library/Implementation/HTTP.c:1767 +#: WWW/Library/Implementation/HTTP.c:1774 msgid "Request fulfilled. Reset Content." msgstr "" @@ -3184,27 +3180,27 @@ msgstr "" #. * status is inappropriate. We'll deal with it by showing #. * the full header to the user as text/plain. - FM #. -#: WWW/Library/Implementation/HTTP.c:1884 +#: WWW/Library/Implementation/HTTP.c:1891 msgid "Got unexpected 304 Not Modified status." msgstr "" -#: WWW/Library/Implementation/HTTP.c:1947 +#: WWW/Library/Implementation/HTTP.c:1954 msgid "Redirection of POST content requires user approval." msgstr "" -#: WWW/Library/Implementation/HTTP.c:1962 +#: WWW/Library/Implementation/HTTP.c:1969 msgid "Have POST content. Treating Permanent Redirection as Temporary.\n" msgstr "" -#: WWW/Library/Implementation/HTTP.c:2004 +#: WWW/Library/Implementation/HTTP.c:2011 msgid "Retrying with access authorization information." msgstr "" -#: WWW/Library/Implementation/HTTP.c:2016 +#: WWW/Library/Implementation/HTTP.c:2023 msgid "Show the 401 message body?" msgstr "" -#: WWW/Library/Implementation/HTTP.c:2059 +#: WWW/Library/Implementation/HTTP.c:2066 msgid "Show the 407 message body?" msgstr "" @@ -3212,7 +3208,7 @@ msgstr "" #. * Bad or unknown server_status number. Take a chance and hope #. * there is something to display. - FM #. -#: WWW/Library/Implementation/HTTP.c:2159 +#: WWW/Library/Implementation/HTTP.c:2166 msgid "Unknown status reply from server!" msgstr "" @@ -3466,30 +3462,30 @@ msgstr "" msgid "unknown form field" msgstr "" -#: src/GridText.c:10279 +#: src/GridText.c:10275 msgid "Can't open file for uploading" msgstr "" -#: src/GridText.c:11438 +#: src/GridText.c:11434 #, c-format msgid "Submitting %s" msgstr "" #. ugliness has happened; inform user and do the best we can -#: src/GridText.c:12491 +#: src/GridText.c:12487 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!" msgstr "" #. don't show previous state -#: src/GridText.c:12628 +#: src/GridText.c:12624 msgid "Wrap lines to fit displayed area?" msgstr "" -#: src/GridText.c:12680 +#: src/GridText.c:12676 msgid "Very long lines have been wrapped!" msgstr "" -#: src/GridText.c:13185 +#: src/GridText.c:13181 msgid "Very long lines have been truncated!" msgstr "" @@ -3583,31 +3579,31 @@ msgstr "" msgid "Y/N/A/V" msgstr "" -#: src/HTML.c:5911 +#: src/HTML.c:5913 msgid "Description:" msgstr "" -#: src/HTML.c:5916 +#: src/HTML.c:5918 msgid "(none)" msgstr "" -#: src/HTML.c:5920 +#: src/HTML.c:5922 msgid "Filepath:" msgstr "" -#: src/HTML.c:5926 +#: src/HTML.c:5928 msgid "(unknown)" msgstr "" -#: src/HTML.c:7353 +#: src/HTML.c:7355 msgid "Document has only hidden links. Use the 'l'ist command." msgstr "" -#: src/HTML.c:7852 +#: src/HTML.c:7854 msgid "Source cache error - disk full?" msgstr "" -#: src/HTML.c:7865 +#: src/HTML.c:7867 msgid "Source cache error - not enough memory!" msgstr "" @@ -3685,19 +3681,19 @@ msgstr "" msgid "Exiting via interrupt:" msgstr "" -#: src/LYCookie.c:2461 +#: src/LYCookie.c:2477 msgid "(from a previous session)" msgstr "" -#: src/LYCookie.c:2522 +#: src/LYCookie.c:2538 msgid "Maximum Gobble Date:" msgstr "" -#: src/LYCookie.c:2562 +#: src/LYCookie.c:2577 msgid "Internal" msgstr "" -#: src/LYCookie.c:2563 +#: src/LYCookie.c:2578 msgid "cookie_domain_flag_set error, aborting program" msgstr "" @@ -3757,39 +3753,39 @@ msgstr "" msgid "Editor returned with error status %s" msgstr "" -#: src/LYDownload.c:504 +#: src/LYDownload.c:506 msgid "Downloaded link:" msgstr "" -#: src/LYDownload.c:509 +#: src/LYDownload.c:511 msgid "Suggested file name:" msgstr "" -#: src/LYDownload.c:514 +#: src/LYDownload.c:516 msgid "Standard download options:" msgstr "" -#: src/LYDownload.c:515 +#: src/LYDownload.c:517 msgid "Download options:" msgstr "" -#: src/LYDownload.c:531 +#: src/LYDownload.c:533 msgid "Save to disk" msgstr "" -#: src/LYDownload.c:545 +#: src/LYDownload.c:547 msgid "View temporary file" msgstr "" -#: src/LYDownload.c:552 +#: src/LYDownload.c:554 msgid "Save to disk disabled." msgstr "" -#: src/LYDownload.c:556 src/LYPrint.c:1310 +#: src/LYDownload.c:558 src/LYPrint.c:1310 msgid "Local additions:" msgstr "" -#: src/LYDownload.c:567 src/LYUpload.c:211 +#: src/LYDownload.c:569 src/LYUpload.c:211 msgid "No Name Given" msgstr "" @@ -4204,19 +4200,19 @@ msgstr "" msgid "No system mailer configured" msgstr "" -#: src/LYMain.c:1023 +#: src/LYMain.c:1025 msgid "No Winsock found, sorry." msgstr "" -#: src/LYMain.c:1226 +#: src/LYMain.c:1222 msgid "You MUST define a valid TMP or TEMP area!" msgstr "" -#: src/LYMain.c:1279 src/LYMainLoop.c:5074 +#: src/LYMain.c:1275 src/LYMainLoop.c:5051 msgid "No such directory" msgstr "" -#: src/LYMain.c:1464 +#: src/LYMain.c:1460 #, c-format msgid "" "\n" @@ -4224,7 +4220,7 @@ msgid "" "\n" msgstr "" -#: src/LYMain.c:1474 +#: src/LYMain.c:1470 #, c-format msgid "" "\n" @@ -4232,7 +4228,7 @@ msgid "" "\n" msgstr "" -#: src/LYMain.c:1503 +#: src/LYMain.c:1499 #, c-format msgid "" "\n" @@ -4240,7 +4236,7 @@ msgid "" "\n" msgstr "" -#: src/LYMain.c:1579 +#: src/LYMain.c:1575 #, c-format msgid "" "\n" @@ -4248,172 +4244,172 @@ msgid "" "\n" msgstr "" -#: src/LYMain.c:1654 +#: src/LYMain.c:1650 #, c-format msgid "Ignored %d characters from standard input.\n" msgstr "" -#: src/LYMain.c:1656 +#: src/LYMain.c:1652 #, c-format msgid "Use \"-stdin\" or \"-\" to tell how to handle piped input.\n" msgstr "" -#: src/LYMain.c:1804 +#: src/LYMain.c:1800 msgid "Warning:" msgstr "" -#: src/LYMain.c:2372 +#: src/LYMain.c:2365 msgid "persistent cookies state will be changed in next session only." msgstr "" -#: src/LYMain.c:2617 src/LYMain.c:2662 +#: src/LYMain.c:2610 src/LYMain.c:2655 #, c-format msgid "Lynx: ignoring unrecognized charset=%s\n" msgstr "" -#: src/LYMain.c:3181 +#: src/LYMain.c:3174 #, c-format msgid "%s Version %s (%s)" msgstr "" -#: src/LYMain.c:3219 +#: src/LYMain.c:3212 #, c-format msgid "Built on %s %s %s\n" msgstr "" -#: src/LYMain.c:3241 +#: src/LYMain.c:3234 msgid "Copyrights held by the Lynx Developers Group," msgstr "" -#: src/LYMain.c:3242 +#: src/LYMain.c:3235 msgid "the University of Kansas, CERN, and other contributors." msgstr "" -#: src/LYMain.c:3243 +#: src/LYMain.c:3236 msgid "Distributed under the GNU General Public License (Version 2)." msgstr "" -#: src/LYMain.c:3244 +#: src/LYMain.c:3237 msgid "See http://lynx.isc.org/ and the online help for more information." msgstr "" -#: src/LYMain.c:4065 +#: src/LYMain.c:4056 #, c-format msgid "USAGE: %s [options] [file]\n" msgstr "" -#: src/LYMain.c:4066 +#: src/LYMain.c:4057 #, c-format msgid "Options are:\n" msgstr "" -#: src/LYMain.c:4365 +#: src/LYMain.c:4356 #, c-format msgid "%s: Invalid Option: %s\n" msgstr "" -#: src/LYMainLoop.c:594 +#: src/LYMainLoop.c:571 #, c-format msgid "Internal error: Invalid mouse link %d!" msgstr "" -#: src/LYMainLoop.c:714 src/LYMainLoop.c:5096 +#: src/LYMainLoop.c:691 src/LYMainLoop.c:5073 msgid "A URL specified by the user" msgstr "" -#: src/LYMainLoop.c:1173 +#: src/LYMainLoop.c:1150 msgid "Enctype multipart/form-data not yet supported! Cannot submit." msgstr "" #. #. * Make a name for this help file. #. -#: src/LYMainLoop.c:3105 +#: src/LYMainLoop.c:3082 msgid "Help Screen" msgstr "" -#: src/LYMainLoop.c:3226 +#: src/LYMainLoop.c:3203 msgid "System Index" msgstr "" -#: src/LYMainLoop.c:3585 src/LYMainLoop.c:5320 +#: src/LYMainLoop.c:3562 src/LYMainLoop.c:5297 msgid "Entry into main screen" msgstr "" -#: src/LYMainLoop.c:3843 +#: src/LYMainLoop.c:3820 msgid "No next document present" msgstr "" -#: src/LYMainLoop.c:4139 +#: src/LYMainLoop.c:4116 msgid "charset for this document specified explicitly, sorry..." msgstr "" -#: src/LYMainLoop.c:5052 +#: src/LYMainLoop.c:5029 msgid "cd to:" msgstr "" -#: src/LYMainLoop.c:5077 +#: src/LYMainLoop.c:5054 msgid "A component of path is not a directory" msgstr "" -#: src/LYMainLoop.c:5080 +#: src/LYMainLoop.c:5057 msgid "failed to change directory" msgstr "" -#: src/LYMainLoop.c:6252 +#: src/LYMainLoop.c:6229 msgid "Reparsing document under current settings..." msgstr "" -#: src/LYMainLoop.c:6543 +#: src/LYMainLoop.c:6520 #, c-format msgid "Fatal error - could not open output file %s\n" msgstr "" -#: src/LYMainLoop.c:6880 +#: src/LYMainLoop.c:6857 msgid "TABLE center enable." msgstr "" -#: src/LYMainLoop.c:6883 +#: src/LYMainLoop.c:6860 msgid "TABLE center disable." msgstr "" -#: src/LYMainLoop.c:6960 +#: src/LYMainLoop.c:6937 msgid "Current URL is empty." msgstr "" -#: src/LYMainLoop.c:6962 src/LYUtils.c:1828 +#: src/LYMainLoop.c:6939 src/LYUtils.c:1828 msgid "Copy to clipboard failed." msgstr "" -#: src/LYMainLoop.c:6964 +#: src/LYMainLoop.c:6941 msgid "Document URL put to clipboard." msgstr "" -#: src/LYMainLoop.c:6966 +#: src/LYMainLoop.c:6943 msgid "Link URL put to clipboard." msgstr "" -#: src/LYMainLoop.c:6993 +#: src/LYMainLoop.c:6970 msgid "No URL in the clipboard." msgstr "" -#: src/LYMainLoop.c:7664 src/LYMainLoop.c:7834 +#: src/LYMainLoop.c:7641 src/LYMainLoop.c:7811 msgid "-index-" msgstr "" -#: src/LYMainLoop.c:7774 +#: src/LYMainLoop.c:7751 msgid "lynx: Can't access startfile" msgstr "" -#: src/LYMainLoop.c:7786 +#: src/LYMainLoop.c:7763 msgid "lynx: Start file could not be found or is not text/html or text/plain" msgstr "" -#: src/LYMainLoop.c:7787 +#: src/LYMainLoop.c:7764 msgid " Exiting..." msgstr "" -#: src/LYMainLoop.c:7828 +#: src/LYMainLoop.c:7805 msgid "-more-" msgstr "" @@ -5109,38 +5105,38 @@ msgstr "" msgid "(no name)" msgstr "" -#: src/LYReadCFG.c:1881 +#: src/LYReadCFG.c:1882 #, c-format msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n" msgstr "" -#: src/LYReadCFG.c:1883 +#: src/LYReadCFG.c:1884 #, c-format msgid "Last attempted include was '%s',\n" msgstr "" -#: src/LYReadCFG.c:1884 +#: src/LYReadCFG.c:1885 #, c-format msgid "included from '%s'.\n" msgstr "" -#: src/LYReadCFG.c:2292 src/LYReadCFG.c:2305 src/LYReadCFG.c:2363 +#: src/LYReadCFG.c:2289 src/LYReadCFG.c:2302 src/LYReadCFG.c:2360 msgid "The following is read from your lynx.cfg file." msgstr "" -#: src/LYReadCFG.c:2293 src/LYReadCFG.c:2306 +#: src/LYReadCFG.c:2290 src/LYReadCFG.c:2303 msgid "Please read the distribution" msgstr "" -#: src/LYReadCFG.c:2299 src/LYReadCFG.c:2309 +#: src/LYReadCFG.c:2296 src/LYReadCFG.c:2306 msgid "for more comments." msgstr "" -#: src/LYReadCFG.c:2345 +#: src/LYReadCFG.c:2342 msgid "RELOAD THE CHANGES" msgstr "" -#: src/LYReadCFG.c:2353 +#: src/LYReadCFG.c:2350 msgid "Your primary configuration" msgstr "" @@ -5410,25 +5406,25 @@ msgstr "" msgid "Unexpected access protocol for this URL scheme." msgstr "" -#: src/LYUtils.c:3419 +#: src/LYUtils.c:3423 msgid "Too many tempfiles" msgstr "" -#: src/LYUtils.c:3719 +#: src/LYUtils.c:3723 msgid "unknown restriction" msgstr "" -#: src/LYUtils.c:3750 +#: src/LYUtils.c:3754 #, c-format msgid "No restrictions set.\n" msgstr "" -#: src/LYUtils.c:3753 +#: src/LYUtils.c:3757 #, c-format msgid "Restrictions set:\n" msgstr "" -#: src/LYUtils.c:5131 +#: src/LYUtils.c:5135 msgid "Cannot find HOME directory" msgstr "" diff --git a/src/GridText.c b/src/GridText.c index 3cf376b7..c5dddab8 100644 --- a/src/GridText.c +++ b/src/GridText.c @@ -1,5 +1,5 @@ /* - * $LynxId: GridText.c,v 1.158 2008/12/07 18:50:31 tom Exp $ + * $LynxId: GridText.c,v 1.162 2008/12/30 00:53:29 tom Exp $ * * Character grid hypertext object * =============================== @@ -439,7 +439,6 @@ struct _HText { int hiddenlinkflag; /* ... and how to treat them */ BOOL no_cache; /* Always refresh? */ char LastChar; /* For absorbing white space */ - BOOL IgnoreExcess; /* Ignore chars at wrap point */ /* For Internal use: */ HTStyle *style; /* Current style */ @@ -1116,7 +1115,6 @@ HText *HText_new(HTParentAnchor *anchor) ? YES : NO); self->LastChar = '\0'; - self->IgnoreExcess = FALSE; #ifndef USE_PRETTYSRC if (HTOutputFormat == WWW_SOURCE) @@ -2539,9 +2537,8 @@ void HText_beginAppend(HText *text) * If display_on_the_fly is set, then it is decremented and * the finished line is displayed. */ -#define new_line(text) split_line(text, 0) -#define DEBUG_SPLITLINE +/* #define DEBUG_SPLITLINE */ #ifdef DEBUG_SPLITLINE #define CTRACE_SPLITLINE(p) CTRACE(p) @@ -3483,6 +3480,18 @@ static void split_line(HText *text, unsigned split) return; } /* split_line */ +#ifdef DEBUG_SPLITLINE +static void do_new_line(HText *text, const char *fn, int ln) +{ + CTRACE_SPLITLINE((tfp, "new_line %s@%d\n", fn, ln)); + split_line(text, 0); +} + +#define new_line(text) do_new_line(text, __FILE__, __LINE__) +#else +#define new_line(text) split_line(text, 0) +#endif + /* Allow vertical blank space * -------------------------- */ @@ -3560,7 +3569,6 @@ void HText_appendCharacter(HText *text, int ch) HTLine *line; HTStyle *style; int indent; - int limit = 0; int actual; #ifdef DEBUG_APPCH @@ -4266,36 +4274,6 @@ void HText_appendCharacter(HText *text, int ch) } /* - * Check if we should ignore characters at the wrap point. - */ - if (text->IgnoreExcess) { - int nominal = (indent + (int) (line->offset + line->size) - ctrl_chars_on_this_line); - int number; - - limit = WRAP_COLS(text); - if (fields_are_numbered() - && !number_fields_on_left - && text->last_anchor != 0 - && (number = text->last_anchor->number) > 0) { - limit -= (number > 99999 - ? 6 - : (number > 9999 - ? 5 - : (number > 999 - ? 4 - : (number > 99 - ? 3 - : (number > 9 - ? 2 - : 1))))) + 2; - } - if ((nominal + (int) style->rightIndent) >= limit - || (nominal + UTFXTRA_ON_THIS_LINE) >= LYcols_cu(text)) { - return; - } - } - - /* * Check for end of line. */ actual = ((indent + (int) line->offset + (int) line->size) + @@ -4312,7 +4290,7 @@ void HText_appendCharacter(HText *text, int ch) + UTFXTRA_ON_THIS_LINE - ctrl_chars_on_this_line + UTF_XLEN(ch) - ) >= (LYcols_cu(text) - 1)))) { + ) > (LYcols_cu(text) - 1)))) { if (style->wordWrap && HTOutputFormat != WWW_SOURCE) { #ifdef EXP_JUSTIFY_ELTS @@ -4569,17 +4547,6 @@ char HText_getLastChar(HText *text) return ((char) text->LastChar); } -/* Set IgnoreExcess element in the text object. - * -------------------------------------------- - */ -void HText_setIgnoreExcess(HText *text, BOOL ignore) -{ - if (!text) - return; - - text->IgnoreExcess = ignore; -} - /* Simple table handling - private * ------------------------------- */ @@ -8486,10 +8453,7 @@ BOOLEAN HTreparse_document(void) if (!HTMainAnchor || LYCacheSource == SOURCE_CACHE_NONE) { CTRACE((tfp, "HTreparse_document returns FALSE\n")); - return FALSE; - } - - if (useSourceCache()) { + } else if (useSourceCache()) { FILE *fp; HTFormat format; int ret; @@ -8526,32 +8490,31 @@ BOOLEAN HTreparse_document(void) CTRACE((tfp, " Cannot read file %s\n", HTMainAnchor->source_cache_file)); LYRemoveTemp(HTMainAnchor->source_cache_file); FREE(HTMainAnchor->source_cache_file); - return FALSE; - } + } else { - if (HText_HaveUserChangedForms(HTMainText)) { - /* - * Issue a warning. Will not restore changed forms, currently. + if (HText_HaveUserChangedForms(HTMainText)) { + /* + * Issue a warning. Will not restore changed forms, currently. + */ + HTAlert(RELOADING_FORM); + } + /* Set HTMainAnchor->protocol or HTMainAnchor->physical to convince + * the SourceCacheWriter to not regenerate the cache file (which + * would be an unnecessary "loop"). - kw */ - HTAlert(RELOADING_FORM); - } - /* Set HTMainAnchor->protocol or HTMainAnchor->physical to convince - * the SourceCacheWriter to not regenerate the cache file (which - * would be an unnecessary "loop"). - kw - */ - HTAnchor_setProtocol(HTMainAnchor, &HTFile); - ret = HTParseFile(format, HTOutputFormat, HTMainAnchor, fp, NULL); - LYCloseInput(fp); - if (ret == HT_PARTIAL_CONTENT) { - HTInfoMsg(gettext("Loading incomplete.")); - CTRACE((tfp, - "SourceCache: `%s' has been accessed, partial content.\n", - HTLoadedDocumentURL())); - } - ok = (BOOL) (ret == HT_LOADED || ret == HT_PARTIAL_CONTENT); - - CTRACE((tfp, "Reparse file %s\n", (ok ? "succeeded" : "failed"))); + HTAnchor_setProtocol(HTMainAnchor, &HTFile); + ret = HTParseFile(format, HTOutputFormat, HTMainAnchor, fp, NULL); + LYCloseInput(fp); + if (ret == HT_PARTIAL_CONTENT) { + HTInfoMsg(gettext("Loading incomplete.")); + CTRACE((tfp, + "SourceCache: `%s' has been accessed, partial content.\n", + HTLoadedDocumentURL())); + } + ok = (BOOL) (ret == HT_LOADED || ret == HT_PARTIAL_CONTENT); + CTRACE((tfp, "Reparse file %s\n", (ok ? "succeeded" : "failed"))); + } } else if (useMemoryCache()) { HTFormat format = WWW_HTML; int ret; @@ -10157,7 +10120,6 @@ void HText_endInput(HText *text) && text->last_anchor->number > 0) { char marker[20]; - HText_setIgnoreExcess(text, FALSE); sprintf(marker, "[%d]", text->last_anchor->number); HText_appendText(text, marker); } diff --git a/src/GridText.h b/src/GridText.h index 43fcd28f..1d39ea70 100644 --- a/src/GridText.h +++ b/src/GridText.h @@ -1,5 +1,8 @@ -/* Specialities of GridText as subclass of HText -*/ +/* + * $LynxId: GridText.h,v 1.60 2008/12/29 21:36:00 tom Exp $ + * + * Specialities of GridText as subclass of HText + */ #ifndef LYGRIDTEXT_H #define LYGRIDTEXT_H @@ -89,7 +92,6 @@ US-ASCII control characters <32 which are not defined in Unicode standard extern void HText_setLastChar(HText *text, char ch); extern char HText_getLastChar(HText *text); - extern void HText_setIgnoreExcess(HText *text, BOOL ignore); extern int HText_sourceAnchors(HText *text); extern void HText_setStale(HText *text); diff --git a/src/HTML.c b/src/HTML.c index 7dacdee9..9ac89ab6 100644 --- a/src/HTML.c +++ b/src/HTML.c @@ -1,5 +1,5 @@ /* - * $LynxId: HTML.c,v 1.116 2008/12/14 20:03:28 tom Exp $ + * $LynxId: HTML.c,v 1.117 2008/12/29 21:22:28 tom Exp $ * * Structured stream to Rich hypertext converter * ============================================ @@ -4881,7 +4881,6 @@ static int HTML_start_element(HTStructured * me, int element_number, HTML_put_character(me, '_'); chars--; } - HText_setIgnoreExcess(me->text, TRUE); } CTRACE((tfp, "I.%s, %d\n", NONNULL(I.type), IsSubmitOrReset)); if (IsSubmitOrReset == FALSE) { @@ -4946,7 +4945,6 @@ static int HTML_start_element(HTStructured * me, int element_number, if (chars != 0) { HText_endInput(me->text); } - HText_setIgnoreExcess(me->text, FALSE); FREE(ImageSrc); FREE(I_value); FREE(I_name); @@ -7047,7 +7045,6 @@ static int HTML_end_element(HTStructured * me, int element_number, HText_appendCharacter(me->text, *ptr); ptr++; } - HText_setIgnoreExcess(me->text, TRUE); } for (; non_empty(ptr); ptr++) { if (*ptr == ' ') @@ -7078,7 +7075,6 @@ static int HTML_end_element(HTStructured * me, int element_number, HText_setLastChar(me->text, ']'); me->in_word = YES; } - HText_setIgnoreExcess(me->text, FALSE); } HTChunkClear(&me->option); diff --git a/src/LYCharSets.c b/src/LYCharSets.c index db56146a..ae03cdcc 100644 --- a/src/LYCharSets.c +++ b/src/LYCharSets.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYCharSets.c,v 1.58 2008/09/06 15:45:56 tom Exp $ + * $LynxId: LYCharSets.c,v 1.59 2008/12/26 16:15:27 tom Exp $ */ #include <HTUtils.h> #include <HTCJK.h> @@ -419,9 +419,8 @@ void HTMLSetCharacterHandling(int i) else LYRawMode = (BOOL) (!LYUseDefaultRawMode); - HTPassEightBitNum = (BOOL) ( - ((LYCharSet_UC[i].codepoints & UCT_CP_SUPERSETOF_LAT1) - || (LYCharSet_UC[i].like8859 & UCT_R_HIGH8BIT))); + HTPassEightBitNum = (BOOL) ((LYCharSet_UC[i].codepoints & UCT_CP_SUPERSETOF_LAT1) + || (LYCharSet_UC[i].like8859 & UCT_R_HIGH8BIT)); if (LYRawMode) { HTPassEightBitRaw = (BOOL) (LYlowest_eightbit[i] <= 160); diff --git a/src/LYCharUtils.c b/src/LYCharUtils.c index d4b5917a..78cfe0d2 100644 --- a/src/LYCharUtils.c +++ b/src/LYCharUtils.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYCharUtils.c,v 1.92 2008/09/06 14:40:45 tom Exp $ + * $LynxId: LYCharUtils.c,v 1.93 2008/12/29 21:22:28 tom Exp $ * * Functions associated with LYCharSets.c and the Lynx version of HTML.c - FM * ========================================================================== @@ -2963,7 +2963,6 @@ void LYHandleSELECT(HTStructured * me, const BOOL *present, HText_appendCharacter(me->text, *ptr); ptr++; } - HText_setIgnoreExcess(me->text, TRUE); } for (; non_empty(ptr); ptr++) { if (*ptr == ' ') @@ -2979,7 +2978,6 @@ void LYHandleSELECT(HTStructured * me, const BOOL *present, HText_setLastChar(me->text, ']'); me->in_word = YES; } - HText_setIgnoreExcess(me->text, FALSE); } HTChunkClear(&me->option); diff --git a/src/LYEdit.c b/src/LYEdit.c index 545f0c33..07c8eda6 100644 --- a/src/LYEdit.c +++ b/src/LYEdit.c @@ -1,4 +1,4 @@ -/* $LynxId: LYEdit.c,v 1.37 2008/03/18 00:39:05 Paul.B.Mahol Exp $ */ +/* $LynxId: LYEdit.c,v 1.38 2008/12/29 01:00:53 tom Exp $ */ #include <HTUtils.h> #include <HTParse.h> #include <HTAlert.h> @@ -253,7 +253,7 @@ void edit_temporary_file(char *filename, * we don't, but at least put out a message. - kw */ { -#ifdef UNIX +#if defined(UNIX) && defined(WIFEXITED) int save_err = errno; CTRACE((tfp, "ExtEditForm: system() returned %d (0x%x), %s\n", diff --git a/src/LYExtern.c b/src/LYExtern.c index 714220dd..d3453a0d 100644 --- a/src/LYExtern.c +++ b/src/LYExtern.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYExtern.c,v 1.40 2008/07/04 15:06:14 tom Exp $ + * $LynxId: LYExtern.c,v 1.41 2008/12/29 01:34:31 tom Exp $ * External application support. This feature allows lynx to pass a given URL to an external program. @@ -67,19 +67,6 @@ static char *decode_string(char *s) #ifdef WIN_EX /* - * Quote the path to make it safe for shell command processing. - * We always quote it not only includes spaces in it. - * At least we should quote paths which include "&". - */ -char *quote_pathname(char *pathname) -{ - char *result = NULL; - - HTSprintf0(&result, "\"%s\"", pathname); - return result; -} - -/* * Delete dangerous characters as local path. * We delete '<>|' and also '%"'. * '%' should be deleted because it's difficut to escape for all cases. diff --git a/src/LYExtern.h b/src/LYExtern.h index 4d77b1db..e88bbd6d 100644 --- a/src/LYExtern.h +++ b/src/LYExtern.h @@ -1,3 +1,4 @@ +/* $LynxId: LYExtern.h,v 1.13 2008/12/29 18:59:39 tom Exp $ */ #ifndef EXTERNALS_H #define EXTERNALS_H @@ -8,13 +9,7 @@ #ifdef __cplusplus extern "C" { #endif -/* returns TRUE if something matching was executed */ BOOL run_external(char - *c, BOOL only_overriders); - -#ifdef WIN_EX - extern char *quote_pathname(char *pathname); -#endif - + extern BOOL run_external(char *c, BOOL only_overriders); #ifdef __cplusplus } #endif diff --git a/src/LYGlobalDefs.h b/src/LYGlobalDefs.h index 6fc8d56b..a989b365 100644 --- a/src/LYGlobalDefs.h +++ b/src/LYGlobalDefs.h @@ -1,5 +1,5 @@ /* - * $LynxId: LYGlobalDefs.h,v 1.113 2008/12/14 18:07:20 tom Exp $ + * $LynxId: LYGlobalDefs.h,v 1.115 2008/12/26 18:25:27 tom Exp $ * * global variable definitions */ @@ -65,6 +65,7 @@ extern "C" { #ifndef VMS extern char *list_format; #endif /* !VMS */ + extern char *ftp_format; #ifdef DIRED_SUPPORT @@ -630,10 +631,7 @@ extern "C" { extern int lynx_timeout; #endif /* _WINDOWS */ -#ifdef SH_EX extern BOOLEAN show_cfg; -#endif - extern BOOLEAN no_table_center; #if USE_BLAT_MAILER diff --git a/src/LYMain.c b/src/LYMain.c index f28db16e..e0d617c3 100644 --- a/src/LYMain.c +++ b/src/LYMain.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYMain.c,v 1.190 2008/12/26 01:18:43 tom Exp $ + * $LynxId: LYMain.c,v 1.194 2008/12/30 01:01:34 Paul.Gilmartin Exp $ */ #include <HTUtils.h> #include <HTTP.h> @@ -95,6 +95,8 @@ static char *lynx_version_putenv_command = NULL; char *list_format = NULL; /* LONG_LIST formatting mask */ #endif /* !VMS */ +char *ftp_format = NULL; /* LONG_LIST formatting mask */ + #ifdef SYSLOG_REQUESTED_URLS char *syslog_txt = NULL; /* syslog arb text for session */ BOOLEAN syslog_requested_urls = TRUE; @@ -338,9 +340,7 @@ CRITICAL_SECTION critSec_READ; /* 1998/09/03 (Thu) 22:01:56 */ BOOLEAN system_is_NT = FALSE; #endif -#ifdef SH_EX BOOLEAN show_cfg = FALSE; -#endif BOOLEAN no_table_center = FALSE; /* 1998/10/09 (Fri) 15:12:49 */ @@ -703,6 +703,7 @@ static void free_lynx_globals(void) { int i; + FREE(ftp_format); #ifndef VMS FREE(list_format); #ifdef LYNXCGI_LINKS /* WebSter Mods -jkt */ @@ -843,36 +844,12 @@ void exit_immediately(int code) } #ifdef EBCDIC -/* *INDENT-OFF* */ - char un_IBM1047[ 256 ] = ""; -unsigned char IBM1047[ 256 ] = /* ATOE OEMVS311 */ -{ -0x00,0x01,0x02,0x03,0x37,0x2d,0x2e,0x2f,0x16,0x05,0x15,0x0b,0x0c,0x0d,0x0e,0x0f, -0x10,0x11,0x12,0x13,0x3c,0x3d,0x32,0x26,0x18,0x19,0x3f,0x27,0x1c,0x1d,0x1e,0x1f, -0x40,0x5a,0x7f,0x7b,0x5b,0x6c,0x50,0x7d,0x4d,0x5d,0x5c,0x4e,0x6b,0x60,0x4b,0x61, -0xf0,0xf1,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,0xf9,0x7a,0x5e,0x4c,0x7e,0x6e,0x6f, -0x7c,0xc1,0xc2,0xc3,0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xd1,0xd2,0xd3,0xd4,0xd5,0xd6, -0xd7,0xd8,0xd9,0xe2,0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,0xad,0xe0,0xbd,0x5f,0x6d, -0x79,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x91,0x92,0x93,0x94,0x95,0x96, -0x97,0x98,0x99,0xa2,0xa3,0xa4,0xa5,0xa6,0xa7,0xa8,0xa9,0xc0,0x4f,0xd0,0xa1,0x07, -0x20,0x21,0x22,0x23,0x24,0x25,0x06,0x17,0x28,0x29,0x2a,0x2b,0x2c,0x09,0x0a,0x1b, -0x30,0x31,0x1a,0x33,0x34,0x35,0x36,0x08,0x38,0x39,0x3a,0x3b,0x04,0x14,0x3e,0xff, -0x41,0xaa,0x4a,0xb1,0x9f,0xb2,0x6a,0xb5,0xbb,0xb4,0x9a,0x8a,0xb0,0xca,0xaf,0xbc, -0x90,0x8f,0xea,0xfa,0xbe,0xa0,0xb6,0xb3,0x9d,0xda,0x9b,0x8b,0xb7,0xb8,0xb9,0xab, -0x64,0x65,0x62,0x66,0x63,0x67,0x9e,0x68,0x74,0x71,0x72,0x73,0x78,0x75,0x76,0x77, -0xac,0x69,0xed,0xee,0xeb,0xef,0xec,0xbf,0x80,0xfd,0xfe,0xfb,0xfc,0xba,0xae,0x59, -0x44,0x45,0x42,0x46,0x43,0x47,0x9c,0x48,0x54,0x51,0x52,0x53,0x58,0x55,0x56,0x57, -0x8c,0x49,0xcd,0xce,0xcb,0xcf,0xcc,0xe1,0x70,0xdd,0xde,0xdb,0xdc,0x8d,0x8e,0xdf -} ; -/* *INDENT-ON* */ - static void FixCharacters(void) { int c; int work1[256], work2[256]; for (c = 0; c < 256; c++) { - un_IBM1047[IBM1047[c]] = c; work1[c] = keymap[c + 1]; work2[c] = key_override[c + 1]; } @@ -1152,6 +1129,7 @@ int main(int argc, #ifndef VMS StrAllocCopy(list_format, LIST_FORMAT); #endif /* !VMS */ + StrAllocCopy(ftp_format, FTP_FORMAT); AlertSecs = SECS2Secs(ALERTSECS); DebugSecs = SECS2Secs(DEBUGSECS); @@ -1797,13 +1775,10 @@ int main(int argc, if (!LYCheckUserAgent()) { HTAlwaysAlert(gettext("Warning:"), UA_NO_LYNX_WARNING); } -#ifdef SH_EX if (show_cfg) { cleanup(); exit_immediately(EXIT_SUCCESS); } -#endif - #ifdef USE_SLANG if (LYShowColor >= SHOW_COLOR_ON && !(Lynx_Color_Flags & SL_LYNX_USE_COLOR)) { @@ -1945,9 +1920,9 @@ int main(int argc, if (!TRACE && !dump_output_immediately && !stack_dump) { (void) signal(SIGINT, cleanup_sig); #ifndef __linux__ -#ifndef DOSPATH +#ifdef SIGBUS (void) signal(SIGBUS, FatalProblem); -#endif /* DOSPATH */ +#endif /* SIGBUS */ #endif /* !__linux__ */ (void) signal(SIGSEGV, FatalProblem); (void) signal(SIGILL, FatalProblem); @@ -1959,10 +1934,10 @@ int main(int argc, * disconnected terminal. So the runaway CPU time problem on Unix * should not occur any more. */ -#ifndef DOSPATH +#ifdef SIGPIPE if (signal(SIGPIPE, SIG_IGN) != SIG_IGN) restore_sigpipe_for_children = TRUE; -#endif /* DOSPATH */ +#endif /* SIGPIPE */ } #endif /* !VMS */ @@ -3838,12 +3813,10 @@ saves session to that file on exit" "short_url", 4|SET_ARG, long_url_ok, "enables examination of beginning and end of long URL in\nstatus line" ), -#ifdef SH_EX PARSE_SET( "show_cfg", 1|SET_ARG, show_cfg, "Show `LYNX.CFG' setting" ), -#endif PARSE_SET( "show_cursor", 4|TOGGLE_ARG, LYUseDefShoCur, "toggles hiding of the cursor in the lower right corner" @@ -4373,9 +4346,9 @@ static void FatalProblem(int sig) (void) signal(SIGTERM, SIG_IGN); (void) signal(SIGINT, SIG_IGN); #ifndef __linux__ -#ifndef DOSPATH +#ifdef SIGBUS (void) signal(SIGBUS, SIG_IGN); -#endif /* ! DOSPATH */ +#endif /* ! SIGBUS */ #endif /* !__linux__ */ (void) signal(SIGSEGV, SIG_IGN); (void) signal(SIGILL, SIG_IGN); @@ -4394,9 +4367,9 @@ static void FatalProblem(int sig) } cleanup_sig(0); #ifndef __linux__ -#ifndef DOSPATH +#ifdef SIGBUS signal(SIGBUS, SIG_DFL); -#endif /* DOSPATH */ +#endif /* SIGBUS */ #endif /* !__linux__ */ signal(SIGSEGV, SIG_DFL); signal(SIGILL, SIG_DFL); diff --git a/src/LYMainLoop.c b/src/LYMainLoop.c index cd245caf..c2e21255 100644 --- a/src/LYMainLoop.c +++ b/src/LYMainLoop.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYMainLoop.c,v 1.157 2008/12/14 18:42:42 tom Exp $ + * $LynxId: LYMainLoop.c,v 1.158 2008/12/26 17:41:19 tom Exp $ */ #include <HTUtils.h> #include <HTAccess.h> @@ -124,29 +124,6 @@ static void set_ws_title(char *str) #endif /* WIN_EX */ -#ifdef SH_EX /* 1998/10/30 (Fri) 10:06:47 */ - -#define NOT_EQU 1 - -static int str_n_cmp(const char *p, const char *q, int n) -{ - if (n == 0) - return 0; - - if (p == NULL) - return NOT_EQU; - - if (q == NULL) - return NOT_EQU; - - return strncmp(p, q, n); -} - -#undef strncmp -#define strncmp(p, q, r) str_n_cmp(p, q, r) - -#endif /* SH_EX */ - #if defined(USE_EXTERNALS) || defined(WIN_EX) #include <LYExtern.h> #endif diff --git a/src/LYMap.c b/src/LYMap.c index 41a4b752..e9eef794 100644 --- a/src/LYMap.c +++ b/src/LYMap.c @@ -1,4 +1,6 @@ -/* Lynx Client-side Image MAP Support LYMap.c +/* + * $LynxId: LYMap.c,v 1.36 2008/12/27 15:15:28 tom Exp $ + * Lynx Client-side Image MAP Support LYMap.c * ================================== * * Author: FM Foteos Macrides (macrides@sci.wfbr.edu) @@ -326,14 +328,17 @@ BOOL LYHaveImageMap(char *address) * anAnchor is the LYNXIMGMAP: anchor; if it is associated with POST * data, we want the specific list, otherwise the global list. */ -static void fill_DocAddress(DocAddress *wwwdoc, char *address, +static void fill_DocAddress(DocAddress *wwwdoc, + const char *address, HTParentAnchor *anAnchor, HTParentAnchor **punderlying) { + char *doc_address = NULL; HTParentAnchor *underlying; + StrAllocCopy(doc_address, address); if (anAnchor && anAnchor->post_data) { - wwwdoc->address = address; + wwwdoc->address = doc_address; wwwdoc->post_data = anAnchor->post_data; wwwdoc->post_content_type = anAnchor->post_content_type; wwwdoc->bookmark = NULL; @@ -345,7 +350,7 @@ static void fill_DocAddress(DocAddress *wwwdoc, char *address, if (punderlying) *punderlying = underlying; } else { - wwwdoc->address = address; + wwwdoc->address = doc_address; wwwdoc->post_data = NULL; wwwdoc->post_content_type = NULL; wwwdoc->bookmark = NULL; @@ -373,7 +378,8 @@ static void fill_DocAddress(DocAddress *wwwdoc, char *address, * LYLoadIMGmap() will never have post_data, so that the global list * will be used. - kw */ -static HTList *get_the_list(DocAddress *wwwdoc, char *address, +static HTList *get_the_list(DocAddress *wwwdoc, + const char *address, HTParentAnchor *anchor, HTParentAnchor **punderlying) { @@ -408,7 +414,7 @@ static int LYLoadIMGmap(const char *arg, char *MapAddress = NULL; HTList *theList; HTList *cur = NULL; - char *address = NULL; + const char *address = NULL; char *cp = NULL; DocAddress WWWDoc; HTParentAnchor *underlying; @@ -417,7 +423,7 @@ static int LYLoadIMGmap(const char *arg, HTFormat old_format_out = HTOutputFormat; if (isLYNXIMGMAP(arg)) { - address = (char *) (arg + LEN_LYNXIMGMAP); + address = (arg + LEN_LYNXIMGMAP); } if (!(address && strchr(address, ':'))) { HTAlert(MISDIRECTED_MAP_REQUEST); diff --git a/src/LYOptions.c b/src/LYOptions.c index f7b93b1a..3629bd0d 100644 --- a/src/LYOptions.c +++ b/src/LYOptions.c @@ -1,4 +1,4 @@ -/* $LynxId: LYOptions.c,v 1.124 2008/07/04 15:06:56 tom Exp $ */ +/* $LynxId: LYOptions.c,v 1.125 2008/12/29 19:37:13 tom Exp $ */ #include <HTUtils.h> #include <HTFTP.h> #include <HTTP.h> /* 'reloading' flag */ @@ -530,13 +530,13 @@ void LYoptions(void) LYmove(L_Keypad, 5); addlbl("(K)eypad mode : "); - LYaddstr(fields_are_numbered() && links_are_numbered() + LYaddstr((fields_are_numbered() && links_are_numbered()) ? "Links and form fields are numbered" - : links_are_numbered() - ? "Links are numbered " - : fields_are_numbered() - ? "Form fields are numbered " - : "Numbers act as arrows "); + : (links_are_numbered() + ? "Links are numbered " + : (fields_are_numbered() + ? "Form fields are numbered " + : "Numbers act as arrows "))); LYmove(L_Lineed, 5); addlbl("li(N)e edit style : "); diff --git a/src/LYReadCFG.c b/src/LYReadCFG.c index f39f2309..2b998a70 100644 --- a/src/LYReadCFG.c +++ b/src/LYReadCFG.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYReadCFG.c,v 1.131 2008/12/09 01:01:34 tom Exp $ + * $LynxId: LYReadCFG.c,v 1.133 2008/12/26 18:26:52 tom Exp $ */ #ifndef NO_RULES #include <HTRules.h> @@ -1385,6 +1385,7 @@ static Config_Type Config_Table [] = #if !defined(NO_OPTION_FORMS) && !defined(NO_OPTION_MENU) PARSE_SET(RC_FORMS_OPTIONS, LYUseFormsOptions), #endif + PARSE_STR(RC_FTP_FORMAT, ftp_format), #ifndef DISABLE_FTP PARSE_SET(RC_FTP_PASSIVE, ftp_passive), #endif @@ -1900,14 +1901,12 @@ static void do_read_cfg(const char *cfg_filename, /* * Process each line in the file. */ -#ifdef SH_EX if (show_cfg) { time_t t; time(&t); printf("### %s %s, at %s", LYNX_NAME, LYNX_VERSION, ctime(&t)); } -#endif while (LYSafeGets(&buffer, fp) != 0) { char *name, *value; char *cp; @@ -1959,10 +1958,8 @@ static void do_read_cfg(const char *cfg_filename, CTRACE((tfp, "LYReadCFG: ignored %s:%s\n", name, value)); continue; } -#ifdef SH_EX if (show_cfg) printf("%s:%s\n", name, value); -#endif if (allowed && (*allowed)[tbl - Config_Table]) { if (fp0 == NULL) diff --git a/src/LYStrings.c b/src/LYStrings.c index 87d70158..3d45773f 100644 --- a/src/LYStrings.c +++ b/src/LYStrings.c @@ -1,4 +1,4 @@ -/* $LynxId: LYStrings.c,v 1.158 2008/09/21 23:26:30 tom Exp $ */ +/* $LynxId: LYStrings.c,v 1.159 2008/12/26 16:46:43 tom Exp $ */ #include <HTUtils.h> #include <HTCJK.h> #include <UCAux.h> @@ -2038,7 +2038,7 @@ static int LYgetch_for(int code) case KEY_RIGHT: /* ... */ c = RTARROW; break; -#if defined(SH_EX) && defined(DOSPATH) /* for NEC PC-9800 1998/08/30 (Sun) 21:50:35 */ +#if defined(PDCURSES) /* for NEC PC-9800 1998/08/30 (Sun) 21:50:35 */ case KEY_C2: c = DNARROW; break; @@ -2057,7 +2057,7 @@ static int LYgetch_for(int code) case PADSTOP: /* PC-9800 DEL */ c = REMOVE_KEY; break; -#endif /* SH_EX */ +#endif /* PDCURSES */ case KEY_HOME: /* Home key (upward+left arrow) */ c = HOME; break; diff --git a/src/LYUtils.h b/src/LYUtils.h index 67b4460b..2cdf0cc5 100644 --- a/src/LYUtils.h +++ b/src/LYUtils.h @@ -1,4 +1,4 @@ -/* $LynxId: LYUtils.h,v 1.77 2008/02/10 21:45:40 tom Exp $ */ +/* $LynxId: LYUtils.h,v 1.78 2008/12/29 01:33:26 tom Exp $ */ #ifndef LYUTILS_H #define LYUTILS_H @@ -218,6 +218,7 @@ extern "C" { #if defined(_WIN_CC) || defined(WIN_EX) extern int exec_command(char *cmd, int wait_flag); /* xsystem.c */ + extern char *quote_pathname(char *pathname); extern int xsystem(char *cmd); #endif diff --git a/src/LYebcdic.c b/src/LYebcdic.c new file mode 100644 index 00000000..30c98220 --- /dev/null +++ b/src/LYebcdic.c @@ -0,0 +1,48 @@ +/* + * $LynxId: LYebcdic.c,v 1.1 2008/12/30 01:03:05 Paul.Gilmartin Exp $ + */ +#include <HTUtils.h> + +#ifdef EBCDIC +/* *INDENT-OFF* */ +const char un_IBM1047[ 256 ] = /* ETOA OEMVS311 */ +{ +0x00,0x01,0x02,0x03,0x9c,0x09,0x86,0x7f,0x97,0x8d,0x8e,0x0b,0x0c,0x0d,0x0e,0x0f, +0x10,0x11,0x12,0x13,0x9d,0x0a,0x08,0x87,0x18,0x19,0x92,0x8f,0x1c,0x1d,0x1e,0x1f, +0x80,0x81,0x82,0x83,0x84,0x85,0x17,0x1b,0x88,0x89,0x8a,0x8b,0x8c,0x05,0x06,0x07, +0x90,0x91,0x16,0x93,0x94,0x95,0x96,0x04,0x98,0x99,0x9a,0x9b,0x14,0x15,0x9e,0x1a, +0x20,0xa0,0xe2,0xe4,0xe0,0xe1,0xe3,0xe5,0xe7,0xf1,0xa2,0x2e,0x3c,0x28,0x2b,0x7c, +0x26,0xe9,0xea,0xeb,0xe8,0xed,0xee,0xef,0xec,0xdf,0x21,0x24,0x2a,0x29,0x3b,0x5e, +0x2d,0x2f,0xc2,0xc4,0xc0,0xc1,0xc3,0xc5,0xc7,0xd1,0xa6,0x2c,0x25,0x5f,0x3e,0x3f, +0xf8,0xc9,0xca,0xcb,0xc8,0xcd,0xce,0xcf,0xcc,0x60,0x3a,0x23,0x40,0x27,0x3d,0x22, +0xd8,0x61,0x62,0x63,0x64,0x65,0x66,0x67,0x68,0x69,0xab,0xbb,0xf0,0xfd,0xfe,0xb1, +0xb0,0x6a,0x6b,0x6c,0x6d,0x6e,0x6f,0x70,0x71,0x72,0xaa,0xba,0xe6,0xb8,0xc6,0xa4, +0xb5,0x7e,0x73,0x74,0x75,0x76,0x77,0x78,0x79,0x7a,0xa1,0xbf,0xd0,0x5b,0xde,0xae, +0xac,0xa3,0xa5,0xb7,0xa9,0xa7,0xb6,0xbc,0xbd,0xbe,0xdd,0xa8,0xaf,0x5d,0xb4,0xd7, +0x7b,0x41,0x42,0x43,0x44,0x45,0x46,0x47,0x48,0x49,0xad,0xf4,0xf6,0xf2,0xf3,0xf5, +0x7d,0x4a,0x4b,0x4c,0x4d,0x4e,0x4f,0x50,0x51,0x52,0xb9,0xfb,0xfc,0xf9,0xfa,0xff, +0x5c,0xf7,0x53,0x54,0x55,0x56,0x57,0x58,0x59,0x5a,0xb2,0xd4,0xd6,0xd2,0xd3,0xd5, +0x30,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0xb3,0xdb,0xdc,0xd9,0xda,0x9f +} ; +const unsigned char IBM1047[ 256 ] = /* ATOE OEMVS311 */ +{ +0x00,0x01,0x02,0x03,0x37,0x2d,0x2e,0x2f,0x16,0x05,0x15,0x0b,0x0c,0x0d,0x0e,0x0f, +0x10,0x11,0x12,0x13,0x3c,0x3d,0x32,0x26,0x18,0x19,0x3f,0x27,0x1c,0x1d,0x1e,0x1f, +0x40,0x5a,0x7f,0x7b,0x5b,0x6c,0x50,0x7d,0x4d,0x5d,0x5c,0x4e,0x6b,0x60,0x4b,0x61, +0xf0,0xf1,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,0xf9,0x7a,0x5e,0x4c,0x7e,0x6e,0x6f, +0x7c,0xc1,0xc2,0xc3,0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xd1,0xd2,0xd3,0xd4,0xd5,0xd6, +0xd7,0xd8,0xd9,0xe2,0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,0xad,0xe0,0xbd,0x5f,0x6d, +0x79,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x91,0x92,0x93,0x94,0x95,0x96, +0x97,0x98,0x99,0xa2,0xa3,0xa4,0xa5,0xa6,0xa7,0xa8,0xa9,0xc0,0x4f,0xd0,0xa1,0x07, +0x20,0x21,0x22,0x23,0x24,0x25,0x06,0x17,0x28,0x29,0x2a,0x2b,0x2c,0x09,0x0a,0x1b, +0x30,0x31,0x1a,0x33,0x34,0x35,0x36,0x08,0x38,0x39,0x3a,0x3b,0x04,0x14,0x3e,0xff, +0x41,0xaa,0x4a,0xb1,0x9f,0xb2,0x6a,0xb5,0xbb,0xb4,0x9a,0x8a,0xb0,0xca,0xaf,0xbc, +0x90,0x8f,0xea,0xfa,0xbe,0xa0,0xb6,0xb3,0x9d,0xda,0x9b,0x8b,0xb7,0xb8,0xb9,0xab, +0x64,0x65,0x62,0x66,0x63,0x67,0x9e,0x68,0x74,0x71,0x72,0x73,0x78,0x75,0x76,0x77, +0xac,0x69,0xed,0xee,0xeb,0xef,0xec,0xbf,0x80,0xfd,0xfe,0xfb,0xfc,0xba,0xae,0x59, +0x44,0x45,0x42,0x46,0x43,0x47,0x9c,0x48,0x54,0x51,0x52,0x53,0x58,0x55,0x56,0x57, +0x8c,0x49,0xcd,0xce,0xcb,0xcf,0xcc,0xe1,0x70,0xdd,0xde,0xdb,0xdc,0x8d,0x8e,0xdf +} ; +/* *INDENT-ON* */ + +#endif /* EBCDIC */ diff --git a/src/LYexit.c b/src/LYexit.c index e5d06aec..37d7b519 100644 --- a/src/LYexit.c +++ b/src/LYexit.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYexit.c,v 1.33 2007/05/06 21:41:43 tom Exp $ + * $LynxId: LYexit.c,v 1.34 2008/12/29 01:03:20 tom Exp $ * * Copyright (c) 1994, University of Kansas, All Rights Reserved * (most of this file was rewritten in 1996 and 2004). @@ -105,9 +105,9 @@ void LYexit(int status) (void) signal(SIGTERM, SIG_IGN); (void) signal(SIGINT, SIG_IGN); #ifndef __linux__ -#ifndef DOSPATH +#ifdef SIGBUS (void) signal(SIGBUS, SIG_IGN); -#endif /* DOSPATH */ +#endif /* SIGBUS */ #endif /* !__linux__ */ (void) signal(SIGSEGV, SIG_IGN); (void) signal(SIGILL, SIG_IGN); @@ -126,9 +126,9 @@ void LYexit(int status) } cleanup_sig(0); #ifndef __linux__ -#ifndef DOSPATH +#ifdef SIGBUS signal(SIGBUS, SIG_DFL); -#endif /* DOSPATH */ +#endif /* SIGBUS */ #endif /* !__linux__ */ signal(SIGSEGV, SIG_DFL); signal(SIGILL, SIG_DFL); diff --git a/src/LYmktime.c b/src/LYmktime.c index 8116dad0..32de4275 100644 --- a/src/LYmktime.c +++ b/src/LYmktime.c @@ -1,4 +1,4 @@ -/* $LynxId: LYmktime.c,v 1.8 2008/12/25 00:42:09 tom Exp $ */ +/* $LynxId: LYmktime.c,v 1.9 2008/12/27 00:46:30 tom Exp $ */ #include <LYStrings.h> #include <LYUtils.h> @@ -60,33 +60,18 @@ time_t LYmktime(char *string, time_t result = 0; if (non_empty(string)) { -#ifdef EBCDIC - int n; - char *copied = NULL; + CTRACE((tfp, "LYmktime: Parsing '%s'\n", string)); + result = parsedate(string, 0); - StrAllocCopy(copied, string); - if (copied != NULL) { - /* parsedate() expects ASCII input */ - for (n = 0; copied[n] != '\0'; ++n) - copied[n] = TOASCII(copied[n]); - string = copied; -#endif - CTRACE((tfp, "LYmktime: Parsing '%s'\n", string)); - result = parsedate(string, 0); - - if (!absolute) { - if ((time((time_t *) 0) - result) >= 0) - result = 0; - } - if (result != 0) { - CTRACE((tfp, "LYmktime: clock=%" PRI_time_t ", ctime=%s", - CAST_time_t(result), - ctime(&result))); - } -#ifdef EBCDIC - free(copied); + if (!absolute) { + if ((time((time_t *) 0) - result) >= 0) + result = 0; + } + if (result != 0) { + CTRACE((tfp, "LYmktime: clock=%" PRI_time_t ", ctime=%s", + CAST_time_t(result), + ctime(&result))); } -#endif } return result; #else diff --git a/src/LYrcFile.h b/src/LYrcFile.h index ed617786..5ad055c5 100644 --- a/src/LYrcFile.h +++ b/src/LYrcFile.h @@ -1,5 +1,5 @@ /* - * $LynxId: LYrcFile.h,v 1.28 2008/12/07 20:52:27 tom Exp $ + * $LynxId: LYrcFile.h,v 1.29 2008/12/26 18:34:05 tom Exp $ */ #ifndef LYRCFILE_H #define LYRCFILE_H @@ -84,6 +84,7 @@ #define RC_FORCE_SSL_COOKIES_SECURE "force_ssl_cookies_secure" #define RC_FORCE_SSL_PROMPT "force_ssl_prompt" #define RC_FORMS_OPTIONS "forms_options" +#define RC_FTP_FORMAT "ftp_format" #define RC_FTP_PASSIVE "ftp_passive" #define RC_FTP_PROXY "ftp_proxy" #define RC_GLOBAL_EXTENSION_MAP "global_extension_map" diff --git a/src/UCdomap.c b/src/UCdomap.c index bc2dccda..e6f0de3f 100644 --- a/src/UCdomap.c +++ b/src/UCdomap.c @@ -1,5 +1,5 @@ /* - * $LynxId: UCdomap.c,v 1.70 2008/12/26 00:10:51 tom Exp $ + * $LynxId: UCdomap.c,v 1.71 2008/12/26 16:36:57 tom Exp $ * * UCdomap.c * ========= @@ -1982,6 +1982,8 @@ void UC_Charset_Setup(const char *UC_MIMEcharset, UC_MIMEcharset, UC_LYNXcharset, lowest_eight); + CTRACE2(TRACE_CFG, (tfp, "registered charset %d mime \"%s\" lynx \"%s\"\n", + s, UC_MIMEcharset, UC_LYNXcharset)); UCInfo[s].uc_status = status; if (found < 0) UCNumCharsets++; diff --git a/src/Xsystem.c b/src/Xsystem.c index ec8a7915..9ce09301 100644 --- a/src/Xsystem.c +++ b/src/Xsystem.c @@ -1,4 +1,4 @@ -/* $LynxId: Xsystem.c,v 1.19 2008/12/15 00:21:16 tom Exp $ +/* $LynxId: Xsystem.c,v 1.20 2008/12/29 01:34:31 tom Exp $ * like system("cmd") but return with exit code of "cmd" * for Turbo-C/MS-C/LSI-C * This code is in the public domain. @@ -450,6 +450,19 @@ static void NEAR redunswitch(PRO * p) } } +/* + * Quote the path to make it safe for shell command processing. + * We always quote it not only includes spaces in it. + * At least we should quote paths which include "&". + */ +char *quote_pathname(char *pathname) +{ + char *result = NULL; + + HTSprintf0(&result, "\"%s\"", pathname); + return result; +} + int xsystem(char *cmd) { PRO *p, *pn; diff --git a/src/makefile.in b/src/makefile.in index 89bdf027..fc4bf7b5 100644 --- a/src/makefile.in +++ b/src/makefile.in @@ -1,4 +1,4 @@ -# $LynxId: makefile.in,v 1.54 2008/12/24 18:11:29 tom Exp $ +# $LynxId: makefile.in,v 1.58 2008/12/30 01:18:43 tom Exp $ # template-makefile for Lynx src directory SHELL = @CONFIG_SHELL@ @@ -9,7 +9,7 @@ prefix = @prefix@ exec_prefix = @exec_prefix@ top_srcdir = @top_srcdir@ srcdir = @srcdir@ -VPATH = $(srcdir) +VPATH = .:$(srcdir) top_builddir = .. @@ -71,6 +71,7 @@ COMPRESS_EXT =@COMPRESS_EXT@ CHARTRANS_OBJS = UCdomap$o UCAux$o UCAuto$o OBJS = \ + LYebcdic$o \ LYClean$o LYShowInfo$o LYEdit$o LYStrings$o LYMail$o \ HTAlert$o GridText$o LYGetFile$o LYMain$o LYMainLoop$o \ LYCurses$o LYBookmark$o LYmktime$o LYUtils$o LYOptions$o \ @@ -80,28 +81,26 @@ OBJS = \ LYLeaks$o LYexit$o LYJump$o LYList$o LYCgi$o \ LYTraversal$o LYEditmap$o LYCharSets$o LYCharUtils$o \ LYMap$o LYCookie$o LYStyle$o LYHash$o LYPrettySrc$o \ - TRSTable$o $(CHARTRANS_OBJS) @EXTRA_OBJS@ @LIBOBJS@ - -GEN_OBJS = parsdate$o + TRSTable$o parsdate$o $(CHARTRANS_OBJS) @EXTRA_OBJS@ @LIBOBJS@ C_SRC = $(OBJS:$o=.c) -GEN_SRC = $(GEN_OBJS:$o=.c) all: lynx$x .SUFFIXES : $o .i +# yacc builds .c in target directory, not $(srcdir) .c$o: @RULE_CC@ - @ECHO_CC@$(CC) $(CC_OPTS) -c $(srcdir)/$*.c + @ECHO_CC@$(CC) $(CC_OPTS) -c $< .c.i: @RULE_CC@ - @ECHO_CC@$(CPP) -C $(CPP_OPTS) $(srcdir)/$*.c >$@ + @ECHO_CC@$(CPP) -C $(CPP_OPTS) $< >$@ -lynx$x: message do_chartrans_stuff $(top_builddir)/LYHelp.h $(OBJS) $(GEN_OBJS) $(WWWLIB) +lynx$x: message do_chartrans_stuff $(top_builddir)/LYHelp.h $(OBJS) $(WWWLIB) @echo "Linking and creating Lynx executable" - $(CC) $(CC_OPTS) $(LDFLAGS) -o $@ $(OBJS) $(GEN_OBJS) $(WWWLIB) $(INTLLIB) $(LDFLAGS) $(LIBS) + $(CC) $(CC_OPTS) $(LDFLAGS) -o $@ $(OBJS) $(WWWLIB) $(INTLLIB) $(LDFLAGS) $(LIBS) @echo "Copying Lynx executable into top-level directory" rm -f $(top_builddir)/$@ cp $@ $(top_builddir)/ @@ -124,7 +123,6 @@ lint: clean: rm -f lynx$x core *.core *.leaks *.i *$o *.bak tags TAGS test_* - test -f parsdate.y || rm -f parsdate.c cd chrtrans && $(MAKE) clean tags: @@ -208,24 +206,20 @@ chrtrans/makeuctb$(BUILD_EXEEXT): UCAux$o : UCAux.c $(CMN)UCAux.h $(CMN)UCDefs.h LYCookie$o : $(top_srcdir)/userdefs.h +test_mktime.o: $(srcdir)/LYmktime.c + $(CC) -o $@ $(CC_OPTS) -DTEST_DRIVER -c $(srcdir)/LYmktime.c + # test-driver for LYmktime -test_mktime: LYmktime.c parsdate.o - $(CC) -o $@ $(CC_OPTS) -DTEST_DRIVER LYmktime.c parsdate.o +test_mktime: test_mktime.o parsdate.o LYebcdic.o + $(CC) -o $@ $(CC_OPTS) test_mktime.o parsdate.o LYebcdic.o -# update generated source +# update generated source (may be in ".", or srcdir) parsdate.c : $(srcdir)/parsdate.y $(YACC) $(srcdir)/parsdate.y + -rm -f $@ mv y.tab.c $@ -# allow for regenerating parsdate.c, e.g., for non-ASCII systems, while -# handling configure --srcdir option. -parsdate$o: parsdate.c - @-rm -f $@ - -test -f parsdate.c && $(CC) $(CC_OPTS) -c parsdate.c - -test -f parsdate.c || $(CC) $(CC_OPTS) -c $(srcdir)/parsdate.c - test -f $@ - depend : $(TABLES) - makedepend -fmakefile -- $(CC_OPTS) -- $(C_SRC) $(GEN_SRC) + makedepend -fmakefile -- $(CC_OPTS) -- $(C_SRC) # DO NOT DELETE THIS LINE -- make depend depends on it. diff --git a/src/parsdate.c b/src/parsdate.c index bb692ee7..0549a6e3 100644 --- a/src/parsdate.c +++ b/src/parsdate.c @@ -33,7 +33,7 @@ static int yygrowstack(void); #define YYPREFIX "yy" #line 2 "./parsdate.y" /* - * $LynxId: parsdate.c,v 1.6 2008/12/24 21:13:01 tom Exp $ + * $LynxId: parsdate.c,v 1.7 2008/12/27 01:03:28 tom Exp $ * * This module is adapted and extended from tin, to use for LYmktime(). * @@ -802,24 +802,24 @@ date_lex(void) for(;;) { /* Get first character after the whitespace. */ for(;;) { - while (CTYPE(isspace, TO_LOCAL(*yyInput))) + while (CTYPE(isspace, *yyInput)) yyInput++; - c = TO_LOCAL(*yyInput); + c = *yyInput; /* Ignore RFC 822 comments, typically time zone names. */ if (c != LPAREN) break; for (nesting = 1; - (c = TO_LOCAL(*++yyInput)) != RPAREN || --nesting; + (c = *++yyInput) != RPAREN || --nesting; ) { if (c == LPAREN) { nesting++; } else if (!IS7BIT(c) || c == '\0' || c == '\r' || (c == '\\' - && ((c = TO_LOCAL(*++yyInput)) == '\0' + && ((c = *++yyInput) == '\0' || !IS7BIT(c)))) { /* Lexical error: bad comment. */ - return TO_ASCII('?'); + return '?'; } } yyInput++; @@ -830,7 +830,7 @@ date_lex(void) if (c == '-' || c == '+') { sign = c == '-' ? -1 : 1; yyInput++; - if (!CTYPE(isdigit, TO_LOCAL(*yyInput))) { + if (!CTYPE(isdigit, *yyInput)) { /* Return the isolated plus or minus sign. */ --yyInput; return *yyInput++; @@ -839,7 +839,7 @@ date_lex(void) sign = 0; } for (p = buff; - (c = TO_LOCAL(*yyInput++)) != '\0' && CTYPE(isdigit, c); + (c = *yyInput++) != '\0' && CTYPE(isdigit, c); ) { if (p < &buff[sizeof buff - 1]) *p++ = c; @@ -855,7 +855,7 @@ date_lex(void) /* A word? */ if (CTYPE(isalpha, c)) { for (p = buff; - (c = TO_LOCAL(*yyInput++)) == '.' || CTYPE(isalpha, c); + (c = *yyInput++) == '.' || CTYPE(isalpha, c); ) { if (p < &buff[sizeof buff - 1]) *p++ = CTYPE(isupper, c) ? tolower(c) : c; diff --git a/src/parsdate.y b/src/parsdate.y index e4e2c751..fdfdbad2 100644 --- a/src/parsdate.y +++ b/src/parsdate.y @@ -1,6 +1,6 @@ %{ /* - * $LynxId: parsdate.y,v 1.10 2008/12/24 21:12:49 tom Exp $ + * $LynxId: parsdate.y,v 1.11 2008/12/27 00:45:40 tom Exp $ * * This module is adapted and extended from tin, to use for LYmktime(). * @@ -777,24 +777,24 @@ date_lex(void) for(;;) { /* Get first character after the whitespace. */ for(;;) { - while (CTYPE(isspace, TO_LOCAL(*yyInput))) + while (CTYPE(isspace, *yyInput)) yyInput++; - c = TO_LOCAL(*yyInput); + c = *yyInput; /* Ignore RFC 822 comments, typically time zone names. */ if (c != LPAREN) break; for (nesting = 1; - (c = TO_LOCAL(*++yyInput)) != RPAREN || --nesting; + (c = *++yyInput) != RPAREN || --nesting; ) { if (c == LPAREN) { nesting++; } else if (!IS7BIT(c) || c == '\0' || c == '\r' || (c == '\\' - && ((c = TO_LOCAL(*++yyInput)) == '\0' + && ((c = *++yyInput) == '\0' || !IS7BIT(c)))) { /* Lexical error: bad comment. */ - return TO_ASCII('?'); + return '?'; } } yyInput++; @@ -805,7 +805,7 @@ date_lex(void) if (c == '-' || c == '+') { sign = c == '-' ? -1 : 1; yyInput++; - if (!CTYPE(isdigit, TO_LOCAL(*yyInput))) { + if (!CTYPE(isdigit, *yyInput)) { /* Return the isolated plus or minus sign. */ --yyInput; return *yyInput++; @@ -814,7 +814,7 @@ date_lex(void) sign = 0; } for (p = buff; - (c = TO_LOCAL(*yyInput++)) != '\0' && CTYPE(isdigit, c); + (c = *yyInput++) != '\0' && CTYPE(isdigit, c); ) { if (p < &buff[sizeof buff - 1]) *p++ = c; @@ -830,7 +830,7 @@ date_lex(void) /* A word? */ if (CTYPE(isalpha, c)) { for (p = buff; - (c = TO_LOCAL(*yyInput++)) == '.' || CTYPE(isalpha, c); + (c = *yyInput++) == '.' || CTYPE(isalpha, c); ) { if (p < &buff[sizeof buff - 1]) *p++ = CTYPE(isupper, c) ? tolower(c) : c; diff --git a/userdefs.h b/userdefs.h index f227227e..9fce88ba 100644 --- a/userdefs.h +++ b/userdefs.h @@ -1,5 +1,5 @@ /* - * $LynxId: userdefs.h,v 1.236 2008/12/15 00:24:56 tom Exp $ + * $LynxId: userdefs.h,v 1.239 2008/12/26 21:02:32 tom Exp $ * * Lynx - Hypertext navigation system * @@ -415,6 +415,12 @@ #endif /* + * FTP_FORMAT uses the same codes as LIST_FORMAT, but applies to files shown + * in an ftp listing. + */ +#define FTP_FORMAT "%d %-16.16t %a %K" + +/* * If NO_FORCED_CORE_DUMP is set to TRUE, Lynx will not force * core dumps via abort() calls on fatal errors or assert() * calls to check potentially fatal errors. The default defined |