bug-autoconf
[Top][All Lists]
Advanced

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

[GNU Autoconf 2.53b] testsuite.log: 10 failures : 2


From: Nathan Zierfuss
Subject: [GNU Autoconf 2.53b] testsuite.log: 10 failures : 2
Date: Wed, 31 Jul 2002 17:20:14 -0800


from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2512:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure:2514: $? = 1
configure: failed program was:
#line 2503 "configure"
#include "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 <unistd.h>
configure:2530: result: no
configure:2557: checking sys/time.h usability
configure:2566: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2568:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure:2569: $? = 1
configure: failed program was:
#line 2559 "configure"
#include "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 <sys/time.h>
configure:2584: result: no
configure:2588: checking sys/time.h presence
configure:2595: gcc -E  conftest.c
configure:2601: $? = 0
configure:2619: result: yes
configure:2630: WARNING: sys/time.h: present but cannot be compiled
configure:2632: WARNING: sys/time.h: check for missing prerequisite headers?
configure:2634: WARNING: sys/time.h: proceeding with the preprocessor's result
configure:2637: checking for sys/time.h
configure:2644: result: yes
configure:2548: checking for unistd.h
configure:2553: result: no
configure:2661: checking for alarm
configure:2698: gcc -o conftest -g -O2   conftest.c  >&5
configure:2701: $? = 0
configure:2704: test -s conftest
configure:2707: $? = 0
configure:2717: result: yes
configure:2727: checking for working mktime
configure:2885: gcc -o conftest -g -O2   conftest.c  >&5
configure:2888: $? = 0
configure:2890: ./conftest
configure:2893: $? = 1
configure: program exited with status 1
configure: failed program was:
#line 2735 "configure"
#include "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:2906: result: no
configure:3007: creating ./config.status

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

This file was extended by config.status, which was
generated by GNU Autoconf 2.53b.  Invocation command line was

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

on cwsflyer

config.status:440: creating config.h

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

ac_cv_c_compiler_gnu=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_alarm=yes
ac_cv_func_working_mktime=no
ac_cv_header_inttypes_h=no
ac_cv_header_memory_h=no
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=no
ac_cv_header_stdlib_h=no
ac_cv_header_string_h=no
ac_cv_header_strings_h=no
ac_cv_header_sys_stat_h=no
ac_cv_header_sys_time_h=yes
ac_cv_header_sys_types_h=no
ac_cv_header_time=yes
ac_cv_header_unistd_h=no
ac_cv_objext=o
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_cc_g=yes
ac_cv_prog_cc_stdc=''
ac_cv_prog_egrep='grep -E'

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

CC='gcc'
CFLAGS='-g -O2'
CPP='gcc -E'
CPPFLAGS=''
DEFS='-DHAVE_CONFIG_H'
ECHO_C='ECHO_N=''
ECHO_T=''
EGREP='grep -E'
EXEEXT=''
LDFLAGS=''
LIBOBJS=' mktime$U.o'
LIBS=''
LTLIBOBJS=' mktime$U.lo'
OBJEXT='o'
PACKAGE_BUGREPORT=''
PACKAGE_NAME=''
PACKAGE_STRING=''
PACKAGE_TARNAME=''
PACKAGE_VERSION=''
PATH_SEPARATOR=':'
SHELL='/bin/sh'
ac_ct_CC='gcc'
bindir='${exec_prefix}/bin'
build_alias=''
datadir='${prefix}/share'
exec_prefix='${prefix}'
host_alias=''
includedir='${prefix}/include'
infodir='${prefix}/info'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localstatedir='${prefix}/var'
mandir='${prefix}/man'
oldincludedir='/usr/include'
prefix='/usr/local'
program_transform_name='s,x,x,'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''

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

#define HAVE_ALARM 1
#define HAVE_SYS_TIME_H 1
#define PACKAGE_BUGREPORT ""
#define PACKAGE_NAME ""
#define PACKAGE_STRING ""
#define PACKAGE_TARNAME ""
#define PACKAGE_VERSION ""
#define STDC_HEADERS 1
#define TIME_WITH_SYS_TIME 1

