LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 780|回复: 4

apache无法解析PHP源码的问题请教!!急,在线等回复

[复制链接]
发表于 2005-9-24 23:11:16 | 显示全部楼层 |阅读模式
各位大哥,我用源码包编译apache:2.1.7 php:5.0.5 mysql:5.0.4
编译无错误,httpd.conf中AddType 和DirectoryIndex的内容也做了修改。版本也分别降低到apache:2.0.54 php:4.2.2 mysql不变。
问题依旧,我输入:http://localhost/index.php 就弹出一个下载的对话框,不知怎么才能搞定?
谢谢大家,小弟再次表示感谢,这问题我看了论坛的精华贴,但他们的方法我试了,还是不行。。。。。。。急啊!!
 楼主| 发表于 2005-9-24 23:28:35 | 显示全部楼层
ServerRoot "/opt/apache"

#
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the <VirtualHost>
# directive.
#
# Change this to Listen on specific IP addresses as shown below to
# prevent Apache from glomming onto all bound IP addresses (0.0.0.0)
#
#Listen 12.34.56.78:80
Listen 80

#
# Dynamic Shared Object (DSO) Support
#
# To be able to use the functionality of a module which was built as a DSO you
# have to place corresponding `LoadModule' lines at this location so the
# directives contained in it are actually available _before_ they are used.
# Statically compiled modules (those listed by `httpd -l') do not need
# to be loaded here.
#
# Example:
# LoadModule foo_module modules/mod_foo.so
#

<IfModule !mpm_winnt_module>
<IfModule !mpm_netware_module>
#
# If you wish httpd to run as a different user or group, you must run
# httpd as root initially and it will switch.
#
# User/Group: The name (or #number) of the user/group to run httpd as.
# It is usually good practice to create a dedicated user and group for
# running httpd, as with most system services.
#
User daemon
Group daemon
</IfModule>
</IfModule>

# 'Main' server configuration
#
# The directives in this section set up the values used by the 'main'
# server, which responds to any requests that aren't handled by a
# <VirtualHost> definition.  These values also provide defaults for
# any <VirtualHost> containers you may define later in the file.
#
# All of these directives may appear inside <VirtualHost> containers,
# in which case these default settings will be overridden for the
# virtual host being defined.
#

#
# ServerAdmin: Your address, where problems with the server should be
# e-mailed.  This address appears on some server-generated pages, such
# as error documents.  e.g. admin@your-domain.com
#
ServerAdmin you@example.com

#
# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
#
# If your host doesn't have a registered DNS name, enter its IP address here.
#
#ServerName www.example.com:80

#
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot "/opt/apache/htdocs"

#
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
#
# First, we configure the "default" to be a very restrictive set of
# features.
#
<Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
</Directory>

#
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
#

#
# This should be changed to whatever you set DocumentRoot to.
#
<Directory "/opt/apache/htdocs">
    #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    #
    # The Options directive is both complicated and important.  Please see
    # http://httpd.apache.org/docs-2.1/mod/core.html#options
    # for more information.
    #
    Options Indexes FollowSymLinks

    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   Options FileInfo AuthConfig Limit
    #
    AllowOverride None

    #
    # Controls who can get stuff from this server.
    #
    Order allow,deny
    Allow from all

</Directory>

#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
<IfModule dir_module>
    DirectoryIndex index.php index.html index.html.var index.htm
</IfModule>

#
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
#
<FilesMatch "^\.ht">
    Order allow,deny
    Deny from all
</FilesMatch>

#
# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a <VirtualHost>
# container, error messages relating to that virtual host will be
# logged here.  If you *do* define an error logfile for a <VirtualHost>
# container, that host's errors will be logged there and not here.
#
ErrorLog logs/error_log

#
# LogLevel: Control the number of messages logged to the error_log.
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
#
LogLevel warn

<IfModule log_config_module>
    #
    # The following directives define some format nicknames for use with
    # a CustomLog directive (see below).
    #
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common

    <IfModule logio_module>
      # You need to enable mod_logio.c to use %I and %O
      LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
    </IfModule>

    #
    # The location and format of the access logfile (Common Logfile Format).
    # If you do not define any access logfiles within a <VirtualHost>
    # container, they will be logged here.  Contrariwise, if you *do*
    # define per-<VirtualHost> access logfiles, transactions will be
    # logged therein and *not* in this file.
    #
    CustomLog logs/access_log common

    #
    # If you prefer a logfile with access, agent, and referer information
    # (Combined Logfile Format) you can use the following directive.
    #
    #CustomLog logs/access_log combined
</IfModule>

<IfModule alias_module>
    #
    # Redirect: Allows you to tell clients about documents that used to
    # exist in your server's namespace, but do not anymore. The client
    # will make a new request for the document at its new location.
    # Example:
    # Redirect permanent /foo http://www.example.com/bar

    #
    # Alias: Maps web paths into filesystem paths and is used to
    # access content that does not live under the DocumentRoot.
    # Example:
    # Alias /webpath /full/filesystem/path
    #
    # If you include a trailing / on /webpath then the server will
    # require it to be present in the URL.  You will also likely
    # need to provide a <Directory> section to allow access to
    # the filesystem path.

    #
    # ScriptAlias: This controls which directories contain server scripts.
    # ScriptAliases are essentially the same as Aliases, except that
    # documents in the target directory are treated as applications and
    # run by the server when requested rather than as documents sent to the
    # client.  The same rules about trailing "/" apply to ScriptAlias
    # directives as to Alias.
    #
    ScriptAlias /cgi-bin/ "/opt/apache/cgi-bin/"

</IfModule>

<IfModule cgid_module>
    #
    # ScriptSock: On threaded servers, designate the path to the UNIX
    # socket used to communicate with the CGI daemon of mod_cgid.
    #
    #Scriptsock logs/cgisock
</IfModule>

#
# "/opt/apache/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#
<Directory "/opt/apache/cgi-bin">
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
</Directory>

#
# DefaultType: the default MIME type the server will use for a document
# if it cannot otherwise determine one, such as from filename extensions.
# If your server contains mostly text or HTML documents, "text/plain" is
# a good value.  If most of your content is binary, such as applications
# or images, you may want to use "application/octet-stream" instead to
# keep browsers from trying to display binary files as though they are
# text.
#
DefaultType text/plain

<IfModule mime_module>
    #
    # TypesConfig points to the file containing the list of mappings from
    # filename extension to MIME-type.
    #
    TypesConfig conf/mime.types

    #
    # AddType allows you to add to or override the MIME configuration
    # file specified in TypesConfig for specific file types.
    #
    #AddType application/x-gzip .tgz
    #
    # AddEncoding allows you to have certain browsers uncompress
    # information on the fly. Note: Not all browsers support this.
    #
    #AddEncoding x-compress .Z
    #AddEncoding x-gzip .gz .tgz
    #
    # If the AddEncoding directives above are commented-out, then you
    # probably should define those extensions to indicate media types:
    #
    AddType application/x-compress .Z
    AddType application/x-gzip .gz .tgz
    #AddType application/x-httpd-php .php
    #AddType application/x-httpd-php-source .phps
    #AddType application/x-httpd-php .php3
    AddType application/x-httpd-php .php .php5 .php4 .php3


    #
    # AddHandler allows you to map certain file extensions to "handlers":
    # actions unrelated to filetype. These can be either built into the server
    # or added with the Action directive (see below)
    #
    # To use CGI scripts outside of ScriptAliased directories:
    # (You will also need to add "ExecCGI" to the "Options" directive.)
    #
    #AddHandler cgi-script .cgi

    # For files that include their own HTTP headers:
    #AddHandler send-as-is asis

    # For server-parsed imagemap files:
    #AddHandler imap-file map

    # For type maps (negotiated resources):
    #AddHandler type-map var

    #
    # Filters allow you to process content before it is sent to the client.
    #
    # To parse .shtml files for server-side includes (SSI):
    # (You will also need to add "Includes" to the "Options" directive.)
    #
    #AddType text/html .shtml
    #AddOutputFilter INCLUDES .shtml
</IfModule>

#
# The mod_mime_magic module allows the server to use various hints from the
# contents of the file itself to determine its type.  The MIMEMagicFile
# directive tells the module where the hint definitions are located.
#
#MIMEMagicFile conf/magic

#
# Customizable error responses come in three flavors:
# 1) plain text 2) local redirects 3) external redirects
#
# Some examples:
#ErrorDocument 500 "The server made a boo boo."
#ErrorDocument 404 /missing.html
#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
#ErrorDocument 402 http://www.example.com/subscription_info.html
#

#
# EnableMMAP and EnableSendfile: On systems that support it,
# memory-mapping or the sendfile syscall is used to deliver
# files.  This usually improves server performance, but must
# be turned off when serving from networked-mounted
# filesystems or if support for these functions is otherwise
# broken on your system.
#
#EnableMMAP off
#EnableSendfile off

# Supplemental configuration
#
# The configuration files in the conf/extra/ directory can be
# included to add extra features or to modify the default configuration of
# the server, or you may simply copy their contents here and change as
# necessary.

# Server-pool management (MPM specific)
Include conf/extra/httpd-mpm.conf

# Multi-language error messages
#Include conf/extra/httpd-multilang-errordoc.conf

# Fancy directory listings
Include conf/extra/httpd-autoindex.conf

# Language settings
#Include conf/extra/httpd-languages.conf

# User home directories
#Include conf/extra/httpd-userdir.conf

# Real-time info on requests and configuration
#Include conf/extra/httpd-info.conf

# Virtual hosts
#Include conf/extra/httpd-vhosts.conf

# Local access to the Apache HTTP Server Manual
#Include conf/extra/httpd-manual.conf

# Distributed authoring and versioning (WebDAV)
#Include conf/extra/httpd-dav.conf

# Various default settings
#Include conf/extra/httpd-default.conf

# Secure (SSL/TLS) connections
#Include conf/extra/httpd-ssl.conf
#
# Note: The following must must be present to support
#       starting without SSL on platforms with no /dev/random equivalent
#       but a statically compiled-in mod_ssl.
#
<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>
回复 支持 反对

使用道具 举报

 楼主| 发表于 2005-9-24 23:43:52 | 显示全部楼层
apache的config.log

This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

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

  $ ./configure --prefix=/opt/apache --enable-track-vars --enable-cgi --with-config-file-path=/opt/apache/conf

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

hostname = localhost
uname -m = i686
uname -r = 2.6.0-test5_2
uname -s = Linux
uname -v = #1 Sun Sep 28 14:23:53 JST 2003

/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/lib/qt3/bin/
PATH: /usr/bin
PATH: /usr/lib/qt3/bin
PATH: /usr/lib/qt3/bin
PATH: /bin
PATH: /sbin
PATH: /usr/bin
PATH: /usr/sbin
PATH: /usr/local/bin
PATH: /usr/local/sbin
PATH: /usr/bin/X11
PATH: /usr/X11R6/bin
PATH: /usr/bin
PATH: /usr/X11R6/bin
PATH: /usr/X11R6/bin


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

