Help Please

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

 



Hi Apache Folks,

I need your help for to fix my config.nice problem.

Here is my system information;

SunOS 5.10 Generic_150400-03 sun4v sparc sun4v

Apache version 2.2.25

Openssl
-----------
#> /usr/local/ssl/bin/openssl
OpenSSL> version
OpenSSL 1.0.1e-fips 11 Feb 2013
OpenSSL>

# cd /usr/local/ssl/lib
#> ls -la
total 8218
drwx------ 4 root root 6 Dec 4 18:31 .
drwx------ 10 root root 11 Dec 4 18:31 ..
drwx------ 2 root root 2 Dec 4 18:31 engines
-rw-r--r-- 1 root root 3507800 Dec 4 18:31 libcrypto.a
-rw-r--r-- 1 root root 544216 Dec 4 18:31 libssl.a
drwx------ 2 root root 5 Dec 4 18:31 pkgconfig
#

gcc
----
# gcc -v
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/local/gcc4/libexec/gcc/sparc-sun-solaris2.10/4.7.2/lto-wrapper
Target: sparc-sun-solaris2.10
Configured with: ../configure --without-gnu-as --with-as=/usr/ccs/bin/as --without-gnu-ld --with-ld=/usr/ccs/bin/ld --enable-shared --enable-languages=c,c++,fortran,objc --prefix=/usr/local/gcc4
Thread model: posix
gcc version 4.7.2 (GCC)
#>

Here is /usr/local/apache/build/config.nice information;

#! /bin/sh
#
# Created by configure
"./configure" \
"--prefix=/usr/local/apache" \
"--enable-mime-magic" \
"--enable-info" \
"--enable-imagemap" \
"--enable-speling" \
"--enable-rewrite" \
"--enable-authz-host" \
"--enable-authn-anon" \
"--enable-authn-dbm" \
"--enable-auth-digest" \
"--enable-cern-meta" \
"--enable-expires" \
"--enable-headers" \
"--enable-unique_id" \
"--enable-so" \
"--enable-ssl" \
"--with-ssl=/usr/local/ssl" \
"$@"
#>

I was getting following error,When I run config.nice;

#/usr/local/apache/build/config.nice
--------------------------------------------------------------------------------------

checking whether to enable mod_ssl... checking dependencies
checking for SSL/TLS toolkit base... /usr/local/ssl
adding "-I/usr/local/ssl/include" to CPPFLAGS
adding "-I/usr/local/ssl/include" to INCLUDES
adding "-L/usr/local/ssl/lib" to LDFLAGS
adding "-R/usr/local/ssl/lib" to LDFLAGS
checking for OpenSSL version... checking openssl/opensslv.h usability... yes
checking openssl/opensslv.h presence... yes
checking for openssl/opensslv.h... yes
checking openssl/ssl.h usability... yes
checking openssl/ssl.h presence... yes
checking for openssl/ssl.h... yes
OK
forcing SSL_LIBS to "-lssl -lcrypto "
adding "-lssl" to LIBS
adding "-lcrypto" to LIBS
checking openssl/engine.h usability... yes
checking openssl/engine.h presence... yes
checking for openssl/engine.h... yes
checking for SSLeay_version... no
checking for SSL_CTX_new... no
checking for ENGINE_init... no
checking for ENGINE_load_builtin_engines... no
checking for SSL_set_cert_store... no
configure: error: ... Error, SSL/TLS libraries were missing or unusable
#>
----------------------------------------------------------------------------------------------------
Note:I was getting following error,When I run the /usr/local/apache/build/config.nice;

configure: error: ... Error, SSL/TLS libraries were missing or unusable

Note:When I copy following openssl 1.0.1c libs to /usr/local/lib,config.nice was running fine and make and make install was running fine;
 
Here is /usr/local/lib folder information;
 
#> ls -la
total 13872
drwx------ 2 root root 8 Dec 4 17:40 .
drwxr-xr-x 10 bin bin 109 Dec 5 15:18 ..
-rwx------ 1 root root 1882678 Dec 4 17:07 libcrypto.so
-rwx------ 1 root root 1632892 Dec 4 17:11 libcrypto.so.0.9.8
-rwx------ 1 root root 1882678 Dec 4 17:11 libcrypto.so.1.0.0
-rwx------ 1 root root 409381 Dec 4 17:08 libssl.so
-rwx------ 1 root root 302436 Dec 4 17:11 libssl.so.0.9.8
-rwx------ 1 root root 409381 Dec 4 17:11 libssl.so.1.0.0
#>

I was getting following output,After done make install,if I used above libs under /usr/local/lib;

[notice] Apache/2.2.25(Unix) mod_ssl/2.2.25 OpenSSL/1.0.1c configured -- resuming normal operations

I want to compile the apache 2.2.25 for FIPS compatability.So,As per Google,I was used following varaiables on the server before run the config.nice;

export CC=/usr/local/ssl/fips-2.0/bin/fipsld
export FIPSLD_CC=gcc
export LTFLAGS=--tag=CC

Please advice me How I can fix following config.nice running problem;
--------------------------------------------------------------------------------------------
configure: error: ... Error, SSL/TLS libraries were missing or unusable
-------------------------------------------------------------------------------------------

Please find attached config.log file for broken one.

I was done config.nice and make and make install on other Solaris zone without any problem;

Please find attached config.log for working Solaris 10 zone as a name working-server-config.log.

 Here is the information regarding How I build the openssl 1.0.1e for fips compatible;

1.

openssl-fips-ecp-2.0.3.tar.gz
  
  # cd /var/tmp/openssl-fips-2.0.3
#./config
#make
#make install

Note:make install created a folder called fips-2.0 under /usr/local/ssl

2.
Now,I compiled openssl-1.0.1e with fips option as like as follows;

.Copied openssl source compressed tar file(openssl-1.0.1e.tar.gz) on to /var/tmp,
.Uncompressed and Untar the above file under /var/tmp,
.Changed directory to /var/tmp/openssl-1.0.1e,
.I run the following cmds as a user root;

#cd /var/tmp/openssl-1.0.1e
#./config fips --with-fipslibdir=/usr/local/ssl/fips-2.0/lib/ no-ec2m
#make
#make install

Note: Make install copied the all the openssl files to under /usr/local/ssl,
I checked the openssl version like as follows;

#cd /usr/local/ssl
#cd bin
#./openssl

OpenSSL>version
OpenSSL 1.0.1e-fips 11 Feb 2013
OpenSSL>exit
#
---------------------------------------------------------------------------------------------
Note:

I compiled above fips and openssl using gcc-4.7.2 compiler.

Please let me know,If You have any questions or concerns.

Thanks,
Srinivas




Srinivasa Rao Katta(System Administrator),
skatta33@xxxxxxxxxxx,
 

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.67.  Invocation command line was

  $ ./configure --prefix=/usr/local/apache --enable-mime-magic --enable-info --enable-imagemap --enable-speling --enable-rewrite --enable-authz-host --enable-authn-anon --enable-authn-dbm --enable-auth-digest --enable-cern-meta --enable-expires --enable-headers --enable-unique_id --enable-so --enable-ssl --with-ssl=/usr/local/ssl

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

hostname = hq1-boj-s1z
uname -m = sun4v
uname -r = 5.10
uname -s = SunOS
uname -v = Generic_150400-03

/usr/bin/uname -p = sparc
/bin/uname -X     = System = SunOS
Node = hq1-boj-s1z
Release = 5.10
KernelID = Generic_150400-03
Machine = sun4v
BusType = <unknown>
Serial = <unknown>
Users = <unknown>
OEM# = 0
Origin# = 1
NumCPU = 56

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

PATH: /usr/sbin
PATH: /usr/local/gcc4/bin
PATH: /usr/local/bin
PATH: /usr/bin
PATH: /bin
PATH: /usr/local/sbin
PATH: /sbin
PATH: /usr/ccs/bin
PATH: /usr/sadm/bin
PATH: /usr/xpg4/bin
PATH: /usr/ccs/bin
PATH: /usr/sadm/bin
PATH: /usr/sbin
PATH: /usr/bin


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

configure:2793: checking for chosen layout
configure:2795: result: Apache
configure:3598: checking for working mkdir -p
configure:3614: result: yes
configure:3629: checking build system type
configure:3643: result: sparc-sun-solaris2.10
configure:3663: checking host system type
configure:3676: result: sparc-sun-solaris2.10
configure:3696: checking target system type
configure:3709: result: sparc-sun-solaris2.10
configure:3780: checking for APR
configure:3859: result: reconfig
configure:4132: checking for APR-util
configure:4211: result: reconfig
configure:4453: checking for gcc
configure:4480: result: /usr/local/ssl/fips-2.0/bin/fipsld
configure:4709: checking for C compiler version
configure:4718: /usr/local/ssl/fips-2.0/bin/fipsld --version >&5
gcc (GCC) 4.7.2
Copyright (C) 2012 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:4729: $? = 0
configure:4718: /usr/local/ssl/fips-2.0/bin/fipsld -v >&5
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/local/gcc4/libexec/gcc/sparc-sun-solaris2.10/4.7.2/lto-wrapper
Target: sparc-sun-solaris2.10
Configured with: ../configure --without-gnu-as --with-as=/usr/ccs/bin/as --without-gnu-ld --with-ld=/usr/ccs/bin/ld --enable-shared --enable-languages=c,c++,fortran,objc --prefix=/usr/local/gcc4
Thread model: posix
gcc version 4.7.2 (GCC) 
configure:4729: $? = 0
configure:4718: /usr/local/ssl/fips-2.0/bin/fipsld -V >&5
gcc: error: unrecognized command line option '-V'
gcc: fatal error: no input files
compilation terminated.
configure:4729: $? = 1
configure:4718: /usr/local/ssl/fips-2.0/bin/fipsld -qversion >&5
gcc: error: unrecognized command line option '-qversion'
gcc: fatal error: no input files
compilation terminated.
configure:4729: $? = 1
configure:4749: checking whether the C compiler works
configure:4771: /usr/local/ssl/fips-2.0/bin/fipsld  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   -L/usr/local/lib conftest.c  >&5
configure:4775: $? = 0
configure:4823: result: yes
configure:4826: checking for C compiler default output file name
configure:4828: result: a.out
configure:4834: checking for suffix of executables
configure:4841: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   -L/usr/local/lib conftest.c  >&5
configure:4845: $? = 0
configure:4867: result: 
configure:4889: checking whether we are cross compiling
configure:4897: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   -L/usr/local/lib conftest.c  >&5
configure:4901: $? = 0
configure:4908: ./conftest
configure:4912: $? = 0
configure:4927: result: no
configure:4932: checking for suffix of object files
configure:4954: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:4958: $? = 0
configure:4979: result: o
configure:4983: checking whether we are using the GNU C compiler
configure:5002: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:5002: $? = 0
configure:5011: result: yes
configure:5020: checking whether /usr/local/ssl/fips-2.0/bin/fipsld accepts -g
configure:5040: /usr/local/ssl/fips-2.0/bin/fipsld -c -g  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:5040: $? = 0
configure:5081: result: yes
configure:5098: checking for /usr/local/ssl/fips-2.0/bin/fipsld option to accept ISO C89
configure:5162: /usr/local/ssl/fips-2.0/bin/fipsld  -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:5162: $? = 0
configure:5175: result: none needed
configure:5200: checking how to run the C preprocessor
configure:5270: result: /usr/local/ssl/fips-2.0/bin/fipsld -E
configure:5290: /usr/local/ssl/fips-2.0/bin/fipsld -E  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c
configure:5290: $? = 0
configure:5304: /usr/local/ssl/fips-2.0/bin/fipsld -E  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c
conftest.c:9:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
configure:5304: $? = 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 <ac_nonexistent.h>
configure:5451: Configuring PCRE regular expression library
configure:5924: checking for rm
configure:5942: found /usr/bin/rm
configure:5954: result: /usr/bin/rm
configure:5964: checking for pkg-config
configure:5982: found /usr/bin/pkg-config
configure:5994: result: /usr/bin/pkg-config
configure:6004: checking for rsync
configure:6022: found /usr/local/bin/rsync
configure:6034: result: /usr/local/bin/rsync
configure:6046: checking for gawk
configure:6076: result: no
configure:6046: checking for mawk
configure:6076: result: no
configure:6046: checking for nawk
configure:6062: found /usr/bin/nawk
configure:6073: result: nawk
configure:6084: checking whether ln -s works
configure:6088: result: yes
configure:6138: checking for ranlib
configure:6154: found /usr/ccs/bin/ranlib
configure:6165: result: ranlib
configure:6191: checking for lynx
configure:6221: result: no
configure:6191: checking for links
configure:6221: result: no
configure:6191: checking for elinks
configure:6221: result: no
configure:6246: checking for grep that handles long lines and -e
configure:6304: result: /usr/xpg4/bin/grep
configure:6309: checking for egrep
configure:6371: result: /usr/xpg4/bin/grep -E
configure:6376: checking for ANSI C header files
configure:6396: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6396: $? = 0
configure:6469: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   -L/usr/local/lib conftest.c  >&5
configure:6469: $? = 0
configure:6469: ./conftest
configure:6469: $? = 0
configure:6480: result: yes
configure:6493: checking for sys/types.h
configure:6493: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6493: $? = 0
configure:6493: result: yes
configure:6493: checking for sys/stat.h
configure:6493: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6493: $? = 0
configure:6493: result: yes
configure:6493: checking for stdlib.h
configure:6493: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6493: $? = 0
configure:6493: result: yes
configure:6493: checking for string.h
configure:6493: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6493: $? = 0
configure:6493: result: yes
configure:6493: checking for memory.h
configure:6493: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6493: $? = 0
configure:6493: result: yes
configure:6493: checking for strings.h
configure:6493: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6493: $? = 0
configure:6493: result: yes
configure:6493: checking for inttypes.h
configure:6493: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6493: $? = 0
configure:6493: result: yes
configure:6493: checking for stdint.h
configure:6493: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6493: $? = 0
configure:6493: result: yes
configure:6493: checking for unistd.h
configure:6493: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6493: $? = 0
configure:6493: result: yes
configure:6506: checking minix/config.h usability
configure:6506: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
conftest.c:52:26: fatal error: minix/config.h: No such file or directory
compilation terminated.
configure:6506: $? = 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 <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <minix/config.h>
configure:6506: result: no
configure:6506: checking minix/config.h presence
configure:6506: /usr/local/ssl/fips-2.0/bin/fipsld -E  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c
conftest.c:19:26: fatal error: minix/config.h: No such file or directory
compilation terminated.
configure:6506: $? = 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 <minix/config.h>
configure:6506: result: no
configure:6506: checking for minix/config.h
configure:6506: result: no
configure:6527: checking whether it is safe to define __EXTENSIONS__
configure:6545: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6545: $? = 0
configure:6552: result: yes
configure:6568: checking for library containing strerror
configure:6599: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   -L/usr/local/lib conftest.c  >&5
configure:6599: $? = 0
configure:6616: result: none required
configure:6821: checking for ANSI C header files
configure:6925: result: yes
configure:6947: checking for string.h
configure:6947: result: yes
configure:6947: checking limits.h usability
configure:6947: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6947: $? = 0
configure:6947: result: yes
configure:6947: checking limits.h presence
configure:6947: /usr/local/ssl/fips-2.0/bin/fipsld -E  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c
configure:6947: $? = 0
configure:6947: result: yes
configure:6947: checking for limits.h
configure:6947: result: yes
configure:6947: checking for unistd.h
configure:6947: result: yes
configure:6947: checking sys/socket.h usability
configure:6947: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6947: $? = 0
configure:6947: result: yes
configure:6947: checking sys/socket.h presence
configure:6947: /usr/local/ssl/fips-2.0/bin/fipsld -E  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c
configure:6947: $? = 0
configure:6947: result: yes
configure:6947: checking for sys/socket.h
configure:6947: result: yes
configure:6947: checking pwd.h usability
configure:6947: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6947: $? = 0
configure:6947: result: yes
configure:6947: checking pwd.h presence
configure:6947: /usr/local/ssl/fips-2.0/bin/fipsld -E  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c
configure:6947: $? = 0
configure:6947: result: yes
configure:6947: checking for pwd.h
configure:6947: result: yes
configure:6947: checking grp.h usability
configure:6947: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6947: $? = 0
configure:6947: result: yes
configure:6947: checking grp.h presence
configure:6947: /usr/local/ssl/fips-2.0/bin/fipsld -E  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c
configure:6947: $? = 0
configure:6947: result: yes
configure:6947: checking for grp.h
configure:6947: result: yes
configure:6947: checking for strings.h
configure:6947: result: yes
configure:6947: checking sys/prctl.h usability
configure:6947: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
conftest.c:65:23: fatal error: sys/prctl.h: No such file or directory
compilation terminated.
configure:6947: $? = 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
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_PWD_H 1
| #define HAVE_GRP_H 1
| #define HAVE_STRINGS_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <sys/prctl.h>
configure:6947: result: no
configure:6947: checking sys/prctl.h presence
configure:6947: /usr/local/ssl/fips-2.0/bin/fipsld -E  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c
conftest.c:32:23: fatal error: sys/prctl.h: No such file or directory
compilation terminated.
configure:6947: $? = 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
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_PWD_H 1
| #define HAVE_GRP_H 1
| #define HAVE_STRINGS_H 1
| /* end confdefs.h.  */
| #include <sys/prctl.h>
configure:6947: result: no
configure:6947: checking for sys/prctl.h
configure:6947: result: no
configure:6947: checking sys/processor.h usability
configure:6947: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6947: $? = 0
configure:6947: result: yes
configure:6947: checking sys/processor.h presence
configure:6947: /usr/local/ssl/fips-2.0/bin/fipsld -E  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c
configure:6947: $? = 0
configure:6947: result: yes
configure:6947: checking for sys/processor.h
configure:6947: result: yes
configure:6947: checking sys/sem.h usability
configure:6947: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6947: $? = 0
configure:6947: result: yes
configure:6947: checking sys/sem.h presence
configure:6947: /usr/local/ssl/fips-2.0/bin/fipsld -E  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c
configure:6947: $? = 0
configure:6947: result: yes
configure:6947: checking for sys/sem.h
configure:6947: result: yes
configure:6957: checking for sys/wait.h that is POSIX.1 compatible
configure:6983: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6983: $? = 0
configure:6990: result: yes
configure:7000: checking for an ANSI C-conforming const
configure:7065: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:7065: $? = 0
configure:7072: result: yes
configure:7081: checking for library containing sqrt
configure:7112: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   -L/usr/local/lib conftest.c  >&5
conftest.c:42:6: warning: conflicting types for built-in function 'sqrt' [enabled by default]
Undefined			first referenced
 symbol  			    in file