configure: exit 0
148. acfunctions.at:18: FAILED near `acfunctions.at:18'

152. acfunctions.at:22: testing AC_FUNC_SELECT_ARGTYPES...
acfunctions.at:22: autoconf -W obsolete
acfunctions.at:22: autoheader
acfunctions.at:22: top_srcdir=$abs_top_srcdir ./configure
0a1,6
> configure: WARNING: sys/select.h: present but cannot be compiled
> configure: WARNING: sys/select.h: check for missing prerequisite headers?
> configure: WARNING: sys/select.h: proceeding with the preprocessor's result
> configure: WARNING: sys/socket.h: present but cannot be compiled
> configure: WARNING: sys/socket.h: check for missing prerequisite headers?
> configure: WARNING: sys/socket.h: proceeding with the preprocessor's result
stdout:
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... no
checking for sys/stat.h... no
checking for stdlib.h... no
checking for string.h... no
checking for memory.h... no
checking for strings.h... no
checking for inttypes.h... no
checking for stdint.h... no
checking for unistd.h... no
checking sys/select.h usability... no
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking sys/socket.h usability... no
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking types of arguments for select... int,int *,struct timeval *
configure: creating ./config.status
config.status: creating config.h
./../../acfunctions.at:22: config.log
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by configure, which was
generated by GNU Autoconf 2.53b.  Invocation command line was

 $ ./configure

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

hostname = cwsflyer
uname -m = 00012DDA4C00
uname -r = 1
uname -s = AIX
uname -v = 5

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

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

PATH: /usr/local/pkg/autoconf/autoconf-2.53b/wrk/tests
PATH: /usr/local/bin
PATH: /usr/bin
PATH: /usr/sbin
PATH: /usr/ucb
PATH: /usr/bin/X11
PATH: /var/loadl/bin
PATH: /usr/local/krb5/bin


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

configure:1312: checking for gcc
configure:1328: found /usr/local/bin/gcc
configure:1338: result: gcc
configure:1580: checking for C compiler version
configure:1583: gcc --version </dev/null >&5
2.95.2
configure:1586: $? = 0
configure:1588: gcc -v </dev/null >&5
Reading specs from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /specs
gcc version 2.95.2 19991024 (release)
configure:1591: $? = 0
configure:1593: gcc -V </dev/null >&5
gcc: argument to `-V' is missing
configure:1596: $? = 1
configure:1616: checking for C compiler default output
configure:1619: gcc    conftest.c  >&5
configure:1622: $? = 0
configure:1655: result: a.out
configure:1660: checking whether the C compiler works
configure:1666: ./a.out
configure:1669: $? = 0
configure:1684: result: yes
configure:1691: checking whether we are cross compiling
configure:1693: result: no
configure:1696: checking for suffix of executables
configure:1698: gcc -o conftest    conftest.c  >&5
configure:1701: $? = 0
configure:1723: result:
configure:1729: checking for suffix of object files
configure:1747: gcc -c   conftest.c >&5
configure:1750: $? = 0
configure:1769: result: o
configure:1773: checking whether we are using the GNU C compiler
configure:1794: gcc -c   conftest.c >&5
configure:1797: $? = 0
configure:1800: test -s conftest.o
configure:1803: $? = 0
configure:1815: result: yes
configure:1821: checking whether gcc accepts -g
configure:1839: gcc -c -g  conftest.c >&5
configure:1842: $? = 0
configure:1845: test -s conftest.o
configure:1848: $? = 0
configure:1858: result: yes
configure:1875: checking for gcc option to accept ANSI C
configure:1932: gcc  -c -g -O2  conftest.c >&5
configure:1935: $? = 0
configure:1938: test -s conftest.o
configure:1941: $? = 0
configure:1958: result: none needed
configure:1976: gcc -c -g -O2  conftest.c >&5
conftest.c:2: parse error before `me'
configure:1979: $? = 1
configure: failed program was:
#ifndef __cplusplus
 choke me
#endif
configure:2083: checking how to run the C preprocessor
configure:2109: gcc -E  conftest.c
configure:2115: $? = 0
configure:2142: gcc -E  conftest.c
configure:2138: ac_nonexistent.h: No such file or directory
configure:2148: $? = 1
configure: failed program was:
#line 2137 "configure"
#include "confdefs.h"
#include <ac_nonexistent.h>
configure:2185: result: gcc -E
configure:2200: gcc -E  conftest.c
configure:2206: $? = 0
configure:2233: gcc -E  conftest.c
configure:2229: ac_nonexistent.h: No such file or directory
configure:2239: $? = 1
configure: failed program was:
#line 2228 "configure"
#include "confdefs.h"
#include <ac_nonexistent.h>
configure:2279: checking for egrep
configure:2289: result: grep -E
configure:2294: checking for ANSI C header files
configure:2308: gcc -E  conftest.c
configure:2314: $? = 0
configure:2401: gcc -o conftest -g -O2   conftest.c  >&5
configure:2404: $? = 0
configure:2406: ./conftest
configure:2409: $? = 0
configure:2423: result: yes
configure:2447: checking for sys/types.h
configure:2460: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2461:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure:2463: $? = 1
configure: failed program was:
#line 2452 "configure"
#include "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 <sys/types.h>
configure:2479: result: no
configure:2447: checking for sys/stat.h
configure:2460: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2461:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure:2463: $? = 1
configure: failed program was:
#line 2452 "configure"
#include "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 <sys/stat.h>
configure:2479: result: no
configure:2447: checking for stdlib.h
configure:2460: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2461:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure:2463: $? = 1
configure: failed program was:
#line 2452 "configure"
#include "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 <stdlib.h>
configure:2479: result: no
configure:2447: checking for string.h
configure:2460: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2461:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure:2463: $? = 1
configure: failed program was:
#line 2452 "configure"
#include "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 <string.h>
configure:2479: result: no
configure:2447: checking for memory.h
configure:2460: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2461:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure:2463: $? = 1
configure: failed program was:
#line 2452 "configure"
#include "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 <memory.h>
configure:2479: result: no
configure:2447: checking for strings.h
configure:2460: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2461:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure:2463: $? = 1
configure: failed program was:
#line 2452 "configure"
#include "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 <strings.h>
configure:2479: result: no
configure:2447: checking for inttypes.h
configure:2460: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2461:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure:2463: $? = 1
configure: failed program was:
#line 2452 "configure"
#include "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 <inttypes.h>
configure:2479: result: no
configure:2447: checking for stdint.h
configure:2460: gcc -c -g -O2  conftest.c >&5
configure:2488: stdint.h: No such file or directory
configure:2463: $? = 1
configure: failed program was:
#line 2452 "configure"
#include "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:2479: result: no
configure:2447: checking for unistd.h
configure:2460: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2461:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure:2463: $? = 1
configure: failed program was:
#line 2452 "configure"
#include "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 <unistd.h>
configure:2479: result: no
configure:2506: checking sys/select.h usability
configure:2515: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2517:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure:2518: $? = 1
configure: failed program was:
#line 2508 "configure"
#include "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 <sys/select.h>
configure:2533: result: no
configure:2537: checking sys/select.h presence
configure:2544: gcc -E  conftest.c
configure:2550: $? = 0
configure:2568: result: yes
configure:2579: WARNING: sys/select.h: present but cannot be compiled
configure:2581: WARNING: sys/select.h: check for missing prerequisite headers?
configure:2583: WARNING: sys/select.h: proceeding with the preprocessor's result
configure:2586: checking for sys/select.h
configure:2593: result: yes
configure:2506: checking sys/socket.h usability
configure:2515: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2517:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure:2518: $? = 1
configure: failed program was:
#line 2508 "configure"
#include "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 <sys/socket.h>
configure:2533: result: no
configure:2537: checking sys/socket.h presence
configure:2544: gcc -E  conftest.c
configure:2550: $? = 0
configure:2568: result: yes
configure:2579: WARNING: sys/socket.h: present but cannot be compiled
configure:2581: WARNING: sys/socket.h: check for missing prerequisite headers?
configure:2583: WARNING: sys/socket.h: proceeding with the preprocessor's result
configure:2586: checking for sys/socket.h
configure:2593: result: yes
configure:2606: checking types of arguments for select
configure:2636: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2623:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure:2639: $? = 1
configure: failed program was:
#line 2614 "configure"
#include "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
#if HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
#if HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif

int
main ()
{
extern int select (int,
                                           fd_set *, fd_set *, fd_set *,
                                           struct timeval *);
 ;
 return 0;
}
configure:2636: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2623:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure: In function `main':
configure:2661: conflicting types for `select'
/usr/include/sys/time.h:158: previous declaration of `select'
configure:2661: warning: extern declaration of `select' doesn't match global one
configure:2639: $? = 1
configure: failed program was:
#line 2614 "configure"
#include "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
#if HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
#if HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif

int
main ()
{
extern int select (int,
                                           fd_set *, fd_set *, fd_set *,
                                           const struct timeval *);
 ;
 return 0;
}
configure:2636: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2623:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure: In function `main':
configure:2661: conflicting types for `select'
/usr/include/sys/time.h:158: previous declaration of `select'
configure:2661: warning: extern declaration of `select' doesn't match global one
configure:2639: $? = 1
configure: failed program was:
#line 2614 "configure"
#include "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
#if HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
#if HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif

int
main ()
{
extern int select (size_t,
                                           fd_set *, fd_set *, fd_set *,
                                           struct timeval *);
 ;
 return 0;
}
configure:2636: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2623:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure: In function `main':
configure:2661: conflicting types for `select'
/usr/include/sys/time.h:158: previous declaration of `select'
configure:2661: warning: extern declaration of `select' doesn't match global one
configure:2639: $? = 1
configure: failed program was:
#line 2614 "configure"
#include "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
#if HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
#if HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif

int
main ()
{
extern int select (size_t,
                                           fd_set *, fd_set *, fd_set *,
                                           const struct timeval *);
 ;
 return 0;
}
configure:2636: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2623:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure: In function `main':
configure:2661: conflicting types for `select'
/usr/include/sys/time.h:158: previous declaration of `select'
configure:2661: warning: extern declaration of `select' doesn't match global one
configure:2639: $? = 1
configure: failed program was:
#line 2614 "configure"
#include "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
#if HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
#if HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif

int
main ()
{
extern int select (unsigned long,
                                           fd_set *, fd_set *, fd_set *,
                                           struct timeval *);
 ;
 return 0;
}
configure:2636: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2623:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure: In function `main':
configure:2661: conflicting types for `select'
/usr/include/sys/time.h:158: previous declaration of `select'
configure:2661: warning: extern declaration of `select' doesn't match global one
configure:2639: $? = 1
configure: failed program was:
#line 2614 "configure"
#include "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
#if HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
#if HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif

int
main ()
{
extern int select (unsigned long,
                                           fd_set *, fd_set *, fd_set *,
                                           const struct timeval *);
 ;
 return 0;
}
configure:2636: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2623:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure: In function `main':
configure:2661: conflicting types for `select'
/usr/include/sys/time.h:158: previous declaration of `select'
configure:2661: warning: extern declaration of `select' doesn't match global one
configure:2639: $? = 1
configure: failed program was:
#line 2614 "configure"
#include "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
#if HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
#if HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif

int
main ()
{
extern int select (unsigned,
                                           fd_set *, fd_set *, fd_set *,
                                           struct timeval *);
 ;
 return 0;
}
configure:2636: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2623:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure: In function `main':
configure:2661: conflicting types for `select'
/usr/include/sys/time.h:158: previous declaration of `select'
configure:2661: warning: extern declaration of `select' doesn't match global one
configure:2639: $? = 1
configure: failed program was:
#line 2614 "configure"
#include "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
#if HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
#if HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif

int
main ()
{
extern int select (unsigned,
                                           fd_set *, fd_set *, fd_set *,
                                           const struct timeval *);
 ;
 return 0;
}
configure:2636: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2623:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure: In function `main':
configure:2661: conflicting types for `select'
/usr/include/sys/time.h:158: previous declaration of `select'
configure:2661: warning: extern declaration of `select' doesn't match global one
configure:2639: $? = 1
configure: failed program was:
#line 2614 "configure"
#include "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
#if HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
#if HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif

int
main ()
{
extern int select (int,
                                           int *, int *, int *,
                                           struct timeval *);
 ;
 return 0;
}
configure:2636: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2623:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure: In function `main':
configure:2661: conflicting types for `select'
/usr/include/sys/time.h:158: previous declaration of `select'
configure:2661: warning: extern declaration of `select' doesn't match global one
configure:2639: $? = 1
configure: failed program was:
#line 2614 "configure"
#include "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
#if HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
#if HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif

int
main ()
{
extern int select (int,
                                           int *, int *, int *,
                                           const struct timeval *);
 ;
 return 0;
}
configure:2636: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2623:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure: In function `main':
configure:2661: conflicting types for `select'
/usr/include/sys/time.h:158: previous declaration of `select'
configure:2661: warning: extern declaration of `select' doesn't match global one
configure:2639: $? = 1
configure: failed program was:
#line 2614 "configure"
#include "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
#if HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
#if HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif

int
main ()
{
extern int select (size_t,
                                           int *, int *, int *,
                                           struct timeval *);
 ;
 return 0;
}
configure:2636: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2623:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure: In function `main':
configure:2661: conflicting types for `select'
/usr/include/sys/time.h:158: previous declaration of `select'
configure:2661: warning: extern declaration of `select' doesn't match global one
configure:2639: $? = 1
configure: failed program was:
#line 2614 "configure"
#include "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
#if HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
#if HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif

int
main ()
{
extern int select (size_t,
                                           int *, int *, int *,
                                           const struct timeval *);
 ;
 return 0;
}
configure:2636: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2623:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure: In function `main':
configure:2661: conflicting types for `select'
/usr/include/sys/time.h:158: previous declaration of `select'
configure:2661: warning: extern declaration of `select' doesn't match global one
configure:2639: $? = 1
configure: failed program was:
#line 2614 "configure"
#include "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
#if HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
#if HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif

int
main ()
{
extern int select (unsigned long,
                                           int *, int *, int *,
                                           struct timeval *);
 ;
 return 0;
}
configure:2636: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2623:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure: In function `main':
configure:2661: conflicting types for `select'
/usr/include/sys/time.h:158: previous declaration of `select'
configure:2661: warning: extern declaration of `select' doesn't match global one
configure:2639: $? = 1
configure: failed program was:
#line 2614 "configure"
#include "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
#if HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
#if HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif

int
main ()
{
extern int select (unsigned long,
                                           int *, int *, int *,
                                           const struct timeval *);
 ;
 return 0;
}
configure:2636: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2623:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure: In function `main':
configure:2661: conflicting types for `select'
/usr/include/sys/time.h:158: previous declaration of `select'
configure:2661: warning: extern declaration of `select' doesn't match global one
configure:2639: $? = 1
configure: failed program was:
#line 2614 "configure"
#include "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
#if HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
#if HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif

int
main ()
{
extern int select (unsigned,
                                           int *, int *, int *,
                                           struct timeval *);
 ;
 return 0;
}
configure:2636: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2623:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure: In function `main':
configure:2661: conflicting types for `select'
/usr/include/sys/time.h:158: previous declaration of `select'
configure:2661: warning: extern declaration of `select' doesn't match global one
configure:2639: $? = 1
configure: failed program was:
#line 2614 "configure"
#include "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
#if HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
#if HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif

int
main ()
{
extern int select (unsigned,
                                           int *, int *, int *,
                                           const struct timeval *);
 ;
 return 0;
}
configure:2636: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2623:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure: In function `main':
configure:2661: conflicting types for `select'
/usr/include/sys/time.h:158: previous declaration of `select'
configure:2661: warning: extern declaration of `select' doesn't match global one
configure:2639: $? = 1
configure: failed program was:
#line 2614 "configure"
#include "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
#if HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
#if HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif

int
main ()
{
extern int select (int,
                                           void *, void *, void *,
                                           struct timeval *);
 ;
 return 0;
}
configure:2636: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2623:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure: In function `main':
configure:2661: conflicting types for `select'
/usr/include/sys/time.h:158: previous declaration of `select'
configure:2661: warning: extern declaration of `select' doesn't match global one
configure:2639: $? = 1
configure: failed program was:
#line 2614 "configure"
#include "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
#if HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
#if HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif

int
main ()
{
extern int select (int,
                                           void *, void *, void *,
                                           const struct timeval *);
 ;
 return 0;
}
configure:2636: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2623:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure: In function `main':
configure:2661: conflicting types for `select'
/usr/include/sys/time.h:158: previous declaration of `select'
configure:2661: warning: extern declaration of `select' doesn't match global one
configure:2639: $? = 1
configure: failed program was:
#line 2614 "configure"
#include "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
#if HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
#if HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif

int
main ()
{
extern int select (size_t,
                                           void *, void *, void *,
                                           struct timeval *);
 ;
 return 0;
}
configure:2636: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2623:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure: In function `main':
configure:2661: conflicting types for `select'
/usr/include/sys/time.h:158: previous declaration of `select'
configure:2661: warning: extern declaration of `select' doesn't match global one
configure:2639: $? = 1
configure: failed program was:
#line 2614 "configure"
#include "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
#if HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
#if HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif

int
main ()
{
extern int select (size_t,
                                           void *, void *, void *,
                                           const struct timeval *);
 ;
 return 0;
}
configure:2636: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2623:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure: In function `main':
configure:2661: conflicting types for `select'
/usr/include/sys/time.h:158: previous declaration of `select'
configure:2661: warning: extern declaration of `select' doesn't match global one
configure:2639: $? = 1
configure: failed program was:
#line 2614 "configure"
#include "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
#if HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
#if HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif

int
main ()
{
extern int select (unsigned long,
                                           void *, void *, void *,
                                           struct timeval *);
 ;
 return 0;
}
configure:2636: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2623:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure: In function `main':
configure:2661: conflicting types for `select'
/usr/include/sys/time.h:158: previous declaration of `select'
configure:2661: warning: extern declaration of `select' doesn't match global one
configure:2639: $? = 1
configure: failed program was:
#line 2614 "configure"
#include "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
#if HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
#if HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif

int
main ()
{
extern int select (unsigned long,
                                           void *, void *, void *,
                                           const struct timeval *);
 ;
 return 0;
}
configure:2636: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2623:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure: In function `main':
configure:2661: conflicting types for `select'
/usr/include/sys/time.h:158: previous declaration of `select'
configure:2661: warning: extern declaration of `select' doesn't match global one
configure:2639: $? = 1
configure: failed program was:
#line 2614 "configure"
#include "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
#if HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
#if HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif

int
main ()
{
extern int select (unsigned,
                                           void *, void *, void *,
                                           struct timeval *);
 ;
 return 0;
}
configure:2636: gcc -c -g -O2  conftest.c >&5
In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
                from configure:2623:
/usr/include/sys/context.h:155: parse error before `sigset64_t'
/usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
/usr/include/sys/context.h:158: parse error before `}'
configure: In function `main':
configure:2661: conflicting types for `select'
/usr/include/sys/time.h:158: previous declaration of `select'
configure:2661: warning: extern declaration of `select' doesn't match global one
configure:2639: $? = 1
configure: failed program was:
#line 2614 "configure"
#include "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
#if HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
#if HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif

int
main ()
{
extern int select (unsigned,
                                           void *, void *, void *,
                                           const struct timeval *);
 ;
 return 0;
}
configure:2660: result: int,int *,struct timeval *
configure:2778: creating ./config.status

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

This file was extended by config.status, which was
generated by GNU Autoconf 2.53b.  Invocation command line was

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

on cwsflyer

config.status:440: creating config.h

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

ac_cv_c_compiler_gnu=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_select_args='int,int *,struct timeval *'
ac_cv_header_inttypes_h=no
ac_cv_header_memory_h=no
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=no
ac_cv_header_stdlib_h=no
ac_cv_header_string_h=no
ac_cv_header_strings_h=no
ac_cv_header_sys_select_h=yes
ac_cv_header_sys_socket_h=yes
ac_cv_header_sys_stat_h=no
ac_cv_header_sys_types_h=no
ac_cv_header_unistd_h=no
ac_cv_objext=o
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_cc_g=yes
ac_cv_prog_cc_stdc=''
ac_cv_prog_egrep='grep -E'

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

CC='gcc'
CFLAGS='-g -O2'
CPP='gcc -E'
CPPFLAGS=''
DEFS='-DHAVE_CONFIG_H'
ECHO_C='ECHO_N=''
ECHO_T=''
EGREP='grep -E'
EXEEXT=''
LDFLAGS=''
LIBOBJS=''
LIBS=''
LTLIBOBJS=''
OBJEXT='o'
PACKAGE_BUGREPORT=''
PACKAGE_NAME=''
PACKAGE_STRING=''
PACKAGE_TARNAME=''
PACKAGE_VERSION=''
PATH_SEPARATOR=':'
SHELL='/bin/sh'
ac_ct_CC='gcc'
bindir='${exec_prefix}/bin'
build_alias=''
datadir='${prefix}/share'
exec_prefix='${prefix}'
host_alias=''
includedir='${prefix}/include'
infodir='${prefix}/info'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localstatedir='${prefix}/var'
mandir='${prefix}/man'
oldincludedir='/usr/include'
prefix='/usr/local'
program_transform_name='s,x,x,'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''

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

#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_SOCKET_H 1
#define PACKAGE_BUGREPORT ""
#define PACKAGE_NAME ""
#define PACKAGE_STRING ""
#define PACKAGE_TARNAME ""
#define PACKAGE_VERSION ""
#define SELECT_TYPE_ARG1 int
#define SELECT_TYPE_ARG234 (int *)
#define SELECT_TYPE_ARG5 (struct timeval *)
#define STDC_HEADERS 1

configure: exit 0
152. acfunctions.at:22: FAILED near `acfunctions.at:22'