configure:1643: checking for chosen layout
configure:1645: result: Apache
configure:2441: checking for working mkdir -p
configure:2457: result: yes
configure:2474: checking build system type
configure:2492: result: i686-pc-linux-gnu
configure:2500: checking host system type
configure:2514: result: i686-pc-linux-gnu
configure:2522: checking target system type
configure:2536: result: i686-pc-linux-gnu
configure:2580: checking for APR
configure:2662: result: reconfig
configure:2908: checking for APR-util
configure:2990: result: reconfig
configure:3214: checking for gcc
configure:3240: result: gcc
configure:3484: checking for C compiler version
configure:3487: gcc --version </dev/null >&5
gcc (GCC) 3.3.1
Copyright (C) 2003 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:3490: $? = 0
configure:3492: gcc -v </dev/null >&5
Reading specs from /usr/lib/gcc-lib/i586-pc-linux/3.3.1/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 --enable-languages=c,c++,objc,java,f77 --host=i586-pc-linux --build=i586-pc-linux --program-suffix=-3.3.1
Thread model: posix
gcc version 3.3.1
configure:3495: $? = 0
configure:3497: gcc -V </dev/null >&5
gcc: `-V' option must have argument
configure:3500: $? = 1
configure:3523: checking for C compiler default output file name
configure:3526: gcc  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE   conftest.c  >&5
configure:3529: $? = 0
configure:3575: result: a.out
configure:3580: checking whether the C compiler works
configure:3586: ./a.out
configure:3589: $? = 0
configure:3606: result: yes
configure:3613: checking whether we are cross compiling
configure:3615: result: no
configure:3618: checking for suffix of executables
configure:3620: gcc -o conftest  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE   conftest.c  >&5
configure:3623: $? = 0
configure:3648: result:
configure:3654: checking for suffix of object files
configure:3675: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c >&5
configure:3678: $? = 0
configure:3700: result: o
configure:3704: checking whether we are using the GNU C compiler
configure:3728: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c >&5
configure:3734: $? = 0
configure:3738: test -z
                         || test ! -s conftest.err
configure:3741: $? = 0
configure:3744: test -s conftest.o
configure:3747: $? = 0
configure:3760: result: yes
configure:3766: checking whether gcc accepts -g
configure:3787: gcc -c -g  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c >&5
configure:3793: $? = 0
configure:3797: test -z
                         || test ! -s conftest.err
configure:3800: $? = 0
configure:3803: test -s conftest.o
configure:3806: $? = 0
configure:3817: result: yes
configure:3834: checking for gcc option to accept ANSI C
configure:3904: gcc  -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c >&5
configure:3910: $? = 0
configure:3914: test -z
                         || test ! -s conftest.err
configure:3917: $? = 0
configure:3920: test -s conftest.o
configure:3923: $? = 0
configure:3941: result: none needed
configure:3959: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c >&5
conftest.c:2: error: parse error before "me"
configure:3965: $? = 1
configure: failed program was:
| #ifndef __cplusplus
|   choke me
| #endif
configure:4103: checking how to run the C preprocessor
configure:4221: result: gcc -E
configure:4245: gcc -E  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c
configure:4251: $? = 0
configure:4283: gcc -E  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c
conftest.c:9:28: ac_nonexistent.h: No such file or directory
configure:4289: $? = 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:4452: Configuring PCRE regular expression library
configure:4881: checking for rm
configure:4899: found /bin/rm
configure:4911: result: /bin/rm
configure:4920: checking for pkg-config
configure:4938: found /usr/bin/pkg-config
configure:4950: result: /usr/bin/pkg-config
configure:4961: checking for gawk
configure:4977: found /usr/bin/gawk
configure:4987: result: gawk
configure:4997: checking whether ln -s works
configure:5001: result: yes
configure:5049: checking for ranlib
configure:5065: found /usr/bin/ranlib
configure:5076: result: ranlib
configure:5092: checking for lynx
configure:5121: result: no
configure:5092: checking for links
configure:5121: result: no
configure:5092: checking for elinks
configure:5121: result: no
configure:5144: checking for egrep
configure:5154: result: grep -E
configure:5160: checking for AIX
configure:5182: result: no
configure:5188: checking for library containing strerror
configure:5218: gcc -o conftest  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE   conftest.c  >&5
configure:5224: $? = 0
configure:5228: test -z
                         || test ! -s conftest.err
configure:5231: $? = 0
configure:5234: test -s conftest
configure:5237: $? = 0
configure:5307: result: none required
configure:5314: checking for ANSI C header files
configure:5339: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c >&5
configure:5345: $? = 0
configure:5349: test -z
                         || test ! -s conftest.err
configure:5352: $? = 0
configure:5355: test -s conftest.o
configure:5358: $? = 0
configure:5444: gcc -o conftest  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE   conftest.c  >&5
configure:5447: $? = 0
configure:5449: ./conftest
configure:5452: $? = 0
configure:5467: result: yes
configure:5491: checking for sys/types.h
configure:5507: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c >&5
configure:5513: $? = 0
configure:5517: test -z
                         || test ! -s conftest.err
configure:5520: $? = 0
configure:5523: test -s conftest.o
configure:5526: $? = 0
configure:5537: result: yes
configure:5491: checking for sys/stat.h
configure:5507: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c >&5
configure:5513: $? = 0
configure:5517: test -z
                         || test ! -s conftest.err
configure:5520: $? = 0
configure:5523: test -s conftest.o
configure:5526: $? = 0
configure:5537: result: yes
configure:5491: checking for stdlib.h
configure:5507: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c >&5
configure:5513: $? = 0
configure:5517: test -z
                         || test ! -s conftest.err
configure:5520: $? = 0
configure:5523: test -s conftest.o
configure:5526: $? = 0
configure:5537: result: yes
configure:5491: checking for string.h
configure:5507: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c >&5
configure:5513: $? = 0
configure:5517: test -z
                         || test ! -s conftest.err
configure:5520: $? = 0
configure:5523: test -s conftest.o
configure:5526: $? = 0
configure:5537: result: yes
configure:5491: checking for memory.h
configure:5507: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c >&5
configure:5513: $? = 0
configure:5517: test -z
                         || test ! -s conftest.err
configure:5520: $? = 0
configure:5523: test -s conftest.o
configure:5526: $? = 0
configure:5537: result: yes
configure:5491: checking for strings.h
configure:5507: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c >&5
configure:5513: $? = 0
configure:5517: test -z
                         || test ! -s conftest.err
configure:5520: $? = 0
configure:5523: test -s conftest.o
configure:5526: $? = 0
configure:5537: result: yes
configure:5491: checking for inttypes.h
configure:5507: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c >&5
configure:5513: $? = 0
configure:5517: test -z
                         || test ! -s conftest.err
configure:5520: $? = 0
configure:5523: test -s conftest.o
configure:5526: $? = 0
configure:5537: result: yes
configure:5491: checking for stdint.h
configure:5507: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c >&5
configure:5513: $? = 0
configure:5517: test -z
                         || test ! -s conftest.err
configure:5520: $? = 0
configure:5523: test -s conftest.o
configure:5526: $? = 0
configure:5537: result: yes
configure:5491: checking for unistd.h
configure:5507: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c >&5
configure:5513: $? = 0
configure:5517: test -z
                         || test ! -s conftest.err
configure:5520: $? = 0
configure:5523: test -s conftest.o
configure:5526: $? = 0
configure:5537: result: yes
configure:5559: checking minix/config.h usability
configure:5571: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c >&5
conftest.c:53:26: minix/config.h: No such file or directory
configure:5577: $? = 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:5600: result: no
configure:5604: checking minix/config.h presence
configure:5614: gcc -E  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c
conftest.c:19:26: minix/config.h: No such file or directory
configure:5620: $? = 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 <minix/config.h>
configure:5640: result: no
configure:5675: checking for minix/config.h
configure:5682: result: no
configure:5744: checking for ANSI C header files
configure:5897: result: yes
configure:5932: checking for string.h
configure:5937: result: yes
configure:5941: checking limits.h usability
configure:5953: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c >&5
configure:5959: $? = 0
configure:5963: test -z
                         || test ! -s conftest.err
configure:5966: $? = 0
configure:5969: test -s conftest.o
configure:5972: $? = 0
configure:5982: result: yes
configure:5986: checking limits.h presence
configure:5996: gcc -E  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c
configure:6002: $? = 0
configure:6022: result: yes
configure:6057: checking for limits.h
configure:6064: result: yes
configure:5932: checking for unistd.h
configure:5937: result: yes
configure:5941: checking sys/socket.h usability
configure:5953: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c >&5
configure:5959: $? = 0
configure:5963: test -z
                         || test ! -s conftest.err
configure:5966: $? = 0
configure:5969: test -s conftest.o
configure:5972: $? = 0
configure:5982: result: yes
configure:5986: checking sys/socket.h presence
configure:5996: gcc -E  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c
configure:6002: $? = 0
configure:6022: result: yes
configure:6057: checking for sys/socket.h
configure:6064: result: yes
configure:5941: checking pwd.h usability
configure:5953: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c >&5
configure:5959: $? = 0
configure:5963: test -z
                         || test ! -s conftest.err
configure:5966: $? = 0
configure:5969: test -s conftest.o
configure:5972: $? = 0
configure:5982: result: yes
configure:5986: checking pwd.h presence
configure:5996: gcc -E  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c
configure:6002: $? = 0
configure:6022: result: yes
configure:6057: checking for pwd.h
configure:6064: result: yes
configure:5941: checking grp.h usability
configure:5953: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c >&5
configure:5959: $? = 0
configure:5963: test -z
                         || test ! -s conftest.err
configure:5966: $? = 0
configure:5969: test -s conftest.o
configure:5972: $? = 0
configure:5982: result: yes
configure:5986: checking grp.h presence
configure:5996: gcc -E  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c
configure:6002: $? = 0
configure:6022: result: yes
configure:6057: checking for grp.h
configure:6064: result: yes
configure:5932: checking for strings.h
configure:5937: result: yes
configure:5941: checking sys/prctl.h usability
configure:5953: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c >&5
configure:5959: $? = 0
configure:5963: test -z
                         || test ! -s conftest.err
configure:5966: $? = 0
configure:5969: test -s conftest.o
configure:5972: $? = 0
configure:5982: result: yes
configure:5986: checking sys/prctl.h presence
configure:5996: gcc -E  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c
configure:6002: $? = 0
configure:6022: result: yes
configure:6057: checking for sys/prctl.h
configure:6064: result: yes
configure:5941: checking sys/processor.h usability
configure:5953: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c >&5
conftest.c:62:27: sys/processor.h: No such file or directory
configure:5959: $? = 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
| /* 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 <sys/processor.h>
configure:5982: result: no
configure:5986: checking sys/processor.h presence
configure:5996: gcc -E  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c
conftest.c:28:27: sys/processor.h: No such file or directory
configure:6002: $? = 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
| /* end confdefs.h.  */
| #include <sys/processor.h>
configure:6022: result: no
configure:6057: checking for sys/processor.h
configure:6064: result: no
configure:5941: checking sys/sem.h usability
configure:5953: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c >&5
configure:5959: $? = 0
configure:5963: test -z
                         || test ! -s conftest.err
configure:5966: $? = 0
configure:5969: test -s conftest.o
configure:5972: $? = 0
configure:5982: result: yes
configure:5986: checking sys/sem.h presence
configure:5996: gcc -E  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c
configure:6002: $? = 0
configure:6022: result: yes
configure:6057: checking for sys/sem.h
configure:6064: result: yes
configure:6077: checking for sys/wait.h that is POSIX.1 compatible
configure:6108: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6114: $? = 0
configure:6118: test -z
                         || test ! -s conftest.err
configure:6121: $? = 0
configure:6124: test -s conftest.o
configure:6127: $? = 0
configure:6138: result: yes
configure:6150: checking for an ANSI C-conforming const
configure:6217: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6223: $? = 0
configure:6227: test -z
                         || test ! -s conftest.err
configure:6230: $? = 0
configure:6233: test -s conftest.o
configure:6236: $? = 0
configure:6247: result: yes
configure:6265: checking for library containing sqrt
configure:6295: gcc -o conftest  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE   conftest.c  >&5
conftest.c:38: warning: conflicting types for built-in function `sqrt'
/tmp/ccGc2Y7G.o(.text+0x9): In function `main':
/root/httpd-2.1.7-beta/conftest.c:42: undefined reference to `sqrt'
collect2: ld returned 1 exit status
configure:6301: $? = 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 AP_HAVE_DESIGNATED_INITIALIZER 1
| /* end confdefs.h.  */
|
| /* Override any gcc2 internal prototype to avoid an error.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| /* We use char because int might match the return type of a gcc2
|    builtin and then its argument prototype would still apply.  */
| char sqrt ();
| int
| main ()
| {
| sqrt ();
|   ;
|   return 0;
| }
configure:6350: gcc -o conftest  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE   conftest.c -lm   >&5
conftest.c:38: warning: conflicting types for built-in function `sqrt'
configure:6356: $? = 0
configure:6360: test -z
                         || test ! -s conftest.err
configure:6363: $? = 0
configure:6366: test -s conftest
configure:6369: $? = 0
configure:6384: result: -lm
configure:6409: checking for getpwnam
configure:6466: gcc -o conftest  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE   conftest.c -lm  >&5
configure:6472: $? = 0
configure:6476: test -z
                         || test ! -s conftest.err
configure:6479: $? = 0
configure:6482: test -s conftest
configure:6485: $? = 0
configure:6497: result: yes
configure:6409: checking for getgrnam
configure:6466: gcc -o conftest  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE   conftest.c -lm  >&5
configure:6472: $? = 0
configure:6476: test -z
                         || test ! -s conftest.err
configure:6479: $? = 0
configure:6482: test -s conftest
configure:6485: $? = 0
configure:6497: result: yes
configure:6409: checking for initgroups
configure:6466: gcc -o conftest  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE   conftest.c -lm  >&5
configure:6472: $? = 0
configure:6476: test -z
                         || test ! -s conftest.err
configure:6479: $? = 0
configure:6482: test -s conftest
configure:6485: $? = 0
configure:6497: result: yes
configure:6409: checking for bindprocessor
configure:6466: gcc -o conftest  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE   conftest.c -lm  >&5
/tmp/ccyrYP48.o(.text+0xe): In function `main':
/root/httpd-2.1.7-beta/conftest.c:74: undefined reference to `bindprocessor'
/tmp/ccyrYP48.o(.data+0x0):/root/httpd-2.1.7-beta/conftest.c:73: undefined reference to `bindprocessor'
collect2: ld returned 1 exit status
configure:6472: $? = 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 AP_HAVE_DESIGNATED_INITIALIZER 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 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 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
| #else
| char (*f) () = bindprocessor;
| #endif
| #ifdef __cplusplus
| }
| #endif
|
| int
| main ()
| {
| return f != bindprocessor;
|   ;
|   return 0;
| }
configure:6497: result: no
configure:6409: checking for prctl
configure:6466: gcc -o conftest  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE   conftest.c -lm  >&5
configure:6472: $? = 0
configure:6476: test -z
                         || test ! -s conftest.err
