You are viewing a plain text version of this content. The canonical link for it is here.
Posted to bugs@httpd.apache.org by bu...@apache.org on 2005/04/29 21:02:44 UTC

DO NOT REPLY [Bug 34683] New: - Build failure ... undefined reference to 'apr_random_after_fork'

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=34683>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=34683

           Summary: Build failure ... undefined reference to
                    'apr_random_after_fork'
           Product: Apache httpd-2.0
           Version: 2.0.54
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Build
        AssignedTo: bugs@httpd.apache.org
        ReportedBy: michaels@tasconline.com


I am trying to build httpd-2.0.54 with LDAP support (openldap-2.2.24).  Below is
portion of the output I receive from make:

/var/www/build/libtool --silent --mode=compile gcc  -g -O2 -pthread    -DLINUX=2
-D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE
-DAP_HAVE_DESIGNATED_INITIALIZER   -I/usr/include/apr
-I/usr/local/BerkeleyDB.4.2/include -I. -I/usr/local/httpd-2.0.54/os/unix
-I/usr/local/httpd-2.0.54/server/mpm/prefork
-I/usr/local/httpd-2.0.54/modules/http -I/usr/local/httpd-2.0.54/modules/filters
-I/usr/local/httpd-2.0.54/modules/proxy -I/usr/local/httpd-2.0.54/include
-I/usr/local/httpd-2.0.54/modules/generators -I/usr/local/ssl/include/openssl
-I/usr/local/ssl/include -I/usr/local/httpd-2.0.54/modules/dav/main
-prefer-non-pic -static -c modules.c && touch modules.lo
/var/www/build/libtool --silent --mode=link gcc  -g -O2 -pthread    -DLINUX=2
-D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE
-DAP_HAVE_DESIGNATED_INITIALIZER   -I/usr/include/apr
-I/usr/local/BerkeleyDB.4.2/include -I. -I/usr/local/httpd-2.0.54/os/unix
-I/usr/local/httpd-2.0.54/server/mpm/prefork
-I/usr/local/httpd-2.0.54/modules/http -I/usr/local/httpd-2.0.54/modules/filters
-I/usr/local/httpd-2.0.54/modules/proxy -I/usr/local/httpd-2.0.54/include
-I/usr/local/httpd-2.0.54/modules/generators -I/usr/local/ssl/include/openssl
-I/usr/local/ssl/include -I/usr/local/httpd-2.0.54/modules/dav/main
-export-dynamic -L/usr/local/BerkeleyDB.4.2/lib -L/usr/lib -L/usr/local/ssl/lib
  -o httpd  modules.lo  modules/aaa/mod_access.la modules/aaa/mod_auth.la