## ------------------- ##
## Configuration logs. ##
## ------------------- ##

testsuite: ../tests/testsuite.dir/048/config.log:
| This file contains any messages produced by compilers while
| running configure, to aid debugging if configure makes a mistake.
|
| It was created by configure, which was
| generated by GNU Autoconf 2.53b.  Invocation command line was
|
|   $ ./configure
|
| ## --------- ##
| ## Platform. ##
| ## --------- ##
|
| hostname = cwsflyer
| uname -m = 00012DDA4C00
| uname -r = 1
| uname -s = AIX
| uname -v = 5
|
| /usr/bin/uname -p = powerpc
| /bin/uname -X     = unknown
|
| /bin/arch              = unknown
| /usr/bin/arch -k       = unknown
| /usr/convex/getsysinfo = unknown
| hostinfo               = unknown
| /bin/machine           = unknown
| /usr/bin/oslevel       = 5.1.0.0
| /bin/universe          = unknown
|
| PATH: /usr/local/pkg/autoconf/autoconf-2.53b/wrk/tests
| PATH: /usr/local/bin
| PATH: /usr/bin
| PATH: /usr/sbin
| PATH: /usr/ucb
| PATH: /usr/bin/X11
| PATH: /var/loadl/bin
| PATH: /usr/local/krb5/bin
|
|
| ## ----------- ##
| ## Core tests. ##
| ## ----------- ##
|
| configure:1312: checking for gcc
| configure:1328: found /usr/local/bin/gcc
| configure:1338: result: gcc
| configure:1580: checking for C compiler version
| configure:1583: gcc --version </dev/null >&5
| 2.95.2
| configure:1586: $? = 0
| configure:1588: gcc -v </dev/null >&5
| Reading specs from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /specs
| gcc version 2.95.2 19991024 (release)
| configure:1591: $? = 0
| configure:1593: gcc -V </dev/null >&5
| gcc: argument to `-V' is missing
| configure:1596: $? = 1
| configure:1616: checking for C compiler default output
| configure:1619: gcc    conftest.c  >&5
| configure:1622: $? = 0
| configure:1655: result: a.out
| configure:1660: checking whether the C compiler works
| configure:1666: ./a.out
| configure:1669: $? = 0
| configure:1684: result: yes
| configure:1691: checking whether we are cross compiling
| configure:1693: result: no
| configure:1696: checking for suffix of executables
| configure:1698: gcc -o conftest    conftest.c  >&5
| configure:1701: $? = 0
| configure:1723: result:
| configure:1729: checking for suffix of object files
| configure:1747: gcc -c   conftest.c >&5
| configure:1750: $? = 0
| configure:1769: result: o
| configure:1773: checking whether we are using the GNU C compiler
| configure:1794: gcc -c   conftest.c >&5
| configure:1797: $? = 0
| configure:1800: test -s conftest.o
| configure:1803: $? = 0
| configure:1815: result: yes
| configure:1821: checking whether gcc accepts -g
| configure:1839: gcc -c -g  conftest.c >&5
| configure:1842: $? = 0
| configure:1845: test -s conftest.o
| configure:1848: $? = 0
| configure:1858: result: yes
| configure:1875: checking for gcc option to accept ANSI C
| configure:1932: gcc  -c -g -O2  conftest.c >&5
| configure:1935: $? = 0
| configure:1938: test -s conftest.o
| configure:1941: $? = 0
| configure:1958: result: none needed
| configure:1976: gcc -c -g -O2  conftest.c >&5
| conftest.c:2: parse error before `me'
| configure:1979: $? = 1
| configure: failed program was:
| #ifndef __cplusplus
|   choke me
| #endif
| configure:2082: checking how to run the C preprocessor
| configure:2108: gcc -E  conftest.c
| configure:2114: $? = 0
| configure:2141: gcc -E  conftest.c
| configure:2137: ac_nonexistent.h: No such file or directory
| configure:2147: $? = 1
| configure: failed program was:
| #line 2136 "configure"
| #include "confdefs.h"
| #include <ac_nonexistent.h>
| configure:2184: result: gcc -E
| configure:2199: gcc -E  conftest.c
| configure:2205: $? = 0
| configure:2232: gcc -E  conftest.c
| configure:2228: ac_nonexistent.h: No such file or directory
| configure:2238: $? = 1
| configure: failed program was:
| #line 2227 "configure"
| #include "confdefs.h"
| #include <ac_nonexistent.h>
| configure:2285: checking for egrep
| configure:2295: result: grep -E
| configure:2300: checking for ANSI C header files
| configure:2314: ./mycpp gcc -E  conftest.c
| noise
| configure:2320: $? = 0
| noise
| noise
| configure:2407: gcc -o conftest -g -O2   conftest.c  >&5
| configure:2410: $? = 0
| configure:2412: ./conftest
| configure:2415: $? = 0
| configure:2429: result: yes
| configure:2453: checking for sys/types.h
| configure:2466: gcc -c -g -O2  conftest.c >&5
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2467:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2469: $? = 1
| configure: failed program was:
| #line 2458 "configure"
| #include "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 <sys/types.h>
| configure:2485: result: no
| configure:2453: checking for sys/stat.h
| configure:2466: gcc -c -g -O2  conftest.c >&5
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2467:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2469: $? = 1
| configure: failed program was:
| #line 2458 "configure"
| #include "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 <sys/stat.h>
| configure:2485: result: no
| configure:2453: checking for stdlib.h
| configure:2466: gcc -c -g -O2  conftest.c >&5
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2467:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2469: $? = 1
| configure: failed program was:
| #line 2458 "configure"
| #include "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 <stdlib.h>
| configure:2485: result: no
| configure:2453: checking for string.h
| configure:2466: gcc -c -g -O2  conftest.c >&5
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2467:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2469: $? = 1
| configure: failed program was:
| #line 2458 "configure"
| #include "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 <string.h>
| configure:2485: result: no
| configure:2453: checking for memory.h
| configure:2466: gcc -c -g -O2  conftest.c >&5
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2467:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2469: $? = 1
| configure: failed program was:
| #line 2458 "configure"
| #include "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 <memory.h>
| configure:2485: result: no
| configure:2453: checking for strings.h
| configure:2466: gcc -c -g -O2  conftest.c >&5
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2467:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2469: $? = 1
| configure: failed program was:
| #line 2458 "configure"
| #include "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 <strings.h>
| configure:2485: result: no
| configure:2453: checking for inttypes.h
| configure:2466: gcc -c -g -O2  conftest.c >&5
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2467:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2469: $? = 1
| configure: failed program was:
| #line 2458 "configure"
| #include "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 <inttypes.h>
| configure:2485: result: no
| configure:2453: checking for stdint.h
| configure:2466: gcc -c -g -O2  conftest.c >&5
| configure:2494: stdint.h: No such file or directory
| configure:2469: $? = 1
| configure: failed program was:
| #line 2458 "configure"
| #include "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:2485: result: no
| configure:2453: checking for unistd.h
| configure:2466: gcc -c -g -O2  conftest.c >&5
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2467:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2469: $? = 1
| configure: failed program was:
| #line 2458 "configure"
| #include "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 <unistd.h>
| configure:2485: result: no
| configure:2512: checking stdio.h usability
| configure:2521: gcc -c -g -O2  conftest.c >&5
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2523:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2524: $? = 1
| configure: failed program was:
| #line 2514 "configure"
| #include "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 <stdio.h>
| configure:2539: result: no
| configure:2543: checking stdio.h presence
| configure:2550: ./mycpp gcc -E  conftest.c
| noise
| configure:2556: $? = 0
| configure:2574: result: yes
| configure:2585: WARNING: stdio.h: present but cannot be compiled
| configure:2587: WARNING: stdio.h: check for missing prerequisite headers?
| configure:2589: WARNING: stdio.h: proceeding with the preprocessor's result
| configure:2592: checking for stdio.h
| configure:2599: result: yes
| configure:2512: checking autoconf_io.h usability
| configure:2521: gcc -c -g -O2  conftest.c >&5
| configure:2549: autoconf_io.h: No such file or directory
| configure:2524: $? = 1
| configure: failed program was:
| #line 2514 "configure"
| #include "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 <autoconf_io.h>
| configure:2539: result: no
| configure:2543: checking autoconf_io.h presence
| configure:2550: ./mycpp gcc -E  conftest.c
| noise
| configure:2546: autoconf_io.h: No such file or directory
| configure:2556: $? = 1
| configure: failed program was:
| #line 2545 "configure"
| #include "confdefs.h"
| #include <autoconf_io.h>
| configure:2574: result: no
| configure:2592: checking for autoconf_io.h
| configure:2599: result: no
| configure:2707: creating ./config.status
|
| ## ---------------------- ##
| ## Running config.status. ##
| ## ---------------------- ##
|
| This file was extended by config.status, which was
| generated by GNU Autoconf 2.53b.  Invocation command line was
|
|   CONFIG_FILES    =
|   CONFIG_HEADERS  =
|   CONFIG_LINKS    =
|   CONFIG_COMMANDS =
|   $ ./config.status
|
| on cwsflyer
|
| config.status:440: creating config.h
|
| ## ---------------- ##
| ## Cache variables. ##
| ## ---------------- ##
|
| ac_cv_c_compiler_gnu=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_header_autoconf_io_h=no
| ac_cv_header_inttypes_h=no
| ac_cv_header_memory_h=no
| ac_cv_header_stdc=yes
| ac_cv_header_stdint_h=no
| ac_cv_header_stdio_h=yes
| ac_cv_header_stdlib_h=no
| ac_cv_header_string_h=no
| ac_cv_header_strings_h=no
| ac_cv_header_sys_stat_h=no
| ac_cv_header_sys_types_h=no
| ac_cv_header_unistd_h=no
| ac_cv_objext=o
| ac_cv_prog_CPP='gcc -E'
| ac_cv_prog_ac_ct_CC=gcc
| ac_cv_prog_cc_g=yes
| ac_cv_prog_cc_stdc=''
| ac_cv_prog_egrep='grep -E'
|
| ## ----------------- ##
| ## Output variables. ##
| ## ----------------- ##
|
| CC='gcc'
| CFLAGS='-g -O2'
| CPP='./mycpp gcc -E'
| CPPFLAGS=''
| DEFS='-DHAVE_CONFIG_H'
| ECHO_C='ECHO_N=''
| ECHO_T=''
| EGREP='grep -E'
| EXEEXT=''
| LDFLAGS=''
| LIBOBJS=''
| LIBS=''
| LTLIBOBJS=''
| OBJEXT='o'
| PACKAGE_BUGREPORT=''
| PACKAGE_NAME=''
| PACKAGE_STRING=''
| PACKAGE_TARNAME=''
| PACKAGE_VERSION=''
| PATH_SEPARATOR=':'
| SHELL='/bin/sh'
| ac_ct_CC='gcc'
| bindir='${exec_prefix}/bin'
| build_alias=''
| datadir='${prefix}/share'
| exec_prefix='${prefix}'
| host_alias=''
| includedir='${prefix}/include'
| infodir='${prefix}/info'
| libdir='${exec_prefix}/lib'
| libexecdir='${exec_prefix}/libexec'
| localstatedir='${prefix}/var'
| mandir='${prefix}/man'
| oldincludedir='/usr/include'
| prefix='/usr/local'
| program_transform_name='s,x,x,'
| sbindir='${exec_prefix}/sbin'
| sharedstatedir='${prefix}/com'
| sysconfdir='${prefix}/etc'
| target_alias=''
|
| ## ----------- ##
| ## confdefs.h. ##
| ## ----------- ##
|
| #define HAVE_STDIO_H 1
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_NAME ""
| #define PACKAGE_STRING ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define STDC_HEADERS 1
|
| configure: exit 0