sqrt                                /var/tmp//cc6vCBAX.o
ld: fatal: symbol referencing errors. No output written to conftest
collect2: error: ld returned 1 exit status
configure:7112: $? = 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
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_PWD_H 1
| #define HAVE_GRP_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_SYS_PROCESSOR_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_WAIT_H 1
| /* end confdefs.h.  */
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char sqrt ();
| int
| main ()
| {
| return sqrt ();
|   ;
|   return 0;
| }
configure:7112: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   -L/usr/local/lib conftest.c -lm   >&5
conftest.c:42:6: warning: conflicting types for built-in function 'sqrt' [enabled by default]
configure:7112: $? = 0
configure:7129: result: -lm
configure:7140: checking for library containing crypt
configure:7171: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   -L/usr/local/lib conftest.c  >&5
configure:7171: $? = 0
configure:7188: result: none required
configure:7215: checking for getpwnam
configure:7215: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   -L/usr/local/lib conftest.c -lm  >&5
configure:7215: $? = 0
configure:7215: result: yes
configure:7215: checking for getgrnam
configure:7215: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   -L/usr/local/lib conftest.c -lm  >&5
configure:7215: $? = 0
configure:7215: result: yes
configure:7215: checking for initgroups
configure:7215: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   -L/usr/local/lib conftest.c -lm  >&5
configure:7215: $? = 0
configure:7215: result: yes
configure:7215: checking for bindprocessor
configure:7215: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   -L/usr/local/lib conftest.c -lm  >&5
Undefined			first referenced
 symbol  			    in file
bindprocessor                       /var/tmp//ccAKqQti.o
ld: fatal: symbol referencing errors. No output written to conftest
collect2: error: ld returned 1 exit status
configure:7215: $? = 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
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_PWD_H 1
| #define HAVE_GRP_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_SYS_PROCESSOR_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_GETPWNAM 1
| #define HAVE_GETGRNAM 1
| #define HAVE_INITGROUPS 1
| /* end confdefs.h.  */
| /* Define bindprocessor to an innocuous variant, in case <limits.h> declares bindprocessor.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define bindprocessor innocuous_bindprocessor
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char bindprocessor (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef bindprocessor
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char bindprocessor ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_bindprocessor || defined __stub___bindprocessor
| choke me
| #endif
| 
| int
| main ()
| {
| return bindprocessor ();
|   ;
|   return 0;
| }
configure:7215: result: no
configure:7215: checking for prctl
configure:7215: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   -L/usr/local/lib conftest.c -lm  >&5
Undefined			first referenced
 symbol  			    in file
prctl                               /var/tmp//cck4Zmpc.o
ld: fatal: symbol referencing errors. No output written to conftest
collect2: error: ld returned 1 exit status
configure:7215: $? = 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
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_PWD_H 1
| #define HAVE_GRP_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_SYS_PROCESSOR_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_GETPWNAM 1
| #define HAVE_GETGRNAM 1
| #define HAVE_INITGROUPS 1
| /* end confdefs.h.  */
| /* Define prctl to an innocuous variant, in case <limits.h> declares prctl.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define prctl innocuous_prctl
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char prctl (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef prctl
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char prctl ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_prctl || defined __stub___prctl
| choke me
| #endif
| 
| int
| main ()
| {
| return prctl ();
|   ;
|   return 0;
| }
configure:7215: result: no
configure:7215: checking for timegm
configure:7215: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   -L/usr/local/lib conftest.c -lm  >&5
Undefined			first referenced
 symbol  			    in file
timegm                              /var/tmp//ccS0tWDu.o
ld: fatal: symbol referencing errors. No output written to conftest
collect2: error: ld returned 1 exit status
configure:7215: $? = 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
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_PWD_H 1
| #define HAVE_GRP_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_SYS_PROCESSOR_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_GETPWNAM 1
| #define HAVE_GETGRNAM 1
| #define HAVE_INITGROUPS 1
| /* end confdefs.h.  */
| /* Define timegm to an innocuous variant, in case <limits.h> declares timegm.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define timegm innocuous_timegm
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char timegm (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef timegm
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char timegm ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_timegm || defined __stub___timegm
| choke me
| #endif
| 
| int
| main ()
| {
| return timegm ();
|   ;
|   return 0;
| }
configure:7215: result: no
configure:7215: checking for getpgid
configure:7215: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   -L/usr/local/lib conftest.c -lm  >&5
configure:7215: $? = 0
configure:7215: result: yes
configure:7227: checking for void pointer length
configure:7243: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   -L/usr/local/lib conftest.c -lm  >&5
configure:7243: $? = 0
configure:7243: ./conftest
configure:7243: $? = 0
configure:7253: result: no
configure:7261: checking for tm_gmtoff in struct tm
configure:7278: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
conftest.c: In function 'main':
conftest.c:44:17: error: 'struct tm' has no member named 'tm_gmtoff'
configure:7278: $? = 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
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_PWD_H 1
| #define HAVE_GRP_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_SYS_PROCESSOR_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_GETPWNAM 1
| #define HAVE_GETGRNAM 1
| #define HAVE_INITGROUPS 1
| #define HAVE_GETPGID 1
| /* end confdefs.h.  */
| #include <sys/types.h>
| #include <time.h>
| int
| main ()
| {
| struct tm tm; tm.tm_gmtoff;
|   ;
|   return 0;
| }
configure:7285: result: no
configure:7518: checking whether to enable mod_authn_file
configure:7556: result: yes (default)
configure:7611: checking whether to enable mod_authn_dbm
configure:7649: result: yes (default)
configure:7704: checking whether to enable mod_authn_anon
configure:7742: result: yes (default)
configure:7797: checking whether to enable mod_authn_dbd
configure:7835: result: no
configure:7891: checking whether to enable mod_authn_default
configure:7929: result: yes (default)
configure:7985: checking whether to enable mod_authn_alias
configure:8023: result: no
configure:8079: checking whether to enable mod_authz_host
configure:8117: result: yes (default)
configure:8172: checking whether to enable mod_authz_groupfile
configure:8210: result: yes (default)
configure:8265: checking whether to enable mod_authz_user
configure:8303: result: yes (default)
configure:8358: checking whether to enable mod_authz_dbm
configure:8396: result: no
configure:8451: checking whether to enable mod_authz_owner
configure:8489: result: no
configure:8545: checking whether to enable mod_authnz_ldap
configure:8597: result: no
configure:8653: checking whether to enable mod_authz_default
configure:8691: result: yes (default)
configure:8748: checking whether to enable mod_auth_basic
configure:8786: result: yes (default)
configure:8841: checking whether to enable mod_auth_digest
configure:8877: result: checking dependencies
configure:8908: checking whether to enable mod_auth_digest
configure:8918: result: yes (default)
configure:8999: checking whether to enable mod_isapi
configure:9037: result: no
configure:9118: checking whether to enable mod_file_cache
configure:9156: result: no
configure:9214: checking whether to enable mod_cache
configure:9252: result: no
configure:9307: checking whether to enable mod_disk_cache
configure:9345: result: no
configure:9400: checking whether to enable mod_mem_cache
configure:9438: result: no
configure:9518: checking whether to enable mod_dbd
configure:9556: result: no
configure:9636: checking whether to enable mod_bucketeer
configure:9674: result: no
configure:9729: checking whether to enable mod_dumpio
configure:9767: result: no
configure:9848: checking whether to enable mod_echo
configure:9886: result: no
configure:9966: checking whether to enable mod_example
configure:10004: result: no
configure:10059: checking whether to enable mod_case_filter
configure:10097: result: no
configure:10152: checking whether to enable mod_case_filter_in
configure:10190: result: no
configure:10271: checking whether to enable mod_reqtimeout
configure:10309: result: no
configure:10364: checking whether to enable mod_ext_filter
configure:10402: result: no
configure:10457: checking whether to enable mod_include
configure:10495: result: yes (default)
configure:10550: checking whether to enable mod_filter
configure:10588: result: yes (default)
configure:10643: checking whether to enable mod_substitute
configure:10681: result: no
configure:10834: checking whether to enable mod_charset_lite
configure:10872: result: no
configure:10930: checking whether to enable mod_deflate
configure:11160: result: no
configure:11242: checking whether to enable mod_ldap
configure:11294: result: no
configure:11375: checking whether to enable mod_log_config
configure:11413: result: yes (default)
configure:11468: checking whether to enable mod_log_forensic
configure:11506: result: no
configure:11587: checking whether to enable mod_logio
configure:11625: result: no
configure:11706: checking whether to enable mod_env
configure:11744: result: yes (default)
configure:11799: checking whether to enable mod_mime_magic
configure:11837: result: yes (default)
configure:11892: checking whether to enable mod_cern_meta
configure:11930: result: yes (default)
configure:11985: checking whether to enable mod_expires
configure:12023: result: yes (default)
configure:12078: checking whether to enable mod_headers
configure:12116: result: yes (default)
configure:12171: checking whether to enable mod_ident
configure:12209: result: no
configure:12265: checking whether to enable mod_usertrack
configure:12338: result: no
configure:12394: checking whether to enable mod_unique_id
configure:12432: result: yes (default)
configure:12487: checking whether to enable mod_setenvif
configure:12525: result: yes (default)
configure:12580: checking whether to enable mod_version
configure:12618: result: yes (default)
configure:12707: checking whether to enable mod_proxy
configure:12745: result: no
configure:12821: checking whether to enable mod_proxy_connect
configure:12859: result: no
configure:12914: checking whether to enable mod_proxy_ftp
configure:12952: result: no
configure:13007: checking whether to enable mod_proxy_http
configure:13045: result: no
configure:13100: checking whether to enable mod_proxy_scgi
configure:13138: result: no
configure:13193: checking whether to enable mod_proxy_ajp
configure:13231: result: no
configure:13286: checking whether to enable mod_proxy_balancer
configure:13324: result: no
configure:13429: checking whether to enable mod_ssl
configure:13465: result: checking dependencies
configure:13474: checking for SSL/TLS toolkit base
configure:13501: result: /usr/local/ssl
configure:13596: checking for OpenSSL version
configure:13601: checking openssl/opensslv.h usability
configure:13601: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE -I/usr/local/ssl/include conftest.c >&5
configure:13601: $? = 0
configure:13601: result: yes
configure:13601: checking openssl/opensslv.h presence
configure:13601: /usr/local/ssl/fips-2.0/bin/fipsld -E  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE -I/usr/local/ssl/include conftest.c
configure:13601: $? = 0
configure:13601: result: yes
configure:13601: checking for openssl/opensslv.h
configure:13601: result: yes
configure:13601: checking openssl/ssl.h usability
configure:13601: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE -I/usr/local/ssl/include conftest.c >&5
configure:13601: $? = 0
configure:13601: result: yes
configure:13601: checking openssl/ssl.h presence
configure:13601: /usr/local/ssl/fips-2.0/bin/fipsld -E  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE -I/usr/local/ssl/include conftest.c
configure:13601: $? = 0
configure:13601: result: yes
configure:13601: checking for openssl/ssl.h
configure:13601: result: yes
configure:13630: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE -I/usr/local/ssl/include conftest.c >&5
configure:13630: $? = 0
configure:13631: result: OK
configure:13820: checking openssl/engine.h usability
configure:13820: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE -I/usr/local/ssl/include conftest.c >&5
configure:13820: $? = 0
configure:13820: result: yes
configure:13820: checking openssl/engine.h presence
configure:13820: /usr/local/ssl/fips-2.0/bin/fipsld -E  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE -I/usr/local/ssl/include conftest.c
configure:13820: $? = 0
configure:13820: result: yes
configure:13820: checking for openssl/engine.h
configure:13820: result: yes
configure:13833: checking for SSLeay_version
configure:13833: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE -I/usr/local/ssl/include   -L/usr/local/lib -L/usr/local/ssl/lib -R/usr/local/ssl/lib conftest.c -lm  -lssl -lcrypto >&5
Undefined			first referenced
 symbol  			    in file
