The build took 00h 01m 47s and was SUCCESSFUL.
The program in this build is written in the following languages, according to sloccount:
SLOC | Language |
---|---|
4,340 |
ansic |
745 |
makefile |
149 |
perl |
5,234 |
total |
The process tree of the build process is here.
Several sub-process invocations were improper; see the process tree for details. Summary:
To avoid scrolling, you may jump to the last line of the
invocation of makepkg
that was used to build this
package.
Removed vanilla repositories from pacman.conf and added:
Copied permanent toolchain into container-local sysroot
/toolchain_root/sysroot --> /sysroot/sysroot
/toolchain_root/lib --> /sysroot/lib
/toolchain_root/sbin --> /sysroot/sbin
/toolchain_root/lib64 --> /sysroot/lib64
/toolchain_root/etc --> /sysroot/etc
/toolchain_root/share --> /sysroot/share
/toolchain_root/bin --> /sysroot/bin
/toolchain_root/var --> /sysroot/var
/toolchain_root/usr --> /sysroot/usr
/toolchain_root/glibc-build --> /sysroot/glibc-build
/toolchain_root/x86_64-pc-linux-gnu --> /sysroot/x86_64-pc-linux-gnu
/toolchain_root/include --> /sysroot/include
/toolchain_root/libexec --> /sysroot/libexec
CMD: sudo -u tuscan PATH=/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin CC=clang CXX=clang++ red makepkg --noextract --syncdeps --skipinteg --skippgpcheck --skipchecksums --noconfirm --nocolor --log --noprogressbar --nocheck
==> Making package: perl-fcgi 0.78-2 (Thu Apr 13 20:23:19 UTC 2017)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> WARNING: Using existing $srcdir/ tree
==> Starting build()...
Checking if your kit is complete...
Looks good
Generating a Unix-style Makefile
Writing Makefile for FCGI
Writing MYMETA.yml and MYMETA.json
Running ./configure for you
Please read configure.readme for information on how to run it yourself
checking for gcc... cc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
checking for cc option to accept ISO C89... none needed
checking how to run the C preprocessor... cc -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for ssize_t... yes
checking for sun_len in sys/un.h... no
checking for fpos_t in stdio.h... yes
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking netdb.h usability... yes
checking netdb.h presence... yes
checking for netdb.h... yes
checking netinet/in.h usability... yes
checking netinet/in.h presence... yes
checking for netinet/in.h... yes
checking arpa/inet.h usability... yes
checking arpa/inet.h presence... yes
checking for arpa/inet.h... yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking for unistd.h... (cached) yes
checking for a fileno() prototype in stdio.h... yes
checking whether cross-process locking is required by accept()... no
checking whether va_arg(arg, long double) crashes the compiler... no
checking for an ANSI C-conforming const... yes
configure: creating ./config.status
config.status: creating fcgi_config.h
cp FCGI.pm blib/arch/FCGI.pm
Running Mkbootstrap for FCGI ()
chmod 644 "FCGI.bs"
"/usr/bin/perl" "/usr/share/perl5/core_perl/ExtUtils/xsubpp" -typemap "/usr/share/perl5/core_perl/ExtUtils/typemap" -typemap "typemap" FCGI.xs > FCGI.xsc && mv FCGI.xsc FCGI.c
cc -c -I. -D_REENTRANT -D_GNU_SOURCE -fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -DVERSION=\"0.78\" -DXS_VERSION=\"0.78\" -fPIC "-I/usr/lib/perl5/core_perl/CORE" FCGI.c
FCGI.xs:187:19: warning: using the result of an assignment as a condition without parentheses [-Wparentheses]
if (was_bound = request->bound)
~~~~~~~~~~^~~~~~~~~~~~~~~~
FCGI.xs:187:19: note: place parentheses around the assignment to silence this warning
if (was_bound = request->bound)
^
( )
FCGI.xs:187:19: note: use '==' to turn this assignment into an equality comparison
if (was_bound = request->bound)
^
==
1 warning generated.
cc -c -I. -D_REENTRANT -D_GNU_SOURCE -fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -DVERSION=\"0.78\" -DXS_VERSION=\"0.78\" -fPIC "-I/usr/lib/perl5/core_perl/CORE" fcgiapp.c
cc -c -I. -D_REENTRANT -D_GNU_SOURCE -fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong -DVERSION=\"0.78\" -DXS_VERSION=\"0.78\" -fPIC "-I/usr/lib/perl5/core_perl/CORE" os_unix.c
os_unix.c:1163:70: warning: passing 'int *' to parameter of type 'socklen_t *' (aka 'unsigned int *') converts between pointers to integer types with different sign [-Wpointer-sign]
socket = accept(listen_sock, (struct sockaddr *)&sa, &len);
^~~~
/usr/include/sys/socket.h:244:28: note: passing argument to parameter '__addr_len' here
socklen_t *__restrict __addr_len);
^
os_unix.c:1263:51: warning: passing 'int *' to parameter of type 'socklen_t *' (aka 'unsigned int *') converts between pointers to integer types with different sign [-Wpointer-sign]
if (getpeername(sock, (struct sockaddr *)&sa, &len) != 0 && errno == ENOTCONN) {
^~~~
/usr/include/sys/socket.h:142:26: note: passing argument to parameter '__len' here
socklen_t *__restrict __len) __THROW;
^
2 warnings generated.
rm -f blib/arch/auto/FCGI/FCGI.so
cc -shared -Wl,-O1,--sort-common,--as-needed,-z,relro -L/usr/local/lib -fstack-protector-strong FCGI.o fcgiapp.o os_unix.o -o blib/arch/auto/FCGI/FCGI.so \
\
chmod 755 blib/arch/auto/FCGI/FCGI.so
"/usr/bin/perl" -MExtUtils::Command::MM -e 'cp_nonempty' -- FCGI.bs blib/arch/auto/FCGI/FCGI.bs 644
Manifying 1 pod document
==> Entering fakeroot environment...
==> Starting package()...
Running Mkbootstrap for FCGI ()
chmod 644 "FCGI.bs"
Manifying 1 pod document
Files found in blib/arch: installing files in blib/lib into architecture dependent library tree
Installing /tmp/perl-fcgi/pkg/perl-fcgi/usr/lib/perl5/vendor_perl/FCGI.pm
Installing /tmp/perl-fcgi/pkg/perl-fcgi/usr/lib/perl5/vendor_perl/auto/FCGI/FCGI.so
Installing /tmp/perl-fcgi/pkg/perl-fcgi/usr/share/man/man3/FCGI.3pm
Appending installation info to /tmp/perl-fcgi/pkg/perl-fcgi/usr/lib/perl5/core_perl/perllocal.pod
==> Tidying install...
-> Removing doc files...
-> Removing empty directories...
-> Purging unwanted files...
==> Checking for packaging issue...
==> Creating package "perl-fcgi"...
-> Generating .PKGINFO file...
-> Generating .BUILDINFO file...
error: invalid option '--noprogressbar'
-> Generating .MTREE file...
-> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: perl-fcgi 0.78-2 (Thu Apr 13 20:23:43 UTC 2017)
CMD: pacman --query --file perl-fcgi-0.78-2-x86_64.pkg.tar.xz
Creating hybrid package for 'perl-fcgi'
Trying to find vanilla package 'perl-fcgi'...
CMD: pacman --query --file /mirror/perl-fcgi-0.78-2.pkg.tar.xz
Package file has the following structure:
Generating .MTREE
CMD: bsdtar -czf .MTREE --format=mtree --options=!all,use-set,type,uid,mode,time,size,md5,sha256,link .PKGINFO .BUILDINFO usr sysroot
Tar-ing up files
CMD: bsdtar -cf - .PKGINFO .BUILDINFO usr sysroot .MTREE
CMD: xz -c -z
Successfully ran bsdtar -cf - .PKGINFO .BUILDINFO usr sysroot .MTREE | xz -c -z
CMD: bsdtar -tqf perl-fcgi.pkg.tar.xz .PKGINFO
Created package at path /var/cache/pacman/pkg/perl-fcgi.pkg.tar.xz
Attempting to access local repository, attempt 1
CMD: repo-add /var/cache/pacman/pkg/tuscan.db.tar /var/cache/pacman/pkg/perl-fcgi.pkg.tar.xz
Attempting to access local repository, attempt 2
CMD: repo-add /var/cache/pacman/pkg/tuscan.db.tar /var/cache/pacman/pkg/perl-fcgi.pkg.tar.xz
==> Extracting database to a temporary location...
==> Extracting database to a temporary location...
==> Adding package '/var/cache/pacman/pkg/perl-fcgi.pkg.tar.xz'
-> Computing checksums...
-> Creating 'desc' db entry...
-> Creating 'files' db entry...
==> Creating updated database file '/var/cache/pacman/pkg/tuscan.db.tar'
Printing config logfiles
CMD: config logfiles '/tmp/perl-fcgi/src/FCGI-0.78/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.69. Invocation command line was
$ configure
## --------- ##
## Platform. ##
## --------- ##
hostname = f110d0bf30d3
uname -m = x86_64
uname -r = 4.10.6-1-ARCH
uname -s = Linux
uname -v = #1 SMP PREEMPT Mon Mar 27 08:28:22 CEST 2017
/usr/bin/uname -p = unknown
/bin/uname -X = unknown
/bin/arch = unknown
/usr/bin/arch -k = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo = unknown
/bin/machine = unknown
/usr/bin/oslevel = unknown
/bin/universe = unknown
PATH: /usr/bin
PATH: /usr/local/sbin
PATH: /usr/local/bin
PATH: /usr/sbin
PATH: /usr/bin
PATH: /sbin
PATH: /bin
## ----------- ##
## Core tests. ##
## ----------- ##
configure:2069: checking for gcc
configure:2096: result: cc
configure:2325: checking for C compiler version
configure:2334: cc --version >&5
clang version 3.8.0 (tags/RELEASE_380/final)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /
configure:2345: $? = 0
configure:2334: cc -v >&5
clang version 3.8.0 (tags/RELEASE_380/final)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /
Found candidate GCC installation: //../lib/gcc/x86_64-pc-linux-gnu/6.1.1
Found candidate GCC installation: //../lib64/gcc/x86_64-pc-linux-gnu/6.1.1
Found candidate GCC installation: /usr/lib/gcc/x86_64-pc-linux-gnu/6.1.1
Found candidate GCC installation: /usr/lib64/gcc/x86_64-pc-linux-gnu/6.1.1
Selected GCC installation: //../lib64/gcc/x86_64-pc-linux-gnu/6.1.1
Candidate multilib: .;@m64
... rest of stderr output deleted ...
configure:2345: $? = 0
configure:2334: cc -V >&5
clang-3.8: error: argument to '-V' is missing (expected 1 value)
clang-3.8: error: no input files
configure:2345: $? = 1
configure:2334: cc -qversion >&5
clang-3.8: error: unknown argument: '-qversion'
clang-3.8: error: no input files
configure:2345: $? = 1
configure:2365: checking whether the C compiler works
configure:2387: cc conftest.c >&5
configure:2391: $? = 0
configure:2439: result: yes
configure:2442: checking for C compiler default output file name
configure:2444: result: a.out
configure:2450: checking for suffix of executables
configure:2457: cc -o conftest conftest.c >&5
configure:2461: $? = 0
configure:2483: result:
configure:2505: checking whether we are cross compiling
configure:2513: cc -o conftest conftest.c >&5
configure:2517: $? = 0
configure:2524: ./conftest
configure:2528: $? = 0
configure:2543: result: no
configure:2548: checking for suffix of object files
configure:2570: cc -c conftest.c >&5
configure:2574: $? = 0
configure:2595: result: o
configure:2599: checking whether we are using the GNU C compiler
configure:2618: cc -c conftest.c >&5
configure:2618: $? = 0
configure:2627: result: yes
configure:2636: checking whether cc accepts -g
configure:2656: cc -c -g conftest.c >&5
configure:2656: $? = 0
configure:2697: result: yes
configure:2714: checking for cc option to accept ISO C89
configure:2777: cc -c conftest.c >&5
configure:2777: $? = 0
configure:2790: result: none needed
configure:2815: checking how to run the C preprocessor
configure:2846: cc -E conftest.c
configure:2846: $? = 0
configure:2860: cc -E conftest.c
conftest.c:9:10: fatal error: 'ac_nonexistent.h' file not found
#include
^
1 error generated.
configure:2860: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| /* end confdefs.h. */
| #include
configure:2885: result: cc -E
configure:2905: cc -E conftest.c
configure:2905: $? = 0
configure:2919: cc -E conftest.c
conftest.c:9:10: fatal error: 'ac_nonexistent.h' file not found
#include
^
1 error generated.
configure:2919: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| /* end confdefs.h. */
| #include
configure:2950: checking for grep that handles long lines and -e
configure:3008: result: /usr/bin/grep
configure:3013: checking for egrep
configure:3075: result: /usr/bin/grep -E
configure:3080: checking for ANSI C header files
configure:3100: cc -c conftest.c >&5
configure:3100: $? = 0
configure:3173: cc -o conftest conftest.c >&5
configure:3173: $? = 0
configure:3173: ./conftest
configure:3173: $? = 0
configure:3184: result: yes
configure:3197: checking for sys/types.h
configure:3197: cc -c conftest.c >&5
configure:3197: $? = 0
configure:3197: result: yes
configure:3197: checking for sys/stat.h
configure:3197: cc -c conftest.c >&5
configure:3197: $? = 0
configure:3197: result: yes
configure:3197: checking for stdlib.h
configure:3197: cc -c conftest.c >&5
configure:3197: $? = 0
configure:3197: result: yes
configure:3197: checking for string.h
configure:3197: cc -c conftest.c >&5
configure:3197: $? = 0
configure:3197: result: yes
configure:3197: checking for memory.h
configure:3197: cc -c conftest.c >&5
configure:3197: $? = 0
configure:3197: result: yes
configure:3197: checking for strings.h
configure:3197: cc -c conftest.c >&5
configure:3197: $? = 0
configure:3197: result: yes
configure:3197: checking for inttypes.h
configure:3197: cc -c conftest.c >&5
configure:3197: $? = 0
configure:3197: result: yes
configure:3197: checking for stdint.h
configure:3197: cc -c conftest.c >&5
configure:3197: $? = 0
configure:3197: result: yes
configure:3197: checking for unistd.h
configure:3197: cc -c conftest.c >&5
configure:3197: $? = 0
configure:3197: result: yes
configure:3210: checking for ssize_t
configure:3210: cc -c conftest.c >&5
configure:3210: $? = 0
configure:3210: cc -c conftest.c >&5
conftest.c:55:22: error: expected expression
if (sizeof ((ssize_t)))
^
1 error generated.
configure:3210: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h. */
| #include
| #ifdef HAVE_SYS_TYPES_H
| # include
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include
| #endif
| #ifdef STDC_HEADERS
| # include
| # include
| #else
| # ifdef HAVE_STDLIB_H
| # include
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| # include
| # endif
| # include
| #endif
| #ifdef HAVE_STRINGS_H
| # include
| #endif
| #ifdef HAVE_INTTYPES_H
| # include
| #endif
| #ifdef HAVE_STDINT_H
| # include
| #endif
| #ifdef HAVE_UNISTD_H
| # include
| #endif
| int
| main ()
| {
| if (sizeof ((ssize_t)))
| return 0;
| ;
| return 0;
| }
configure:3210: result: yes
configure:3222: checking for sun_len in sys/un.h
configure:3237: result: no
configure:3243: checking for fpos_t in stdio.h
configure:3252: result: yes
configure:3267: checking sys/socket.h usability
configure:3267: cc -c conftest.c >&5
configure:3267: $? = 0
configure:3267: result: yes
configure:3267: checking sys/socket.h presence
configure:3267: cc -E conftest.c
configure:3267: $? = 0
configure:3267: result: yes
configure:3267: checking for sys/socket.h
configure:3267: result: yes
configure:3267: checking netdb.h usability
configure:3267: cc -c conftest.c >&5
configure:3267: $? = 0
configure:3267: result: yes
configure:3267: checking netdb.h presence
configure:3267: cc -E conftest.c
configure:3267: $? = 0
configure:3267: result: yes
configure:3267: checking for netdb.h
configure:3267: result: yes
configure:3267: checking netinet/in.h usability
configure:3267: cc -c conftest.c >&5
configure:3267: $? = 0
configure:3267: result: yes
configure:3267: checking netinet/in.h presence
configure:3267: cc -E conftest.c
configure:3267: $? = 0
configure:3267: result: yes
configure:3267: checking for netinet/in.h
configure:3267: result: yes
configure:3267: checking arpa/inet.h usability
configure:3267: cc -c conftest.c >&5
configure:3267: $? = 0
configure:3267: result: yes
configure:3267: checking arpa/inet.h presence
configure:3267: cc -E conftest.c
configure:3267: $? = 0
configure:3267: result: yes
configure:3267: checking for arpa/inet.h
configure:3267: result: yes
configure:3280: checking sys/time.h usability
configure:3280: cc -c conftest.c >&5
configure:3280: $? = 0
configure:3280: result: yes
configure:3280: checking sys/time.h presence
configure:3280: cc -E conftest.c
configure:3280: $? = 0
configure:3280: result: yes
configure:3280: checking for sys/time.h
configure:3280: result: yes
configure:3280: checking limits.h usability
configure:3280: cc -c conftest.c >&5
configure:3280: $? = 0
configure:3280: result: yes
configure:3280: checking limits.h presence
configure:3280: cc -E conftest.c
configure:3280: $? = 0
configure:3280: result: yes
configure:3280: checking for limits.h
configure:3280: result: yes
configure:3280: checking sys/param.h usability
configure:3280: cc -c conftest.c >&5
configure:3280: $? = 0
configure:3280: result: yes
configure:3280: checking sys/param.h presence
configure:3280: cc -E conftest.c
configure:3280: $? = 0
configure:3280: result: yes
configure:3280: checking for sys/param.h
configure:3280: result: yes
configure:3280: checking for unistd.h
configure:3280: result: yes
configure:3291: checking for a fileno() prototype in stdio.h
configure:3300: result: yes
configure:3338: checking whether cross-process locking is required by accept()
configure:3349: result: no
configure:3358: checking whether va_arg(arg, long double) crashes the compiler
configure:3371: cc -c conftest.c >&5
configure:3371: $? = 0
configure:3372: result: no
configure:3383: checking for an ANSI C-conforming const
configure:3449: cc -c conftest.c >&5
configure:3449: $? = 0
configure:3456: result: yes
configure:3579: creating ./config.status
## ---------------------- ##
## Running config.status. ##
## ---------------------- ##
This file was extended by config.status, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES =
CONFIG_HEADERS =
CONFIG_LINKS =
CONFIG_COMMANDS =
$ ./config.status
on f110d0bf30d3
config.status:684: creating fcgi_config.h
## ---------------- ##
## Cache variables. ##
## ---------------- ##
ac_cv_c_compiler_gnu=yes
ac_cv_c_const=yes
ac_cv_env_CC_set=set
ac_cv_env_CC_value=cc
ac_cv_env_CFLAGS_set=set
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=set
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_LDFLAGS_set=set
ac_cv_env_LDFLAGS_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_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_header_arpa_inet_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_limits_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_netdb_h=yes
ac_cv_header_netinet_in_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_param_h=yes
ac_cv_header_sys_socket_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_time_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_unistd_h=yes
ac_cv_objext=o
ac_cv_path_EGREP='/usr/bin/grep -E'
ac_cv_path_GREP=/usr/bin/grep
ac_cv_prog_CPP='cc -E'
ac_cv_prog_ac_ct_CC=cc
ac_cv_prog_cc_c89=
ac_cv_prog_cc_g=yes
ac_cv_type_ssize_t=yes
## ----------------- ##
## Output variables. ##
## ----------------- ##
CC='cc'
CFLAGS=''
CPP='cc -E'
CPPFLAGS=''
DEFS='-DHAVE_CONFIG_H'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/usr/bin/grep -E'
EXEEXT=''
GREP='/usr/bin/grep'
LDFLAGS=''
LIBOBJS=''
LIBS=''
LTLIBOBJS=''
OBJEXT='o'
PACKAGE_BUGREPORT=''
PACKAGE_NAME=''
PACKAGE_STRING=''
PACKAGE_TARNAME=''
PACKAGE_URL=''
PACKAGE_VERSION=''
PATH_SEPARATOR=':'
SHELL='/bin/sh'
ac_ct_CC='cc'
bindir='${exec_prefix}/bin'
build_alias=''
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE}'
dvidir='${docdir}'
exec_prefix='${prefix}'
host_alias=''
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
localstatedir='${prefix}/var'
mandir='${datarootdir}/man'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix='/usr/local'
program_transform_name='s,x,x,'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''
## ----------- ##
## confdefs.h. ##
## ----------- ##
/* confdefs.h */
#define PACKAGE_NAME ""
#define PACKAGE_TARNAME ""
#define PACKAGE_VERSION ""
#define PACKAGE_STRING ""
#define PACKAGE_BUGREPORT ""
#define PACKAGE_URL ""
#define STDC_HEADERS 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_MEMORY_H 1
#define HAVE_STRINGS_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_STDINT_H 1
#define HAVE_UNISTD_H 1
#define HAVE_FPOS 1
#define HAVE_SYS_SOCKET_H 1
#define HAVE_NETDB_H 1
#define HAVE_NETINET_IN_H 1
#define HAVE_ARPA_INET_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_LIMITS_H 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_UNISTD_H 1
#define HAVE_FILENO_PROTO 1
configure: exit 0