testsuite: ../tests/testsuite.dir/049/config.log:
| This file contains any messages produced by compilers while
| running configure, to aid debugging if configure makes a mistake.
|
| It was created by configure, which was
| generated by GNU Autoconf 2.53b.  Invocation command line was
|
|   $ ./configure
|
| ## --------- ##
| ## Platform. ##
| ## --------- ##
|
| hostname = cwsflyer
| uname -m = 00012DDA4C00
| uname -r = 1
| uname -s = AIX
| uname -v = 5
|
| /usr/bin/uname -p = powerpc
| /bin/uname -X     = unknown
|
| /bin/arch              = unknown
| /usr/bin/arch -k       = unknown
| /usr/convex/getsysinfo = unknown
| hostinfo               = unknown
| /bin/machine           = unknown
| /usr/bin/oslevel       = 5.1.0.0
| /bin/universe          = unknown
|
| PATH: /usr/local/pkg/autoconf/autoconf-2.53b/wrk/tests
| PATH: /usr/local/bin
| PATH: /usr/bin
| PATH: /usr/sbin
| PATH: /usr/ucb
| PATH: /usr/bin/X11
| PATH: /var/loadl/bin
| PATH: /usr/local/krb5/bin
|
|
| ## ----------- ##
| ## Core tests. ##
| ## ----------- ##
|
| configure:1313: checking for gcc
| configure:1329: found /usr/local/bin/gcc
| configure:1339: result: gcc
| configure:1581: checking for C compiler version
| configure:1584: gcc --version </dev/null >&5
| 2.95.2
| configure:1587: $? = 0
| configure:1589: gcc -v </dev/null >&5
| Reading specs from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /specs
| gcc version 2.95.2 19991024 (release)
| configure:1592: $? = 0
| configure:1594: gcc -V </dev/null >&5
| gcc: argument to `-V' is missing
| configure:1597: $? = 1
| configure:1617: checking for C compiler default output
| configure:1620: gcc    conftest.c  >&5
| configure:1623: $? = 0
| configure:1656: result: a.out
| configure:1661: checking whether the C compiler works
| configure:1667: ./a.out
| configure:1670: $? = 0
| configure:1685: result: yes
| configure:1692: checking whether we are cross compiling
| configure:1694: result: no
| configure:1697: checking for suffix of executables
| configure:1699: gcc -o conftest    conftest.c  >&5
| configure:1702: $? = 0
| configure:1724: result:
| configure:1730: checking for suffix of object files
| configure:1748: gcc -c   conftest.c >&5
| configure:1751: $? = 0
| configure:1770: result: o
| configure:1774: checking whether we are using the GNU C compiler
| configure:1795: gcc -c   conftest.c >&5
| configure:1798: $? = 0
| configure:1801: test -s conftest.o
| configure:1804: $? = 0
| configure:1816: result: yes
| configure:1822: checking whether gcc accepts -g
| configure:1840: gcc -c -g  conftest.c >&5
| configure:1843: $? = 0
| configure:1846: test -s conftest.o
| configure:1849: $? = 0
| configure:1859: result: yes
| configure:1876: checking for gcc option to accept ANSI C
| configure:1933: gcc  -c -g -O2  conftest.c >&5
| configure:1936: $? = 0
| configure:1939: test -s conftest.o
| configure:1942: $? = 0
| configure:1959: result: none needed
| configure:1977: gcc -c -g -O2  conftest.c >&5
| conftest.c:2: parse error before `me'
| configure:1980: $? = 1
| configure: failed program was:
| #ifndef __cplusplus
|   choke me
| #endif
| configure:2083: checking how to run the C preprocessor
| configure:2185: result: ./mycpp
| configure:2200: ./mycpp  conftest.c
| configure:2206: $? = 0
| configure:2233: ./mycpp  conftest.c
| "configure", line 2229.10: 1506-296 (S) #include file <ac_nonexistent.h> not found.
| configure:2239: $? = 0
| configure:2200: ./mycpp  conftest.c
| configure:2206: $? = 0
| configure:2233: ./mycpp  conftest.c
| "configure", line 2229.10: 1506-296 (S) #include file <ac_nonexistent.h> not found.
| configure:2239: $? = 0
| configure: failed program was:
| #line 2228 "configure"
| #include "confdefs.h"
| #include <ac_nonexistent.h>
| configure:2284: checking for egrep
| configure:2294: result: grep -E
| configure:2299: checking for ANSI C header files
| configure:2313: ./mycpp  conftest.c
| configure:2319: $? = 0
| configure:2406: gcc -o conftest -g -O2   conftest.c  >&5
| configure:2409: $? = 0
| configure:2411: ./conftest
| configure:2414: $? = 0
| configure:2428: result: yes
| configure:2452: checking for sys/types.h
| configure:2465: gcc -c -g -O2  conftest.c >&5
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2466:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2468: $? = 1
| configure: failed program was:
| #line 2457 "configure"
| #include "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 <sys/types.h>
| configure:2484: result: no
| configure:2452: checking for sys/stat.h
| configure:2465: gcc -c -g -O2  conftest.c >&5
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2466:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2468: $? = 1
| configure: failed program was:
| #line 2457 "configure"
| #include "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 <sys/stat.h>
| configure:2484: result: no
| configure:2452: checking for stdlib.h
| configure:2465: gcc -c -g -O2  conftest.c >&5
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2466:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2468: $? = 1
| configure: failed program was:
| #line 2457 "configure"
| #include "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 <stdlib.h>
| configure:2484: result: no
| configure:2452: checking for string.h
| configure:2465: gcc -c -g -O2  conftest.c >&5
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2466:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2468: $? = 1
| configure: failed program was:
| #line 2457 "configure"
| #include "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 <string.h>
| configure:2484: result: no
| configure:2452: checking for memory.h
| configure:2465: gcc -c -g -O2  conftest.c >&5
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2466:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2468: $? = 1
| configure: failed program was:
| #line 2457 "configure"
| #include "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 <memory.h>
| configure:2484: result: no
| configure:2452: checking for strings.h
| configure:2465: gcc -c -g -O2  conftest.c >&5
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2466:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2468: $? = 1
| configure: failed program was:
| #line 2457 "configure"
| #include "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 <strings.h>
| configure:2484: result: no
| configure:2452: checking for inttypes.h
| configure:2465: gcc -c -g -O2  conftest.c >&5
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2466:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2468: $? = 1
| configure: failed program was:
| #line 2457 "configure"
| #include "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 <inttypes.h>
| configure:2484: result: no
| configure:2452: checking for stdint.h
| configure:2465: gcc -c -g -O2  conftest.c >&5
| configure:2493: stdint.h: No such file or directory
| configure:2468: $? = 1
| configure: failed program was:
| #line 2457 "configure"
| #include "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:2484: result: no
| configure:2452: checking for unistd.h
| configure:2465: gcc -c -g -O2  conftest.c >&5
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2466:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2468: $? = 1
| configure: failed program was:
| #line 2457 "configure"
| #include "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 <unistd.h>
| configure:2484: result: no
| configure:2511: checking stdio.h usability
| configure:2520: gcc -c -g -O2  conftest.c >&5
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2522:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2523: $? = 1
| configure: failed program was:
| #line 2513 "configure"
| #include "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 <stdio.h>
| configure:2538: result: no
| configure:2542: checking stdio.h presence
| configure:2549: ./mycpp  conftest.c
| configure:2555: $? = 0
| configure:2573: result: yes
| configure:2584: WARNING: stdio.h: present but cannot be compiled
| configure:2586: WARNING: stdio.h: check for missing prerequisite headers?
| configure:2588: WARNING: stdio.h: proceeding with the preprocessor's result
| configure:2591: checking for stdio.h
| configure:2598: result: yes
| configure:2511: checking autoconf_io.h usability
| configure:2520: gcc -c -g -O2  conftest.c >&5
| configure:2548: autoconf_io.h: No such file or directory
| configure:2523: $? = 1
| configure: failed program was:
| #line 2513 "configure"
| #include "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 <autoconf_io.h>
| configure:2538: result: no
| configure:2542: checking autoconf_io.h presence
| configure:2549: ./mycpp  conftest.c
| "configure", line 2545.10: 1506-296 (S) #include file <autoconf_io.h> not found.
| configure:2555: $? = 0
| configure: failed program was:
| #line 2544 "configure"
| #include "confdefs.h"
| #include <autoconf_io.h>
| configure:2573: result: no
| configure:2591: checking for autoconf_io.h
| configure:2598: result: no
| configure:2706: creating ./config.status
|
| ## ---------------------- ##
| ## Running config.status. ##
| ## ---------------------- ##
|
| This file was extended by config.status, which was
| generated by GNU Autoconf 2.53b.  Invocation command line was
|
|   CONFIG_FILES    =
|   CONFIG_HEADERS  =
|   CONFIG_LINKS    =
|   CONFIG_COMMANDS =
|   $ ./config.status
|
| on cwsflyer
|
| config.status:440: creating config.h
|
| ## ---------------- ##
| ## Cache variables. ##
| ## ---------------- ##
|
| ac_cv_c_compiler_gnu=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_header_autoconf_io_h=no
| ac_cv_header_inttypes_h=no
| ac_cv_header_memory_h=no
| ac_cv_header_stdc=yes
| ac_cv_header_stdint_h=no
| ac_cv_header_stdio_h=yes
| ac_cv_header_stdlib_h=no
| ac_cv_header_string_h=no
| ac_cv_header_strings_h=no
| ac_cv_header_sys_stat_h=no
| ac_cv_header_sys_types_h=no
| ac_cv_header_unistd_h=no
| ac_cv_objext=o
| ac_cv_prog_CPP=./mycpp
| ac_cv_prog_ac_ct_CC=gcc
| ac_cv_prog_cc_g=yes
| ac_cv_prog_cc_stdc=''
| ac_cv_prog_egrep='grep -E'
|
| ## ----------------- ##
| ## Output variables. ##
| ## ----------------- ##
|
| CC='gcc'
| CFLAGS='-g -O2'
| CPP='./mycpp'
| CPPFLAGS=''
| DEFS='-DHAVE_CONFIG_H'
| ECHO_C='ECHO_N=''
| ECHO_T=''
| EGREP='grep -E'
| EXEEXT=''
| LDFLAGS=''
| LIBOBJS=''
| LIBS=''
| LTLIBOBJS=''
| OBJEXT='o'
| PACKAGE_BUGREPORT=''
| PACKAGE_NAME=''
| PACKAGE_STRING=''
| PACKAGE_TARNAME=''
| PACKAGE_VERSION=''
| PATH_SEPARATOR=':'
| SHELL='/bin/sh'
| ac_ct_CC='gcc'
| bindir='${exec_prefix}/bin'
| build_alias=''
| datadir='${prefix}/share'
| exec_prefix='${prefix}'
| host_alias=''
| includedir='${prefix}/include'
| infodir='${prefix}/info'
| libdir='${exec_prefix}/lib'
| libexecdir='${exec_prefix}/libexec'
| localstatedir='${prefix}/var'
| mandir='${prefix}/man'
| oldincludedir='/usr/include'
| prefix='/usr/local'
| program_transform_name='s,x,x,'
| sbindir='${exec_prefix}/sbin'
| sharedstatedir='${prefix}/com'
| sysconfdir='${prefix}/etc'
| target_alias=''
|
| ## ----------- ##
| ## confdefs.h. ##
| ## ----------- ##
|
| #define HAVE_STDIO_H 1
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_NAME ""
| #define PACKAGE_STRING ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define STDC_HEADERS 1
|
| configure: exit 0