modules/filters/mod_include.la modules/loggers/mod_log_config.la
modules/metadata/mod_env.la modules/metadata/mod_setenvif.la
modules/http/mod_http.la modules/http/mod_mime.la
modules/generators/mod_status.la modules/generators/mod_autoindex.la
modules/generators/mod_asis.la modules/generators/mod_cgi.la
modules/mappers/mod_negotiation.la modules/mappers/mod_dir.la
modules/mappers/mod_imap.la modules/mappers/mod_actions.la
modules/mappers/mod_userdir.la modules/mappers/mod_so.la
server/mpm/prefork/libprefork.la server/libmain.la os/unix/libos.la -lssl
-lcrypto /usr/local/httpd-2.0.54/srclib/pcre/libpcre.la /usr/lib/libaprutil.la
-ldb-4.2 -lexpat /usr/lib/libapr.la -lrt -lm -lcrypt -lnsl -lpthread -ldl 
server/.libs/libmain.a(exports.o)(.data+0x96c): undefined reference to
`apr_random_after_fork'
server/.libs/libmain.a(exports.o)(.data+0x970): undefined reference to
`apr_random_insecure_ready'
server/.libs/libmain.a(exports.o)(.data+0x974): undefined reference to
`apr_random_secure_ready'
server/.libs/libmain.a(exports.o)(.data+0x978): undefined reference to
`apr_random_barrier'
server/.libs/libmain.a(exports.o)(.data+0x97c): undefined reference to
`apr_random_secure_bytes'
server/.libs/libmain.a(exports.o)(.data+0x980): undefined reference to
`apr_random_insecure_bytes'
server/.libs/libmain.a(exports.o)(.data+0x984): undefined reference to
`apr_random_add_entropy'
server/.libs/libmain.a(exports.o)(.data+0x988): undefined reference to
`apr_random_standard_new'
server/.libs/libmain.a(exports.o)(.data+0x98c): undefined reference to
`apr_random_init'
server/.libs/libmain.a(exports.o)(.data+0x990): undefined reference to
`apr_crypto_sha256_new'
collect2: ld returned 1 exit status
make[1]: *** [httpd] Error 1
make[1]: Leaving directory `/usr/local/httpd-2.0.54'
make: *** [all-recursive] Error 1

Build steps that I took:

1) Configured apr with:

cd srclib/apr
./configure --enable-layout=RedHat

2) Make and install apr with:

make
make install

3) Configure apr-util with:

cd srclib/apr-util
.configure --enable-layout=RedHat --with-apr=../apr --with-ssl=/usr/local/ssl
--with-ldap-lib=/usr/lib --with-ldap-include=/usr/local/openldap-2.2.24/include
--with-berkeley-db=/usr/local/BerkeleyDB.4.2

4) Make and install apr-util with:

make 
install

5) Configure httpd with:

./configure --enable-layout=RedHat --enable-mods-shared="rewrite alias worker
dav dav-fs suexec info ssl headers usertrack expires mime-magic logio auth_ldap
mem-cache case-filter case-filter-in" --with-ssl=/usr/local/ssl
--with-ldap-lib=/usr/lib --with-ldap-include=/usr/local/openldap-2.2.24/include
--with-berkeley-db=/usr/local/BerkeleyDB.4.2 --with-apr=/usr/bin/apr-config
--with-apr-util=/usr/bin/apu-config

6) Attempt to make with:

make

Below is my config.log from the httpd configure above:

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

  $ ./configure --enable-layout=RedHat --enable-mods-shared=rewrite alias worker
dav dav-fs suexec info ssl headers usertrack expires mime-magic logio auth_ldap
mem-cache case-filter case-filter-in --with-ssl=/usr/local/ssl
--with-ldap-lib=/usr/lib --with-ldap-include=/usr/local/openldap-2.2.24/include
--with-berkeley-db=/usr/local/BerkeleyDB.4.2 --with-apr=/usr/bin/apr-config
--with-apr-util=/usr/bin/apu-config

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

hostname = tasc-lx-srv-001.tasconline.com
uname -m = i686
uname -r = 2.6.9-5.ELsmp
uname -s = Linux
uname -v = #1 SMP Wed Jan 5 19:30:39 EST 2005

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

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

PATH: /usr/kerberos/sbin
PATH: /usr/kerberos/bin
PATH: /usr/local/sbin
PATH: /usr/local/bin
PATH: /sbin
PATH: /bin
PATH: /usr/sbin
PATH: /usr/bin
PATH: /usr/X11R6/bin
PATH: /root/bin


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

configure:1618: checking for chosen layout
configure:1620: result: RedHat
configure:2413: checking for working mkdir -p
configure:2429: result: yes
configure:2446: checking build system type
configure:2464: result: i686-pc-linux-gnu
configure:2472: checking host system type
configure:2486: result: i686-pc-linux-gnu
configure:2494: checking target system type
configure:2508: result: i686-pc-linux-gnu
configure:2537: checking for APR
configure:2597: result: yes
configure:2837: checking for APR-util
configure:2898: result: yes
configure:3124: checking for gcc
configure:3150: result: gcc
configure:3394: checking for C compiler version
configure:3397: gcc --version </dev/null >&5
gcc (GCC) 3.4.3 20041212 (Red Hat 3.4.3-9.EL4)
Copyright (C) 2004 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:3400: $? = 0
configure:3402: gcc -v </dev/null >&5
Reading specs from /usr/lib/gcc/i386-redhat-linux/3.4.3/specs
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man
--infodir=/usr/share/info --enable-shared --enable-threads=posix
--disable-checking --with-system-zlib --enable-__cxa_atexit
--disable-libunwind-exceptions --enable-java-awt=gtk --host=i386-redhat-linux
Thread model: posix
gcc version 3.4.3 20041212 (Red Hat 3.4.3-9.EL4)
configure:3405: $? = 0
configure:3407: gcc -V </dev/null >&5
gcc: `-V' option must have argument
configure:3410: $? = 1
configure:3433: checking for C compiler default output file name
configure:3436: gcc  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500
-D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE   -L/usr/local/BerkeleyDB.4.2/lib
-L/usr/lib conftest.c  >&5
configure:3439: $? = 0
configure:3485: result: a.out
configure:3490: checking whether the C compiler works
configure:3496: ./a.out
configure:3499: $? = 0
configure:3516: result: yes
configure:3523: checking whether we are cross compiling
configure:3525: result: no
configure:3528: checking for suffix of executables
configure:3530: gcc -o conftest  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE  
-L/usr/local/BerkeleyDB.4.2/lib -L/usr/lib conftest.c  >&5
configure:3533: $? = 0
configure:3558: result:
configure:3564: checking for suffix of object files
configure:3585: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
configure:3588: $? = 0
configure:3610: result: o
configure:3614: checking whether we are using the GNU C compiler
configure:3638: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
configure:3644: $? = 0
configure:3647: test -z                          || test ! -s conftest.err
configure:3650: $? = 0
configure:3653: test -s conftest.o
configure:3656: $? = 0
configure:3669: result: yes
configure:3675: checking whether gcc accepts -g
configure:3696: gcc -c -g  -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500
-D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
configure:3702: $? = 0
configure:3705: test -z                          || test ! -s conftest.err
configure:3708: $? = 0
configure:3711: test -s conftest.o
configure:3714: $? = 0
configure:3725: result: yes
configure:3742: checking for gcc option to accept ANSI C
configure:3812: gcc  -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
configure:3818: $? = 0
configure:3821: test -z                          || test ! -s conftest.err
configure:3824: $? = 0
configure:3827: test -s conftest.o
configure:3830: $? = 0
configure:3848: result: none needed
configure:3866: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
conftest.c:2: error: syntax error before "me"
configure:3872: $? = 1
configure: failed program was:
| #ifndef __cplusplus
|   choke me
| #endif
configure:4007: checking how to run the C preprocessor
configure:4125: result: gcc -E
configure:4149: gcc -E  -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE
-D_SVID_SOURCE -D_GNU_SOURCE conftest.c
configure:4155: $? = 0
configure:4187: gcc -E  -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE
-D_SVID_SOURCE -D_GNU_SOURCE conftest.c
conftest.c:9:28: ac_nonexistent.h: No such file or directory
configure:4193: $? = 1
configure: failed program was:
| /* confdefs.h.  */
|
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:4573: checking for rm
configure:4591: found /bin/rm
configure:4603: result: /bin/rm
configure:4614: checking for gawk
configure:4630: found /bin/gawk
configure:4640: result: gawk
configure:4663: checking for a BSD-compatible install
configure:4718: result: /usr/bin/install -c
configure:4729: checking whether ln -s works
configure:4733: result: yes
configure:4781: checking for ranlib
configure:4797: found /usr/bin/ranlib
configure:4808: result: ranlib
configure:4823: checking for egrep
configure:4833: result: grep -E
configure:4839: checking for AIX
configure:4861: result: no
configure:4867: checking for library containing strerror
configure:4897: gcc -o conftest  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE  
-L/usr/local/BerkeleyDB.4.2/lib -L/usr/lib conftest.c  >&5
configure:4903: $? = 0
configure:4906: test -z                          || test ! -s conftest.err
configure:4909: $? = 0
configure:4912: test -s conftest
configure:4915: $? = 0
configure:4984: result: none required
configure:4991: checking for ANSI C header files
configure:5016: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
configure:5022: $? = 0
configure:5025: test -z                          || test ! -s conftest.err
configure:5028: $? = 0
configure:5031: test -s conftest.o
configure:5034: $? = 0
configure:5123: gcc -o conftest  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE  
-L/usr/local/BerkeleyDB.4.2/lib -L/usr/lib conftest.c  >&5
configure:5126: $? = 0
configure:5128: ./conftest
configure:5131: $? = 0
configure:5146: result: yes
configure:5170: checking for sys/types.h
configure:5186: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
configure:5192: $? = 0
configure:5195: test -z                          || test ! -s conftest.err
configure:5198: $? = 0
configure:5201: test -s conftest.o
configure:5204: $? = 0
configure:5215: result: yes
configure:5170: checking for sys/stat.h
configure:5186: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
configure:5192: $? = 0
configure:5195: test -z                          || test ! -s conftest.err
configure:5198: $? = 0
configure:5201: test -s conftest.o
configure:5204: $? = 0
configure:5215: result: yes
configure:5170: checking for stdlib.h
configure:5186: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
configure:5192: $? = 0
configure:5195: test -z                          || test ! -s conftest.err
configure:5198: $? = 0
configure:5201: test -s conftest.o
configure:5204: $? = 0
configure:5215: result: yes
configure:5170: checking for string.h
configure:5186: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
configure:5192: $? = 0
configure:5195: test -z                          || test ! -s conftest.err
configure:5198: $? = 0
configure:5201: test -s conftest.o
configure:5204: $? = 0
configure:5215: result: yes
configure:5170: checking for memory.h
configure:5186: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
configure:5192: $? = 0
configure:5195: test -z                          || test ! -s conftest.err
configure:5198: $? = 0
configure:5201: test -s conftest.o
configure:5204: $? = 0
configure:5215: result: yes
configure:5170: checking for strings.h
configure:5186: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
configure:5192: $? = 0
configure:5195: test -z                          || test ! -s conftest.err
configure:5198: $? = 0
configure:5201: test -s conftest.o
configure:5204: $? = 0
configure:5215: result: yes
configure:5170: checking for inttypes.h
configure:5186: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
configure:5192: $? = 0
configure:5195: test -z
configure:5198: $? = 0
configure:5201: test -s conftest.o
configure:5204: $? = 0
configure:5215: result: yes
configure:5170: checking for stdint.h
configure:5186: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
configure:5192: $? = 0
configure:5195: test -z                          || test ! -s conftest.err
configure:5198: $? = 0
configure:5201: test -s conftest.o
configure:5204: $? = 0
configure:5215: result: yes
configure:5170: checking for unistd.h
configure:5186: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
configure:5192: $? = 0
configure:5195: test -z                          || test ! -s conftest.err
configure:5198: $? = 0
configure:5201: test -s conftest.o
configure:5204: $? = 0
configure:5215: result: yes
configure:5237: checking minix/config.h usability
configure:5249: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
conftest.c:53:26: minix/config.h: No such file or directory
configure:5255: $? = 1
configure: failed program was:
| /* confdefs.h.  */
|
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #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>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <minix/config.h>
configure:5277: result: no
configure:5281: checking minix/config.h presence
configure:5291: gcc -E  -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE
-D_SVID_SOURCE -D_GNU_SOURCE conftest.c
conftest.c:19:26: minix/config.h: No such file or directory
configure:5297: $? = 1
configure: failed program was:
| /* confdefs.h.  */
|
| ...
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <minix/config.h>
configure:5317: result: no
configure:5352: checking for minix/config.h
configure:5359: result: no
configure:5393: checking for ANSI C header files
configure:5548: result: yes
configure:5583: checking for string.h
configure:5588: result: yes
configure:5592: checking limits.h usability
configure:5604: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
configure:5610: $? = 0
configure:5613: test -z                          || test ! -s conftest.err
configure:5616: $? = 0
configure:5619: test -s conftest.o
configure:5622: $? = 0
configure:5632: result: yes
configure:5636: checking limits.h presence
configure:5646: gcc -E  -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE
configure:5652: $? = 0
configure:5672: result: yes
configure:5707: checking for limits.h
configure:5714: result: yes
configure:5583: checking for unistd.h
configure:5588: result: yes
configure:5592: checking sys/socket.h usability
configure:5604: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
configure:5610: $? = 0
configure:5613: test -z                          || test ! -s conftest.err
configure:5616: $? = 0
configure:5619: test -s conftest.o
configure:5622: $? = 0
configure:5632: result: yes
configure:5636: checking sys/socket.h presence
configure:5646: gcc -E  -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE
-D_SVID_SOURCE -D_GNU_SOURCE conftest.c
configure:5652: $? = 0
configure:5672: result: yes
configure:5707: checking for sys/socket.h
configure:5714: result: yes
configure:5592: checking pwd.h usability
configure:5604: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
configure:5610: $? = 0
configure:5613: test -z                          || test ! -s conftest.err
configure:5616: $? = 0
configure:5619: test -s conftest.o
configure:5622: $? = 0
configure:5632: result: yes
configure:5636: checking pwd.h presence
configure:5646: gcc -E  -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE
-D_SVID_SOURCE -D_GNU_SOURCE conftest.c
configure:5652: $? = 0
configure:5672: result: yes
configure:5707: checking for pwd.h
configure:5714: result: yes
configure:5592: checking grp.h usability
configure:5604: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
configure:5610: $? = 0
configure:5613: test -z                          || test ! -s conftest.err
configure:5616: $? = 0
configure:5619: test -s conftest.o
configure:5622: $? = 0
configure:5632: result: yes
configure:5636: checking grp.h presence
configure:5646: gcc -E  -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE
-D_SVID_SOURCE -D_GNU_SOURCE conftest.c
configure:5652: $? = 0
configure:5672: result: yes
configure:5707: checking for grp.h
configure:5714: result: yes
configure:5583: checking for strings.h
configure:5588: result: yes
configure:5592: checking sys/prctl.h usability
configure:5604: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
configure:5610: $? = 0
configure:5613: test -z                          || test ! -s conftest.err
configure:5616: $? = 0
configure:5619: test -s conftest.o
configure:5622: $? = 0
configure:5632: result: yes
configure:5636: checking sys/prctl.h presence
configure:5646: gcc -E  -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE
-D_SVID_SOURCE -D_GNU_SOURCE conftest.c-D_SVID_SOURCE -D_GNU_SOURCE conftest.c
configure:5652: $? = 0
configure:5672: result: yes
configure:5707: checking for sys/prctl.h
configure:5714: result: yes
configure:5592: checking sys/processor.h usability
configure:5604: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
conftest.c:62:27: sys/processor.h: No such file or directory
configure:5610: $? = 1
configure: failed program was:
| /* confdefs.h.  */
|
| ...
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <sys/processor.h>
configure:5632: result: no
configure:5636: checking sys/processor.h presence
configure:5646: gcc -E  -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE
-D_SVID_SOURCE -D_GNU_SOURCE conftest.c
conftest.c:28:27: sys/processor.h: No such file or directory
configure:5652: $? = 1
configure: failed program was:
| /* confdefs.h.  */
|
| ...
| #define HAVE_STRINGS_H 1
| #define HAVE_SYS_PRCTL_H 1
| /* end confdefs.h.  */
| #include <sys/processor.h>
configure:5672: result: no
configure:5707: checking for sys/processor.h
configure:5714: result: no
configure:5592: checking sys/sem.h usability
configure:5604: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
configure:5610: $? = 0
configure:5613: test -z                          || test ! -s conftest.err
configure:5616: $? = 0
configure:5619: test -s conftest.o
configure:5622: $? = 0
configure:5632: result: yes
configure:5636: checking sys/sem.h presence
configure:5646: gcc -E  -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE
-D_SVID_SOURCE -D_GNU_SOURCE conftest.c
configure:5652: $? = 0
configure:5672: result: yes
configure:5707: checking for sys/sem.h
configure:5714: result: yes
configure:5727: checking for sys/wait.h that is POSIX.1 compatible
configure:5758: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
configure:5764: $? = 0
configure:5767: test -z                          || test ! -s conftest.err
configure:5770: $? = 0
configure:5773: test -s conftest.o
configure:5776: $? = 0
configure:5787: result: yes
configure:5799: checking for an ANSI C-conforming const
configure:5866: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
configure:5872: $? = 0
configure:5875: test -z                          || test ! -s conftest.err
configure:5878: $? = 0
configure:5881: test -s conftest.o
configure:5884: $? = 0
configure:5895: result: yes
configure:5947: checking for getpwnam
configure:6004: gcc -o conftest  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE  
-L/usr/local/BerkeleyDB.4.2/lib -L/usr/lib conftest.c  >&5
configure:6010: $? = 0
configure:6013: test -z                          || test ! -s conftest.err
configure:6016: $? = 0
configure:6019: test -s conftest
configure:6022: $? = 0
configure:6034: result: yes
configure:5947: checking for getgrnam
configure:6004: gcc -o conftest  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE  
-L/usr/local/BerkeleyDB.4.2/lib -L/usr/lib conftest.c  >&5
configure:6010: $? = 0
configure:6013: test -z                          || test ! -s conftest.err
configure:6016: $? = 0
configure:6019: test -s conftest
configure:6022: $? = 0
configure:6034: result: yes
configure:5947: checking for initgroups
configure:6004: gcc -o conftest  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE  
-L/usr/local/BerkeleyDB.4.2/lib -L/usr/lib conftest.c  >&5
configure:6010: $? = 0
configure:6013: test -z                          || test ! -s conftest.err
configure:6016: $? = 0
configure:6019: test -s conftest
configure:6022: $? = 0
configure:6034: result: yes
configure:5947: checking for bindprocessor
configure:6004: gcc -o conftest  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE  
-L/usr/local/BerkeleyDB.4.2/lib -L/usr/lib conftest.c  >&5
/tmp/ccq5IFsi.o(.text+0x14): In function `main':
/usr/local/httpd-2.0.54/conftest.c:73: undefined reference to `bindprocessor'
/tmp/ccq5IFsi.o(.data+0x0): undefined reference to `bindprocessor'
collect2: ld returned 1 exit status
configure:6010: $? = 1
configure: failed program was:
| /* confdefs.h.  */
|
| #define PACKAGE_NAME ""
| ...
| main ()
| {
| return f != bindprocessor;
|   ;
|   return 0;
| }
configure:6034: result: no
configure:5947: checking for prctl
configure:6004: gcc -o conftest  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE  
-L/usr/local/BerkeleyDB.4.2/lib -L/usr/lib conftest.c  >&5
configure:6010: $? = 0
configure:6013: test -z                          || test ! -s conftest.err
configure:6016: $? = 0
configure:6019: test -s conftest
configure:6022: $? = 0
configure:6034: result: yes
configure:5947: checking for timegm
configure:6004: gcc -o conftest  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE  
-L/usr/local/BerkeleyDB.4.2/lib -L/usr/lib conftest.c  >&5
configure:6010: $? = 0
configure:6013: test -z                          || test ! -s conftest.err
configure:6016: $? = 0
configure:6019: test -s conftest
configure:6022: $? = 0
configure:6034: result: yes
configure:6045: checking for tm_gmtoff in struct tm
configure:6067: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
configure:6073: $? = 0
configure:6076: test -z                          || test ! -s conftest.err
configure:6079: $? = 0
configure:6082: test -s conftest.o
configure:6085: $? = 0
configure:6096: result: yes
configure:6285: checking whether to enable mod_access
configure:6323: result: yes (default)
configure:6371: checking whether to enable mod_auth
configure:6409: result: yes (default)
configure:6457: checking whether to enable mod_auth_anon
configure:6495: result: no
configure:6543: checking whether to enable mod_auth_dbm
configure:6581: result: no
configure:6630: checking whether to enable mod_auth_digest
configure:6713: result: no
configure:6809: checking whether to enable mod_isapi
configure:6847: result: no
configure:6943: checking whether to enable mod_file_cache
configure:6981: result: no
configure:7077: checking whether to enable mod_echo
configure:7115: result: no
configure:7300: checking whether to enable mod_charset_lite
configure:7338: result: no
configure:7390: checking whether to enable mod_cache
configure:7428: result: no
configure:7476: checking whether to enable mod_disk_cache
configure:7514: result: no
configure:7562: checking whether to enable mod_mem_cache
configure:7600: result: shared
configure:7648: checking whether to enable mod_example
configure:7686: result: no
configure:7734: checking whether to enable mod_case_filter
configure:7772: result: shared
configure:7820: checking whether to enable mod_case_filter_in
configure:7858: result: shared
configure:7906: checking whether to enable mod_dumpio
configure:7944: result: no
configure:7994: checking whether to enable mod_ldap
configure:8032: result: no
configure:8082: checking whether to enable mod_auth_ldap
configure:8120: result: shared
configure:8194: checking whether to enable mod_ext_filter
configure:8232: result: no
configure:8280: checking whether to enable mod_include
configure:8318: result: yes (default)
configure:8389: checking whether to enable mod_deflate
configure:8775: result: no
configure:8849: checking whether to enable mod_log_config
configure:8887: result: yes (default)
configure:8936: checking whether to enable mod_log_forensic
configure:8974: result: no
configure:9048: checking whether to enable mod_logio
configure:9086: result: shared
configure:9160: checking whether to enable mod_env
configure:9198: result: yes (default)
configure:9246: checking whether to enable mod_mime_magic
configure:9284: result: shared
configure:9332: checking whether to enable mod_cern_meta
configure:9370: result: no
configure:9418: checking whether to enable mod_expires
configure:9456: result: shared
configure:9504: checking whether to enable mod_headers
configure:9542: result: shared
configure:9591: checking whether to enable mod_usertrack
configure:9627: result: checking dependencies
configure:9644: checking sys/times.h usability
configure:9656: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
configure:9662: $? = 0
configure:9665: test -z                          || test ! -s conftest.err
configure:9668: $? = 0
configure:9671: test -s conftest.o
configure:9674: $? = 0
configure:9684: result: yes
configure:9688: checking sys/times.h presence
configure:9698: gcc -E  -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE
-D_SVID_SOURCE -D_GNU_SOURCE conftest.c
configure:9704: $? = 0
configure:9724: result: yes
configure:9759: checking for sys/times.h
configure:9766: result: yes
configure:9783: checking for times
configure:9840: gcc -o conftest  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE  
-L/usr/local/BerkeleyDB.4.2/lib -L/usr/lib conftest.c  >&5
configure:9846: $? = 0
configure:9849: test -z                          || test ! -s conftest.err
configure:9852: $? = 0
configure:9855: test -s conftest
configure:9858: $? = 0
configure:9870: result: yes
configure:9881: checking whether to enable mod_usertrack
configure:9893: result: shared
configure:9942: checking whether to enable mod_unique_id
configure:9980: result: no
configure:10028: checking whether to enable mod_setenvif
configure:10066: result: yes (default)
configure:10170: checking whether to enable mod_proxy
configure:10208: result: no
configure:10271: checking whether to enable mod_proxy_connect
configure:10309: result: no
configure:10357: checking whether to enable mod_proxy_ftp
configure:10395: result: no
configure:10443: checking whether to enable mod_proxy_http
configure:10481: result: no
configure:10555: checking whether to enable mod_ssl
configure:10591: result: checking dependencies
configure:10596: checking for SSL/TLS toolkit base
configure:10647: result: /usr/local/ssl
configure:10650: checking for SSL/TLS toolkit version
configure:10652: result: OpenSSL 0.9.7g 11 Apr 2005
configure:10670: checking for SSL/TLS toolkit includes
configure:10688: result: /usr/local/ssl/include
configure:10691: checking for SSL/TLS toolkit libraries
configure:10706: result: /usr/local/ssl/lib
configure:10874: checking for SSL_set_state
configure:10931: gcc -o conftest  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE  
-L/usr/local/BerkeleyDB.4.2/lib -L/usr/lib -L/usr/local/ssl/lib conftest.c -lssl
-lcrypto >&5
/tmp/ccEx6QLE.o(.text+0x14): In function `main':
/usr/local/httpd-2.0.54/conftest.c:79: undefined reference to `SSL_set_state'
/tmp/ccEx6QLE.o(.data+0x0): undefined reference to `SSL_set_state'
collect2: ld returned 1 exit status
configure:10937: $? = 1
configure: failed program was:
| /* confdefs.h.  */
|
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #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 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_PRCTL_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_PRCTL 1
| #define HAVE_TIMEGM 1
| #define HAVE_GMTOFF 1
| #define AP_ENABLE_V4_MAPPED 1
| #define HAVE_SYS_TIMES_H 1
| #define HAVE_TIMES 1
| /* end confdefs.h.  */
| /* Define SSL_set_state to an innocuous variant, in case <limits.h> declares
SSL_set_state.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define SSL_set_state innocuous_SSL_set_state
|
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char SSL_set_state (); 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_state
|
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char SSL_set_state ();
| /* 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_state) || defined (__stub___SSL_set_state)
| choke me
| #else
| char (*f) () = SSL_set_state;
| #endif
| #ifdef __cplusplus
| }
| #endif
|
| int
| main ()
| {
| return f != SSL_set_state;
|   ;
|   return 0;
| }
configure:10961: result: no
configure:10975: checking for SSL_set_cert_store
configure:11032: gcc -o conftest  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE  
-L/usr/local/BerkeleyDB.4.2/lib -L/usr/lib -L/usr/local/ssl/lib conftest.c -lssl
-lcrypto >&5
/tmp/ccK4J7YW.o(.text+0x14): In function `main':
/usr/local/httpd-2.0.54/conftest.c:79: undefined reference to `SSL_set_cert_store'
/tmp/ccK4J7YW.o(.data+0x0): undefined reference to `SSL_set_cert_store'
collect2: ld returned 1 exit status
configure:11038: $? = 1
configure: failed program was:
| /* confdefs.h.  */
|
| #define PACKAGE_NAME ""
| ...
| /* 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
| #else
| char (*f) () = SSL_set_cert_store;
| #endif
| #ifdef __cplusplus
| }
| #endif
|
| int
| main ()
| {
| return f != SSL_set_cert_store;
|   ;
|   return 0;
| }
configure:11062: result: no
configure:11073: checking whether to enable mod_ssl
configure:11085: result: shared
configure:11159: checking whether to enable mod_optional_hook_export
configure:11197: result: no
configure:11245: checking whether to enable mod_optional_hook_import
configure:11283: result: no
configure:11331: checking whether to enable mod_optional_fn_import
configure:11369: result: no
configure:11417: checking whether to enable mod_optional_fn_export
configure:11455: result: no
configure:11503: checking whether to enable mod_bucketeer
configure:11541: result: no
configure:11627: checking for target platform
configure:11652: result: unix
configure:11684: checking for rlim_t
configure:11710: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
configure:11716: $? = 0
configure:11719: test -z                         || test ! -s conftest.err
configure:11722: $? = 0
configure:11725: test -s conftest.o
configure:11728: $? = 0
configure:11743: result: yes
configure:11771: checking sys/time.h usability
configure:11783: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
configure:11789: $? = 0
configure:11792: test -z                         || test ! -s conftest.err
configure:11795: $? = 0
configure:11798: test -s conftest.o
configure:11801: $? = 0
configure:11811: result: yes
configure:11815: checking sys/time.h presence
configure:11825: gcc -E  -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500
-D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c
configure:11831: $? = 0
configure:11851: result: yes
configure:11886: checking for sys/time.h
configure:11893: result: yes
configure:11771: checking sys/resource.h usability
configure:11783: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
configure:11789: $? = 0
configure:11792: test -z                         || test ! -s conftest.err
configure:11795: $? = 0
configure:11798: test -s conftest.o
configure:11801: $? = 0
configure:11811: result: yes
configure:11815: checking sys/resource.h presence
configure:11825: gcc -E  -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500
-D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c
configure:11831: $? = 0
configure:11851: result: yes
configure:11886: checking for sys/resource.h
configure:11893: result: yes
configure:11762: checking for sys/sem.h
configure:11767: result: yes
configure:11771: checking sys/ipc.h usability
configure:11783: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
configure:11789: $? = 0
configure:11792: test -z                         || test ! -s conftest.err
configure:11795: $? = 0
configure:11798: test -s conftest.o
configure:11801: $? = 0
configure:11811: result: yes
configure:11815: checking sys/ipc.h presence
configure:11825: gcc -E  -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500
-D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c
configure:11831: $? = 0
configure:11851: result: yes
configure:11886: checking for sys/ipc.h
configure:11893: result: yes
configure:11912: checking for setsid
configure:11969: gcc -o conftest  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE  
-L/usr/local/BerkeleyDB.4.2/lib -L/usr/lib -L/usr/local/ssl/lib conftest.c -lssl
-lcrypto >&5
configure:11975: $? = 0
configure:11978: test -z                         || test ! -s conftest.err
configure:11981: $? = 0
configure:11984: test -s conftest
configure:11987: $? = 0
configure:11999: result: yes
configure:11912: checking for killpg
configure:11969: gcc -o conftest  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE  
-L/usr/local/BerkeleyDB.4.2/lib -L/usr/lib -L/usr/local/ssl/lib conftest.c -lssl
-lcrypto >&5
configure:11975: $? = 0
configure:11978: test -z                         || test ! -s conftest.err
configure:11981: $? = 0
configure:11984: test -s conftest
configure:11987: $? = 0
configure:11999: result: yes
configure:12028: checking bstring.h usability
configure:12040: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
conftest.c:79:21: bstring.h: No such file or directory
configure:12046: $? = 1
configure: failed program was:
| /* confdefs.h.  */
|
| ...
| #endif
| #include <bstring.h>
configure:12068: result: no
configure:12072: checking bstring.h presence
configure:12082: gcc -E  -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500
-D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c
conftest.c:45:21: bstring.h: No such file or directory
configure:12088: $? = 1
configure: failed program was:
| /* confdefs.h.  */
|
|...
| /* end confdefs.h.  */
| #include <bstring.h>
configure:12108: result: no
configure:12143: checking for bstring.h
configure:12150: result: no
configure:12019: checking for unistd.h
configure:12024: result: yes
configure:12170: checking for syslog
configure:12227: gcc -o conftest  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE  
-L/usr/local/BerkeleyDB.4.2/lib -L/usr/lib -L/usr/local/ssl/lib conftest.c -lssl
-lcrypto >&5
configure:12233: $? = 0
configure:12236: test -z                         || test ! -s conftest.err
configure:12239: $? = 0
configure:12242: test -s conftest
configure:12245: $? = 0
configure:12257: result: yes
configure:12273: checking for sys/times.h
configure:12278: result: yes
configure:12421: checking for times
configure:12508: result: yes
configure:12519: checking which MPM to use
configure:12535: result: prefork
configure:13212: checking whether to enable mod_http
configure:13250: result: yes
configure:13298: checking whether to enable mod_mime
configure:13336: result: yes (default)
configure:13398: checking for extra modules
configure:13458: result: none
configure:13482: checking whether to enable mod_dav
configure:13520: result: shared
configure:13621: checking whether to enable mod_status
configure:13659: result: yes (default)
configure:13707: checking whether to enable mod_autoindex
configure:13745: result: yes (default)
configure:13793: checking whether to enable mod_asis
configure:13831: result: yes (default)
configure:13879: checking whether to enable mod_info
configure:13917: result: shared
configure:13965: checking whether to enable mod_suexec
configure:14001: result: checking dependencies
configure:14005: checking whether to enable mod_suexec
configure:14017: result: shared
configure:14267: checking whether to enable mod_cgi
configure:14305: result: yes (default)
configure:14353: checking whether to enable mod_cgid
configure:14391: result: no
configure:15003: checking whether to enable mod_dav_fs
configure:15041: result: shared
configure:15115: checking whether to enable mod_vhost_alias
configure:15153: result: no
configure:15201: checking whether to enable mod_negotiation
configure:15239: result: yes (default)
configure:15287: checking whether to enable mod_dir
configure:15325: result: yes (default)
configure:15373: checking whether to enable mod_imap
configure:15411: result: yes (default)
configure:15459: checking whether to enable mod_actions
configure:15497: result: yes (default)
configure:15545: checking whether to enable mod_speling
configure:15583: result: no
configure:15631: checking whether to enable mod_userdir
configure:15669: result: yes (default)
configure:15717: checking whether to enable mod_alias
configure:15755: result: shared
configure:15804: checking whether to enable mod_rewrite
configure:15842: result: shared
configure:15955: checking whether to enable mod_so
configure:15993: result: yes
configure:16365: checking whether byte ordering is bigendian
configure:16392: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
configure:16398: $? = 0
configure:16401: test -z                         || test ! -s conftest.err
configure:16404: $? = 0
configure:16407: test -s conftest.o
configure:16410: $? = 0
configure:16434: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE conftest.c >&5
conftest.c: In function `main':
conftest.c:62: error: `not' undeclared (first use in this function)
conftest.c:62: error: (Each undeclared identifier is reported only once
conftest.c:62: error: for each function it appears in.)
conftest.c:62: error: syntax error before "big"
configure:16440: $? = 1
configure: failed program was:
| /* confdefs.h.  */
...
|
configure:16573: result: no
configure:17165: creating ./config.status

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

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

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