configure:6479: $? = 0
configure:6482: test -s conftest
configure:6485: $? = 0
configure:6497: result: yes
configure:6409: checking for timegm
configure:6466: gcc -o conftest  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE   conftest.c -lm  >&5
configure:6472: $? = 0
configure:6476: test -z
                         || test ! -s conftest.err
configure:6479: $? = 0
configure:6482: test -s conftest
configure:6485: $? = 0
configure:6497: result: yes
configure:6508: checking for tm_gmtoff in struct tm
configure:6530: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c >&5
configure:6536: $? = 0
configure:6540: test -z
                         || test ! -s conftest.err
configure:6543: $? = 0
configure:6546: test -s conftest.o
configure:6549: $? = 0
configure:6560: result: yes
configure:6812: checking whether to enable mod_authn_file
configure:6850: result: yes (default)
configure:6905: checking whether to enable mod_authn_dbm
configure:6943: result: no
configure:6998: checking whether to enable mod_authn_anon
configure:7036: result: no
configure:7092: checking whether to enable mod_authn_default
configure:7130: result: yes (default)
configure:7186: checking whether to enable mod_authn_alias
configure:7224: result: no
configure:7280: checking whether to enable mod_authz_host
configure:7318: result: yes (default)
configure:7373: checking whether to enable mod_authz_groupfile
configure:7411: result: yes (default)
configure:7466: checking whether to enable mod_authz_user
configure:7504: result: yes (default)
configure:7559: checking whether to enable mod_authz_dbm
configure:7597: result: no
configure:7652: checking whether to enable mod_authz_owner
configure:7690: result: no
configure:7746: checking whether to enable mod_authnz_ldap
configure:7784: result: no
configure:7840: checking whether to enable mod_authz_default
configure:7878: result: yes (default)
configure:7935: checking whether to enable mod_auth_basic
configure:7973: result: yes (default)
configure:8028: checking whether to enable mod_auth_digest
configure:8111: result: no
configure:8192: checking whether to enable mod_isapi
configure:8230: result: no
configure:8311: checking whether to enable mod_file_cache
configure:8349: result: no
configure:8407: checking whether to enable mod_cache
configure:8445: result: no
configure:8500: checking whether to enable mod_disk_cache
configure:8538: result: no
configure:8593: checking whether to enable mod_mem_cache
configure:8631: result: no
configure:8711: checking whether to enable mod_bucketeer
configure:8749: result: no
configure:8804: checking whether to enable mod_dumpio
configure:8842: result: no
configure:8923: checking whether to enable mod_echo
configure:8961: result: no
configure:9138: checking whether to enable mod_charset_lite
configure:9176: result: no
configure:9233: checking whether to enable mod_example
configure:9271: result: no
configure:9326: checking whether to enable mod_case_filter
configure:9364: result: no
configure:9419: checking whether to enable mod_case_filter_in
configure:9457: result: no
configure:9512: checking whether to enable mod_filter
configure:9550: result: no
configure:9631: checking whether to enable mod_ext_filter
configure:9669: result: no
configure:9724: checking whether to enable mod_include
configure:9762: result: yes (default)
configure:9818: checking whether to enable mod_deflate
configure:10078: result: no
configure:10160: checking whether to enable mod_ldap
configure:10198: result: no
configure:10279: checking whether to enable mod_log_config
configure:10317: result: yes (default)
configure:10372: checking whether to enable mod_log_forensic
configure:10410: result: no
configure:10491: checking whether to enable mod_logio
configure:10529: result: no
configure:10610: checking whether to enable mod_env
configure:10648: result: yes (default)
configure:10703: checking whether to enable mod_mime_magic
configure:10741: result: no
configure:10796: checking whether to enable mod_cern_meta
configure:10834: result: no
configure:10889: checking whether to enable mod_expires
configure:10927: result: no
configure:10982: checking whether to enable mod_headers
configure:11020: result: no
configure:11075: checking whether to enable mod_ident
configure:11113: result: no
configure:11169: checking whether to enable mod_usertrack
configure:11473: result: no
configure:11529: checking whether to enable mod_unique_id
configure:11567: result: no
configure:11622: checking whether to enable mod_setenvif
configure:11660: result: yes (default)
configure:11715: checking whether to enable mod_version
configure:11753: result: no
configure:11842: checking whether to enable mod_proxy
configure:11880: result: no
configure:11954: checking whether to enable mod_proxy_connect
configure:11992: result: no
configure:12047: checking whether to enable mod_proxy_ftp
configure:12085: result: no
configure:12140: checking whether to enable mod_proxy_http
configure:12178: result: no
configure:12233: checking whether to enable mod_proxy_ajp
configure:12271: result: no
configure:12326: checking whether to enable mod_proxy_balancer
configure:12364: result: no
configure:12469: checking whether to enable mod_ssl
configure:14388: result: no
configure:14492: checking whether to enable mod_optional_hook_export
configure:14530: result: no
configure:14585: checking whether to enable mod_optional_hook_import
configure:14623: result: no
configure:14678: checking whether to enable mod_optional_fn_import
configure:14716: result: no
configure:14771: checking whether to enable mod_optional_fn_export
configure:14809: result: no
configure:14902: checking for target platform
configure:14927: result: unix
configure:14959: checking for rlim_t
configure:14985: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c >&5
configure:14991: $? = 0
configure:14995: test -z
                         || test ! -s conftest.err
configure:14998: $? = 0
configure:15001: test -s conftest.o
configure:15004: $? = 0
configure:15019: result: yes
configure:15047: checking sys/time.h usability
configure:15059: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c >&5
configure:15065: $? = 0
configure:15069: test -z
                         || test ! -s conftest.err
configure:15072: $? = 0
configure:15075: test -s conftest.o
configure:15078: $? = 0
configure:15088: result: yes
configure:15092: checking sys/time.h presence
configure:15102: gcc -E  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c
configure:15108: $? = 0
configure:15128: result: yes
configure:15163: checking for sys/time.h
configure:15170: result: yes
configure:15047: checking sys/resource.h usability
configure:15059: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c >&5
configure:15065: $? = 0
configure:15069: test -z
                         || test ! -s conftest.err
configure:15072: $? = 0
configure:15075: test -s conftest.o
configure:15078: $? = 0
configure:15088: result: yes
configure:15092: checking sys/resource.h presence
configure:15102: gcc -E  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c
configure:15108: $? = 0
configure:15128: result: yes
configure:15163: checking for sys/resource.h
configure:15170: result: yes
configure:15038: checking for sys/sem.h
configure:15043: result: yes
configure:15047: checking sys/ipc.h usability
configure:15059: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c >&5
configure:15065: $? = 0
configure:15069: test -z
                         || test ! -s conftest.err
configure:15072: $? = 0
configure:15075: test -s conftest.o
configure:15078: $? = 0
configure:15088: result: yes
configure:15092: checking sys/ipc.h presence
configure:15102: gcc -E  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c
configure:15108: $? = 0
configure:15128: result: yes
configure:15163: checking for sys/ipc.h
configure:15170: result: yes
configure:15189: checking for setsid
configure:15246: gcc -o conftest  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE   conftest.c -lm  >&5
configure:15252: $? = 0
configure:15256: test -z
                         || test ! -s conftest.err