testsuite: ../tests/testsuite.dir/050/config.log:
| This file contains any messages produced by compilers while
| running configure, to aid debugging if configure makes a mistake.
|
| It was created by configure, which was
| generated by GNU Autoconf 2.53b.  Invocation command line was
|
|   $ ./configure
|
| ## --------- ##
| ## Platform. ##
| ## --------- ##
|
| hostname = cwsflyer
| uname -m = 00012DDA4C00
| uname -r = 1
| uname -s = AIX
| uname -v = 5
|
| /usr/bin/uname -p = powerpc
| /bin/uname -X     = unknown
|
| /bin/arch              = unknown
| /usr/bin/arch -k       = unknown
| /usr/convex/getsysinfo = unknown
| hostinfo               = unknown
| /bin/machine           = unknown
| /usr/bin/oslevel       = 5.1.0.0
| /bin/universe          = unknown
|
| PATH: /usr/local/pkg/autoconf/autoconf-2.53b/wrk/tests
| PATH: /usr/local/bin
| PATH: /usr/bin
| PATH: /usr/sbin
| PATH: /usr/ucb
| PATH: /usr/bin/X11
| PATH: /var/loadl/bin
| PATH: /usr/local/krb5/bin
|
|
| ## ----------- ##
| ## Core tests. ##
| ## ----------- ##
|
| configure:1312: checking for gcc
| configure:1328: found /usr/local/bin/gcc
| configure:1338: result: gcc
| configure:1580: checking for C compiler version
| configure:1583: gcc --version </dev/null >&5
| 2.95.2
| configure:1586: $? = 0
| configure:1588: gcc -v </dev/null >&5
| Reading specs from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /specs
| gcc version 2.95.2 19991024 (release)
| configure:1591: $? = 0
| configure:1593: gcc -V </dev/null >&5
| gcc: argument to `-V' is missing
| configure:1596: $? = 1
| configure:1616: checking for C compiler default output
| configure:1619: gcc    conftest.c  >&5
| configure:1622: $? = 0
| configure:1655: result: a.out
| configure:1660: checking whether the C compiler works
| configure:1666: ./a.out
| configure:1669: $? = 0
| configure:1684: result: yes
| configure:1691: checking whether we are cross compiling
| configure:1693: result: no
| configure:1696: checking for suffix of executables
| configure:1698: gcc -o conftest    conftest.c  >&5
| configure:1701: $? = 0
| configure:1723: result:
| configure:1729: checking for suffix of object files
| configure:1747: gcc -c   conftest.c >&5
| configure:1750: $? = 0
| configure:1769: result: o
| configure:1773: checking whether we are using the GNU C compiler
| configure:1794: gcc -c   conftest.c >&5
| configure:1797: $? = 0
| configure:1800: test -s conftest.o
| configure:1803: $? = 0
| configure:1815: result: yes
| configure:1821: checking whether gcc accepts -g
| configure:1839: gcc -c -g  conftest.c >&5
| configure:1842: $? = 0
| configure:1845: test -s conftest.o
| configure:1848: $? = 0
| configure:1858: result: yes
| configure:1875: checking for gcc option to accept ANSI C
| configure:1932: gcc  -c -g -O2  conftest.c >&5
| configure:1935: $? = 0
| configure:1938: test -s conftest.o
| configure:1941: $? = 0
| configure:1958: result: none needed
| configure:1976: gcc -c -g -O2  conftest.c >&5
| conftest.c:2: parse error before `me'
| configure:1979: $? = 1
| configure: failed program was:
| #ifndef __cplusplus
|   choke me
| #endif
| configure:2083: checking how to run the C preprocessor
| configure:2109: ./mycc gcc -E  conftest.c
| Annoying copyright message
| configure:2115: $? = 0
| configure:2142: ./mycc gcc -E  conftest.c
| Annoying copyright message
| configure:2138: ac_nonexistent.h: No such file or directory
| configure:2148: $? = 1
| configure: failed program was:
| #line 2137 "configure"
| #include "confdefs.h"
| #include <ac_nonexistent.h>
| configure:2185: result: ./mycc gcc -E
| configure:2200: ./mycc gcc -E  conftest.c
| Annoying copyright message
| configure:2206: $? = 0
| configure:2233: ./mycc gcc -E  conftest.c
| Annoying copyright message
| configure:2229: ac_nonexistent.h: No such file or directory
| configure:2239: $? = 1
| configure: failed program was:
| #line 2228 "configure"
| #include "confdefs.h"
| #include <ac_nonexistent.h>
| configure:2287: checking for egrep
| configure:2297: result: grep -E
| configure:2302: checking for ANSI C header files
| configure:2316: ./mycc gcc -E  conftest.c
| Annoying copyright message
| configure:2322: $? = 0
| Annoying copyright message
| Annoying copyright message
| configure:2409: ./mycc gcc -o conftest -g -O2   conftest.c  >&5
| Annoying copyright message
| configure:2412: $? = 0
| configure:2414: ./conftest
| configure:2417: $? = 0
| configure:2431: result: yes
| configure:2455: checking for sys/types.h
| configure:2468: ./mycc gcc -c -g -O2  conftest.c >&5
| Annoying copyright message
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2469:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2471: $? = 1
| configure: failed program was:
| #line 2460 "configure"
| #include "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 <sys/types.h>
| configure:2487: result: no
| configure:2455: checking for sys/stat.h
| configure:2468: ./mycc gcc -c -g -O2  conftest.c >&5
| Annoying copyright message
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2469:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2471: $? = 1
| configure: failed program was:
| #line 2460 "configure"
| #include "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 <sys/stat.h>
| configure:2487: result: no
| configure:2455: checking for stdlib.h
| configure:2468: ./mycc gcc -c -g -O2  conftest.c >&5
| Annoying copyright message
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2469:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2471: $? = 1
| configure: failed program was:
| #line 2460 "configure"
| #include "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 <stdlib.h>
| configure:2487: result: no
| configure:2455: checking for string.h
| configure:2468: ./mycc gcc -c -g -O2  conftest.c >&5
| Annoying copyright message
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2469:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2471: $? = 1
| configure: failed program was:
| #line 2460 "configure"
| #include "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 <string.h>
| configure:2487: result: no
| configure:2455: checking for memory.h
| configure:2468: ./mycc gcc -c -g -O2  conftest.c >&5
| Annoying copyright message
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2469:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2471: $? = 1
| configure: failed program was:
| #line 2460 "configure"
| #include "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 <memory.h>
| configure:2487: result: no
| configure:2455: checking for strings.h
| configure:2468: ./mycc gcc -c -g -O2  conftest.c >&5
| Annoying copyright message
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2469:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2471: $? = 1
| configure: failed program was:
| #line 2460 "configure"
| #include "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 <strings.h>
| configure:2487: result: no
| configure:2455: checking for inttypes.h
| configure:2468: ./mycc gcc -c -g -O2  conftest.c >&5
| Annoying copyright message
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2469:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2471: $? = 1
| configure: failed program was:
| #line 2460 "configure"
| #include "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 <inttypes.h>
| configure:2487: result: no
| configure:2455: checking for stdint.h
| configure:2468: ./mycc gcc -c -g -O2  conftest.c >&5
| Annoying copyright message
| configure:2496: stdint.h: No such file or directory
| configure:2471: $? = 1
| configure: failed program was:
| #line 2460 "configure"
| #include "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:2487: result: no
| configure:2455: checking for unistd.h
| configure:2468: ./mycc gcc -c -g -O2  conftest.c >&5
| Annoying copyright message
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2469:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2471: $? = 1
| configure: failed program was:
| #line 2460 "configure"
| #include "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 <unistd.h>
| configure:2487: result: no
| configure:2514: checking stdio.h usability
| configure:2523: ./mycc gcc -c -g -O2  conftest.c >&5
| Annoying copyright message
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2525:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2526: $? = 1
| configure: failed program was:
| #line 2516 "configure"
| #include "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 <stdio.h>
| configure:2541: result: no
| configure:2545: checking stdio.h presence
| configure:2552: ./mycc gcc -E  conftest.c
| Annoying copyright message
| configure:2558: $? = 0
| configure:2576: result: yes
| configure:2587: WARNING: stdio.h: present but cannot be compiled
| configure:2589: WARNING: stdio.h: check for missing prerequisite headers?
| configure:2591: WARNING: stdio.h: proceeding with the preprocessor's result
| configure:2594: checking for stdio.h
| configure:2601: result: yes
| configure:2514: checking autoconf_io.h usability
| configure:2523: ./mycc gcc -c -g -O2  conftest.c >&5
| Annoying copyright message
| configure:2551: autoconf_io.h: No such file or directory
| configure:2526: $? = 1
| configure: failed program was:
| #line 2516 "configure"
| #include "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 <autoconf_io.h>
| configure:2541: result: no
| configure:2545: checking autoconf_io.h presence
| configure:2552: ./mycc gcc -E  conftest.c
| Annoying copyright message
| configure:2548: autoconf_io.h: No such file or directory
| configure:2558: $? = 1
| configure: failed program was:
| #line 2547 "configure"
| #include "confdefs.h"
| #include <autoconf_io.h>
| configure:2576: result: no
| configure:2594: checking for autoconf_io.h
| configure:2601: result: no
| configure:2709: creating ./config.status
|
| ## ---------------------- ##
| ## Running config.status. ##
| ## ---------------------- ##
|
| This file was extended by config.status, which was
| generated by GNU Autoconf 2.53b.  Invocation command line was
|
|   CONFIG_FILES    =
|   CONFIG_HEADERS  =
|   CONFIG_LINKS    =
|   CONFIG_COMMANDS =
|   $ ./config.status
|
| on cwsflyer
|
| config.status:440: creating config.h
|
| ## ---------------- ##
| ## Cache variables. ##
| ## ---------------- ##
|
| ac_cv_c_compiler_gnu=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_header_autoconf_io_h=no
| ac_cv_header_inttypes_h=no
| ac_cv_header_memory_h=no
| ac_cv_header_stdc=yes
| ac_cv_header_stdint_h=no
| ac_cv_header_stdio_h=yes
| ac_cv_header_stdlib_h=no
| ac_cv_header_string_h=no
| ac_cv_header_strings_h=no
| ac_cv_header_sys_stat_h=no
| ac_cv_header_sys_types_h=no
| ac_cv_header_unistd_h=no
| ac_cv_objext=o
| ac_cv_prog_CPP='./mycc gcc -E'
| ac_cv_prog_ac_ct_CC=gcc
| ac_cv_prog_cc_g=yes
| ac_cv_prog_cc_stdc=''
| ac_cv_prog_egrep='grep -E'
|
| ## ----------------- ##
| ## Output variables. ##
| ## ----------------- ##
|
| CC='./mycc gcc'
| CFLAGS='-g -O2'
| CPP='./mycc gcc -E'
| CPPFLAGS=''
| DEFS='-DHAVE_CONFIG_H'
| ECHO_C='ECHO_N=''
| ECHO_T=''
| EGREP='grep -E'
| EXEEXT=''
| LDFLAGS=''
| LIBOBJS=''
| LIBS=''
| LTLIBOBJS=''
| OBJEXT='o'
| PACKAGE_BUGREPORT=''
| PACKAGE_NAME=''
| PACKAGE_STRING=''
| PACKAGE_TARNAME=''
| PACKAGE_VERSION=''
| PATH_SEPARATOR=':'
| SHELL='/bin/sh'
| ac_ct_CC='gcc'
| bindir='${exec_prefix}/bin'
| build_alias=''
| datadir='${prefix}/share'
| exec_prefix='${prefix}'
| host_alias=''
| includedir='${prefix}/include'
| infodir='${prefix}/info'
| libdir='${exec_prefix}/lib'
| libexecdir='${exec_prefix}/libexec'
| localstatedir='${prefix}/var'
| mandir='${prefix}/man'
| oldincludedir='/usr/include'
| prefix='/usr/local'
| program_transform_name='s,x,x,'
| sbindir='${exec_prefix}/sbin'
| sharedstatedir='${prefix}/com'
| sysconfdir='${prefix}/etc'
| target_alias=''
|
| ## ----------- ##
| ## confdefs.h. ##
| ## ----------- ##
|
| #define HAVE_STDIO_H 1
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_NAME ""
| #define PACKAGE_STRING ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define STDC_HEADERS 1
|
| configure: exit 0

