bug-autoconf
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: gawk-3.1.2


From: Akim Demaille
Subject: Re: gawk-3.1.2
Date: Fri, 28 Mar 2003 17:46:57 +0100
User-agent: Gnus/5.090016 (Oort Gnus v0.16) Emacs/21.2 (gnu/linux)

Hi!

Thanks for the report, unfortunately, it is about a problem in the
package you were trying to configure, not from Autoconf itself.
Please, forward this bug report to the authors of the package,
together with the following piece of information.  Thanks!

Header Present But Cannot Be Compiled
=====================================

   The most important guideline to bear in mind when checking for
features is to mimic as much as possible the intended use.
Unfortunately, old versions of `AC_CHECK_HEADER' and `AC_CHECK_HEADERS'
failed to follow this idea, and called the preprocessor, instead of the
compiler, to check for headers.  As a result, incompatibilities between
headers went unnoticed during configuration, and maintainers finally
had to deal with this issue elsewhere.

   As of Autoconf 2.56 both checks are performed, and `configure'
complains loudly if the compiler and the preprocessor do not agree.
For the time being the result used is that of the preprocessor, to give
maintainers time to adjust their `configure.ac', but in the near
future, only the compiler will be considered.

   Consider the following example:

     $ cat number.h
     typedef int number;
     $ cat pi.h
     const number pi = 3;
     $ cat configure.ac
     AC_INIT
     AC_CHECK_HEADERS(pi.h)
     $ autoconf -Wall
     $ ./configure
     checking for gcc... gcc
     checking for C compiler default output... a.out
     checking whether the C compiler works... yes
     checking whether we are cross compiling... no
     checking for suffix of executables...
     checking for suffix of object files... o
     checking whether we are using the GNU C compiler... yes
     checking whether gcc accepts -g... yes
     checking for gcc option to accept ANSI C... none needed
     checking how to run the C preprocessor... gcc -E
     checking for egrep... grep -E
     checking for ANSI C header files... yes
     checking for sys/types.h... yes
     checking for sys/stat.h... yes
     checking for stdlib.h... yes
     checking for string.h... yes
     checking for memory.h... yes
     checking for strings.h... yes
     checking for inttypes.h... yes
     checking for stdint.h... yes
     checking for unistd.h... yes
     checking pi.h usability... no
     checking pi.h presence... yes
     configure: WARNING: pi.h: present but cannot be compiled
     configure: WARNING: pi.h: check for missing prerequisite headers?
     configure: WARNING: pi.h: proceeding with the preprocessor's result
     configure: WARNING:     ## ------------------------------------ ##
     configure: WARNING:     ## Report this to address@hidden ##
     configure: WARNING:     ## ------------------------------------ ##
     checking for pi.h... yes

The proper way the handle this case is using the fourth argument (*note
Generic Headers::):

     $ cat configure.ac
     AC_INIT
     AC_CHECK_HEADERS(number.h pi.h,,,
     [[#if HAVE_NUMBER_H
     # include <number.h>
     #endif
     ]])
     $ autoconf -Wall
     $ ./configure
     checking for gcc... gcc
     checking for C compiler default output... a.out
     checking whether the C compiler works... yes
     checking whether we are cross compiling... no
     checking for suffix of executables...
     checking for suffix of object files... o
     checking whether we are using the GNU C compiler... yes
     checking whether gcc accepts -g... yes
     checking for gcc option to accept ANSI C... none needed
     checking for number.h... yes
     checking for pi.h... yes


----------------------------------------------------------------------

Configuring on an SGI os 6.5 generated the following warning :
checking stropts.h usability... no
checking stropts.h presence... yes
configure: WARNING: stropts.h: present but cannot be compiled

configure: WARNING: stropts.h: check for missing prerequisite headers?

configure: WARNING: stropts.h: proceeding with the preprocessor's result

configure: WARNING:     ## ------------------------------------ ##
configure: WARNING:     ## Report this to address@hidden ##
configure: WARNING:     ## ------------------------------------ ##
checking for stropts.h... yes
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking wctype.h usability... no
checking wctype.h presence... yes
configure: WARNING: wctype.h: present but cannot be compiled
configure: WARNING: wctype.h: check for missing prerequisite headers?
configure: WARNING: wctype.h: proceeding with the preprocessor's result
configure: WARNING:     ## ------------------------------------ ##
configure: WARNING:     ## Report this to address@hidden ##
configure: WARNING:     ## ------------------------------------ ##

Subsequent compiling with no options chosen using gnu make :


In file included from /usr/include/stropts.h:38,
                 from io.c:44:
/usr/include/sys/stropts.h:237: parse error before "t_uscalar_t"
/usr/include/sys/stropts.h:261: parse error before "t_uscalar_t"
/usr/include/sys/stropts.h:267: parse error before '}' token
gmake[2]: *** [io.o] Error 1
gmake[2]: Leaving directory `/data2/local/gawk-3.1.2.src'
gmake[1]: *** [all-recursive] Error 1
gmake[1]: Leaving directory `/data2/local/gawk-3.1.2.src'
gmake: *** [all] Error 2

The configure.log is attached.
                                    John Barry
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by GNU Awk configure 3.1.2, which was
generated by GNU Autoconf 2.57.  Invocation command line was

  $ ./configure --prefix=/usr/data2/local/gawk-3.1.2

## --------- ##
## Platform. ##
## --------- ##

uname -m = IP30
uname -r = 6.5
uname -s = IRIX64
uname -v = 10151453

/usr/bin/uname -p = mips
/bin/uname -X     = unknown

/bin/arch              = unknown
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
hostinfo               = unknown
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: /usr/java2/bin
PATH: /usr/java2/bin
PATH: /usr/sbin
PATH: /usr/bsd
PATH: /sbin
PATH: /usr/bin
PATH: /usr/bin/X11
PATH: .
PATH: /usr/people/barry/bin
PATH: /etc
PATH: /usr/etc
PATH: /usr/data2/local/bin
PATH: /usr/local/bin


## ----------- ##
## Core tests. ##
## ----------- ##