on tasc-lx-srv-001.tasconline.com

config.status:851: creating docs/conf/httpd-std.conf
config.status:851: creating docs/conf/ssl-std.conf
config.status:851: creating include/ap_config_layout.h
config.status:851: creating support/apxs
config.status:851: creating support/apachectl
config.status:851: creating support/dbmmanage
config.status:851: creating support/envvars-std
config.status:851: creating support/log_server_status
config.status:851: creating support/logresolve.pl
config.status:851: creating support/phf_abuse_log.cgi
config.status:851: creating support/split-logfile
config.status:851: creating build/rules.mk
config.status:851: creating build/pkg/pkginfo
config.status:917: creating include/ap_config_auto.h
config.status:1117: include/ap_config_auto.h is unchanged
config.status:1275: executing default commands

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

ac_cv_build=i686-pc-linux-gnu
ac_cv_build_alias=i686-pc-linux-gnu
ac_cv_c_bigendian=no
ac_cv_c_compiler_gnu=yes
ac_cv_c_const=yes
ac_cv_define_APR_HAS_DSO=yes
ac_cv_define_APR_HAVE_IPV6=yes
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_exeext=
ac_cv_func_SSL_set_cert_store=no
ac_cv_func_SSL_set_state=no
ac_cv_func_bindprocessor=no
ac_cv_func_getgrnam=yes
ac_cv_func_getpwnam=yes
ac_cv_func_initgroups=yes
ac_cv_func_killpg=yes
ac_cv_func_prctl=yes
ac_cv_func_setsid=yes
ac_cv_func_syslog=yes
ac_cv_func_timegm=yes
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_pwd_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stdint_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=yes
ac_cv_header_sys_processor_h=no
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=i686-pc-linux-gnu
ac_cv_host_alias=i686-pc-linux-gnu
ac_cv_mkdir_p=yes
ac_cv_objext=o
ac_cv_path_RM=/bin/rm
ac_cv_path_install='/usr/bin/install -c'
ac_cv_prog_AWK=gawk
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_cc_g=yes
ac_cv_prog_cc_stdc=
ac_cv_prog_egrep='grep -E'
ac_cv_search_strerror='none required'
ac_cv_struct_tm_gmtoff=yes
ac_cv_target=i686-pc-linux-gnu
ac_cv_target_alias=i686-pc-linux-gnu
ac_cv_type_rlim_t=yes
ap_cv_ssltk=/usr/local/ssl
apache_cv_mpm=prefork

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