testsuite: ../tests/testsuite.dir/065/config.log:
| This file contains any messages produced by compilers while
| running configure, to aid debugging if configure makes a mistake.
|
| It was created by configure, which was
| generated by GNU Autoconf 2.53b.  Invocation command line was
|
|   $ ./configure
|
| ## --------- ##
| ## Platform. ##
| ## --------- ##
|
| hostname = cwsflyer
| uname -m = 00012DDA4C00
| uname -r = 1
| uname -s = AIX
| uname -v = 5
|
| /usr/bin/uname -p = powerpc
| /bin/uname -X     = unknown
|
| /bin/arch              = unknown
| /usr/bin/arch -k       = unknown
| /usr/convex/getsysinfo = unknown
| hostinfo               = unknown
| /bin/machine           = unknown
| /usr/bin/oslevel       = 5.1.0.0
| /bin/universe          = unknown
|
| PATH: /usr/local/pkg/autoconf/autoconf-2.53b/wrk/tests
| PATH: /usr/local/bin
| PATH: /usr/bin
| PATH: /usr/sbin
| PATH: /usr/ucb
| PATH: /usr/bin/X11
| PATH: /var/loadl/bin
| PATH: /usr/local/krb5/bin
|
|
| ## ----------- ##
| ## Core tests. ##
| ## ----------- ##
|
| configure:1270: checking for gcc
| configure:1286: found /usr/local/bin/gcc
| configure:1296: result: gcc
| configure:1538: checking for C compiler version
| configure:1541: gcc --version </dev/null >&5
| 2.95.2
| configure:1544: $? = 0
| configure:1546: gcc -v </dev/null >&5
| Reading specs from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /specs
| gcc version 2.95.2 19991024 (release)
| configure:1549: $? = 0
| configure:1551: gcc -V </dev/null >&5
| gcc: argument to `-V' is missing
| configure:1554: $? = 1
| configure:1574: checking for C compiler default output
| configure:1577: gcc    conftest.c  >&5
| configure:1580: $? = 0
| configure:1613: result: a.out
| configure:1618: checking whether the C compiler works
| configure:1624: ./a.out
| configure:1627: $? = 0
| configure:1642: result: yes
| configure:1649: checking whether we are cross compiling
| configure:1651: result: no
| configure:1654: checking for suffix of executables
| configure:1656: gcc -o conftest    conftest.c  >&5
| configure:1659: $? = 0
| configure:1681: result:
| configure:1687: checking for suffix of object files
| configure:1705: gcc -c   conftest.c >&5
| configure:1708: $? = 0
| configure:1727: result: o
| configure:1731: checking whether we are using the GNU C compiler
| configure:1752: gcc -c   conftest.c >&5
| configure:1755: $? = 0
| configure:1758: test -s conftest.o
| configure:1761: $? = 0
| configure:1773: result: yes
| configure:1779: checking whether gcc accepts -g
| configure:1797: gcc -c -g  conftest.c >&5
| configure:1800: $? = 0
| configure:1803: test -s conftest.o
| configure:1806: $? = 0
| configure:1816: result: yes
| configure:1833: checking for gcc option to accept ANSI C
| configure:1890: gcc  -c -g -O2  conftest.c >&5
| configure:1893: $? = 0
| configure:1896: test -s conftest.o
| configure:1899: $? = 0
| configure:1916: result: none needed
| configure:1934: gcc -c -g -O2  conftest.c >&5
| conftest.c:2: parse error before `me'
| configure:1937: $? = 1
| configure: failed program was:
| #ifndef __cplusplus
|   choke me
| #endif
| configure:2056: gcc -o conftest -g -O2   conftest.c  >&5
| configure:2044: warning: conflicting types for built-in function `cos'
| ld: 0711-317 ERROR: Undefined symbol: .cos
| ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information.
| collect2: ld returned 8 exit status
| configure:2059: $? = 1
| configure: failed program was:
| #line 2036 "configure"
| #include "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 cos ();
| int
| main ()
| {
| cos ();
|   ;
|   return 0;
| }
| configure:2077: checking for cos in -lm
| configure:2104: gcc -o conftest -g -O2   conftest.c -lm   >&5
| configure:2092: warning: conflicting types for built-in function `cos'
| collect2: /lib/libm.a: not a COFF file
| configure:2107: $? = 1
| configure: failed program was:
| #line 2084 "configure"
| #include "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 cos ();
| int
| main ()
| {
| cos ();
|   ;
|   return 0;
| }
| configure:2124: result: no
| configure:2134: error: cannot find `cos' in `libm'
|
| ## ---------------- ##
| ## Cache variables. ##
| ## ---------------- ##
|
| ac_cv_c_compiler_gnu=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_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_lib_m_cos=no
| ac_cv_objext=o
| ac_cv_prog_ac_ct_CC=gcc
| ac_cv_prog_cc_g=yes
| ac_cv_prog_cc_stdc=''
|
| ## ----------------- ##
| ## Output variables. ##
| ## ----------------- ##
|
| CC='gcc'
| CFLAGS='-g -O2'
| CPPFLAGS=''
| DEFS=''
| ECHO_C='ECHO_N=''
| ECHO_T=''
| EXEEXT=''
| LDFLAGS=''
| LIBOBJS=''
| LIBS=''
| LTLIBOBJS=''
| OBJEXT='o'
| PACKAGE_BUGREPORT=''
| PACKAGE_NAME=''
| PACKAGE_STRING=''
| PACKAGE_TARNAME=''
| PACKAGE_VERSION=''
| PATH_SEPARATOR=':'
| SHELL='/bin/sh'
| ac_ct_CC='gcc'
| bindir='${exec_prefix}/bin'
| build_alias=''
| datadir='${prefix}/share'
| exec_prefix='NONE'
| host_alias=''
| includedir='${prefix}/include'
| infodir='${prefix}/info'
| libdir='${exec_prefix}/lib'
| libexecdir='${exec_prefix}/libexec'
| localstatedir='${prefix}/var'
| mandir='${prefix}/man'
| oldincludedir='/usr/include'
| prefix='NONE'
| program_transform_name='s,x,x,'
| sbindir='${exec_prefix}/sbin'
| sharedstatedir='${prefix}/com'
| sysconfdir='${prefix}/etc'
| target_alias=''
|
| ## ----------- ##
| ## confdefs.h. ##
| ## ----------- ##
|
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_NAME ""
| #define PACKAGE_STRING ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
|
| configure: exit 1