socket                              /usr/local/ssl/lib/libcrypto.a(rand_egd.o)
connect                             /usr/local/ssl/lib/libcrypto.a(rand_egd.o)
ld: fatal: symbol referencing errors. No output written to conftest
collect2: error: ld returned 1 exit status
configure:13833: $? = 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
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_PWD_H 1
| #define HAVE_GRP_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_SYS_PROCESSOR_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_GETPWNAM 1
| #define HAVE_GETGRNAM 1
| #define HAVE_INITGROUPS 1
| #define HAVE_GETPGID 1
| #define AP_ENABLE_V4_MAPPED 1
| #define HAVE_OPENSSL_OPENSSLV_H 1
| #define HAVE_OPENSSL_SSL_H 1
| #define HAVE_OPENSSL_ENGINE_H 1
| /* end confdefs.h.  */
| /* Define SSLeay_version to an innocuous variant, in case <limits.h> declares SSLeay_version.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define SSLeay_version innocuous_SSLeay_version
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char SSLeay_version (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef SSLeay_version
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char SSLeay_version ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_SSLeay_version || defined __stub___SSLeay_version
| choke me
| #endif
| 
| int
| main ()
| {
| return SSLeay_version ();
|   ;
|   return 0;
| }
configure:13833: result: no
configure:13833: checking for SSL_CTX_new
configure:13833: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE -I/usr/local/ssl/include   -L/usr/local/lib -L/usr/local/ssl/lib -R/usr/local/ssl/lib conftest.c -lm  -lssl -lcrypto >&5
Undefined			first referenced
 symbol  			    in file
socket                              /usr/local/ssl/lib/libcrypto.a(rand_egd.o)
connect                             /usr/local/ssl/lib/libcrypto.a(rand_egd.o)
shutdown                            /usr/local/ssl/lib/libcrypto.a(bss_sock.o)
ld: fatal: symbol referencing errors. No output written to conftest
collect2: error: ld returned 1 exit status
configure:13833: $? = 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
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_PWD_H 1
| #define HAVE_GRP_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_SYS_PROCESSOR_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_GETPWNAM 1
| #define HAVE_GETGRNAM 1
| #define HAVE_INITGROUPS 1
| #define HAVE_GETPGID 1
| #define AP_ENABLE_V4_MAPPED 1
| #define HAVE_OPENSSL_OPENSSLV_H 1
| #define HAVE_OPENSSL_SSL_H 1
| #define HAVE_OPENSSL_ENGINE_H 1
| /* end confdefs.h.  */
| /* Define SSL_CTX_new to an innocuous variant, in case <limits.h> declares SSL_CTX_new.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define SSL_CTX_new innocuous_SSL_CTX_new
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char SSL_CTX_new (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef SSL_CTX_new
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char SSL_CTX_new ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_SSL_CTX_new || defined __stub___SSL_CTX_new
| choke me
| #endif
| 
| int
| main ()
| {
| return SSL_CTX_new ();
|   ;
|   return 0;
| }
configure:13833: result: no
configure:13847: checking for ENGINE_init
configure:13847: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE -I/usr/local/ssl/include   -L/usr/local/lib -L/usr/local/ssl/lib -R/usr/local/ssl/lib conftest.c -lm  -lssl -lcrypto >&5
Undefined			first referenced
 symbol  			    in file
socket                              /usr/local/ssl/lib/libcrypto.a(rand_egd.o)
connect                             /usr/local/ssl/lib/libcrypto.a(rand_egd.o)
ld: fatal: symbol referencing errors. No output written to conftest
collect2: error: ld returned 1 exit status
configure:13847: $? = 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
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_PWD_H 1
| #define HAVE_GRP_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_SYS_PROCESSOR_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_GETPWNAM 1
| #define HAVE_GETGRNAM 1
| #define HAVE_INITGROUPS 1
| #define HAVE_GETPGID 1
| #define AP_ENABLE_V4_MAPPED 1
| #define HAVE_OPENSSL_OPENSSLV_H 1
| #define HAVE_OPENSSL_SSL_H 1
| #define HAVE_OPENSSL_ENGINE_H 1
| /* end confdefs.h.  */
| /* Define ENGINE_init to an innocuous variant, in case <limits.h> declares ENGINE_init.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define ENGINE_init innocuous_ENGINE_init
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char ENGINE_init (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef ENGINE_init
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char ENGINE_init ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_ENGINE_init || defined __stub___ENGINE_init
| choke me
| #endif
| 
| int
| main ()
| {
| return ENGINE_init ();
|   ;
|   return 0;
| }
configure:13847: result: no
configure:13847: checking for ENGINE_load_builtin_engines
configure:13847: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE -I/usr/local/ssl/include   -L/usr/local/lib -L/usr/local/ssl/lib -R/usr/local/ssl/lib conftest.c -lm  -lssl -lcrypto >&5
Undefined			first referenced
 symbol  			    in file
socket                              /usr/local/ssl/lib/libcrypto.a(rand_egd.o)
connect                             /usr/local/ssl/lib/libcrypto.a(rand_egd.o)
ld: fatal: symbol referencing errors. No output written to conftest
collect2: error: ld returned 1 exit status
configure:13847: $? = 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
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_PWD_H 1
| #define HAVE_GRP_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_SYS_PROCESSOR_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_GETPWNAM 1
| #define HAVE_GETGRNAM 1
| #define HAVE_INITGROUPS 1
| #define HAVE_GETPGID 1
| #define AP_ENABLE_V4_MAPPED 1
| #define HAVE_OPENSSL_OPENSSLV_H 1
| #define HAVE_OPENSSL_SSL_H 1
| #define HAVE_OPENSSL_ENGINE_H 1
| /* end confdefs.h.  */
| /* Define ENGINE_load_builtin_engines to an innocuous variant, in case <limits.h> declares ENGINE_load_builtin_engines.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define ENGINE_load_builtin_engines innocuous_ENGINE_load_builtin_engines
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char ENGINE_load_builtin_engines (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef ENGINE_load_builtin_engines
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char ENGINE_load_builtin_engines ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_ENGINE_load_builtin_engines || defined __stub___ENGINE_load_builtin_engines
| choke me
| #endif
| 
| int
| main ()
| {
| return ENGINE_load_builtin_engines ();
|   ;
|   return 0;
| }
configure:13847: result: no
configure:13885: checking for SSL_set_cert_store
configure:13885: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE -I/usr/local/ssl/include   -L/usr/local/lib -L/usr/local/ssl/lib -R/usr/local/ssl/lib conftest.c -lm  -lssl -lcrypto >&5
Undefined			first referenced
 symbol  			    in file
SSL_set_cert_store                  /var/tmp//cc3rD0Oi.o
ld: fatal: symbol referencing errors. No output written to conftest
collect2: error: ld returned 1 exit status
configure:13885: $? = 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
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_PWD_H 1
| #define HAVE_GRP_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_SYS_PROCESSOR_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_GETPWNAM 1
| #define HAVE_GETGRNAM 1
| #define HAVE_INITGROUPS 1
| #define HAVE_GETPGID 1
| #define AP_ENABLE_V4_MAPPED 1
| #define HAVE_OPENSSL_OPENSSLV_H 1
| #define HAVE_OPENSSL_SSL_H 1
| #define HAVE_OPENSSL_ENGINE_H 1
| /* end confdefs.h.  */
| /* Define SSL_set_cert_store to an innocuous variant, in case <limits.h> declares SSL_set_cert_store.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define SSL_set_cert_store innocuous_SSL_set_cert_store
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char SSL_set_cert_store (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef SSL_set_cert_store
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char SSL_set_cert_store ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_SSL_set_cert_store || defined __stub___SSL_set_cert_store
| choke me
| #endif
| 
| int
| main ()
| {
| return SSL_set_cert_store ();
|   ;
|   return 0;
| }
configure:13885: result: no
configure:13897: error: ... Error, SSL/TLS libraries were missing or unusable

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

ac_cv_build=sparc-sun-solaris2.10
ac_cv_c_compiler_gnu=yes
ac_cv_c_const=yes
ac_cv_define_APR_HAS_RANDOM=yes
ac_cv_define_APR_HAVE_IPV6=yes
ac_cv_env_CC_set=set
ac_cv_env_CC_value=/usr/local/ssl/fips-2.0/bin/fipsld
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_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_func_ENGINE_init=no
ac_cv_func_ENGINE_load_builtin_engines=no
ac_cv_func_SSL_CTX_new=no
ac_cv_func_SSL_set_cert_store=no
ac_cv_func_SSLeay_version=no
ac_cv_func_bindprocessor=no
ac_cv_func_getgrnam=yes
ac_cv_func_getpgid=yes
ac_cv_func_getpwnam=yes
ac_cv_func_initgroups=yes
ac_cv_func_prctl=no
ac_cv_func_timegm=no
ac_cv_header_grp_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_limits_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_minix_config_h=no
ac_cv_header_openssl_engine_h=yes
ac_cv_header_openssl_opensslv_h=yes
ac_cv_header_openssl_ssl_h=yes
ac_cv_header_pwd_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_prctl_h=no
ac_cv_header_sys_processor_h=yes
ac_cv_header_sys_sem_h=yes
ac_cv_header_sys_socket_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_sys_wait_h=yes
ac_cv_header_unistd_h=yes
ac_cv_host=sparc-sun-solaris2.10
ac_cv_mkdir_p=yes
ac_cv_objext=o
ac_cv_path_EGREP='/usr/xpg4/bin/grep -E'
ac_cv_path_GREP=/usr/xpg4/bin/grep
ac_cv_path_PKGCONFIG=/usr/bin/pkg-config
ac_cv_path_RM=/usr/bin/rm
ac_cv_path_RSYNC=/usr/local/bin/rsync
ac_cv_prog_AWK=nawk
ac_cv_prog_CPP='/usr/local/ssl/fips-2.0/bin/fipsld -E'
ac_cv_prog_ac_ct_CC=/usr/local/ssl/fips-2.0/bin/fipsld
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_cc_c89=
ac_cv_prog_cc_g=yes
ac_cv_safe_to_define___extensions__=yes
ac_cv_search_crypt='none required'
ac_cv_search_sqrt=-lm
ac_cv_search_strerror='none required'
ac_cv_struct_tm_gmtoff=no
ac_cv_target=sparc-sun-solaris2.10
ap_cv_void_ptr_lt_long=no

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

APACHECTL_ULIMIT=''
APR_BINDIR='/usr/local/apache/bin'
APR_CONFIG='/usr/local/apache/bin/apr-1-config'
APR_INCLUDEDIR='/var/tmp/httpd-2.2.25/srclib/apr/include'
APR_VERSION='1.4.8'
APU_BINDIR='/usr/local/apache/bin'
APU_CONFIG='/usr/local/apache/bin/apu-1-config'
APU_INCLUDEDIR='/var/tmp/httpd-2.2.25/srclib/apr-util/include'
APU_VERSION='1.5.2'
AP_BUILD_SRCLIB_DIRS='apr  apr-util pcre'
AP_CLEAN_SRCLIB_DIRS='apr-util  apr pcre'
AP_LIBS='/var/tmp/httpd-2.2.25/srclib/pcre/libpcre.la'
AWK='nawk'
BUILTIN_LIBS=' modules/aaa/libmod_authn_file.la modules/aaa/libmod_authn_dbm.la modules/aaa/libmod_authn_anon.la modules/aaa/libmod_authn_default.la modules/aaa/libmod_authz_host.la modules/aaa/libmod_authz_groupfile.la modules/aaa/libmod_authz_user.la modules/aaa/libmod_authz_default.la modules/aaa/libmod_auth_basic.la modules/aaa/libmod_auth_digest.la modules/filters/libmod_include.la modules/filters/libmod_filter.la modules/loggers/libmod_log_config.la modules/metadata/libmod_env.la modules/metadata/libmod_mime_magic.la modules/metadata/libmod_cern_meta.la modules/metadata/libmod_expires.la modules/metadata/libmod_headers.la modules/metadata/libmod_unique_id.la modules/metadata/libmod_setenvif.la modules/metadata/libmod_version.la'
CC='/usr/local/ssl/fips-2.0/bin/fipsld'
CFLAGS=' -g -O2'
CORE_IMPLIB=''
CORE_IMPLIB_FILE=''
CPP='/usr/local/ssl/fips-2.0/bin/fipsld -E'
CPPFLAGS=' -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE'
CRYPT_LIBS=''
CXX=''
CXXFLAGS=''
DEFS=''
DSO_MODULES=''
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/usr/xpg4/bin/grep -E'
EXEEXT=''
EXTRA_CFLAGS=''
EXTRA_CPPFLAGS=''
EXTRA_CXXFLAGS=''
EXTRA_INCLUDES=''
EXTRA_LDFLAGS=''
EXTRA_LIBS=''
GREP='/usr/xpg4/bin/grep'
HTTPD_LDFLAGS=''
HTTPD_VERSION=''
INCLUDES='-I$(top_builddir)/srclib/pcre -I. -I$(top_srcdir)/os/$(OS_DIR) -I$(top_srcdir)/server/mpm/$(MPM_SUBDIR_NAME) -I$(top_srcdir)/modules/http -I$(top_srcdir)/modules/filters -I$(top_srcdir)/modules/proxy -I$(top_srcdir)/include -I$(top_srcdir)/modules/generators -I$(top_srcdir)/modules/mappers -I$(top_srcdir)/modules/database -I/var/tmp/httpd-2.2.25/srclib/apr/include -I/var/tmp/httpd-2.2.25/srclib/apr-util/include -I/usr/local/include -I$(top_srcdir)/modules/proxy/../generators -I/usr/local/ssl/include'
INSTALL='$(LIBTOOL) --mode=install $(abs_srcdir)/build/install.sh -c'
INSTALL_DSO=''
INSTALL_PROG_FLAGS=''
LDFLAGS='  -L/usr/local/lib -L/usr/local/ssl/lib -R/usr/local/ssl/lib'
LIBOBJS=''
LIBS='-lm '
LIBTOOL='/var/tmp/httpd-2.2.25/srclib/apr/libtool $(LTFLAGS)'
LN_S='ln -s'
LTCFLAGS='-prefer-non-pic -static'
LTFLAGS='--tag=CC'
LTLIBOBJS=''
LT_LDFLAGS=''
LYNX_PATH='lynx'
MKDEP='$(CC) -MM'
MKINSTALLDIRS='$(abs_srcdir)/build/mkdir.sh'
MK_IMPLIB=''
MODULE_CLEANDIRS=' arch/win32 cache database debug echo experimental ldap proxy'
MODULE_DIRS=' aaa filters loggers metadata'
MOD_ACTIONS_LDADD=''
MOD_ALIAS_LDADD=''
MOD_ASIS_LDADD=''
MOD_AUTHNZ_LDAP_LDADD=''
MOD_AUTHN_ALIAS_LDADD=''
MOD_AUTHN_ANON_LDADD=''
MOD_AUTHN_DBD_LDADD=''
MOD_AUTHN_DBM_LDADD=''
MOD_AUTHN_DEFAULT_LDADD=''
MOD_AUTHN_FILE_LDADD=''
MOD_AUTHZ_DBM_LDADD=''
MOD_AUTHZ_DEFAULT_LDADD=''
MOD_AUTHZ_GROUPFILE_LDADD=''
MOD_AUTHZ_HOST_LDADD=''
MOD_AUTHZ_OWNER_LDADD=''
MOD_AUTHZ_USER_LDADD=''
MOD_AUTH_BASIC_LDADD=''
MOD_AUTH_DIGEST_LDADD=''
MOD_AUTOINDEX_LDADD=''
MOD_BUCKETEER_LDADD=''
MOD_CACHE_LDADD=''
MOD_CASE_FILTER_IN_LDADD=''
MOD_CASE_FILTER_LDADD=''
MOD_CERN_META_LDADD=''
MOD_CGID_LDADD=''
MOD_CGI_LDADD=''
MOD_CHARSET_LITE_LDADD=''
MOD_DAV_FS_LDADD=''
MOD_DAV_LDADD=''
MOD_DAV_LOCK_LDADD=''
MOD_DBD_LDADD=''
MOD_DEFLATE_LDADD=''
MOD_DIR_LDADD=''
MOD_DISK_CACHE_LDADD=''
MOD_DUMPIO_LDADD=''
MOD_ECHO_LDADD=''
MOD_ENV_LDADD=''
MOD_EXAMPLE_LDADD=''
MOD_EXPIRES_LDADD=''
MOD_EXT_FILTER_LDADD=''
MOD_FILE_CACHE_LDADD=''
MOD_FILTER_LDADD=''
MOD_HEADERS_LDADD=''
MOD_HTTP_LDADD=''
MOD_IDENT_LDADD=''
MOD_IMAGEMAP_LDADD=''
MOD_INCLUDE_LDADD=''
MOD_INFO_LDADD=''
MOD_ISAPI_LDADD=''
MOD_LDAP_LDADD=''
MOD_LOGIO_LDADD=''
MOD_LOG_CONFIG_LDADD=''
MOD_LOG_FORENSIC_LDADD=''
MOD_MEM_CACHE_LDADD=''
MOD_MIME_LDADD=''
MOD_MIME_MAGIC_LDADD=''
MOD_NEGOTIATION_LDADD=''
MOD_OPTIONAL_FN_EXPORT_LDADD=''
MOD_OPTIONAL_FN_IMPORT_LDADD=''
MOD_OPTIONAL_HOOK_EXPORT_LDADD=''
MOD_OPTIONAL_HOOK_IMPORT_LDADD=''
MOD_PROXY_AJP_LDADD=''
MOD_PROXY_BALANCER_LDADD=''
MOD_PROXY_CONNECT_LDADD=''
MOD_PROXY_FTP_LDADD=''
MOD_PROXY_HTTP_LDADD=''
MOD_PROXY_LDADD=''
MOD_PROXY_SCGI_LDADD=''
MOD_REQTIMEOUT_LDADD=''
MOD_REWRITE_LDADD=''
MOD_SETENVIF_LDADD=''
MOD_SO_LDADD=''
MOD_SPELING_LDADD=''
MOD_SSL_LDADD=''
MOD_STATUS_LDADD=''
MOD_SUBSTITUTE_LDADD=''
MOD_SUEXEC_LDADD=''
MOD_UNIQUE_ID_LDADD=''
MOD_USERDIR_LDADD=''
MOD_USERTRACK_LDADD=''
MOD_VERSION_LDADD=''
MOD_VHOST_ALIAS_LDADD=''
MPM_LIB=''
MPM_NAME=''
MPM_SUBDIR_NAME=''
NONPORTABLE_SUPPORT=''
NOTEST_CFLAGS=''
NOTEST_CPPFLAGS=''
NOTEST_CXXFLAGS=''
NOTEST_LDFLAGS=''
NOTEST_LIBS=''
OBJEXT='o'
OS=''
OS_DIR=''
OS_SPECIFIC_VARS=''
PACKAGE_BUGREPORT=''
PACKAGE_NAME=''
PACKAGE_STRING=''
PACKAGE_TARNAME=''
PACKAGE_URL=''
PACKAGE_VERSION=''
PATH_SEPARATOR=':'
PCRE_CONFIG='false'
PICFLAGS=''
PILDFLAGS=''
PKGCONFIG='/usr/bin/pkg-config'
PORT='80'
POST_SHARED_CMDS=''
PRE_SHARED_CMDS=''
RANLIB='ranlib'
RM='/usr/bin/rm'
RSYNC='/usr/local/bin/rsync'
SHELL='/bin/bash'
SHLIBPATH_VAR='LD_LIBRARY_PATH'
SHLTCFLAGS='-prefer-pic'
SH_LDFLAGS=''
SH_LIBS=''
SH_LIBTOOL='$(LIBTOOL)'
SSLPORT='443'
SSL_LIBS='-lssl -lcrypto  '
UTIL_LDFLAGS=''
ab_LTFLAGS=''
abs_srcdir='/var/tmp/httpd-2.2.25'
ac_ct_CC='/usr/local/ssl/fips-2.0/bin/fipsld'
ap_make_delimiter=''
ap_make_include=''
bindir='${exec_prefix}/bin'
build='sparc-sun-solaris2.10'
build_alias=''
build_cpu='sparc'
build_os='solaris2.10'
build_vendor='sun'
cgidir='${datadir}/cgi-bin'
checkgid_LTFLAGS=''
datadir='${prefix}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE}'
dvidir='${docdir}'
errordir='${datadir}/error'
exec_prefix='${prefix}'
exp_bindir='/usr/local/apache/bin'
exp_cgidir='/usr/local/apache/cgi-bin'
exp_datadir='/usr/local/apache'
exp_errordir='/usr/local/apache/error'
exp_exec_prefix='/usr/local/apache'
exp_htdocsdir='/usr/local/apache/htdocs'
exp_iconsdir='/usr/local/apache/icons'
exp_includedir='/usr/local/apache/include'
exp_installbuilddir='/usr/local/apache/build'
exp_libdir='/usr/local/apache/lib'
exp_libexecdir='/usr/local/apache/modules'
exp_localstatedir='/usr/local/apache'
exp_logfiledir='/usr/local/apache/logs'
exp_mandir='/usr/local/apache/man'
exp_manualdir='/usr/local/apache/manual'
exp_proxycachedir='/usr/local/apache/proxy'
exp_runtimedir='/usr/local/apache/logs'
exp_sbindir='/usr/local/apache/bin'
exp_sysconfdir='/usr/local/apache/conf'
host='sparc-sun-solaris2.10'
host_alias=''
host_cpu='sparc'
host_os='solaris2.10'
host_vendor='sun'
htcacheclean_LTFLAGS=''
htdbm_LTFLAGS=''
htdigest_LTFLAGS=''
htdocsdir='${datadir}/htdocs'
htmldir='${docdir}'
htpasswd_LTFLAGS=''
httxt2dbm_LTFLAGS=''
iconsdir='${datadir}/icons'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
installbuilddir='${datadir}/build'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/modules'
localedir='${datarootdir}/locale'
localstatedir='${prefix}'
logfiledir='${localstatedir}/logs'
logresolve_LTFLAGS=''
mandir='${prefix}/man'
manualdir='${datadir}/manual'
nonssl_listen_stmt_1=''
nonssl_listen_stmt_2=''
oldincludedir='/usr/include'
other_targets=''
pdfdir='${docdir}'
perlbin=''
prefix='/usr/local/apache'
progname=''
program_transform_name='s,x,x,'
proxycachedir='${localstatedir}/proxy'
psdir='${docdir}'
rel_bindir='bin'
rel_cgidir='cgi-bin'
rel_datadir=''
rel_errordir='error'
rel_exec_prefix=''
rel_htdocsdir='htdocs'
rel_iconsdir='icons'
rel_includedir='include'
rel_installbuilddir='build'
rel_libdir='lib'
rel_libexecdir='modules'
rel_localstatedir=''
rel_logfiledir='logs'
rel_mandir='man'
rel_manualdir='manual'
rel_proxycachedir='proxy'
rel_runtimedir='logs'
rel_sbindir='bin'
rel_sysconfdir='conf'
rotatelogs_LTFLAGS=''
runtimedir='${localstatedir}/logs'
sbindir='${exec_prefix}/bin'
shared_build=''
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/conf'
target='sparc-sun-solaris2.10'
target_alias=''
target_cpu='sparc'
target_os='solaris2.10'
target_vendor='sun'

## ----------- ##
## 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 __EXTENSIONS__ 1
#define _ALL_SOURCE 1
#define _GNU_SOURCE 1
#define _POSIX_PTHREAD_SEMANTICS 1
#define _TANDEM_SOURCE 1
#define STDC_HEADERS 1
#define HAVE_STRING_H 1
#define HAVE_LIMITS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_SYS_SOCKET_H 1
#define HAVE_PWD_H 1
#define HAVE_GRP_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_PROCESSOR_H 1
#define HAVE_SYS_SEM_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_GETPWNAM 1
#define HAVE_GETGRNAM 1
#define HAVE_INITGROUPS 1
#define HAVE_GETPGID 1
#define AP_ENABLE_V4_MAPPED 1
#define HAVE_OPENSSL_OPENSSLV_H 1
#define HAVE_OPENSSL_SSL_H 1
#define HAVE_OPENSSL_ENGINE_H 1

configure: exit 1
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.67.  Invocation command line was

  $ ./configure --prefix=/usr/local/apache --enable-mime-magic --enable-info --enable-imagemap --enable-speling --enable-rewrite --enable-authz-host --enable-authn-anon --enable-authn-dbm --enable-auth-digest --enable-cern-meta --enable-expires --enable-headers --enable-unique_id --enable-so --enable-ssl --with-ssl=/usr/local/ssl

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

hostname = hq1-webdmz-s1
uname -m = sun4v
uname -r = 5.10
uname -s = SunOS
uname -v = Generic_150400-03

/usr/bin/uname -p = sparc
/bin/uname -X     = System = SunOS
Node = hq1-webdmz-s1
Release = 5.10
KernelID = Generic_150400-03
Machine = sun4v
BusType = <unknown>
Serial = <unknown>
Users = <unknown>
OEM# = 0
Origin# = 1
NumCPU = 64

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

PATH: /usr/sbin
PATH: /usr/local/gcc4/bin
PATH: /usr/local/bin
PATH: /usr/bin
PATH: /bin
PATH: /usr/local/sbin
PATH: /sbin
PATH: /usr/ccs/bin
PATH: /usr/sadm/bin
PATH: /usr/xpg4/bin
PATH: /usr/ccs/bin
PATH: /usr/sadm/bin
PATH: /usr/sbin
PATH: /usr/bin


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

configure:2793: checking for chosen layout
configure:2795: result: Apache
configure:3598: checking for working mkdir -p
configure:3614: result: yes
configure:3629: checking build system type
configure:3643: result: sparc-sun-solaris2.10
configure:3663: checking host system type
configure:3676: result: sparc-sun-solaris2.10
configure:3696: checking target system type
configure:3709: result: sparc-sun-solaris2.10
configure:3780: checking for APR
configure:3859: result: yes
configure:4132: checking for APR-util
configure:4211: result: yes
configure:4453: checking for gcc
configure:4480: result: /usr/local/ssl/fips-2.0/bin/fipsld
configure:4709: checking for C compiler version
configure:4718: /usr/local/ssl/fips-2.0/bin/fipsld --version >&5
gcc (GCC) 4.7.2
Copyright (C) 2012 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:4729: $? = 0
configure:4718: /usr/local/ssl/fips-2.0/bin/fipsld -v >&5
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/local/gcc4/libexec/gcc/sparc-sun-solaris2.10/4.7.2/lto-wrapper
Target: sparc-sun-solaris2.10
Configured with: ../configure --without-gnu-as --with-as=/usr/ccs/bin/as --without-gnu-ld --with-ld=/usr/ccs/bin/ld --enable-shared --enable-languages=c,c++,fortran,objc --prefix=/usr/local/gcc4
Thread model: posix
gcc version 4.7.2 (GCC) 
configure:4729: $? = 0
configure:4718: /usr/local/ssl/fips-2.0/bin/fipsld -V >&5
gcc: error: unrecognized command line option '-V'
gcc: fatal error: no input files
compilation terminated.
configure:4729: $? = 1
configure:4718: /usr/local/ssl/fips-2.0/bin/fipsld -qversion >&5
gcc: error: unrecognized command line option '-qversion'
gcc: fatal error: no input files
compilation terminated.
configure:4729: $? = 1
configure:4749: checking whether the C compiler works
configure:4771: /usr/local/ssl/fips-2.0/bin/fipsld  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   conftest.c  >&5
configure:4775: $? = 0
configure:4823: result: yes
configure:4826: checking for C compiler default output file name
configure:4828: result: a.out
configure:4834: checking for suffix of executables
configure:4841: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   conftest.c  >&5
configure:4845: $? = 0
configure:4867: result: 
configure:4889: checking whether we are cross compiling
configure:4897: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   conftest.c  >&5
configure:4901: $? = 0
configure:4908: ./conftest
configure:4912: $? = 0
configure:4927: result: no
configure:4932: checking for suffix of object files
configure:4954: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:4958: $? = 0
configure:4979: result: o
configure:4983: checking whether we are using the GNU C compiler
configure:5002: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:5002: $? = 0
configure:5011: result: yes
configure:5020: checking whether /usr/local/ssl/fips-2.0/bin/fipsld accepts -g
configure:5040: /usr/local/ssl/fips-2.0/bin/fipsld -c -g  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:5040: $? = 0
configure:5081: result: yes
configure:5098: checking for /usr/local/ssl/fips-2.0/bin/fipsld option to accept ISO C89
configure:5162: /usr/local/ssl/fips-2.0/bin/fipsld  -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:5162: $? = 0
configure:5175: result: none needed
configure:5200: checking how to run the C preprocessor
configure:5270: result: gcc -E
configure:5290: gcc -E  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c
configure:5290: $? = 0
configure:5304: gcc -E  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c
conftest.c:9:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
configure:5304: $? = 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 <ac_nonexistent.h>
configure:5451: Configuring PCRE regular expression library
configure:5924: checking for rm
configure:5942: found /usr/bin/rm
configure:5954: result: /usr/bin/rm
configure:5964: checking for pkg-config
configure:5997: result: no
configure:6004: checking for rsync
configure:6022: found /usr/local/bin/rsync
configure:6034: result: /usr/local/bin/rsync
configure:6046: checking for gawk
configure:6076: result: no
configure:6046: checking for mawk
configure:6076: result: no
configure:6046: checking for nawk
configure:6062: found /usr/bin/nawk
configure:6073: result: nawk
configure:6084: checking whether ln -s works
configure:6088: result: yes
configure:6138: checking for ranlib
configure:6154: found /usr/ccs/bin/ranlib
configure:6165: result: ranlib
configure:6191: checking for lynx
configure:6221: result: no
configure:6191: checking for links
configure:6221: result: no
configure:6191: checking for elinks
configure:6221: result: no
configure:6246: checking for grep that handles long lines and -e
configure:6304: result: /usr/xpg4/bin/grep
configure:6309: checking for egrep
configure:6371: result: /usr/xpg4/bin/grep -E
configure:6376: checking for ANSI C header files
configure:6396: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6396: $? = 0
configure:6469: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   conftest.c  >&5
configure:6469: $? = 0
configure:6469: ./conftest
configure:6469: $? = 0
configure:6480: result: yes
configure:6493: checking for sys/types.h
configure:6493: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6493: $? = 0
configure:6493: result: yes
configure:6493: checking for sys/stat.h
configure:6493: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6493: $? = 0
configure:6493: result: yes
configure:6493: checking for stdlib.h
configure:6493: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6493: $? = 0
configure:6493: result: yes
configure:6493: checking for string.h
configure:6493: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6493: $? = 0
configure:6493: result: yes
configure:6493: checking for memory.h
configure:6493: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6493: $? = 0
configure:6493: result: yes
configure:6493: checking for strings.h
configure:6493: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6493: $? = 0
configure:6493: result: yes
configure:6493: checking for inttypes.h
configure:6493: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6493: $? = 0
configure:6493: result: yes
configure:6493: checking for stdint.h
configure:6493: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6493: $? = 0
configure:6493: result: yes
configure:6493: checking for unistd.h
configure:6493: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6493: $? = 0
configure:6493: result: yes
configure:6506: checking minix/config.h usability
configure:6506: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
conftest.c:52:26: fatal error: minix/config.h: No such file or directory
compilation terminated.
configure:6506: $? = 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 <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <minix/config.h>
configure:6506: result: no
configure:6506: checking minix/config.h presence
configure:6506: gcc -E  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c
conftest.c:19:26: fatal error: minix/config.h: No such file or directory
compilation terminated.
configure:6506: $? = 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 <minix/config.h>
configure:6506: result: no
configure:6506: checking for minix/config.h
configure:6506: result: no
configure:6527: checking whether it is safe to define __EXTENSIONS__
configure:6545: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6545: $? = 0
configure:6552: result: yes
configure:6568: checking for library containing strerror
configure:6599: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   conftest.c  >&5
configure:6599: $? = 0
configure:6616: result: none required
configure:6638: checking for APR version 1.2.0 or later
configure:6662: result: yes
configure:6695: checking for APR-util version 1.2.0 or later
configure:6719: result: yes
configure:6821: checking for ANSI C header files
configure:6925: result: yes
configure:6947: checking for string.h
configure:6947: result: yes
configure:6947: checking limits.h usability
configure:6947: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6947: $? = 0
configure:6947: result: yes
configure:6947: checking limits.h presence
configure:6947: gcc -E  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c
configure:6947: $? = 0
configure:6947: result: yes
configure:6947: checking for limits.h
configure:6947: result: yes
configure:6947: checking for unistd.h
configure:6947: result: yes
configure:6947: checking sys/socket.h usability
configure:6947: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6947: $? = 0
configure:6947: result: yes
configure:6947: checking sys/socket.h presence
configure:6947: gcc -E  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c
configure:6947: $? = 0
configure:6947: result: yes
configure:6947: checking for sys/socket.h
configure:6947: result: yes
configure:6947: checking pwd.h usability
configure:6947: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6947: $? = 0
configure:6947: result: yes
configure:6947: checking pwd.h presence
configure:6947: gcc -E  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c
configure:6947: $? = 0
configure:6947: result: yes
configure:6947: checking for pwd.h
configure:6947: result: yes
configure:6947: checking grp.h usability
configure:6947: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6947: $? = 0
configure:6947: result: yes
configure:6947: checking grp.h presence
configure:6947: gcc -E  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c
configure:6947: $? = 0
configure:6947: result: yes
configure:6947: checking for grp.h
configure:6947: result: yes
configure:6947: checking for strings.h
configure:6947: result: yes
configure:6947: checking sys/prctl.h usability
configure:6947: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
conftest.c:65:23: fatal error: sys/prctl.h: No such file or directory
compilation terminated.
configure:6947: $? = 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
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_PWD_H 1
| #define HAVE_GRP_H 1
| #define HAVE_STRINGS_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <sys/prctl.h>
configure:6947: result: no
configure:6947: checking sys/prctl.h presence
configure:6947: gcc -E  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c
conftest.c:32:23: fatal error: sys/prctl.h: No such file or directory
compilation terminated.
configure:6947: $? = 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
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_PWD_H 1
| #define HAVE_GRP_H 1
| #define HAVE_STRINGS_H 1
| /* end confdefs.h.  */
| #include <sys/prctl.h>
configure:6947: result: no
configure:6947: checking for sys/prctl.h
configure:6947: result: no
configure:6947: checking sys/processor.h usability
configure:6947: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6947: $? = 0
configure:6947: result: yes
configure:6947: checking sys/processor.h presence
configure:6947: gcc -E  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c
configure:6947: $? = 0
configure:6947: result: yes
configure:6947: checking for sys/processor.h
configure:6947: result: yes
configure:6947: checking sys/sem.h usability
configure:6947: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6947: $? = 0
configure:6947: result: yes
configure:6947: checking sys/sem.h presence
configure:6947: gcc -E  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c
configure:6947: $? = 0
configure:6947: result: yes
configure:6947: checking for sys/sem.h
configure:6947: result: yes
configure:6957: checking for sys/wait.h that is POSIX.1 compatible
configure:6983: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6983: $? = 0
configure:6990: result: yes
configure:7000: checking for an ANSI C-conforming const
configure:7065: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:7065: $? = 0
configure:7072: result: yes
configure:7081: checking for library containing sqrt
configure:7112: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   conftest.c  >&5
conftest.c:42:6: warning: conflicting types for built-in function 'sqrt' [enabled by default]
Undefined			first referenced
 symbol  			    in file