APACHECTL_ULIMIT='ulimit -S -n `ulimit -H -n`'
APR_BINDIR='/usr/bin'
APR_INCLUDEDIR='/usr/include/apr'
APU_BINDIR='/usr/bin'
APU_INCLUDEDIR='/usr/include/apr'
AP_BUILD_SRCLIB_DIRS=''
AP_CLEAN_SRCLIB_DIRS=''
AP_LIBS='/usr/local/httpd-2.0.54/srclib/pcre/libpcre.la   /usr/lib/libaprutil.la
-ldb-4.2 -lexpat  /usr/lib/libapr.la -lrt -lm -lcrypt -lnsl  -lpthread -ldl'
AP_SIG_GRACEFUL='SIGUSR1'
AP_SIG_GRACEFUL_SHORT='USR1'
AP_SIG_GRACEFUL_STRING=''
AWK='gawk'
BUILTIN_LIBS=' modules/aaa/mod_access.la modules/aaa/mod_auth.la
modules/filters/mod_include.la modules/loggers/mod_log_config.la
modules/metadata/mod_env.la modules/metadata/mod_setenvif.la
modules/http/mod_http.la modules/http/mod_mime.la
modules/generators/mod_status.la modules/generators/mod_autoindex.la
modules/generators/mod_asis.la modules/generators/mod_cgi.la
modules/mappers/mod_negotiation.la modules/mappers/mod_dir.la
modules/mappers/mod_imap.la modules/mappers/mod_actions.la
modules/mappers/mod_userdir.la modules/mappers/mod_so.la'
CC='gcc'
CFLAGS=''
CORE_IMPLIB=''
CORE_IMPLIB_FILE=''
CPP='gcc -E'
CPPFLAGS=''
CXX=''
CXXFLAGS=''
DEFS='-DHAVE_CONFIG_H'
DSO_MODULES=' mem_cache case_filter case_filter_in auth_ldap logio mime_magic
expires headers usertrack ssl dav info suexec dav_fs alias rewrite'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='grep -E'
EXEEXT=''
EXTRA_CFLAGS=' -g -O2 -pthread'
EXTRA_CPPFLAGS=' -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE
-D_SVID_SOURCE -D_GNU_SOURCE'
EXTRA_CXXFLAGS=''
EXTRA_INCLUDES=' -I/usr/include/apr  -I/usr/local/BerkeleyDB.4.2/include -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/usr/local/ssl/include/openssl
-I/usr/local/ssl/include -I$(top_srcdir)/modules/dav/main'
EXTRA_LDFLAGS='  -L/usr/local/BerkeleyDB.4.2/lib -L/usr/lib -L/usr/local/ssl/lib'
EXTRA_LIBS='-lssl -lcrypto'
HTTPD_LDFLAGS=''
HTTPD_VERSION='2.0.54'
INCLUDES=''
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_PROG_FLAGS=''
INSTALL_SCRIPT='${INSTALL}'
LDFLAGS=''
LIBOBJS=''
LIBS=''
LIBTOOL='/var/www/build/libtool $(LTFLAGS)'
LN_S='ln -s'
LTCFLAGS='-prefer-non-pic -static'
LTFLAGS='--silent'
LTLIBOBJS=''
LT_LDFLAGS='-export-dynamic'
MK_IMPLIB=''
MODULE_CLEANDIRS=' arch/win32 cache echo proxy test'
MODULE_DIRS=' aaa experimental filters loggers metadata ssl http dav/main
generators dav/fs mappers'
MPM_LIB='server/mpm/prefork/libprefork.la'
MPM_NAME='prefork'
MPM_SUBDIR_NAME='prefork'
NOTEST_CFLAGS=''
NOTEST_CPPFLAGS='-DAP_HAVE_DESIGNATED_INITIALIZER'
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_VERSION=''
PATH_SEPARATOR=':'
PORT='80'
POST_SHARED_CMDS='echo ""'
PRE_SHARED_CMDS='echo ""'
RANLIB='ranlib'
RM='/bin/rm'
SHELL='/bin/sh'
SHLIBPATH_VAR='LD_LIBRARY_PATH'
SHLTCFLAGS='-prefer-pic'
SH_LDFLAGS=''
SH_LIBS=''
SH_LIBTOOL='$(LIBTOOL)'
UTIL_LDFLAGS=''
ab_LTFLAGS=''
abs_srcdir='/usr/local/httpd-2.0.54'
ac_ct_CC='gcc'
ac_ct_RANLIB='ranlib'
ap_make_delimiter=' '
ap_make_include='include'
bindir='${prefix}/bin'
build='i686-pc-linux-gnu'
build_alias=''
build_cpu='i686'
build_os='linux-gnu'
build_vendor='pc'
cgidir='${datadir}/cgi-bin'
checkgid_LTFLAGS=''
datadir='/var/www'
errordir='${datadir}/error'
exec_prefix='${prefix}'
exp_bindir='/usr/bin'
exp_cgidir='/var/www/cgi-bin'
exp_datadir='/var/www'
exp_errordir='/var/www/error'
exp_exec_prefix='/usr'
exp_htdocsdir='/var/www/html'
exp_iconsdir='/var/www/icons'
exp_includedir='/usr/include/apache'
exp_installbuilddir='/var/www/build'
exp_libdir='/usr/lib'
exp_libexecdir='/usr/lib/apache'
exp_localstatedir='/var'
exp_logfiledir='/var/log/httpd'
exp_mandir='/usr/man'
exp_manualdir='/var/www/manual'
exp_proxycachedir='/var/cache/httpd'
exp_runtimedir='/var/run'
exp_sbindir='/usr/sbin'
exp_sysconfdir='/etc/httpd/conf'
host='i686-pc-linux-gnu'
host_alias=''
host_cpu='i686'
host_os='linux-gnu'
host_vendor='pc'
htdbm_LTFLAGS=''
htdigest_LTFLAGS=''
htdocsdir='${datadir}/html'
htpasswd_LTFLAGS=''
iconsdir='${datadir}/icons'
includedir='${prefix}/include/apache'
infodir='${prefix}/info'
installbuilddir='${datadir}/build'
libdir='${prefix}/lib'
libexecdir='${prefix}/lib/apache'
localstatedir='/var'
logfiledir='${localstatedir}/log/httpd'
logresolve_LTFLAGS=''
mandir='${prefix}/man'
manualdir='${datadir}/manual'
nonssl_listen_stmt_1=''
nonssl_listen_stmt_2='Listen @@Port@@'
oldincludedir='/usr/include'
other_targets='suexec'
perlbin='/usr/bin/perl'
prefix='/usr'
progname='httpd'
program_transform_name='s,x,x,'
proxycachedir='${localstatedir}/cache/httpd'
rel_bindir='bin'
rel_cgidir='/var/www/cgi-bin'
rel_datadir='/var/www'
rel_errordir='/var/www/error'
rel_exec_prefix=''
rel_htdocsdir='/var/www/html'
rel_iconsdir='/var/www/icons'
rel_includedir='include/apache'
rel_installbuilddir='/var/www/build'
rel_libdir='lib'
rel_libexecdir='lib/apache'
rel_localstatedir='/var'
rel_logfiledir='/var/log/httpd'
rel_mandir='man'
rel_manualdir='/var/www/manual'
rel_proxycachedir='/var/cache/httpd'
rel_runtimedir='/var/run'
rel_sbindir='sbin'
rel_sysconfdir='/etc/httpd/conf'
rotatelogs_LTFLAGS=''
runtimedir='${localstatedir}/run'
sbindir='${prefix}/sbin'
shared_build='shared-build'
sharedstatedir='${prefix}/com'
sysconfdir='/etc/httpd/conf'
target='i686-pc-linux-gnu'
target_alias=''
target_cpu='i686'
target_os='linux-gnu'
target_vendor='pc'

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