configure:15259: $? = 0
configure:15262: test -s conftest
configure:15265: $? = 0
configure:15277: result: yes
configure:15189: checking for killpg
configure:15246: gcc -o conftest  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE   conftest.c -lm  >&5
configure:15252: $? = 0
configure:15256: test -z
                         || test ! -s conftest.err
configure:15259: $? = 0
configure:15262: test -s conftest
configure:15265: $? = 0
configure:15277: result: yes
configure:15306: checking bstring.h usability
configure:15318: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c >&5
conftest.c:78:21: bstring.h: No such file or directory
configure:15324: $? = 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 AP_HAVE_DESIGNATED_INITIALIZER 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_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>
| #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 <bstring.h>
configure:15347: result: no
configure:15351: checking bstring.h presence
configure:15361: gcc -E  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c
conftest.c:44:21: bstring.h: No such file or directory
configure:15367: $? = 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 AP_HAVE_DESIGNATED_INITIALIZER 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_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:15387: result: no
configure:15422: checking for bstring.h
configure:15429: result: no
configure:15297: checking for unistd.h
configure:15302: result: yes
configure:15449: checking for syslog
configure:15506: gcc -o conftest  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE   conftest.c -lm  >&5
configure:15512: $? = 0
configure:15516: test -z
                         || test ! -s conftest.err
configure:15519: $? = 0
configure:15522: test -s conftest
configure:15525: $? = 0
configure:15537: result: yes
configure:15562: checking sys/times.h usability
configure:15574: gcc -c  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c >&5
configure:15580: $? = 0
configure:15584: test -z
                         || test ! -s conftest.err
configure:15587: $? = 0
configure:15590: test -s conftest.o
configure:15593: $? = 0
configure:15603: result: yes
configure:15607: checking sys/times.h presence
configure:15617: gcc -E  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE conftest.c
configure:15623: $? = 0
configure:15643: result: yes
configure:15678: checking for sys/times.h
configure:15685: result: yes
configure:15702: checking for times
configure:15759: gcc -o conftest  -g -O2 -pthread  -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE   conftest.c -lm  >&5
configure:15765: $? = 0
configure:15769: test -z
                         || test ! -s conftest.err
configure:15772: $? = 0
configure:15775: test -s conftest
configure:15778: $? = 0
configure:15790: result: yes
configure:15801: checking which MPM to use
configure:15817: result: prefork
configure:16512: checking whether to enable mod_http
configure:16550: result: yes
configure:16605: checking whether to enable mod_mime
configure:16643: result: yes (default)
configure:16712: checking for extra modules
configure:16773: result: none
configure:16797: checking whether to enable mod_dav
configure:16835: result: no
configure:16943: checking whether to enable mod_status
configure:16981: result: yes (default)
configure:17036: checking whether to enable mod_autoindex
configure:17074: result: yes (default)
configure:17129: checking whether to enable mod_asis
configure:17167: result: yes (default)
configure:17222: checking whether to enable mod_info
configure:17260: result: no
configure:17315: checking whether to enable mod_suexec
configure:17367: result: no
configure:17616: checking whether to enable mod_cgi
configure:17654: result: yes (default)
configure:17709: checking whether to enable mod_cgid
configure:17747: result: no
configure:18479: checking whether to enable mod_dav_fs
configure:18517: result: no
configure:18607: checking whether to enable mod_dav_lock
configure:18645: result: no
configure:18726: checking whether to enable mod_vhost_alias
configure:18764: result: no
configure:18819: checking whether to enable mod_negotiation
configure:18857: result: yes (default)
configure:18912: checking whether to enable mod_dir
configure:18950: result: yes (default)
configure:19005: checking whether to enable mod_imagemap
configure:19043: result: no
configure:19098: checking whether to enable mod_actions
configure:19136: result: yes (default)
configure:19191: checking whether to enable mod_speling
configure:19229: result: no
configure:19284: checking whether to enable mod_userdir
configure:19322: result: yes (default)
configure:19377: checking whether to enable mod_alias
configure:19415: result: yes (default)
configure:19471: checking whether to enable mod_rewrite
configure:19509: result: no
configure:19660: checking whether to enable mod_so
configure:19698: result: yes
configure:20668: 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 localhost

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

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

ac_cv_build=i686-pc-linux-gnu
ac_cv_build_alias=i686-pc-linux-gnu
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_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_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=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_PKGCONFIG=/usr/bin/pkg-config
ac_cv_path_RM=/bin/rm
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_sqrt=-lm
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
apache_cv_mpm=prefork

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

APACHECTL_ULIMIT='ulimit -S -n `ulimit -H -n`'
APR_BINDIR='/opt/apache/bin'
APR_CONFIG='/opt/apache/bin/apr-1-config'
APR_INCLUDEDIR='/root/httpd-2.1.7-beta/srclib/apr/include'
APR_VERSION='1.2.1'
APU_BINDIR='/opt/apache/bin'
APU_CONFIG='/opt/apache/bin/apu-1-config'
APU_INCLUDEDIR='/root/httpd-2.1.7-beta/srclib/apr-util/include'
APU_VERSION='1.2.1'
AP_BUILD_SRCLIB_DIRS='apr  apr-util pcre'
AP_CLEAN_SRCLIB_DIRS='apr-util  apr pcre'
AP_LIBS='/root/httpd-2.1.7-beta/srclib/pcre/libpcre.la  /root/httpd-2.1.7-beta/srclib/apr-util/libaprutil-1.la -ldb1 -lexpat  /root/httpd-2.1.7-beta/srclib/apr/libapr-1.la -lrt -lcrypt  -lpthread -ldl'
AP_SIG_GRACEFUL='SIGUSR1'
AP_SIG_GRACEFUL_SHORT='USR1'
AP_SIG_GRACEFUL_STRING=''
AWK='gawk'
BUILTIN_LIBS=' modules/aaa/libmod_authn_file.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/filters/libmod_include.la modules/loggers/libmod_log_config.la modules/metadata/libmod_env.la modules/metadata/libmod_setenvif.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_cgi.la modules/mappers/libmod_negotiation.la modules/mappers/libmod_dir.la modules/mappers/libmod_actions.la modules/mappers/libmod_userdir.la modules/mappers/libmod_alias.la modules/mappers/libmod_so.la'
CC='gcc'
CFLAGS=''
CORE_IMPLIB=''
CORE_IMPLIB_FILE=''
CPP='gcc -E'
CPPFLAGS=''
CXX=''
CXXFLAGS=''
DEFS='-DHAVE_CONFIG_H'
DSO_MODULES=''
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='grep -E'
EXEEXT=''
EXTRA_CFLAGS=' -g -O2 -pthread'
EXTRA_CPPFLAGS=' -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -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/root/httpd-2.1.7-beta/srclib/apr/include -I/root/httpd-2.1.7-beta/srclib/apr-util/include -I$(top_srcdir)/modules/proxy/../generators -I$(top_srcdir)/modules/ssl -I$(top_srcdir)/modules/dav/main'
EXTRA_LDFLAGS=' '
EXTRA_LIBS='-lm '
HTTPD_LDFLAGS='-export-dynamic'
HTTPD_VERSION='2.1.7'
INCLUDES=''
INSTALL='$(LIBTOOL) --mode=install $(abs_srcdir)/build/install.sh -c'
INSTALL_DSO='yes'
INSTALL_PROG_FLAGS=''
LDFLAGS=''
LIBOBJS=''
LIBS=''
LIBTOOL='/root/httpd-2.1.7-beta/srclib/apr/libtool $(LTFLAGS)'
LN_S='ln -s'
LTCFLAGS='-prefer-non-pic -static'
LTFLAGS='--silent'
LTLIBOBJS=''
LT_LDFLAGS=''
LYNX_PATH='lynx'
MKDEP='$(CC) -MM'
MKINSTALLDIRS='$(abs_srcdir)/build/mkdir.sh'
MK_IMPLIB=''
MODULE_CLEANDIRS=' arch/win32 cache debug echo experimental ldap proxy ssl test dav/main dav/fs dav/lock'
MODULE_DIRS=' aaa filters loggers metadata 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_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_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_REWRITE_LDADD=''
MOD_SETENVIF_LDADD=''
MOD_SO_LDADD=''
MOD_SPELING_LDADD=''
MOD_SSL_LDADD=''
MOD_STATUS_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'
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_VERSION=''
PATH_SEPARATOR=':'
PCRE_CONFIG='false'
PICFLAGS=''
PILDFLAGS=''
PKGCONFIG='/usr/bin/pkg-config'
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)'
SSL_LIBS=''
UTIL_LDFLAGS=''
ab_LTFLAGS=''
abs_srcdir='/root/httpd-2.1.7-beta'
ac_ct_CC='gcc'
ac_ct_RANLIB='ranlib'
ap_make_delimiter=' '
ap_make_include='include'
bindir='${exec_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='${prefix}'
errordir='${datadir}/error'
exec_prefix='${prefix}'
exp_bindir='/opt/apache/bin'
exp_cgidir='/opt/apache/cgi-bin'
exp_datadir='/opt/apache'
exp_errordir='/opt/apache/error'
exp_exec_prefix='/opt/apache'
exp_htdocsdir='/opt/apache/htdocs'
exp_iconsdir='/opt/apache/icons'
exp_includedir='/opt/apache/include'
exp_installbuilddir='/opt/apache/build'
exp_libdir='/opt/apache/lib'
exp_libexecdir='/opt/apache/modules'
exp_localstatedir='/opt/apache'
exp_logfiledir='/opt/apache/logs'
exp_mandir='/opt/apache/man'
exp_manualdir='/opt/apache/manual'
exp_proxycachedir='/opt/apache/proxy'
exp_runtimedir='/opt/apache/logs'
exp_sbindir='/opt/apache/bin'
exp_sysconfdir='/opt/apache/conf'
host='i686-pc-linux-gnu'
host_alias=''
host_cpu='i686'
host_os='linux-gnu'
host_vendor='pc'
htdbm_LTFLAGS=''
htdigest_LTFLAGS=''
htdocsdir='${datadir}/htdocs'
htpasswd_LTFLAGS=''
iconsdir='${datadir}/icons'
includedir='${prefix}/include'
infodir='${prefix}/info'
installbuilddir='${datadir}/build'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/modules'
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=''
perlbin='/usr/bin/perl'
prefix='/opt/apache'
progname='httpd'
program_transform_name='s,x,x,'
proxycachedir='${localstatedir}/proxy'
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='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_HAVE_DESIGNATED_INITIALIZER 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 "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_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_UNISTD_H 1
#define HAVE_UNISTD_H 1
#define HAVE_UNISTD_H 1
#define HTTPD_ROOT "/opt/apache"
#define PACKAGE_BUGREPORT ""
#define PACKAGE_NAME ""
#define PACKAGE_STRING ""
#define PACKAGE_TARNAME ""
#define PACKAGE_VERSION ""
#define SERVER_CONFIG_FILE "conf/httpd.conf"
#define SINGLE_LISTEN_UNSERIALIZED_ACCEPT 1
#define STDC_HEADERS 1
#define STDC_HEADERS 1