sqrt                                /var/tmp//ccMggEbp.o
ld: fatal: symbol referencing errors. No output written to conftest
collect2: error: ld returned 1 exit status
configure:7112: $? = 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
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_PWD_H 1
| #define HAVE_GRP_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_SYS_PROCESSOR_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_WAIT_H 1
| /* end confdefs.h.  */
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char sqrt ();
| int
| main ()
| {
| return sqrt ();
|   ;
|   return 0;
| }
configure:7112: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   conftest.c -lm   >&5
conftest.c:42:6: warning: conflicting types for built-in function 'sqrt' [enabled by default]
configure:7112: $? = 0
configure:7129: result: -lm
configure:7140: checking for library containing crypt
configure:7171: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   conftest.c  >&5
configure:7171: $? = 0
configure:7188: result: none required
configure:7215: checking for getpwnam
configure:7215: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   conftest.c -lm  >&5
configure:7215: $? = 0
configure:7215: result: yes
configure:7215: checking for getgrnam
configure:7215: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   conftest.c -lm  >&5
configure:7215: $? = 0
configure:7215: result: yes
configure:7215: checking for initgroups
configure:7215: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   conftest.c -lm  >&5
configure:7215: $? = 0
configure:7215: result: yes
configure:7215: checking for bindprocessor
configure:7215: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   conftest.c -lm  >&5
Undefined			first referenced
 symbol  			    in file