#define APACHE_MPM_DIR "server/mpm/prefork"
#define AP_ENABLE_V4_MAPPED 1
#define AP_NONBLOCK_WHEN_MULTI_LISTEN 1
#define AP_SIG_GRACEFUL SIGUSR1
#define AP_SIG_GRACEFUL_SHORT USR1
#define AP_SIG_GRACEFUL_STRING "SIGUSR1"
#define AP_TYPES_CONFIG_FILE "/etc/httpd/conf/mime.types"
#define AP_USING_AUTOCONF 1
#define HAVE_GETGRNAM 1
#define HAVE_GETPWNAM 1
#define HAVE_GMTOFF 1
#define HAVE_GRP_H 1
#define HAVE_INITGROUPS 1
#define HAVE_INTTYPES_H 1
#define HAVE_KILLPG 1
#define HAVE_LIMITS_H 1
#define HAVE_MEMORY_H 1
#define HAVE_PRCTL 1
#define HAVE_PWD_H 1
#define HAVE_SETSID 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRINGS_H 1
#define HAVE_STRINGS_H 1
#define HAVE_STRING_H 1
#define HAVE_STRING_H 1
#define HAVE_SYSLOG 1
#define HAVE_SYS_IPC_H 1
#define HAVE_SYS_PRCTL_H 1
#define HAVE_SYS_RESOURCE_H 1
#define HAVE_SYS_SEM_H 1
#define HAVE_SYS_SEM_H 1
#define HAVE_SYS_SOCKET_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TIMES_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_WAIT_H 1
#define HAVE_TIMEGM 1
#define HAVE_TIMES 1
#define HAVE_TIMES 1
#define HAVE_UNISTD_H 1
#define HAVE_UNISTD_H 1
#define HAVE_UNISTD_H 1
#define HTTPD_ROOT "/usr"
#define PACKAGE_BUGREPORT ""
#define PACKAGE_NAME ""
#define PACKAGE_STRING ""
#define PACKAGE_TARNAME ""
#define PACKAGE_VERSION ""
#define SERVER_CONFIG_FILE "/etc/httpd/conf/httpd.conf"
#define SINGLE_LISTEN_UNSERIALIZED_ACCEPT 1
#define STDC_HEADERS 1
#define STDC_HEADERS 1

configure: exit 0

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org