configure: exit 0
回复 支持 反对

使用道具 举报

 楼主| 发表于 2005-9-24 23:46:43 | 显示全部楼层
php的config.log


This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

configure:1738: checking for Cygwin environment
configure:1754: cc -c   conftest.c 1>&5
configure: In function `main':
configure:1750: error: `__CYGWIN32__' undeclared (first use in this function)
configure:1750: error: (Each undeclared identifier is reported only once
configure:1750: error: for each function it appears in.)
configure: failed program was:
#line 1743 "configure"
#include "confdefs.h"

int main() {

#ifndef __CYGWIN__
#define __CYGWIN__ __CYGWIN32__
#endif
return __CYGWIN__;
; return 0; }
configure:1771: checking for mingw32 environment
configure:1783: cc -c   conftest.c 1>&5
configure: In function `main':
configure:1779: error: `__MINGW32__' undeclared (first use in this function)
configure:1779: error: (Each undeclared identifier is reported only once
configure:1779: error: for each function it appears in.)
configure: failed program was:
#line 1776 "configure"
#include "confdefs.h"

int main() {
return __MINGW32__;
; return 0; }
configure:1853: checking host system type
configure:1889: checking for a BSD compatible install
configure:1942: checking whether build environment is sane
configure:2013: checking for gawk
configure:2043: checking whether make sets ${MAKE}
configure:2156: checking whether to enable maintainer-specific portions of Makefiles
configure:2262: checking for gcc
configure:2375: checking whether the C compiler (gcc  ) works
configure:2391: gcc -o conftest    conftest.c  1>&5
configure:2417: checking whether the C compiler (gcc  ) is a cross-compiler
configure:2422: checking whether we are using GNU C
configure:2431: gcc -E conftest.c
configure:2450: checking whether gcc accepts -g
configure:2489: checking for style of include used by make
configure:2523: checking dependency style of gcc
configure:2591: checking whether gcc and cc understand -c and -o together
configure:2606: gcc -c conftest.c -o conftest.o 1>&5
configure:2607: gcc -c conftest.c -o conftest.o 1>&5
configure:2612: cc -c conftest.c 1>&5
configure:2614: cc -c conftest.c -o conftest.o 1>&5
configure:2615: cc -c conftest.c -o conftest.o 1>&5
configure:2642: checking how to run the C preprocessor
configure:2663: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:2722: checking for AIX
configure:2749: checking for gcc option to accept ANSI C
configure:2803: gcc  -c -g -O2  conftest.c 1>&5
configure:2827: checking whether compiler supports -R
configure:2842: gcc -o conftest -g -O2   conftest.c -R /usr/lib  1>&5
gcc: unrecognized option `-R'
/usr/lib: file not recognized: Is a directory
collect2: ld returned 1 exit status
configure: failed program was:
#line 2835 "configure"
#include "confdefs.h"

int main() {

; return 0; }
configure:2860: checking whether compiler supports -Wl,-rpath,
configure:2875: gcc -o conftest -g -O2   conftest.c -Wl,-rpath,/usr/lib  1>&5
configure:2898: checking for ranlib
configure:2926: checking whether ln -s works
configure:2951: checking for gawk
configure:2985: checking for bison
configure:2985: checking for byacc
configure:3029: checking for flex
configure:3063: checking for yywrap in -lfl
configure:3082: gcc -o conftest -g -O2   conftest.c -lfl   1>&5
configure:3106: checking lex output file root
configure:3127: checking whether yytext is a pointer
configure:3146: gcc -o conftest -g -O2   conftest.c  -lfl 1>&5
configure:3170: checking for working const
configure:3224: gcc -c -g -O2  conftest.c 1>&5
configure:3345: gcc -o conftest -g -O2   conftest.c  1>&5
/tmp/ccaChROj.o(.text+0x28): In function `main':
/root/php-4.2.2/configure:3340: undefined reference to `pthread_mutexattr_init'
/tmp/ccaChROj.o(.text+0x3c):/root/php-4.2.2/configure:3341: undefined reference to `pthread_create'
collect2: ld returned 1 exit status
configure: failed program was:
#line 3327 "configure"
#include "confdefs.h"

#include <pthread.h>
#include <stddef.h>

void *thread_routine(void *data) {
    return data;
}

int main() {
    pthread_t thd;
    pthread_mutexattr_t mattr;
    int data = 1;
    pthread_mutexattr_init(&mattr);
    return pthread_create(&thd, NULL, thread_routine, &data);
}
configure:3365: checking for pthreads_cflags
configure:3398: gcc -o conftest -g -O2 -kthread   conftest.c  1>&5
gcc: unrecognized option `-kthread'
/tmp/ccq20QJA.o(.text+0x28): In function `main':
/root/php-4.2.2/configure:3393: undefined reference to `pthread_mutexattr_init'
/tmp/ccq20QJA.o(.text+0x3c):/root/php-4.2.2/configure:3394: undefined reference to `pthread_create'
collect2: ld returned 1 exit status
configure: failed program was:
#line 3380 "configure"
#include "confdefs.h"

#include <pthread.h>
#include <stddef.h>

void *thread_routine(void *data) {
    return data;
}

int main() {
    pthread_t thd;
    pthread_mutexattr_t mattr;
    int data = 1;
    pthread_mutexattr_init(&mattr);
    return pthread_create(&thd, NULL, thread_routine, &data);
}
configure:3398: gcc -o conftest -g -O2 -pthread   conftest.c  1>&5
configure:3427: checking for pthreads_lib
configure:3537: checking for AOLserver support
configure:3613: checking for Apache 1.x module support via DSO through APXS
configure:3745: checking for Apache 1.x module support
configure:3932: checking for mod_charset compatibility option
configure:4002: checking for Apache 2.0 module support via DSO through APXS
configure:4125: checking for Caudium support
configure:4296: checking whether writing to stdout works
configure:4325: gcc -o conftest -g -O2   conftest.c  1>&5
configure:4357: checking whether to force Apache CGI redirect
configure:4416: checking whether to discard path_info + path_translated
configure:4478: checking for fhttpd module support
configure:4526: checking for CLI build
configure:4551: checking for FastCGI support
configure:4617: checking for Zeus ISAPI support
configure:4683: checking for NSAPI support
configure:4766: checking for PHTTPD support
configure:4833: checking for Pi3Web Support
configure:5030: checking for Roxen/Pike support
configure:5135: checking for Servlet support
configure:5303: checking for thttpd
configure:5365: checking for TUX
configure:5435: checking for webjames
configure:5441: checking for chosen SAPI module
configure:5499: checking for missing declarations of reentrant functions
configure:5508: gcc -c -g -O2  conftest.c 1>&5
configure:5533: gcc -c -g -O2  conftest.c 1>&5
configure:5558: gcc -c -g -O2  conftest.c 1>&5
configure:5583: gcc -c -g -O2  conftest.c 1>&5
configure:5608: gcc -c -g -O2  conftest.c 1>&5
configure:5631: checking for sendmail
configure:5672: checking whether system uses EBCDIC
configure:5691: gcc -o conftest -g -O2   conftest.c  1>&5
configure: failed program was:
#line 5683 "configure"
#include "confdefs.h"

int main(void) {
  return (unsigned char)'A' != (unsigned char)0xC1;
}

configure:5759: checking for socket in -lsocket
configure:5778: gcc -o conftest -g -O2   conftest.c -lsocket   1>&5
/usr/bin/ld: cannot find -lsocket
collect2: ld returned 1 exit status
configure: failed program was:
#line 5767 "configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char socket();

int main() {
socket()
; return 0; }
configure:5814: checking for htonl in -lsocket
configure:5833: gcc -o conftest -g -O2   conftest.c -lsocket   1>&5
/usr/bin/ld: cannot find -lsocket
collect2: ld returned 1 exit status
configure: failed program was:
#line 5822 "configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char htonl();

int main() {
htonl()
; return 0; }
configure:5872: checking for yp_get_default_domain
configure:5900: gcc -o conftest -g -O2   conftest.c  1>&5
/tmp/cc0lTgvz.o(.text+0x9): In function `main':
/root/php-4.2.2/configure:5894: undefined reference to `yp_get_default_domain'
collect2: ld returned 1 exit status
configure: failed program was:
#line 5877 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char yp_get_default_domain(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char yp_get_default_domain();