bindprocessor                       /var/tmp//cc4kknEE.o
ld: fatal: symbol referencing errors. No output written to conftest
collect2: error: ld returned 1 exit status
configure:7215: $? = 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
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_PWD_H 1
| #define HAVE_GRP_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_SYS_PROCESSOR_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_GETPWNAM 1
| #define HAVE_GETGRNAM 1
| #define HAVE_INITGROUPS 1
| /* end confdefs.h.  */
| /* Define bindprocessor to an innocuous variant, in case <limits.h> declares bindprocessor.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define bindprocessor innocuous_bindprocessor
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char bindprocessor (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef bindprocessor
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char bindprocessor ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_bindprocessor || defined __stub___bindprocessor
| choke me
| #endif
| 
| int
| main ()
| {
| return bindprocessor ();
|   ;
|   return 0;
| }
configure:7215: result: no
configure:7215: checking for prctl
configure:7215: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   conftest.c -lm  >&5
Undefined			first referenced
 symbol  			    in file
prctl                               /var/tmp//ccYAY9iW.o
ld: fatal: symbol referencing errors. No output written to conftest
collect2: error: ld returned 1 exit status
configure:7215: $? = 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
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_PWD_H 1
| #define HAVE_GRP_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_SYS_PROCESSOR_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_GETPWNAM 1
| #define HAVE_GETGRNAM 1
| #define HAVE_INITGROUPS 1
| /* end confdefs.h.  */
| /* Define prctl to an innocuous variant, in case <limits.h> declares prctl.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define prctl innocuous_prctl
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char prctl (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef prctl
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char prctl ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_prctl || defined __stub___prctl
| choke me
| #endif
| 
| int
| main ()
| {
| return prctl ();
|   ;
|   return 0;
| }
configure:7215: result: no
configure:7215: checking for timegm
configure:7215: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   conftest.c -lm  >&5
Undefined			first referenced
 symbol  			    in file
timegm                              /var/tmp//ccGsnEfd.o
ld: fatal: symbol referencing errors. No output written to conftest
collect2: error: ld returned 1 exit status
configure:7215: $? = 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
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_PWD_H 1
| #define HAVE_GRP_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_SYS_PROCESSOR_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_GETPWNAM 1
| #define HAVE_GETGRNAM 1
| #define HAVE_INITGROUPS 1
| /* end confdefs.h.  */
| /* Define timegm to an innocuous variant, in case <limits.h> declares timegm.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define timegm innocuous_timegm
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char timegm (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef timegm
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char timegm ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_timegm || defined __stub___timegm
| choke me
| #endif
| 
| int
| main ()
| {
| return timegm ();
|   ;
|   return 0;
| }
configure:7215: result: no
configure:7215: checking for getpgid
configure:7215: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   conftest.c -lm  >&5
configure:7215: $? = 0
configure:7215: result: yes
configure:7227: checking for void pointer length
configure:7243: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   conftest.c -lm  >&5
configure:7243: $? = 0
configure:7243: ./conftest
configure:7243: $? = 0
configure:7253: result: no
configure:7261: checking for tm_gmtoff in struct tm
configure:7278: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
conftest.c: In function 'main':
conftest.c:44:17: error: 'struct tm' has no member named 'tm_gmtoff'
configure:7278: $? = 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
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_PWD_H 1
| #define HAVE_GRP_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_SYS_PROCESSOR_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_GETPWNAM 1
| #define HAVE_GETGRNAM 1
| #define HAVE_INITGROUPS 1
| #define HAVE_GETPGID 1
| /* end confdefs.h.  */
| #include <sys/types.h>
| #include <time.h>
| int
| main ()
| {
| struct tm tm; tm.tm_gmtoff;
|   ;
|   return 0;
| }
configure:7285: result: no
configure:7518: checking whether to enable mod_authn_file
configure:7556: result: yes (default)
configure:7611: checking whether to enable mod_authn_dbm
configure:7649: result: yes (default)
configure:7704: checking whether to enable mod_authn_anon
configure:7742: result: yes (default)
configure:7797: checking whether to enable mod_authn_dbd
configure:7835: result: no
configure:7891: checking whether to enable mod_authn_default
configure:7929: result: yes (default)
configure:7985: checking whether to enable mod_authn_alias
configure:8023: result: no
configure:8079: checking whether to enable mod_authz_host
configure:8117: result: yes (default)
configure:8172: checking whether to enable mod_authz_groupfile
configure:8210: result: yes (default)
configure:8265: checking whether to enable mod_authz_user
configure:8303: result: yes (default)
configure:8358: checking whether to enable mod_authz_dbm
configure:8396: result: no
configure:8451: checking whether to enable mod_authz_owner
configure:8489: result: no
configure:8545: checking whether to enable mod_authnz_ldap
configure:8597: result: no
configure:8653: checking whether to enable mod_authz_default
configure:8691: result: yes (default)
configure:8748: checking whether to enable mod_auth_basic
configure:8786: result: yes (default)
configure:8841: checking whether to enable mod_auth_digest
configure:8877: result: checking dependencies
configure:8908: checking whether to enable mod_auth_digest
configure:8918: result: yes (default)
configure:8999: checking whether to enable mod_isapi
configure:9037: result: no
configure:9118: checking whether to enable mod_file_cache
configure:9156: result: no
configure:9214: checking whether to enable mod_cache
configure:9252: result: no
configure:9307: checking whether to enable mod_disk_cache
configure:9345: result: no
configure:9400: checking whether to enable mod_mem_cache
configure:9438: result: no
configure:9518: checking whether to enable mod_dbd
configure:9556: result: no
configure:9636: checking whether to enable mod_bucketeer
configure:9674: result: no
configure:9729: checking whether to enable mod_dumpio
configure:9767: result: no
configure:9848: checking whether to enable mod_echo
configure:9886: result: no
configure:9966: checking whether to enable mod_example
configure:10004: result: no
configure:10059: checking whether to enable mod_case_filter
configure:10097: result: no
configure:10152: checking whether to enable mod_case_filter_in
configure:10190: result: no
configure:10271: checking whether to enable mod_reqtimeout
configure:10309: result: no
configure:10364: checking whether to enable mod_ext_filter
configure:10402: result: no
configure:10457: checking whether to enable mod_include
configure:10495: result: yes (default)
configure:10550: checking whether to enable mod_filter
configure:10588: result: yes (default)
configure:10643: checking whether to enable mod_substitute
configure:10681: result: no
configure:10834: checking whether to enable mod_charset_lite
configure:10872: result: no
configure:10930: checking whether to enable mod_deflate
configure:11160: result: no
configure:11242: checking whether to enable mod_ldap
configure:11294: result: no
configure:11375: checking whether to enable mod_log_config
configure:11413: result: yes (default)
configure:11468: checking whether to enable mod_log_forensic
configure:11506: result: no
configure:11587: checking whether to enable mod_logio
configure:11625: result: no
configure:11706: checking whether to enable mod_env
configure:11744: result: yes (default)
configure:11799: checking whether to enable mod_mime_magic
configure:11837: result: yes (default)
configure:11892: checking whether to enable mod_cern_meta
configure:11930: result: yes (default)
configure:11985: checking whether to enable mod_expires
configure:12023: result: yes (default)
configure:12078: checking whether to enable mod_headers
configure:12116: result: yes (default)
configure:12171: checking whether to enable mod_ident
configure:12209: result: no
configure:12265: checking whether to enable mod_usertrack
configure:12338: result: no
configure:12394: checking whether to enable mod_unique_id
configure:12432: result: yes (default)
configure:12487: checking whether to enable mod_setenvif
configure:12525: result: yes (default)
configure:12580: checking whether to enable mod_version
configure:12618: result: yes (default)
configure:12707: checking whether to enable mod_proxy
configure:12745: result: no
configure:12821: checking whether to enable mod_proxy_connect
configure:12859: result: no
configure:12914: checking whether to enable mod_proxy_ftp
configure:12952: result: no
configure:13007: checking whether to enable mod_proxy_http
configure:13045: result: no
configure:13100: checking whether to enable mod_proxy_scgi
configure:13138: result: no
configure:13193: checking whether to enable mod_proxy_ajp
configure:13231: result: no
configure:13286: checking whether to enable mod_proxy_balancer
configure:13324: result: no
configure:13429: checking whether to enable mod_ssl
configure:13465: result: checking dependencies
configure:13474: checking for SSL/TLS toolkit base
configure:13501: result: /usr/local/ssl
configure:13596: checking for OpenSSL version
configure:13601: checking openssl/opensslv.h usability
configure:13601: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE -I/usr/local/ssl/include conftest.c >&5
configure:13601: $? = 0
configure:13601: result: yes
configure:13601: checking openssl/opensslv.h presence
configure:13601: gcc -E  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE -I/usr/local/ssl/include conftest.c
configure:13601: $? = 0
configure:13601: result: yes
configure:13601: checking for openssl/opensslv.h
configure:13601: result: yes
configure:13601: checking openssl/ssl.h usability
configure:13601: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE -I/usr/local/ssl/include conftest.c >&5
configure:13601: $? = 0
configure:13601: result: yes
configure:13601: checking openssl/ssl.h presence
configure:13601: gcc -E  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE -I/usr/local/ssl/include conftest.c
configure:13601: $? = 0
configure:13601: result: yes
configure:13601: checking for openssl/ssl.h
configure:13601: result: yes
configure:13630: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE -I/usr/local/ssl/include conftest.c >&5
configure:13630: $? = 0
configure:13631: result: OK
configure:13820: checking openssl/engine.h usability
configure:13820: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE -I/usr/local/ssl/include conftest.c >&5
configure:13820: $? = 0
configure:13820: result: yes
configure:13820: checking openssl/engine.h presence
configure:13820: gcc -E  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE -I/usr/local/ssl/include conftest.c
configure:13820: $? = 0
configure:13820: result: yes
configure:13820: checking for openssl/engine.h
configure:13820: result: yes
configure:13833: checking for SSLeay_version
configure:13833: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE -I/usr/local/ssl/include   -L/usr/local/ssl/lib -R/usr/local/ssl/lib conftest.c -lm  -lssl -lcrypto -luuid -lsendfile -lrt -lsocket -lnsl -lpthread >&5
configure:13833: $? = 0
configure:13833: result: yes
configure:13833: checking for SSL_CTX_new
configure:13833: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE -I/usr/local/ssl/include   -L/usr/local/ssl/lib -R/usr/local/ssl/lib conftest.c -lm  -lssl -lcrypto -luuid -lsendfile -lrt -lsocket -lnsl -lpthread >&5
configure:13833: $? = 0
configure:13833: result: yes
configure:13847: checking for ENGINE_init
configure:13847: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE -I/usr/local/ssl/include   -L/usr/local/ssl/lib -R/usr/local/ssl/lib conftest.c -lm  -lssl -lcrypto -luuid -lsendfile -lrt -lsocket -lnsl -lpthread >&5
configure:13847: $? = 0
configure:13847: result: yes
configure:13847: checking for ENGINE_load_builtin_engines
configure:13847: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE -I/usr/local/ssl/include   -L/usr/local/ssl/lib -R/usr/local/ssl/lib conftest.c -lm  -lssl -lcrypto -luuid -lsendfile -lrt -lsocket -lnsl -lpthread >&5
configure:13847: $? = 0
configure:13847: result: yes
configure:13885: checking for SSL_set_cert_store
configure:13885: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE -I/usr/local/ssl/include   -L/usr/local/ssl/lib -R/usr/local/ssl/lib conftest.c -lm  -lssl -lcrypto -luuid -lsendfile -lrt -lsocket -lnsl -lpthread >&5
Undefined			first referenced
 symbol  			    in file