testsuite: ../tests/testsuite.dir/069/config.log:
| This file contains any messages produced by compilers while
| running configure, to aid debugging if configure makes a mistake.
|
| It was created by configure, which was
| generated by GNU Autoconf 2.53b.  Invocation command line was
|
|   $ ./configure
|
| ## --------- ##
| ## Platform. ##
| ## --------- ##
|
| hostname = cwsflyer
| uname -m = 00012DDA4C00
| uname -r = 1
| uname -s = AIX
| uname -v = 5
|
| /usr/bin/uname -p = powerpc
| /bin/uname -X     = unknown
|
| /bin/arch              = unknown
| /usr/bin/arch -k       = unknown
| /usr/convex/getsysinfo = unknown
| hostinfo               = unknown
| /bin/machine           = unknown
| /usr/bin/oslevel       = 5.1.0.0
| /bin/universe          = unknown
|
| PATH: /usr/local/pkg/autoconf/autoconf-2.53b/wrk/tests
| PATH: /usr/local/bin
| PATH: /usr/bin
| PATH: /usr/sbin
| PATH: /usr/ucb
| PATH: /usr/bin/X11
| PATH: /var/loadl/bin
| PATH: /usr/local/krb5/bin
|
|
| ## ----------- ##
| ## Core tests. ##
| ## ----------- ##
|
| configure:1312: checking for gcc
| configure:1328: found /usr/local/bin/gcc
| configure:1338: result: gcc
| configure:1580: checking for C compiler version
| configure:1583: gcc --version </dev/null >&5
| 2.95.2
| configure:1586: $? = 0
| configure:1588: gcc -v </dev/null >&5
| Reading specs from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /specs
| gcc version 2.95.2 19991024 (release)
| configure:1591: $? = 0
| configure:1593: gcc -V </dev/null >&5
| gcc: argument to `-V' is missing
| configure:1596: $? = 1
| configure:1616: checking for C compiler default output
| configure:1619: gcc    conftest.c  >&5
| configure:1622: $? = 0
| configure:1655: result: a.out
| configure:1660: checking whether the C compiler works
| configure:1666: ./a.out
| configure:1669: $? = 0
| configure:1684: result: yes
| configure:1691: checking whether we are cross compiling
| configure:1693: result: no
| configure:1696: checking for suffix of executables
| configure:1698: gcc -o conftest    conftest.c  >&5
| configure:1701: $? = 0
| configure:1723: result:
| configure:1729: checking for suffix of object files
| configure:1747: gcc -c   conftest.c >&5
| configure:1750: $? = 0
| configure:1769: result: o
| configure:1773: checking whether we are using the GNU C compiler
| configure:1794: gcc -c   conftest.c >&5
| configure:1797: $? = 0
| configure:1800: test -s conftest.o
| configure:1803: $? = 0
| configure:1815: result: yes
| configure:1821: checking whether gcc accepts -g
| configure:1839: gcc -c -g  conftest.c >&5
| configure:1842: $? = 0
| configure:1845: test -s conftest.o
| configure:1848: $? = 0
| configure:1858: result: yes
| configure:1875: checking for gcc option to accept ANSI C
| configure:1932: gcc  -c -g -O2  conftest.c >&5
| configure:1935: $? = 0
| configure:1938: test -s conftest.o
| configure:1941: $? = 0
| configure:1958: result: none needed
| configure:1976: gcc -c -g -O2  conftest.c >&5
| conftest.c:2: parse error before `me'
| configure:1979: $? = 1
| configure: failed program was:
| #ifndef __cplusplus
|   choke me
| #endif
| configure:2083: checking how to run the C preprocessor
| configure:2109: gcc -E  conftest.c
| configure:2115: $? = 0
| configure:2142: gcc -E  conftest.c
| configure:2138: ac_nonexistent.h: No such file or directory
| configure:2148: $? = 1
| configure: failed program was:
| #line 2137 "configure"
| #include "confdefs.h"
| #include <ac_nonexistent.h>
| configure:2185: result: gcc -E
| configure:2200: gcc -E  conftest.c
| configure:2206: $? = 0
| configure:2233: gcc -E  conftest.c
| configure:2229: ac_nonexistent.h: No such file or directory
| configure:2239: $? = 1
| configure: failed program was:
| #line 2228 "configure"
| #include "confdefs.h"
| #include <ac_nonexistent.h>
| configure:2279: checking for egrep
| configure:2289: result: grep -E
| configure:2294: checking for ANSI C header files
| configure:2308: gcc -E  conftest.c
| configure:2314: $? = 0
| configure:2401: gcc -o conftest -g -O2   conftest.c  >&5
| configure:2404: $? = 0
| configure:2406: ./conftest
| configure:2409: $? = 0
| configure:2423: result: yes
| configure:2447: checking for sys/types.h
| configure:2460: gcc -c -g -O2  conftest.c >&5
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2461:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2463: $? = 1
| configure: failed program was:
| #line 2452 "configure"
| #include "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 <sys/types.h>
| configure:2479: result: no
| configure:2447: checking for sys/stat.h
| configure:2460: gcc -c -g -O2  conftest.c >&5
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2461:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2463: $? = 1
| configure: failed program was:
| #line 2452 "configure"
| #include "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 <sys/stat.h>
| configure:2479: result: no
| configure:2447: checking for stdlib.h
| configure:2460: gcc -c -g -O2  conftest.c >&5
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2461:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2463: $? = 1
| configure: failed program was:
| #line 2452 "configure"
| #include "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 <stdlib.h>
| configure:2479: result: no
| configure:2447: checking for string.h
| configure:2460: gcc -c -g -O2  conftest.c >&5
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2461:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2463: $? = 1
| configure: failed program was:
| #line 2452 "configure"
| #include "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 <string.h>
| configure:2479: result: no
| configure:2447: checking for memory.h
| configure:2460: gcc -c -g -O2  conftest.c >&5
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2461:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2463: $? = 1
| configure: failed program was:
| #line 2452 "configure"
| #include "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 <memory.h>
| configure:2479: result: no
| configure:2447: checking for strings.h
| configure:2460: gcc -c -g -O2  conftest.c >&5
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2461:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2463: $? = 1
| configure: failed program was:
| #line 2452 "configure"
| #include "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 <strings.h>
| configure:2479: result: no
| configure:2447: checking for inttypes.h
| configure:2460: gcc -c -g -O2  conftest.c >&5
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2461:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2463: $? = 1
| configure: failed program was:
| #line 2452 "configure"
| #include "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 <inttypes.h>
| configure:2479: result: no
| configure:2447: checking for stdint.h
| configure:2460: gcc -c -g -O2  conftest.c >&5
| configure:2488: stdint.h: No such file or directory
| configure:2463: $? = 1
| configure: failed program was:
| #line 2452 "configure"
| #include "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:2479: result: no
| configure:2447: checking for unistd.h
| configure:2460: gcc -c -g -O2  conftest.c >&5
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2461:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2463: $? = 1
| configure: failed program was:
| #line 2452 "configure"
| #include "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 <unistd.h>
| configure:2479: result: no
| configure:2506: checking stdio.h usability
| configure:2515: gcc -c -g -O2  conftest.c >&5
| In file included from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/signal.h:340, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/sys/wait.h:53, | from /usr/local/pkg/gcc/gcc-2.95.2/lib/gcc-lib/rs6000-ibm-aix4.3.3.0/2.95.2 /include/stdlib.h:227,
|                  from configure:2517:
| /usr/include/sys/context.h:155: parse error before `sigset64_t'
| /usr/include/sys/context.h:155: warning: no semicolon at end of struct or union
| /usr/include/sys/context.h:158: parse error before `}'
| configure:2518: $? = 1
| configure: failed program was:
| #line 2508 "configure"
| #include "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 <stdio.h>
| configure:2533: result: no
| configure:2537: checking stdio.h presence
| configure:2544: gcc -E  conftest.c
| configure:2550: $? = 0
| configure:2568: result: yes
| configure:2579: WARNING: stdio.h: present but cannot be compiled
| configure:2581: WARNING: stdio.h: check for missing prerequisite headers?
| configure:2583: WARNING: stdio.h: proceeding with the preprocessor's result
| configure:2586: checking for stdio.h
| configure:2593: result: yes
| configure:2506: checking autoconf_io.h usability
| configure:2515: gcc -c -g -O2  conftest.c >&5
| configure:2543: autoconf_io.h: No such file or directory
| configure:2518: $? = 1
| configure: failed program was:
| #line 2508 "configure"
| #include "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 <autoconf_io.h>
| configure:2533: result: no
| configure:2537: checking autoconf_io.h presence
| configure:2544: gcc -E  conftest.c
| configure:2540: autoconf_io.h: No such file or directory
| configure:2550: $? = 1
| configure: failed program was:
| #line 2539 "configure"
| #include "confdefs.h"
| #include <autoconf_io.h>
| configure:2568: result: no
| configure:2586: checking for autoconf_io.h
| configure:2593: result: no
| configure:2701: creating ./config.status
|
| ## ---------------------- ##
| ## Running config.status. ##
| ## ---------------------- ##
|
| This file was extended by config.status, which was
| generated by GNU Autoconf 2.53b.  Invocation command line was
|
|   CONFIG_FILES    =
|   CONFIG_HEADERS  =
|   CONFIG_LINKS    =
|   CONFIG_COMMANDS =
|   $ ./config.status
|
| on cwsflyer
|
| config.status:440: creating config.h
|
| ## ---------------- ##
| ## Cache variables. ##
| ## ---------------- ##
|
| ac_cv_c_compiler_gnu=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_header_autoconf_io_h=no
| ac_cv_header_inttypes_h=no
| ac_cv_header_memory_h=no
| ac_cv_header_stdc=yes
| ac_cv_header_stdint_h=no
| ac_cv_header_stdio_h=yes
| ac_cv_header_stdlib_h=no
| ac_cv_header_string_h=no
| ac_cv_header_strings_h=no
| ac_cv_header_sys_stat_h=no
| ac_cv_header_sys_types_h=no
| ac_cv_header_unistd_h=no
| ac_cv_objext=o
| ac_cv_prog_CPP='gcc -E'
| ac_cv_prog_ac_ct_CC=gcc
| ac_cv_prog_cc_g=yes
| ac_cv_prog_cc_stdc=''
| ac_cv_prog_egrep='grep -E'
|
| ## ----------------- ##
| ## Output variables. ##
| ## ----------------- ##
|
| CC='gcc'
| CFLAGS='-g -O2'
| CPP='gcc -E'
| CPPFLAGS=''
| DEFS='-DHAVE_CONFIG_H'
| ECHO_C='ECHO_N=''
| ECHO_T=''
| EGREP='grep -E'
| EXEEXT=''
| LDFLAGS=''
| LIBOBJS=''
| LIBS=''
| LTLIBOBJS=''
| OBJEXT='o'
| PACKAGE_BUGREPORT=''
| PACKAGE_NAME=''
| PACKAGE_STRING=''
| PACKAGE_TARNAME=''
| PACKAGE_VERSION=''
| PATH_SEPARATOR=':'
| SHELL='/bin/sh'
| ac_ct_CC='gcc'
| bindir='${exec_prefix}/bin'
| build_alias=''
| datadir='${prefix}/share'

----------------------------<>---------------------------
Nathan Zierfuss           Ph: (907) 474-6424
Systems Analyst           Fx: (907) 474-5494
        Arctic Region Supercomputing Center
     910 Yukon Dr. Suite 108, PO Box 756020
             Fairbanks, Alaska 99775-6020




reply via email to

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