configure:1355: checking for a BSD-compatible install
configure:1409: result: ./install-sh -c
configure:1420: checking whether build environment is sane
configure:1463: result: yes
configure:1496: checking for gawk
configure:1512: found /usr/data2/local/bin/gawk
configure:1522: result: gawk
configure:1532: checking whether make sets $(MAKE)
configure:1552: result: yes
configure:1754: checking for egrep
configure:1764: result: grep -E
configure:1773: checking for bison
configure:1789: found /usr/bin/bison
configure:1799: result: bison -y
configure:1810: checking whether ln -s works
configure:1814: result: yes
configure:1867: checking for gcc
configure:1883: found /usr/data2/local/bin/gcc
configure:1893: result: gcc
configure:2137: checking for C compiler version
configure:2140: gcc --version </dev/null >&5
gcc (GCC) 3.2.1
Copyright (C) 2002 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:2143: $? = 0
configure:2145: gcc -v </dev/null >&5
Reading specs from 
/usr/data2/local/gcc-3.2.1/lib/gcc-lib/mips-sgi-irix6.5/3.2.1/specs
Configured with: ../gcc-3.2.1.src/configure --prefix=/usr/data2/local/gcc-3.2.1
Thread model: single
gcc version 3.2.1
configure:2148: $? = 0
configure:2150: gcc -V </dev/null >&5
gcc: argument to `-V' is missing
configure:2153: $? = 1
configure:2177: checking for C compiler default output
configure:2180: gcc    conftest.c  >&5
configure:2183: $? = 0
configure:2229: result: a.out
configure:2234: checking whether the C compiler works
configure:2240: ./a.out
configure:2243: $? = 0
configure:2260: result: yes
configure:2267: checking whether we are cross compiling
configure:2269: result: no
configure:2272: checking for suffix of executables
configure:2274: gcc -o conftest    conftest.c  >&5
configure:2277: $? = 0
configure:2302: result: 
configure:2308: checking for suffix of object files
configure:2330: gcc -c   conftest.c >&5
configure:2333: $? = 0
configure:2355: result: o
configure:2359: checking whether we are using the GNU C compiler
configure:2384: gcc -c   conftest.c >&5
configure:2387: $? = 0
configure:2390: test -s conftest.o
configure:2393: $? = 0
configure:2406: result: yes
configure:2412: checking whether gcc accepts -g
configure:2434: gcc -c -g  conftest.c >&5
configure:2437: $? = 0
configure:2440: test -s conftest.o
configure:2443: $? = 0
configure:2454: result: yes
configure:2471: checking for gcc option to accept ANSI C
configure:2532: gcc  -c -g -O2  conftest.c >&5
configure:2535: $? = 0
configure:2538: test -s conftest.o
configure:2541: $? = 0
configure:2559: result: none needed
configure:2577: gcc -c -g -O2  conftest.c >&5
conftest.c:2: parse error before "me"
configure:2580: $? = 1
configure: failed program was:
| #ifndef __cplusplus
|   choke me
| #endif
configure:2699: checking for style of include used by make
configure:2727: result: GNU
configure:2755: checking dependency style of gcc
configure:2823: result: gcc3
configure:2845: checking how to run the C preprocessor
configure:2881: gcc -E  conftest.c
configure:2887: $? = 0
configure:2919: gcc -E  conftest.c
configure:2920:28: ac_nonexistent.h: No such file or directory
configure:2925: $? = 1
configure: failed program was:
| #line 2910 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "GNU Awk"
| #define PACKAGE_TARNAME "gawk"
| #define PACKAGE_VERSION "3.1.2"
| #define PACKAGE_STRING "GNU Awk 3.1.2"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "gawk"
| #define VERSION "3.1.2"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:2963: result: gcc -E
configure:2988: gcc -E  conftest.c
configure:2994: $? = 0
configure:3026: gcc -E  conftest.c
configure:3027:28: ac_nonexistent.h: No such file or directory
configure:3032: $? = 1
configure: failed program was:
| #line 3017 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "GNU Awk"
| #define PACKAGE_TARNAME "gawk"
| #define PACKAGE_VERSION "3.1.2"
| #define PACKAGE_STRING "GNU Awk 3.1.2"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "gawk"
| #define VERSION "3.1.2"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:3115: checking for ranlib
configure:3131: found /usr/data2/local/bin/ranlib
configure:3142: result: ranlib
configure:3170: checking for a BSD-compatible install
configure:3224: result: ./install-sh -c
configure:3236: checking whether make sets $(MAKE)
configure:3256: result: yes
configure:3268: checking for special development options
configure:3282: result: no
configure:3291: checking for AIX
configure:3314: result: no
configure:3321: checking for strerror in -lcposix
configure:3352: gcc -o conftest -g -O2   conftest.c -lcposix   >&5
ld32: FATAL   9  : I/O error (-lcposix): No such file or directory
collect2: ld returned 32 exit status
configure:3355: $? = 1
configure: failed program was:
| #line 3328 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "GNU Awk"
| #define PACKAGE_TARNAME "gawk"
| #define PACKAGE_VERSION "3.1.2"
| #define PACKAGE_STRING "GNU Awk 3.1.2"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "gawk"
| #define VERSION "3.1.2"
| /* end confdefs.h.  */
| 
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char strerror ();
| int
| main ()
| {
| strerror ();
|   ;
|   return 0;
| }
configure:3373: result: no
configure:3381: checking for ANSI C header files
configure:3407: gcc -c -g -O2  conftest.c >&5
configure:3410: $? = 0
configure:3413: test -s conftest.o
configure:3416: $? = 0
configure:3508: gcc -o conftest -g -O2   conftest.c  >&5
configure:3511: $? = 0
configure:3513: ./conftest
configure:3516: $? = 0
configure:3531: result: yes
configure:3555: checking for sys/types.h
configure:3572: gcc -c -g -O2  conftest.c >&5
configure:3575: $? = 0
configure:3578: test -s conftest.o
configure:3581: $? = 0
configure:3592: result: yes
configure:3555: checking for sys/stat.h
configure:3572: gcc -c -g -O2  conftest.c >&5
configure:3575: $? = 0
configure:3578: test -s conftest.o
configure:3581: $? = 0
configure:3592: result: yes
configure:3555: checking for stdlib.h
configure:3572: gcc -c -g -O2  conftest.c >&5
configure:3575: $? = 0
configure:3578: test -s conftest.o
configure:3581: $? = 0
configure:3592: result: yes
configure:3555: checking for string.h
configure:3572: gcc -c -g -O2  conftest.c >&5
configure:3575: $? = 0
configure:3578: test -s conftest.o
configure:3581: $? = 0
configure:3592: result: yes
configure:3555: checking for memory.h
configure:3572: gcc -c -g -O2  conftest.c >&5
configure:3575: $? = 0
configure:3578: test -s conftest.o
configure:3581: $? = 0
configure:3592: result: yes
configure:3555: checking for strings.h
configure:3572: gcc -c -g -O2  conftest.c >&5
configure:3575: $? = 0
configure:3578: test -s conftest.o
configure:3581: $? = 0
configure:3592: result: yes
configure:3555: checking for inttypes.h
configure:3572: gcc -c -g -O2  conftest.c >&5
configure:3575: $? = 0
configure:3578: test -s conftest.o
configure:3581: $? = 0
configure:3592: result: yes
configure:3555: checking for stdint.h
configure:3572: gcc -c -g -O2  conftest.c >&5
configure:3613:20: stdint.h: No such file or directory
configure:3575: $? = 1
configure: failed program was:
| #line 3560 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "GNU Awk"
| #define PACKAGE_TARNAME "gawk"
| #define PACKAGE_VERSION "3.1.2"
| #define PACKAGE_STRING "GNU Awk 3.1.2"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "gawk"
| #define VERSION "3.1.2"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| 
| #include <stdint.h>
configure:3592: result: no
configure:3555: checking for unistd.h
configure:3572: gcc -c -g -O2  conftest.c >&5
configure:3575: $? = 0
configure:3578: test -s conftest.o
configure:3581: $? = 0
configure:3592: result: yes
configure:3614: checking minix/config.h usability
configure:3627: gcc -c -g -O2  conftest.c >&5
configure:3669:26: minix/config.h: No such file or directory
configure:3630: $? = 1
configure: failed program was:
| #line 3616 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "GNU Awk"
| #define PACKAGE_TARNAME "gawk"
| #define PACKAGE_VERSION "3.1.2"
| #define PACKAGE_STRING "GNU Awk 3.1.2"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "gawk"
| #define VERSION "3.1.2"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <minix/config.h>
configure:3646: result: no
configure:3650: checking minix/config.h presence
configure:3661: gcc -E  conftest.c
configure:3671:26: minix/config.h: No such file or directory
configure:3667: $? = 1
configure: failed program was:
| #line 3652 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "GNU Awk"
| #define PACKAGE_TARNAME "gawk"
| #define PACKAGE_VERSION "3.1.2"
| #define PACKAGE_STRING "GNU Awk 3.1.2"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "gawk"
| #define VERSION "3.1.2"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <minix/config.h>
configure:3686: result: no
configure:3722: checking for minix/config.h
configure:3729: result: no
configure:3765: checking for special C compiler options needed for large files
configure:3845: result: no
configure:3851: checking for _FILE_OFFSET_BITS value needed for large files
configure:3883: gcc -c -g -O2  conftest.c >&5
configure:3886: $? = 0
configure:3889: test -s conftest.o
configure:3892: $? = 0
configure:3948: result: no
configure:3958: checking for _LARGE_FILES value needed for large files
configure:3990: gcc -c -g -O2  conftest.c >&5
configure:3993: $? = 0
configure:3996: test -s conftest.o
configure:3999: $? = 0
configure:4055: result: no
configure:4068: checking for AIX compilation hacks
configure:4083: result: no
configure:4087: checking for Linux/Alpha compilation hacks
configure:4109: result: no
configure:4121: checking for gcc option to accept ANSI C
configure:4185: gcc  -c -g -O2  conftest.c >&5
configure:4188: $? = 0
configure:4191: test -s conftest.o
configure:4194: $? = 0
configure:4209: result: none needed
configure:4222: checking for function prototypes
configure:4225: result: yes
configure:4239: checking for ANSI C header files
configure:4389: result: yes
configure:4404: checking for string.h
configure:4409: result: yes
configure:4568: checking for msgfmt
configure:4599: result: no
configure:4605: checking for gmsgfmt
configure:4636: result: :
configure:4646: checking for xgettext
configure:4677: result: no
configure:4685: checking for msgmerge
configure:4715: result: no
configure:4753: checking build system type
configure:4771: result: mips-sgi-irix6.5
configure:4779: checking host system type
configure:4793: result: mips-sgi-irix6.5
configure:4801: checking for an ANSI C-conforming const
configure:4869: gcc -c -g -O2  conftest.c >&5
configure:4872: $? = 0
configure:4875: test -s conftest.o
configure:4878: $? = 0
configure:4889: result: yes
configure:4899: checking for inline
configure:4921: gcc -c -g -O2  conftest.c >&5
configure:4924: $? = 0
configure:4927: test -s conftest.o
configure:4930: $? = 0
configure:4942: result: inline
configure:4957: checking for off_t
configure:4982: gcc -c -g -O2  conftest.c >&5
configure:4985: $? = 0
configure:4988: test -s conftest.o
configure:4991: $? = 0
configure:5002: result: yes
configure:5014: checking for size_t
configure:5039: gcc -c -g -O2  conftest.c >&5
configure:5042: $? = 0
configure:5045: test -s conftest.o
configure:5048: $? = 0
configure:5059: result: yes
configure:5073: checking for working alloca.h
configure:5095: gcc -o conftest -g -O2   conftest.c  >&5
configure:5098: $? = 0
configure:5101: test -s conftest
configure:5104: $? = 0
configure:5115: result: yes
configure:5125: checking for alloca
configure:5167: gcc -o conftest -g -O2   conftest.c  >&5
configure:5170: $? = 0
configure:5173: test -s conftest
configure:5176: $? = 0
configure:5187: result: yes
configure:5400: checking for stdlib.h
configure:5405: result: yes
configure:5400: checking for unistd.h
configure:5405: result: yes
configure:5541: checking for getpagesize
configure:5591: gcc -o conftest -g -O2   conftest.c  >&5
configure:5594: $? = 0
configure:5597: test -s conftest
configure:5600: $? = 0
configure:5611: result: yes
configure:5621: checking for working mmap
configure:5764: gcc -o conftest -g -O2   conftest.c  >&5
configure:5767: $? = 0
configure:5769: ./conftest
configure:5772: $? = 0
configure:5786: result: yes
configure:5798: checking whether we are using the GNU C Library 2.1 or newer
configure:5832:22: features.h: No such file or directory
configure:5830: result: no
configure:5838: checking whether integer division by zero raises SIGFPE
configure:5901: gcc -o conftest -g -O2   conftest.c  >&5
configure:5904: $? = 0
configure:5906: ./conftest
configure:5909: $? = 0
configure:5924: result: yes
configure:5937: checking for inttypes.h
configure:5960: gcc -c -g -O2  conftest.c >&5
configure:5963: $? = 0
configure:5966: test -s conftest.o
configure:5969: $? = 0
configure:5980: result: yes
configure:5991: checking for stdint.h
configure:6014: gcc -c -g -O2  conftest.c >&5
configure:6027:20: stdint.h: No such file or directory
configure:6017: $? = 1
configure: failed program was:
| #line 5996 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "GNU Awk"
| #define PACKAGE_TARNAME "gawk"
| #define PACKAGE_VERSION "3.1.2"
| #define PACKAGE_STRING "GNU Awk 3.1.2"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "gawk"
| #define VERSION "3.1.2"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_UNISTD_H 1
| #define PROTOTYPES 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define INTDIV0_RAISES_SIGFPE 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| /* end confdefs.h.  */
| #include <sys/types.h>
| #include <stdint.h>
| int
| main ()
| {
| uintmax_t i = (uintmax_t) -1;
|   ;
|   return 0;
| }
configure:6034: result: no
configure:6045: checking for unsigned long long
configure:6068: gcc -o conftest -g -O2   conftest.c  >&5
configure:6071: $? = 0
configure:6074: test -s conftest
configure:6077: $? = 0
configure:6088: result: yes
configure:6114: checking for inttypes.h
configure:6138: gcc -c -g -O2  conftest.c >&5
configure:6141: $? = 0
configure:6144: test -s conftest.o
configure:6147: $? = 0
configure:6159: result: yes
configure:6172: checking whether the inttypes.h PRIxNN macros are broken
configure:6199: gcc -c -g -O2  conftest.c >&5
configure:6202: $? = 0
configure:6205: test -s conftest.o
configure:6208: $? = 0
configure:6220: result: no
configure:6258: checking for ld used by GCC
configure:6321: result: /usr/bin/ld
configure:6330: checking if the linker (/usr/bin/ld) is GNU ld
configure:6342: result: no
configure:6348: checking for shared library run path origin
configure:6361: result: done
configure:6789: checking argz.h usability
configure:6802: gcc -c -g -O2  conftest.c >&5
configure:6857:18: argz.h: No such file or directory
configure:6805: $? = 1
configure: failed program was:
| #line 6791 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "GNU Awk"
| #define PACKAGE_TARNAME "gawk"
| #define PACKAGE_VERSION "3.1.2"
| #define PACKAGE_STRING "GNU Awk 3.1.2"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "gawk"
| #define VERSION "3.1.2"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_UNISTD_H 1
| #define PROTOTYPES 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define INTDIV0_RAISES_SIGFPE 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_INTTYPES_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <argz.h>
configure:6821: result: no
configure:6825: checking argz.h presence
configure:6836: gcc -E  conftest.c
configure:6859:18: argz.h: No such file or directory
configure:6842: $? = 1
configure: failed program was:
| #line 6827 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "GNU Awk"
| #define PACKAGE_TARNAME "gawk"
| #define PACKAGE_VERSION "3.1.2"
| #define PACKAGE_STRING "GNU Awk 3.1.2"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "gawk"
| #define VERSION "3.1.2"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_UNISTD_H 1
| #define PROTOTYPES 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define INTDIV0_RAISES_SIGFPE 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_INTTYPES_H 1
| /* end confdefs.h.  */
| #include <argz.h>
configure:6861: result: no
configure:6897: checking for argz.h
configure:6904: result: no
configure:6789: checking limits.h usability
configure:6802: gcc -c -g -O2  conftest.c >&5
configure:6805: $? = 0
configure:6808: test -s conftest.o
configure:6811: $? = 0
configure:6821: result: yes
configure:6825: checking limits.h presence
configure:6836: gcc -E  conftest.c
configure:6842: $? = 0
configure:6861: result: yes
configure:6897: checking for limits.h
configure:6904: result: yes
configure:6789: checking locale.h usability
configure:6802: gcc -c -g -O2  conftest.c >&5
configure:6805: $? = 0
configure:6808: test -s conftest.o
configure:6811: $? = 0
configure:6821: result: yes
configure:6825: checking locale.h presence
configure:6836: gcc -E  conftest.c
configure:6842: $? = 0
configure:6861: result: yes
configure:6897: checking for locale.h
configure:6904: result: yes
configure:6789: checking nl_types.h usability
configure:6802: gcc -c -g -O2  conftest.c >&5
configure:6805: $? = 0
configure:6808: test -s conftest.o
configure:6811: $? = 0
configure:6821: result: yes
configure:6825: checking nl_types.h presence
configure:6836: gcc -E  conftest.c
configure:6842: $? = 0
configure:6861: result: yes
configure:6897: checking for nl_types.h
configure:6904: result: yes
configure:6789: checking malloc.h usability
configure:6802: gcc -c -g -O2  conftest.c >&5
configure:6805: $? = 0
configure:6808: test -s conftest.o
configure:6811: $? = 0
configure:6821: result: yes
configure:6825: checking malloc.h presence
configure:6836: gcc -E  conftest.c
configure:6842: $? = 0
configure:6861: result: yes
configure:6897: checking for malloc.h
configure:6904: result: yes
configure:6789: checking stddef.h usability
configure:6802: gcc -c -g -O2  conftest.c >&5
configure:6805: $? = 0
configure:6808: test -s conftest.o
configure:6811: $? = 0
configure:6821: result: yes
configure:6825: checking stddef.h presence
configure:6836: gcc -E  conftest.c
configure:6842: $? = 0
configure:6861: result: yes
configure:6897: checking for stddef.h
configure:6904: result: yes
configure:6780: checking for stdlib.h
configure:6785: result: yes
configure:6780: checking for string.h
configure:6785: result: yes
configure:6780: checking for unistd.h
configure:6785: result: yes
configure:6789: checking sys/param.h usability
configure:6802: gcc -c -g -O2  conftest.c >&5
configure:6805: $? = 0
configure:6808: test -s conftest.o
configure:6811: $? = 0
configure:6821: result: yes
configure:6825: checking sys/param.h presence
configure:6836: gcc -E  conftest.c
configure:6842: $? = 0
configure:6861: result: yes
configure:6897: checking for sys/param.h
configure:6904: result: yes
configure:6943: checking for feof_unlocked
configure:6993: gcc -o conftest -g -O2   conftest.c  >&5
configure:6996: $? = 0
configure:6999: test -s conftest
configure:7002: $? = 0
configure:7013: result: yes
configure:6943: checking for fgets_unlocked
configure:6993: gcc -o conftest -g -O2   conftest.c  >&5
ld32: ERROR   33 : Unresolved text symbol "fgets_unlocked" -- 1st referenced by 
/var/tmp//cckwkask.o.
        Use linker option -v to see when and which objects, archives and dsos 
are loaded.  
ld32: INFO    152: Output file removed because of error.
collect2: ld returned 2 exit status
configure:6996: $? = 1
configure: failed program was:
| #line 6948 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "GNU Awk"
| #define PACKAGE_TARNAME "gawk"
| #define PACKAGE_VERSION "3.1.2"
| #define PACKAGE_STRING "GNU Awk 3.1.2"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "gawk"
| #define VERSION "3.1.2"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_UNISTD_H 1
| #define PROTOTYPES 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define INTDIV0_RAISES_SIGFPE 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_NL_TYPES_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_FEOF_UNLOCKED 1
| /* end confdefs.h.  */
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char fgets_unlocked (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char fgets_unlocked ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub_fgets_unlocked) || defined (__stub___fgets_unlocked)
| choke me
| #else
| char (*f) () = fgets_unlocked;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != fgets_unlocked;
|   ;
|   return 0;
| }
configure:7013: result: no
configure:6943: checking for getc_unlocked
configure:6993: gcc -o conftest -g -O2   conftest.c  >&5
configure:6996: $? = 0
configure:6999: test -s conftest
configure:7002: $? = 0
configure:7013: result: yes
configure:6943: checking for getcwd
configure:6993: gcc -o conftest -g -O2   conftest.c  >&5
configure:6996: $? = 0
configure:6999: test -s conftest
configure:7002: $? = 0
configure:7013: result: yes
configure:6943: checking for getegid
configure:6993: gcc -o conftest -g -O2   conftest.c  >&5
configure:6996: $? = 0
configure:6999: test -s conftest
configure:7002: $? = 0
configure:7013: result: yes
configure:6943: checking for geteuid
configure:6993: gcc -o conftest -g -O2   conftest.c  >&5
configure:6996: $? = 0
configure:6999: test -s conftest
configure:7002: $? = 0
configure:7013: result: yes
configure:6943: checking for getgid
configure:6993: gcc -o conftest -g -O2   conftest.c  >&5
configure:6996: $? = 0
configure:6999: test -s conftest
configure:7002: $? = 0
configure:7013: result: yes
configure:6943: checking for getuid
configure:6993: gcc -o conftest -g -O2   conftest.c  >&5
configure:6996: $? = 0
configure:6999: test -s conftest
configure:7002: $? = 0
configure:7013: result: yes
configure:6943: checking for mempcpy
configure:6993: gcc -o conftest -g -O2   conftest.c  >&5
ld32: ERROR   33 : Unresolved text symbol "mempcpy" -- 1st referenced by 
/var/tmp//cco8wJPk.o.
        Use linker option -v to see when and which objects, archives and dsos 
are loaded.  
ld32: INFO    152: Output file removed because of error.
collect2: ld returned 2 exit status
configure:6996: $? = 1
configure: failed program was:
| #line 6948 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "GNU Awk"
| #define PACKAGE_TARNAME "gawk"
| #define PACKAGE_VERSION "3.1.2"
| #define PACKAGE_STRING "GNU Awk 3.1.2"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "gawk"
| #define VERSION "3.1.2"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_UNISTD_H 1
| #define PROTOTYPES 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define INTDIV0_RAISES_SIGFPE 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_NL_TYPES_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_FEOF_UNLOCKED 1
| #define HAVE_GETC_UNLOCKED 1
| #define HAVE_GETCWD 1
| #define HAVE_GETEGID 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGID 1
| #define HAVE_GETUID 1
| /* end confdefs.h.  */
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char mempcpy (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char mempcpy ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub_mempcpy) || defined (__stub___mempcpy)
| choke me
| #else
| char (*f) () = mempcpy;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != mempcpy;
|   ;
|   return 0;
| }
configure:7013: result: no
configure:6943: checking for munmap
configure:6993: gcc -o conftest -g -O2   conftest.c  >&5
configure:6996: $? = 0
configure:6999: test -s conftest
configure:7002: $? = 0
configure:7013: result: yes
configure:6943: checking for putenv
configure:6993: gcc -o conftest -g -O2   conftest.c  >&5
configure:6996: $? = 0
configure:6999: test -s conftest
configure:7002: $? = 0
configure:7013: result: yes
configure:6943: checking for setenv
configure:6993: gcc -o conftest -g -O2   conftest.c  >&5
ld32: ERROR   33 : Unresolved text symbol "setenv" -- 1st referenced by 
/var/tmp//ccsyqs7u.o.
        Use linker option -v to see when and which objects, archives and dsos 
are loaded.  
ld32: INFO    152: Output file removed because of error.
collect2: ld returned 2 exit status
configure:6996: $? = 1
configure: failed program was:
| #line 6948 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "GNU Awk"
| #define PACKAGE_TARNAME "gawk"
| #define PACKAGE_VERSION "3.1.2"
| #define PACKAGE_STRING "GNU Awk 3.1.2"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "gawk"
| #define VERSION "3.1.2"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_UNISTD_H 1
| #define PROTOTYPES 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define INTDIV0_RAISES_SIGFPE 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_NL_TYPES_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_FEOF_UNLOCKED 1
| #define HAVE_GETC_UNLOCKED 1
| #define HAVE_GETCWD 1
| #define HAVE_GETEGID 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGID 1
| #define HAVE_GETUID 1
| #define HAVE_MUNMAP 1
| #define HAVE_PUTENV 1
| /* end confdefs.h.  */
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char setenv (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char setenv ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub_setenv) || defined (__stub___setenv)
| choke me
| #else
| char (*f) () = setenv;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != setenv;
|   ;
|   return 0;
| }
configure:7013: result: no
configure:6943: checking for setlocale
configure:6993: gcc -o conftest -g -O2   conftest.c  >&5
configure:6996: $? = 0
configure:6999: test -s conftest
configure:7002: $? = 0
configure:7013: result: yes
configure:6943: checking for stpcpy
configure:6993: gcc -o conftest -g -O2   conftest.c  >&5
ld32: ERROR   33 : Unresolved text symbol "stpcpy" -- 1st referenced by 
/var/tmp//ccM1AFVO.o.
        Use linker option -v to see when and which objects, archives and dsos 
are loaded.  
ld32: INFO    152: Output file removed because of error.
collect2: ld returned 2 exit status
configure:6996: $? = 1
configure: failed program was:
| #line 6948 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "GNU Awk"
| #define PACKAGE_TARNAME "gawk"
| #define PACKAGE_VERSION "3.1.2"
| #define PACKAGE_STRING "GNU Awk 3.1.2"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "gawk"
| #define VERSION "3.1.2"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_UNISTD_H 1
| #define PROTOTYPES 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define INTDIV0_RAISES_SIGFPE 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_NL_TYPES_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_FEOF_UNLOCKED 1
| #define HAVE_GETC_UNLOCKED 1
| #define HAVE_GETCWD 1
| #define HAVE_GETEGID 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGID 1
| #define HAVE_GETUID 1
| #define HAVE_MUNMAP 1
| #define HAVE_PUTENV 1
| #define HAVE_SETLOCALE 1
| /* end confdefs.h.  */
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char stpcpy (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char stpcpy ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub_stpcpy) || defined (__stub___stpcpy)
| choke me
| #else
| char (*f) () = stpcpy;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != stpcpy;
|   ;
|   return 0;
| }
configure:7013: result: no
configure:6943: checking for strcasecmp
configure:6993: gcc -o conftest -g -O2   conftest.c  >&5
configure:6996: $? = 0
configure:6999: test -s conftest
configure:7002: $? = 0
configure:7013: result: yes
configure:6943: checking for strdup
configure:6993: gcc -o conftest -g -O2   conftest.c  >&5
configure:6996: $? = 0
configure:6999: test -s conftest
configure:7002: $? = 0
configure:7013: result: yes
configure:6943: checking for strtoul
configure:6993: gcc -o conftest -g -O2   conftest.c  >&5
configure:6996: $? = 0
configure:6999: test -s conftest
configure:7002: $? = 0
configure:7013: result: yes
configure:6943: checking for tsearch
configure:6993: gcc -o conftest -g -O2   conftest.c  >&5
configure:6996: $? = 0
configure:6999: test -s conftest
configure:7002: $? = 0
configure:7013: result: yes
configure:6943: checking for __argz_count
configure:6993: gcc -o conftest -g -O2   conftest.c  >&5
ld32: ERROR   33 : Unresolved text symbol "__argz_count" -- 1st referenced by 
/var/tmp//ccaLQHmr.o.
        Use linker option -v to see when and which objects, archives and dsos 
are loaded.  
ld32: INFO    152: Output file removed because of error.
collect2: ld returned 2 exit status
configure:6996: $? = 1
configure: failed program was:
| #line 6948 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "GNU Awk"
| #define PACKAGE_TARNAME "gawk"
| #define PACKAGE_VERSION "3.1.2"
| #define PACKAGE_STRING "GNU Awk 3.1.2"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "gawk"
| #define VERSION "3.1.2"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_UNISTD_H 1
| #define PROTOTYPES 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define INTDIV0_RAISES_SIGFPE 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_NL_TYPES_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_FEOF_UNLOCKED 1
| #define HAVE_GETC_UNLOCKED 1
| #define HAVE_GETCWD 1
| #define HAVE_GETEGID 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGID 1
| #define HAVE_GETUID 1
| #define HAVE_MUNMAP 1
| #define HAVE_PUTENV 1
| #define HAVE_SETLOCALE 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRTOUL 1
| #define HAVE_TSEARCH 1
| /* end confdefs.h.  */
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char __argz_count (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char __argz_count ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub___argz_count) || defined (__stub_____argz_count)
| choke me
| #else
| char (*f) () = __argz_count;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != __argz_count;
|   ;
|   return 0;
| }
configure:7013: result: no
configure:6943: checking for __argz_stringify
configure:6993: gcc -o conftest -g -O2   conftest.c  >&5
ld32: ERROR   33 : Unresolved text symbol "__argz_stringify" -- 1st referenced 
by /var/tmp//cc0IMuJd.o.
        Use linker option -v to see when and which objects, archives and dsos 
are loaded.  
ld32: INFO    152: Output file removed because of error.
collect2: ld returned 2 exit status
configure:6996: $? = 1
configure: failed program was:
| #line 6948 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "GNU Awk"
| #define PACKAGE_TARNAME "gawk"
| #define PACKAGE_VERSION "3.1.2"
| #define PACKAGE_STRING "GNU Awk 3.1.2"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "gawk"
| #define VERSION "3.1.2"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_UNISTD_H 1
| #define PROTOTYPES 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define INTDIV0_RAISES_SIGFPE 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_NL_TYPES_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_FEOF_UNLOCKED 1
| #define HAVE_GETC_UNLOCKED 1
| #define HAVE_GETCWD 1
| #define HAVE_GETEGID 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGID 1
| #define HAVE_GETUID 1
| #define HAVE_MUNMAP 1
| #define HAVE_PUTENV 1
| #define HAVE_SETLOCALE 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRTOUL 1
| #define HAVE_TSEARCH 1
| /* end confdefs.h.  */
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char __argz_stringify (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char __argz_stringify ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub___argz_stringify) || defined (__stub_____argz_stringify)
| choke me
| #else
| char (*f) () = __argz_stringify;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != __argz_stringify;
|   ;
|   return 0;
| }
configure:7013: result: no
configure:6943: checking for __argz_next
configure:6993: gcc -o conftest -g -O2   conftest.c  >&5
ld32: ERROR   33 : Unresolved text symbol "__argz_next" -- 1st referenced by 
/var/tmp//ccqRz6e4.o.
        Use linker option -v to see when and which objects, archives and dsos 
are loaded.  
ld32: INFO    152: Output file removed because of error.
collect2: ld returned 2 exit status
configure:6996: $? = 1
configure: failed program was:
| #line 6948 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "GNU Awk"
| #define PACKAGE_TARNAME "gawk"
| #define PACKAGE_VERSION "3.1.2"
| #define PACKAGE_STRING "GNU Awk 3.1.2"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "gawk"
| #define VERSION "3.1.2"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_UNISTD_H 1
| #define PROTOTYPES 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define INTDIV0_RAISES_SIGFPE 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_NL_TYPES_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_FEOF_UNLOCKED 1
| #define HAVE_GETC_UNLOCKED 1
| #define HAVE_GETCWD 1
| #define HAVE_GETEGID 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGID 1
| #define HAVE_GETUID 1
| #define HAVE_MUNMAP 1
| #define HAVE_PUTENV 1
| #define HAVE_SETLOCALE 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRTOUL 1
| #define HAVE_TSEARCH 1
| /* end confdefs.h.  */
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char __argz_next (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char __argz_next ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined (__stub___argz_next) || defined (__stub_____argz_next)
| choke me
| #else
| char (*f) () = __argz_next;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != __argz_next;
|   ;
|   return 0;
| }
configure:7013: result: no
configure:7054: checking for iconv
configure:7082: gcc -o conftest -g -O2   conftest.c  >&5
configure:7085: $? = 0
configure:7088: test -s conftest
configure:7091: $? = 0
configure:7146: result: yes
configure:7169: checking for iconv declaration
configure:7204: gcc -c -g -O2  conftest.c >&5
configure:7207: $? = 0
configure:7210: test -s conftest.o
configure:7213: $? = 0
configure:7227: result: 
         extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, 
char * *outbuf, size_t *outbytesleft);
configure:7239: checking for nl_langinfo and CODESET
configure:7261: gcc -o conftest -g -O2   conftest.c  >&5
configure:7264: $? = 0
configure:7267: test -s conftest
configure:7270: $? = 0
configure:7282: result: yes
configure:7294: checking for LC_MESSAGES
configure:7316: gcc -o conftest -g -O2   conftest.c  >&5
configure:7319: $? = 0
configure:7322: test -s conftest
configure:7325: $? = 0
configure:7336: result: yes
configure:7352: checking for bison
configure:7368: found /usr/bin/bison
configure:7378: result: bison
configure:7391: checking version of bison
configure:7400: result: 1.25, bad
configure:7421: checking whether NLS is requested
configure:7430: result: yes
configure:7445: checking whether included gettext is requested
configure:7455: result: no
configure:7466: checking for GNU gettext in libc
configure:7491: gcc -o conftest -g -O2   conftest.c  >&5
configure:7530:21: libintl.h: No such file or directory
configure:7494: $? = 1
configure: failed program was:
| #line 7471 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "GNU Awk"
| #define PACKAGE_TARNAME "gawk"
| #define PACKAGE_VERSION "3.1.2"
| #define PACKAGE_STRING "GNU Awk 3.1.2"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "gawk"
| #define VERSION "3.1.2"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_UNISTD_H 1
| #define PROTOTYPES 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define INTDIV0_RAISES_SIGFPE 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_NL_TYPES_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_FEOF_UNLOCKED 1
| #define HAVE_GETC_UNLOCKED 1
| #define HAVE_GETCWD 1
| #define HAVE_GETEGID 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGID 1
| #define HAVE_GETUID 1
| #define HAVE_MUNMAP 1
| #define HAVE_PUTENV 1
| #define HAVE_SETLOCALE 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRTOUL 1
| #define HAVE_TSEARCH 1
| #define HAVE_ICONV 1
| #define ICONV_CONST 
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_LC_MESSAGES 1
| /* end confdefs.h.  */
| #include <libintl.h>
| extern int _nl_msg_cat_cntr;
| extern int *_nl_domain_bindings;
| int
| main ()
| {
| bindtextdomain ("", "");
| return (int) gettext ("") + (int) ngettext ("", "", 0) + _nl_msg_cat_cntr + 
*_nl_domain_bindings
|   ;
|   return 0;
| }
configure:7511: result: no
configure:7894: checking for GNU gettext in libintl
configure:7927: gcc -o conftest -g -O2    conftest.c  -lintl >&5
configure:7962:21: libintl.h: No such file or directory
configure:7930: $? = 1
configure: failed program was:
| #line 7903 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "GNU Awk"
| #define PACKAGE_TARNAME "gawk"
| #define PACKAGE_VERSION "3.1.2"
| #define PACKAGE_STRING "GNU Awk 3.1.2"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "gawk"
| #define VERSION "3.1.2"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_UNISTD_H 1
| #define PROTOTYPES 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define INTDIV0_RAISES_SIGFPE 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_NL_TYPES_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_FEOF_UNLOCKED 1
| #define HAVE_GETC_UNLOCKED 1
| #define HAVE_GETCWD 1
| #define HAVE_GETEGID 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGID 1
| #define HAVE_GETUID 1
| #define HAVE_MUNMAP 1
| #define HAVE_PUTENV 1
| #define HAVE_SETLOCALE 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRTOUL 1
| #define HAVE_TSEARCH 1
| #define HAVE_ICONV 1
| #define ICONV_CONST 
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_LC_MESSAGES 1
| /* end confdefs.h.  */
| #include <libintl.h>
| extern int _nl_msg_cat_cntr;
| extern
| #ifdef __cplusplus
| "C"
| #endif
| const char *_nl_expand_alias ();
| int
| main ()
| {
| bindtextdomain ("", "");
| return (int) gettext ("") + (int) ngettext ("", "", 0) + _nl_msg_cat_cntr + 
*_nl_expand_alias (0)
|   ;
|   return 0;
| }
configure:7997: result: no
configure:8127: checking for ANSI C header files
configure:8277: result: yes
configure:8287: checking for sys/wait.h that is POSIX.1 compatible
configure:8319: gcc -c -g -O2  conftest.c >&5
configure:8322: $? = 0
configure:8325: test -s conftest.o
configure:8328: $? = 0
configure:8339: result: yes
configure:8349: checking whether time.h and sys/time.h may both be included
configure:8375: gcc -c -g -O2  conftest.c >&5
configure:8378: $? = 0
configure:8381: test -s conftest.o
configure:8384: $? = 0
configure:8395: result: yes
configure:8439: checking fcntl.h usability
configure:8452: gcc -c -g -O2  conftest.c >&5
configure:8455: $? = 0
configure:8458: test -s conftest.o
configure:8461: $? = 0
configure:8471: result: yes
configure:8475: checking fcntl.h presence
configure:8486: gcc -E  conftest.c
configure:8492: $? = 0
configure:8511: result: yes
configure:8547: checking for fcntl.h
configure:8554: result: yes
configure:8430: checking for limits.h
configure:8435: result: yes
configure:8430: checking for locale.h
configure:8435: result: yes
configure:8439: checking libintl.h usability
configure:8452: gcc -c -g -O2  conftest.c >&5
configure:8541:21: libintl.h: No such file or directory
configure:8455: $? = 1
configure: failed program was:
| #line 8441 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "GNU Awk"
| #define PACKAGE_TARNAME "gawk"
| #define PACKAGE_VERSION "3.1.2"
| #define PACKAGE_STRING "GNU Awk 3.1.2"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "gawk"
| #define VERSION "3.1.2"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_UNISTD_H 1
| #define PROTOTYPES 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define INTDIV0_RAISES_SIGFPE 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_NL_TYPES_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_FEOF_UNLOCKED 1
| #define HAVE_GETC_UNLOCKED 1
| #define HAVE_GETCWD 1
| #define HAVE_GETEGID 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGID 1
| #define HAVE_GETUID 1
| #define HAVE_MUNMAP 1
| #define HAVE_PUTENV 1
| #define HAVE_SETLOCALE 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRTOUL 1
| #define HAVE_TSEARCH 1
| #define HAVE_ICONV 1
| #define ICONV_CONST 
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_LC_MESSAGES 1
| #define ENABLE_NLS 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_FCNTL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <libintl.h>
configure:8471: result: no
configure:8475: checking libintl.h presence
configure:8486: gcc -E  conftest.c
configure:8543:21: libintl.h: No such file or directory
configure:8492: $? = 1
configure: failed program was:
| #line 8477 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "GNU Awk"
| #define PACKAGE_TARNAME "gawk"
| #define PACKAGE_VERSION "3.1.2"
| #define PACKAGE_STRING "GNU Awk 3.1.2"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "gawk"
| #define VERSION "3.1.2"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_UNISTD_H 1
| #define PROTOTYPES 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define INTDIV0_RAISES_SIGFPE 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_NL_TYPES_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_FEOF_UNLOCKED 1
| #define HAVE_GETC_UNLOCKED 1
| #define HAVE_GETCWD 1
| #define HAVE_GETEGID 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGID 1
| #define HAVE_GETUID 1
| #define HAVE_MUNMAP 1
| #define HAVE_PUTENV 1
| #define HAVE_SETLOCALE 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRTOUL 1
| #define HAVE_TSEARCH 1
| #define HAVE_ICONV 1
| #define ICONV_CONST 
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_LC_MESSAGES 1
| #define ENABLE_NLS 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_FCNTL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| /* end confdefs.h.  */
| #include <libintl.h>
configure:8511: result: no
configure:8547: checking for libintl.h
configure:8554: result: no
configure:8439: checking mcheck.h usability
configure:8452: gcc -c -g -O2  conftest.c >&5
configure:8541:20: mcheck.h: No such file or directory
configure:8455: $? = 1
configure: failed program was:
| #line 8441 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "GNU Awk"
| #define PACKAGE_TARNAME "gawk"
| #define PACKAGE_VERSION "3.1.2"
| #define PACKAGE_STRING "GNU Awk 3.1.2"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "gawk"
| #define VERSION "3.1.2"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_UNISTD_H 1
| #define PROTOTYPES 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define INTDIV0_RAISES_SIGFPE 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_NL_TYPES_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_FEOF_UNLOCKED 1
| #define HAVE_GETC_UNLOCKED 1
| #define HAVE_GETCWD 1
| #define HAVE_GETEGID 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGID 1
| #define HAVE_GETUID 1
| #define HAVE_MUNMAP 1
| #define HAVE_PUTENV 1
| #define HAVE_SETLOCALE 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRTOUL 1
| #define HAVE_TSEARCH 1
| #define HAVE_ICONV 1
| #define ICONV_CONST 
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_LC_MESSAGES 1
| #define ENABLE_NLS 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_FCNTL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <mcheck.h>
configure:8471: result: no
configure:8475: checking mcheck.h presence
configure:8486: gcc -E  conftest.c
configure:8543:20: mcheck.h: No such file or directory
configure:8492: $? = 1
configure: failed program was:
| #line 8477 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "GNU Awk"
| #define PACKAGE_TARNAME "gawk"
| #define PACKAGE_VERSION "3.1.2"
| #define PACKAGE_STRING "GNU Awk 3.1.2"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "gawk"
| #define VERSION "3.1.2"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_UNISTD_H 1
| #define PROTOTYPES 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define INTDIV0_RAISES_SIGFPE 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_NL_TYPES_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_FEOF_UNLOCKED 1
| #define HAVE_GETC_UNLOCKED 1
| #define HAVE_GETCWD 1
| #define HAVE_GETEGID 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGID 1
| #define HAVE_GETUID 1
| #define HAVE_MUNMAP 1
| #define HAVE_PUTENV 1
| #define HAVE_SETLOCALE 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRTOUL 1
| #define HAVE_TSEARCH 1
| #define HAVE_ICONV 1
| #define ICONV_CONST 
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_LC_MESSAGES 1
| #define ENABLE_NLS 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_FCNTL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| /* end confdefs.h.  */
| #include <mcheck.h>
configure:8511: result: no
configure:8547: checking for mcheck.h
configure:8554: result: no
configure:8439: checking netdb.h usability
configure:8452: gcc -c -g -O2  conftest.c >&5
configure:8455: $? = 0
configure:8458: test -s conftest.o
configure:8461: $? = 0
configure:8471: result: yes
configure:8475: checking netdb.h presence
configure:8486: gcc -E  conftest.c
configure:8492: $? = 0
configure:8511: result: yes
configure:8547: checking for netdb.h
configure:8554: result: yes
configure:8439: checking netinet/in.h usability
configure:8452: gcc -c -g -O2  conftest.c >&5
configure:8455: $? = 0
configure:8458: test -s conftest.o
configure:8461: $? = 0
configure:8471: result: yes
configure:8475: checking netinet/in.h presence
configure:8486: gcc -E  conftest.c
configure:8492: $? = 0
configure:8511: result: yes
configure:8547: checking for netinet/in.h
configure:8554: result: yes
configure:8439: checking signum.h usability
configure:8452: gcc -c -g -O2  conftest.c >&5
configure:8543:20: signum.h: No such file or directory
configure:8455: $? = 1
configure: failed program was:
| #line 8441 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "GNU Awk"
| #define PACKAGE_TARNAME "gawk"
| #define PACKAGE_VERSION "3.1.2"
| #define PACKAGE_STRING "GNU Awk 3.1.2"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "gawk"
| #define VERSION "3.1.2"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_UNISTD_H 1
| #define PROTOTYPES 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define INTDIV0_RAISES_SIGFPE 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_NL_TYPES_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_FEOF_UNLOCKED 1
| #define HAVE_GETC_UNLOCKED 1
| #define HAVE_GETCWD 1
| #define HAVE_GETEGID 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGID 1
| #define HAVE_GETUID 1
| #define HAVE_MUNMAP 1
| #define HAVE_PUTENV 1
| #define HAVE_SETLOCALE 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRTOUL 1
| #define HAVE_TSEARCH 1
| #define HAVE_ICONV 1
| #define ICONV_CONST 
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_LC_MESSAGES 1
| #define ENABLE_NLS 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_FCNTL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_NETINET_IN_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <signum.h>
configure:8471: result: no
configure:8475: checking signum.h presence
configure:8486: gcc -E  conftest.c
configure:8545:20: signum.h: No such file or directory
configure:8492: $? = 1
configure: failed program was:
| #line 8477 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "GNU Awk"
| #define PACKAGE_TARNAME "gawk"
| #define PACKAGE_VERSION "3.1.2"
| #define PACKAGE_STRING "GNU Awk 3.1.2"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "gawk"
| #define VERSION "3.1.2"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_UNISTD_H 1
| #define PROTOTYPES 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define INTDIV0_RAISES_SIGFPE 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_NL_TYPES_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_FEOF_UNLOCKED 1
| #define HAVE_GETC_UNLOCKED 1
| #define HAVE_GETCWD 1
| #define HAVE_GETEGID 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGID 1
| #define HAVE_GETUID 1
| #define HAVE_MUNMAP 1
| #define HAVE_PUTENV 1
| #define HAVE_SETLOCALE 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRTOUL 1
| #define HAVE_TSEARCH 1
| #define HAVE_ICONV 1
| #define ICONV_CONST 
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_LC_MESSAGES 1
| #define ENABLE_NLS 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_FCNTL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_NETINET_IN_H 1
| /* end confdefs.h.  */
| #include <signum.h>
configure:8511: result: no
configure:8547: checking for signum.h
configure:8554: result: no
configure:8439: checking stdarg.h usability
configure:8452: gcc -c -g -O2  conftest.c >&5
configure:8455: $? = 0
configure:8458: test -s conftest.o
configure:8461: $? = 0
configure:8471: result: yes
configure:8475: checking stdarg.h presence
configure:8486: gcc -E  conftest.c
configure:8492: $? = 0
configure:8511: result: yes
configure:8547: checking for stdarg.h
configure:8554: result: yes
configure:8430: checking for string.h
configure:8435: result: yes
configure:8430: checking for sys/param.h
configure:8435: result: yes
configure:8439: checking sys/socket.h usability
configure:8452: gcc -c -g -O2  conftest.c >&5
configure:8455: $? = 0
configure:8458: test -s conftest.o
configure:8461: $? = 0
configure:8471: result: yes
configure:8475: checking sys/socket.h presence
configure:8486: gcc -E  conftest.c
configure:8492: $? = 0
configure:8511: result: yes
configure:8547: checking for sys/socket.h
configure:8554: result: yes
configure:8439: checking sys/time.h usability
configure:8452: gcc -c -g -O2  conftest.c >&5
configure:8455: $? = 0
configure:8458: test -s conftest.o
configure:8461: $? = 0
configure:8471: result: yes
configure:8475: checking sys/time.h presence
configure:8486: gcc -E  conftest.c
configure:8492: $? = 0
configure:8511: result: yes
configure:8547: checking for sys/time.h
configure:8554: result: yes
configure:8430: checking for unistd.h
configure:8435: result: yes
configure:8439: checking termios.h usability
configure:8452: gcc -c -g -O2  conftest.c >&5
configure:8455: $? = 0
configure:8458: test -s conftest.o
configure:8461: $? = 0
configure:8471: result: yes
configure:8475: checking termios.h presence
configure:8486: gcc -E  conftest.c
configure:8492: $? = 0
configure:8511: result: yes
configure:8547: checking for termios.h
configure:8554: result: yes
configure:8439: checking stropts.h usability
configure:8452: gcc -c -g -O2  conftest.c >&5
In file included from /usr/include/stropts.h:38,
                 from configure:8550:
/usr/include/sys/stropts.h:237: parse error before "t_uscalar_t"
/usr/include/sys/stropts.h:261: parse error before "t_uscalar_t"
/usr/include/sys/stropts.h:267: parse error before '}' token
configure:8455: $? = 1
configure: failed program was:
| #line 8441 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "GNU Awk"
| #define PACKAGE_TARNAME "gawk"
| #define PACKAGE_VERSION "3.1.2"
| #define PACKAGE_STRING "GNU Awk 3.1.2"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "gawk"
| #define VERSION "3.1.2"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_UNISTD_H 1
| #define PROTOTYPES 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define INTDIV0_RAISES_SIGFPE 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_NL_TYPES_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_FEOF_UNLOCKED 1
| #define HAVE_GETC_UNLOCKED 1
| #define HAVE_GETCWD 1
| #define HAVE_GETEGID 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGID 1
| #define HAVE_GETUID 1
| #define HAVE_MUNMAP 1
| #define HAVE_PUTENV 1
| #define HAVE_SETLOCALE 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRTOUL 1
| #define HAVE_TSEARCH 1
| #define HAVE_ICONV 1
| #define ICONV_CONST 
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_LC_MESSAGES 1
| #define ENABLE_NLS 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_FCNTL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_STDARG_H 1
| #define HAVE_STRING_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_TERMIOS_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <stropts.h>
configure:8471: result: no
configure:8475: checking stropts.h presence
configure:8486: gcc -E  conftest.c
configure:8492: $? = 0
configure:8511: result: yes
configure:8531: WARNING: stropts.h: present but cannot be compiled
configure:8533: WARNING: stropts.h: check for missing prerequisite headers?
configure:8535: WARNING: stropts.h: proceeding with the preprocessor's result
configure:8547: checking for stropts.h
configure:8554: result: yes
configure:8439: checking wchar.h usability
configure:8452: gcc -c -g -O2  conftest.c >&5
configure:8455: $? = 0
configure:8458: test -s conftest.o
configure:8461: $? = 0
configure:8471: result: yes
configure:8475: checking wchar.h presence
configure:8486: gcc -E  conftest.c
configure:8492: $? = 0
configure:8511: result: yes
configure:8547: checking for wchar.h
configure:8554: result: yes
configure:8439: checking wctype.h usability
configure:8452: gcc -c -g -O2  conftest.c >&5
In file included from /usr/include/wctype.h:24,
                 from configure:8552:
/usr/data2/local/gcc-3.2.1/lib/gcc-lib/mips-sgi-irix6.5/3.2.1/include/wchar.h:264:
 parse error before "wctype_t"
/usr/data2/local/gcc-3.2.1/lib/gcc-lib/mips-sgi-irix6.5/3.2.1/include/wchar.h:265:
 parse error before "wctype_t"
configure:8455: $? = 1
configure: failed program was:
| #line 8441 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "GNU Awk"
| #define PACKAGE_TARNAME "gawk"
| #define PACKAGE_VERSION "3.1.2"
| #define PACKAGE_STRING "GNU Awk 3.1.2"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "gawk"
| #define VERSION "3.1.2"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_UNISTD_H 1
| #define PROTOTYPES 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define INTDIV0_RAISES_SIGFPE 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_NL_TYPES_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_FEOF_UNLOCKED 1
| #define HAVE_GETC_UNLOCKED 1
| #define HAVE_GETCWD 1
| #define HAVE_GETEGID 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGID 1
| #define HAVE_GETUID 1
| #define HAVE_MUNMAP 1
| #define HAVE_PUTENV 1
| #define HAVE_SETLOCALE 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRTOUL 1
| #define HAVE_TSEARCH 1
| #define HAVE_ICONV 1
| #define ICONV_CONST 
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_LC_MESSAGES 1
| #define ENABLE_NLS 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_FCNTL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_STDARG_H 1
| #define HAVE_STRING_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_WCHAR_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <wctype.h>
configure:8471: result: no
configure:8475: checking wctype.h presence
configure:8486: gcc -E  conftest.c
configure:8492: $? = 0
configure:8511: result: yes
configure:8531: WARNING: wctype.h: present but cannot be compiled
configure:8533: WARNING: wctype.h: check for missing prerequisite headers?
configure:8535: WARNING: wctype.h: proceeding with the preprocessor's result
configure:8547: checking for wctype.h
configure:8554: result: yes
configure:8575: checking for memory.h
configure:8580: result: yes
configure:8857: checking for pid_t
configure:8882: gcc -c -g -O2  conftest.c >&5
configure:8885: $? = 0
configure:8888: test -s conftest.o
configure:8891: $? = 0
configure:8902: result: yes
configure:8914: checking return type of signal handlers
configure:8946: gcc -c -g -O2  conftest.c >&5
configure:8949: $? = 0
configure:8952: test -s conftest.o
configure:8955: $? = 0
configure:8966: result: void
configure:8974: checking for size_t
configure:9019: result: yes
configure:9031: checking for uid_t in sys/types.h
configure:9055: result: yes
configure:9070: checking type of array argument to getgroups
configure:9109: gcc -o conftest -g -O2   conftest.c  >&5
configure:9112: $? = 0
configure:9114: ./conftest
configure:9117: $? = 0
configure:9151: result: gid_t
configure:9159: checking for ssize_t
configure:9184: gcc -c -g -O2  conftest.c >&5
configure:9187: $? = 0
configure:9190: test -s conftest.o
configure:9193: $? = 0
configure:9204: result: yes
configure:9261: gcc -c -g -O2  conftest.c >&5
configure:9264: $? = 0
configure:9267: test -s conftest.o
configure:9270: $? = 0
configure:9293: checking for vprintf
configure:9343: gcc -o conftest -g -O2   conftest.c  >&5
configure:9346: $? = 0
configure:9349: test -s conftest
configure:9352: $? = 0
configure:9363: result: yes
configure:9370: checking for _doprnt
configure:9420: gcc -o conftest -g -O2   conftest.c  >&5
configure:9423: $? = 0
configure:9426: test -s conftest
configure:9429: $? = 0
configure:9440: result: yes
configure:9460: checking for stdlib.h
configure:9465: result: yes
configure:9601: checking for strtod
configure:9651: gcc -o conftest -g -O2   conftest.c  >&5
configure:9654: $? = 0
configure:9657: test -s conftest
configure:9660: $? = 0
configure:9671: result: yes
configure:9681: checking for strtod with C89 semantics
configure:9721: gcc -o conftest -g -O2   conftest.c  >&5
configure:9724: $? = 0
configure:9726: ./conftest
configure:9729: $? = 0
configure:9743: result: yes
configure:9759: checking for sys/time.h
configure:9764: result: yes
configure:9759: checking for unistd.h
configure:9764: result: yes
configure:9900: checking for alarm
configure:9950: gcc -o conftest -g -O2   conftest.c  >&5
configure:9953: $? = 0
configure:9956: test -s conftest
configure:9959: $? = 0
configure:9970: result: yes
configure:9980: checking for working mktime
configure:10142: gcc -o conftest -g -O2   conftest.c  >&5
configure:10145: $? = 0
configure:10147: ./conftest
configure:10150: $? = 1
configure: program exited with status 1
configure: failed program was:
| #line 9988 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "GNU Awk"
| #define PACKAGE_TARNAME "gawk"
| #define PACKAGE_VERSION "3.1.2"
| #define PACKAGE_STRING "GNU Awk 3.1.2"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "gawk"
| #define VERSION "3.1.2"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_UNISTD_H 1
| #define PROTOTYPES 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define INTDIV0_RAISES_SIGFPE 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_NL_TYPES_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_FEOF_UNLOCKED 1
| #define HAVE_GETC_UNLOCKED 1
| #define HAVE_GETCWD 1
| #define HAVE_GETEGID 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGID 1
| #define HAVE_GETUID 1
| #define HAVE_MUNMAP 1
| #define HAVE_PUTENV 1
| #define HAVE_SETLOCALE 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRTOUL 1
| #define HAVE_TSEARCH 1
| #define HAVE_ICONV 1
| #define ICONV_CONST 
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_LC_MESSAGES 1
| #define ENABLE_NLS 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_FCNTL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_STDARG_H 1
| #define HAVE_STRING_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_MEMORY_H 1
| #define RETSIGTYPE void
| #define GETGROUPS_T gid_t
| #define SPRINTF_RET int
| #define TIME_T_IN_SYS_TYPES_H 1
| #define REGEX_MALLOC 1
| #define HAVE_VPRINTF 1
| #define HAVE_DOPRNT 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRTOD 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ALARM 1
| /* end confdefs.h.  */
| /* Test program from Paul Eggert and Tony Leneis.  */
| #if TIME_WITH_SYS_TIME
| # include <sys/time.h>
| # include <time.h>
| #else
| # if HAVE_SYS_TIME_H
| #  include <sys/time.h>
| # else
| #  include <time.h>
| # endif
| #endif
| 
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| 
| #if !HAVE_ALARM
| # define alarm(X) /* empty */
| #endif
| 
| /* Work around redefinition to rpl_putenv by other config tests.  */
| #undef putenv
| 
| static time_t time_t_max;
| 
| /* Values we'll use to set the TZ environment variable.  */
| static const char *const tz_strings[] = {
|   (const char *) 0, "TZ=GMT0", "TZ=JST-9",
|   "TZ=EST+3EDT+2,M10.1.0/00:00:00,M2.3.0/00:00:00"
| };
| #define N_STRINGS (sizeof (tz_strings) / sizeof (tz_strings[0]))
| 
| /* Fail if mktime fails to convert a date in the spring-forward gap.
|    Based on a problem report from Andreas Jaeger.  */
| static void
| spring_forward_gap ()
| {
|   /* glibc (up to about 1998-10-07) failed this test. */
|   struct tm tm;
| 
|   /* Use the portable POSIX.1 specification "TZ=PST8PDT,M4.1.0,M10.5.0"
|      instead of "TZ=America/Vancouver" in order to detect the bug even
|      on systems that don't support the Olson extension, or don't have the
|      full zoneinfo tables installed.  */
|   putenv ("TZ=PST8PDT,M4.1.0,M10.5.0");
| 
|   tm.tm_year = 98;
|   tm.tm_mon = 3;
|   tm.tm_mday = 5;
|   tm.tm_hour = 2;
|   tm.tm_min = 0;
|   tm.tm_sec = 0;
|   tm.tm_isdst = -1;
|   if (mktime (&tm) == (time_t)-1)
|     exit (1);
| }
| 
| static void
| mktime_test (now)
|      time_t now;
| {
|   struct tm *lt;
|   if ((lt = localtime (&now)) && mktime (lt) != now)
|     exit (1);
|   now = time_t_max - now;
|   if ((lt = localtime (&now)) && mktime (lt) != now)
|     exit (1);
| }
| 
| static void
| irix_6_4_bug ()
| {
|   /* Based on code from Ariel Faigon.  */
|   struct tm tm;
|   tm.tm_year = 96;
|   tm.tm_mon = 3;
|   tm.tm_mday = 0;
|   tm.tm_hour = 0;
|   tm.tm_min = 0;
|   tm.tm_sec = 0;
|   tm.tm_isdst = -1;
|   mktime (&tm);
|   if (tm.tm_mon != 2 || tm.tm_mday != 31)
|     exit (1);
| }
| 
| static void
| bigtime_test (j)
|      int j;
| {
|   struct tm tm;
|   time_t now;
|   tm.tm_year = tm.tm_mon = tm.tm_mday = tm.tm_hour = tm.tm_min = tm.tm_sec = 
j;
|   now = mktime (&tm);
|   if (now != (time_t) -1)
|     {
|       struct tm *lt = localtime (&now);
|       if (! (lt
|            && lt->tm_year == tm.tm_year
|            && lt->tm_mon == tm.tm_mon
|            && lt->tm_mday == tm.tm_mday
|            && lt->tm_hour == tm.tm_hour
|            && lt->tm_min == tm.tm_min
|            && lt->tm_sec == tm.tm_sec
|            && lt->tm_yday == tm.tm_yday
|            && lt->tm_wday == tm.tm_wday
|            && ((lt->tm_isdst < 0 ? -1 : 0 < lt->tm_isdst)
|                 == (tm.tm_isdst < 0 ? -1 : 0 < tm.tm_isdst))))
|       exit (1);
|     }
| }
| 
| int
| main ()
| {
|   time_t t, delta;
|   int i, j;
| 
|   /* This test makes some buggy mktime implementations loop.
|      Give up after 60 seconds; a mktime slower than that
|      isn't worth using anyway.  */
|   alarm (60);
| 
|   for (time_t_max = 1; 0 < time_t_max; time_t_max *= 2)
|     continue;
|   time_t_max--;
|   delta = time_t_max / 997; /* a suitable prime number */
|   for (i = 0; i < N_STRINGS; i++)
|     {
|       if (tz_strings[i])
|       putenv (tz_strings[i]);
| 
|       for (t = 0; t <= time_t_max - delta; t += delta)
|       mktime_test (t);
|       mktime_test ((time_t) 60 * 60);
|       mktime_test ((time_t) 60 * 60 * 24);
| 
|       for (j = 1; 0 < j; j *= 2)
|         bigtime_test (j);
|       bigtime_test (j - 1);
|     }
|   irix_6_4_bug ();
|   spring_forward_gap ();
|   exit (0);
| }
configure:10164: result: no
configure:10180: checking for fmod in -lm
configure:10211: gcc -o conftest -g -O2   conftest.c -lm   >&5
configure:10214: $? = 0
configure:10217: test -s conftest
configure:10220: $? = 0
configure:10232: result: yes
configure:10265: checking for getgrent
configure:10315: gcc -o conftest -g -O2   conftest.c -lm  >&5
ld32: WARNING 84 : /usr/lib32/libm.so is not used for resolving any symbol.
configure:10318: $? = 0
configure:10321: test -s conftest
configure:10324: $? = 0
configure:10335: result: yes
configure:10265: checking for getgroups
configure:10315: gcc -o conftest -g -O2   conftest.c -lm  >&5
ld32: WARNING 84 : /usr/lib32/libm.so is not used for resolving any symbol.
configure:10318: $? = 0
configure:10321: test -s conftest
configure:10324: $? = 0
configure:10335: result: yes
configure:10265: checking for memset
configure:10315: gcc -o conftest -g -O2   conftest.c -lm  >&5
configure:10380: warning: conflicting types for built-in function `memset'
ld32: WARNING 84 : /usr/lib32/libm.so is not used for resolving any symbol.
configure:10318: $? = 0
configure:10321: test -s conftest
configure:10324: $? = 0
configure:10335: result: yes
configure:10265: checking for memcpy
configure:10315: gcc -o conftest -g -O2   conftest.c -lm  >&5
configure:10381: warning: conflicting types for built-in function `memcpy'
ld32: WARNING 84 : /usr/lib32/libm.so is not used for resolving any symbol.
configure:10318: $? = 0
configure:10321: test -s conftest
configure:10324: $? = 0
configure:10335: result: yes
configure:10265: checking for memcmp
configure:10315: gcc -o conftest -g -O2   conftest.c -lm  >&5
configure:10382: warning: conflicting types for built-in function `memcmp'
ld32: WARNING 84 : /usr/lib32/libm.so is not used for resolving any symbol.
configure:10318: $? = 0
configure:10321: test -s conftest
configure:10324: $? = 0
configure:10335: result: yes
configure:10265: checking for fmod
configure:10315: gcc -o conftest -g -O2   conftest.c -lm  >&5
configure:10318: $? = 0
configure:10321: test -s conftest
configure:10324: $? = 0
configure:10335: result: yes
configure:10265: checking for setlocale
configure:10335: result: yes
configure:10265: checking for strchr
configure:10315: gcc -o conftest -g -O2   conftest.c -lm  >&5
configure:10385: warning: conflicting types for built-in function `strchr'
ld32: WARNING 84 : /usr/lib32/libm.so is not used for resolving any symbol.
configure:10318: $? = 0
configure:10321: test -s conftest
configure:10324: $? = 0
configure:10335: result: yes
configure:10265: checking for strerror
configure:10315: gcc -o conftest -g -O2   conftest.c -lm  >&5
ld32: WARNING 84 : /usr/lib32/libm.so is not used for resolving any symbol.
configure:10318: $? = 0
configure:10321: test -s conftest
configure:10324: $? = 0
configure:10335: result: yes
configure:10265: checking for strftime
configure:10315: gcc -o conftest -g -O2   conftest.c -lm  >&5
ld32: WARNING 84 : /usr/lib32/libm.so is not used for resolving any symbol.
configure:10318: $? = 0
configure:10321: test -s conftest
configure:10324: $? = 0
configure:10335: result: yes
configure:10265: checking for strncasecmp
configure:10315: gcc -o conftest -g -O2   conftest.c -lm  >&5
ld32: WARNING 84 : /usr/lib32/libm.so is not used for resolving any symbol.
configure:10318: $? = 0
configure:10321: test -s conftest
configure:10324: $? = 0
configure:10335: result: yes
configure:10265: checking for strtod
configure:10335: result: yes
configure:10265: checking for system
configure:10315: gcc -o conftest -g -O2   conftest.c -lm  >&5
ld32: WARNING 84 : /usr/lib32/libm.so is not used for resolving any symbol.
configure:10318: $? = 0
configure:10321: test -s conftest
configure:10324: $? = 0
configure:10335: result: yes
configure:10265: checking for tzset
configure:10315: gcc -o conftest -g -O2   conftest.c -lm  >&5
ld32: WARNING 84 : /usr/lib32/libm.so is not used for resolving any symbol.
configure:10318: $? = 0
configure:10321: test -s conftest
configure:10324: $? = 0
configure:10335: result: yes
configure:10265: checking for mbrlen
configure:10315: gcc -o conftest -g -O2   conftest.c -lm  >&5
ld32: WARNING 84 : /usr/lib32/libm.so is not used for resolving any symbol.
configure:10318: $? = 0
configure:10321: test -s conftest
configure:10324: $? = 0
configure:10335: result: yes
configure:10265: checking for mbrtowc
configure:10315: gcc -o conftest -g -O2   conftest.c -lm  >&5
ld32: WARNING 84 : /usr/lib32/libm.so is not used for resolving any symbol.
configure:10318: $? = 0
configure:10321: test -s conftest
configure:10324: $? = 0
configure:10335: result: yes
configure:10265: checking for grantpt
configure:10315: gcc -o conftest -g -O2   conftest.c -lm  >&5
ld32: WARNING 84 : /usr/lib32/libm.so is not used for resolving any symbol.
configure:10318: $? = 0
configure:10321: test -s conftest
configure:10324: $? = 0
configure:10335: result: yes
configure:10356: checking dlfcn.h usability
configure:10369: gcc -c -g -O2  conftest.c >&5
configure:10372: $? = 0
configure:10375: test -s conftest.o
configure:10378: $? = 0
configure:10388: result: yes
configure:10392: checking dlfcn.h presence
configure:10403: gcc -E  conftest.c
configure:10409: $? = 0
configure:10428: result: yes
configure:10464: checking for dlfcn.h
configure:10471: result: yes
configure:10494: checking for dlopen in -ldl
configure:10525: gcc -o conftest -g -O2   conftest.c -ldl  -lm  >&5
ld32: WARNING 84 : /usr/lib32/libdl.so is not used for resolving any symbol.
ld32: WARNING 84 : /usr/lib32/libm.so is not used for resolving any symbol.
configure:10528: $? = 0
configure:10531: test -s conftest
configure:10534: $? = 0
configure:10546: result: yes
configure:10570: checking whether getpgrp requires zero arguments
configure:10593: gcc -c -g -O2  conftest.c >&5
configure: In function `main':
configure:10724: too many arguments to function `getpgrp'
configure:10596: $? = 1
configure: failed program was:
| #line 10576 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "GNU Awk"
| #define PACKAGE_TARNAME "gawk"
| #define PACKAGE_VERSION "3.1.2"
| #define PACKAGE_STRING "GNU Awk 3.1.2"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "gawk"
| #define VERSION "3.1.2"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_UNISTD_H 1
| #define PROTOTYPES 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define INTDIV0_RAISES_SIGFPE 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_NL_TYPES_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_FEOF_UNLOCKED 1
| #define HAVE_GETC_UNLOCKED 1
| #define HAVE_GETCWD 1
| #define HAVE_GETEGID 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGID 1
| #define HAVE_GETUID 1
| #define HAVE_MUNMAP 1
| #define HAVE_PUTENV 1
| #define HAVE_SETLOCALE 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRTOUL 1
| #define HAVE_TSEARCH 1
| #define HAVE_ICONV 1
| #define ICONV_CONST 
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_LC_MESSAGES 1
| #define ENABLE_NLS 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_FCNTL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_STDARG_H 1
| #define HAVE_STRING_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_MEMORY_H 1
| #define RETSIGTYPE void
| #define GETGROUPS_T gid_t
| #define SPRINTF_RET int
| #define TIME_T_IN_SYS_TYPES_H 1
| #define REGEX_MALLOC 1
| #define HAVE_VPRINTF 1
| #define HAVE_DOPRNT 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRTOD 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ALARM 1
| #define HAVE_LIBM 1
| #define HAVE_GETGRENT 1
| #define HAVE_GETGROUPS 1
| #define HAVE_MEMSET 1
| #define HAVE_MEMCPY 1
| #define HAVE_MEMCMP 1
| #define HAVE_FMOD 1
| #define HAVE_SETLOCALE 1
| #define HAVE_STRCHR 1
| #define HAVE_STRERROR 1
| #define HAVE_STRFTIME 1
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRTOD 1
| #define HAVE_SYSTEM 1
| #define HAVE_TZSET 1
| #define HAVE_MBRLEN 1
| #define HAVE_MBRTOWC 1
| #define HAVE_GRANTPT 1
| #define DYNAMIC 1
| #define HAVE_LIBDL 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| getpgrp (0);
|   ;
|   return 0;
| }
configure:10614: result: yes
configure:10652: checking for gethostbyname
configure:10702: gcc -o conftest -g -O2   conftest.c -ldl -lm  >&5
ld32: WARNING 84 : /usr/lib32/libdl.so is not used for resolving any symbol.
ld32: WARNING 84 : /usr/lib32/libm.so is not used for resolving any symbol.
configure:10705: $? = 0
configure:10708: test -s conftest
configure:10711: $? = 0
configure:10722: result: yes
configure:10793: checking for connect
configure:10843: gcc -o conftest -g -O2   conftest.c -ldl -lm  >&5
ld32: WARNING 84 : /usr/lib32/libdl.so is not used for resolving any symbol.
ld32: WARNING 84 : /usr/lib32/libm.so is not used for resolving any symbol.
configure:10846: $? = 0
configure:10849: test -s conftest
configure:10852: $? = 0
configure:10863: result: yes
configure:10933: checking where to find the socket library calls
configure:10939: result: the standard library
configure:10951: checking for struct stat.st_blksize
configure:10975: gcc -c -g -O2  conftest.c >&5
configure:10978: $? = 0
configure:10981: test -s conftest.o
configure:10984: $? = 0
configure:11032: result: yes
configure:11048: checking whether time.h and sys/time.h may both be included
configure:11094: result: yes
configure:11104: checking whether struct tm is in sys/time.h or time.h
configure:11128: gcc -c -g -O2  conftest.c >&5
configure:11131: $? = 0
configure:11134: test -s conftest.o
configure:11137: $? = 0
configure:11148: result: time.h
configure:11158: checking for struct tm.tm_zone
configure:11185: gcc -c -g -O2  conftest.c >&5
configure: In function `main':
configure:11287: structure has no member named `tm_zone'
configure:11188: $? = 1
configure: failed program was:
| #line 11163 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "GNU Awk"
| #define PACKAGE_TARNAME "gawk"
| #define PACKAGE_VERSION "3.1.2"
| #define PACKAGE_STRING "GNU Awk 3.1.2"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "gawk"
| #define VERSION "3.1.2"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_UNISTD_H 1
| #define PROTOTYPES 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define INTDIV0_RAISES_SIGFPE 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_NL_TYPES_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_FEOF_UNLOCKED 1
| #define HAVE_GETC_UNLOCKED 1
| #define HAVE_GETCWD 1
| #define HAVE_GETEGID 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGID 1
| #define HAVE_GETUID 1
| #define HAVE_MUNMAP 1
| #define HAVE_PUTENV 1
| #define HAVE_SETLOCALE 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRTOUL 1
| #define HAVE_TSEARCH 1
| #define HAVE_ICONV 1
| #define ICONV_CONST 
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_LC_MESSAGES 1
| #define ENABLE_NLS 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_FCNTL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_STDARG_H 1
| #define HAVE_STRING_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_MEMORY_H 1
| #define RETSIGTYPE void
| #define GETGROUPS_T gid_t
| #define SPRINTF_RET int
| #define TIME_T_IN_SYS_TYPES_H 1
| #define REGEX_MALLOC 1
| #define HAVE_VPRINTF 1
| #define HAVE_DOPRNT 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRTOD 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ALARM 1
| #define HAVE_LIBM 1
| #define HAVE_GETGRENT 1
| #define HAVE_GETGROUPS 1
| #define HAVE_MEMSET 1
| #define HAVE_MEMCPY 1
| #define HAVE_MEMCMP 1
| #define HAVE_FMOD 1
| #define HAVE_SETLOCALE 1
| #define HAVE_STRCHR 1
| #define HAVE_STRERROR 1
| #define HAVE_STRFTIME 1
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRTOD 1
| #define HAVE_SYSTEM 1
| #define HAVE_TZSET 1
| #define HAVE_MBRLEN 1
| #define HAVE_MBRTOWC 1
| #define HAVE_GRANTPT 1
| #define DYNAMIC 1
| #define HAVE_LIBDL 1
| #define GETPGRP_VOID 1
| #define HAVE_SOCKETS 1
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_ST_BLKSIZE 1
| #define TIME_WITH_SYS_TIME 1
| /* end confdefs.h.  */
| #include <sys/types.h>
| #include <time.h>
| 
| 
| int
| main ()
| {
| static struct tm ac_aggr;
| if (ac_aggr.tm_zone)
| return 0;
|   ;
|   return 0;
| }
configure:11223: gcc -c -g -O2  conftest.c >&5
configure: In function `main':
configure:11325: structure has no member named `tm_zone'
configure:11226: $? = 1
configure: failed program was:
| #line 11201 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "GNU Awk"
| #define PACKAGE_TARNAME "gawk"
| #define PACKAGE_VERSION "3.1.2"
| #define PACKAGE_STRING "GNU Awk 3.1.2"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "gawk"
| #define VERSION "3.1.2"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_UNISTD_H 1
| #define PROTOTYPES 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define INTDIV0_RAISES_SIGFPE 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_NL_TYPES_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_FEOF_UNLOCKED 1
| #define HAVE_GETC_UNLOCKED 1
| #define HAVE_GETCWD 1
| #define HAVE_GETEGID 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGID 1
| #define HAVE_GETUID 1
| #define HAVE_MUNMAP 1
| #define HAVE_PUTENV 1
| #define HAVE_SETLOCALE 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRTOUL 1
| #define HAVE_TSEARCH 1
| #define HAVE_ICONV 1
| #define ICONV_CONST 
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_LC_MESSAGES 1
| #define ENABLE_NLS 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_FCNTL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_STDARG_H 1
| #define HAVE_STRING_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_MEMORY_H 1
| #define RETSIGTYPE void
| #define GETGROUPS_T gid_t
| #define SPRINTF_RET int
| #define TIME_T_IN_SYS_TYPES_H 1
| #define REGEX_MALLOC 1
| #define HAVE_VPRINTF 1
| #define HAVE_DOPRNT 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRTOD 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ALARM 1
| #define HAVE_LIBM 1
| #define HAVE_GETGRENT 1
| #define HAVE_GETGROUPS 1
| #define HAVE_MEMSET 1
| #define HAVE_MEMCPY 1
| #define HAVE_MEMCMP 1
| #define HAVE_FMOD 1
| #define HAVE_SETLOCALE 1
| #define HAVE_STRCHR 1
| #define HAVE_STRERROR 1
| #define HAVE_STRFTIME 1
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRTOD 1
| #define HAVE_SYSTEM 1
| #define HAVE_TZSET 1
| #define HAVE_MBRLEN 1
| #define HAVE_MBRTOWC 1
| #define HAVE_GRANTPT 1
| #define DYNAMIC 1
| #define HAVE_LIBDL 1
| #define GETPGRP_VOID 1
| #define HAVE_SOCKETS 1
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_ST_BLKSIZE 1
| #define TIME_WITH_SYS_TIME 1
| /* end confdefs.h.  */
| #include <sys/types.h>
| #include <time.h>
| 
| 
| int
| main ()
| {
| static struct tm ac_aggr;
| if (sizeof ac_aggr.tm_zone)
| return 0;
|   ;
|   return 0;
| }
configure:11245: result: no
configure:11263: checking for tzname
configure:11289: gcc -o conftest -g -O2   conftest.c -ldl -lm  >&5
ld32: WARNING 84 : /usr/lib32/libdl.so is not used for resolving any symbol.
ld32: WARNING 84 : /usr/lib32/libm.so is not used for resolving any symbol.
configure:11292: $? = 0
configure:11295: test -s conftest
configure:11298: $? = 0
configure:11309: result: yes
configure:11322: checking whether char is unsigned
configure:11346: gcc -c -g -O2  conftest.c >&5
configure: In function `main':
configure:11481: size of array `test_array' is negative
configure:11349: $? = 1
configure: failed program was:
| #line 11327 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "GNU Awk"
| #define PACKAGE_TARNAME "gawk"
| #define PACKAGE_VERSION "3.1.2"
| #define PACKAGE_STRING "GNU Awk 3.1.2"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "gawk"
| #define VERSION "3.1.2"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_UNISTD_H 1
| #define PROTOTYPES 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_MMAP 1
| #define INTDIV0_RAISES_SIGFPE 1
| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
| #define HAVE_UNSIGNED_LONG_LONG 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_NL_TYPES_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_FEOF_UNLOCKED 1
| #define HAVE_GETC_UNLOCKED 1
| #define HAVE_GETCWD 1
| #define HAVE_GETEGID 1
| #define HAVE_GETEUID 1
| #define HAVE_GETGID 1
| #define HAVE_GETUID 1
| #define HAVE_MUNMAP 1
| #define HAVE_PUTENV 1
| #define HAVE_SETLOCALE 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRDUP 1
| #define HAVE_STRTOUL 1
| #define HAVE_TSEARCH 1
| #define HAVE_ICONV 1
| #define ICONV_CONST 
| #define HAVE_LANGINFO_CODESET 1
| #define HAVE_LC_MESSAGES 1
| #define ENABLE_NLS 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_WAIT_H 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_FCNTL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_STDARG_H 1
| #define HAVE_STRING_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_WCHAR_H 1
| #define HAVE_WCTYPE_H 1
| #define HAVE_MEMORY_H 1
| #define RETSIGTYPE void
| #define GETGROUPS_T gid_t
| #define SPRINTF_RET int
| #define TIME_T_IN_SYS_TYPES_H 1
| #define REGEX_MALLOC 1
| #define HAVE_VPRINTF 1
| #define HAVE_DOPRNT 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRTOD 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_ALARM 1
| #define HAVE_LIBM 1
| #define HAVE_GETGRENT 1
| #define HAVE_GETGROUPS 1
| #define HAVE_MEMSET 1
| #define HAVE_MEMCPY 1
| #define HAVE_MEMCMP 1
| #define HAVE_FMOD 1
| #define HAVE_SETLOCALE 1
| #define HAVE_STRCHR 1
| #define HAVE_STRERROR 1
| #define HAVE_STRFTIME 1
| #define HAVE_STRNCASECMP 1
| #define HAVE_STRTOD 1
| #define HAVE_SYSTEM 1
| #define HAVE_TZSET 1
| #define HAVE_MBRLEN 1
| #define HAVE_MBRTOWC 1
| #define HAVE_GRANTPT 1
| #define DYNAMIC 1
| #define HAVE_LIBDL 1
| #define GETPGRP_VOID 1
| #define HAVE_SOCKETS 1
| #define HAVE_STRUCT_STAT_ST_BLKSIZE 1
| #define HAVE_ST_BLKSIZE 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_TZNAME 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| static int test_array [1 - 2 * !(((char) -1) < 0)];
| test_array [0] = 0
| 
|   ;
|   return 0;
| }
configure:11366: result: yes
configure:11375: checking for an ANSI C-conforming const
configure:11463: result: yes
configure:11473: checking for inline
configure:11516: result: inline
configure:11531: checking for preprocessor stringizing operator
configure:11556: result: yes
configure:11677: creating ./config.status

## ---------------------- ##
## Running config.status. ##
## ---------------------- ##

This file was extended by GNU Awk config.status 3.1.2, which was
generated by GNU Autoconf 2.57.  Invocation command line was

  CONFIG_FILES    = 
  CONFIG_HEADERS  = 
  CONFIG_LINKS    = 
  CONFIG_COMMANDS = 
  $ ./config.status 

on icat

config.status:703: creating Makefile
config.status:703: creating awklib/Makefile
config.status:703: creating doc/Makefile
config.status:703: creating intl/Makefile
config.status:703: creating po/Makefile.in
config.status:703: creating test/Makefile
config.status:807: creating config.h
config.status:1288: executing depfiles commands
config.status:1288: executing default-1 commands

## ---------------- ##
## Cache variables. ##
## ---------------- ##

ac_cv_build=mips-sgi-irix6.5
ac_cv_build_alias=mips-sgi-irix6.5
ac_cv_c_char_unsigned=yes
ac_cv_c_compiler_gnu=yes
ac_cv_c_const=yes
ac_cv_c_inline=inline
ac_cv_c_stringize=yes
ac_cv_env_CC_set=''
ac_cv_env_CC_value=''
ac_cv_env_CFLAGS_set=''
ac_cv_env_CFLAGS_value=''
ac_cv_env_CPPFLAGS_set=''
ac_cv_env_CPPFLAGS_value=''
ac_cv_env_CPP_set=''
ac_cv_env_CPP_value=''
ac_cv_env_LDFLAGS_set=''
ac_cv_env_LDFLAGS_value=''
ac_cv_env_build_alias_set=''
ac_cv_env_build_alias_value=''
ac_cv_env_host_alias_set=''
ac_cv_env_host_alias_value=''
ac_cv_env_target_alias_set=''
ac_cv_env_target_alias_value=''
ac_cv_exeext=''
ac_cv_func___argz_count=no
ac_cv_func___argz_next=no
ac_cv_func___argz_stringify=no
ac_cv_func__doprnt=yes
ac_cv_func_alarm=yes
ac_cv_func_alloca_works=yes
ac_cv_func_connect=yes
ac_cv_func_feof_unlocked=yes
ac_cv_func_fgets_unlocked=no
ac_cv_func_fmod=yes
ac_cv_func_getc_unlocked=yes
ac_cv_func_getcwd=yes
ac_cv_func_getegid=yes
ac_cv_func_geteuid=yes
ac_cv_func_getgid=yes
ac_cv_func_getgrent=yes
ac_cv_func_getgroups=yes
ac_cv_func_gethostbyname=yes
ac_cv_func_getpagesize=yes
ac_cv_func_getpgrp_void=yes
ac_cv_func_getuid=yes
ac_cv_func_grantpt=yes
ac_cv_func_mbrlen=yes
ac_cv_func_mbrtowc=yes
ac_cv_func_memcmp=yes
ac_cv_func_memcpy=yes
ac_cv_func_mempcpy=no
ac_cv_func_memset=yes
ac_cv_func_mmap_fixed_mapped=yes
ac_cv_func_munmap=yes
ac_cv_func_putenv=yes
ac_cv_func_setenv=no
ac_cv_func_setlocale=yes
ac_cv_func_stpcpy=no
ac_cv_func_strcasecmp=yes
ac_cv_func_strchr=yes
ac_cv_func_strdup=yes
ac_cv_func_strerror=yes
ac_cv_func_strftime=yes
ac_cv_func_strncasecmp=yes
ac_cv_func_strtod=yes
ac_cv_func_strtoul=yes
ac_cv_func_system=yes
ac_cv_func_tsearch=yes
ac_cv_func_tzset=yes
ac_cv_func_vprintf=yes
ac_cv_func_working_mktime=no
ac_cv_gnu_library_2_1=no
ac_cv_header_argz_h=no
ac_cv_header_dlfcn_h=yes
ac_cv_header_fcntl_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_libintl_h=no
ac_cv_header_limits_h=yes
ac_cv_header_locale_h=yes
ac_cv_header_malloc_h=yes
ac_cv_header_mcheck_h=no
ac_cv_header_memory_h=yes
ac_cv_header_minix_config_h=no
ac_cv_header_netdb_h=yes
ac_cv_header_netinet_in_h=yes
ac_cv_header_nl_types_h=yes
ac_cv_header_signum_h=no
ac_cv_header_stdarg_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stddef_h=yes
ac_cv_header_stdint_h=no
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_stropts_h=yes
ac_cv_header_sys_param_h=yes
ac_cv_header_sys_socket_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_time_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_sys_wait_h=yes
ac_cv_header_termios_h=yes
ac_cv_header_time=yes
ac_cv_header_unistd_h=yes
ac_cv_header_wchar_h=yes
ac_cv_header_wctype_h=yes
ac_cv_host=mips-sgi-irix6.5
ac_cv_host_alias=mips-sgi-irix6.5
ac_cv_lib_cposix_strerror=no
ac_cv_lib_dl_dlopen=yes
ac_cv_lib_m_fmod=yes
ac_cv_member_struct_stat_st_blksize=yes
ac_cv_member_struct_tm_tm_zone=no
ac_cv_objext=o
ac_cv_path_GMSGFMT=:
ac_cv_path_MSGFMT=:
ac_cv_path_MSGMERGE=:
ac_cv_path_XGETTEXT=:
ac_cv_prog_AWK=gawk
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_INTLBISON=bison
ac_cv_prog_YACC='bison -y'
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_cc_g=yes
ac_cv_prog_cc_stdc=''
ac_cv_prog_egrep='grep -E'
ac_cv_prog_make_make_set=yes
ac_cv_struct_tm=time.h
ac_cv_sys_file_offset_bits=no
ac_cv_sys_large_files=no
ac_cv_sys_largefile_CC=no
ac_cv_type_getgroups=gid_t
ac_cv_type_off_t=yes
ac_cv_type_pid_t=yes
ac_cv_type_signal=void
ac_cv_type_size_t=yes
ac_cv_type_ssize_t=yes
ac_cv_type_uid_t=yes
ac_cv_type_unsigned_long_long=yes
ac_cv_var_tzname=yes
ac_cv_working_alloca_h=yes
acl_cv_hardcode_direct=no
acl_cv_hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
acl_cv_hardcode_libdir_separator=:
acl_cv_hardcode_minus_L=no
acl_cv_libext=a
acl_cv_path_LD=/usr/bin/ld
acl_cv_prog_gnu_ld=no
acl_cv_rpath=done
acl_cv_shlibext=so
acl_cv_sys_lib_dlsearch_path_spec='/usr/lib /lib'
acl_cv_sys_lib_search_path_spec='/usr/lib /lib /usr/local/lib'
acl_cv_wl=-Wl,
am_cv_CC_dependencies_compiler_type=gcc3
am_cv_func_iconv=yes
am_cv_langinfo_codeset=yes
am_cv_lib_iconv=no
am_cv_prog_cc_stdc=''
am_cv_proto_iconv='extern size_t iconv (iconv_t cd, char * *inbuf, size_t 
*inbytesleft, char * *outbuf, size_t *outbytesleft);'
am_cv_proto_iconv_arg1=''
am_cv_val_LC_MESSAGES=yes
gawk_ac_cv_func_strtod_c89=yes
gawk_cv_aix_hack=no
gawk_cv_linux_alpha_hack=no
gt_cv_func_gnugettext2_libc=no
gt_cv_func_gnugettext2_libintl=no
gt_cv_header_inttypes_h=yes
gt_cv_int_divbyzero_sigfpe=yes
gt_cv_inttypes_pri_broken=no
jm_ac_cv_header_inttypes_h=yes
jm_ac_cv_header_stdint_h=no
nls_cv_force_use_gnu_gettext=no
nls_cv_header_intl=''
nls_cv_header_libgt=''
nls_cv_use_gnu_gettext=yes

## ----------------- ##
## Output variables. ##
## ----------------- ##

ACLOCAL='${SHELL} /data2/local/gawk-3.1.2.src/missing --run aclocal-1.7'
ALLOCA=''
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='${SHELL} /data2/local/gawk-3.1.2.src/missing --run tar'
ANSI2KNR=''
AUTOCONF='${SHELL} /data2/local/gawk-3.1.2.src/missing --run autoconf'
AUTOHEADER='${SHELL} /data2/local/gawk-3.1.2.src/missing --run autoheader'
AUTOMAKE='${SHELL} /data2/local/gawk-3.1.2.src/missing --run automake-1.7'
AWK='gawk'
BUILD_INCLUDED_LIBINTL='yes'
CATOBJEXT='.gmo'
CC='gcc'
CCDEPMODE='depmode=gcc3'
CFLAGS='-g -O2'
CPP='gcc -E'
CPPFLAGS=''
CYGPATH_W='echo'
DATADIRNAME='share'
DEFS='-DHAVE_CONFIG_H'
DEPDIR='.deps'
ECHO_C='ECHO_N=''
ECHO_T=''
EGREP='grep -E'
EXEEXT=''
GENCAT='gencat'
GLIBC21='no'
GMSGFMT=':'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='${SHELL} $(install_sh) -c -s'
INSTOBJEXT='.mo'
INTLBISON=':'
INTLLIBS='${top_builddir}/intl/libintl.a '
INTLOBJS='$(GETTOBJS)'
INTL_LIBTOOL_SUFFIX_PREFIX=''
LDFLAGS=''
LIBICONV=''
LIBINTL='${top_builddir}/intl/libintl.a '
LIBOBJS=' mktime$U.o'
LIBS='-ldl -lm '
LN_S='ln -s'
LTLIBICONV=''
LTLIBINTL='${top_builddir}/intl/libintl.a '
LTLIBOBJS=' mktime$U.lo'
MAKEINFO='${SHELL} /data2/local/gawk-3.1.2.src/missing --run makeinfo'
MKINSTALLDIRS='./mkinstalldirs'
MSGFMT=':'
MSGMERGE=':'
OBJEXT='o'
PACKAGE='gawk'
PACKAGE_BUGREPORT='address@hidden'
PACKAGE_NAME='GNU Awk'
PACKAGE_STRING='GNU Awk 3.1.2'
PACKAGE_TARNAME='gawk'
PACKAGE_VERSION='3.1.2'
PATH_SEPARATOR=':'
POSUB='po'
RANLIB='ranlib'
SET_MAKE=''
SHELL='/bin/sh'
SOCKET_LIBS=''
STRIP=''
U=''
USE_INCLUDED_LIBINTL='yes'
USE_NLS='yes'
VERSION='3.1.2'
XGETTEXT=':'
YACC='bison -y'
ac_ct_CC='gcc'
ac_ct_RANLIB='ranlib'
ac_ct_STRIP=''
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__include='include'
am__leading_dot='.'
am__quote=''
bindir='${exec_prefix}/bin'
build='mips-sgi-irix6.5'
build_alias=''
build_cpu='mips'
build_os='irix6.5'
build_vendor='sgi'
datadir='${prefix}/share'
exec_prefix='${prefix}'
host='mips-sgi-irix6.5'
host_alias=''
host_cpu='mips'
host_os='irix6.5'
host_vendor='sgi'
includedir='${prefix}/include'
infodir='${prefix}/info'
install_sh='/data2/local/gawk-3.1.2.src/install-sh'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localstatedir='${prefix}/var'
mandir='${prefix}/man'
oldincludedir='/usr/include'
prefix='/usr/data2/local/gawk-3.1.2'
program_transform_name='s,x,x,'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''

## ----------- ##
## confdefs.h. ##
## ----------- ##

#define DYNAMIC 1
#define ENABLE_NLS 1
#define GETGROUPS_T gid_t
#define GETPGRP_VOID 1
#define HAVE_ALARM 1
#define HAVE_ALLOCA 1
#define HAVE_ALLOCA_H 1
#define HAVE_DOPRNT 1
#define HAVE_FCNTL_H 1
#define HAVE_FEOF_UNLOCKED 1
#define HAVE_FMOD 1
#define HAVE_GETCWD 1
#define HAVE_GETC_UNLOCKED 1
#define HAVE_GETEGID 1
#define HAVE_GETEUID 1
#define HAVE_GETGID 1
#define HAVE_GETGRENT 1
#define HAVE_GETGROUPS 1
#define HAVE_GETPAGESIZE 1
#define HAVE_GETUID 1
#define HAVE_GRANTPT 1
#define HAVE_ICONV 1
#define HAVE_INTTYPES_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_INTTYPES_H_WITH_UINTMAX 1
#define HAVE_LANGINFO_CODESET 1
#define HAVE_LC_MESSAGES 1
#define HAVE_LIBDL 1
#define HAVE_LIBM 1
#define HAVE_LIMITS_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LOCALE_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_MBRLEN 1
#define HAVE_MBRTOWC 1
#define HAVE_MEMCMP 1
#define HAVE_MEMCPY 1
#define HAVE_MEMORY_H 1
#define HAVE_MEMORY_H 1
#define HAVE_MEMSET 1
#define HAVE_MMAP 1
#define HAVE_MUNMAP 1
#define HAVE_NETDB_H 1
#define HAVE_NETINET_IN_H 1
#define HAVE_NL_TYPES_H 1
#define HAVE_PUTENV 1
#define HAVE_SETLOCALE 1
#define HAVE_SETLOCALE 1
#define HAVE_SOCKETS 1
#define HAVE_STDARG_H 1
#define HAVE_STDDEF_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRCASECMP 1
#define HAVE_STRCHR 1
#define HAVE_STRDUP 1
#define HAVE_STRERROR 1
#define HAVE_STRFTIME 1
#define HAVE_STRINGIZE 1
#define HAVE_STRINGS_H 1
#define HAVE_STRING_H 1
#define HAVE_STRING_H 1
#define HAVE_STRING_H 1
#define HAVE_STRING_H 1
#define HAVE_STRNCASECMP 1
#define HAVE_STROPTS_H 1
#define HAVE_STRTOD 1
#define HAVE_STRTOD 1
#define HAVE_STRTOUL 1
#define HAVE_STRUCT_STAT_ST_BLKSIZE 1
#define HAVE_ST_BLKSIZE 1
#define HAVE_SYSTEM 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_SOCKET_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_TSEARCH 1
#define HAVE_TZNAME 1
#define HAVE_TZSET 1
#define HAVE_UNISTD_H 1
#define HAVE_UNISTD_H 1
#define HAVE_UNISTD_H 1
#define HAVE_UNISTD_H 1
#define HAVE_UNISTD_H 1
#define HAVE_UNSIGNED_LONG_LONG 1
#define HAVE_VPRINTF 1
#define HAVE_WCHAR_H 1
#define HAVE_WCTYPE_H 1
#define ICONV_CONST 
#define INTDIV0_RAISES_SIGFPE 1
#define PACKAGE "gawk"
#define PACKAGE_BUGREPORT "address@hidden"
#define PACKAGE_NAME "GNU Awk"
#define PACKAGE_STRING "GNU Awk 3.1.2"
#define PACKAGE_TARNAME "gawk"
#define PACKAGE_VERSION "3.1.2"
#define PROTOTYPES 1
#define REGEX_MALLOC 1
#define RETSIGTYPE void
#define SPRINTF_RET int
#define STDC_HEADERS 1
#define STDC_HEADERS 1
#define STDC_HEADERS 1
#define TIME_T_IN_SYS_TYPES_H 1
#define TIME_WITH_SYS_TIME 1
#define TIME_WITH_SYS_TIME 1
#define VERSION "3.1.2"

configure: exit 0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]