SSL_set_cert_store                  /var/tmp//ccqp5lOC.o
ld: fatal: symbol referencing errors. No output written to conftest
collect2: error: ld returned 1 exit status
configure:13885: $? = 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
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_PWD_H 1
| #define HAVE_GRP_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_SYS_PROCESSOR_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_GETPWNAM 1
| #define HAVE_GETGRNAM 1
| #define HAVE_INITGROUPS 1
| #define HAVE_GETPGID 1
| #define AP_ENABLE_V4_MAPPED 1
| #define HAVE_OPENSSL_OPENSSLV_H 1
| #define HAVE_OPENSSL_SSL_H 1
| #define HAVE_OPENSSL_ENGINE_H 1
| #define HAVE_SSLEAY_VERSION 1
| #define HAVE_SSL_CTX_NEW 1
| #define HAVE_ENGINE_INIT 1
| #define HAVE_ENGINE_LOAD_BUILTIN_ENGINES 1
| /* end confdefs.h.  */
| /* Define SSL_set_cert_store to an innocuous variant, in case <limits.h> declares SSL_set_cert_store.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define SSL_set_cert_store innocuous_SSL_set_cert_store
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char SSL_set_cert_store (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef SSL_set_cert_store
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char SSL_set_cert_store ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_SSL_set_cert_store || defined __stub___SSL_set_cert_store
| choke me
| #endif
| 
| int
| main ()
| {
| return SSL_set_cert_store ();
|   ;
|   return 0;
| }
configure:13885: result: no
configure:13916: checking whether Distcache is required
configure:13937: result: no (default)
configure:14072: checking whether to enable mod_ssl
configure:14082: result: yes (default)
configure:14186: checking whether to enable mod_optional_hook_export
configure:14224: result: no
configure:14279: checking whether to enable mod_optional_hook_import
configure:14317: result: no
configure:14372: checking whether to enable mod_optional_fn_import
configure:14410: result: no
configure:14465: checking whether to enable mod_optional_fn_export
configure:14503: result: no
configure:14596: checking for target platform
configure:14625: result: unix
configure:14657: checking for rlim_t
configure:14678: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:14678: $? = 0
configure:14689: result: yes
configure:14701: checking sys/time.h usability
configure:14701: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:14701: $? = 0
configure:14701: result: yes
configure:14701: checking sys/time.h presence
configure:14701: gcc -E  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c
configure:14701: $? = 0
configure:14701: result: yes
configure:14701: checking for sys/time.h
configure:14701: result: yes
configure:14701: checking sys/resource.h usability
configure:14701: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:14701: $? = 0
configure:14701: result: yes
configure:14701: checking sys/resource.h presence
configure:14701: gcc -E  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c
configure:14701: $? = 0
configure:14701: result: yes
configure:14701: checking for sys/resource.h
configure:14701: result: yes
configure:14701: checking for sys/sem.h
configure:14701: result: yes
configure:14701: checking sys/ipc.h usability
configure:14701: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:14701: $? = 0
configure:14701: result: yes
configure:14701: checking sys/ipc.h presence
configure:14701: gcc -E  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c
configure:14701: $? = 0
configure:14701: result: yes
configure:14701: checking for sys/ipc.h
configure:14701: result: yes
configure:14715: checking for setsid
configure:14715: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   -L/usr/local/ssl/lib -R/usr/local/ssl/lib conftest.c -lm  >&5
configure:14715: $? = 0
configure:14715: result: yes
configure:14715: checking for killpg
configure:14715: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   -L/usr/local/ssl/lib -R/usr/local/ssl/lib conftest.c -lm  >&5
configure:14715: $? = 0
configure:14715: result: yes
configure:14731: checking bstring.h usability
configure:14731: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
conftest.c:87:21: fatal error: bstring.h: No such file or directory
compilation terminated.
configure:14731: $? = 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
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_PWD_H 1
| #define HAVE_GRP_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_SYS_PROCESSOR_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_GETPWNAM 1
| #define HAVE_GETGRNAM 1
| #define HAVE_INITGROUPS 1
| #define HAVE_GETPGID 1
| #define AP_ENABLE_V4_MAPPED 1
| #define HAVE_OPENSSL_OPENSSLV_H 1
| #define HAVE_OPENSSL_SSL_H 1
| #define HAVE_OPENSSL_ENGINE_H 1
| #define HAVE_SSLEAY_VERSION 1
| #define HAVE_SSL_CTX_NEW 1
| #define HAVE_ENGINE_INIT 1
| #define HAVE_ENGINE_LOAD_BUILTIN_ENGINES 1
| #define HAVE_OPENSSL 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SETSID 1
| #define HAVE_KILLPG 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <bstring.h>
configure:14731: result: no
configure:14731: checking bstring.h presence
configure:14731: gcc -E  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c
conftest.c:54:21: fatal error: bstring.h: No such file or directory
compilation terminated.
configure:14731: $? = 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
| #define __EXTENSIONS__ 1
| #define _ALL_SOURCE 1
| #define _GNU_SOURCE 1
| #define _POSIX_PTHREAD_SEMANTICS 1
| #define _TANDEM_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_STRING_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_PWD_H 1
| #define HAVE_GRP_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_SYS_PROCESSOR_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_WAIT_H 1
| #define HAVE_GETPWNAM 1
| #define HAVE_GETGRNAM 1
| #define HAVE_INITGROUPS 1
| #define HAVE_GETPGID 1
| #define AP_ENABLE_V4_MAPPED 1
| #define HAVE_OPENSSL_OPENSSLV_H 1
| #define HAVE_OPENSSL_SSL_H 1
| #define HAVE_OPENSSL_ENGINE_H 1
| #define HAVE_SSLEAY_VERSION 1
| #define HAVE_SSL_CTX_NEW 1
| #define HAVE_ENGINE_INIT 1
| #define HAVE_ENGINE_LOAD_BUILTIN_ENGINES 1
| #define HAVE_OPENSSL 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_RESOURCE_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SETSID 1
| #define HAVE_KILLPG 1
| /* end confdefs.h.  */
| #include <bstring.h>
configure:14731: result: no
configure:14731: checking for bstring.h
configure:14731: result: no
configure:14731: checking for unistd.h
configure:14731: result: yes
configure:14746: checking for syslog
configure:14746: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   -L/usr/local/ssl/lib -R/usr/local/ssl/lib conftest.c -lm  >&5
configure:14746: $? = 0
configure:14746: result: yes
configure:14758: checking sys/times.h usability
configure:14758: /usr/local/ssl/fips-2.0/bin/fipsld -c  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c >&5
configure:14758: $? = 0
configure:14758: result: yes
configure:14758: checking sys/times.h presence
configure:14758: gcc -E  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE conftest.c
configure:14758: $? = 0
configure:14758: result: yes
configure:14758: checking for sys/times.h
configure:14758: result: yes
configure:14770: checking for times
configure:14770: /usr/local/ssl/fips-2.0/bin/fipsld -o conftest  -g -O2  -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE   -L/usr/local/ssl/lib -R/usr/local/ssl/lib conftest.c -lm  >&5
configure:14770: $? = 0
configure:14770: result: yes
configure:14780: checking which MPM to use
configure:14796: result: prefork
configure:15675: checking whether to enable mod_http
configure:15713: result: yes
configure:15768: checking whether to enable mod_mime
configure:15806: result: yes (default)
configure:15875: checking for extra modules
configure:15935: result: none
configure:15960: checking whether to enable mod_dav
configure:15998: result: no
configure:16106: checking whether to enable mod_status
configure:16144: result: yes (default)
configure:16199: checking whether to enable mod_autoindex
configure:16237: result: yes (default)
configure:16292: checking whether to enable mod_asis
configure:16330: result: yes (default)
configure:16385: checking whether to enable mod_info
configure:16423: result: yes (default)
configure:16478: checking whether to enable mod_suexec
configure:16528: result: no
configure:16786: checking whether to enable mod_cgi
configure:16824: result: yes (default)
configure:16879: checking whether to enable mod_cgid
configure:16917: result: no
configure:17160: checking whether to enable mod_dav_fs
configure:17198: result: no
configure:17288: checking whether to enable mod_dav_lock
configure:17326: result: no
configure:17407: checking whether to enable mod_vhost_alias
configure:17445: result: no
configure:17500: checking whether to enable mod_negotiation
configure:17538: result: yes (default)
configure:17593: checking whether to enable mod_dir
configure:17631: result: yes (default)
configure:17686: checking whether to enable mod_imagemap
configure:17724: result: yes (default)
configure:17779: checking whether to enable mod_actions
configure:17817: result: yes (default)
configure:17872: checking whether to enable mod_speling
configure:17910: result: yes (default)
configure:17965: checking whether to enable mod_userdir
configure:18003: result: yes (default)
configure:18058: checking whether to enable mod_alias
configure:18096: result: yes (default)
configure:18152: checking whether to enable mod_rewrite
configure:18190: result: yes (default)
configure:18329: checking whether to enable mod_so
configure:18367: result: yes
configure:19356: creating ./config.status

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

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

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