int main() {

/* 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_yp_get_default_domain) || defined (__stub___yp_get_default_domain)
choke me
#else
yp_get_default_domain();
#endif

; return 0; }
configure:5924: checking for gethostname in -lnsl
configure:5943: gcc -o conftest -g -O2   conftest.c -lnsl   1>&5
configure:6041: checking for dlopen in -ldl
configure:6060: gcc -o conftest -g -O2   conftest.c -ldl  -lnsl  1>&5
configure:6093: checking for sin in -lm
configure:6112: gcc -o conftest -g -O2   conftest.c -lm  -ldl -lnsl  1>&5
configure:6105: warning: conflicting types for built-in function `sin'
configure:6141: checking for inet_aton in -lresolv
configure:6160: gcc -o conftest -g -O2   conftest.c -lresolv  -lm -ldl -lnsl  1>&5
configure:6287: checking for res_search in -lsocket
configure:6306: gcc -o conftest -g -O2   conftest.c -lsocket  -lresolv -lm -ldl -lnsl  1>&5
/usr/bin/ld: cannot find -lsocket
collect2: ld returned 1 exit status
configure: failed program was:
#line 6295 "configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char res_search();

int main() {
res_search()
; return 0; }
configure:6425: checking for res_search in -lresolv
configure:6444: gcc -o conftest -g -O2   conftest.c -lresolv  -lresolv -lm -ldl -lnsl  1>&5
configure:6574: checking for ANSI C header files
configure:6587: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6654: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:6684: checking for dirent.h that defines DIR
configure:6697: gcc -c -g -O2  conftest.c 1>&5
configure:6722: checking for opendir in -ldir
configure:6741: gcc -o conftest -g -O2   conftest.c -ldir  -lresolv -lm -ldl -lnsl  -lresolv 1>&5
/usr/bin/ld: cannot find -ldir
collect2: ld returned 1 exit status
configure: failed program was:
#line 6730 "configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char opendir();

int main() {
opendir()
; return 0; }
configure:6848: checking for fclose declaration
configure:6857: gcc -c -g -O2  conftest.c 1>&5
configure:6921: checking for ApplicationServices/ApplicationServices.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6927:53: ApplicationServices/ApplicationServices.h: No such file or directory
configure: failed program was:
#line 6926 "configure"
#include "confdefs.h"
#include <ApplicationServices/ApplicationServices.h>
configure:6921: checking for alloca.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6921: checking for arpa/inet.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6921: checking for arpa/nameser.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6921: checking for crypt.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6921: checking for fcntl.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6921: checking for grp.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6921: checking for ieeefp.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6927:20: ieeefp.h: No such file or directory
configure: failed program was:
#line 6926 "configure"
#include "confdefs.h"
#include <ieeefp.h>
configure:6921: checking for langinfo.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6921: checking for limits.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6921: checking for locale.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6921: checking for netinet/in.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6921: checking for pwd.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6921: checking for resolv.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6921: checking for signal.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6921: checking for stdarg.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6921: checking for stdlib.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6921: checking for string.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6921: checking for syslog.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6921: checking for sysexits.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6921: checking for sys/file.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6921: checking for sys/mman.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6921: checking for sys/mount.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6921: checking for sys/resource.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6921: checking for sys/select.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6921: checking for sys/socket.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6921: checking for sys/statfs.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6921: checking for sys/statvfs.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6921: checking for sys/vfs.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6921: checking for sys/sysexits.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6927:26: sys/sysexits.h: No such file or directory
configure: failed program was:
#line 6926 "configure"
#include "confdefs.h"
#include <sys/sysexits.h>
configure:6921: checking for sys/time.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6921: checking for sys/types.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6921: checking for sys/varargs.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6927:25: sys/varargs.h: No such file or directory
configure: failed program was:
#line 6926 "configure"
#include "confdefs.h"
#include <sys/varargs.h>
configure:6921: checking for sys/wait.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6921: checking for unistd.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6921: checking for unix.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6927:18: unix.h: No such file or directory
configure: failed program was:
#line 6926 "configure"
#include "confdefs.h"
#include <unix.h>
configure:6921: checking for utime.h
configure:6931: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:6962: checking whether struct tm is in sys/time.h or time.h
configure:6975: gcc -c -g -O2  conftest.c 1>&5
configure:6996: checking for tm_zone in struct tm
configure:7009: gcc -c -g -O2  conftest.c 1>&5
configure:7068: checking for tm_gmtoff in struct tm
configure:7081: gcc -c -g -O2  conftest.c 1>&5
configure:7104: checking for struct flock
configure:7119: gcc -c -g -O2  conftest.c 1>&5
configure:7146: checking for socklen_t
configure:7163: gcc -c -g -O2  conftest.c 1>&5
configure:7189: checking size of long
configure:7208: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7228: checking size of int
configure:7247: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7268: checking for st_blksize in struct stat
configure:7281: gcc -c -g -O2  conftest.c 1>&5
configure:7303: checking for st_blocks in struct stat
configure:7316: gcc -c -g -O2  conftest.c 1>&5
configure:7343: checking for st_rdev in struct stat
configure:7356: gcc -c -g -O2  conftest.c 1>&5
configure:7378: checking for size_t
configure:7411: checking for uid_t in sys/types.h
configure:7446: checking for struct sockaddr_storage
configure:7459: gcc -c -g -O2  conftest.c 1>&5
configure:7480: checking for IPv6 support
configure:7494: gcc -c -g -O2  conftest.c 1>&5
configure:7518: checking for vprintf
configure:7546: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7530: warning: conflicting types for built-in function `vprintf'
configure:7686: checking for asctime_r
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for chroot
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for ctime_r
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for cuserid
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for crypt
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
/tmp/ccYuMczd.o(.text+0x9): In function `main':
/root/php-4.2.2/configure:7708: undefined reference to `crypt'
collect2: ld returned 1 exit status
configure: failed program was:
#line 7691 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char crypt(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char crypt();

int main() {

/* 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_crypt) || defined (__stub___crypt)
choke me
#else
crypt();
#endif

; return 0; }
configure:7686: checking for flock
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for gai_strerror
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for gcvt
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for getlogin
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for gethostbyaddr
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for getprotobyname
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for getprotobynumber
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for getservbyname
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for getservbyport
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for getrusage
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for gettimeofday
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for gmtime_r
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for inet_aton
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for isascii
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for link
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for localtime_r
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for lockf
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for lrand48
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for memcpy
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7698: warning: conflicting types for built-in function `memcpy'
configure:7686: checking for memmove
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for mkstemp
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for mmap
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for nl_langinfo
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for putenv
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for realpath
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for random
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for rand_r
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for regcomp
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for res_search
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for setitimer
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for setlocale
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for localeconv
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for setsockopt
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for setvbuf
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for shutdown
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for sin
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7698: warning: conflicting types for built-in function `sin'
configure:7686: checking for snprintf
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7698: warning: conflicting types for built-in function `snprintf'
configure:7686: checking for srand48
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for srandom
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for statfs
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for statvfs
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for std_syslog
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
/tmp/ccMhW9ES.o(.text+0x9): In function `main':
/root/php-4.2.2/configure:7708: undefined reference to `std_syslog'
collect2: ld returned 1 exit status
configure: failed program was:
#line 7691 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char std_syslog(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char std_syslog();

int main() {

/* 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_std_syslog) || defined (__stub___std_syslog)
choke me
#else
std_syslog();
#endif

; return 0; }
configure:7686: checking for strcasecmp
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for strcoll
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for strdup
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for strerror
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for strftime
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for strstr
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7698: warning: conflicting types for built-in function `strstr'
configure:7686: checking for strtok_r
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for symlink
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for tempnam
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
/tmp/ccSmje1f.o(.text+0x9): In function `main':
/root/php-4.2.2/configure:7708: the use of `tempnam' is dangerous, better use `mkstemp'
configure:7686: checking for tzset
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for unsetenv
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for usleep
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for utime
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7686: checking for vsnprintf
configure:7714: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7698: warning: conflicting types for built-in function `vsnprintf'
configure:7740: checking for getaddrinfo
configure:7752: gcc -c -g -O2  conftest.c 1>&5
configure:7775: checking for strlcat
configure:7803: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
/tmp/ccWrn9d1.o(.text+0x9): In function `main':
/root/php-4.2.2/configure:7797: undefined reference to `strlcat'
collect2: ld returned 1 exit status
configure: failed program was:
#line 7780 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char strlcat(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char strlcat();

int main() {

/* 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_strlcat) || defined (__stub___strlcat)
choke me
#else
strlcat();
#endif

; return 0; }
configure:7775: checking for strlcpy
configure:7803: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
/tmp/ccYLBgJg.o(.text+0x9): In function `main':
/root/php-4.2.2/configure:7797: undefined reference to `strlcpy'
collect2: ld returned 1 exit status
configure: failed program was:
#line 7780 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char strlcpy(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char strlcpy();

int main() {

/* 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_strlcpy) || defined (__stub___strlcpy)
choke me
#else
strlcpy();
#endif

; return 0; }
configure:7775: checking for getopt
configure:7803: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7830: checking whether utime accepts a null argument
configure:7851: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:7877: checking for working alloca.h
configure:7910: checking for alloca
configure:7943: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:8110: checking whether sprintf is broken
configure:8125: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:8159: checking for declared timezone
configure:8180: gcc -c -g -O2  conftest.c 1>&5
configure:8206: checking for type of reentrant time-related functions
configure:8235: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure: In function `main':
configure:8227: warning: assignment makes integer from pointer without a cast
configure:8228: error: too many arguments to function `asctime_r'
configure: failed program was:
#line 8217 "configure"
#include "confdefs.h"

#include <time.h>

main() {
char buf[27];
struct tm t;
time_t old = 0;
int r, s;

s = gmtime_r(&old, &t);
r = (int) asctime_r(&t, buf, 26);
if (r == s && s == 0) return (0);
return (1);
}

configure:8265: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure: In function `main':
configure:8258: error: too many arguments to function `asctime_r'
configure: failed program was:
#line 8249 "configure"
#include "confdefs.h"

#include <time.h>
main() {
  struct tm t, *s;
  time_t old = 0;
  char buf[27], *p;
  
  s = gmtime_r(&old, &t);
  p = asctime_r(&t, buf, 26);
  if (p == buf && s == &t) return (0);
  return (1);
}
  
configure:8303: checking for readdir_r
configure:8331: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:8353: checking for type of readdir_r
configure:8389: gcc -o conftest -g -O2   conftest.c -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:8505: checking whether to include debugging symbols
configure:8562: checking layout of installed files
configure:8620: checking path to configuration file
configure:8685: checking whether to install PEAR, and where
configure:8748: checking whether to enable safe mode by default
configure:8806: checking for safe mode exec dir
configure:8848: checking for OpenSSL support
configure:9128: checking whether to enable PHP's own SIGCHLD handler
configure:9189: checking whether to enable magic quotes by default
configure:9250: checking whether to enable runpaths
configure:9299: checking whether to explicitly link against libgcc
configure:9404: checking whether to enable short tags by default
configure:9466: checking whether to enable dmalloc
configure:9577: checking for crypt in -lcrypt
configure:9596: gcc -o conftest -g -O2   conftest.c -lcrypt  -lresolv -lm -ldl -lnsl  -lresolv 1>&5
configure:9674: checking if the location of ZLIB install directory is defined
configure:9723: checking for ZLIB support
configure:10264: checking for ASPELL support
configure:10588: checking whether to enable bc style precision math functions
configure:10963: checking for BZip2 support
configure:11413: checking whether to enable calendar conversion support
configure:11675: checking for CCVS support
configure:12072: checking for cpdflib support
configure:12964: checking for CRACKlib support
configure:13373: checking whether to enable ctype functions
configure:13635: checking for CURL support
configure:14191: checking for CyberCash support
configure:14552: checking for cybermut support
configure:14976: checking for cyrus imap support
configure:15719: checking for xDBM support
configure:16335: checking whether to enable DBA
configure:16591: checking for GDBM support
configure:16825: checking for NDBM support
configure:17073: checking for Berkeley DB2 support
configure:17304: checking for Berkeley DB3 support
configure:17527: checking for DBM support
configure:17750: checking for CDB support
configure:17762: checking whether to enable DBA interface
configure:17994: checking whether to enable dbase support
configure:18256: checking for dbplus support
configure:18905: checking whether to enable dbx support
configure:19163: checking whether to enable direct I/O support
configure:19423: checking for DOM support
configure:20052: checking for DOM XSLT support
configure:20101: checking for DOM EXSLT support
configure:20760: checking whether to enable EXIF support
configure:21022: checking for FrontBase SQL92 (fbsql) support
configure:21438: checking for FDF support
configure:21912: checking whether to enable the bundled filePro support
configure:22174: checking for FriBidi support
configure:22658: checking whether to enable FTP support
configure:22937: checking for GD support
configure:25878: checking for GNU gettext support
configure:26553: checking for GNU MP support
configure:26906: checking for Hyperwave support
configure:27146: checking for ICAP support
configure:27539: checking for iconv support
configure:28204: checking for IMAP support
configure:29150: checking for Informix support
configure:29779: checking for Ingres II support
configure:30282: checking for InterBase support
configure:30679: checking for IRCG support
configure:31140: checking for Java support
configure:31704: checking for LDAP support
configure:33342: checking whether to enable multibyte string support
configure:33600: checking whether to enable japanese encoding translation
configure:33623: checking whether to enable multibyte regex support
configure:33650: checking for MCAL support
configure:34039: checking for mcrypt support
configure:34645: checking for MCVE support
configure:35045: checking for mhash support
configure:35446: checking for MING support
configure:35903: checking for mnoGoSearch support
configure:36308: checking for msession support
configure:36691: checking for mSQL support
configure:37127: checking for Muscat support
configure:37587: checking for MySQL support
configure:39323: checking size of char
configure:39342: gcc -o conftest -g -O2   conftest.c -lcrypt -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 1>&5
configure:39363: checking size of int
configure:39402: checking size of long
configure:39441: checking size of long long
configure:39460: gcc -o conftest -g -O2   conftest.c -lcrypt -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 1>&5
configure:39480: checking for size_t
configure:39513: checking whether time.h and sys/time.h may both be included
configure:39527: gcc -c -g -O2  conftest.c 1>&5
configure:39548: checking for uid_t in sys/types.h
configure:39583: checking for type ulong
configure:39602: gcc -o conftest -g -O2   conftest.c -lcrypt -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 1>&5
configure:39626: checking for type uchar
configure:39645: gcc -o conftest -g -O2   conftest.c -lcrypt -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 1>&5
configure: In function `main':
configure:39639: error: `uchar' undeclared (first use in this function)
configure:39639: error: (Each undeclared identifier is reported only once
configure:39639: error: for each function it appears in.)
configure:39639: error: parse error before "foo"
configure:39640: error: `foo' undeclared (first use in this function)
configure: failed program was:
#line 39634 "configure"
#include "confdefs.h"
#include <stdio.h>
#include <sys/types.h>
main()
{
  uchar foo;
  foo++;
  exit(0);
}
configure:39669: checking for type uint
configure:39688: gcc -o conftest -g -O2   conftest.c -lcrypt -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 1>&5
configure:39712: checking for type ushort
configure:39731: gcc -o conftest -g -O2   conftest.c -lcrypt -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 1>&5
configure:39755: checking for int8
configure:39785: gcc -o conftest -g -O2   conftest.c -lcrypt -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 1>&5
configure: In function `main':
configure:39779: error: `int8' undeclared (first use in this function)
configure:39779: error: (Each undeclared identifier is reported only once
configure:39779: error: for each function it appears in.)
configure:39779: error: parse error before "i"
configure: failed program was:
#line 39763 "configure"
#include "confdefs.h"

#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif

#ifdef HAVE_STDDEF_H
#include <stddef.h>
#endif

#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif

int main()
{
    int8 i;
    return 0;
}

configure:39811: checking base type of last arg to accept
configure:39839: g++ -c   conftest.C 1>&5
./configure: g++: command not found
configure: failed program was:
#line 39829 "configure"
#include "confdefs.h"
#include <stdlib.h>
#include <sys/types.h>
#include <sys/socket.h>

int main() {
int a = accept(1, (struct sockaddr *) 0, (socklen_t *) 0);
; return 0; }
configure:39859: g++ -c   conftest.C 1>&5
./configure: g++: command not found
configure: failed program was:
#line 39849 "configure"
#include "confdefs.h"
#include <stdlib.h>
#include <sys/types.h>
#include <sys/socket.h>

int main() {
int a = accept(1, (struct sockaddr *) 0, (size_t *) 0);
; return 0; }
configure:39888: checking return type of qsort
configure:39905: gcc -c -g -O2  conftest.c 1>&5
configure:39895:81: warning: extra tokens at end of #ifdef directive
configure:39971: checking for mysql_close in -lmysqlclient
configure:39990: gcc -o conftest -g -O2  
    -L/usr/local/mysql/lib
    conftest.c -lmysqlclient  -lcrypt -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 1>&5
/usr/local/mysql/lib/libmysqlclient.a(my_compress.o)(.text+0xb4): In function `my_compress_alloc':
: undefined reference to `compress'
/usr/local/mysql/lib/libmysqlclient.a(my_compress.o)(.text+0x12a): In function `my_uncompress':
: undefined reference to `uncompress'
collect2: ld returned 1 exit status
configure: failed program was:
#line 39979 "configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char mysql_close();

int main() {
mysql_close()
; return 0; }
configure:40198: checking for mysql_errno in -lmysqlclient
configure:40217: gcc -o conftest -g -O2  
        -L/usr/local/mysql/lib
        conftest.c -lmysqlclient  -lz -lcrypt -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 1>&5
configure:40383: checking for MySQL UNIX socket
configure:40435: checking for ncurses support
configure:41086: checking for Oracle-OCI8 support
configure:42139: checking for Adabas support
configure:42330: checking for SAP DB support
configure:42466: checking for Solid support
configure:42600: checking for IBM DB2 support
configure:42655: checking for Empress support
configure:42717: checking for Empress local access support
configure:42795: checking for Birdstep support
configure:42851: checking for a custom ODBC support
configure:42885: checking for iODBC support
configure:43017: checking for Easysoft ODBC-ODBC Bridge support
configure:43069: checking for unixODBC support
configure:43121: checking for OpenLink ODBC support
configure:43257: checking for DBMaker support
configure:43891: checking for Oracle-ORACLE support
configure:48821: checking whether to enable user-space object overloading support
configure:49083: checking for Ovrimos SQL Server support
configure:49529: checking whether to enable pcntl support
configure:49967: checking for PCRE support
configure:50455: checking for memmove
configure:50512: checking for PDFlib support
configure:51771: checking for Verisign Payflow Pro support
configure:52215: checking for PostgreSQL support
configure:52918: checking whether to enable POSIX-like functions
configure:53177: checking for seteuid
configure:53205: gcc -o conftest -g -O2   -Wl,-rpath,/usr/local/mysql/lib -L/usr/local/mysql/lib conftest.c -lmysqlclient -lz -lcrypt -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 1>&5
configure:53177: checking for setegid
configure:53205: gcc -o conftest -g -O2   -Wl,-rpath,/usr/local/mysql/lib -L/usr/local/mysql/lib conftest.c -lmysqlclient -lz -lcrypt -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 1>&5
configure:53177: checking for setsid
configure:53205: gcc -o conftest -g -O2   -Wl,-rpath,/usr/local/mysql/lib -L/usr/local/mysql/lib conftest.c -lmysqlclient -lz -lcrypt -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 1>&5
configure:53177: checking for getsid
configure:53205: gcc -o conftest -g -O2   -Wl,-rpath,/usr/local/mysql/lib -L/usr/local/mysql/lib conftest.c -lmysqlclient -lz -lcrypt -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 1>&5
configure:53177: checking for setpgid
configure:53205: gcc -o conftest -g -O2   -Wl,-rpath,/usr/local/mysql/lib -L/usr/local/mysql/lib conftest.c -lmysqlclient -lz -lcrypt -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 1>&5
configure:53177: checking for getpgid
configure:53205: gcc -o conftest -g -O2   -Wl,-rpath,/usr/local/mysql/lib -L/usr/local/mysql/lib conftest.c -lmysqlclient -lz -lcrypt -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 1>&5
configure:53177: checking for ctermid
configure:53205: gcc -o conftest -g -O2   -Wl,-rpath,/usr/local/mysql/lib -L/usr/local/mysql/lib conftest.c -lmysqlclient -lz -lcrypt -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 1>&5
configure:53177: checking for mkfifo
configure:53205: gcc -o conftest -g -O2   -Wl,-rpath,/usr/local/mysql/lib -L/usr/local/mysql/lib conftest.c -lmysqlclient -lz -lcrypt -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 1>&5
configure:53177: checking for getrlimit
configure:53205: gcc -o conftest -g -O2   -Wl,-rpath,/usr/local/mysql/lib -L/usr/local/mysql/lib conftest.c -lmysqlclient -lz -lcrypt -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 1>&5
configure:53236: checking for PSPELL support
configure:53644: checking whether to include QDOM support
configure:54738: checking for libedit readline replacement
configure:54787: checking for readline support
configure:56347: checking for recode support
configure:56887: checking whether to enable PHP sessions
configure:56936: checking for mm support
configure:57130: checking for pread
configure:57158: gcc -o conftest -g -O2   -Wl,-rpath,/usr/local/mysql/lib -L/usr/local/mysql/lib conftest.c -lmysqlclient -lz -lcrypt -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 1>&5
configure:57130: checking for pwrite
configure:57158: gcc -o conftest -g -O2   -Wl,-rpath,/usr/local/mysql/lib -L/usr/local/mysql/lib conftest.c -lmysqlclient -lz -lcrypt -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 1>&5
configure:57184: checking whether pwrite works without custom declaration
configure:57197: gcc -c -g -O2  conftest.c 1>&5
configure: In function `main':
configure:57194: error: `pwrite' undeclared (first use in this function)
configure:57194: error: (Each undeclared identifier is reported only once
configure:57194: error: for each function it appears in.)
configure: failed program was:
#line 57190 "configure"
#include "confdefs.h"
#include <unistd.h>
int main() {
size_t (*func)() = pwrite
; return 0; }
configure:57222: gcc -o conftest -g -O2   -Wl,-rpath,/usr/local/mysql/lib -L/usr/local/mysql/lib conftest.c -lmysqlclient -lz -lcrypt -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 1>&5
configure:57285: checking whether pread works without custom declaration
configure:57298: gcc -c -g -O2  conftest.c 1>&5
configure: In function `main':
configure:57295: error: `pread' undeclared (first use in this function)
configure:57295: error: (Each undeclared identifier is reported only once
configure:57295: error: for each function it appears in.)
configure: failed program was:
#line 57291 "configure"
#include "confdefs.h"
#include <unistd.h>
int main() {
size_t (*func)() = pread
; return 0; }
configure:57324: gcc -o conftest -g -O2   -Wl,-rpath,/usr/local/mysql/lib -L/usr/local/mysql/lib conftest.c -lmysqlclient -lz -lcrypt -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 1>&5
configure:57604: checking whether to enable shmop support
configure:57866: checking for SNMP support
configure:58480: checking whether to enable UCD SNMP hack
configure:58507: checking whether to enable sockets support
configure:58868: checking for dlopen
configure:58896: gcc -o conftest -g -O2   -Wl,-rpath,/usr/local/mysql/lib -L/usr/local/mysql/lib conftest.c -lmysqlclient -lz -lcrypt -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 1>&5
configure:58920: checking for pam_start in -lpam
configure:58939: gcc -o conftest -g -O2   -Wl,-rpath,/usr/local/mysql/lib -L/usr/local/mysql/lib conftest.c -lpam  -lmysqlclient -lz -lcrypt -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 1>&5
configure:58968: checking for getcwd
configure:58996: gcc -o conftest -g -O2   -Wl,-rpath,/usr/local/mysql/lib -L/usr/local/mysql/lib conftest.c -lmysqlclient -lz -lcrypt -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 1>&5
configure:58968: checking for getwd
configure:58996: gcc -o conftest -g -O2   -Wl,-rpath,/usr/local/mysql/lib -L/usr/local/mysql/lib conftest.c -lmysqlclient -lz -lcrypt -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 1>&5
/tmp/ccSsVWdi.o(.text+0x9): In function `main':
/root/php-4.2.2/configure:58990: the `getwd' function is dangerous and should not be used.
configure:59024: checking for standard DES crypt
configure:59050: gcc -o conftest -g -O2   -Wl,-rpath,/usr/local/mysql/lib -L/usr/local/mysql/lib conftest.c -lmysqlclient -lz -lcrypt -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 1>&5
configure:59081: checking for extended DES crypt
configure:59107: gcc -o conftest -g -O2   -Wl,-rpath,/usr/local/mysql/lib -L/usr/local/mysql/lib conftest.c -lmysqlclient -lz -lcrypt -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 1>&5
configure: failed program was:
#line 59092 "configure"
#include "confdefs.h"

#if HAVE_CRYPT_H
#include <crypt.h>
#endif

main() {
#if HAVE_CRYPT
    exit (strcmp((char *)crypt("rasmuslerdorf","_J9..rasm"),"_J9..rasmBYk8r9AiWNc"));
#else
        exit(0);
#endif
}
configure:59138: checking for MD5 crypt
configure:59173: gcc -o conftest -g -O2   -Wl,-rpath,/usr/local/mysql/lib -L/usr/local/mysql/lib conftest.c -lmysqlclient -lz -lcrypt -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 1>&5
configure:59233: checking for Blowfish crypt
configure:59265: gcc -o conftest -g -O2   -Wl,-rpath,/usr/local/mysql/lib -L/usr/local/mysql/lib conftest.c -lmysqlclient -lz -lcrypt -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 1>&5
configure: failed program was:
#line 59244 "configure"
#include "confdefs.h"

#if HAVE_CRYPT_H
#include <crypt.h>
#endif

main() {
#if HAVE_CRYPT
    char salt[30], answer[70];
   
    salt[0]='$'; salt[1]='2'; salt[2]='a'; salt[3]='$'; salt[4]='0'; salt[5]='7'; salt[6]='$'; salt[7]='\0';
    strcat(salt,"rasmuslerd............");
    strcpy(answer,salt);
    strcpy(&answer[29],"nIdrcHdxcUxWomQX9j6kvERCFjTg7Ra");
    exit (strcmp((char *)crypt("rasmuslerdorf",salt),answer));
#else
        exit(0);
#endif
}
configure:59297: checking whether flush should be called explicitly after a bufferered io
configure:59346: gcc -o conftest -g -O2   -Wl,-rpath,/usr/local/mysql/lib -L/usr/local/mysql/lib conftest.c -lmysqlclient -lz -lcrypt -lresolv -lm -ldl -lnsl  -lresolv -lcrypt 1>&5
/tmp/ccYQfvEF.o(.text+0x12): In function `main':
/root/php-4.2.2/configure:59315: the use of `tmpnam' is dangerous, better use `mkstemp'
configure:59423: checking whether to enable aggregation support
configure:59693: checking for libswf support
configure:60105: checking for Sybase support
configure:60689: checking for Sybase-CT support
configure:61435: checking whether to enable System V semaphore support
configure:61743: checking whether to enable System V shared memory support
configure:62006: checking whether to enable tokenizer support
configure:62268: checking for vpopmail support
configure:62791: checking whether to enable WDDX support
configure:63061: checking whether byte ordering is bigendian
configure:63079: gcc -c -g -O2  conftest.c 1>&5
configure:63094: gcc -c -g -O2  conftest.c 1>&5
configure: In function `main':
configure:63089: error: `not' undeclared (first use in this function)
configure:63089: error: (Each undeclared identifier is reported only once
configure:63089: error: for each function it appears in.)
configure:63089: error: parse error before "big"
configure: failed program was:
#line 63083 "configure"
#include "confdefs.h"
#include <sys/types.h>
#include <sys/param.h>
int main() {

#if BYTE_ORDER != BIG_ENDIAN
not big endian
#endif
; return 0; }
configure:63161: checking whether to enable XML support
configure:63210: checking external libexpat install dir
configure:63947: checking for XMLRPC-EPI support
configure:63996: checking libexpat dir for XMLRPC-EPI
configure:65538: checking whether to enable xslt support
configure:65587: checking for XSLT Sablotron backend
configure:65636: checking libexpat dir for Sablotron XSL support
configure:65685: checking enable JavaScript for Sablotron
configure:66760: checking for YAZ support
configure:67185: checking whether to include YP support
configure:67454: checking for ZIP support
configure:68039: checking whether to enable versioning
configure:68114: checking which regex library to use
configure:68206: checking build system type
configure:68235: checking for ld used by GCC
configure:68303: checking if the linker (/usr/bin/ld) is GNU ld
GNU ld version 2.14.90.0.4 20030523
configure:68320: checking for /usr/bin/ld option to reload object files
configure:68332: checking for BSD-compatible nm
configure:68370: checking how to recognise dependant libraries
configure:68553: checking for object suffix
configure:68559: gcc -c -g -O2  conftest.c 1>&5
configure:68579: checking for executable suffix
configure:68589: gcc -o conftest -g -O2   conftest.c  1>&5
configure:68620: checking command to parse /usr/bin/nm -B output
configure:68700: gcc -c -g -O2  conftest.c 1>&5
configure:68703: /usr/bin/nm -B conftest.o | sed -n -e 's/^.*[ ]\([ABCDGISTW][ABCDGISTW]*\)[ ][ ]*\(\)\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2\3 \3/p' > conftest.nm
configure:68754: gcc -o conftest -g -O2   conftest.c conftstm.o 1>&5
configure:68803: checking for dlfcn.h
configure:68813: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:68981: checking for ranlib
configure:69048: checking for strip
configure:69291: checking for objdir
configure:69318: checking for gcc option to produce PIC
configure:69470: checking if gcc PIC flag -fPIC works
configure:69484: gcc -c -g -O2 -fPIC -DPIC  conftest.c 1>&5
configure:69536: checking if gcc static flag -static works
configure:69551: gcc -o conftest -g -O2   -static conftest.c  1>&5
configure:69578: checking if gcc supports -c -o file.o
configure:69597: gcc -c -g -O2 -o out/conftest2.o  conftest.c 1>&5
configure:69626: checking if gcc supports -c -o file.lo
configure:69644: gcc -c -g -O2 -c -o conftest.lo  conftest.c 1>&5
configure:69694: checking if gcc supports -fno-rtti -fno-exceptions
configure:69707: gcc -c -g -O2 -fno-rtti -fno-exceptions -c conftest.c  conftest.c 1>&5
cc1: warning: "-fno-rtti" is valid for C++ but not for C/ObjC
cc1: warning: "-fno-rtti" is valid for C++ but not for C/ObjC
configure:69734: checking whether the linker (/usr/bin/ld) supports shared libraries
configure:70418: checking how to hardcode library paths into programs
configure:70446: checking whether stripping libraries is possible
configure:70460: checking dynamic linker characteristics
configure:70857: checking if libtool supports shared libraries
configure:70861: checking whether to build shared libraries
configure:70884: checking whether to build static libraries
configure:72068: checking for limits.h
configure:72068: checking for malloc.h
configure:72078: gcc -E  conftest.c >/dev/null 2>conftest.out
configure:72068: checking for string.h
configure:72068: checking for unistd.h
configure:72068: checking for stdarg.h
configure:72068: checking for sys/types.h
configure:72068: checking for sys/time.h
configure:72068: checking for signal.h
configure:72068: checking for unix.h
configure:72068: checking for dlfcn.h
configure:72106: checking for size_t
configure:72139: checking return type of signal handlers
configure:72161: gcc -c -g -O2  conftest.c 1>&5
configure:72181: checking for dlopen in -ldl
configure:72221: checking for dlopen
configure:72273: checking whether dlsym() requires a leading underscore in symbol names
configure:72341: gcc -o conftest -g -O2   conftest.c -ldl  1>&5
configure:72370: checking for uint
configure:72403: checking for ulong
configure:72438: checking for vprintf
configure:72543: checking for 8-bit clean memcmp
configure:72561: gcc -o conftest -g -O2   conftest.c -ldl  1>&5
configure:72581: checking for working alloca.h
configure:72614: checking for alloca
configure:72815: checking for memcpy
configure:72815: checking for strdup
configure:72815: checking for getpid
configure:72843: gcc -o conftest -g -O2   conftest.c -ldl  1>&5
configure:72815: checking for kill
configure:72843: gcc -o conftest -g -O2   conftest.c -ldl  1>&5
configure:72815: checking for strtod
configure:72843: gcc -o conftest -g -O2   conftest.c -ldl  1>&5
configure:72815: checking for strtol
configure:72843: gcc -o conftest -g -O2   conftest.c -ldl  1>&5
configure:72815: checking for finite
configure:72843: gcc -o conftest -g -O2   conftest.c -ldl  1>&5
configure:72815: checking for fpclass
configure:72843: gcc -o conftest -g -O2   conftest.c -ldl  1>&5
/tmp/ccSgGbYq.o(.text+0x9): In function `main':
/root/php-4.2.2/configure:72837: undefined reference to `fpclass'
collect2: ld returned 1 exit status
configure: failed program was:
#line 72820 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char fpclass(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char fpclass();

int main() {

/* 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_fpclass) || defined (__stub___fpclass)
choke me
#else
fpclass();
#endif

; return 0; }
configure:72869: checking whether sprintf is broken
configure:72918: checking for finite
configure:72918: checking for isfinite
configure:72946: gcc -o conftest -g -O2   conftest.c -ldl  1>&5
/tmp/cc60o9SL.o(.text+0x9): In function `main':
/root/php-4.2.2/configure:72940: undefined reference to `isfinite'
collect2: ld returned 1 exit status
configure: failed program was:
#line 72923 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
    which can conflict with char isfinite(); below.  */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error.  */
/* We use char because int might match the return type of a gcc2
    builtin and then its argument prototype would still apply.  */
char isfinite();

int main() {

/* 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_isfinite) || defined (__stub___isfinite)
choke me
#else
isfinite();
#endif

; return 0; }
configure:72918: checking for isinf
configure:72946: gcc -o conftest -g -O2   conftest.c -ldl  1>&5
configure:72918: checking for isnan
configure:72946: gcc -o conftest -g -O2   conftest.c -ldl  1>&5
configure:72973: checking whether fp_except is defined
configure:72990: gcc -c -g -O2  conftest.c 1>&5
configure:72981:27: floatingpoint.h: No such file or directory
configure: In function `main':
configure:72985: error: `fp_except' undeclared (first use in this function)
configure:72985: error: (Each undeclared identifier is reported only once
configure:72985: error: for each function it appears in.)
configure:72985: error: parse error before "x"
configure: failed program was:
#line 72979 "configure"
#include "confdefs.h"

#include <floatingpoint.h>

int main() {

fp_except x = (fp_except) 0;

; return 0; }
configure:73058: checking whether to enable experimental ZTS
configure:73062: checking whether to enable inline optimization for GCC
configure:73066: checking whether to enable a memory limit
configure:73070: checking whether to enable Zend debugging
configure:73127: checking for inline
configure:73141: gcc -c -g -O2  conftest.c 1>&5
configure:73204: checking for stdarg.h
configure:73992: checking for working mkdir -p
回复 支持 反对

使用道具 举报

 楼主| 发表于 2005-9-25 10:26:59 | 显示全部楼层
问题已经搞定。谢谢大家
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表