on hq1-webdmz-s1

config.status:1136: creating docs/conf/httpd.conf
config.status:1136: creating docs/conf/extra/httpd-autoindex.conf
config.status:1136: creating docs/conf/extra/httpd-dav.conf
config.status:1136: creating docs/conf/extra/httpd-default.conf
config.status:1136: creating docs/conf/extra/httpd-info.conf
config.status:1136: creating docs/conf/extra/httpd-languages.conf
config.status:1136: creating docs/conf/extra/httpd-manual.conf
config.status:1136: creating docs/conf/extra/httpd-mpm.conf
config.status:1136: creating docs/conf/extra/httpd-multilang-errordoc.conf
config.status:1136: creating docs/conf/extra/httpd-ssl.conf
config.status:1136: creating docs/conf/extra/httpd-userdir.conf
config.status:1136: creating docs/conf/extra/httpd-vhosts.conf
config.status:1136: creating include/ap_config_layout.h
config.status:1136: creating support/apxs
config.status:1136: creating support/apachectl
config.status:1136: creating support/dbmmanage
config.status:1136: creating support/envvars-std
config.status:1136: creating support/log_server_status
config.status:1136: creating support/logresolve.pl
config.status:1136: creating support/phf_abuse_log.cgi
config.status:1136: creating support/split-logfile
config.status:1136: creating build/rules.mk
config.status:1136: creating build/pkg/pkginfo
config.status:1136: creating build/config_vars.sh
config.status:1136: creating include/ap_config_auto.h
config.status:1305: include/ap_config_auto.h is unchanged
config.status:1319: executing default commands

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

ac_cv_build=sparc-sun-solaris2.10
ac_cv_c_compiler_gnu=yes
ac_cv_c_const=yes
ac_cv_define_APR_HAS_DSO=yes
ac_cv_define_APR_HAS_RANDOM=yes
ac_cv_define_APR_HAVE_IPV6=yes
ac_cv_env_CC_set=set
ac_cv_env_CC_value=/usr/local/ssl/fips-2.0/bin/fipsld
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_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_func_ENGINE_init=yes
ac_cv_func_ENGINE_load_builtin_engines=yes
ac_cv_func_SSL_CTX_new=yes
ac_cv_func_SSL_set_cert_store=no
ac_cv_func_SSLeay_version=yes
ac_cv_func_bindprocessor=no
ac_cv_func_getgrnam=yes
ac_cv_func_getpgid=yes
ac_cv_func_getpwnam=yes
ac_cv_func_initgroups=yes
ac_cv_func_killpg=yes
ac_cv_func_prctl=no
ac_cv_func_setsid=yes
ac_cv_func_syslog=yes
ac_cv_func_timegm=no
ac_cv_func_times=yes
ac_cv_header_bstring_h=no
ac_cv_header_grp_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_limits_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_minix_config_h=no
ac_cv_header_openssl_engine_h=yes
ac_cv_header_openssl_opensslv_h=yes
ac_cv_header_openssl_ssl_h=yes
ac_cv_header_pwd_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_ipc_h=yes
ac_cv_header_sys_prctl_h=no
ac_cv_header_sys_processor_h=yes
ac_cv_header_sys_resource_h=yes
ac_cv_header_sys_sem_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_times_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_sys_wait_h=yes
ac_cv_header_unistd_h=yes
ac_cv_host=sparc-sun-solaris2.10
ac_cv_mkdir_p=yes
ac_cv_objext=o
ac_cv_path_EGREP='/usr/xpg4/bin/grep -E'
ac_cv_path_GREP=/usr/xpg4/bin/grep
ac_cv_path_RM=/usr/bin/rm
ac_cv_path_RSYNC=/usr/local/bin/rsync
ac_cv_prog_AWK=nawk
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_ac_ct_CC=/usr/local/ssl/fips-2.0/bin/fipsld
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_cc_c89=
ac_cv_prog_cc_g=yes
ac_cv_safe_to_define___extensions__=yes
ac_cv_search_crypt='none required'
ac_cv_search_sqrt=-lm
ac_cv_search_strerror='none required'
ac_cv_struct_tm_gmtoff=no
ac_cv_target=sparc-sun-solaris2.10
ac_cv_type_rlim_t=yes
ap_cv_aprver12=yes
ap_cv_apuver12=yes
ap_cv_void_ptr_lt_long=no
apache_cv_mpm=prefork

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

APACHECTL_ULIMIT='ulimit -S -n `ulimit -H -n`'
APR_BINDIR='/usr/local/apr/bin'
APR_CONFIG='/usr/local/apr/bin/apr-1-config'
APR_INCLUDEDIR='/usr/local/apr/include/apr-1'
APR_VERSION='1.4.5'
APU_BINDIR='/usr/local/apr/bin'
APU_CONFIG='/usr/local/apr/bin/apu-1-config'
APU_INCLUDEDIR='/usr/local/apr/include/apr-1'
APU_VERSION='1.3.12'
AP_BUILD_SRCLIB_DIRS=' pcre'
AP_CLEAN_SRCLIB_DIRS=' pcre'
AP_LIBS='/var/tmp/httpd-2.2.25/srclib/pcre/libpcre.la  /usr/local/apr/lib/libaprutil-1.la     -lexpat -liconv  /usr/local/apr/lib/libapr-1.la -luuid -lsendfile -lrt -lsocket -lnsl  -lpthread'
AWK='nawk'
BUILTIN_LIBS=' modules/aaa/libmod_authn_file.la modules/aaa/libmod_authn_dbm.la modules/aaa/libmod_authn_anon.la modules/aaa/libmod_authn_default.la modules/aaa/libmod_authz_host.la modules/aaa/libmod_authz_groupfile.la modules/aaa/libmod_authz_user.la modules/aaa/libmod_authz_default.la modules/aaa/libmod_auth_basic.la modules/aaa/libmod_auth_digest.la modules/filters/libmod_include.la modules/filters/libmod_filter.la modules/loggers/libmod_log_config.la modules/metadata/libmod_env.la modules/metadata/libmod_mime_magic.la modules/metadata/libmod_cern_meta.la modules/metadata/libmod_expires.la modules/metadata/libmod_headers.la modules/metadata/libmod_unique_id.la modules/metadata/libmod_setenvif.la modules/metadata/libmod_version.la modules/ssl/libmod_ssl.la modules/http/libmod_http.la modules/http/libmod_mime.la modules/generators/libmod_status.la modules/generators/libmod_autoindex.la modules/generators/libmod_asis.la modules/generators/libmod_info.la modules/generators/libmod_cgi.la modules/mappers/libmod_negotiation.la modules/mappers/libmod_dir.la modules/mappers/libmod_imagemap.la modules/mappers/libmod_actions.la modules/mappers/libmod_speling.la modules/mappers/libmod_userdir.la modules/mappers/libmod_alias.la modules/mappers/libmod_rewrite.la modules/mappers/libmod_so.la'
CC='/usr/local/ssl/fips-2.0/bin/fipsld'
CFLAGS=''
CORE_IMPLIB=''
CORE_IMPLIB_FILE=''
CPP='gcc -E'
CPPFLAGS=''
CRYPT_LIBS=''
CXX=''
CXXFLAGS=''
DEFS='-DHAVE_CONFIG_H'
DSO_MODULES=''
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/usr/xpg4/bin/grep -E'
EXEEXT=''
EXTRA_CFLAGS=' -g -O2'
EXTRA_CPPFLAGS=' -DSOLARIS2=10 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -D_LARGEFILE64_SOURCE'
EXTRA_CXXFLAGS=''
EXTRA_INCLUDES='-I$(top_builddir)/srclib/pcre -I. -I$(top_srcdir)/os/$(OS_DIR) -I$(top_srcdir)/server/mpm/$(MPM_SUBDIR_NAME) -I$(top_srcdir)/modules/http -I$(top_srcdir)/modules/filters -I$(top_srcdir)/modules/proxy -I$(top_srcdir)/include -I$(top_srcdir)/modules/generators -I$(top_srcdir)/modules/mappers -I$(top_srcdir)/modules/database -I/usr/local/apr/include/apr-1 -I$(top_srcdir)/modules/proxy/../generators -I/usr/local/ssl/include -I$(top_srcdir)/modules/ssl -I$(top_srcdir)/modules/dav/main'
EXTRA_LDFLAGS='  -L/usr/local/ssl/lib -R/usr/local/ssl/lib'
EXTRA_LIBS='-lm '
GREP='/usr/xpg4/bin/grep'
HTTPD_LDFLAGS='-export-dynamic'
HTTPD_VERSION='2.2.25'
INCLUDES=''
INSTALL='$(LIBTOOL) --mode=install $(abs_srcdir)/build/install.sh -c'
INSTALL_DSO='yes'
INSTALL_PROG_FLAGS=''
LDFLAGS=''
LIBOBJS=''
LIBS=''
LIBTOOL='/usr/local/apr/build-1/libtool $(LTFLAGS)'
LN_S='ln -s'
LTCFLAGS='-prefer-non-pic -static'
LTFLAGS='--tag=CC'
LTLIBOBJS=''
LT_LDFLAGS=''
LYNX_PATH='lynx'
MKDEP='$(CC) -MM'
MKINSTALLDIRS='$(abs_srcdir)/build/mkdir.sh'
MK_IMPLIB=''
MODULE_CLEANDIRS=' arch/win32 cache database debug echo experimental ldap proxy test dav/main dav/fs dav/lock'
MODULE_DIRS=' aaa filters loggers metadata ssl http generators mappers'
MOD_ACTIONS_LDADD=''
MOD_ALIAS_LDADD=''
MOD_ASIS_LDADD=''
MOD_AUTHNZ_LDAP_LDADD=''
MOD_AUTHN_ALIAS_LDADD=''
MOD_AUTHN_ANON_LDADD=''
MOD_AUTHN_DBD_LDADD=''
MOD_AUTHN_DBM_LDADD=''
MOD_AUTHN_DEFAULT_LDADD=''
MOD_AUTHN_FILE_LDADD=''
MOD_AUTHZ_DBM_LDADD=''
MOD_AUTHZ_DEFAULT_LDADD=''
MOD_AUTHZ_GROUPFILE_LDADD=''
MOD_AUTHZ_HOST_LDADD=''
MOD_AUTHZ_OWNER_LDADD=''
MOD_AUTHZ_USER_LDADD=''
MOD_AUTH_BASIC_LDADD=''
MOD_AUTH_DIGEST_LDADD=''
MOD_AUTOINDEX_LDADD=''
MOD_BUCKETEER_LDADD=''
MOD_CACHE_LDADD=''
MOD_CASE_FILTER_IN_LDADD=''
MOD_CASE_FILTER_LDADD=''
MOD_CERN_META_LDADD=''
MOD_CGID_LDADD=''
MOD_CGI_LDADD=''
MOD_CHARSET_LITE_LDADD=''
MOD_DAV_FS_LDADD=''
MOD_DAV_LDADD=''
MOD_DAV_LOCK_LDADD=''
MOD_DBD_LDADD=''
MOD_DEFLATE_LDADD=''
MOD_DIR_LDADD=''
MOD_DISK_CACHE_LDADD=''
MOD_DUMPIO_LDADD=''
MOD_ECHO_LDADD=''
MOD_ENV_LDADD=''
MOD_EXAMPLE_LDADD=''
MOD_EXPIRES_LDADD=''
MOD_EXT_FILTER_LDADD=''
MOD_FILE_CACHE_LDADD=''
MOD_FILTER_LDADD=''
MOD_HEADERS_LDADD=''
MOD_HTTP_LDADD=''
MOD_IDENT_LDADD=''
MOD_IMAGEMAP_LDADD=''
MOD_INCLUDE_LDADD=''
MOD_INFO_LDADD=''
MOD_ISAPI_LDADD=''
MOD_LDAP_LDADD=''
MOD_LOGIO_LDADD=''
MOD_LOG_CONFIG_LDADD=''
MOD_LOG_FORENSIC_LDADD=''
MOD_MEM_CACHE_LDADD=''
MOD_MIME_LDADD=''
MOD_MIME_MAGIC_LDADD=''
MOD_NEGOTIATION_LDADD=''
MOD_OPTIONAL_FN_EXPORT_LDADD=''
MOD_OPTIONAL_FN_IMPORT_LDADD=''
MOD_OPTIONAL_HOOK_EXPORT_LDADD=''
MOD_OPTIONAL_HOOK_IMPORT_LDADD=''
MOD_PROXY_AJP_LDADD=''
MOD_PROXY_BALANCER_LDADD=''
MOD_PROXY_CONNECT_LDADD=''
MOD_PROXY_FTP_LDADD=''
MOD_PROXY_HTTP_LDADD=''
MOD_PROXY_LDADD=''
MOD_PROXY_SCGI_LDADD=''
MOD_REQTIMEOUT_LDADD=''
MOD_REWRITE_LDADD=''
MOD_SETENVIF_LDADD=''
MOD_SO_LDADD=''
MOD_SPELING_LDADD=''
MOD_SSL_LDADD='$(SSL_LIBS)'
MOD_STATUS_LDADD=''
MOD_SUBSTITUTE_LDADD=''
MOD_SUEXEC_LDADD=''
MOD_UNIQUE_ID_LDADD=''
MOD_USERDIR_LDADD=''
MOD_USERTRACK_LDADD=''
MOD_VERSION_LDADD=''
MOD_VHOST_ALIAS_LDADD=''
MPM_LIB='server/mpm/prefork/libprefork.la'
MPM_NAME='prefork'
MPM_SUBDIR_NAME='prefork'
NONPORTABLE_SUPPORT='checkgid'
NOTEST_CFLAGS=''
NOTEST_CPPFLAGS=''
NOTEST_CXXFLAGS=''
NOTEST_LDFLAGS=''
NOTEST_LIBS=''
OBJEXT='o'
OS='unix'
OS_DIR='unix'
OS_SPECIFIC_VARS=''
PACKAGE_BUGREPORT=''
PACKAGE_NAME=''
PACKAGE_STRING=''
PACKAGE_TARNAME=''
PACKAGE_URL=''
PACKAGE_VERSION=''
PATH_SEPARATOR=':'
PCRE_CONFIG='false'
PICFLAGS=''
PILDFLAGS=''
PKGCONFIG=''
PORT='80'
POST_SHARED_CMDS='echo ""'
PRE_SHARED_CMDS='echo ""'
RANLIB='ranlib'
RM='/usr/bin/rm'
RSYNC='/usr/local/bin/rsync'
SHELL='/bin/bash'
SHLIBPATH_VAR='LD_LIBRARY_PATH'
SHLTCFLAGS='-prefer-pic'
SH_LDFLAGS=''
SH_LIBS=''
SH_LIBTOOL='$(LIBTOOL)'
SSLPORT='443'
SSL_LIBS='-lssl -lcrypto  -luuid -lsendfile -lrt -lsocket -lnsl  -lpthread'
UTIL_LDFLAGS=''
ab_LTFLAGS=''
abs_srcdir='/var/tmp/httpd-2.2.25'
ac_ct_CC='/usr/local/ssl/fips-2.0/bin/fipsld'
ap_make_delimiter=' '
ap_make_include='include'
bindir='${exec_prefix}/bin'
build='sparc-sun-solaris2.10'
build_alias=''
build_cpu='sparc'
build_os='solaris2.10'
build_vendor='sun'
cgidir='${datadir}/cgi-bin'
checkgid_LTFLAGS=''
datadir='${prefix}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE}'
dvidir='${docdir}'
errordir='${datadir}/error'
exec_prefix='${prefix}'
exp_bindir='/usr/local/apache/bin'
exp_cgidir='/usr/local/apache/cgi-bin'
exp_datadir='/usr/local/apache'
exp_errordir='/usr/local/apache/error'
exp_exec_prefix='/usr/local/apache'
exp_htdocsdir='/usr/local/apache/htdocs'
exp_iconsdir='/usr/local/apache/icons'
exp_includedir='/usr/local/apache/include'
exp_installbuilddir='/usr/local/apache/build'
exp_libdir='/usr/local/apache/lib'
exp_libexecdir='/usr/local/apache/modules'
exp_localstatedir='/usr/local/apache'
exp_logfiledir='/usr/local/apache/logs'
exp_mandir='/usr/local/apache/man'
exp_manualdir='/usr/local/apache/manual'
exp_proxycachedir='/usr/local/apache/proxy'
exp_runtimedir='/usr/local/apache/logs'
exp_sbindir='/usr/local/apache/bin'
exp_sysconfdir='/usr/local/apache/conf'
host='sparc-sun-solaris2.10'
host_alias=''
host_cpu='sparc'
host_os='solaris2.10'
host_vendor='sun'
htcacheclean_LTFLAGS=''
htdbm_LTFLAGS=''
htdigest_LTFLAGS=''
htdocsdir='${datadir}/htdocs'
htmldir='${docdir}'
htpasswd_LTFLAGS=''
httxt2dbm_LTFLAGS=''
iconsdir='${datadir}/icons'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
installbuilddir='${datadir}/build'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/modules'
localedir='${datarootdir}/locale'
localstatedir='${prefix}'
logfiledir='${localstatedir}/logs'
logresolve_LTFLAGS=''
mandir='${prefix}/man'
manualdir='${datadir}/manual'
nonssl_listen_stmt_1=''
nonssl_listen_stmt_2=''
oldincludedir='/usr/include'
other_targets=''
pdfdir='${docdir}'
perlbin='/usr/local/bin/perl'
prefix='/usr/local/apache'
progname='httpd'
program_transform_name='s,x,x,'
proxycachedir='${localstatedir}/proxy'
psdir='${docdir}'
rel_bindir='bin'
rel_cgidir='cgi-bin'
rel_datadir=''
rel_errordir='error'
rel_exec_prefix=''
rel_htdocsdir='htdocs'
rel_iconsdir='icons'
rel_includedir='include'
rel_installbuilddir='build'
rel_libdir='lib'
rel_libexecdir='modules'
rel_localstatedir=''
rel_logfiledir='logs'
rel_mandir='man'
rel_manualdir='manual'
rel_proxycachedir='proxy'
rel_runtimedir='logs'
rel_sbindir='bin'
rel_sysconfdir='conf'
rotatelogs_LTFLAGS=''
runtimedir='${localstatedir}/logs'
sbindir='${exec_prefix}/bin'
shared_build=''
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/conf'
target='sparc-sun-solaris2.10'
target_alias=''
target_cpu='sparc'
target_os='solaris2.10'
target_vendor='sun'

## ----------- ##
## 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 __EXTENSIONS__ 1
#define _ALL_SOURCE 1
#define _GNU_SOURCE 1
#define _POSIX_PTHREAD_SEMANTICS 1
#define _TANDEM_SOURCE 1
#define STDC_HEADERS 1
#define HAVE_STRING_H 1
#define HAVE_LIMITS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_SYS_SOCKET_H 1
#define HAVE_PWD_H 1
#define HAVE_GRP_H 1
#define HAVE_STRINGS_H 1
#define HAVE_SYS_PROCESSOR_H 1
#define HAVE_SYS_SEM_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_GETPWNAM 1
#define HAVE_GETGRNAM 1
#define HAVE_INITGROUPS 1
#define HAVE_GETPGID 1
#define AP_ENABLE_V4_MAPPED 1
#define HAVE_OPENSSL_OPENSSLV_H 1
#define HAVE_OPENSSL_SSL_H 1
#define HAVE_OPENSSL_ENGINE_H 1
#define HAVE_SSLEAY_VERSION 1
#define HAVE_SSL_CTX_NEW 1
#define HAVE_ENGINE_INIT 1
#define HAVE_ENGINE_LOAD_BUILTIN_ENGINES 1
#define HAVE_OPENSSL 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SEM_H 1
#define HAVE_SYS_IPC_H 1
#define HAVE_SETSID 1
#define HAVE_KILLPG 1
#define HAVE_UNISTD_H 1
#define HAVE_SYSLOG 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_TIMES 1
#define AP_USING_AUTOCONF 1
#define SINGLE_LISTEN_UNSERIALIZED_ACCEPT 1
#define AP_NONBLOCK_WHEN_MULTI_LISTEN 1
#define HTTPD_ROOT "/usr/local/apache"
#define SERVER_CONFIG_FILE "conf/httpd.conf"
#define AP_TYPES_CONFIG_FILE "conf/mime.types"
#define APACHE_MPM_DIR "server/mpm/prefork"

configure: exit 0
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx
For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx

[Index of Archives]     [Open SSH Users]     [Linux ACPI]     [Linux Kernel]     [Linux Laptop]     [Kernel Newbies]     [Security]     [Netfilter]     [Bugtraq]     [Squid]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Samba]     [Video 4 Linux]     [Device Mapper]

  Powered by Linux