Script started on Fri Oct 4 22:00:50 2002 [barrie@magnolia ~]$ ps -ef | grep http barrie 8570 8551 0 22:01 pts/1 00:00:00 grep http [barrie@magnolia ~]$ telnet localhost 80 Trying 127.0.0.1... telnet: connect to address 127.0.0.1: Connection refused [barrie@magnolia ~]$ lscd tmp [barrie@magnolia ~/tmp]$ ll total 25272 -rw-rw-r-- 1 barrie barrie 4971969 Oct 4 18:52 httpd-2.0.42.tar.gz -rw-rw-r-- 1 barrie barrie 4835188 Oct 4 18:57 httpd-2.0.43.tar.gz drwxrwxr-x 12 barrie barrie 4096 Jul 18 2001 lynx2-8-4 -rw-rw-r-- 1 barrie barrie 1539499 Sep 30 13:23 lynx-2.8.4-18.i386.rpm -rw-rw-r-- 1 barrie barrie 9738240 Jul 18 2001 lynx2.8.4.tar -rw-rw-r-- 1 barrie barrie 2556501 Jul 18 2001 lynx2.8.4.tar.gz -rw-r--r-- 1 barrie barrie 2170570 Oct 4 21:23 openssl-0.9.6g.tar.gz [barrie@magnolia ~/tmp]$ This release fixes a security problem described in CAN- 2002-0840 on cve.mitre.org. It also fixes some bugs from 2.0.42 (and earlier) as  well as adding some additional capability. All users of Apache 2.0.42 and prior  are urged to upgrade as soon as possible. [barrie@magnolia ~/tmp]$ echo Apache 2.0.43 is the best available version. Apache 2.0.43 is the best available version. [barrie@magnolia ~/tmp]$ sudo cp httpd-2.0.43.tar.gz /usr/local [barrie@magnolia ~/tmp]$ cd !$ cd /usr/local [barrie@magnolia local]$ ls bin etc httpd-2.0.43.tar.gz lib lynx2-8-4 sbin src doc games include libexec lynx2.8.4.tar share [barrie@magnolia local]$ tar xzf httpd-2.0.43.tar.gz [barrie@magnolia local]$ cd httpd-2.0.43 [barrie@magnolia httpd-2.0.43]$ ls ABOUT_APACHE BuildBin.dsp emacs-style Makefile.in ROADMAP acconfig.h buildconf include Makefile.win server acinclude.m4 CHANGES INSTALL modules srclib Apache.dsp config.layout InstallBin.dsp NWGNUmakefile support Apache.dsw configure LAYOUT os test apachenw.mcp.zip configure.in libhttpd.dsp README build docs LICENSE README.platforms [barrie@magnolia httpd-2.0.43]$ more README Apache HTTP Server What is it? ----------- The Apache HTTP Server is a powerful and flexible HTTP/1.1 compliant web server. Originally designed as a replacement for the NCSA HTTP Server, it has grown to be the most popular web server on the Internet. As a project of the Apache Software Foundation, the developers aim to collaboratively develop and maintain a robust, commercial-grade, standards-based server with freely available source code. The Latest Version ------------------ Details of the latest version can be found on the Apache HTTP server project page under http://httpd.apache.org/. Documentation ------------- --More--(20%)  The documentation available as of the date of this release is included in HTML format in the docs/manual/ directory. The most up-to-date documentation can be found at http://httpd.apache.org/docs-2.0/. Installation ------------ Please see the file called INSTALL. Platform specific notes can be found in README.platforms. Licensing --------- Please see the file called LICENSE. Contacts -------- o If you want to be informed about new code releases, bug fixes, security fixes, general news and information about the Apache server --More--(38%) subscribe to the apache-announce mailing list as described under http://httpd.apache.org/lists.html#http-announce o If you want freely available support for running Apache please join the Apache user community by subscribing to Users Mailing List at http://httpd.apache.org/userslist.html or one of the following USENET newsgroups: comp.infosystems.www.servers.unix comp.infosystems.www.servers.ms-windows Also available at: http://groups.google.com/groups?group=comp.infosystems.www.servers o If you want commercial support for running Apache please contact one of the companies and contractors which are listed at http://www.apache.org/info/support.cgi o If you have a concrete bug report for Apache please go to the Apache Group Bug Database and submit your report: http://httpd.apache.org/bug_report.html o If you want to participate in actively developing Apache please subscribe to the `dev@httpd.apache.org' mailing list as described at --More--(70%) http://www.apache.org/lists.html#http-dev Acknowledgments ---------------- We wish to acknowledge the following copyrighted works that make up portions of the Apache software: Portions of this software were developed at the National Center for Supercomputing Applications (NCSA) at the University of Illinois at Urbana-Champaign. This software contains code derived from the RSA Data Security Inc. MD5 Message-Digest Algorithm, including various modifications by Spyglass Inc., Carnegie Mellon University, and Bell Communications Research, Inc (Bellcore). Regular expression support is provided by the PCRE library package, which is open source software, written by Philip Hazel, and copyright by the University of Cambridge, England. The original software is available from ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ --More--(97%) Apache 2.0 relies heavily on the use of autoconf and libtool to provide a build environment. [barrie@magnolia httpd-2.0.43]$ less INSTALL APACHE INSTALLATION OVERVIEW Quick Start - Unix ------------------ For complete installation documentation, see [ht]docs/manual/install.html or http://httpd.apache.org/docs-2.0/install.html $ ./configure --prefix=PREFIX $ make $ make install $ PREFIX/bin/apachectl start NOTES: * Replace PREFIX with the filesystem path under which Apache should be installed. A typical installation might use "/usr/local/apache2" for PREFIX (without the quotes). * If you are building on FreeBSD, be aware that threads will be disabled and the prefork MPM will be used by default, as threads do not work well with Apache on FreeBSD. If you wish to try a threaded Apache on FreeBSD anyway, use INSTALL  "./configure --enable-threads". * If you are building on Mac OS X (Darwin), make sure to use libtool 1.4.2 or newer. * If you are a developer building Apache directly from CVS, you will need to run ./buildconf before running configure. For a short impression of what possibilities you have, here is a typical example which configures Apache for the installation tree /sw/pkg/apache with a particular compiler and flags plus the two additional modules mod_rewrite and mod_speling for later loading through the DSO mechanism: $ CC="pgcc" CFLAGS="-O2" \ ./configure --prefix=/sw/pkg/apache \ --enable-rewrite=shared \ --enable-speling=shared The easiest way to find all of the configuration flags for Apache 2.0 is to run ./configure --help. : Quick Start - Windows --------------------- For complete documentation, see [ht]docs/manual/platform/windows.html or http://httpd.apache.org/docs-2.0/platform/windows.html. The Apache/Win32 binaries are primarily distributed as a Windows Installer package (.msi), and may be available as a .zip file as well. These packages are named apache-2.0.xx-win32-x86.msi and apache-2.0.xx-win32-x86.zip. Please choose the .msi package if at all possible. If you have unpacked a source distribution (named httpd-2.0-xx.zip, without any -win32-x86 notation) you must compile the package yourself, see the links mentioned above. Unless you intended to do this, please look again for the binary package from http://www.apache.org/dist/httpd/binaries/win32/ and install that .msi (or .zip package, if you must.) If you have unpacked this binary distribution from the .zip package, you _must_ edit the conf/httpd.conf file (with notepad or another text editor) to reflect the correct ServerName, Domain, and directory paths. Search for the text "@@" to discover what you must edit. To install and start the service after you have corrected the httpd.conf file, use the command : bin\Apache -k install bin\Apache -k start The .msi package configures the httpd.conf file, and installs and starts the Apache2 service for you. It also installs plenty of useful shortcuts and the taskbar ApacheMonitor. We strongly encourage you to use it. Postscript ---------- The Apache HTTP Server group cannot field user's installation questions. There are many valuable forums to help you get started. Please refer your questions to the appropriate forum, such as the Users Mailing List at http://httpd.apache.org/userslist.html or the usenet newsgroups comp.infosystems.www.servers.unix or comp.infosystems.www.servers.ms-windows. Thanks for using the Apache HTTP Server, version 2.0. The Apache Software Foundation http://www.apache.org/ (END) [?1l>[?1047l[?1048l[barrie@magnolia httpd-2.0.43]$ sudo ./configure --help Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print `checking...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for `--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or `..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [/usr/local/apache2] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, `make install' will install all the files in `/usr/local/apache2/bin', `/usr/local/apache2/lib' etc. You can specify an installation prefix other than `/usr/local/apache2' using `--prefix', for instance `--prefix=$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --datadir=DIR read-only architecture-independent data [PREFIX/share] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --infodir=DIR info documentation [PREFIX/info] --mandir=DIR man documentation [PREFIX/man] System types: --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] --target=TARGET configure for building compilers for TARGET [HOST] Optional Features: --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-layout=LAYOUT --enable-maintainer-mode Turn on debugging and compile time warnings --enable-modules=MODULE-LIST Modules to enable --enable-mods-shared=MODULE-LIST Shared modules to enable --disable-access host-based access control --disable-auth user-based access control --enable-auth-anon anonymous user access --enable-auth-dbm DBM-based access databases --enable-auth-digest RFC2617 Digest authentication --enable-isapi isapi extension support --enable-file-cache File cache --enable-echo ECHO server --disable-charset-lite character set translation --enable-charset-lite character set translation --enable-cache dynamic file caching --enable-disk-cache disk caching module --enable-mem-cache memory caching module --enable-example example and demo module --enable-ext-filter external filter module --enable-case-filter example uppercase conversion filter --enable-case-filter-in example uppercase conversion input filter --enable-auth-ldap LDAP based authentication --enable-ldap LDAP caching and connection pooling services --disable-include Server Side Includes --enable-deflate Deflate transfer encoding support --disable-log-config logging configuration --disable-env clearing/setting of ENV vars --enable-mime-magic automagically determining MIME type --enable-cern-meta CERN-type meta files --enable-expires Expires header control --enable-headers HTTP header control --enable-usertrack user-session tracking --enable-unique-id per-request unique ids --disable-setenvif basing ENV vars on headers --enable-proxy Apache proxy module --enable-proxy-connect Apache proxy CONNECT module --enable-proxy-ftp Apache proxy FTP module --enable-proxy-http Apache proxy HTTP module --enable-ssl SSL/TLS support (mod_ssl) --enable-optional-hook-export example optional hook exporter --enable-optional-hook-import example optional hook importer --enable-optional-fn-import example optional function importer --enable-optional-fn-export example optional function exporter --enable-bucketeer buckets manipulation filter --enable-static-support Build a statically linked version the support binaries --enable-static-htpasswd Build a statically linked version of htpasswd --enable-static-htdigest Build a statically linked version of htdigest --enable-static-rotatelogs Build a statically linked version of rotatelogs --enable-static-logresolve Build a statically linked version of logresolve --enable-static-htdbm Build a statically linked version of htdbm --enable-static-ab Build a statically linked version of ab --enable-static-checkgid Build a statically linked version of checkgid --enable-http HTTP protocol handling --disable-mime mapping of file-extension to MIME --enable-dav WebDAV protocol handling --disable-status process/thread monitoring --disable-autoindex directory listing --disable-asis as-is filetypes --enable-info server information --enable-suexec set uid and gid for spawned processes --disable-cgid CGI scripts --enable-cgi CGI scripts --disable-cgi CGI scripts --enable-cgid CGI scripts --enable-dav-fs DAV provider for the filesystem --enable-vhost-alias mass hosting module --disable-negotiation content negoatiation --disable-dir directory request handling --disable-imap internal imagemaps --disable-actions Action triggering on requests --enable-speling correct common URL misspellings --disable-userdir mapping of user requests --disable-alias translation of requests --enable-rewrite regex URL translation --enable-so DSO capability Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-apr=DIR|FILE prefix for installed APR, path to APR build tree, or the full path to apr-config --with-apr-util=DIR prefix for installed APU, or path to APU build tree --with-port=PORT Port on which to listen (default is 80) --with-z=DIR use a specific zlib library --with-ssl=DIR SSL/TLS toolkit (OpenSSL) --with-mpm=MPM Choose the process model for Apache to use. MPM={beos|worker|prefork|mpmt_os2|perchild|leader|threadpool} --with-module=module-type:module-file Enable module-file in the modules/ directory. --with-program-name alternate executable name --with-suexec-bin Path to suexec binary --with-suexec-caller User allowed to call SuExec --with-suexec-userdir User subdirectory --with-suexec-docroot SuExec root directory --with-suexec-uidmin Minimal allowed UID --with-suexec-gidmin Minimal allowed GID --with-suexec-logfile Set the logfile --with-suexec-safepath Set the safepath --with-suexec-umask umask for suexec'd process Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory CPPFLAGS C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CPP C preprocessor Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. [barrie@magnolia httpd-2.0.43]$ less ./configure --help [?1048h[?1047h[?1h=#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.53. # # Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002 # Free Software Foundation, Inc. # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. if expr a : '\(a\)' >/dev/null 2>&1; then as_expr=expr else as_expr=false fi ## --------------------- ## ## M4sh Initialization. ## ## --------------------- ## # Be Bourne compatible if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh ./configure (file 1 of 2)  ESCESCOOBB NULLCMD=: : ESCESCOOBBelif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then : ESCESCOOBB set -o posix : ESCESCOOBBfi : ESCESCOOBB : ESCESCOOBB# NLS nuisances. : ESCESCOOBB# Support unset when possible. : ESCESCOOBBif (FOO=FOO; unset FOO) >/dev/null 2>&1; then : ESCESCOOBB as_unset=unset : ESCESCOOBBelse : ESCESCOOBB as_unset=false : ESCESCOOBBfi : ESCESCOOBB : ESCESCOOBB(set +x; test -n "`(LANG=C; export LANG) 2>&1`") && : ESCESCOOBB { $as_unset LANG || test "${LANG+set}" != set; } || : ESCESCOOBB { LANG=C; export LANG; } : ESCESCOOBB(set +x; test -n "`(LC_ALL=C; export LC_ALL) 2>&1`") && : ESCESCOOBB { $as_unset LC_ALL || test "${LC_ALL+set}" != set; } || : ESCESCOOBB { LC_ALL=C; export LC_ALL; } : ESCESCOOBB(set +x; test -n "`(LC_TIME=C; export LC_TIME) 2>&1`") && : ESCESCOOBB { $as_unset LC_TIME || test "${LC_TIME+set}" != set; } || : ESCESCOOBB { LC_TIME=C; export LC_TIME; } : ESCESCOOBB(set +x; test -n "`(LC_CTYPE=C; export LC_CTYPE) 2>&1`") && : ESCESCOOBB { $as_unset LC_CTYPE || test "${LC_CTYPE+set}" != set; } || : ESCESCOOBB { LC_CTYPE=C; export LC_CTYPE; } : ESCESCOOBB(set +x; test -n "`(LANGUAGE=C; export LANGUAGE) 2>&1`") && : ESCESCOOBB { $as_unset LANGUAGE || test "${LANGUAGE+set}" != set; } || : ESCESCOOBB { LANGUAGE=C; export LANGUAGE; } : ESCESCOOBB(set +x; test -n "`(LC_COLLATE=C; export LC_COLLATE) 2>&1`") && : ESCESCOOBB { $as_unset LC_COLLATE || test "${LC_COLLATE+set}" != set; } || : ESCESCOOBB { LC_COLLATE=C; export LC_COLLATE; } : ESCESCOOBB(set +x; test -n "`(LC_NUMERIC=C; export LC_NUMERIC) 2>&1`") && : ESCESCOOBB { $as_unset LC_NUMERIC || test "${LC_NUMERIC+set}" != set; } || : ESCESCOOBB { LC_NUMERIC=C; export LC_NUMERIC; } : ESCESCOOBB(set +x; test -n "`(LC_MESSAGES=C; export LC_MESSAGES) 2>&1`") && : ESCESCOOBB { $as_unset LC_MESSAGES || test "${LC_MESSAGES+set}" != set; } || : ESCESCOOBB { LC_MESSAGES=C; export LC_MESSAGES; } : ESCESCOOBB : ESCESCOOBB : ESCESCOOBB# Name of the executable. : ESCESCOOBBas_me=`(basename "$0") 2>/dev/null || : ESCESCOOBB$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ : ESCESCOOBB X"$0" : 'X\(//\)$' \| \ : ESCESCOOBB X"$0" : 'X\(/\)$' \| \ : ESCESCOOBB . : '\(.\)' 2>/dev/null || : ESCESCOOBBecho X/"$0" | : ESCESCOOBB sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; } : ESCESCOOBB /^X\/\(\/\/\)$/{ s//\1/; q; } : ESCESCOOBB /^X\/\(\/\).*/{ s//\1/; q; } : ESCESCOOBB s/.*/./; q'` : ESCESCOOBB : ESCESCOOBB# PATH needs CR, and LINENO needs CR and PATH. : ESCESCOOBB# Avoid depending upon Character Ranges. : ESCESCOOBBas_cr_letters='abcdefghijklmnopqrstuvwxyz' : ESCESCOOBBas_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' : ESCESCOOBBas_cr_Letters=$as_cr_letters$as_cr_LETTERS : ESCESCOOBBas_cr_digits='0123456789' : ESCESCOOBBas_cr_alnum=$as_cr_Letters$as_cr_digits : ESCESCOOBB : ESCESCOOBB# The user is always right. : ESCESCOOBBif test "${PATH_SEPARATOR+set}" != set; then : ESCESCOOBB echo "#! /bin/sh" >conftest.sh : ESCESCOOBB echo "exit 0" >>conftest.sh : ESCESCOOBB chmod +x conftest.sh : ESCESCOOBB if (PATH=".;."; conftest.sh) >/dev/null 2>&1; then : ESCESCOOBB PATH_SEPARATOR=';' : ESCESCOOBB else : ESCESCOOBB PATH_SEPARATOR=: : ESCESCOOBB fi : ESCESCOOBB rm -f conftest.sh : ESCESCOOBBfi : ESCESCOOBB :[?1l>[?1047l[?1048l[barrie@magnolia httpd-2.0.43]$ ./congifigure --help ./configure: conftest.sh: No such file or directory ./configure: conftest.sh: No such file or directory chmod: getting attributes of `conftest.sh': No such file or directory ./configure: conf8666.file: No such file or directory `configure' configures this package to adapt to many kinds of systems. Usage: ./configure [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print `checking...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for `--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or `..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [/usr/local/apache2] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, `make install' will install all the files in `/usr/local/apache2/bin', `/usr/local/apache2/lib' etc. You can specify an installation prefix other than `/usr/local/apache2' using `--prefix', for instance `--prefix=$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --datadir=DIR read-only architecture-independent data [PREFIX/share] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --infodir=DIR info documentation [PREFIX/info] --mandir=DIR man documentation [PREFIX/man] System types: --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] --target=TARGET configure for building compilers for TARGET [HOST] Optional Features: --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-layout=LAYOUT --enable-maintainer-mode Turn on debugging and compile time warnings --enable-modules=MODULE-LIST Modules to enable --enable-mods-shared=MODULE-LIST Shared modules to enable --disable-access host-based access control --disable-auth user-based access control --enable-auth-anon anonymous user access --enable-auth-dbm DBM-based access databases --enable-auth-digest RFC2617 Digest authentication --enable-isapi isapi extension support --enable-file-cache File cache --enable-echo ECHO server --disable-charset-lite character set translation --enable-charset-lite character set translation --enable-cache dynamic file caching --enable-disk-cache disk caching module --enable-mem-cache memory caching module --enable-example example and demo module --enable-ext-filter external filter module --enable-case-filter example uppercase conversion filter --enable-case-filter-in example uppercase conversion input filter --enable-auth-ldap LDAP based authentication --enable-ldap LDAP caching and connection pooling services --disable-include Server Side Includes --enable-deflate Deflate transfer encoding support --disable-log-config logging configuration --disable-env clearing/setting of ENV vars --enable-mime-magic automagically determining MIME type --enable-cern-meta CERN-type meta files --enable-expires Expires header control --enable-headers HTTP header control --enable-usertrack user-session tracking --enable-unique-id per-request unique ids --disable-setenvif basing ENV vars on headers --enable-proxy Apache proxy module --enable-proxy-connect Apache proxy CONNECT module --enable-proxy-ftp Apache proxy FTP module --enable-proxy-http Apache proxy HTTP module --enable-ssl SSL/TLS support (mod_ssl) --enable-optional-hook-export example optional hook exporter --enable-optional-hook-import example optional hook importer --enable-optional-fn-import example optional function importer --enable-optional-fn-export example optional function exporter --enable-bucketeer buckets manipulation filter --enable-static-support Build a statically linked version the support binaries --enable-static-htpasswd Build a statically linked version of htpasswd --enable-static-htdigest Build a statically linked version of htdigest --enable-static-rotatelogs Build a statically linked version of rotatelogs --enable-static-logresolve Build a statically linked version of logresolve --enable-static-htdbm Build a statically linked version of htdbm --enable-static-ab Build a statically linked version of ab --enable-static-checkgid Build a statically linked version of checkgid --enable-http HTTP protocol handling --disable-mime mapping of file-extension to MIME --enable-dav WebDAV protocol handling --disable-status process/thread monitoring --disable-autoindex directory listing --disable-asis as-is filetypes --enable-info server information --enable-suexec set uid and gid for spawned processes --disable-cgid CGI scripts --enable-cgi CGI scripts --disable-cgi CGI scripts --enable-cgid CGI scripts --enable-dav-fs DAV provider for the filesystem --enable-vhost-alias mass hosting module --disable-negotiation content negoatiation --disable-dir directory request handling --disable-imap internal imagemaps --disable-actions Action triggering on requests --enable-speling correct common URL misspellings --disable-userdir mapping of user requests --disable-alias translation of requests --enable-rewrite regex URL translation --enable-so DSO capability Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-apr=DIR|FILE prefix for installed APR, path to APR build tree, or the full path to apr-config --with-apr-util=DIR prefix for installed APU, or path to APU build tree --with-port=PORT Port on which to listen (default is 80) --with-z=DIR use a specific zlib library --with-ssl=DIR SSL/TLS toolkit (OpenSSL) --with-mpm=MPM Choose the process model for Apache to use. MPM={beos|worker|prefork|mpmt_os2|perchild|leader|threadpool} --with-module=module-type:module-file Enable module-file in the modules/ directory. --with-program-name alternate executable name --with-suexec-bin Path to suexec binary --with-suexec-caller User allowed to call SuExec --with-suexec-userdir User subdirectory --with-suexec-docroot SuExec root directory --with-suexec-uidmin Minimal allowed UID --with-suexec-gidmin Minimal allowed GID --with-suexec-logfile Set the logfile --with-suexec-safepath Set the safepath --with-suexec-umask umask for suexec'd process Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory CPPFLAGS C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CPP C preprocessor Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. [barrie@magnolia httpd-2.0.43]$ sudo ./configure --enable-so --disable-autoindex Password: checking for chosen layout... Apache checking for working mkdir -p... yes checking build system type... i686-pc-linux-gnu checking host system type... i686-pc-linux-gnu checking target system type... i686-pc-linux-gnu Configuring Apache Portable Runtime library ... checking for APR... reconfig configuring package in srclib/apr now checking build system type... i686-pc-linux-gnu checking host system type... i686-pc-linux-gnu checking target system type... i686-pc-linux-gnu Configuring APR library Platform: i686-pc-linux-gnu checking for working mkdir -p... yes APR Version: 0.9.2 checking for chosen layout... apr checking for gcc... gcc checking for C compiler default output... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes Applying APR hints file rules for i686-pc-linux-gnu setting CPPFLAGS to "-DLINUX=2" adding "-D_REENTRANT" to CPPFLAGS (Default will be unix) checking whether make sets ${MAKE}... yes checking how to run the C preprocessor... gcc -E checking for gawk... gawk checking whether ln -s works... yes checking for ranlib... ranlib checking for a BSD-compatible install... /usr/bin/install -c checking for rm... rm checking for as... as checking for cpp... cpp checking for ar... ar checking for AIX... no checking for library containing strerror... none required checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking minix/config.h usability... no checking minix/config.h presence... no checking for minix/config.h... no checking whether system uses EBCDIC... no performing libtool configuration... checking for ld used by GCC... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD-compatible nm... /usr/bin/nm -B loading cache /dev/null within ltconfig checking for object suffix... o checking for executable suffix... no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc supports -c -o file.o... yes checking if gcc supports -c -o file.lo... yes checking if gcc supports -fno-rtti -fno-exceptions ... yes checking if gcc static flag -static works... -static checking if the linker (/usr/bin/ld) is GNU ld... yes checking whether the linker (/usr/bin/ld) supports shared libraries... yes checking command to parse /usr/bin/nm -B output... ok checking how to hardcode library paths into programs... immediate checking for /usr/bin/ld option to reload object files... -r checking dynamic linker characteristics... Linux ld.so checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking for objdir... .libs creating libtool updating cache /dev/null Check for compiler flags... checking for res_init in -lresolv... no checking for gethostbyname in -lnsl... yes checking for library containing gethostname... none required checking for socket in -lsocket... no checking for library containing crypt... -lcrypt checking for main in -ltruerand... no checking for modf in -lm... yes Checking for Threads... checking pthread.h usability... yes checking pthread.h presence... yes checking for pthread.h... yes checking for pthreads_cflags... -pthread checking for pthreads_lib... checking for pthread.h... (cached) yes checking whether pthread_getspecific takes two arguments... no checking whether pthread_attr_getdetachstate takes one argument... no checking for pthread_key_delete... yes checking for pthread_rwlock_init... yes adding "-D_XOPEN_SOURCE=500" to CPPFLAGS adding "-D_BSD_SOURCE" to CPPFLAGS adding "-D_SVID_SOURCE" to CPPFLAGS APR will use threads checking for readdir in -lc_r... no checking for gethostbyname in -lc_r... no checking for gethostbyaddr in -lc_r... no checking for gethostbyname_r... yes checking for gethostbyaddr_r... yes checking for sigsuspend... yes checking for sigwait... yes checking for poll... yes checking for getpwnam_r... yes checking for getpwuid_r... yes checking for getgrnam_r... yes checking for getgrgid_r... yes Checking for Shared Memory Support... checking sys/mman.h usability... yes checking sys/mman.h presence... yes checking for sys/mman.h... yes checking for MAP_ANON in sys/mman.h... yes checking for mmap... yes checking for munmap... yes checking for shm_open... no checking for shm_unlink... no checking for /dev/zero... yes checking sys/ipc.h usability... yes checking sys/ipc.h presence... yes checking for sys/ipc.h... yes checking sys/shm.h usability... yes checking sys/shm.h presence... yes checking for sys/shm.h... yes checking sys/file.h usability... yes checking sys/file.h presence... yes checking for sys/file.h... yes checking for shmget... yes checking for shmat... yes checking for shmdt... yes checking for shmctl... yes checking kernel/OS.h usability... no checking kernel/OS.h presence... no checking for kernel/OS.h... no checking for create_area... no checking os2.h usability... no checking os2.h presence... no checking for os2.h... no checking for mmap that can map /dev/zero... yes decision on anonymous shared memory allocation method... 4.4BSD-style mmap() via MAP_ANON decision on namebased memory allocation method... SysV IPC shmget() checking for alloca... no checking for calloc... yes checking for strcasecmp... yes checking for stricmp... no checking for setsid... yes checking for isinf... yes checking for isnan... yes checking for setrlimit... yes checking for getrlimit... yes checking for writev... yes checking for sendfilev in -lsendfile... no checking for sendfile... yes checking for send_file... no checking for sendfilev... no checking for sigaction... yes checking for sys_siglist declaration in signal.h or unistd.h... yes checking for fork... yes checking for getpass... yes checking for inet_addr... yes checking for inet_network... yes checking for _getch... no checking for gmtime_r... yes checking for localtime_r... yes checking for strerror_r... yes checking for type of return code from strerror_r... pointer checking for crypt_r... yes checking style of crypt_r... struct_crypt_data_gnu_source adding "-D_GNU_SOURCE" to CPPFLAGS checking for mmap... (cached) yes checking for hstrerror... yes checking for memmove... yes checking for mkstemp... yes checking whether sigwait takes one argument... no checking for ANSI C header files... (cached) yes checking alloca.h usability... yes checking alloca.h presence... yes checking for alloca.h... yes checking ByteOrder.h usability... no checking ByteOrder.h presence... no checking for ByteOrder.h... no checking conio.h usability... no checking conio.h presence... no checking for conio.h... no checking crypt.h usability... yes checking crypt.h presence... yes checking for crypt.h... yes checking ctype.h usability... yes checking ctype.h presence... yes checking for ctype.h... yes checking dir.h usability... no checking dir.h presence... no checking for dir.h... no checking dirent.h usability... yes checking dirent.h presence... yes checking for dirent.h... yes checking dl.h usability... no checking dl.h presence... no checking for dl.h... no checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking errno.h usability... yes checking errno.h presence... yes checking for errno.h... yes checking fcntl.h usability... yes checking fcntl.h presence... yes checking for fcntl.h... yes checking grp.h usability... yes checking grp.h presence... yes checking for grp.h... yes checking io.h usability... no checking io.h presence... no checking for io.h... no checking limits.h usability... yes checking limits.h presence... yes checking for limits.h... yes checking mach-o/dyld.h usability... no checking mach-o/dyld.h presence... no checking for mach-o/dyld.h... no checking malloc.h usability... yes checking malloc.h presence... yes checking for malloc.h... yes checking for memory.h... (cached) yes checking netdb.h usability... yes checking netdb.h presence... yes checking for netdb.h... yes checking osreldate.h usability... no checking osreldate.h presence... no checking for osreldate.h... no checking poll.h usability... yes checking poll.h presence... yes checking for poll.h... yes checking process.h usability... no checking process.h presence... no checking for process.h... no checking pwd.h usability... yes checking pwd.h presence... yes checking for pwd.h... yes checking semaphore.h usability... yes checking semaphore.h presence... yes checking for semaphore.h... yes checking signal.h usability... yes checking signal.h presence... yes checking for signal.h... yes checking stdarg.h usability... yes checking stdarg.h presence... yes checking for stdarg.h... yes checking stddef.h usability... yes checking stddef.h presence... yes checking for stddef.h... yes checking stdio.h usability... yes checking stdio.h presence... yes checking for stdio.h... yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for strings.h... (cached) yes checking sysapi.h usability... no checking sysapi.h presence... no checking for sysapi.h... no checking sysgtime.h usability... no checking sysgtime.h presence... no checking for sysgtime.h... no checking termios.h usability... yes checking termios.h presence... yes checking for termios.h... yes checking time.h usability... yes checking time.h presence... yes checking for time.h... yes checking tpfeq.h usability... no checking tpfeq.h presence... no checking for tpfeq.h... no checking tpfio.h usability... no checking tpfio.h presence... no checking for tpfio.h... no checking for unistd.h... (cached) yes checking unix.h usability... no checking unix.h presence... no checking for unix.h... no checking arpa/inet.h usability... yes checking arpa/inet.h presence... yes checking for arpa/inet.h... yes checking for kernel/OS.h... (cached) no checking net/errno.h usability... no checking net/errno.h presence... no checking for net/errno.h... no checking netinet/in.h usability... yes checking netinet/in.h presence... yes checking for netinet/in.h... yes checking for sys/file.h... (cached) yes checking for sys/mman.h... (cached) yes checking sys/poll.h usability... yes checking sys/poll.h presence... yes checking for sys/poll.h... yes checking sys/resource.h usability... yes checking sys/resource.h presence... yes checking for sys/resource.h... yes checking sys/select.h usability... yes checking sys/select.h presence... yes checking for sys/select.h... yes checking sys/sem.h usability... yes checking sys/sem.h presence... yes checking for sys/sem.h... yes checking sys/sendfile.h usability... yes checking sys/sendfile.h presence... yes checking for sys/sendfile.h... yes checking sys/signal.h usability... yes checking sys/signal.h presence... yes checking for sys/signal.h... yes checking sys/socket.h usability... yes checking sys/socket.h presence... yes checking for sys/socket.h... yes checking for sys/stat.h... (cached) yes checking sys/sysctl.h usability... yes checking sys/sysctl.h presence... yes checking for sys/sysctl.h... yes checking sys/syslimits.h usability... no checking sys/syslimits.h presence... no checking for sys/syslimits.h... no checking sys/time.h usability... yes checking sys/time.h presence... yes checking for sys/time.h... yes checking for sys/types.h... (cached) yes checking sys/uio.h usability... yes checking sys/uio.h presence... yes checking for sys/uio.h... yes checking sys/un.h usability... yes checking sys/un.h presence... yes checking for sys/un.h... yes checking sys/wait.h usability... yes checking sys/wait.h presence... yes checking for sys/wait.h... yes checking for netinet/tcp.h... yes checking for h_errno in netdb.h... yes checking for off_t... yes checking for pid_t... yes checking for size_t... yes checking for uid_t in sys/types.h... yes checking for ssize_t... yes checking for gcc option to accept ANSI C... none needed checking for inline... inline checking for an ANSI C-conforming const... yes checking for size_t... (cached) yes checking whether setpgrp takes no argument... yes checking for socklen_t... yes checking whether system defines INADDR_NONE... yes checking for char... yes checking size of char... 1 checking for int... yes checking size of int... 4 checking for long... yes checking size of long... 4 checking for short... yes checking size of short... 2 checking for long double... yes checking size of long double... 12 checking for long long... yes checking size of long long... 8 checking for INT64_C... no checking for INT64_C in stdint.h... (cached) no checking size of ssize_t... 4 checking size of size_t... 4 checking size of off_t... 4 checking size of pid_t... 4 checking for strnicmp... no checking for strncasecmp... yes checking for stricmp... (cached) no checking for strcasecmp... (cached) yes checking for strdup... yes checking for strstr... yes checking for memchr... yes checking for strtoll... yes Checking for DSO... checking for NSLinkModule... no checking for dlopen... no checking for dlopen in -ldl... yes adding "-ldl" to LIBS Checking for Processes... checking for waitpid... yes checking for Variable Length Arrays... yes checking struct rlimit... yes Checking for Locking... checking for semget... yes checking for semctl... yes checking for flock... yes checking for semaphore.h... (cached) yes checking for sem_close... yes checking for sem_unlink... yes checking for sem_post... yes checking for sem_wait... yes checking for working sem_open... no checking for union semun in sys/sem.h... no checking for LOCK_EX in sys/file.h... yes checking for F_SETLK in fcntl.h... yes checking for SEM_UNDO in sys/sem.h... yes checking for POLLIN in poll.h sys/poll.h... yes checking for PTHREAD_PROCESS_SHARED in pthread.h... yes checking for pthread_mutexattr_setpshared... yes decision on apr_lock implementation method... SysV IPC semget() checking if all interprocess locks affect threads... no checking if Posix sems affect threads in the same process... no checking if SysV sems affect threads in the same process... no checking if fcntl locks affect threads in the same process... no checking if flock locks affect threads in the same process... no checking for entropy source... /dev/random Checking for Time Support... checking for tm_gmtoff in struct tm... yes Checking for Networking support... checking for in_addr in netinet/in.h... yes checking if fd == socket on this platform... yes checking for sockaddr sa_len... no checking style of gethostbyname_r routine... glibc2 checking 3rd argument to the gethostbyname_r routines... char checking if TCP_NODELAY setting is inherited from listening sockets... yes checking if O_NONBLOCK setting is inherited from listening sockets... no checking for TCP_CORK in netinet/tcp.h... yes checking for TCP_NOPUSH in netinet/tcp.h... no checking for SO_ACCEPTFILTER in sys/socket.h... no checking for set_h_errno... no checking for presence of retrans/retry fields in res_state/resolv.h ... yes Checking for IPv6 Networking support... checking for library containing getaddrinfo... none required checking for library containing gai_strerror... none required checking for library containing getnameinfo... none required checking for gai_strerror... yes checking for working getaddrinfo... yes checking for negative error codes for getaddrinfo... yes checking for working getnameinfo... yes checking for sockaddr_in6... yes checking if APR supports IPv6... "yes" Restore user-defined environment settings... restoring CPPFLAGS to "" setting EXTRA_CPPFLAGS to "-DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE" restoring CFLAGS to "" setting EXTRA_CFLAGS to "-g -O2 -pthread" restoring LDFLAGS to "" setting EXTRA_LDFLAGS to "" restoring LIBS to "" setting EXTRA_LIBS to "-lm -lcrypt -lnsl -ldl" restoring INCLUDES to "" setting EXTRA_INCLUDES to "" Construct Makefiles and header files. configure: creating ./config.status config.status: creating Makefile config.status: creating strings/Makefile config.status: creating passwd/Makefile config.status: creating tables/Makefile config.status: creating build/Makefile config.status: creating file_io/unix/Makefile config.status: creating network_io/unix/Makefile config.status: creating threadproc/unix/Makefile config.status: creating misc/unix/Makefile config.status: creating locks/unix/Makefile config.status: creating time/unix/Makefile config.status: creating mmap/unix/Makefile config.status: creating shmem/unix/Makefile config.status: creating user/unix/Makefile config.status: creating memory/unix/Makefile config.status: creating atomic/unix/Makefile config.status: creating poll/unix/Makefile config.status: creating support/unix/Makefile config.status: creating dso/unix/Makefile config.status: creating test/Makefile config.status: creating include/apr.h config.status: creating build/rules.mk config.status: creating apr-config config.status: creating include/arch/unix/apr_private.h config.status: executing default commands srclib/apr configured properly setting CFLAGS to " -g -O2 -pthread" setting CPPFLAGS to " -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE" setting LDFLAGS to " " setting INCLUDES to " -I/usr/local/httpd-2.0.43/srclib/apr/include " Configuring Apache Portable Runtime Utility library... checking for APR-util... reconfig configuring package in srclib/apr-util now checking build system type... i686-pc-linux-gnu checking host system type... i686-pc-linux-gnu checking target system type... i686-pc-linux-gnu checking for working mkdir -p... yes APR-util Version: 0.9.2 checking for chosen layout... apr-util Applying apr-util hints file rules for i686-pc-linux-gnu checking for APR... yes checking for gcc... gcc checking for C compiler default output... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking how to run the C preprocessor... gcc -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking for ldap support... checking gdbm.h usability... yes checking gdbm.h presence... yes checking for gdbm.h... yes checking for gdbm_open in -lgdbm... yes checking db4/db.h usability... no checking db4/db.h presence... no checking for db4/db.h... no checking db.h usability... yes checking db.h presence... yes checking for db.h... yes checking for db_create in -ldb... yes checking for lock_get in -ldb... yes checking db3/db.h usability... yes checking db3/db.h presence... yes checking for db3/db.h... yes checking for db_create in -ldb3... no checking for db.h... (cached) yes checking for db_create in -ldb... (cached) yes checking for Berkeley DB... found db3 checking for default DBM... sdbm (default) setting APRUTIL_EXPORT_LIBS to "-lgdbm" setting APRUTIL_LIBS to "-lgdbm" adding "-ldb" to APRUTIL_EXPORT_LIBS adding "-ldb" to APRUTIL_LIBS checking for Expat in /usr... yes adding "-lexpat" to APRUTIL_EXPORT_LIBS setting APRUTIL_LDFLAGS to "" adding "/usr/lib/libexpat.la" to APRUTIL_LIBS checking iconv.h usability... yes checking iconv.h presence... yes checking for iconv.h... yes checking for type of inbuf parameter to iconv... char ** checking for iconv.h... (cached) yes checking langinfo.h usability... yes checking langinfo.h presence... yes checking for langinfo.h... yes checking for nl_langinfo... yes checking for CODESET in langinfo.h... yes adding "/usr/local/httpd-2.0.43/srclib/apr/libapr-0.la" to APRUTIL_LIBS adding "-lm" to APRUTIL_LIBS adding "-lcrypt" to APRUTIL_LIBS adding "-lnsl" to APRUTIL_LIBS adding "-ldl" to APRUTIL_LIBS configure: creating ./config.status config.status: creating export_vars.sh config.status: creating apu-config config.status: creating include/private/apu_select_dbm.h config.status: creating include/apr_ldap.h config.status: creating include/apu.h config.status: creating Makefile config.status: creating buckets/Makefile config.status: creating crypto/Makefile config.status: creating dbm/Makefile config.status: creating dbm/sdbm/Makefile config.status: creating encoding/Makefile config.status: creating hooks/Makefile config.status: creating ldap/Makefile config.status: creating uri/Makefile config.status: creating xml/Makefile config.status: creating misc/Makefile config.status: creating strmatch/Makefile config.status: creating xlate/Makefile config.status: creating test/Makefile config.status: creating include/private/apu_config.h config.status: executing default commands srclib/apr-util configured properly adding "-I/usr/local/httpd-2.0.43/srclib/apr-util/include" to INCLUDES Configuring PCRE regular expression library ... configuring package in srclib/pcre now checking for gcc... gcc checking for C compiler default output... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for ranlib... ranlib checking how to run the C preprocessor... gcc -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking limits.h usability... yes checking limits.h presence... yes checking for limits.h... yes checking for gcc option to accept ANSI C... none needed checking for an ANSI C-conforming const... yes checking for size_t... yes checking for bcopy... yes checking for memmove... yes checking for strerror... yes configure: creating ./config.status config.status: creating Makefile config.status: creating pcre.h config.status: creating pcre-config config.status: creating config.h config.status: executing default commands srclib/pcre configured properly Configuring Apache httpd ... adding "-I." to INCLUDES adding "-I$(top_srcdir)/os/$(OS_DIR)" to INCLUDES adding "-I$(top_srcdir)/server/mpm/$(MPM_SUBDIR_NAME)" to INCLUDES adding "-I$(top_srcdir)/modules/http" to INCLUDES adding "-I$(top_srcdir)/modules/filters" to INCLUDES adding "-I$(top_srcdir)/modules/proxy" to INCLUDES adding "-I$(top_srcdir)/include" to INCLUDES Applying OS-specific hints for httpd ... forcing SINGLE_LISTEN_UNSERIALIZED_ACCEPT to "1" checking for rm... /bin/rm checking for gawk... gawk checking for gcc... gcc checking for C compiler default output... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking how to run the C preprocessor... gcc -E checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking for ranlib... ranlib checking for AIX... no checking for library containing strerror... none required checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking minix/config.h usability... no checking minix/config.h presence... no checking for minix/config.h... no checking for ANSI C header files... (cached) yes checking for string.h... (cached) yes checking limits.h usability... yes checking limits.h presence... yes checking for limits.h... yes checking for unistd.h... (cached) yes checking sys/socket.h usability... yes checking sys/socket.h presence... yes checking for sys/socket.h... yes checking pwd.h usability... yes checking pwd.h presence... yes checking for pwd.h... yes checking grp.h usability... yes checking grp.h presence... yes checking for grp.h... yes checking for strings.h... (cached) yes checking sys/processor.h usability... no checking sys/processor.h presence... no checking for sys/processor.h... no checking sys/sem.h usability... yes checking sys/sem.h presence... yes checking for sys/sem.h... yes checking for sys/wait.h that is POSIX.1 compatible... yes checking for gcc option to accept ANSI C... none needed checking for an ANSI C-conforming const... yes setting NOTEST_CPPFLAGS to "-DAP_HAVE_DESIGNATED_INITIALIZER" checking for getpwnam... yes checking for getgrnam... yes checking for initgroups... yes checking for bindprocessor... no checking for timegm... yes checking for tm_gmtoff in struct tm... yes checking whether to enable mod_access... yes (default) checking whether to enable mod_auth... yes (default) checking whether to enable mod_auth_anon... no checking whether to enable mod_auth_dbm... no checking whether to enable mod_auth_digest... no setting LT_LDFLAGS to "-export-dynamic" checking whether to enable mod_isapi... no checking whether to enable mod_file_cache... no checking whether to enable mod_echo... no checking whether to enable mod_charset_lite... no checking whether to enable mod_cache... no checking whether to enable mod_disk_cache... no checking whether to enable mod_mem_cache... no checking whether to enable mod_example... no checking whether to enable mod_ext_filter... no checking whether to enable mod_case_filter... no checking whether to enable mod_case_filter_in... no checking whether to enable mod_auth_ldap... no checking whether to enable mod_ldap... no checking whether to enable mod_include... yes (default) checking whether to enable mod_deflate... no checking whether to enable mod_log_config... yes (default) checking whether to enable mod_env... yes (default) checking whether to enable mod_mime_magic... no checking whether to enable mod_cern_meta... no checking whether to enable mod_expires... no checking whether to enable mod_headers... no checking whether to enable mod_usertrack... no checking whether to enable mod_unique_id... no checking whether to enable mod_setenvif... yes (default) checking whether to enable mod_proxy... no checking whether to enable mod_proxy_connect... no checking whether to enable mod_proxy_ftp... no checking whether to enable mod_proxy_http... no checking whether to enable mod_ssl... no checking whether to enable mod_optional_hook_export... no checking whether to enable mod_optional_hook_import... no checking whether to enable mod_optional_fn_import... no checking whether to enable mod_optional_fn_export... no checking whether to enable mod_bucketeer... no checking for target platform... unix checking for rlim_t... yes checking sys/time.h usability... yes checking sys/time.h presence... yes checking for sys/time.h... yes checking sys/resource.h usability... yes checking sys/resource.h presence... yes checking for sys/resource.h... yes checking for sys/sem.h... (cached) yes checking sys/ipc.h usability... yes checking sys/ipc.h presence... yes checking for sys/ipc.h... yes checking for setsid... yes checking for killpg... yes checking bstring.h usability... no checking bstring.h presence... no checking for bstring.h... no checking for unistd.h... (cached) yes checking for syslog... yes checking sys/times.h usability... yes checking sys/times.h presence... yes checking for sys/times.h... yes checking for times... yes checking which MPM to use... prefork checking whether to enable mod_http... yes checking whether to enable mod_mime... yes (default) checking for extra modules... no extra modules checking whether to enable mod_dav... no adding "-I$(top_srcdir)/modules/dav/main" to INCLUDES checking whether to enable mod_status... yes (default) checking whether to enable mod_autoindex... yes (default) checking whether to enable mod_asis... yes (default) checking whether to enable mod_info... no checking whether to enable mod_suexec... no checking whether to enable mod_cgi... yes (default) checking whether to enable mod_cgid... no checking whether to enable mod_dav_fs... no checking whether to enable mod_vhost_alias... no checking whether to enable mod_negotiation... yes (default) checking whether to enable mod_dir... yes (default) checking whether to enable mod_imap... yes (default) checking whether to enable mod_actions... yes (default) checking whether to enable mod_speling... no checking whether to enable mod_userdir... yes (default) checking whether to enable mod_alias... yes (default) checking whether to enable mod_rewrite... no checking whether to enable mod_so... yes checking whether byte ordering is bigendian... no Restore user-defined environment settings... restoring CPPFLAGS to "" setting EXTRA_CPPFLAGS to " -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE" restoring CFLAGS to "" setting EXTRA_CFLAGS to " -g -O2 -pthread" restoring CXXFLAGS to "" setting EXTRA_CXXFLAGS to "" restoring LDFLAGS to "" setting EXTRA_LDFLAGS to " " restoring LIBS to "" setting EXTRA_LIBS to "" restoring INCLUDES to "" setting EXTRA_INCLUDES to " -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I$(top_srcdir)/os/$(OS_DIR) -I$(top_srcdir)/server/mpm/$(MPM_SUBDIR_NAME) -I$(top_srcdir)/modules/http -I$(top_srcdir)/modules/filters -I$(top_srcdir)/modules/proxy -I$(top_srcdir)/include -I$(top_srcdir)/modules/dav/main" Construct makefiles and header files... creating config_vars.mk configure: creating ./config.status creating modules/aaa/Makefile creating modules/arch/win32/Makefile creating modules/cache/Makefile creating modules/echo/Makefile creating modules/experimental/Makefile creating modules/filters/Makefile creating modules/loggers/Makefile creating modules/metadata/Makefile creating modules/proxy/Makefile creating modules/ssl/Makefile creating modules/test/Makefile creating os/unix/Makefile creating server/mpm/Makefile creating server/mpm/prefork/Makefile creating modules/http/Makefile creating modules/dav/main/Makefile creating modules/generators/Makefile creating modules/dav/fs/Makefile creating modules/mappers/Makefile creating Makefile creating modules/Makefile creating srclib/Makefile creating os/beos/Makefile creating os/os2/Makefile creating os/Makefile creating os/unix/Makefile creating server/Makefile creating support/Makefile creating srclib/pcre/Makefile creating test/Makefile config.status: creating docs/conf/httpd-std.conf config.status: creating include/ap_config_layout.h config.status: creating support/apxs config.status: creating support/apachectl config.status: creating support/dbmmanage config.status: creating support/envvars-std config.status: creating support/log_server_status config.status: creating support/logresolve.pl config.status: creating support/phf_abuse_log.cgi config.status: creating support/split-logfile config.status: creating build/rules.mk config.status: creating include/ap_config_auto.h config.status: executing default commands [barrie@magnolia httpd-2.0.43]$ sudo make Making all in srclib make[1]: Entering directory `/usr/local/httpd-2.0.43/srclib' Making all in apr make[2]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr' Making all in strings make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/strings' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/strings' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../include -I../include/arch/unix -c apr_cpystrn.c && touch apr_cpystrn.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../include -I../include/arch/unix -c apr_snprintf.c && touch apr_snprintf.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../include -I../include/arch/unix -c apr_strnatcmp.c && touch apr_strnatcmp.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../include -I../include/arch/unix -c apr_strings.c && touch apr_strings.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../include -I../include/arch/unix -c apr_fnmatch.c && touch apr_fnmatch.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../include -I../include/arch/unix -c apr_strtok.c && touch apr_strtok.lo make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/strings' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/strings' Making all in passwd make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/passwd' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/passwd' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../include -I../include/arch/unix -c apr_getpass.c && touch apr_getpass.lo make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/passwd' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/passwd' Making all in tables make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/tables' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/tables' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../include -I../include/arch/unix -c apr_tables.c && touch apr_tables.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../include -I../include/arch/unix -c apr_hash.c && touch apr_hash.lo make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/tables' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/tables' Making all in file_io/unix make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/file_io/unix' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/file_io/unix' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -I../../include/arch/unix -c copy.c && touch copy.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -I../../include/arch/unix -c dir.c && touch dir.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -I../../include/arch/unix -c fileacc.c && touch fileacc.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -I../../include/arch/unix -c filedup.c && touch filedup.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -I../../include/arch/unix -c filepath.c && touch filepath.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -I../../include/arch/unix -c filestat.c && touch filestat.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -I../../include/arch/unix -c flock.c && touch flock.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -I../../include/arch/unix -c fullrw.c && touch fullrw.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -I../../include/arch/unix -c open.c && touch open.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -I../../include/arch/unix -c pipe.c && touch pipe.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -I../../include/arch/unix -c readwrite.c && touch readwrite.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -I../../include/arch/unix -c seek.c && touch seek.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -I../../include/arch/unix -c mktemp.c && touch mktemp.lo make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/file_io/unix' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/file_io/unix' Making all in network_io/unix make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/network_io/unix' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/network_io/unix' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -I../../include/arch/unix -c sendrecv.c && touch sendrecv.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -I../../include/arch/unix -c sockets.c && touch sockets.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -I../../include/arch/unix -c sockopt.c && touch sockopt.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -I../../include/arch/unix -c sockaddr.c && touch sockaddr.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -I../../include/arch/unix -c inet_ntop.c && touch inet_ntop.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -I../../include/arch/unix -c inet_pton.c && touch inet_pton.lo make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/network_io/unix' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/network_io/unix' Making all in threadproc/unix make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/threadproc/unix' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/threadproc/unix' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -c proc.c && touch proc.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -c procsup.c && touch procsup.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -c thread.c && touch thread.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -c threadpriv.c && touch threadpriv.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -c signals.c && touch signals.lo make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/threadproc/unix' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/threadproc/unix' Making all in misc/unix make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/misc/unix' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/misc/unix' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -I../../include/arch/unix -c start.c && touch start.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -I../../include/arch/unix -c getopt.c && touch getopt.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -I../../include/arch/unix -c otherchild.c && touch otherchild.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -I../../include/arch/unix -c errorcodes.c && touch errorcodes.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -I../../include/arch/unix -c rand.c && touch rand.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -I../../include/arch/unix -c version.c && touch version.lo make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/misc/unix' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/misc/unix' Making all in locks/unix make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/locks/unix' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/locks/unix' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch -I../../include/arch/unix -c thread_mutex.c && touch thread_mutex.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch -I../../include/arch/unix -c thread_rwlock.c && touch thread_rwlock.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch -I../../include/arch/unix -c thread_cond.c && touch thread_cond.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch -I../../include/arch/unix -c proc_mutex.c && touch proc_mutex.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch -I../../include/arch/unix -c global_mutex.c && touch global_mutex.lo make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/locks/unix' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/locks/unix' Making all in time/unix make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/time/unix' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/time/unix' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -c time.c && touch time.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -c timestr.c && touch timestr.lo make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/time/unix' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/time/unix' Making all in mmap/unix make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/mmap/unix' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/mmap/unix' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -c mmap.c && touch mmap.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -c common.c && touch common.lo make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/mmap/unix' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/mmap/unix' Making all in shmem/unix make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/shmem/unix' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/shmem/unix' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch -I../../include/arch/unix -c shm.c && touch shm.lo make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/shmem/unix' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/shmem/unix' Making all in user/unix make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/user/unix' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/user/unix' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -c userinfo.c && touch userinfo.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -c groupinfo.c && touch groupinfo.lo make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/user/unix' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/user/unix' Making all in memory/unix make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/memory/unix' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/memory/unix' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -c apr_pools.c && touch apr_pools.lo make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/memory/unix' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/memory/unix' Making all in atomic/unix make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/atomic/unix' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/atomic/unix' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -c apr_atomic.c && touch apr_atomic.lo make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/atomic/unix' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/atomic/unix' Making all in poll/unix make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/poll/unix' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/poll/unix' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -I../../include/arch/unix -c poll.c && touch poll.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -I../../include/arch/unix -c pollacc.c && touch pollacc.lo make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/poll/unix' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/poll/unix' Making all in support/unix make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/support/unix' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/support/unix' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch/unix -I../../include/arch/unix -c waitio.c && touch waitio.lo make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/support/unix' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/support/unix' Making all in dso/unix make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/dso/unix' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/dso/unix' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I../../include -I../../include/arch -I../../include/arch/unix -c dso.c && touch dso.lo make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/dso/unix' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/dso/unix' make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I./include -I../include -version-info 9:2:9 -o libapr-0.la -rpath /usr/local/apache2/lib strings/apr_cpystrn.lo strings/apr_fnmatch.lo strings/apr_snprintf.lo strings/apr_strings.lo strings/apr_strnatcmp.lo strings/apr_strtok.lo passwd/apr_getpass.lo tables/apr_hash.lo tables/apr_tables.lo file_io/unix/copy.lo file_io/unix/dir.lo file_io/unix/fileacc.lo file_io/unix/filedup.lo file_io/unix/filepath.lo file_io/unix/filestat.lo file_io/unix/flock.lo file_io/unix/fullrw.lo file_io/unix/mktemp.lo file_io/unix/open.lo file_io/unix/pipe.lo file_io/unix/readwrite.lo file_io/unix/seek.lo network_io/unix/inet_ntop.lo network_io/unix/inet_pton.lo network_io/unix/sendrecv.lo network_io/unix/sockaddr.lo network_io/unix/sockets.lo network_io/unix/sockopt.lo threadproc/unix/proc.lo threadproc/unix/procsup.lo threadproc/unix/signals.lo threadproc/unix/thread.lo threadproc/unix/threadpriv.lo misc/unix/errorcodes.lo misc/unix/getopt.lo misc/unix/otherchild.lo misc/unix/rand.lo misc/unix/start.lo misc/unix/version.lo locks/unix/global_mutex.lo locks/unix/proc_mutex.lo locks/unix/thread_cond.lo locks/unix/thread_mutex.lo locks/unix/thread_rwlock.lo time/unix/time.lo time/unix/timestr.lo mmap/unix/common.lo mmap/unix/mmap.lo shmem/unix/shm.lo user/unix/groupinfo.lo user/unix/userinfo.lo memory/unix/apr_pools.lo atomic/unix/apr_atomic.lo poll/unix/pollacc.lo poll/unix/poll.lo support/unix/waitio.lo dso/unix/dso.lo gawk -f /usr/local/httpd-2.0.43/srclib/apr/build/make_var_export.awk /usr/local/httpd-2.0.43/srclib/apr/include/*.h > export_vars.h gawk -f /usr/local/httpd-2.0.43/srclib/apr/build/make_exports.awk /usr/local/httpd-2.0.43/srclib/apr/include/*.h > exports.c gcc -E -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I./include -I../include exports.c | grep "ap_hack_" | sed -e 's/^.*[)]\(.*\);$/\1/' >> apr.exp gcc -E -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I./include -I../include export_vars.h | sed -e 's/^\#[^!]*//' | sed -e '/^$/d' >> apr.exp make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr' make[2]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr' Making all in apr-util make[2]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util' Making all in buckets make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/buckets' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/buckets' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c apr_buckets_file.c && touch apr_buckets_file.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c apr_buckets_pool.c && touch apr_buckets_pool.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c apr_buckets_flush.c && touch apr_buckets_flush.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c apr_buckets_refcount.c && touch apr_buckets_refcount.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c apr_buckets_heap.c && touch apr_buckets_heap.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c apr_buckets_simple.c && touch apr_buckets_simple.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c apr_buckets.c && touch apr_buckets.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c apr_buckets_mmap.c && touch apr_buckets_mmap.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c apr_buckets_socket.c && touch apr_buckets_socket.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c apr_buckets_eos.c && touch apr_buckets_eos.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c apr_buckets_pipe.c && touch apr_buckets_pipe.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c apr_brigade.c && touch apr_brigade.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c apr_buckets_alloc.c && touch apr_buckets_alloc.lo make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/buckets' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/buckets' Making all in crypto make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/crypto' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/crypto' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c apr_sha1.c && touch apr_sha1.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c apr_md4.c && touch apr_md4.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c apr_md5.c && touch apr_md5.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c uuid.c && touch uuid.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c getuuid.c && touch getuuid.lo make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/crypto' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/crypto' Making all in dbm make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/dbm' Making all in sdbm make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/dbm/sdbm' make[5]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/dbm/sdbm' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c sdbm.c && touch sdbm.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c sdbm_hash.c && touch sdbm_hash.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c sdbm_lock.c && touch sdbm_lock.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c sdbm_pair.c && touch sdbm_pair.lo make[5]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/dbm/sdbm' make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/dbm/sdbm' Making all in . make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/dbm' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c apr_dbm.c && touch apr_dbm.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c apr_dbm_berkeleydb.c && touch apr_dbm_berkeleydb.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c apr_dbm_gdbm.c && touch apr_dbm_gdbm.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c apr_dbm_sdbm.c && touch apr_dbm_sdbm.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c apr_dbm_ndbm.c && touch apr_dbm_ndbm.lo make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/dbm' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/dbm' Making all in encoding make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/encoding' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/encoding' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c apr_base64.c && touch apr_base64.lo make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/encoding' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/encoding' Making all in hooks make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/hooks' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/hooks' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c apr_hooks.c && touch apr_hooks.lo make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/hooks' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/hooks' Making all in ldap make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/ldap' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/ldap' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c apr_ldap_compat.c && touch apr_ldap_compat.lo make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/ldap' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/ldap' Making all in uri make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/uri' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/uri' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -I. -c gen_uri_delims.c && touch gen_uri_delims.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -I. -version-info 9:2:9 -o gen_uri_delims gen_uri_delims.lo -lm -lcrypt -lnsl -ldl libtool: link: warning: `-version-info' is ignored for programs ./gen_uri_delims > uri_delims.h /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -I. -c apr_uri.c && touch apr_uri.lo make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/uri' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/uri' Making all in xml make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/xml' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/xml' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c apr_xml.c && touch apr_xml.lo make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/xml' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/xml' Making all in misc make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/misc' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/misc' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c apr_date.c && touch apr_date.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c apr_rmm.c && touch apr_rmm.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c apr_reslist.c && touch apr_reslist.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c apr_queue.c && touch apr_queue.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c apu_version.c && touch apu_version.lo make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/misc' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/misc' Making all in strmatch make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/strmatch' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/strmatch' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c apr_strmatch.c && touch apr_strmatch.lo make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/strmatch' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/strmatch' Making all in xlate make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/xlate' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/xlate' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -c xlate.c && touch xlate.lo make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/xlate' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/xlate' make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include -version-info 9:2:9 -o libaprutil-0.la -rpath /usr/local/apache2/lib buckets/apr_buckets_file.lo buckets/apr_buckets_pool.lo buckets/apr_buckets_flush.lo buckets/apr_buckets_refcount.lo buckets/apr_buckets_heap.lo buckets/apr_buckets_simple.lo buckets/apr_buckets.lo buckets/apr_buckets_mmap.lo buckets/apr_buckets_socket.lo buckets/apr_buckets_eos.lo buckets/apr_buckets_pipe.lo buckets/apr_brigade.lo buckets/apr_buckets_alloc.lo crypto/apr_sha1.lo crypto/apr_md4.lo crypto/apr_md5.lo crypto/uuid.lo crypto/getuuid.lo dbm/sdbm/sdbm.lo dbm/sdbm/sdbm_hash.lo dbm/sdbm/sdbm_lock.lo dbm/sdbm/sdbm_pair.lo dbm/apr_dbm.lo dbm/apr_dbm_berkeleydb.lo dbm/apr_dbm_gdbm.lo dbm/apr_dbm_sdbm.lo dbm/apr_dbm_ndbm.lo encoding/apr_base64.lo hooks/apr_hooks.lo ldap/apr_ldap_compat.lo uri/apr_uri.lo xml/apr_xml.lo misc/apr_date.lo misc/apr_rmm.lo misc/apr_reslist.lo misc/apr_queue.lo misc/apu_version.lo strmatch/apr_strmatch.lo xlate/xlate.lo gawk -f /usr/local/httpd-2.0.43/srclib/apr/build/make_exports.awk /usr/local/httpd-2.0.43/srclib/apr-util/include/*.h > exports.c gawk -f /usr/local/httpd-2.0.43/srclib/apr/build/make_var_export.awk /usr/local/httpd-2.0.43/srclib/apr-util/include/*.h > export_vars.h gcc -E -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include exports.c | grep "ap_hack_" | sed -e 's/^.*[)]\(.*\);$/\1/' >> aprutil.exp gcc -E -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include/private -I/usr/local/httpd-2.0.43/srclib/apr/include export_vars.h | sed -e 's/^\#[^!]*//' | sed -e '/^$/d' >> aprutil.exp make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util' make[2]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util' Making all in pcre make[2]: Entering directory `/usr/local/httpd-2.0.43/srclib/pcre' make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/pcre' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c maketables.c && touch maketables.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c get.c && touch get.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c study.c && touch study.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c dftables.c && touch dftables.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -export-dynamic -o dftables dftables.lo ./dftables > /usr/local/httpd-2.0.43/srclib/pcre/chartables.c /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c pcre.c && touch pcre.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c pcreposix.c && touch pcreposix.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -export-dynamic -o libpcre.la maketables.lo get.lo study.lo pcre.lo pcreposix.lo make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/pcre' make[2]: Leaving directory `/usr/local/httpd-2.0.43/srclib/pcre' make[1]: Leaving directory `/usr/local/httpd-2.0.43/srclib' Making all in os make[1]: Entering directory `/usr/local/httpd-2.0.43/os' Making all in unix make[2]: Entering directory `/usr/local/httpd-2.0.43/os/unix' make[3]: Entering directory `/usr/local/httpd-2.0.43/os/unix' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c unixd.c && touch unixd.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -export-dynamic -o libos.la unixd.lo make[3]: Leaving directory `/usr/local/httpd-2.0.43/os/unix' make[2]: Leaving directory `/usr/local/httpd-2.0.43/os/unix' make[1]: Leaving directory `/usr/local/httpd-2.0.43/os' Making all in server make[1]: Entering directory `/usr/local/httpd-2.0.43/server' Making all in mpm make[2]: Entering directory `/usr/local/httpd-2.0.43/server/mpm' Making all in prefork make[3]: Entering directory `/usr/local/httpd-2.0.43/server/mpm/prefork' make[4]: Entering directory `/usr/local/httpd-2.0.43/server/mpm/prefork' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c prefork.c && touch prefork.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -export-dynamic -o libprefork.la prefork.lo make[4]: Leaving directory `/usr/local/httpd-2.0.43/server/mpm/prefork' make[3]: Leaving directory `/usr/local/httpd-2.0.43/server/mpm/prefork' make[2]: Leaving directory `/usr/local/httpd-2.0.43/server/mpm' make[2]: Entering directory `/usr/local/httpd-2.0.43/server' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c gen_test_char.c && touch gen_test_char.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c util_debug.c && touch util_debug.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -export-dynamic -o gen_test_char gen_test_char.lo util_debug.lo ./gen_test_char > test_char.h /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c config.c && touch config.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c log.c && touch log.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c main.c && touch main.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c vhost.c && touch vhost.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c util.c && touch util.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c util_script.c && touch util_script.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c util_md5.c && touch util_md5.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c util_cfgtree.c && touch util_cfgtree.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c util_ebcdic.c && touch util_ebcdic.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c util_time.c && touch util_time.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c rfc1413.c && touch rfc1413.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c connection.c && touch connection.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c listen.c && touch listen.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c mpm_common.c && touch mpm_common.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c util_charset.c && touch util_charset.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c util_xml.c && touch util_xml.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c util_filter.c && touch util_filter.lo gawk -f /usr/local/httpd-2.0.43/build/make_exports.awk /usr/local/httpd-2.0.43/include/*.h /usr/local/httpd-2.0.43/os/unix/*.h /usr/local/httpd-2.0.43/srclib/apr/include/*.h /usr/local/httpd-2.0.43/srclib/apr-util/include/*.h /usr/local/httpd-2.0.43/modules/http/*.h > exports.c /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c exports.c && touch exports.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c buildmark.c && touch buildmark.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c scoreboard.c && touch scoreboard.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c error_bucket.c && touch error_bucket.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c protocol.c && touch protocol.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c core.c && touch core.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c request.c && touch request.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -export-dynamic -o libmain.la test_char.h config.lo log.lo main.lo vhost.lo util.lo util_script.lo util_md5.lo util_cfgtree.lo util_ebcdic.lo util_time.lo rfc1413.lo connection.lo listen.lo mpm_common.lo util_charset.lo util_debug.lo util_xml.lo util_filter.lo exports.lo buildmark.lo scoreboard.lo error_bucket.lo protocol.lo core.lo request.lo gawk -f /usr/local/httpd-2.0.43/build/make_var_export.awk /usr/local/httpd-2.0.43/include/*.h /usr/local/httpd-2.0.43/os/unix/*.h /usr/local/httpd-2.0.43/srclib/apr/include/*.h /usr/local/httpd-2.0.43/srclib/apr-util/include/*.h /usr/local/httpd-2.0.43/modules/http/*.h > export_vars.h gcc -E -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main exports.c | grep "ap_hack_" | grep -v apr_ | sed -e 's/^.*[)]\(.*\);$/\1/' >> httpd.exp gcc -E -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main export_vars.h | grep -v apr_ | sed -e 's/^\#[^!]*//' | sed -e '/^$/d' >> httpd.exp make[2]: Leaving directory `/usr/local/httpd-2.0.43/server' make[1]: Leaving directory `/usr/local/httpd-2.0.43/server' Making all in modules make[1]: Entering directory `/usr/local/httpd-2.0.43/modules' Making all in aaa make[2]: Entering directory `/usr/local/httpd-2.0.43/modules/aaa' make[3]: Entering directory `/usr/local/httpd-2.0.43/modules/aaa' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c mod_access.c && touch mod_access.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -module -export-dynamic -o mod_access.la mod_access.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c mod_auth.c && touch mod_auth.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -module -export-dynamic -o mod_auth.la mod_auth.lo make[3]: Leaving directory `/usr/local/httpd-2.0.43/modules/aaa' make[2]: Leaving directory `/usr/local/httpd-2.0.43/modules/aaa' Making all in filters make[2]: Entering directory `/usr/local/httpd-2.0.43/modules/filters' make[3]: Entering directory `/usr/local/httpd-2.0.43/modules/filters' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c mod_include.c && touch mod_include.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -module -export-dynamic -o mod_include.la mod_include.lo make[3]: Leaving directory `/usr/local/httpd-2.0.43/modules/filters' make[2]: Leaving directory `/usr/local/httpd-2.0.43/modules/filters' Making all in loggers make[2]: Entering directory `/usr/local/httpd-2.0.43/modules/loggers' make[3]: Entering directory `/usr/local/httpd-2.0.43/modules/loggers' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c mod_log_config.c && touch mod_log_config.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -module -export-dynamic -o mod_log_config.la mod_log_config.lo make[3]: Leaving directory `/usr/local/httpd-2.0.43/modules/loggers' make[2]: Leaving directory `/usr/local/httpd-2.0.43/modules/loggers' Making all in metadata make[2]: Entering directory `/usr/local/httpd-2.0.43/modules/metadata' make[3]: Entering directory `/usr/local/httpd-2.0.43/modules/metadata' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c mod_env.c && touch mod_env.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -module -export-dynamic -o mod_env.la mod_env.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c mod_setenvif.c && touch mod_setenvif.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -module -export-dynamic -o mod_setenvif.la mod_setenvif.lo make[3]: Leaving directory `/usr/local/httpd-2.0.43/modules/metadata' make[2]: Leaving directory `/usr/local/httpd-2.0.43/modules/metadata' Making all in http make[2]: Entering directory `/usr/local/httpd-2.0.43/modules/http' make[3]: Entering directory `/usr/local/httpd-2.0.43/modules/http' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c http_core.c && touch http_core.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c http_protocol.c && touch http_protocol.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c http_request.c && touch http_request.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -module -export-dynamic -o mod_http.la http_core.lo http_protocol.lo http_request.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c mod_mime.c && touch mod_mime.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -module -export-dynamic -o mod_mime.la mod_mime.lo make[3]: Leaving directory `/usr/local/httpd-2.0.43/modules/http' make[2]: Leaving directory `/usr/local/httpd-2.0.43/modules/http' Making all in generators make[2]: Entering directory `/usr/local/httpd-2.0.43/modules/generators' make[3]: Entering directory `/usr/local/httpd-2.0.43/modules/generators' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c mod_status.c && touch mod_status.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -module -export-dynamic -o mod_status.la mod_status.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c mod_autoindex.c && touch mod_autoindex.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -module -export-dynamic -o mod_autoindex.la mod_autoindex.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c mod_asis.c && touch mod_asis.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -module -export-dynamic -o mod_asis.la mod_asis.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c mod_cgi.c && touch mod_cgi.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -module -export-dynamic -o mod_cgi.la mod_cgi.lo make[3]: Leaving directory `/usr/local/httpd-2.0.43/modules/generators' make[2]: Leaving directory `/usr/local/httpd-2.0.43/modules/generators' Making all in mappers make[2]: Entering directory `/usr/local/httpd-2.0.43/modules/mappers' make[3]: Entering directory `/usr/local/httpd-2.0.43/modules/mappers' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c mod_negotiation.c && touch mod_negotiation.lo mod_negotiation.c: In function `parse_negotiate_header': mod_negotiation.c:662: Internal error: Segmentation fault. Please submit a full bug report. See for instructions. make[3]: *** [mod_negotiation.lo] Error 1 make[3]: Leaving directory `/usr/local/httpd-2.0.43/modules/mappers' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory `/usr/local/httpd-2.0.43/modules/mappers' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/usr/local/httpd-2.0.43/modules' make: *** [all-recursive] Error 1 [barrie@magnolia httpd-2.0.43]$ ll total 1552 -rw-r--r-- 1 1134 1134 14885 Oct 3 01:40 ABOUT_APACHE -rw-r--r-- 1 1134 1134 72 Jan 31 2002 acconfig.h -rw-r--r-- 1 1134 1134 15732 Sep 10 02:37 acinclude.m4 -rw-r--r-- 1 1134 1134 4226 Aug 28 23:23 Apache.dsp -rw-r--r-- 1 1134 1134 32659 Aug 9 20:01 Apache.dsw -rw-r--r-- 1 1134 1134 146507 Jul 20 00:49 apachenw.mcp.zip drwxr-xr-x 3 1134 1134 4096 Oct 4 22:33 build -rw-r--r-- 1 1134 1134 2688 Apr 30 00:53 BuildBin.dsp -rwxr-xr-x 1 1134 1134 4687 Aug 2 08:42 buildconf -rw-r--r-- 1 1134 1134 553534 Oct 3 10:35 CHANGES -rw-r--r-- 1 1134 1134 10179 Jul 16 23:29 config.layout -rw-r--r-- 1 root root 34939 Oct 4 22:33 config.log -rwxr-xr-x 1 root root 74 Oct 4 22:33 config.nice -rwxr-xr-x 1 root root 40079 Oct 4 22:33 config.status -rwxr-xr-x 1 1134 1134 477447 Oct 3 10:43 configure -rw-r--r-- 1 1134 1134 17459 Aug 30 20:16 configure.in drwxr-xr-x 9 1134 1134 4096 Oct 3 10:43 docs -rw-r--r-- 1 1134 1134 367 Mar 12 2001 emacs-style drwxr-xr-x 2 1134 1134 4096 Oct 4 22:33 include -rw-r--r-- 1 1134 1134 3741 Nov 27 2001 INSTALL -rw-r--r-- 1 1134 1134 2912 Mar 16 2002 InstallBin.dsp -rw-r--r-- 1 1134 1134 5216 May 30 23:17 LAYOUT -rw-r--r-- 1 1134 1134 16008 Jul 29 10:06 libhttpd.dsp -rw-r--r-- 1 1134 1134 22998 Mar 21 2002 LICENSE -rw-r--r-- 1 root root 8338 Oct 4 22:33 Makefile -rw-r--r-- 1 1134 1134 8143 Sep 30 20:34 Makefile.in -rw-r--r-- 1 1134 1134 28729 Aug 9 20:01 Makefile.win drwxr-xr-x 17 1134 1134 4096 Oct 4 22:33 modules -rw-r--r-- 1 root root 2062 Oct 4 22:33 modules.c -rw-r--r-- 1 1134 1134 9267 Sep 7 04:09 NWGNUmakefile drwxr-xr-x 9 1134 1134 4096 Oct 4 22:33 os -rw-r--r-- 1 1134 1134 3306 Apr 23 17:18 README -rw-r--r-- 1 1134 1134 2400 Aug 30 09:42 README.platforms -rw-r--r-- 1 1134 1134 10548 Oct 2 00:13 ROADMAP drwxr-xr-x 4 1134 1134 4096 Oct 4 22:36 server drwxr-xr-x 5 1134 1134 4096 Oct 4 22:33 srclib drwxr-xr-x 4 1134 1134 4096 Oct 4 22:33 support drwxr-xr-x 2 1134 1134 4096 Oct 4 22:33 test [barrie@magnolia httpd-2.0.43]$ lynx https;://bugzilla.apacherehdhat.com/bugzilla (B)0[?1048h[?1047h[?7h[?1h=Getting http://bugzilla.redhat.com/bugzilla Looking up bugzilla.redhat.com  [26@Making HTTP connection to  Sending HTTP request. HTTP request sent; w[19@aiting for response /1.1 301 Moved Permanently Data transfer complete HTTP/1.1 301 Moved Permanently Using http://bugzilla.redhat.com/bugzilla/ Ge[2@tt Looking up bugzilla.redhat.com  [26@Making HTTP connection to  Sending HTTP request. HTTP request sent; w[19@aiting for response  Read 192 bytes of data, 180 bytes/sec. HTTP/1.1 200 OKMain Page (p1 of 2) Download Store Red Hat Network Global Navigation Items Bugzilla Version 2.8 Main Page Currently not logged in ... Click to login Fri Oct 4 22:36:43 EDT 2002 Goto bug # ______ Bugzilla News Old news... No news is good news. Bug Options Query existing bug reports Enter a new bug report Get summary reports Member Options Open a new Bugzilla account Forget the currently stored login Change password or user preferences Data transfer complete Arrow keys: Up and Down to move. Right to follow a link; Left to go back. H)elp O)ptions P)rint G)o M)ain screen Q)uit /=search [delete]=history list  (NORMAL LINK) Use right-arrow or to activate.Download Getting http://www.redhat.com/download/ Looking up www.redhat.com  [26@Making HTTP connection to  Sending HTTP request. HTTP request sent; w[19@aiting for response /1.1 302 Found Data transfer complete HTTP/1.1 302 Found Using http://www.redhat.com/apps/download/ Ge[2@tt Looking up www.redhat.com  [26@Making HTTP connection to  Sending HTTP request. HTTP request sent; w[19@aiting for response  Read 1.4 KB of data, 6.2 KB/sec. HTTP/1.0 200 OK www.redhat.com cookie: pg-sessi=1d05c1f641e261cf760 Allow? (Y/N/Always/neVer) Rejecting this.redhat.com | Download login/logout become a member [21@ download store cart red hat logo search ________ Go redhat.com redhat network   [USEMAP:horizontalnav_solutions.gif]  Red Hat Linux Solution Center arrow Member Log In arrow Partner Connection Migration Links Case Studies & Stories Tools & Whitepapers Technical Library Red Hat Speaks Downloads - Red Hat Collateral - Partner Downloads  - Mirror Sites Webcasts Newsletters & Notifications5 Data transfer complete  (NORMAL LINK) Use right-arrow or to activate.login/logout You are already at the beginning of this document.  (NORMAL LINK) Use right-arrow or to ac[6@tivate   Getting http://bugzilla.redhat.com/bugzilla/ Main Page2 Download Store Red Hat Network  Global Navigation Items Bugzilla Version 2.8  Main Page Currently not logged in ... Click to login Fri Oct 4 22:36:43 EDT 2002  Goto bug # ______   Bugzilla News Old news...  No news is good news.   Bug Options Query existing bug reports Enter a new bug report Get summ[10@ary report   Member Options Open a new Bugzilla account Forget the currently stored login Change password or user pr[8@eference (NORMAL LINK) Use right-arrow or to activate.DownloadDownloadStoreStoreRed Hat Network You are already at the first document  (NORMAL LINK) Use right-arrow or to activate. Red Hat NetworkStoreStoreDownloadDownloadStoreStoreRed Hat NetworkRed Hat NetworkGlobal Navigation ItemsGlobal Navigation ItemsClick to loginClick to loginForm field) Enter text. Use to submit (^Vx f[12@or no cache).______ Enter text into the field by typing on the keyboard Ctrl-U to delete all text in field, [Backspace] to delete a character ______Arrow keys: Up and Down to move. Right to follow a link; Left to go back. H)elp O)ptions P)rint G)o M)ain screen Q)uit /=search [delete]=history list NORMAL LINK) Use right-arrow or to activate.Old news...Old news...Query existing bug reportsQuery existing bug reportsEnter a new bug report Getting http://bugzilla.redhat.com/bugzilla/easy_enter_bug.cgi Looking up bugzilla.redhat.com  [26@Making HTTP connection to  Sending HTTP request. HTTP request sent; w[19@aiting for response  Read 192 bytes of data, 228 bytes/sec. HTTP/1.1 200 OKEasy Bug FormEasy Bug Form Currently not logged in ... Click to login Fri Oct 4 7:44Skip all this and go to standard bug entry form (old version). _________________________________________________________________ Note This form requires a JavaScript 1.2 capable browser. Please use the standard bug form above if your browser does not support this.  What is a bug? A bug can be quickly identified as a problem with existing software. However, it is much more complicated than that. It can be a behavioural problem in an application or program that does not work at all. It even applies to documentation that is incorrect. Data transfer complete5 (NORMAL LINK) Use right-arrow or to activate.DownloadDownloadStoreStoreRed Hat Network Getting http://bugzilla.redhat.com/bugzilla/ Main Page2 Red Hat Network Main Page Currently not logged in ... Click to login Fri Oct 4 6:43  Bugzilla News Old news...  No news is good news.  Bug Options Query existing bug reports Enter a new bug report Get summary reports  Member Options Open a new Bugzilla account Forget the currently stored login Change password or user preferences (NORMAL LINK) Use right-arrow or to activate.Enter a new bug report Getting http://bugzilla.redhat.com/bugzilla/easy_enter_bug.cgiEasy Bug Form5Easy Bug Form Currently not logged in ... Click to login Fri Oct 4 7:44Skip all this and go to standard bug entry form (old version). _________________________________________________________________ Note This form requires a JavaScript 1.2 capable browser. Please use the standard bug form above if your browser does not support this.  What is a bug? A bug can be quickly identified as a problem with existing software. However, it is much more complicated than that. It can be a behavioural problem in an application or program that does not work at all. It even applies to documentation that is incorrect. (NORMAL LINK) Use right-arrow or to activate.DownloadDownloadStoreStoreRed Hat NetworkRed Hat NetworkGlobal Navigation ItemsGlobal Navigation ItemsClick to login Getting http://bugzilla.redhat.com/bugzilla/login.cgi  Looking up bugzilla.redhat.com  [26@Making HTTP connection to  Sending HTTP request. HTTP request sent; w[19@aiting for response  Read 192 bytes of data, 168 bytes/sec. HTTP/1.1 200 OK Data transfer complete LoginLogin Currently not logged in ... Click to login Fri Oct 4 22:38:06 EDT 2002I need a legitimate e-mail address and password to continue.   E-mail address: ___________________________________  Password: ___________________________________  Login _________________________________________________________________  If you don't have a password, or have forgotten it, then please fill  in the e-mail address above and click here: E-mail me a password    (NORMAL LINK) Use right-arrow or to activate.DownloadDownloadStoreStoreRed Hat NetworkRed Hat NetworkGlobal Navigation ItemsGlobal Navigation ItemsClick to loginClick to loginForm field) Enter text. Use to submit (^Vx f[12@or no cache).______ Enter text into the field by typing on the keyboard Ctrl-U to delete all text in field, [Backspace] to delete a character ______Text entry field) Enter text. Use UP or DOWN arrows or tab to mov[5@e off.___________________________________bhayes@email.unc.edubhayes@email.unc.edu_______________Pass[4@word___________________________________*******__________________________________________Arrow keys: Up and Down to move. Right to follow a link; Left to go back. H)elp O)ptions P)rint G)o M)ain screen Q)uit /=search [delete]=history list Form submit button) Use right-arrow or to submit.LoginLoginE-mail me a password Submitting form... Getting http://bugzilla.redhat.com/bugzilla/login.cgi Looking up bugzilla.redhat.com  [26@Making HTTP connection to  Sending HTTP request. HTTP request sent; w[19@aiting for response  Read 192 bytes of data, 157 bytes/sec. HTTP/1.1 200 OKPassword has been emailed (p1 of 2)Password has been emailed Currently not logged in ... Click to login Fri Oct 4 22:38:46 EDT 2002The password for the e-mail address bhayes@email.unc.edu has been e-mailed to that address.   When the e-mail arrives, you can click Back and enter your password in the form there.   Home | News | New Bug | Query | Help | LogIn | LogOut | Errata   For questions or comments on bugzilla send mail to bugzilla-owner@redhat.com This is Bugzilla: the Mozilla bug system. For more information about what Bugzilla is and what it can do, see mozilla.org's bug pages. Data transfer complete Password has been emailed (NORMAL LINK) Use right-arrow or to activate.DownloadDownloadStoreStoreRed Hat NetworkRed Hat NetworkGlobal Navigation ItemsGlobal Navigation ItemsClick to loginClick to loginForm field) Enter text. Use to submit (^Vx f[12@or no cache).______ Enter text into the field by typing on the keyboard Ctrl-U to delete all text in field, [Backspace] to delete a character ______Arrow keys: Up and Down to move. Right to follow a link; Left to go back. H)elp O)ptions P)rint G)o M)ain screen Q)uit /=search [delete]=history list NORMAL LINK) Use right-arrow or to activate.HomeHomeNewsNewsNew BugNew BugQueryQueryHelpHelpLogInLogInLogOutLogOutErrataErratabugzilla-owner@redhat.combugzilla-owner@redhat.commozilla.orgmozilla.orgbugzilla-owner@redhat.combugzilla-owner@redhat.comErrataErrataLogOutLogOutLogInLogInHelpHelpQueryQueryNew Bug Are you sure you want to quit? (y)  [barrie@magnolia httpd-2.0.43]$ ^D Script done on Fri Oct 4 22:55:06 2002 Script started on Fri Oct 4 23:16:02 2002 [barrie@magnolia ~]$ cd /usr/local/httpd-2.0.43 [barrie@magnolia httpd-2.0.43]$ ll total 1552 -rw-r--r-- 1 1134 1134 14885 Oct 3 01:40 ABOUT_APACHE -rw-r--r-- 1 1134 1134 72 Jan 31 2002 acconfig.h -rw-r--r-- 1 1134 1134 15732 Sep 10 02:37 acinclude.m4 -rw-r--r-- 1 1134 1134 4226 Aug 28 23:23 Apache.dsp -rw-r--r-- 1 1134 1134 32659 Aug 9 20:01 Apache.dsw -rw-r--r-- 1 1134 1134 146507 Jul 20 00:49 apachenw.mcp.zip drwxr-xr-x 3 1134 1134 4096 Oct 4 22:33 build -rw-r--r-- 1 1134 1134 2688 Apr 30 00:53 BuildBin.dsp -rwxr-xr-x 1 1134 1134 4687 Aug 2 08:42 buildconf -rw-r--r-- 1 1134 1134 553534 Oct 3 10:35 CHANGES -rw-r--r-- 1 1134 1134 10179 Jul 16 23:29 config.layout -rw-r--r-- 1 root root 34939 Oct 4 22:33 config.log -rwxr-xr-x 1 root root 74 Oct 4 22:33 config.nice -rwxr-xr-x 1 root root 40079 Oct 4 22:33 config.status -rwxr-xr-x 1 1134 1134 477447 Oct 3 10:43 configure -rw-r--r-- 1 1134 1134 17459 Aug 30 20:16 configure.in drwxr-xr-x 9 1134 1134 4096 Oct 3 10:43 docs -rw-r--r-- 1 1134 1134 367 Mar 12 2001 emacs-style drwxr-xr-x 2 1134 1134 4096 Oct 4 22:33 include -rw-r--r-- 1 1134 1134 3741 Nov 27 2001 INSTALL -rw-r--r-- 1 1134 1134 2912 Mar 16 2002 InstallBin.dsp -rw-r--r-- 1 1134 1134 5216 May 30 23:17 LAYOUT -rw-r--r-- 1 1134 1134 16008 Jul 29 10:06 libhttpd.dsp -rw-r--r-- 1 1134 1134 22998 Mar 21 2002 LICENSE -rw-r--r-- 1 root root 8338 Oct 4 22:33 Makefile -rw-r--r-- 1 1134 1134 8143 Sep 30 20:34 Makefile.in -rw-r--r-- 1 1134 1134 28729 Aug 9 20:01 Makefile.win drwxr-xr-x 17 1134 1134 4096 Oct 4 22:33 modules -rw-r--r-- 1 root root 2062 Oct 4 22:33 modules.c -rw-r--r-- 1 1134 1134 9267 Sep 7 04:09 NWGNUmakefile drwxr-xr-x 9 1134 1134 4096 Oct 4 22:33 os -rw-r--r-- 1 1134 1134 3306 Apr 23 17:18 README -rw-r--r-- 1 1134 1134 2400 Aug 30 09:42 README.platforms -rw-r--r-- 1 1134 1134 10548 Oct 2 00:13 ROADMAP drwxr-xr-x 4 1134 1134 4096 Oct 4 22:36 server drwxr-xr-x 5 1134 1134 4096 Oct 4 22:33 srclib drwxr-xr-x 4 1134 1134 4096 Oct 4 22:33 support drwxr-xr-x 2 1134 1134 4096 Oct 4 22:33 test [barrie@magnolia httpd-2.0.43]$ cd modules [barrie@magnolia modules]$ cd mappers [barrie@magnolia mappers]$ more mod_negotiation.c /* ==================================================================== * The Apache Software License, Version 1.1 * * Copyright (c) 2000-2002 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. The end-user documentation included with the redistribution, * if any, must include the following acknowledgment: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." --More--(0%) * Alternately, this acknowledgment may appear in the software itself, * if and wherever such third-party acknowledgments normally appear. * * 4. The names "Apache" and "Apache Software Foundation" must * not be used to endorse or promote products derived from this * software without prior written permission. For written * permission, please contact apache@apache.org. * * 5. Products derived from this software may not be called "Apache", * nor may "Apache" appear in their name, without prior written * permission of the Apache Software Foundation. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT --More--(2%) * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * ==================================================================== * * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation. For more * information on the Apache Software Foundation, please see * . * * Portions of this software are based upon public domain software * originally written at the National Center for Supercomputing Applications, * University of Illinois, Urbana-Champaign. */ /* * mod_negotiation.c: keeps track of MIME types the client is willing to * accept, and contains code to handle type arbitration. * * rst */ #include "apr.h" [barrie@magnolia mappers]$ sudo make test Password: make: *** No rule to make target `test'. Stop. [barrie@magnolia mappers]$ sudo make install make[1]: Entering directory `/usr/local/httpd-2.0.43/modules/mappers' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c mod_negotiation.c && touch mod_negotiation.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -module -export-dynamic -o mod_negotiation.la mod_negotiation.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c mod_dir.c && touch mod_dir.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -module -export-dynamic -o mod_dir.la mod_dir.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c mod_imap.c && touch mod_imap.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -module -export-dynamic -o mod_imap.la mod_imap.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c mod_actions.c && touch mod_actions.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -module -export-dynamic -o mod_actions.la mod_actions.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c mod_userdir.c && touch mod_userdir.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -module -export-dynamic -o mod_userdir.la mod_userdir.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c mod_alias.c && touch mod_alias.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -module -export-dynamic -o mod_alias.la mod_alias.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c mod_so.c && touch mod_so.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -module -export-dynamic -o mod_so.la mod_so.lo mkdir /usr/local/apache2 mkdir /usr/local/apache2/modules make[1]: Leaving directory `/usr/local/httpd-2.0.43/modules/mappers' [barrie@magnolia mappers]$ pwd /usr/local/httpd-2.0.43/modules/mappers [barrie@magnolia mappers]$ ls config9.m4 mod_dir.c mod_negotiation.la mod_userdir.c Makefile mod_dir.dsp mod_negotiation.lo mod_userdir.dsp Makefile.in mod_dir.exp mod_negotiation.o mod_userdir.exp mod_actions.c mod_dir.la mod_rewrite.c mod_userdir.la mod_actions.dsp mod_dir.lo mod_rewrite.dsp mod_userdir.lo mod_actions.exp mod_dir.o mod_rewrite.exp mod_userdir.o mod_actions.la mod_imap.c mod_rewrite.h mod_vhost_alias.c mod_actions.lo mod_imap.dsp mod_so.c mod_vhost_alias.dsp mod_actions.o mod_imap.exp mod_so.la mod_vhost_alias.exp mod_alias.c mod_imap.la mod_so.lo NWGNUmakefile mod_alias.dsp mod_imap.lo mod_so.o NWGNUrewrite mod_alias.exp mod_imap.o mod_speling.c NWGNUspeling mod_alias.la mod_negotiation.c mod_speling.dsp NWGNUvhost mod_alias.lo mod_negotiation.dsp mod_speling.exp mod_alias.o mod_negotiation.exp modules.mk [barrie@magnolia mappers]$ cd .. [barrie@magnolia modules]$ ls aaa config5.m4 experimental http Makefile.in NWGNUmakefile ssl arch dav filters loggers mappers proxy test cache echo generators Makefile metadata README [barrie@magnolia modules]$ sudo make installpcd .. [barrie@magnolia httpd-2.0.43]$ ls ABOUT_APACHE config.layout InstallBin.dsp os acconfig.h config.log LAYOUT README acinclude.m4 config.nice libhttpd.dsp README.platforms Apache.dsp config.status LICENSE ROADMAP Apache.dsw configure Makefile server apachenw.mcp.zip configure.in Makefile.in srclib build docs Makefile.win support BuildBin.dsp emacs-style modules test buildconf include modules.c CHANGES INSTALL NWGNUmakefile [barrie@magnolia httpd-2.0.43]$ slscd ..lscd ..lspwdsudo make install Making install in srclib make[1]: Entering directory `/usr/local/httpd-2.0.43/srclib' Making install in apr make[2]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr' Making all in strings make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/strings' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/strings' make[4]: Nothing to be done for `local-all'. make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/strings' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/strings' Making all in passwd make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/passwd' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/passwd' make[4]: Nothing to be done for `local-all'. make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/passwd' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/passwd' Making all in tables make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/tables' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/tables' make[4]: Nothing to be done for `local-all'. make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/tables' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/tables' Making all in file_io/unix make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/file_io/unix' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/file_io/unix' make[4]: Nothing to be done for `local-all'. make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/file_io/unix' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/file_io/unix' Making all in network_io/unix make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/network_io/unix' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/network_io/unix' make[4]: Nothing to be done for `local-all'. make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/network_io/unix' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/network_io/unix' Making all in threadproc/unix make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/threadproc/unix' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/threadproc/unix' make[4]: Nothing to be done for `local-all'. make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/threadproc/unix' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/threadproc/unix' Making all in misc/unix make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/misc/unix' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/misc/unix' make[4]: Nothing to be done for `local-all'. make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/misc/unix' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/misc/unix' Making all in locks/unix make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/locks/unix' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/locks/unix' make[4]: Nothing to be done for `local-all'. make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/locks/unix' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/locks/unix' Making all in time/unix make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/time/unix' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/time/unix' make[4]: Nothing to be done for `local-all'. make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/time/unix' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/time/unix' Making all in mmap/unix make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/mmap/unix' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/mmap/unix' make[4]: Nothing to be done for `local-all'. make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/mmap/unix' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/mmap/unix' Making all in shmem/unix make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/shmem/unix' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/shmem/unix' make[4]: Nothing to be done for `local-all'. make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/shmem/unix' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/shmem/unix' Making all in user/unix make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/user/unix' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/user/unix' make[4]: Nothing to be done for `local-all'. make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/user/unix' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/user/unix' Making all in memory/unix make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/memory/unix' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/memory/unix' make[4]: Nothing to be done for `local-all'. make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/memory/unix' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/memory/unix' Making all in atomic/unix make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/atomic/unix' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/atomic/unix' make[4]: Nothing to be done for `local-all'. make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/atomic/unix' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/atomic/unix' Making all in poll/unix make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/poll/unix' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/poll/unix' make[4]: Nothing to be done for `local-all'. make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/poll/unix' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/poll/unix' Making all in support/unix make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/support/unix' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/support/unix' make[4]: Nothing to be done for `local-all'. make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/support/unix' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/support/unix' Making all in dso/unix make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/dso/unix' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr/dso/unix' make[4]: Nothing to be done for `local-all'. make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/dso/unix' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr/dso/unix' make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr' if [ ! -d /usr/local/apache2/include ]; then \ /usr/local/httpd-2.0.43/srclib/apr/build/mkdir.sh /usr/local/apache2/include; \ fi; mkdir /usr/local/apache2/include cp -p /usr/local/httpd-2.0.43/srclib/apr/include/*.h /usr/local/apache2/include; if test -n "/usr/local/httpd-2.0.43/srclib/apr"; then \ cp -p /usr/local/httpd-2.0.43/srclib/apr/include/*.h /usr/local/apache2/include; \ fi; if [ ! -d /usr/local/apache2/lib ]; then \ /usr/local/httpd-2.0.43/srclib/apr/build/mkdir.sh /usr/local/apache2/lib; \ fi; mkdir /usr/local/apache2/lib /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --mode=install cp libapr-0.la /usr/local/apache2/lib cp .libs/libapr-0.so.0.9.2 /usr/local/apache2/lib/libapr-0.so.0.9.2 (cd /usr/local/apache2/lib && rm -f libapr-0.so.0 && ln -s libapr-0.so.0.9.2 libapr-0.so.0) (cd /usr/local/apache2/lib && rm -f libapr-0.so && ln -s libapr-0.so.0.9.2 libapr-0.so) cp .libs/libapr-0.lai /usr/local/apache2/lib/libapr-0.la cp .libs/libapr-0.a /usr/local/apache2/lib/libapr-0.a ranlib /usr/local/apache2/lib/libapr-0.a chmod 644 /usr/local/apache2/lib/libapr-0.a PATH="$PATH:/sbin" ldconfig -n /usr/local/apache2/lib ---------------------------------------------------------------------- Libraries have been installed in: /usr/local/apache2/lib If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,--rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --mode=install cp apr.exp /usr/local/apache2/lib cp apr.exp /usr/local/apache2/lib/apr.exp if [ ! -d /usr/local/apache2/build ]; then \ /usr/local/httpd-2.0.43/srclib/apr/build/mkdir.sh /usr/local/apache2/build; \ fi; mkdir /usr/local/apache2/build if [ -f libtool ]; then \ /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --mode=install cp libtool /usr/local/apache2/build; \ fi; cp libtool /usr/local/apache2/build/libtool if [ -f shlibtool ]; then \ /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --mode=install cp shlibtool /usr/local/apache2/build; \ fi; if [ ! -d /usr/local/apache2/bin ]; then \ /usr/local/httpd-2.0.43/srclib/apr/build/mkdir.sh /usr/local/apache2/bin; \ fi; mkdir /usr/local/apache2/bin /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --mode=install cp apr-config /usr/local/apache2/bin cp apr-config /usr/local/apache2/bin/apr-config chmod 755 /usr/local/apache2/bin/apr-config make[2]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr' Making install in apr-util make[2]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util' Making all in buckets make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/buckets' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/buckets' make[4]: Nothing to be done for `local-all'. make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/buckets' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/buckets' Making all in crypto make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/crypto' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/crypto' make[4]: Nothing to be done for `local-all'. make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/crypto' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/crypto' Making all in dbm make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/dbm' Making all in sdbm make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/dbm/sdbm' make[5]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/dbm/sdbm' make[5]: Nothing to be done for `local-all'. make[5]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/dbm/sdbm' make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/dbm/sdbm' Making all in . make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/dbm' make[4]: Nothing to be done for `local-all'. make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/dbm' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/dbm' Making all in encoding make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/encoding' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/encoding' make[4]: Nothing to be done for `local-all'. make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/encoding' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/encoding' Making all in hooks make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/hooks' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/hooks' make[4]: Nothing to be done for `local-all'. make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/hooks' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/hooks' Making all in ldap make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/ldap' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/ldap' make[4]: Nothing to be done for `local-all'. make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/ldap' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/ldap' Making all in uri make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/uri' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/uri' make[4]: Nothing to be done for `local-all'. make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/uri' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/uri' Making all in xml make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/xml' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/xml' make[4]: Nothing to be done for `local-all'. make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/xml' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/xml' Making all in misc make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/misc' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/misc' make[4]: Nothing to be done for `local-all'. make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/misc' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/misc' Making all in strmatch make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/strmatch' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/strmatch' make[4]: Nothing to be done for `local-all'. make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/strmatch' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/strmatch' Making all in xlate make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/xlate' make[4]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util/xlate' make[4]: Nothing to be done for `local-all'. make[4]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/xlate' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util/xlate' make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/apr-util' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util' if [ ! -d /usr/local/apache2/include ]; then \ /usr/local/httpd-2.0.43/srclib/apr/build/mkdir.sh /usr/local/apache2/include; \ fi; cp -p /usr/local/httpd-2.0.43/srclib/apr-util/include/*.h /usr/local/apache2/include if [ -n "/usr/local/httpd-2.0.43/srclib/apr-util" ]; then \ cp -p /usr/local/httpd-2.0.43/srclib/apr-util/include/*.h /usr/local/apache2/include; \ fi; if [ ! -d /usr/local/apache2/lib ]; then \ /usr/local/httpd-2.0.43/srclib/apr/build/mkdir.sh /usr/local/apache2/lib; \ fi; list=''; for i in $list; do \ ( cd $i ; make DESTDIR= install ); \ done /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --mode=install cp libaprutil-0.la /usr/local/apache2/lib cp .libs/libaprutil-0.so.0.9.2 /usr/local/apache2/lib/libaprutil-0.so.0.9.2 (cd /usr/local/apache2/lib && rm -f libaprutil-0.so.0 && ln -s libaprutil-0.so.0.9.2 libaprutil-0.so.0) (cd /usr/local/apache2/lib && rm -f libaprutil-0.so && ln -s libaprutil-0.so.0.9.2 libaprutil-0.so) cp .libs/libaprutil-0.lai /usr/local/apache2/lib/libaprutil-0.la cp .libs/libaprutil-0.a /usr/local/apache2/lib/libaprutil-0.a ranlib /usr/local/apache2/lib/libaprutil-0.a chmod 644 /usr/local/apache2/lib/libaprutil-0.a PATH="$PATH:/sbin" ldconfig -n /usr/local/apache2/lib ---------------------------------------------------------------------- Libraries have been installed in: /usr/local/apache2/lib If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,--rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --mode=install cp aprutil.exp /usr/local/apache2/lib cp aprutil.exp /usr/local/apache2/lib/aprutil.exp if [ ! -d /usr/local/apache2/bin ]; then \ /usr/local/httpd-2.0.43/srclib/apr/build/mkdir.sh /usr/local/apache2/bin; \ fi; /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --mode=install cp apu-config /usr/local/apache2/bin cp apu-config /usr/local/apache2/bin/apu-config chmod 755 /usr/local/apache2/bin/apu-config make[2]: Leaving directory `/usr/local/httpd-2.0.43/srclib/apr-util' Making install in pcre make[2]: Entering directory `/usr/local/httpd-2.0.43/srclib/pcre' make[3]: Entering directory `/usr/local/httpd-2.0.43/srclib/pcre' make[3]: Leaving directory `/usr/local/httpd-2.0.43/srclib/pcre' make[2]: Leaving directory `/usr/local/httpd-2.0.43/srclib/pcre' make[2]: Entering directory `/usr/local/httpd-2.0.43/srclib' make[2]: Leaving directory `/usr/local/httpd-2.0.43/srclib' make[1]: Leaving directory `/usr/local/httpd-2.0.43/srclib' Making install in os make[1]: Entering directory `/usr/local/httpd-2.0.43/os' Making install in unix make[2]: Entering directory `/usr/local/httpd-2.0.43/os/unix' make[3]: Entering directory `/usr/local/httpd-2.0.43/os/unix' make[3]: Leaving directory `/usr/local/httpd-2.0.43/os/unix' make[2]: Leaving directory `/usr/local/httpd-2.0.43/os/unix' make[2]: Entering directory `/usr/local/httpd-2.0.43/os' make[2]: Leaving directory `/usr/local/httpd-2.0.43/os' make[1]: Leaving directory `/usr/local/httpd-2.0.43/os' Making install in server make[1]: Entering directory `/usr/local/httpd-2.0.43/server' Making install in mpm make[2]: Entering directory `/usr/local/httpd-2.0.43/server/mpm' Making install in prefork make[3]: Entering directory `/usr/local/httpd-2.0.43/server/mpm/prefork' make[4]: Entering directory `/usr/local/httpd-2.0.43/server/mpm/prefork' make[4]: Leaving directory `/usr/local/httpd-2.0.43/server/mpm/prefork' make[3]: Leaving directory `/usr/local/httpd-2.0.43/server/mpm/prefork' make[3]: Entering directory `/usr/local/httpd-2.0.43/server/mpm' make[3]: Leaving directory `/usr/local/httpd-2.0.43/server/mpm' make[2]: Leaving directory `/usr/local/httpd-2.0.43/server/mpm' make[2]: Entering directory `/usr/local/httpd-2.0.43/server' make[2]: Leaving directory `/usr/local/httpd-2.0.43/server' make[1]: Leaving directory `/usr/local/httpd-2.0.43/server' Making install in modules make[1]: Entering directory `/usr/local/httpd-2.0.43/modules' Making install in aaa make[2]: Entering directory `/usr/local/httpd-2.0.43/modules/aaa' make[3]: Entering directory `/usr/local/httpd-2.0.43/modules/aaa' make[3]: Leaving directory `/usr/local/httpd-2.0.43/modules/aaa' make[2]: Leaving directory `/usr/local/httpd-2.0.43/modules/aaa' Making install in filters make[2]: Entering directory `/usr/local/httpd-2.0.43/modules/filters' make[3]: Entering directory `/usr/local/httpd-2.0.43/modules/filters' make[3]: Leaving directory `/usr/local/httpd-2.0.43/modules/filters' make[2]: Leaving directory `/usr/local/httpd-2.0.43/modules/filters' Making install in loggers make[2]: Entering directory `/usr/local/httpd-2.0.43/modules/loggers' make[3]: Entering directory `/usr/local/httpd-2.0.43/modules/loggers' make[3]: Leaving directory `/usr/local/httpd-2.0.43/modules/loggers' make[2]: Leaving directory `/usr/local/httpd-2.0.43/modules/loggers' Making install in metadata make[2]: Entering directory `/usr/local/httpd-2.0.43/modules/metadata' make[3]: Entering directory `/usr/local/httpd-2.0.43/modules/metadata' make[3]: Leaving directory `/usr/local/httpd-2.0.43/modules/metadata' make[2]: Leaving directory `/usr/local/httpd-2.0.43/modules/metadata' Making install in http make[2]: Entering directory `/usr/local/httpd-2.0.43/modules/http' make[3]: Entering directory `/usr/local/httpd-2.0.43/modules/http' make[3]: Leaving directory `/usr/local/httpd-2.0.43/modules/http' make[2]: Leaving directory `/usr/local/httpd-2.0.43/modules/http' Making install in generators make[2]: Entering directory `/usr/local/httpd-2.0.43/modules/generators' make[3]: Entering directory `/usr/local/httpd-2.0.43/modules/generators' make[3]: Leaving directory `/usr/local/httpd-2.0.43/modules/generators' make[2]: Leaving directory `/usr/local/httpd-2.0.43/modules/generators' Making install in mappers make[2]: Entering directory `/usr/local/httpd-2.0.43/modules/mappers' make[3]: Entering directory `/usr/local/httpd-2.0.43/modules/mappers' make[3]: Leaving directory `/usr/local/httpd-2.0.43/modules/mappers' make[2]: Leaving directory `/usr/local/httpd-2.0.43/modules/mappers' make[2]: Entering directory `/usr/local/httpd-2.0.43/modules' make[2]: Leaving directory `/usr/local/httpd-2.0.43/modules' make[1]: Leaving directory `/usr/local/httpd-2.0.43/modules' Making install in support make[1]: Entering directory `/usr/local/httpd-2.0.43/support' make[2]: Entering directory `/usr/local/httpd-2.0.43/support' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c htpasswd.c && touch htpasswd.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -export-dynamic -o htpasswd htpasswd.lo /usr/local/httpd-2.0.43/srclib/pcre/libpcre.la /usr/local/httpd-2.0.43/srclib/apr-util/libaprutil-0.la -lgdbm -ldb -lexpat /usr/local/httpd-2.0.43/srclib/apr/libapr-0.la -lm -lcrypt -lnsl -ldl /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c htdigest.c && touch htdigest.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -export-dynamic -o htdigest htdigest.lo /usr/local/httpd-2.0.43/srclib/pcre/libpcre.la /usr/local/httpd-2.0.43/srclib/apr-util/libaprutil-0.la -lgdbm -ldb -lexpat /usr/local/httpd-2.0.43/srclib/apr/libapr-0.la -lm -lcrypt -lnsl -ldl /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c rotatelogs.c && touch rotatelogs.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -export-dynamic -o rotatelogs rotatelogs.lo /usr/local/httpd-2.0.43/srclib/pcre/libpcre.la /usr/local/httpd-2.0.43/srclib/apr-util/libaprutil-0.la -lgdbm -ldb -lexpat /usr/local/httpd-2.0.43/srclib/apr/libapr-0.la -lm -lcrypt -lnsl -ldl /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c logresolve.c && touch logresolve.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -export-dynamic -o logresolve logresolve.lo /usr/local/httpd-2.0.43/srclib/pcre/libpcre.la /usr/local/httpd-2.0.43/srclib/apr-util/libaprutil-0.la -lgdbm -ldb -lexpat /usr/local/httpd-2.0.43/srclib/apr/libapr-0.la -lm -lcrypt -lnsl -ldl /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c ab.c && touch ab.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -export-dynamic -o ab ab.lo /usr/local/httpd-2.0.43/srclib/pcre/libpcre.la /usr/local/httpd-2.0.43/srclib/apr-util/libaprutil-0.la -lgdbm -ldb -lexpat /usr/local/httpd-2.0.43/srclib/apr/libapr-0.la -lm -lcrypt -lnsl -ldl /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c checkgid.c && touch checkgid.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -export-dynamic -o checkgid checkgid.lo /usr/local/httpd-2.0.43/srclib/pcre/libpcre.la /usr/local/httpd-2.0.43/srclib/apr-util/libaprutil-0.la -lgdbm -ldb -lexpat /usr/local/httpd-2.0.43/srclib/apr/libapr-0.la -lm -lcrypt -lnsl -ldl /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c htdbm.c && touch htdbm.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -export-dynamic -o htdbm htdbm.lo /usr/local/httpd-2.0.43/srclib/pcre/libpcre.la /usr/local/httpd-2.0.43/srclib/apr-util/libaprutil-0.la -lgdbm -ldb -lexpat /usr/local/httpd-2.0.43/srclib/apr/libapr-0.la -lm -lcrypt -lnsl -ldl make[2]: Leaving directory `/usr/local/httpd-2.0.43/support' make[1]: Leaving directory `/usr/local/httpd-2.0.43/support' make[1]: Entering directory `/usr/local/httpd-2.0.43' /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -c modules.c && touch modules.lo /bin/sh /usr/local/httpd-2.0.43/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER -I/usr/local/httpd-2.0.43/srclib/apr/include -I/usr/local/httpd-2.0.43/srclib/apr-util/include -I. -I/usr/local/httpd-2.0.43/os/unix -I/usr/local/httpd-2.0.43/server/mpm/prefork -I/usr/local/httpd-2.0.43/modules/http -I/usr/local/httpd-2.0.43/modules/filters -I/usr/local/httpd-2.0.43/modules/proxy -I/usr/local/httpd-2.0.43/include -I/usr/local/httpd-2.0.43/modules/dav/main -export-dynamic -o httpd modules.lo modules/aaa/mod_access.la modules/aaa/mod_auth.la modules/filters/mod_include.la modules/loggers/mod_log_config.la modules/metadata/mod_env.la modules/metadata/mod_setenvif.la modules/http/mod_http.la modules/http/mod_mime.la modules/generators/mod_status.la modules/generators/mod_autoindex.la modules/generators/mod_asis.la modules/generators/mod_cgi.la modules/mappers/mod_negotiation.la modules/mappers/mod_dir.la modules/mappers/mod_imap.la modules/mappers/mod_actions.la modules/mappers/mod_userdir.la modules/mappers/mod_alias.la modules/mappers/mod_so.la server/mpm/prefork/libprefork.la server/libmain.la os/unix/libos.la /usr/local/httpd-2.0.43/srclib/pcre/libpcre.la /usr/local/httpd-2.0.43/srclib/apr-util/libaprutil-0.la -lgdbm -ldb -lexpat /usr/local/httpd-2.0.43/srclib/apr/libapr-0.la -lm -lcrypt -lnsl -ldl Installing configuration files mkdir /usr/local/apache2/conf Installing HTML documents mkdir /usr/local/apache2/htdocs Installing error documents mkdir /usr/local/apache2/error Installing icons mkdir /usr/local/apache2/icons mkdir /usr/local/apache2/logs Installing CGIs mkdir /usr/local/apache2/cgi-bin Installing header files Installing man pages and online manual mkdir /usr/local/apache2/man mkdir /usr/local/apache2/man/man1 mkdir /usr/local/apache2/man/man8 mkdir /usr/local/apache2/manual Installing build system files make[1]: Leaving directory `/usr/local/httpd-2.0.43' [barrie@magnolia httpd-2.0.43]$pwd /usr/local/httpd-2.0.43 [barrie@magnolia httpd-2.0.43]$ cd .. [barrie@magnolia local]$ ls apache2 etc httpd-2.0.43.tar.gz libexec sbin bin games include lynx2-8-4 share doc httpd-2.0.43 lib lynx2.8.4.tar src [barrie@magnolia local]$ cd apache2 [barrie@magnolia apache2]$ ls bin cgi-bin error icons lib man modules build conf htdocs include logs manual [barrie@magnolia apache2]$ cd conf [barrie@magnolia conf]$ ls highperformance.conf httpd.conf magic ssl.conf highperformance-std.conf httpd-std.conf mime.types ssl-std.conf [barrie@magnolia conf]$ sudo vi httpd.conf # Based upon the NCSA server configuration files originally by Rob McCool. # # This is the main Apache server configuration file. It contains the # configuration directives that give the server its instructions. # See for detailed information about # the directives. # # Do NOT simply read the instructions in here without understanding # what they do. They're here only as hints or reminders. If you are unsure # consult the online docs. You have been warned. # # The configuration directives are grouped into three basic sections: # 1. Directives that control the operation of the Apache server process as a # whole (the 'global environment'). # 2. Directives that define the parameters of the 'main' or 'default' server, # which responds to requests that aren't handled by a virtual host. # These directives also provide default values for the settings # of all virtual hosts. # 3. Settings for virtual hosts, which allow Web requests to be sent to # different IP addresses or hostnames and have them handled by the # same Apache server process. #1,1Top[?25h[?25l2[?25h[?25l3[?25h[?25l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[?25h[?25l8[?25h[?25l9[?25h[?25l10,1[?25h[?25l:[?25hq! [?25l[?1l>[?25h[?1047l[?1048l[barrie@magnolia conf]$ sudo via apachehttpd.conf [?1048h[?1047h[?1h=[?25h[?25h[?25l"httpd.conf" 1052L, 35134C# # Based upon the NCSA server configuration files originally by Rob McCool. # # This is the main Apache server configuration file. It contains the # configuration directives that give the server its instructions. # See for detailed information about # the directives. # # Do NOT simply read the instructions in here without understanding # what they do. They're here only as hints or reminders. If you are unsure # consult the online docs. You have been warned. # # The configuration directives are grouped into three basic sections: # 1. Directives that control the operation of the Apache server process as a # whole (the 'global environment'). # 2. Directives that define the parameters of the 'main' or 'default' server, # which responds to requests that aren't handled by a virtual host. # These directives also provide default values for the settings # of all virtual hosts. # 3. Settings for virtual hosts, which allow Web requests to be sent to # different IP addresses or hostnames and have them handled by the # same Apache server process. #[?25h [?25l # Configuration and logfile names: If the filenames you specify for many [?25h[?25l # of the server's control files begin with "/" (or "drive:/" for Win32), the [?25h[?25l # server will use that explicit path. If the filenames do *not* begin [?25h[?25l # with "/", the value of ServerRoot is prepended -- so "logs/foo.log" [?25h[?25l # with ServerRoot set to "/usr/local/apache2" will be interpreted by the [?25h[?25l # server as "/usr/local/apache2/logs/foo.log". [?25h[?25l #[?25h[?25l [?25h[?25l ### Section 1: Global Environment [?25h[?25l #[?25h[?25l # The directives in this section affect the overall operation of Apache, [?25h[?25l # such as the number of concurrent requests it can handle or where it [?25h[?25l # can find its configuration files. [?25h[?25l #[?25h[?25l [?25h[?25l #[?25h[?25l # ServerRoot: The top of the directory tree under which the server's [?25h[?25l # configuration, error, and log files are kept. [?25h[?25l #[?25h[?25l # NOTE! If you intend to place this on an NFS (or otherwise network) [?25h[?25l # mounted filesystem then please read the LockFile documentation (available [?25h[?25l # at ); [?25h[?25l # you will save yourself a lot of trouble. [?25h[?25l #[?25h[?25l # Do NOT add a slash at the end of the directory path. [?25h[?25l #[?25h[?25l ServerRoot "/usr/local/apache2" [?25h[?25l [?25h[?25l #[?25h[?25l httpd.confLAST20021004 [?25l"httpd.confLAST20021004" [New] 1052L, 35134C written[?25h[?25l # The accept serialization lock file MUST BE STORED ON A LOCAL DISK.[?25h[?25l #[?25h[?25l  [?25h[?25l  [?25h[?25l #LockFile logs/accept.lock [?25h[?25l  [?25h[?25l  [?25h[?25l [?25h[?25l #[?25h[?25l # ScoreBoardFile: File used to store internal server process information. [?25h[?25l # If unspecified (the default), the scoreboard will be stored in an [?25h[?25l # anonymous shared memory segment, and will be unavailable to third-party [?25h[?25l # applications. [?25h[?25l # If specified, ensure that no two invocations of Apache share the same [?25h[?25l # scoreboard file. The scoreboard file MUST BE STORED ON A LOCAL DISK. [?25h[?25l #[?25h[?25l  [?25h[?25l  [?25h[?25l #ScoreBoardFile logs/apache_runtime_status [?25h[?25l  [?25h[?25l  [?25h[?25l [?25h[?25l [?25h[?25l #[?25h[?25l # PidFile: The file in which the server should record its process [?25h[?25l # identification number when it starts. [?25h[?25l #[?25h[?25l  [?25h[?25l PidFile logs/httpd.pid [?25h[?25l  [?25h[?25l [?25h[?25l #[?25h[?25l # Timeout: The number of seconds before receives and sends time out. [?25h[?25l #[?25h[?25l Timeout 300 [?25h[?25l [?25h[?25l #[?25h[?25l # KeepAlive: Whether or not to allow persistent connections (more than [?25h[?25l # one request per connection). Set to "Off" to deactivate. [?25h[?25l #[?25h[?25l KeepAlive On [?25h[?25l [?25h[?25l #[?25h[?25l # MaxKeepAliveRequests: The maximum number of requests to allow [?25h[?25l # during a persistent connection. Set to 0 to allow an unlimited amount. [?25h[?25l # We recommend you leave this number high, for maximum performance. [?25h[?25l #[?25h[?25l MaxKeepAliveRequests 100 [?25h[?25l [?25h[?25l #[?25h[?25l # KeepAliveTimeout: Number of seconds to wait for the next request from the [?25h[?25l # same client on the same connection. [?25h[?25l #[?25h[?25l KeepAliveTimeout 15 [?25h[?25l [?25h[?25l ## [?25h[?25l ## Server-Pool Size Regulation (MPM specific) [?25h[?25l ## [?25h[?25l [?25h[?25l # prefork MPM [?25h[?25l # StartServers: number of server processes to start [?25h[?25l # MinSpareServers: minimum number of server processes which are kept spare [?25h[?25l # MaxSpareServers: maximum number of server processes which are kept spare [?25h[?25l # MaxClients: maximum number of server processes allowed to start [?25h[?25l # MaxRequestsPerChild: maximum number of requests a server process serves [?25h[?25l  [?25h[?25l StartServers5 [?25h[?25l MinSpareServers 5 [?25h[?25l MaxSpareServers 10 [?25h[?25l MaxClients150 [?25h[?25l MaxRequestsPerChild 0 [?25h[?25l  [?25h[?25l6[?25h[?25l-- INSERT --[?25h[?25l16[?25h[?25l[?25h1[?25l[?25h[?25l1[?25h[?25l [?25h[?25l # worker MPM[?25h[?25l # StartServers: initial number of server processes to start[?25h[?25l # MaxClients: maximum number of simultaneous client connections[?25h[?25l # MinSpareThreads: minimum number of worker threads which are kept spare[?25h[?25l # MaxSpareThreads: maximum number of worker threads which are kept spare[?25h[?25l # ThreadsPerChild: constant number of worker threads in each server process[?25h[?25l # MaxRequestsPerChild: maximum number of requests a server process serves[?25h[?25l [?25h[?25l StartServers2[?25h[?25l MaxClients150[?25h[?25l MinSpareThreads 25[?25h[?25l MaxSpareThreads 75[?25h[?25l ThreadsPerChild 25[?25h[?25l MaxRequestsPerChild 0[?25h[?25l [?25h[?25l [?25h[?25l # perchild MPM[?25h[?25l # NumServers: constant number of server processes[?25h[?25l # StartThreads: initial number of worker threads in each server process[?25h[?25l # MinSpareThreads: minimum number of worker threads which are kept spare[?25h[?25l # MaxSpareThreads: maximum number of worker threads which are kept spare[?25h[?25l # MaxThreadsPerChild: maximum number of worker threads in each server process[?25h[?25l # MaxRequestsPerChild: maximum number of connections per server process[?25h[?25l [?25h[?25l NumServers5[?25h[?25l StartThreads5[?25h[?25l MinSpareThreads 5[?25h[?25l MaxSpareThreads 10[?25h[?25l MaxThreadsPerChild 20[?25h[?25l MaxRequestsPerChild 0[?25h[?25l [?25h[?25l [?25h[?25l # WinNT MPM[?25h[?25l # ThreadsPerChild: constant number of worker threads in the server process[?25h[?25l # MaxRequestsPerChild: maximum number of requests a server process serves[?25h[?25l [?25h[?25l ThreadsPerChild 250[?25h[?25l MaxRequestsPerChild 0[?25h[?25l [?25h[?25l [?25h[?25l # BeOS MPM[?25h[?25l # StartThreads: how many threads do we initially spawn?[?25h[?25l # MaxClients: max number of threads we can have (1 thread == 1 client)[?25h[?25l # MaxRequestsPerThread: maximum number of requests each thread will process[?25h[?25l [?25h[?25l StartThreads10[?25h[?25l MaxClients50[?25h[?25l MaxRequestsPerThread10000[?25h[?25l  [?25h[?25l [?25h[?25l # NetWare MPM[?25h[?25l # ThreadStackSize: Stack size allocated for each worker thread[?25h[?25l # StartThreads: Number of worker threads launched at server startup[?25h[?25l # MinSpareThreads: Minimum number of idle threads, to handle request spikes[?25h[?25l # MaxSpareThreads: Maximum number of idle threads[?25h[?25l # MaxThreads: Maximum number of worker threads alive at the same time[?25h[?25l # MaxRequestsPerChild: Maximum number of requests a thread serves. It is[?25h[?25l #recommended that the default value of 0 be set for this[?25h[?25l #directive on NetWare. This will allow the thread to[?25h[?25l#continue to service requests indefinitely.  [?25h[?25l [?25h[?25l ThreadStackSize 65536[?25h[?25l StartThreads250[?25h[?25l MinSpareThreads25[?25h[?25l MaxSpareThreads250[?25h[?25l MaxThreads1000[?25h[?25l MaxRequestsPerChild 0[?25h[?25l [?25h[?25l [?25h[?25l # OS/2 MPM[?25h[?25l # StartServers: Number of server processes to maintain[?25h[?25l # MinSpareThreads: Minimum number of idle threads per process,[?25h[?25l #to handle request spikes[?25h[?25l # MaxSpareThreads: Maximum number of idle threads per process[?25h[?25l # MaxRequestsPerChild: Maximum number of connections per server process[?25h[?25l [?25h[?25l StartServers2[?25h[?25l MinSpareThreads5[?25h[?25l MaxSpareThreads10[?25h[?25l MaxRequestsPerChild 0[?25h[?25l [?25h[?25l#[?25h [?25l # Listen: Allows you to bind Apache to specific IP addresses and/or[?25h[?25l # ports, in addition to the default. See also the [?25h[?25l # directive.[?25h[?25l #[?25h[?25l # Change this to Listen on specific IP addresses as shown below to[?25h[?25l # prevent Apache from glomming onto all bound IP addresses (0.0.0.0)[?25h[?25l #[?25h[?25l #Listen 12.34.56.78:80[?25h[?25l Listen 80[?25h[?25l [?25h[?25l #[?25h[?25l # Dynamic Shared Object (DSO) Support[?25h[?25l #[?25h[?25l # To be able to use the functionality of a module which was built as a DSO you[?25h[?25l # have to place corresponding `LoadModule' lines at this location so the[?25h[?25l # directives contained in it are actually available _before_ they are used.[?25h[?25l # Statically compiled modules (those listed by `httpd -l') do not need[?25h[?25l # to be loaded here.[?25h[?25l #[?25h[?25l # Example:[?25h[?25l # LoadModule foo_module modules/mod_foo.so[?25h[?25l #[?25h[?25l [?25h[?25l #[?25h[?25l # ExtendedStatus controls whether Apache will generate "full" status[?25h[?25l # information (ExtendedStatus On) or just basic information (ExtendedStatus[?25h[?25l # Off) when the "server-status" handler is called. The default is Off.[?25h[?25l #[?25h[?25l #ExtendedStatus On[?25h[?25l [?25h[?25l ### Section 2: 'Main' server configuration[?25h[?25l #[?25h[?25l # The directives in this section set up the values used by the 'main'[?25h[?25l # server, which responds to any requests that aren't handled by a[?25h[?25l # definition. These values also provide defaults for[?25h[?25l # any containers you may define later in the file.[?25h[?25l #[?25h[?25l # All of these directives may appear inside containers,[?25h[?25l # in which case these default settings will be overridden for the[?25h[?25l # virtual host being defined.[?25h[?25l #[?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l #[?25h[?25l # If you wish httpd to run as a different user or group, you must run[?25h[?25l # httpd as root initially and it will switch.[?25h[?25l #[?25h[?25l # User/Group: The name (or #number) of the user/group to run httpd as.[?25h[?25l # . On SCO (ODT 3) use "User nouser" and "Group nogroup".[?25h[?25l # . On HPUX you may not be able to use shared memory as nobody, and the[?25h[?25l # suggested workaround is to create a user www and use that user.[?25h[?25l # NOTE that some kernels refuse to setgid(Group) or semctl(IPC_SET)[?25h[?25l # when the value of (unsigned)Group is above 60000;[?25h[?25l # don't use Group #-1 on these systems![?25h[?25l #[?25h[?25l User nobody[?25h[?25l Group #-1[?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l #[?25h[?25l # ServerAdmin: Your address, where problems with the server should be[?25h[?25l # e-mailed. This address appears on some server-generated pages, such[?25h[?25l # as error documents. e.g. admin@your-domain.com[?25h[?25l #[?25h[?25l ServerAdmin you@your.address[?25h[?25l [?25h[?25l#[?25h[?25l[?25h[?25l[?25h    [?25l #[?25h[?25l ServerAdmin you@your.address[?25h[?25l [?25h[?25l #[?25h[?25l # ServerName gives the name and port that the server uses to identify itself.[?25h[?25l # This can often be determined automatically, but we recommend you specify[?25h[?25l # it explicitly to prevent problems during startup.[?25h[?25l #[?25h[?25l-- INSERT --[?25h[?25l#ServerAdmin you@your.address #[?25h[?25l ServerAdmin you@your.address # [?25h[?25l[?25h  [?25l-- INSERT --[?25h[?25l[?25h[?25l[?25h[?25lS[?25h[?25le[?25h[?25lr[?25h[?25lv[?25h[?25le[?25h[?25lr[?25h[?25lA[?25h[?25ld[?25h[?25lm[?25h[?25li[?25h[?25ln[?25h[?25l [?25h[?25lb[?25h[?25lh[?25h[?25la[?25h[?25ly[?25h[?25le[?25h[?25ls[?25h[?25l@[?25h[?25le[?25h[?25lm[?25h[?25la[?25h[?25li[?25h[?25ll[?25h[?25l.[?25h[?25lu[?25h[?25ln[?25h[?25lc[?25h[?25l.[?25h[?25le[?25h[?25ld[?25h[?25lu[?25h[?25l[?25h [?25l #[?25h[?25l # If this is not set to valid DNS name for your host, server-generated[?25h[?25l # redirections will not work. See also the UseCanonicalName directive.[?25h[?25l #[?25h[?25l # If your host doesn't have a registered DNS name, enter its IP address here.[?25h[?25l # You will have to access it by its address anyway, and this will make[?25h[?25l # redirections work in a sensible way.[?25h[?25l #[?25h[?25l #ServerName new.host.name:80[?25h[?25l [?25h[?25l #[?25h[?25l # UseCanonicalName: Determines how Apache constructs self-referencing[?25h[?25l -- INSERT --[?25h[?25l[?25h[?25l[?25h[?25lS[?25h[?25le[?25h[?25lr[?25h[?25lv[?25h[?25le[?25h[?25lr[?25h[?25lN[?25h[?25la[?25h[?25lm[?25h[?25le[?25h[?25l [?25h[?25lm[?25h[?25la[?25h[?25lg[?25h[?25ln[?25h[?25lo[?25h[?25ll[?25h[?25li[?25h[?25la[?25h[?25l.[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l2[?25h[?25l4[?25h[?25l.[?25h[?25l1[?25h[?25l6[?25h[?25l3[?25h[?25l.[?25h[?25l4[?25h[?25l2[?25h[?25l1[?25h[?25l[?25h[?25l[?25h[?25l1[?25h[?25l.[?25h[?25l7[?25h[?25l3[?25h [?25l[?25h [?25l #[?25h[?25l # UseCanonicalName: Determines how Apache constructs self-referencing [?25h[?25l # URLs and the SERVER_NAME and SERVER_PORT variables. [?25h[?25l # When set "Off", Apache will use the Hostname and Port supplied [?25h[?25l # by the client. When set "On", Apache will use the value of the [?25h[?25l # ServerName directive. [?25h[?25l #[?25h[?25l UseCanonicalName Off [?25h[?25l [?25h[?25l #[?25h[?25l # DocumentRoot: The directory out of which you will serve your [?25h[?25l # documents. By default, all requests are taken from this directory, but [?25h[?25l # symbolic links and aliases may be used to point to other locations. [?25h[?25l #[?25h[?25l DocumentRoot "/usr/local/apache2/htdocs" [?25h[?25l [?25h[?25l #[?25h[?25l -- INSERT --[?25h[?25l#DocumentRoot "/usr/local/apache2/htdocs" #[?25h[?25l DocumentRoot "/usr/local/apache2/htdocs" # [?25h [?25l[?25h[?25lD[?25h[?25lo[?25h[?25lc[?25h[?25lu[?25h[?25lm[?25h[?25le[?25h[?25ln[?25h[?25lt[?25h[?25lR[?25h[?25lo[?25h[?25lo[?25h[?25lt[?25h[?25l [?25h[?25l"[?25h[?25l/[?25h[?25lh[?25h[?25lo[?25h[?25lm[?25h[?25le[?25h[?25l/[?25h[?25lb[?25h[?25lh[?25h[?25la[?25h[?25ly[?25h[?25le[?25h[?25ls[?25h[?25l/[?25h[?25lh[?25h[?25lt[?25h[?25ld[?25h[?25lo[?25h[?25lc[?25h[?25ls[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25lh[?25h[?25lt[?25h[?25ld[?25h[?25lo[?25h[?25lc[?25h[?25ls[?25h[?25l"[?25h[?25l[?25h [?25l #[?25h[?25l # Each directory to which Apache has access can be configured with respect[?25h[?25l # to which services and features are allowed and/or disabled in that[?25h[?25l # directory (and its subdirectories).[?25h[?25l #[?25h[?25l # First, we configure the "default" to be a very restrictive set of[?25h[?25l # features. [?25h[?25l #[?25h[?25l [?25h[?25l Options FollowSymLinks[?25h[?25l AllowOverride None[?25h[?25l [?25h[?25l [?25h[?25l #[?25h[?25l # Note that from this point forward you must specifically allow[?25h[?25l # particular features to be enabled - so if something's not working as[?25h[?25l # you might expect, make sure that you have specifically enabled it[?25h[?25l # below.[?25h[?25l #[?25h[?25l [?25h[?25l #[?25h[?25l # This should be changed to whatever you set DocumentRoot to.[?25h[?25l #[?25h[?25l [?25h[?25l [?25h[?25l #[?25h[?25l # Possible values for the Options directive are "None", "All",[?25h[?25l # or any combination of:[?25h[?25l-- INSERT --[?25h [?25l# #[?25h[?25l # [?25h [?25l[?25h[?25l-- INSERT --[?25h[?25l<[?25h[?25lD[?25h[?25li[?25h[?25lr[?25h[?25le[?25h[?25lc[?25h[?25lt[?25h[?25lo[?25h[?25lr[?25h[?25ly[?25h[?25l [?25h[?25l"[?25h[?25l/[?25h[?25lh[?25h[?25lo[?25h[?25lm[?25h[?25le[?25h[?25l/[?25h[?25lh[?25h[?25lt[?25h[?25ld[?25h[?25lo[?25h[?25lc[?25h[?25ls[?25h[?25l"[?25h[?25l>[?25h[?25l[?25h [?25l # Possible values for the Options directive are "None", "All",[?25h[?25l # or any combination of:[?25h[?25l # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI Multiviews[?25h[?25l #[?25h[?25l # Note that "MultiViews" must be named *explicitly* --- "Options All"[?25h[?25l # doesn't give it to you.[?25h[?25l #[?25h[?25l # The Options directive is both complicated and important. Please see[?25h[?25l # http://httpd.apache.org/docs-2.0/mod/core.html#options[?25h[?25l # for more information.[?25h[?25l #[?25h[?25l Options Indexes FollowSymLinks[?25h[?25l [?25h[?25l #[?25h[?25l # AllowOverride controls what directives may be placed in .htaccess files.[?25h[?25l # It can be "All", "None", or any combination of the keywords:[?25h[?25l # Options FileInfo AuthConfig Limit[?25h[?25l #[?25h[?25l AllowOverride None[?25h[?25l [?25h[?25l #[?25h[?25l # Controls who can get stuff from this server.[?25h[?25l #[?25h[?25l Order allow,deny[?25h[?25l Allow from all[?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l #[?25h[?25l # UserDir: The name of the directory that is appended onto a user's home[?25h[?25l # directory if a ~user request is received.[?25h[?25l #[?25h[?25l UserDir public_html[?25h[?25l [?25h[?25l #[?25h[?25l # Control access to UserDir directories. The following is an example[?25h[?25l # for a site where these directories are restricted to read-only.[?25h[?25l #[?25h[?25l #[?25h[?25l # AllowOverride FileInfo AuthConfig Limit Indexes[?25h[?25l # Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec[?25h[?25l # [?25h[?25l #Order allow,deny[?25h[?25l #Allow from all[?25h[?25l # [?25h[?25l # [?25h[?25l #Order deny,allow[?25h[?25l #Deny from all[?25h[?25l # [?25h[?25l #[?25h[?25l [?25h[?25l #[?25h[?25l # DirectoryIndex: sets the file that Apache will serve if a directory[?25h[?25l # is requested.[?25h[?25l #[?25h[?25l # The index.html.var file (a type-map) is used to deliver content-[?25h[?25l # negotiated documents. The MultiViews Option can be used for the[?25h[?25l # same purpose, but it is much slower.[?25h[?25l #[?25h[?25l DirectoryIndex index.html index.html.var[?25h[?25l [?25h[?25l #[?25h[?25l # AccessFileName: The name of the file to look for in each directory[?25h[?25l # for additional configuration directives. See also the AllowOverride[?25h[?25l # directive.[?25h[?25l #[?25h[?25l AccessFileName .htaccess[?25h[?25l [?25h[?25l #[?25h[?25l # The following lines prevent .htaccess and .htpasswd files from being[?25h[?25l # viewed by Web clients.[?25h[?25l #[?25h[?25l [?25h[?25l Order allow,deny[?25h[?25l Deny from all[?25h[?25l [?25h[?25l [?25h[?25l #[?25h[?25l # TypesConfig describes where the mime.types file (or equivalent) is[?25h[?25l # to be found.[?25h[?25l #[?25h[?25l TypesConfig conf/mime.types[?25h[?25l [?25h[?25l #[?25h[?25l # DefaultType is the default MIME type the server will use for a document[?25h[?25l # if it cannot otherwise determine one, such as from filename extensions.[?25h[?25l # If your server contains mostly text or HTML documents, "text/plain" is[?25h[?25l # a good value. If most of your content is binary, such as applications[?25h[?25l # or images, you may want to use "application/octet-stream" instead to[?25h[?25l # keep browsers from trying to display binary files as though they are[?25h[?25l # text.[?25h[?25l #[?25h[?25l DefaultType text/plain[?25h[?25l [?25h[?25l #[?25h[?25l # The mod_mime_magic module allows the server to use various hints from the[?25h[?25l # contents of the file itself to determine its type. The MIMEMagicFile[?25h[?25l # directive tells the module where the hint definitions are located.[?25h[?25l #[?25h[?25l [?25h[?25l MIMEMagicFile conf/magic[?25h[?25l [?25h[?25l [?25h[?25l #[?25h[?25l A# HostnameLookups: Log the names of clients or just their IP addresses[?25h[?25l # e.g., www.apache.org (on) or 204.62.129.132 (off).[?25h[?25l # The default is off because it'd be overall better for the net if people[?25h[?25l # had to knowingly turn this feature on, since enabling it means that[?25h[?25l # each client request will result in AT LEAST one lookup request to the[?25h[?25l # nameserver.[?25h[?25l #[?25h[?25l HostnameLookups Off[?25h[?25l [?25h[?25l #[?25h[?25l # EnableMMAP: Control whether memory-mapping is used to deliver[?25h[?25l # files (assuming that the underlying OS supports it).[?25h[?25l # The default is on; turn this off if you serve from NFS-mounted[?25h[?25l # filesystems. On some systems, turning it off (regardless of[?25h[?25l # filesystem) can improve performance; for details, please see[?25h[?25l # http://httpd.apache.org/docs-2.0/mod/core.html#enablemmap[?25h[?25l #[?25h[?25l #EnableMMAP off[?25h[?25l [?25h[?25l #[?25h[?25l # ErrorLog: The location of the error log file.[?25h[?25l # If you do not specify an ErrorLog directive within a [?25h[?25l # container, error messages relating to that virtual host will be[?25h[?25l # logged here. If you *do* define an error logfile for a [?25h[?25l # container, that host's errors will be logged there and not here.[?25h[?25l #[?25h[?25l ErrorLog logs/error_log[?25h[?25l [?25h[?25l #[?25h[?25l # LogLevel: Control the number of messages logged to the error_log.[?25h[?25l # Possible values include: debug, info, notice, warn, error, crit,[?25h[?25l # alert, emerg.[?25h[?25l #[?25h[?25l LogLevel warn[?25h[?25l [?25h[?25l #[?25h[?25l # The following directives define some format nicknames for use with[?25h[?25l # a CustomLog directive (see below).[?25h[?25l #[?25h[?25lLogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combine d[?25h[?25l LogFormat "%h %l %u %t \"%r\" %>s %b" common[?25h[?25l LogFormat "%{Referer}i -> %U" referer[?25h[?25l LogFormat "%{User-agent}i" agent[?25h[?25l [?25h[?25l #[?25h[?25l # The location and format of the access logfile (Common Logfile Format).[?25h[?25l # If you do not define any access logfiles within a [?25h[?25l # container, they will be logged here. Contrariwise, if you *do*[?25h[?25l # define per- access logfiles, transactions will be[?25h[?25l # logged therein and *not* in this file.[?25h[?25l #[?25h[?25l CustomLog logs/access_log common[?25h[?25l [?25h[?25l #[?25h[?25l # If you would like to have agent and referer logfiles, uncomment the[?25h[?25l # following directives.[?25h[?25l #[?25h[?25l #CustomLog logs/referer_log referer[?25h[?25l #CustomLog logs/agent_log agent[?25h[?25l [?25h[?25l #[?25h[?25l# If you prefer a single logfile with access, agent, and referer information # (Combined Logfile Format) you can use the following directive.[?25h[?25l #[?25h[?25l #CustomLog logs/access_log combined[?25h[?25l [?25h[?25l #[?25h[?25l # ServerTokens[?25h[?25l # This directive configures what you return as the Server HTTP response[?25h[?25l # Header. The default is 'Full' which sends information about the OS-Type[?25h[?25l # and compiled in modules.[?25h[?25l # Set to one of: Full | OS | Minor | Minimal | Major | Prod[?25h[?25l # where Full conveys the most information, and Prod the least.[?25h[?25l #[?25h[?25l ServerTokens Full[?25h[?25l [?25h[?25l #[?25h[?25l # Optionally add a line containing the server version and virtual host[?25h[?25l # name to server-generated pages (internal error documents, FTP directory[?25h[?25l # listings, mod_status and mod_info output etc., but not CGI generated[?25h[?25l # documents or custom error documents).[?25h[?25l # Set to "EMail" to also include a mailto: link to the ServerAdmin.[?25h[?25l # Set to one of: On | Off | EMail[?25h[?25l #[?25h[?25l ServerSignature On[?25h[?25l [?25h[?25l #[?25h[?25l # Aliases: Add here as many aliases as you need (with no limit). The format is[?25h[?25l # Alias fakename realname[?25h[?25l #[?25h[?25l # Note that if you include a trailing / on fakename then the server will[?25h[?25l # require it to be present in the URL. So "/icons" isn't aliased in this[?25h[?25l # example, only "/icons/". If the fakename is slash-terminated, then the[?25h[?25l # realname must also be slash terminated, and if the fakename omits the[?25h[?25l # trailing slash, the realname must also omit it.[?25h[?25l #[?25h[?25l # We include the /icons/ alias for FancyIndexed directory listings. If you[?25h[?25l # do not use FancyIndexing, you may comment this out.[?25h[?25l #[?25h[?25l Alias /icons/ "/usr/local/apache2/icons/"[?25h[?25l [?25h[?25l [?25h[?25l Options Indexes MultiViews[?25h[?25l AllowOverride None[?25h[?25l Order allow,deny[?25h[?25l Allow from all[?25h[?25l [?25h[?25l [?25h[?25l #[?25h[?25l # This should be changed to the ServerRoot/manual/. The alias provides[?25h[?25l # the manual, even if you choose to move your DocumentRoot. You may comment[?25h[?25l # this out if you do not care for the documentation.[?25h[?25l #[?25h[?25l Alias /manual "/usr/local/apache2/manual"[?25h[?25l [?25h[?25l [?25h[?25l Options Indexes FollowSymLinks MultiViews IncludesNoExec[?25h[?25l AddOutputFilter Includes html[?25h[?25l AllowOverride None[?25h[?25l Order allow,deny[?25h[?25l Allow from all[?25h[?25l [?25h[?25l [?25h[?25l #[?25h[?25l # ScriptAlias: This controls which directories contain server scripts.[?25h[?25l # ScriptAliases are essentially the same as Aliases, except that[?25h[?25l # documents in the realname directory are treated as applications and[?25h[?25l # run by the server when requested rather than as documents sent to the client.[?25h[?25l # The same rules about trailing "/" apply to ScriptAlias directives as to[?25h[?25l # Alias.[?25h[?25l #[?25h[?25l[?25h[?25l[?25h[?25lAllow from all[?25h[?25lOrder allow,deny[?25h[?25lAllowOverride None[?25h[?25lOptions Indexes MultiViews[?25h[?25l[?25h[?25l[?25h[?25lAlias /icons/ "/usr/local/apache2/icons/"[?25h[?25l#[?25h[?25l# do not use FancyIndexing, you may comment this out.[?25h[?25l# We include the /icons/ alias for FancyIndexed directory listings. If you[?25h[?25l#[?25h[?25l# trailing slash, the realname must also omit it.[?25h[?25l# realname must also be slash terminated, and if the fakename omits the[?25h[?25l# example, only "/icons/". If the fakename is slash-terminated, then the[?25h[?25l# require it to be present in the URL. So "/icons" isn't aliased in this[?25h[?25l# Note that if you include a trailing / on fakename then the server will[?25h[?25l#[?25h[?25l# Alias fakename realname[?25h[?25l# Aliases: Add here as many aliases as you need (with no limit). The format is[?25h[?25l#[?25h[?25l[?25h[?25lServerSignature On[?25h[?25l#[?25h[?25l# Set to one of: On | Off | EMail[?25h[?25l# Set to "EMail" to also include a mailto: link to the ServerAdmin.[?25h[?25l# documents or custom error documents).[?25h[?25l# listings, mod_status and mod_info output etc., but not CGI generated[?25h[?25l# name to server-generated pages (internal error documents, FTP directory[?25h[?25l# Optionally add a line containing the server version and virtual host[?25h[?25l#[?25h[?25l[?25h[?25lServerTokens Full[?25h[?25l#[?25h[?25l# where Full conveys the most information, and Prod the least.[?25h[?25l# Set to one of: Full | OS | Minor | Minimal | Major | Prod[?25h[?25l# and compiled in modules.[?25h[?25l# Header. The default is 'Full' which sends information about the OS-Type[?25h[?25l# This directive configures what you return as the Server HTTP response[?25h[?25l# ServerTokens[?25h[?25l#[?25h[?25l[?25h[?25l#CustomLog logs/access_log combined[?25h[?25l#[?25h[?25l# (Combined Logfile Format) you can use the following directive.[?25h[?25l# If you prefer a single logfile with access, agent, and referer information[?25h[?25l#[?25h[?25l[?25h[?25l#CustomLog logs/agent_log agent[?25h[?25l#CustomLog logs/referer_log referer[?25h[?25l#[?25h[?25l# following directives.[?25h[?25l# If you would like to have agent and referer logfiles, uncomment the[?25h[?25l#[?25h[?25l[?25h[?25lCustomLog logs/access_log common[?25h[?25l#[?25h[?25l# logged therein and *not* in this file.[?25h[?25l# define per- access logfiles, transactions will be[?25h[?25l# container, they will be logged here. Contrariwise, if you *do*[?25h[?25l# If you do not define any access logfiles within a [?25h[?25l# The location and format of the access logfile (Common Logfile Format).[?25h[?25l#[?25h[?25l[?25h[?25lLogFormat "%{User-agent}i" agent[?25h[?25lLogFormat "%{Referer}i -> %U" referer[?25h[?25lLogFormat "%h %l %u %t \"%r\" %>s %b" common[?25h[?25lLogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combine d[?25h[?25l#[?25h[?25l# a CustomLog directive (see below).[?25h[?25l# The following directives define some format nicknames for use with[?25h[?25l#[?25h[?25l[?25h[?25lLogLevel warn[?25h[?25l#[?25h[?25l# alert, emerg.[?25h[?25l# Possible values include: debug, info, notice, warn, error, crit,[?25h[?25l# LogLevel: Control the number of messages logged to the error_log.[?25h[?25l#[?25h[?25l[?25h[?25lErrorLog logs/error_log[?25h[?25l#[?25h[?25l# container, that host's errors will be logged there and not here.[?25h[?25l# logged here. If you *do* define an error logfile for a [?25h[?25l# container, error messages relating to that virtual host will be[?25h[?25l# If you do not specify an ErrorLog directive within a [?25h[?25l# ErrorLog: The location of the error log file.[?25h[?25l#[?25h[?25l[?25h[?25l#EnableMMAP off@[?25h[?25l#[?25h[?25l# http://httpd.apache.org/docs-2.0/mod/core.html#enablemmap[?25h[?25l# filesystem) can improve performance; for details, please see[?25h[?25l# filesystems. On some systems, turning it off (regardless of[?25h[?25l# The default is on; turn this off if you serve from NFS-mounted[?25h[?25l# files (assuming that the underlying OS supports it).[?25h[?25l# EnableMMAP: Control whether memory-mapping is used to deliver[?25h[?25l#[?25h[?25l[?25h[?25lHostnameLookups Off[?25h[?25l#[?25h[?25l# nameserver.[?25h[?25l# each client request will result in AT LEAST one lookup request to the[?25h[?25l# had to knowingly turn this feature on, since enabling it means that[?25h[?25l# The default is off because it'd be overall better for the net if people[?25h[?25l# e.g., www.apache.org (on) or 204.62.129.132 (off).[?25h[?25l# HostnameLookups: Log the names of clients or just their IP addresses[?25h[?25l#[?25h[?25l[?25h[?25l[?25h[?25lMIMEMagicFile conf/magic[?25h[?25l[?25h[?25l#[?25h[?25l# directive tells the module where the hint definitions are located.[?25h[?25l# contents of the file itself to determine its type. The MIMEMagicFile[?25h[?25l# The mod_mime_magic module allows the server to use various hints from the[?25h[?25l#[?25h[?25l[?25h[?25lDefaultType text/plain[?25h[?25l#[?25h[?25l# text.[?25h[?25l# keep browsers from trying to display binary files as though they are[?25h[?25l# or images, you may want to use "application/octet-stream" instead to[?25h[?25l# a good value. If most of your content is binary, such as applications[?25h[?25l# If your server contains mostly text or HTML documents, "text/plain" is[?25h[?25l# if it cannot otherwise determine one, such as from filename extensions.[?25h[?25l# DefaultType is the default MIME type the server will use for a document[?25h[?25l#[?25h[?25l[?25h[?25lTypesConfig conf/mime.types[?25h[?25l#[?25h[?25l# to be found.[?25h[?25l# TypesConfig describes where the mime.types file (or equivalent) is[?25h[?25l#[?25h[?25l[?25h[?25l[?25h[?25lDeny from all[?25h[?25lOrder allow,deny[?25h[?25l[?25h[?25l#[?25h[?25l# viewed by Web clients.[?25h[?25l# The following lines prevent .htaccess and .htpasswd files from being[?25h[?25l#[?25h[?25l[?25h[?25lAccessFileName .htaccess[?25h[?25l#[?25h[?25l# directive.[?25h[?25l# for additional configuration directives. See also the AllowOverride[?25h[?25l# AccessFileName: The name of the file to look for in each directory[?25h[?25l#[?25h[?25l[?25h[?25lDirectoryIndex index.html index.html.var[?25h[?25l#[?25h[?25l# same purpose, but it is much slower.[?25h[?25l# negotiated documents. The MultiViews Option can be used for the[?25h[?25l# The index.html.var file (a type-map) is used to deliver content-[?25h[?25l#[?25h[?25l# is requested.[?25h[?25l# DirectoryIndex: sets the file that Apache will serve if a directory[?25h[?25l#[?25h[?25l[?25h[?25l#[?25h[?25l# [?25h[?25l#Deny from all[?25h[?25l#Order deny,allow[?25h[?25l# [?25h[?25l# [?25h[?25l#Allow from all[?25h[?25l#Order allow,deny[?25h[?25l# [?25h[?25l# Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec[?25h[?25l# AllowOverride FileInfo AuthConfig Limit Indexes[?25h[?25l#[?25h[?25l#[?25h[?25l# for a site where these directories are restricted to read-only.[?25h[?25l# Control access to UserDir directories. The following is an example[?25h[?25l#[?25h[?25l[?25h[?25lUserDir public_html[?25h[?25l#[?25h[?25l# directory if a ~user request is received.[?25h[?25l# UserDir: The name of the directory that is appended onto a user's home[?25h[?25l#[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25lAllow from all[?25h[?25lOrder allow,deny[?25h[?25l#[?25h[?25l# Controls who can get stuff from this server.[?25h[?25l#[?25h[?25l[?25h[?25lAllowOverride None[?25h[?25l#[?25h[?25l# Options FileInfo AuthConfig Limit[?25h[?25l# It can be "All", "None", or any combination of the keywords:[?25h[?25l# AllowOverride controls what directives may be placed in .htaccess files.[?25h[?25l#[?25h[?25l[?25h[?25lOptions Indexes FollowSymLinks[?25h[?25l#[?25h[?25l# for more information.[?25h[?25l# http://httpd.apache.org/docs-2.0/mod/core.html#options[?25h[?25l# The Options directive is both complicated and important. Please see[?25h[?25l#[?25h[?25l# doesn't give it to you.[?25h[?25l# Note that "MultiViews" must be named *explicitly* --- "Options All"[?25h[?25l#[?25h[?25l# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI Multiviews[?25h[?25l# or any combination of:[?25h[?25l# Possible values for the Options directive are "None", "All",[?25h[?25l#[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l# [?25h[?25l#[?25h[?25l# This should be changed to whatever you set DocumentRoot to.[?25h[?25l#[?25h[?25l[?25h[?25l#[?25h[?25l# below.[?25h[?25l# you might expect, make sure that you have specifically enabled it[?25h[?25l# particular features to be enabled - so if something's not working as[?25h[?25l# Note that from this point forward you must specifically allow[?25h[?25l#[?25h[?25l[?25h[?25l[?25h[?25lAllowOverride None[?25h[?25lOptions FollowSymLinks[?25h[?25l[?25h[?25l#[?25h[?25l# features. [?25h[?25l# First, we configure the "default" to be a very restrictive set of[?25h[?25l#[?25h[?25l# directory (and its subdirectories).[?25h[?25l# to which services and features are allowed and/or disabled in that[?25h[?25l# Each directory to which Apache has access can be configured with respect[?25h[?25l#[?25h[?25l[?25h[?25lDocumentRoot "/home/htdocs"[?25h[?25l# DocumentRoot "/usr/local/apache2/htdocs"[?25h[?25l#[?25h[?25l# symbolic links and aliases may be used to point to other locations.[?25h[?25l# documents. By default, all requests are taken from this directory, but[?25h[?25l# DocumentRoot: The directory out of which you will serve your[?25h[?25l#[?25h[?25l[?25h[?25lUseCanonicalName Off[?25h[?25l#[?25h[?25l# ServerName directive.[?25h[?25l# by the client. When set "On", Apache will use the value of the[?25h[?25l# When set "Off", Apache will use the Hostname and Port supplied[?25h[?25l# URLs and the SERVER_NAME and SERVER_PORT variables.[?25h[?25l# UseCanonicalName: Determines how Apache constructs self-referencing[?25h[?25l#[?25h[?25l[?25h[?25l[?25h[?25lServerName 24.163.41.73[?25h[?25l#ServerName new.host.name:80[?25h[?25l#[?25h[?25l# redirections work in a sensible way.[?25h[?25l# You will have to access it by its address anyway, and this will make[?25h[?25l# If your host doesn't have a registered DNS name, enter its IP address here.[?25h[?25l#[?25h [?25l-- INSERT --[?25h[?25l#ServerName 24.163.41.73 #[?25h[?25l ServerName 24.163.41.73 # [?25h[?25lhServerName 24.163.41.73 # h[?25h[?25loServerName 24.163.41.73 # ho[?25h[?25llServerName 24.163.41.73 # hol[?25h[?25ldServerName 24.163.41.73[?25h[?25l ServerName 24.163.41.73[?25h[?25lfServerName 24.163.41.73[?25h[?25loServerName 24.163.41.73[?25h[?25lfServerName 24.163.41.73[?25h[?25lrServerName 24.163.41.73[?25h[?25l ServerName 24.163.41.73[?25h[?25llServerName 24.163.41.73[?25h[?25lServerName 24.163.41.73[?25h[?25lServerName 24.163.41.73[?25h[?25lServerName 24.163.41.73[?25h[?25lServerName 24.163.41.73[?25h[?25lrServerName 24.163.41.73[?25h[?25l ServerName 24.163.41.73[?25h[?25llServerName 24.163.41.73[?25h[?25laServerName 24.163.41.73[?25h[?25ltServerName 24.163.41.73[?25h[?25leServerName 24.163.41.73[?25h[?25lrServerName 24.163.41.73[?25h[?25l ServerName 24.163.41.73[?25h[?25l^FServerName 24.163.41.73[?25h[?25lServerName 24.163.41.73[?25h[?25l[?25h[?25l# symbolic links and aliases may be used to point to other locations. # # DocumentRoot "/usr/local/apache2/htdocs" DocumentRoot "/home/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. # Options FollowSymLinks AllowOverride None # # 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.[?25h[?25l# you might expect, make sure that you have specifically enabled itbelow.# # This should be changed to whatever you set DocumentRoot to.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.0/mod/core.html#optionsfor more information.[?25h[?25l# 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 # # UserDir: The name of the directory that is appended onto a user's home # directory if a ~user request is received. #[?25h[?25l# directory if a ~user request is received. UserDir public_htmlControl access to UserDir directories. The following is an examplefor a site where these directories are restricted to read-only. # AllowOverride FileInfo AuthConfig Limit Indexes # Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec # Order allow,denyAllow from all # # #Order deny,allow # Deny from all # #DirectoryIndex: sets the file that Apache will serve if a directory[?25h[?25l# # DirectoryIndex: sets the file that Apache will serve if a directory # is requested. # # The index.html.var file (a type-map) is used to deliver content- # negotiated documents. The MultiViews Option can be used for the # same purpose, but it is much slower. # DirectoryIndex index.html index.html.var # # AccessFileName: The name of the file to look for in each directory # for additional configuration directives. See also the AllowOverride # directive. # AccessFileName .htaccess # # The following lines prevent .htaccess and .htpasswd files from being # viewed by Web clients. # Order allow,deny[?25h[?25l Order allow,deny Deny from all TypesConfig describes where the mime.types file (or equivalent) is # to be found. #TypesConfig conf/mime.typesDefaultType is 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#[?25h[?25l# # 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 # # HostnameLookups: Log the names of clients or just their IP addresses # e.g., www.apache.org (on) or 204.62.129.132 (off). # The default is off because it'd be overall better for the net if people # had to knowingly turn this feature on, since enabling it means that # each client request will result in AT LEAST one lookup request to the # nameserver. # HostnameLookups Off # # EnableMMAP: Control whether memory-mapping is used to deliver # files (assuming that the underlying OS supports it).[?25h[?25l# EnableMMAP: Control whether memory-mapping is used to deliver # files (assuming that the underlying OS supports it).default is on; turn this off if you serve from NFS-mounted filesystems. On some systems, turning it off (regardless offilesystem) can improve performance; for details, please seehttp://httpd.apache.org/docs-2.0/mod/core.html#enablemmap ##EnableMMAP off# # ErrorLog: The location of the error log file. # If you do not specify an ErrorLog directive within a container, error messages relating to that virtual host will be # logged here. If you *do* define an error logfile for a 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.[?25h[?25l# alert, emerg. # LogLevel warn # # 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\"" combine d LogFormat "%h %l %u %t \"%r\" %>s %b" common LogFormat "%{Referer}i -> %U" referer LogFormat "%{User-agent}i" agent # # The location and format of the access logfile (Common Logfile Format). # If you do not define any access logfiles within a # container, they will be logged here. Contrariwise, if you *do* # define per- access logfiles, transactions will be # logged therein and *not* in this file. # CustomLog logs/access_log common[?25h[?25lCustomLog logs/access_log common## If you would like to have agent and referer logfiles, uncomment the # following directives.CustomLog logs/referer_log refererCustomLog logs/agent_log agent# # If you prefer a single logfile with access, agent, and referer information # (Combined Logfile Format) you can use the following directive. ##CustomLog logs/access_log combinedServerTokensThis directive configures what you return as the Server HTTP response # Header. The default is 'Full' which sends information about the OS-Type # and compiled in modules.Set to one of: Full | OS | Minor | Minimal | Major | Prod # where Full conveys the most information, and Prod the least. #[?25h[?25l# where Full conveys the most information, and Prod the least. # ServerTokens Full # # Optionally add a line containing the server version and virtual host # name to server-generated pages (internal error documents, FTP directory # listings, mod_status and mod_info output etc., but not CGI generated # documents or custom error documents). # Set to "EMail" to also include a mailto: link to the ServerAdmin. # Set to one of: On | Off | EMail # ServerSignature On # # Aliases: Add here as many aliases as you need (with no limit). The format is # Alias fakename realname # # Note that if you include a trailing / on fakename then the server will # require it to be present in the URL. So "/icons" isn't aliased in this # example, only "/icons/". If the fakename is slash-terminated, then the # realname must also be slash terminated, and if the fakename omits the # trailing slash, the realname must also omit it.[?25h[?25l# realname must also be slash terminated, and if the fakename omits the # trailing slash, the realname must also omit it. ## We include the /icons/ alias for FancyIndexed directory listings. If you # do not use FancyIndexing, you may comment this out.Alias /icons/ "/usr/local/apache2/icons/" Options Indexes MultiViews AllowOverride None Order allow,deny Allow from all This should be changed to the ServerRoot/manual/. The alias provides # the manual, even if you choose to move your DocumentRoot. You may comment # this out if you do not care for the documentation.Alias /manual "/usr/local/apache2/manual"[?25h[?25l Options Indexes FollowSymLinks MultiViews IncludesNoExec AddOutputFilter Includes html AllowOverride None Order allow,deny Allow from all # # ScriptAlias: This controls which directories contain server scripts. # ScriptAliases are essentially the same as Aliases, except that # documents in the realname 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/ "/usr/local/apache2/cgi-bin/" # # Additional to mod_cgid.c settings, mod_cgid has Scriptsock # for setting UNIX socket for communicating with cgid.[?25h[?25l# Additional to mod_cgid.c settings, mod_cgid has Scriptsock # for setting UNIX socket for communicating with cgid. ##Scriptsock logs/cgisock ## "/usr/local/apache2/cgi-bin" should be changed to whatever your ScriptAliased # CGI directory exists, if you have that configured.  AllowOverride None Options None Order allow,deny Allow from all## Redirect allows you to tell clients about documents which used to exist in # your server's namespace, but do not anymore. This allows you to tell the # clients where to look for the relocated document. # Example:Redirect permanent /foo http://www.example.com/bar[?25h[?25l# Example: # Redirect permanent /foo http://www.example.com/bar # # Directives controlling the display of server-generated directory listings. # # # IndexOptions: Controls the appearance of server-generated directory # listings. # IndexOptions FancyIndexing VersionSort # # AddIcon* directives tell the server which icon to show for different # files or filename extensions. These are only displayed for # FancyIndexed directories. # AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip AddIconByType (TXT,/icons/text.gif) text/* AddIconByType (IMG,/icons/image2.gif) image/* AddIconByType (SND,/icons/sound2.gif) audio/*[?25h[?25lAddIconByType (IMG,/icons/image2.gif) image/* AddIconByType (SND,/icons/sound2.gif) audio/*AddIconByType (VID,/icons/movie.gif) video/*AddIcon /icons/binary.gif .bin .exeAddIcon /icons/binhex.gif .hqx AddIcon /icons/tar.gif .tar AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv AddIcon /icons/compressed.gif .Z .z .tgz .gz .zipAddIcon /icons/a.gif .ps .ai .eps AddIcon /icons/layout.gif .html .shtml .htm .pdf AddIcon /icons/text.gif .txtAddIcon /icons/c.gif .c AddIcon /icons/p.gif .pl .py AddIcon /icons/f.gif .forAddIcon /icons/dvi.gif .dvAddIcon /icons/uuencoded.gif .uu AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl /icons/tex.gif .texAddIcon /icons/bomb.gif core /icons/back.gif .. /icons/hand.right.gif README[?25h[?25lAddIcon /icons/back.gif .. AddIcon /icons/hand.right.gif README AddIcon /icons/folder.gif ^^DIRECTORY^^ AddIcon /icons/blank.gif ^^BLANKICON^^ # # DefaultIcon is which icon to show for files which do not have an icon # explicitly set. # DefaultIcon /icons/unknown.gif # # AddDescription allows you to place a short description after a file in # server-generated indexes. These are only displayed for FancyIndexed # directories. # Format: AddDescription "description" filename # #AddDescription "GZIP compressed document" .gz #AddDescription "tar archive" .tar #AddDescription "GZIP compressed tar archive" .tgz # # ReadmeName is the name of the README file the server will look for by[?25h[?25l## ReadmeName is the name of the README file the server will look for by # default, and append to directory listings. ## HeaderName is the name of a file which should be prepended to # directory indexes. ReadmeName README.htmlHeaderName HEADER.html## IndexIgnore is a set of filenames which directory indexing should ignore # and not include in the listing. Shell-style wildcarding is permitted.IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,tAddEncoding allows you to have certain browsers (Mosaic/X 2.1+) uncompress # information on the fly. Note: Not all browsers support this. # Despite the name similarity, the following Add* directives have nothing # to do with the FancyIndexing customization directives above. # AddEncoding x-compress Z AddEncoding x-gzip gz tgz[?25h[?25lAddEncoding x-compress Z AddEncoding x-gzip gz tgz # # DefaultLanguage and AddLanguage allows you to specify the language of # a document. You can then use content negotiation to give a browser a # file in a language the user can understand. # # Specify a default language. This means that all data # going out without a specific language tag (see below) will # be marked with this one. You probably do NOT want to set # this unless you are sure it is correct for all cases. # # * It is generally better to not mark a page as # * being a certain language than marking it with the wrong # * language! # # DefaultLanguage nl # # Note 1: The suffix does not have to be the same as the language # keyword --- those with documents in Polish (whose net-standard # language code is pl) may wish to use "AddLanguage pl .po" to # avoid the ambiguity with the common suffix for perl scripts.[?25h[?25l# language code is pl) may wish to use "AddLanguage pl .po" to # avoid the ambiguity with the common suffix for perl scripts. # # Note 2: The example entries below illustrate that in some cases # the two character 'Language' abbreviation is not identical to the two character 'Country' code for its country,E.g. 'Danmark/dk' versus 'Danish/da'.Note 3: In the case of 'ltz' we violate the RFC by using a three char # specifier. There is 'work in progress' to fix this and get # the reference data for rfc1766 cleaned up.Danish (da) - Dutch (nl) - English (en) - Estonian (et) # French (fr) - German (de) - Greek-Modern (el)Italian (it) - Norwegian (no) - Norwegian Nynorsk (nn) - Korean (ko) # Portugese (pt) - Luxembourgeois* (ltz) # Spanish (es) - Swedish (sv) - Catalan (ca) - Czech(cz) # Polish (pl) - Brazilian Portuguese (pt-br) - Japanese (ja) # Russian (ru) - Croatian (hr)AddLanguage da .dkAddLanguage nl .nlAddLanguage en .en[?25h[?25lAddLanguage nl .nl AddLanguage en .en AddLanguage et .et AddLanguage fr .fr AddLanguage de .de AddLanguage he .he AddLanguage el .el AddLanguage it .it AddLanguage ja .ja AddLanguage pl .po AddLanguage ko .ko AddLanguage pt .pt AddLanguage nn .nn AddLanguage no .no AddLanguage pt-br .pt-br AddLanguage ltz .ltz AddLanguage ca .ca AddLanguage es .es AddLanguage sv .se AddLanguage cz .cz AddLanguage ru .ru AddLanguage tw .tw AddLanguage zh-tw .tw[?25h[?25ltw .twzh-tw .twhr .hr## LanguagePriority allows you to give precedence to some languages # in case of a tie during content negotiation. ## Just list the languages in decreasing order of preference. We have # more or less alphabetized them here. You probably want to change this. #LanguagePriority en da nl et fr de el it ja ko no pl pt pt-br ltz ca es sv tw## ForceLanguagePriority allows you to serve a result page rather than # MULTIPLE CHOICES (Prefer) [in case of a tie] or NOT ACCEPTABLE (Fallback) # [in case no accepted languages matched the available variants] #ForceLanguagePriority Prefer Fallback## Specify a default charset for all pages sent out. This is # always a good idea and opens the door for future internationalisation[?25h[?25l# Specify a default charset for all pages sent out. This is # always a good idea and opens the door for future internationalisation # of your web site, should you ever want it. Specifying it as # a default does little harm; as the standard dictates that a page # is in iso-8859-1 (latin1) unless specified otherwise i.e. you # are merely stating the obvious. There are also some security # reasons in browsers, related to javascript and URL parsing # which encourage you to always set a default char set. # AddDefaultCharset ISO-8859-1 # # Commonly used filename extensions to character sets. You probably # want to avoid clashes with the language extensions, unless you # are good at carefully testing your setup after each change. # See ftp://ftp.isi.edu/in-notes/iana/assignments/character-sets for # the official list of charset names and their respective RFCs # AddCharset ISO-8859-1 .iso8859-1 .latin1 AddCharset ISO-8859-2 .iso8859-2 .latin2 .cen AddCharset ISO-8859-3 .iso8859-3 .latin3 AddCharset ISO-8859-4 .iso8859-4 .latin4 AddCharset ISO-8859-5 .iso8859-5 .latin5 .cyr .iso-ru[?25h[?25lAddCharset ISO-8859-4 .iso8859-4 .latin4AddCharset ISO-8859-5 .iso8859-5 .latin5 .cyr .iso-ruAddCharset ISO-8859-6 .iso8859-6 .latin6 .arbAddCharset ISO-8859-7 .iso8859-7 .latin7 .grkAddCharset ISO-8859-8 .iso8859-8 .latin8 .hebAddCharset ISO-8859-9 .iso8859-9 .latin9 .trkAddCharset ISO-2022-JP .iso2022-jp .jiAddCharset ISO-2022-KR .iso2022-kr .kisAddCharset ISO-2022-CN .iso2022-cn .cis AddCharset Big5 .Big5.big5 # For russian, more than one charset is used (depends on client, mostly): AddCharset WINDOWS-1251 .cp-1251 .win-1251 AddCharset CP866 .cp866AddCharset KOI8-r .koi8-r .koi8-ruAddCharset KOI8-ru .koi8-uk .uaAddCharset ISO-10646-UCS-2 .ucs2AddCharset ISO-10646-UCS-4 .ucs4AddCharset UTF-8.utf8# The set below does not map to a specific (iso) standard # but works on a fairly wide range of browsers. Note that # capitalization actually matters (it should not, but it # does for some browsers).[?25h[?25l# capitalization actually matters (it should not, but it # does for some browsers). # # See ftp://ftp.isi.edu/in-notes/iana/assignments/character-sets # for a list of sorts. But browsers support few. # AddCharset GB2312 .gb2312 .gb AddCharset utf-7.utf7 AddCharset utf-8.utf8 AddCharset big5.big5 .b5 AddCharset EUC-TW .euc-tw AddCharset EUC-JP .euc-jp AddCharset EUC-KR .euc-kr AddCharset shift_jis .sjis # # AddType allows you to add to or override the MIME configuration # file mime.types for specific file types. # AddType application/x-tar .tgz AddType image/x-icon .ico #[?25h[?25lAddHandler 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 asisFor server-parsed imagemap files:#AddHandler imap-file map# # For type maps (negotiated resources):[?25h[?25l# # For type maps (negotiated resources): # (This is enabled by default to allow the Apache "It Worked" page # to be distributed in multiple languages.) # 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 # # Action lets you define media types that will execute a script whenever # a matching file is called. This eliminates the need for repeated URL # pathnames for oft-used CGI file processors. # Format: Action media/type /cgi-script/location # Format: Action handler-name /cgi-script/location #[?25h[?25l# Format: Action handler-name /cgi-script/locationCustomizable 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# Putting this all together, we can internationalize error responses. # We use Alias to redirect any /error/HTTP_.html.var response toour collection of by-error message multi-language collections. We use # includes to substitute the appropriate text.You can modify the messages' appearance without changing any of the # default HTTP_.html.var files by adding the line:[?25h[?25l# You can modify the messages' appearance without changing any of the # default HTTP_.html.var files by adding the line: # # Alias /error/include/ "/your/include/path/" # # which allows you to create your own set of files by starting with the # /usr/local/apache2/error/include/ files and copying them to /your/include/path /, # even on a per-VirtualHost basis. The default include files will display # your Apache version number and your ServerAdmin email address regardless # of the setting of ServerSignature. # # The internationalized error documents require mod_alias, mod_include # and mod_negotiation. To activate them, uncomment the following 30 lines. # Alias /error/ "/usr/local/apache2/error/" # # #AllowOverride None #Options IncludesNoExec #AddOutputFilter Includes html #AddHandler type-map var #Order allow,deny[?25h[?25l# AddHandler type-map var Order allow,denyAllow from all # LanguagePriority en de es fr it nl svForceLanguagePriority Prefer Fallback # # ErrorDocument 400 /error/HTTP_BAD_REQUEST.html.var # ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var ErrorDocument 403 /error/HTTP_FORBIDDEN.html.var ErrorDocument 404 /error/HTTP_NOT_FOUND.html.varErrorDocument 405 /error/HTTP_METHOD_NOT_ALLOWED.html.var # ErrorDocument 408 /error/HTTP_REQUEST_TIME_OUT.html.var ErrorDocument 410 /error/HTTP_GONE.html.var# ErrorDocument 411 /error/HTTP_LENGTH_REQUIRED.html.varErrorDocument 412 /error/HTTP_PRECONDITION_FAILED.html.varErrorDocument 413 /error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.varErrorDocument 414 /error/HTTP_REQUEST_URI_TOO_LARGE.html.varErrorDocument 415 /error/HTTP_SERVICE_UNAVAILABLE.html.varErrorDocument 500 /error/HTTP_INTERNAL_SERVER_ERROR.html.varErrorDocument 501 /error/HTTP_NOT_IMPLEMENTED.html.varErrorDocument 502 /error/HTTP_BAD_GATEWAY.html.varErrorDocument 503 /error/HTTP_SERVICE_UNAVAILABLE.html.var[?25h[?25l# ErrorDocument 502 /error/HTTP_BAD_GATEWAY.html.var # ErrorDocument 503 /error/HTTP_SERVICE_UNAVAILABLE.html.var # ErrorDocument 506 /error/HTTP_VARIANT_ALSO_VARIES.html.var # # The following directives modify normal HTTP response behavior to # handle known problems with browser implementations. # BrowserMatch "Mozilla/2" nokeepalive BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0 BrowserMatch "RealPlayer 4\.0" force-response-1.0 BrowserMatch "Java/1\.0" force-response-1.0 BrowserMatch "JDK/1\.0" force-response-1.0 # # The following directive disables redirects on non-GET requests for # a directory that does not include the trailing slash. This fixes a # problem with Microsoft WebFolders which does not appropriately handle # redirects for folders with DAV methods. # Same deal with Apple's DAV filesystem. # BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-caref@[?25h[?25l# Same deal with Apple's DAV filesystem.BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-caref ully BrowserMatch "^WebDrive" redirect-carefully BrowserMatch "^WebDAVFS/1.[012]" redirect-carefullyAllow server status reports generated by mod_status, # with the URL of http://servername/server-status # Change the ".example.com" to match your domain to enable.### SetHandler server-status# Order deny,allowDeny from all # Allow from .example.comAllow remote server configuration reports, with the URL of # http://servername/server-info (requires that mod_info.c be loaded). # Change the ".example.com" to match your domain to enable.[?25h[?25l# http://servername/server-info (requires that mod_info.c be loaded). # Change the ".example.com" to match your domain to enable. # # # SetHandler server-info # Order deny,allow # Deny from all # Allow from .example.com # # # Proxy Server directives. Uncomment the following lines to # enable the proxy server: # # #ProxyRequests On # # # Order deny,allow # Deny from all # Allow from .example.com #[?25h[?25l# Enable/disable the handling of HTTP/1.1 "Via:" headers. # ("Full" adds the server version; "Block" removes all outgoing Via: headers) # Set to one of: Off | On | Full | BlockProxyVia On# # To enable the cache as well, edit and uncomment the following lines: # (no cacheing without CacheRoot)CacheRoot "/usr/local/apache2/proxy" #CacheSize 5CacheGcInterval 4 #CacheMaxExpire 24 #CacheLastModifiedFactor 0.1 #CacheDefaultExpire 1 #NoCache a-domain.com another-domain.edu joes.garage-sale.comIfModule> # End of proxy directives.[?25h[?25l# # End of proxy directives. # # Bring in additional module-specific configurations # Include conf/ssl.conf ### Section 3: Virtual Hosts # # VirtualHost: If you want to maintain multiple domains/hostnames on your # machine you can setup VirtualHost containers for them. Most configurations # use only name-based virtual hosts so the server doesn't need to worry about # IP addresses. This is indicated by the asterisks in the directives below. # # Please see the documentation at # # for further details before you try to setup virtual hosts. # # You may use the command line option '-S' to verify your virtual host[?25h[?25lYou may use the command line option '-S' to verify your virtual host # configuration.Use name-based virtual hosting. ##NameVirtualHost *# # VirtualHost example: # Almost any Apache directive may go into a VirtualHost container. # The first VirtualHost section is used for requests without a known # server name. ServerAdmin webmaster@dummy-host.example.comDocumentRoot /www/docs/dummy-host.example.com # ServerName dummy-host.example.com # ErrorLog logs/dummy-host.example.com-error_log # CustomLog logs/dummy-host.example.com-access_log common #~[?25h[?25l# ~ ~ ~ ~ l"httpd.conf" 1058L, 35271C written [barrie@magnolia apache2]$ sudo /usr/local/apache2/bin/apachectl start Password: Syntax error on line 309 of /usr/local/apache2/conf/httpd.conf: DocumentRoot must be a directory [barrie@magnolia apache2]$ cd /home [barrie@magnolia /home]$ ls barrie lost+found [barrie@magnolia /home]$ mksudo mkdir htdocs [barrie@magnolia /home]$ ls barrie htdocs lost+found [barrie@magnolia /home]$ ll total 24 drwx------ 17 barrie barrie 4096 Oct 4 23:24 barrie drwxr-xr-x 2 root root 4096 Oct 4 23:38 htdocs drwx------ 2 root root 16384 Sep 23 05:57 lost+found [barrie@magnolia /home]$ llssudo mkdir htdocslscd /homesudo /usr/local/apache2/bin/apachectl start httpd: Could not determine the server's fully qualified domain name, using 127.0.0.1 for ServerName [barrie@magnolia /home]$ echo servefrnrname servername: Command not found. [barrie@magnolia /home]$ echo $Servername Servername: Undefined variable. [barrie@magnolia /home]$ domainname (none) [barrie@magnolia /home]$ hostname magnolia [barrie@magnolia /home]$ cd /etc/host.comfnfdnsdomainname [barrie@magnolia /home]$ cd etc/etc [barrie@magnolia /etc]$ ls a2ps.cfg iproute2 ppp a2ps-site.cfg isdn printcap adjtime issue printcap.local alchemist issue.net printcap.old aliases kde printconf.local aliases.db kderc profile aliasesLAST20020927 krb5.conf profile.d alternatives krb.conf protocols anacrontab krb.realms pwdb.conf at.deny ksysguarddrc qt.fontguess auto.master ldap.conf radvd.conf auto.misc ld.so.cache rc bashrc ld.so.conf rc0.d cdrecord.conf libuser.conf rc1.d cipe lilo.conf.anaconda rc2.d CORBA locale rc3.d cron.d localtime rc4.d cron.daily log.d rc5.d cron.hourly login.defs rc6.d cron.monthly logrotate.conf rc.d crontab logrotate.d rc.local cron.weekly lpd.conf rc.sysinit csh.cshrc lpd.perms redhat-release csh.login ltrace.conf resolv.conf cups lynx.cfg resolv.conf.sv default lynx.cfg.cs rmt dhcpc lynx.cfg.ja rpc dhcpcd lynx.cfg.sk rpm DIR_COLORS lynx-site.cfg sane.d dumpdates mail screenrc esd.conf mailcap scrollkeeper.conf exports mail.rc securetty fam.conf makedev.d security fdprm man.config sendmail.cf filesystems midi sensors.conf fstab mime-magic services fstab.REVOKE mime-magic.dat sgml gconf mime.types shadow gnome minicom.users shadow- gnome-vfs-mime-magic modules.conf shells gpm-root.conf modules.conf~ skel group motd smrsh group- mtab snmp grub.conf Muttrc sound grub.confLAST20020927 nmh ssh gshadow nscd.conf sudoers gshadow- nsswitch.conf sudoersLAST20020923 gtk ntp sysconfig gtk-2.0 ntp.conf sysctl.conf host.conf oaf syslog.conf hosts openldap termcap hosts.allow opt timidity.cfg hosts.deny pam.d updatedb.conf hotplug pam_smb.conf updfstab.conf htdig.conf pango updfstab.conf.default identd.conf paper.config vfontcap im_palette.pal passwd vfs im_palette-small.pal passwd- warnquota.conf im_palette-tiny.pal passwdLAST20020923 wgetrc imrc passwd.OLD X11 info-dir pbm2ppa.conf xinetd.conf init.d pine.conf xinetd.d initlog.conf pine.conf.fixed xml inittab pinforc xpdfrc inputrc pluggerrc yp.conf ioctl.save pnm2ppa.conf ypserv.conf [barrie@magnolia /etc]$ cdls h os*ost* host.conf hosts hosts.allow hosts.deny [barrie@magnolia /etc]$ more host.conf order hosts,bind [barrie@magnolia /etc]$ cd hosts hosts: Not a directory. [barrie@magnolia /etc]$ ls a2ps.cfg iproute2 ppp a2ps-site.cfg isdn printcap adjtime issue printcap.local alchemist issue.net printcap.old aliases kde printconf.local aliases.db kderc profile aliasesLAST20020927 krb5.conf profile.d alternatives krb.conf protocols anacrontab krb.realms pwdb.conf at.deny ksysguarddrc qt.fontguess auto.master ldap.conf radvd.conf auto.misc ld.so.cache rc bashrc ld.so.conf rc0.d cdrecord.conf libuser.conf rc1.d cipe lilo.conf.anaconda rc2.d CORBA locale rc3.d cron.d localtime rc4.d cron.daily log.d rc5.d cron.hourly login.defs rc6.d cron.monthly logrotate.conf rc.d crontab logrotate.d rc.local cron.weekly lpd.conf rc.sysinit csh.cshrc lpd.perms redhat-release csh.login ltrace.conf resolv.conf cups lynx.cfg resolv.conf.sv default lynx.cfg.cs rmt dhcpc lynx.cfg.ja rpc dhcpcd lynx.cfg.sk rpm DIR_COLORS lynx-site.cfg sane.d dumpdates mail screenrc esd.conf mailcap scrollkeeper.conf exports mail.rc securetty fam.conf makedev.d security fdprm man.config sendmail.cf filesystems midi sensors.conf fstab mime-magic services fstab.REVOKE mime-magic.dat sgml gconf mime.types shadow gnome minicom.users shadow- gnome-vfs-mime-magic modules.conf shells gpm-root.conf modules.conf~ skel group motd smrsh group- mtab snmp grub.conf Muttrc sound grub.confLAST20020927 nmh ssh gshadow nscd.conf sudoers gshadow- nsswitch.conf sudoersLAST20020923 gtk ntp sysconfig gtk-2.0 ntp.conf sysctl.conf host.conf oaf syslog.conf hosts openldap termcap hosts.allow opt timidity.cfg hosts.deny pam.d updatedb.conf hotplug pam_smb.conf updfstab.conf htdig.conf pango updfstab.conf.default identd.conf paper.config vfontcap im_palette.pal passwd vfs im_palette-small.pal passwd- warnquota.conf im_palette-tiny.pal passwdLAST20020923 wgetrc imrc passwd.OLD X11 info-dir pbm2ppa.conf xinetd.conf init.d pine.conf xinetd.d initlog.conf pine.conf.fixed xml inittab pinforc xpdfrc inputrc pluggerrc yp.conf ioctl.save pnm2ppa.conf ypserv.conf [barrie@magnolia /etc]$ pqs pqs: Command not found. [barrie@magnolia /etc]$ pqswd /etc [barrie@magnolia /etc]$ ls host* host.conf hosts hosts.allow hosts.deny [barrie@magnolia /etc]$ hostname -fdqn hostname: invalid option -- q Usage: hostname [-v] {hostname|-F file} set hostname (from file) domainname [-v] {nisdomain|-F file} set NIS domainname (from file) hostname [-v] [-d|-f|-s|-a|-i|-y|-n] display formatted name hostname [-v] display hostname hostname -V|--version|-h|--help print info and exit dnsdomainname=hostname -d, {yp,nis,}domainname=hostname -y -s, --short short host name -a, --alias alias names -i, --ip-address addresses for the hostname -f, --fqdn, --long long host name (FQDN) -d, --domain DNS domain name -y, --yp, --nis NIS/YP domainname -F, --file read hostname or NIS domainname from given file This command can read or set the hostname or the NIS domainname. You can also read the DNS domain or the FQDN (fully qualified domain name). Unless you are using bind or NIS for host lookups you can change the FQDN (Fully Qualified Domain Name) and the DNS domain name (which is part of the FQDN) in the /etc/hosts file. [barrie@magnolia /etc]$ hostname -fdqnqdn hostname: invalid option -- q Usage: hostname [-v] {hostname|-F file} set hostname (from file) domainname [-v] {nisdomain|-F file} set NIS domainname (from file) hostname [-v] [-d|-f|-s|-a|-i|-y|-n] display formatted name hostname [-v] display hostname hostname -V|--version|-h|--help print info and exit dnsdomainname=hostname -d, {yp,nis,}domainname=hostname -y -s, --short short host name -a, --alias alias names -i, --ip-address addresses for the hostname -f, --fqdn, --long long host name (FQDN) -d, --domain DNS domain name -y, --yp, --nis NIS/YP domainname -F, --file read hostname or NIS domainname from given file This command can read or set the hostname or the NIS domainname. You can also read the DNS domain or the FQDN (fully qualified domain name). Unless you are using bind or NIS for host lookups you can change the FQDN (Fully Qualified Domain Name) and the DNS domain name (which is part of the FQDN) in the /etc/hosts file. [barrie@magnolia /etc]$ hostname -i 127.0.0.1 [barrie@magnolia /etc]$ vi hosts [?1048h[?1047h[?1h=[?25h[?25h[?25l"hosts" [readonly] 3L, 156C# Do not remove the following line, or various programs # that require network functionality will fail. 127.0.0.1magnolia localhost.localdomain localhost ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ 1,1All[?25h[?25l:[?25hq! [?25l[?1l>[?25h[?1047l[?1048l[barrie@magnolia /etc]$ sudo via hosts Password: [?1048h[?1047h[?1h=[?25h[?25h[?25l"hosts" 3L, 156C# Do not remove the following line, or various programs # that require network functionality will fail. 127.0.0.1magnolia localhost.localdomain localhost ~ ~ ~ ~[?25h[?25l-- INSERT --[?25h [?25l#127.0.0.1 #[?25h[?25l 127.0.0.1 # [?25h[?25l[?25h[?25l-- INSERT --[?25h# 127.0.0.1 magnolia localhost.localdomain localhost[?25l[?25h[?25l[?25h[?25l 127.0.0.1 [?25h[?25l127.0.0.1 [?25h[?25l-- INSERT --[?25h [?25l[?25h[?25l:[?25hq! [?25l[?1l>[?25h[?1047l[?1048l[barrie@magnolia /etc]$ sudo vi hosts [?1048h[?1047h[?1h=[?25h[?25h[?25l"hosts" 3L, 156C# Do not remove the following line, or various programs # that require network functionality will fail. 127.0.0.1magnolia localhost.localdomain localhost ~ ~ hostsLAST20020[?25l[?25h1004 [?25l"hostsLAST20021004" [New] 3L, 156C written[?25h[?25l-- INSERT -- Cmagnolia localhost.localdomain localhost ?25hw hosts [?25l"hosts" 4L, 210C written[4;63 [barrie@magnolia /etc]$ sudo vi hostsv [3Phostname -ifqdndqn[3@ls host* [barrie@magnolia /etc/$ sudo /usr/local/apache2/bin/apachectl start Password: httpd: Could not determine the server's fully qualified domain name, using 127.0.0.1 for ServerName httpd (pid 10292) already running [barrie@magnolia /etc]$ ps -ef | grep httpd root 10292 1 0 Oct04 ? 00:00:00 /usr/local/apache2/bin/httpd -k nobody 10293 10292 0 Oct04 ? 00:00:00 /usr/local/apache2/bin/httpd -k nobody 10325 10292 0 Oct04 ? 00:00:00 /usr/local/apache2/bin/httpd -k [barrie@magnolia /etc]$ lynx http://127.0.0.1/ (B)0[?1048h[?1047h[?7h[?1h=Getting http://127.0.0.1/ Looking up 127.0.0.1  [26@Making HTTP connection to 0.1 Sending HTTP request. HTTP request sent; w[19@aiting for response /1.1 200 OK Data transfer completetest page test page for apache document root directory  Arrow keys: Up and Down to move. Right to follow a link; Left to go back. H)elp O)ptions P)rint G)o M)ain screen Q)uit /=search [delete]=history list  Commands: Use arrow keys to move, '?' for help, 'q' to quit, '<-' to go back. Are you sure you want to quit? (y)  //END apacheinstall script s/aaa/mod_access.la modules/aaa/mod_auth.la modules/filters/mod_include.la modul es/loggers/mod_log_config.la modules/metadata/mod_env.la modules/metadata/mod_se tenvif.la modules/http/mod_http.la modules/http/mod_mime.la modules/generators/m od_status.la modules/generators/mod_autoindex.la modules/generators/mod_asis.la --More--(167%)  modules/generators/mod_cgi.la modules/mappers/mod_negotiation.la modules/mappers /mod_dir.la modules/mappers/mod_imap.la modules/mappers/mod_actions.la modules/m appers/mod_userdir.la modules/mappers/mod_alias.la modules/mappers/mod_so.la ser ver/mpm/prefork/libprefork.la server/libmain.la os/unix/libos.la /usr/local/htt pd-2.0.43/srclib/pcre/libpcre.la /usr/local/httpd-2.0.43/srclib/apr-util/libapru til-0.la -lgdbm -ldb -lexpat /usr/local/httpd-2.0.43/srclib/apr/libapr-0.la -lm -lcrypt -lnsl -ldl Installing configuration files mkdir /usr/local/apache2/conf Installing HTML documents mkdir /usr/local/apache2/htdocs Installing error documents mkdir /usr/local/apache2/error --More--(65%) Installing icons mkdir /usr/local/apache2/icons --More--(167%) mkdir /usr/local/apache2/logs Installing CGIs mkdir /usr/local/apache2/cgi-bin Installing header files Installing man pages and online manual mkdir /usr/local/apache2/man mkdir /usr/local/apache2/man/man1 mkdir /usr/local/apache2/man/man8 mkdir /usr/local/apache2/manual Installing build system files make[1]: Leaving directory `/usr/local/httpd-2.0.43' [barrie@magnolia httpd-2.0.43]$ oqs==pwd /usr/local/httpd-2.0.43 [barrie@magnolia httpd-2.0.43]$ cd .. [barrie@magnolia local]$ ls apache2 etc httpd-2.0.43.tar.gz libexec sbin bin games include [01 ;34mlynx2-8-4 share doc httpd-2.0.43 lib [01 --More--(167%)  --More--(65%) ;31mlynx2.8.4.tar src [barrie@magnolia local]$ cd apache2 [barrie@magnolia apache2]$ ls bin cgi-bin error icons lib man modules build conf htdocs include [01 ;34mlogs manual [barrie@magnolia apache2]$ cd conf [barrie@magnolia conf]$ ls highperformance.conf httpd.conf magic ssl.conf highperformance-std.conf httpd-std.conf mime.types [0 0mssl-std.conf [barrie@magnolia conf]$ vi httpd.conf [?1048h[?1047h[?1h=[?25h[?25h[?25l"httpd.conf" [readonly] 1052L, 35134C# --More--(168%) # Based upon the NCSA server configuration files originally by Rob McCool. # # This is the main Apache server configuration file. It contains the # configuration directives that give the server its instructions. # See for detailed information about # the directives. --More--(66%) # # Do NOT simply read the instructions in here without understand ing # what they do. They're here only as hints or reminders. If you are unsure # consult the online docs. You have been warned. # # The configuration directives are grouped into three basic sections: # 1. Directives that control the operation of the Apache server process as a # whole (the 'global environment'). # 2. Directives that define the parameters of the 'main' or 'default' server, # which responds to requests that aren't handled by a virtual host. # These directives also provide default values for the settings # of all virtual hosts. # 3. Settings for virtual hosts, which allow Web requests to be sent to # different IP addresses or hostnames and have them handled by the --More--(168%) # same Apache server process. #1,1Top[?25h[?25l2[?25h[?25l3[?25h[?25 l4[?25h[?25l5[?25h[?25l6[?25h[?25l7[7 ;1H[?25h[?25l8[?25h[?25l9[?25h[?25l10,1[?25 h[?25l:[?25hq! [?25l[?1l>[?25h[?1047l[?1048l[barrie@magnolia conf]$ sudo via apachehttpd .conf [?1048h[?1047h[?1h=[?25h[?25h[?25l"httpd.conf" 1052L, 351 --More--(66%) 34C# # Based upon the NCSA server configuration files originally by Rob McCool. # # This is the main Apache server configuration file. It contains the # configuration directives that give the server its instructions. # See for detailed information about # the directives. # # Do NOT simply read the instructions in here without understanding # what they do. They're here only as hints or reminders. If you are unsure --More--(168%) # consult the online docs. You have been warned. # # The configuration directives are grouped into three basic sections: # 1. Directives that control the operation of the Apache server process as a # whole (the 'global environment'). # 2. Directives that define the parameters of the 'main' or 'default' server, # which responds to requests that aren't handled by a virtual host. # These directives also provide default values for the settings # of all virtual hosts. # 3. Settings for virtual hosts, which allow Web requests to be sent to # different IP addresses or hostnames and have them handled by the # same Apache server process. --More--(66%) #[?25h --More--(168%)  --More--(66%) [?25l # Configuration and logfile names: If the filenames you specify for many [?25h[?25l # of the server's control files begin with "/" (or "drive:/" for Win 32), the [?25h[?25l # server will use that explicit path. If the filenames do *not* beg in [?25h[?25l --More--(168%) # with "/", the value of ServerRoot is prepended -- so "logs/foo.log " [?25h[?25l # with ServerRoot set to "/usr/local/apache2" will be interpreted by the [?25h[?25l # server as "/usr/local/apache2/logs/foo.log". [?25h[?25l #[?25h[?25l [?25h[?25l ### Section 1: Global Environment [?25h[?25l #[?25h[?25l # The directives in this section affect the overall operation of Apa che, [?25h[?25l # such as the number of concurrent requests it can handle or where i t [?25h[?25l # can find its configuration files. [?25h[?25l #[?25h[?25l --More--(67%) [?25h[?25l #[?25h[?25l # ServerRoot: The top of the directory tree under which the server's --More--(169%)  [?25h[?25l # configuration, error, and log files are kept. [?25h[?25l #[?25h[?25l # NOTE! If you intend to place this on an NFS (or otherwise network ) [?25h[?25l # mounted filesystem then please read the LockFile documentation (av ailable [?25h[?25l # at ); [?25h[?25l # you will save yourself a lot of trouble. [?25h[?25l #[?25h[?25l # Do NOT add a slash at the end of the directory path. [?25h[?25l #[?25h[?25l ServerRoot "/usr/local/apache2" [?25h[?25l [?25h[?25l #[?25h[?25l :[?25hw httpd.confLAST20021004 [?25l"httpd.confLAST20021004" [New] 1052L, 35134C written[?25h[?25l[ --More--(169%) 23;1H # The accept serialization lock file MUST BE STORED ON A LOCAL DISK. --More--(67%) [?25h[?25l #[?25h[?25l  [?25h[?25l  [?25h[?25l #LockFile logs/accept.lock [?25h[?25l  [?25h[?25l  [?25h[?25l [?25h[?25l #[?25h[?25l # ScoreBoardFile: File used to store internal server process informa tion. [?25h[?25l # If unspecified (the default), the scoreboard will be stored in an [?25h[?25l # anonymous shared memory segment, and will be unavailable to third- party [?25h[?25l # applications. [?25h[?25l # If specified, ensure that no two invocations of Apache share the s --More--(169%) ame [?25h[?25l # scoreboard file. The scoreboard file MUST BE STORED ON A LOCAL DIS K. [?25h[?25l #[?25h[?25l  [?25h[?25l  [?25h[?25l --More--(67%) #ScoreBoardFile logs/apache_runtime_status [?25h[?25l  [?25h[?25l  [?25h[?25l [?25h[?25l [?25h[?25l #[?25h[?25l # PidFile: The file in which the server should record its process [?25h[?25l # identification number when it starts. [?25h[?25l #[?25h[?25l  [?25h[?25l PidFile logs/httpd.pid [?25h[?25l  [?25h[?25l [?25h[?25l #[?25h[?25l # Timeout: The number of seconds before receives and sends time out. --More--(170%)  [?25h[?25l #[?25h[?25l Timeout 300 [?25h[?25l [?25h[?25l #[?25h[?25l # KeepAlive: Whether or not to allow persistent connections (more th an [?25h[?25l --More--(67%) # one request per connection). Set to "Off" to deactivate. [?25h[?25l #[?25h[?25l KeepAlive On [?25h[?25l [?25h[?25l #[?25h[?25l # MaxKeepAliveRequests: The maximum number of requests to allow [?25h[?25l # during a persistent connection. Set to 0 to allow an unlimited amo unt. [?25h[?25l # We recommend you leave this number high, for maximum performance. [?25h[?25l #[?25h[?25l MaxKeepAliveRequests 100 [?25h[?25l [?25h[?25l --More--(170%) #[?25h[?25l # KeepAliveTimeout: Number of seconds to wait for the next request f rom the [?25h[?25l # same client on the same connection. [?25h[?25l #[?25h[?25l KeepAliveTimeout 15 [?25h[?25l [?25h[?25l ## [?25h[?25l ## Server-Pool Size Regulation (MPM specific) [?25h[?25l ## [?25h[?25l --More--(68%) [?25h[?25l # prefork MPM [?25h[?25l # StartServers: number of server processes to start [?25h[?25l # MinSpareServers: minimum number of server processes which are kept spare [?25h[?25l # MaxSpareServers: maximum number of server processes which are kept spare [?25h[?25l # MaxClients: maximum number of server processes allowed to start [?25h[?25l # MaxRequestsPerChild: maximum number of requests a server process s --More--(170%)  erves [?25h[?25l  [?25h[?25l StartServers5 [?25h[?25l MinSpareServers 5 [?25h[?25l MaxSpareServers 10 [?25h[?25l MaxClients150 [?25h[?25l MaxRequestsPerChild 0 [?25h[?25l  [?25h[?25l6[?25h[?25l-- INSERT --[18;2 2H[?25h[?25l16[?25h[?25l[?25h1[?25l[?25h[ ?25l1[?25h[?25l [?25h[?25l # worker MPM[?25h[?25l # StartServers: initial number of server processes to start[? --More--(68%) 25h[?25l # MaxClients: maximum number of simultaneous client connections[23;2 2H[?25h[?25l # MinSpareThreads: minimum number of worker threads which are kept s --More--(170%)  pare[?25h[?25l # MaxSpareThreads: maximum number of worker threads which are kept s pare[?25h[?25l # ThreadsPerChild: constant number of worker threads in each server process[?25h[?25l # MaxRequestsPerChild: maximum number of requests a server process s erves[?25h[?25l [?25h[?25l StartServers2[?25h[?25l MaxClients150[?25h[?25l MinSpareThreads 25[?25h[?25l MaxSpareThreads 75[?25h[?25l ThreadsPerChild 25[?25h[?25l MaxRequestsPerChild 0[?25h[?25l [?25h[?25l [?25h[?25l # perchild MPM[?25h[?25l # NumServers: constant number of server processes[?25h[?25l[1 --More--(171%)  --More--(69%) ;23r # StartThreads: initial number of worker threads in each server proc ess[?25h[?25l # MinSpareThreads: minimum number of worker threads which are kept s pare[?25h[?25l # MaxSpareThreads: maximum number of worker threads which are kept s pare[?25h[?25l # MaxThreadsPerChild: maximum number of worker threads in each serve r process[?25h[?25l # MaxRequestsPerChild: maximum number of connections per server proc ess[?25h[?25l [?25h[?25l NumServers5[?25h[?25l StartThreads5[?25h[?25l MinSpareThreads 5[?25h[?25l MaxSpareThreads 10[?25h[?25l --More--(171%) MaxThreadsPerChild 20[?25h[?25l MaxRequestsPerChild 0[?25h[?25l [?25h[?25l [?25h[?25l # WinNT MPM[?25h[?25l # ThreadsPerChild: constant number of worker threads in the server p --More--(69%) rocess[?25h[?25l # MaxRequestsPerChild: maximum number of requests a server process serves[?25h[?25l [?25h[?25l ThreadsPerChild 250[?25h[?25l MaxRequestsPerChild 0[?25h[?25l [?25h[?25l [?25h[?25l # BeOS MPM[?25h[?25l # StartThreads: how many threads do we initially spawn?[?25h[ ?25l # MaxClients: max number of threads we can have (1 thread == 1 cli --More--(171%) ent)[?25h[?25l # MaxRequestsPerThread: maximum number of requests each thread will process[?25h[?25l [?25h[?25l StartThreads10[?25h[?25l MaxClients50[?25h[?25l MaxRequestsPerThread10000[?25h[?25l  [?25h[?25l [?25h[?25l # NetWare MPM[?25h[?25l --More--(69%) # ThreadStackSize: Stack size allocated for each worker thread[23;22 H[?25h[?25l # StartThreads: Number of worker threads launched at server startup[ 23;22H[?25h[?25l # MinSpareThreads: Minimum number of idle threads, to handle request spikes[?25h[?25l # MaxSpareThreads: Maximum number of idle threads[?25h[?25l[1 --More--(172%) ;23r # MaxThreads: Maximum number of worker threads alive at the same tim e[?25h[?25l # MaxRequestsPerChild: Maximum number of requests a thread serves. It is[?25h[?25l #recommended that the default value of 0 be set for this[ ?25h[?25l #directive on NetWare. This will allow the thread to[?25 h[?25l#continue to service requests indefinitely.[ 14C  [?25h[?25l [?25h[?25l ThreadStackSize 65536[?25h[?25l StartThreads250[?25h[?25l MinSpareThreads25[?25h[?25l MaxSpareThreads250[?25h[?25l --More--(70%) MaxThreads1000[?25h[?25l MaxRequestsPerChild 0[?25h[?25l --More--(172%) [?25h[?25l [?25h[?25l # OS/2 MPM[?25h[?25l # StartServers: Number of server processes to maintain[?25h[? 25l # MinSpareThreads: Minimum number of idle threads per process,[23;22 H[?25h[?25l #to handle request spikes[?25h[?25l # MaxSpareThreads: Maximum number of idle threads per process [?25h[?25l # MaxRequestsPerChild: Maximum number of connections per server proc ess[?25h[?25l [?25h[?25l StartServers2[?25h[?25l MinSpareThreads5[?25h[?25l MaxSpareThreads10[?25h[?25l MaxRequestsPerChild 0[?25h[?25l [?25h[?25l#[?25h --More--(172%) [?25l # Listen: Allows you to bind Apache to specific IP addresses and/or[ --More--(70%) 23;22H[?25h[?25l # ports, in addition to the default. See also the [23;2 2H[?25h[?25l # directive.[?25h[?25l #[?25h[?25l # Change this to Listen on specific IP addresses as shown below to[2 3;22H[?25h[?25l # prevent Apache from glomming onto all bound IP addresses (0.0.0.0) [?25h[?25l #[?25h[?25l #Listen 12.34.56.78:80[?25h[?25l Listen 80[?25h[?25l [?25h[?25l #[?25h[?25l # Dynamic Shared Object (DSO) Support[?25h[?25l #[?25h[?25l --More--(172%) # To be able to use the functionality of a module which was built as a DSO you[?25h[?25l # have to place corresponding `LoadModule' lines at this location so the[?25h[?25l # directives contained in it are actually available _before_ they ar e used.[?25h[?25l --More--(70%) # Statically compiled modules (those listed by `httpd -l') do not ne ed[?25h[?25l # to be loaded here.[?25h[?25l #[?25h[?25l # Example:[?25h[?25l # LoadModule foo_module modules/mod_foo.so[?25h[?25l[23 ;1H #[?25h[?25l [?25h[?25l #[?25h[?25l # ExtendedStatus controls whether Apache will generate "full" status --More--(173%)  [?25h[?25l # information (ExtendedStatus On) or just basic information (Extende dStatus[?25h[?25l # Off) when the "server-status" handler is called. The default is Of f.[?25h[?25l #[?25h[?25l #ExtendedStatus On[?25h[?25l [?25h[?25l ### Section 2: 'Main' server configuration[?25h[?25l[23 ;1H #[?25h[?25l --More--(71%) # The directives in this section set up the values used by the 'main '[?25h[?25l # server, which responds to any requests that aren't handled by a[23 ;22H[?25h[?25l # definition. These values also provide defaults for[ --More--(173%)  23;22H[?25h[?25l # any containers you may define later in the file.[23; 22H[?25h[?25l #[?25h[?25l # All of these directives may appear inside containers ,[?25h[?25l # in which case these default settings will be overridden for the[23 ;22H[?25h[?25l # virtual host being defined.[?25h[?25l #[?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l #[?25h[?25l # If you wish httpd to run as a different user or group, you must ru n[?25h[?25l # httpd as root initially and it will switch.[?25h[?25l --More--(173%)  --More--(71%)  #[?25h[?25l # User/Group: The name (or #number) of the user/group to run httpd a s.[?25h[?25l # . On SCO (ODT 3) use "User nouser" and "Group nogroup".[?2 5h[?25l # . On HPUX you may not be able to use shared memory as nobody, and the[?25h[?25l # suggested workaround is to create a user www and use that user. [?25h[?25l # NOTE that some kernels refuse to setgid(Group) or semctl(IPC_SET) [?25h[?25l # when the value of (unsigned)Group is above 60000;[?25h[?25 l # don't use Group #-1 on these systems![?25h[?25l[23;1 --More--(173%)  H #[?25h[?25l User nobody[?25h[?25l Group #-1[?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l --More--(71%) #[?25h[?25l # ServerAdmin: Your address, where problems with the server should b e[?25h[?25l # e-mailed. This address appears on some server-generated pages, su ch[?25h[?25l # as error documents. e.g. admin@your-domain.com[?25h[?25l[1 ;23r #[?25h[?25l ServerAdmin you@your.address[?25h[?25l [?25h[13 --More--(174%) ;9H[?25 l#[?25h[?25l[?25h[?25l[?25h    [?25l #[?25h[?25l ServerAdmin you@your.address[?25h[?25l [?25h[?25l #[?25h[?25l --More--(71%) # ServerName gives the name and port that the server uses to identif y itself.[?25h[?25l # This can often be determined automatically, but we recommend you s pecify[?25h[?25l # it explicitly to prevent problems during startup.[?25h[?25l --More--(174%)  #[?25h[17; 22H[?25l-- INSERT --[?25h[?25l#ServerAdmin you@your.address #[?25h[?25l ServerAdmin you@your.address # [?25h[?25l[?25h  [?25l-- INSERT --[?25h[?25l[?2 5h[?25l[?25h[?25lS[?25h[?25le[?25h[?25lr[?25h[?25lv[?25h[?25le[?25h[?25lr[ ?25h[?25lA[?25h[?25ld[?25h[?25lm[?25h[?25li[?25h[?25ln[?25h[?25l [?25h[?25lb[?25 h[?25lh[?25h[?25la[?25h[?25ly[?25h[?25le[?25h[?25ls[?25h[?25l@[?25h[?25le[?25h[? 25lm[?25h[?25la[?25h[?25li[?25h[?25ll[?25h[?25l.[?25h[?25lu[?25h[?25ln[?25h[?25l c[?25h[?25l.[?25h[?25le[?25h[?25ld[?25h[?25lu[?25h[?25l[?25h [?25l #[?25h[?25l # If this is not set to valid DNS name for your host, server-generat --More--(174%) ed[?25h[?25l # redirections will not work. See also the UseCanonicalName directi --More--(72%) ve.[?25h[?25l #[?25h[?25l # If your host doesn't have a registered DNS name, enter its IP addr ess here.[?25h[?25l # You will have to access it by its address anyway, and this will ma ke[?25h[?25l # redirections work in a sensible way.[?25h[?25l #[?25h[?25l #ServerName new.host.name:80[?25h[?25l [?25h[?25l #[?25h[?25l # UseCanonicalName: Determines how Apache constructs self-referencin g[?25h[?25l -- INSERT --[?25h[?25l[?25h[?25l[ --More--(174%)  ?25h[?25lS[?25h[?25le[?25h[?25lr[?25h[?25lv[?25h[?25le[?25h[?25lr[?2 5h[?25lN[?25h[?25la[?25h[?25lm[?25h[?25le[?25h[?25l [?25h[?25lm[?25h[?25la[?25h[ ?25lg[?25h[?25ln[?25h[?25lo[?25h[?25ll[?25h[?25li[?25h[?25la[?25h[?25l.[?25h[?25 l[?25h[?25l[?25h[?25l[?25h[?25l[ 21;17H[?25h[?25l[?25h[?25l[?25h[?25l[21 ;14H[?25h[?25l[?25h[?25l[?25h[?25l2[?25 --More--(72%) h[?25l4[?25h[?25l.[?25h[?25l1[?25h[?25l6[?25h[?25l3[?25h[?25l.[?25h[?25l4[?25h[? 25l2[?25h[?25l1[?25h[?25l[?25h[?25l[?25h[?25l1[? 25h[?25l.[?25h[?25l7[?25h[?25l3[?25h [?25l[?25h [?25l #[?25h[?25l # UseCanonicalName: Determines how Apache constructs self-referencin --More--(175%)  g [?25h[?25l # URLs and the SERVER_NAME and SERVER_PORT variables. [?25h[?25l # When set "Off", Apache will use the Hostname and Port supplied [?25h[?25l # by the client. When set "On", Apache will use the value of the [?25h[?25l # ServerName directive. [?25h[?25l #[?25h[?25l UseCanonicalName Off [?25h[?25l [?25h[?25l #[?25h[?25l # DocumentRoot: The directory out of which you will serve your [?25h[?25l # documents. By default, all requests are taken from this directory, but [?25h[?25l # symbolic links and aliases may be used to point to other locations . [?25h[?25l #[?25h[?25l --More--(73%) DocumentRoot "/usr/local/apache2/htdocs" [?25h[?25l [?25h[?25l #[?25h[?25l --More--(175%)  -- INSERT --[?25h[?25l#DocumentRoot "/usr/local/apache2/htdocs" #[?25h[?25l DocumentRoot "/usr/local/apache2/htdocs" # [?25h [?25l[?25h[?25lD[?25h[?25lo[?25h[?25lc[?25h[?25lu[?25h[?25lm [?25h[?25le[?25h[?25ln[?25h[?25lt[?25h[?25lR[?25h[?25lo[?25h[?25lo[?25h[?25lt[?2 5h[?25l [?25h[?25l"[?25h[?25l/[?25h[?25lh[?25h[?25lo[?25h[?25lm[?25h[?25le[?25h[ ?25l/[?25h[?25lb[?25h[?25lh[?25h[?25la[?25h[?25ly[?25h[?25le[?25h[?25ls[?25h[?25 l/[?25h[?25lh[?25h[?25lt[?25h[?25ld[?25h[?25lo[?25h[?25lc[?25h[?25ls[?25h[?25l[2 2;33H[?25h[?25l[?25h[?25l[?25h[?25l[22; 30H[?25h[?25l[?25h[?25l[?25h[?25l[22;27 H[?25h[?25l[?25h[?25l[?25h[?25l[ K[?25h[?25l[?25h[?25l[?25h[?25l[ 22;21H[?25h[?25lh[?25h[?25lt[?25h[?25ld[?25h[?25lo[?25h[?25lc[?25h[?25ls[?25h[?2 --More--(175%) 5l"[?25h[?25l[?25h [?25l #[?25h[?25l # Each directory to which Apache has access can be configured with r espect[?25h[?25l # to which services and features are allowed and/or disabled in that --More--(73%) [?25h[?25l # directory (and its subdirectories).[?25h[?25l #[?25h[?25l # First, we configure the "default" to be a very restrictive set of[ 23;27H[?25h[?25l # features. [?25h[?25l #[?25h[?25l [?25h[?25l Options FollowSymLinks[?25h[?25l AllowOverride None[?25h[?25l [?25h[?25l [?25h[?25l #[?25h[?25l --More--(175%) # Note that from this point forward you must specifically allow[23;2 7H[?25h[?25l # particular features to be enabled - so if something's not working as[?25h[?25l # you might expect, make sure that you have specifically enabled it[ 23;27H[?25h[?25l # below.[?25h[?25l #[?25h[?25l [?25h[?25l --More--(73%) #[?25h[?25l # This should be changed to whatever you set DocumentRoot to. [?25h[?25l #[?25h[?25l [?25h[?25l [?25h[?25l #[?25h[?25l --More--(176%) # Possible values for the Options directive are "None", "All",[23;27 H[?25h[?25l # or any combination of:[?25h[ 18;1H[?25l-- INSERT --[?25h [?25l# #[?25h[?25l # [?25h [?25l[?25h[?25l-- IN SERT --[?25h[?25l<[?25h[?25lD[?25h[?25li[?25h[?25lr[?25h[?25 le[?25h[?25lc[?25h[?25lt[?25h[?25lo[?25h[?25lr[?25h[?25ly[?25h[?25l [?25h[?25l"[ ?25h[?25l/[?25h[?25lh[?25h[?25lo[?25h[?25lm[?25h[?25le[?25h[?25l/[?25h[?25lh[?25 h[?25lt[?25h[?25ld[?25h[?25lo[?25h[?25lc[?25h[?25ls[?25h[?25l"[?25h[?25l>[?25h[2 4;1H[?25l[?25h [?25l --More--(74%) # Possible values for the Options directive are "None", "All",[23;26 --More--(176%)  H[?25h[?25l # or any combination of:[?25h[?25l # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI Mul tiviews[?25h[?25l #[?25h[?25l # Note that "MultiViews" must be named *explicitly* --- "Options All "[?25h[?25l # doesn't give it to you.[?25h[?25l #[?25h[?25l # The Options directive is both complicated and important. Please s ee[?25h[?25l # http://httpd.apache.org/docs-2.0/mod/core.html#options[?25h [?25l # for more information.[?25h[?25l #[?25h[?25l Options Indexes FollowSymLinks[?25h[?25l [?25h[?25l --More--(176%) #[?25h[?25l # AllowOverride controls what directives may be placed in .htaccess files.[?25h[?25l # It can be "All", "None", or any combination of the keywords:[23;26 --More--(74%) H[?25h[?25l # Options FileInfo AuthConfig Limit[?25h[?25l #[?25h[?25l AllowOverride None[?25h[?25l [?25h[?25l #[?25h[?25l # Controls who can get stuff from this server.[?25h[?25l[1;23 r #[?25h[?25l Order allow,deny[?25h[?25l Allow from all[?25h[?25l [?25h[?25l [?25h[?25l [?25h[?25l #[?25h[?25l --More--(176%) # UserDir: The name of the directory that is appended onto a user's home[?25h[?25l # directory if a ~user request is received.[?25h[?25l[2 3;1H #[?25h[?25l UserDir public_html[?25h[?25l [?25h[?25l --More--(74%) #[?25h[?25l # Control access to UserDir directories. The following is an exampl e[?25h[?25l # for a site where these directories are restricted to read-only.[23 ;26H[?25h[?25l #[?25h[?25l #[?25h[?25l # AllowOverride FileInfo AuthConfig Limit Indexes[?25h[?25 l # Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec[ --More--(177%)  23;26H[?25h[?25l # [?25h[?25l #Order allow,deny[?25h[?25l #Allow from all[?25h[?25l # [?25h[?25l # [?25h[?25l[ 23;1H #Order deny,allow[?25h[?25l #Deny from all[?25h[?25l # [?25h[?25l #[?25h[?25l [?25h[?25l --More--(75%) #[?25h[?25l # DirectoryIndex: sets the file that Apache will serve if a director y[?25h[?25l # is requested.[?25h[?25l #[?25h[?25l # The index.html.var file (a type-map) is used to deliver content-[2 --More--(177%) 3;26H[?25h[?25l # negotiated documents. The MultiViews Option can be used for the[2 3;26H[?25h[?25l # same purpose, but it is much slower.[?25h[?25l #[?25h[?25l DirectoryIndex index.html index.html.var[?25h[?25l[23;1 H [?25h[?25l #[?25h[?25l # AccessFileName: The name of the file to look for in each directory [?25h[?25l # for additional configuration directives. See also the AllowOverri de[?25h[?25l # directive.[?25h[?25l #[?25h[?25l AccessFileName .htaccess[?25h[?25l --More--(75%) [?25h[?25l #[?25h[?25l --More--(177%) # The following lines prevent .htaccess and .htpasswd files from bei ng[?25h[?25l # viewed by Web clients.[?25h[?25l #[?25h[?25l [?25h[?25l Order allow,deny[?25h[?25l Deny from all[?25h[?25l [?25h[?25l [?25h[?25l #[?25h[?25l # TypesConfig describes where the mime.types file (or equivalent) is [?25h[?25l # to be found.[?25h[?25l #[?25h[?25l TypesConfig conf/mime.types[?25h[?25l [?25h[?25l #[?25h[?25l # DefaultType is the default MIME type the server will use for a doc ument[?25h[?25l --More--(178%) # if it cannot otherwise determine one, such as from filename extens --More--(75%) ions.[?25h[?25l # If your server contains mostly text or HTML documents, "text/plain " is[?25h[?25l # a good value. If most of your content is binary, such as applicat ions[?25h[?25l # or images, you may want to use "application/octet-stream" instead to[?25h[?25l # keep browsers from trying to display binary files as though they a re[?25h[?25l # text.[?25h[?25l #[?25h[?25l DefaultType text/plain[?25h[?25l [?25h[?25l #[?25h[?25l # The mod_mime_magic module allows the server to use various hints f --More--(178%) rom the[?25h[?25l # contents of the file itself to determine its type. The MIMEMagicF ile[?25h[?25l # directive tells the module where the hint definitions are located. [?25h[?25l #[?25h[?25l [?25h[?25l --More--(75%) MIMEMagicFile conf/magic[?25h[?25l [?25h[?25l [?25h[?25l #[?25h[?25l # HostnameLookups: Log the names of clients or just their IP address es[?25h[?25l # e.g., www.apache.org (on) or 204.62.129.132 (off).[?25h[?25 l # The default is off because it'd be overall better for the net if p eople[?25h[?25l --More--(178%) # had to knowingly turn this feature on, since enabling it means tha t[?25h[?25l # each client request will result in AT LEAST one lookup request to the[?25h[?25l # nameserver.[?25h[?25l #[?25h[?25l HostnameLookups Off[?25h[?25l [?25h[?25l #[?25h[?25l # EnableMMAP: Control whether memory-mapping is used to deliver[23;2 6H[?25h[?25l # files (assuming that the underlying OS supports it).[?25h[? --More--(76%) 25l # The default is on; turn this off if you serve from NFS-mounted[23; 26H[?25h[?25l # filesystems. On some systems, turning it off (regardless of[23;26 --More--(178%) H[?25h[?25l # filesystem) can improve performance; for details, please see[23;26 H[?25h[?25l # http://httpd.apache.org/docs-2.0/mod/core.html#enablemmap[? 25h[?25l #[?25h[?25l #EnableMMAP off[?25h[?25l [?25h[?25l #[?25h[?25l # ErrorLog: The location of the error log file.[?25h[?25l[1;2 3r # If you do not specify an ErrorLog directive within a [?25h[?25l # container, error messages relating to that virtual host will be[23 ;26H[?25h[?25l # logged here. If you *do* define an error logfile for a [?25h[?25l # container, that host's errors will be logged there and not here.[2 --More--(76%) 3;26H[?25h[?25l #[?25h[?25l ErrorLog logs/error_log[?25h[?25l [?25h[?25l #[?25h[?25l # LogLevel: Control the number of messages logged to the error_log.[ 23;26H[?25h[?25l # Possible values include: debug, info, notice, warn, error, crit,[2 3;26H[?25h[?25l # alert, emerg.[?25h[?25l #[?25h[?25l LogLevel warn[?25h[?25l [?25h[?25l #[?25h[?25l # The following directives define some format nicknames for use with [?25h[?25l --More--(179%) # a CustomLog directive (see below).[?25h[?25l #[?25h[?25lLogFormat "%h %l %u %t \"%r\" %> s %b \"%{Referer}i\" \"%{User-Agent}i\"" combine d[?25h[?25l[ 23;1H LogFormat "%h %l %u %t \"%r\" %>s %b" common[?25h[?25l[ 23;1H --More--(76%) LogFormat "%{Referer}i -> %U" referer[?25h[?25l LogFormat "%{User-agent}i" agent[?25h[?25l [?25h[?25l #[?25h[?25l # The location and format of the access logfile (Common Logfile Form at).[?25h[?25l # If you do not define any access logfiles within a [23 ;26H[?25h[?25l # container, they will be logged here. Contrariwise, if you *do*[23 ;26H[?25h[?25l --More--(179%) # define per- access logfiles, transactions will be[23; 26H[?25h[?25l # logged therein and *not* in this file.[?25h[?25l[23;1 H #[?25h[?25l CustomLog logs/access_log common[?25h[?25l [?25h[?25l #[?25h[?25l # If you would like to have agent and referer logfiles, uncomment th e[?25h[?25l # following directives.[?25h[?25l #[?25h[?25l --More--(77%) #CustomLog logs/referer_log referer[?25h[?25l #CustomLog logs/agent_log agent[?25h[?25l [?25h[?25l #[?25h[?25l# If you prefer a single logfile with access, agent, and referer information # (Combined Logfile Format) you can use the following directive.[?25h[23; --More--(179%)  26H[?25l #[?25h[?25l #CustomLog logs/access_log combined[?25h[?25l [?25h[?25l #[?25h[?25l # ServerTokens[?25h[?25l # This directive configures what you return as the Server HTTP respo nse[?25h[?25l # Header. The default is 'Full' which sends information about the OS -Type[?25h[?25l # and compiled in modules.[?25h[?25l # Set to one of: Full | OS | Minor | Minimal | Major | Prod[ ?25h[?25l # where Full conveys the most information, and Prod the least.[23;26 H[?25h[?25l #[?25h[?25l --More--(77%) ServerTokens Full[?25h[?25l --More--(180%) [?25h[?25l #[?25h[?25l # Optionally add a line containing the server version and virtual ho st[?25h[?25l # name to server-generated pages (internal error documents, FTP dire ctory[?25h[?25l # listings, mod_status and mod_info output etc., but not CGI generat ed[?25h[?25l # documents or custom error documents).[?25h[?25l # Set to "EMail" to also include a mailto: link to the ServerAdmin.[ 23;26H[?25h[?25l # Set to one of: On | Off | EMail[?25h[?25l #[?25h[?25l ServerSignature On[?25h[?25l [?25h[?25l #[?25h[?25l --More--(180%) # Aliases: Add here as many aliases as you need (with no limit). The format is[?25h[?25l # Alias fakename realname[?25h[?25l #[?25h[?25l --More--(77%) # Note that if you include a trailing / on fakename then the server will[?25h[?25l # require it to be present in the URL. So "/icons" isn't aliased in this[?25h[?25l # example, only "/icons/". If the fakename is slash-terminated, the n the[?25h[?25l # realname must also be slash terminated, and if the fakename omits the[?25h[?25l # trailing slash, the realname must also omit it.[?25h[?25l[1 ;23r #[?25h[?25l # We include the /icons/ alias for FancyIndexed directory listings. --More--(180%)  If you[?25h[?25l # do not use FancyIndexing, you may comment this out.[?25h[?2 5l #[?25h[?25l Alias /icons/ "/usr/local/apache2/icons/"[?25h[?25l[23; 1H [?25h[?25l [?25h[?25l Options Indexes MultiViews[?25h[?25l AllowOverride None[?25h[?25l --More--(78%) Order allow,deny[?25h[?25l Allow from all[?25h[?25l [?25h[?25l [?25h[?25l #[?25h[?25l # This should be changed to the ServerRoot/manual/. The alias provi des[?25h[?25l # the manual, even if you choose to move your DocumentRoot. You may --More--(180%)  comment[?25h[?25l # this out if you do not care for the documentation.[?25h[?25 l #[?25h[?25l Alias /manual "/usr/local/apache2/manual"[?25h[?25l[23; 1H [?25h[?25l [?25h[?25l Options Indexes FollowSymLinks MultiViews IncludesNoExec[?25h [?25l AddOutputFilter Includes html[?25h[?25l AllowOverride None[?25h[?25l Order allow,deny[?25h[?25l --More--(78%) Allow from all[?25h[?25l [?25h[?25l [?25h[?25l --More--(181%) #[?25h[?25l # ScriptAlias: This controls which directories contain server script s.[?25h[?25l # ScriptAliases are essentially the same as Aliases, except that[23; 26H[?25h[?25l # documents in the realname directory are treated as applications an d[?25h[?25l # run by the server when requested rather than as documents sent to the client.[?25h[?25l # The same rules about trailing "/" apply to ScriptAlias directives as to[?25h[?25l # Alias.[?25h[?25l #[?25h[13 ;18H[?25 l[?25h[?25l[?25h[?25l --More--(181%)  Allow from all[?25h[?25lOrder all ow,deny[?25h[?25lAllowOverride None[?25h[?25l Options Indexes MultiViews[?25h[?25l[?25h[?25l[?25h[?25l --More--(78%) Alias /icons/ "/usr/local/apache2/icons/"[?25h[?25l[1;23 r#[?25h[?25l# do not use FancyIndexing, you may comment this out.[?25h[?25l# We include t he /icons/ alias for FancyIndexed directory listings. If you[?25h[?25l[1; 23r#[?25h[?25l# trailing slash, the rea lname must also omit it.[?25h[?25l# realname must also be slash terminated, and if the fakename omits the[?25h[?25l[1; --More--(181%)  1H# example, only "/icons/". If the fakename is slash-terminated, then the[?25h[?25l# require it to be present in th e URL. So "/icons" isn't aliased in this[?25h[?25l[1;1 H# Note that if you include a trailing / on fakename then the server will[ ?25h[?25l#[?25h[?25l# Alias faken ame realname[?25h[?25l# Aliases: Add here as many aliases as you need (with no limit). The format is[?25h[?25l[1 ;1H#[?25h[?25l[?25h[?25lServerSig nature On[?25h[?25l#[?25h[?25l# Se t to one of: On | Off | EMail[?25h[?25l# Set to " EMail" to also include a mailto: link to the ServerAdmin.[?25h[?25l[ --More--(181%)  1;1H# documents or custom error documents).[?25h[?25l[1 ;1H# listings, mod_status and mod_info output etc., but not CGI gen erated[?25h[?25l# name to server-generated pages ( internal error documents, FTP directory[?25h[?25l# --More--(79%) Optionally add a line containing the server version and virtual host[?25h [?25l#[?25h[?25l[?25h[?25l[ 1;1HServerTokens Full[?25h[?25l#[?25h[?25l[1; 23r# where Full conveys the most information, and Prod the lea st.[?25h[?25l# Set to one of: Full | OS | Minor | Minimal | Major | Prod[?25h[?25l# and compiled in modules.[?25h[?25l# Header. The default is 'Full' which --More--(182%)  sends information about the OS-Type[?25h[?25l# Thi s directive configures what you return as the Server HTTP response[?25h[?2 5l# ServerTokens[?25h[?25l#[?25h[? 25l[?25h[?25l#CustomLog logs/acc ess_log combined[?25h[?25l#[?25h[?25l[ 1;24r# (Combined Logfile Format) you can use the following directive. [?25h[?25l# If you prefer a single logfile with access, agent, and referer information[?25h[?25l#[?25h[?25l [?25h[?25l#CustomLog logs/agent_ log agent[?25h[?25l#CustomLog logs/referer_log referer[? 25h[?25l#[?25h[?25l# following di --More--(182%)  rectives.[?25h[?25l# If you would like to have agent and referer logfiles, uncomment the[?25h[?25l#[?25h[?25 l[?25h[?25lCustomLog logs/access _log common[?25h[?25l#[?25h[?25l --More--(79%) # logged therein and *not* in this file.[?25h[?25l # define per- access logfiles, transactions will be[?25h [?25l# container, they will be logged here. Contrariwis e, if you *do*[?25h[?25l# If you do not define any access logfiles within a [?25h[?25l# The location and format of the access logfile (Common Logfile Format).[?2 5h[?25l#[?25h[?25l[?25h[?25l[1;23 --More--(182%)  rLogFormat "%{User-agent}i" agent[?25h[?25l LogFormat "%{Referer}i -> %U" referer[?25h[?25l[1; 24rLogFormat "%h %l %u %t \"%r\" %>s %b" common[?25h[?25l[ 2LLogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent }i\"" combine d[?25h[?25l#[?25h[?25l[1;1 H# a CustomLog directive (see below).[?25h[?25l[ 1;24r# The following directives define some format nicknames for use with[1 ;26H[?25h[?25l#[?25h[?25l[?25h[?2 5lLogLevel warn[?25h[?25l#[?25h[?2 5l# alert, emerg.[?25h[?25l# Poss ible values include: debug, info, notice, warn, error, crit,[?25h[?25l[1;2 --More--(182%)  3r# LogLevel: Control the number of messages logged to the err or_log.[?25h[?25l#[?25h[?25l[1;1 H[?25h[?25lErrorLog logs/error_log[?25h[?25l #[?25h[?25l# container, that host's errors wil --More--(80%) l be logged there and not here.[?25h[?25l# logged here. If you *do* define an error logfile for a [?25h[?25l[1 ;23r# container, error messages relating to that virtual host will be[?25h[?25l# If you do not specify an ErrorL og directive within a [?25h[?25l# Err orLog: The location of the error log file.[?25h[?25l[1; 1H#[?25h[?25l[?25h[?25l#EnableMMA --More--(183%)  P off@[?25h[?25l#[?25h[?25l[1;23 r# http://httpd.apache.org/docs-2.0/mod/core.html#enablemmap[1 ;26H[?25h[?25l# filesystem) can improve performance; for details, please see[?25h[?25l# filesystems. On s ome systems, turning it off (regardless of[?25h[?25l[1; 1H# The default is on; turn this off if you serve from NFS-mounted[?25h[?2 5l# files (assuming that the underlying OS supports it). [?25h[?25l# EnableMMAP: Control whether memory-map ping is used to deliver[?25h[?25l#[?25h[?25l[ 1;1H[?25h[?25lHostnameLookups Off[?25h[?25l[ 1;23r#[?25h[?25l# nameserver.[?25h[?25l[ --More--(183%)  1;23r# each client request will result in AT LEAST one lookup request to the[?25h[?25l# had to knowingly turn th is feature on, since enabling it means that[?25h[?25l[1 ;1H# The default is off because it'd be overall better for the net if people[1;2 --More--(80%) 6H[?25h[?25l# e.g., www.apache.org (on) or 204.62.129.13 2 (off).[?25h[?25l# HostnameLookups: Log the names of clients or just their IP addresses[?25h[?25l#[? 25h[?25l[?25h[?25l[?25 h[?25lMIMEMagicFile conf/magic[?25h[?25l [?25h[?25l#[?25h[?25l # directive tells the module where the hint definitions are lo --More--(183%)  cated.[?25h[?25l# contents of the file itself to d etermine its type. The MIMEMagicFile[?25h[?25l# T he mod_mime_magic module allows the server to use various hints from the[? 25h[?25l#[?25h[?25l[?25h[?25l[1;2 3rDefaultType text/plain[?25h[?25l#[?25h [?25l# text.[?25h[?25l# keep brow sers from trying to display binary files as though they are[?25h[?25l[1;23 r# or images, you may want to use "application/octet-stream" i nstead to[?25h[?25l# a good value. If most of you r content is binary, such as applications[?25h[?25l[1;1 H# If your server contains mostly text or HTML documents, "text/plain" is[ --More--(183%)  ?25h[?25l# if it cannot otherwise determine one, such as from filename extensions.[?25h[?25l# DefaultType is the default MIME type the server will use for a document[?25h[?25l[1;23 r#[?25h[?25l[?25h[?25l[1;2 --More--(81%) 4rTypesConfig conf/mime.types[?25h[?25l#[?25h[?25l[1;2 3r# to be found.[?25h[?25l# TypesConfig describes where the mime.types file (or equivalent) is[?25h[?25l[1; 1H#[?25h[?25l[?25h[?25l[1 ;1H[?25h[?25lDeny from all[?25h[?25l[ 1;24rOrder allow,deny[?25h[?25l[?25h [?25l#[?25h[?25l# viewed by Web c --More--(184%)  lients.[?25h[?25l# The following lines prevent .htaccess and .htpasswd files from being[?25h[?25l#[?25h[?25 l[?25h[?25lAccessFileName .htacc ess[?25h[?25l#[?25h[?25l# directiv e.[?25h[?25l# for additional configuration directives. S ee also the AllowOverride[?25h[?25l# AccessFileNam e: The name of the file to look for in each directory[?25h[?25l #[?25h[?25l[?25h[?25l[1;1 HDirectoryIndex index.html index.html.var[?25h[?25l[1;1 H#[?25h[?25l# same purpose, but it is much slower.[ ?25h[?25l# negotiated documents. The MultiViews Option --More--(184%)  can be used for the[?25h[?25l# The index.html.var file (a type-map) is used to deliver content-[?25h[?25l #[?25h[?25l# is requested.[?25h[?25l[1;2 4r# DirectoryIndex: sets the file that Apache will serve if a directory[1;2 --More--(81%) 6H[?25h[?25l#[?25h[?25l[?25h[?25l #[?25h[?25l# [?25h[?25l#Deny from all[?25h[?25l[ L#Order deny,allow[?25h[?25l# [?25h[?25l# [?25h[?25l#Allow from all[?25h[?25l[1;24 r#Order allow,deny[?25h[?25l# [?25h[?25l# Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec[?25h[?25l[ 1;1H# AllowOverride FileInfo AuthConfig Limit Indexes[?25h[?25l[1 ;1H#[?25h[?25l[1; 24r#[?25h[?25l# for a site where these directories a re restricted to read-only.[?25h[?25l# Control acc ess to UserDir directories. The following is an example[?25h[?25l[1 ;1H#[?25h[?25l[?25h[?25l[ 1;1HUserDir public_html[?25h[?25l#[?25h[?25l[ 1;24r# directory if a ~user request is received.[?25h[?25l # UserDir: The name of the directory that is appended onto a user's --More--(184%)  home[?25h[?25l#[?25h[?25l[ ?25h[?25l[?25h[?25l[? 25h[?25lAllow from all[?25h[?25lO rder allow,deny[?25h[?25l#[?25h[?25l[1; --More--(82%) 1H# Controls who can get stuff from this server.[?25h[?25l[1; 24r#[?25h[?25l[?25h[?25lAllo wOverride None[?25h[?25l#[?25h[?25l[1;1 H# Options FileInfo AuthConfig Limit[?25h[?25l# It can be "All", "None", or any combination of the keywords:[?25h[?25l[1;2 3r# AllowOverride controls what directives may be placed in .h taccess files.[?25h[?25l#[?25h[?25l[1; --More--(185%)  24r[?25h[?25lOptions Indexes FollowSymLinks[? 25h[?25l#[?25h[?25l# for more inf ormation.[?25h[?25l# http://httpd.apache.org/docs-2.0/mod /core.html#options[?25h[?25l# The Options directiv e is both complicated and important. Please see[?25h[?25l[1; 24r#[?25h[?25l# doesn't give it to you.[?25h[?25l[1;2 3r# Note that "MultiViews" must be named *explicitly* --- "Opt ions All"[?25h[?25l#[?25h[?25l[1 ;1H# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI Multiviews[1 ;26H[?25h[?25l# or any combination of:[?25h[?25l[1; 1H# Possible values for the Options directive are "None", "All",[1; --More--(185%)  26H[?25h[?25l#[?25h[?25l[?25h[?25 l[?25h[?25l[?25h[?25l# [ 1;26H[?25h[?25l#[?25h[?25l# This --More--(82%) should be changed to whatever you set DocumentRoot to.[?25h[?25l[1;1 H#[?25h[?25l[?25h[?25l[1; 1H#[?25h[?25l# below.[?25h[?25l# y ou might expect, make sure that you have specifically enabled it[?25h[?25l # particular features to be enabled - so if something's not working as[?25h[?25l# Note that from this poin t forward you must specifically allow[?25h[?25l#[?2 --More--(185%)  5h[?25l[?25h[?25l[?25 h[?25lAllowOverride None[?25h[?25l[1;5 HOptions FollowSymLinks[?25h[?25l[?25h[?25l[1 ;23r#[?25h[?25l# features. [?25h[?25l[1 ;23r# First, we configure the "default" to be a very restricti ve set of[?25h[?25l#[?25h[?25l[1 ;1H# directory (and its subdirectories).[?25h[?25l # to which services and features are allowed and/or disabled in that[?25h[ ?25l# Each directory to which Apache has access can be c onfigured with respect[?25h[?25l#[?25h[?25l[1 ;1H[?25h[?25lDocumentRoot "/home/htdocs"[?25h --More--(185%)  [?25l# DocumentRoot "/usr/local/apache2/htdocs"[?2 5h[?25l#[?25h[?25l# symbolic link s and aliases may be used to point to other locations.[?25h[?25l[1;1 H# documents. By default, all requests are taken from this director --More--(83%) y, but[?25h[?25l# DocumentRoot: The directory out of which you will serve your[?25h[?25l#[?25h[?25l[1 ;23r[?25h[?25lUseCanonicalName Off[?25h [?25l#[?25h[?25l# ServerName dire ctive.[?25h[?25l# by the client. When set "On", Apache w ill use the value of the[?25h[?25l# When set "Off" , Apache will use the Hostname and Port supplied[?25h[?25l[1; --More--(186%)  24r# URLs and the SERVER_NAME and SERVER_PORT variables.[?25h[?25l[1; 23r# UseCanonicalName: Determines how Apache constructs self-r eferencing[?25h[?25l#[?25h[?25l[ 1;1H[?25h[?25l[?25h[?25lServerNa me 24.163.41.73[?25h[?25l#ServerName new.host.name:80[?25h[? 25l#[?25h[?25l# redirections work in a sensible way.[?25h[?25l# You will have to ac cess it by its address anyway, and this will make[?25h[?25l[1 ;24r# If your host doesn't have a registered DNS name, enter its IP address here.[?25h[?25l#[?25h [?25l-- INSERT --[?25h[?25l#ServerName 24.163.41.73 #[?25h[?25l ServerName 24.163.41.73 # [?25h[?25lhServerName 24.163.41.73 # h[?25h[?25loServerName 24.163.41.73 # ho[?25h[?25llServerNa --More--(186%) e 24.163.41.73 # hol[?25h[?25ldServerName 24.163.41.73[?25h[?25l ServerName 24.163.41.73[7 ;8H[?25h[?25lfServerName 24.163.41.73[?25h[?25loServerName 24.163.41.73[7;1 0H[?25h[?25lfServerName 24.163.41.73[?25h[?25lrServerName 24.163.41.73[7;1 2H[?25h[?25l ServerName 24.163.41.73[?25h[?25llServerName 24.163.41.73[7;1 --More--(84%) 4H[?25h[?25lServerName 24.163.41.73[?25h[?25lServerName 24.163.41.73 [?25h[?25lServerName 24.163.41.73[?25h[?25lServerName 24.163.41.73[?25h[?25lrServerName 24.163.41.73[?25h[?25l Ser verName 24.163.41.73[?25h[?25llServerName 24.163.41.73[?25h[?25laSer verName 24.163.41.73[?25h[?25ltServerName 24.163.41.73[?25h[?25leSer verName 24.163.41.73[?25h[?25lrServerName 24.163.41.73[?25h[?25l Ser verName 24.163.41.73[?25h[?25l^FServerName 24.163.41.73[?25h[?2 --More--(186%) 5lServerName 24.163.41.73[?25h[?25l[?25h[?25l[ 2J# symbolic links and aliases may be used to point to other loc ations. # # DocumentRoot "/usr/local/apache2/htdocs" DocumentRoot "/home/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. # --More--(84%) Options FollowSymLinks AllowOverride None --More--(186%) # # 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.[?25h[?25l# you might expect, make sure that you have specifically enabled itbelow.# # This should be changed to whatever you set DocumentRoot to.[ 10;1HPossible 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 --More--(187%) --More--(84%) # http://httpd.apache.org/docs-2.0/mod/core.html#optionsfor more information.[?25h[?25l# for mor e 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 --More--(187%)  # --More--(84%) # UserDir: The name of the directory that is appended onto a user's home # directory if a ~user request is received. #[?25h[?25l# directory if a ~user request is received. UserDir public_htmlControl access to UserDir directories. The foll owing is an examplefor a site where these directories are restricte d to read-only. # AllowOverride FileInfo AuthConfig Limit Indexes # Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec # Order allow,denyAllow from all # # #Order deny,allow # Deny from all # #DirectoryIndex: sets the file that Apache wil --More--(187%) l serve if a directory[?25h[?25l# # DirectoryIndex: sets the file that Apache will serve if a directory # is requested. # # The index.html.var file (a type-map) is used to deliver content- # negotiated documents. The MultiViews Option can be used for the --More--(85%) # same purpose, but it is much slower. # DirectoryIndex index.html index.html.var # # AccessFileName: The name of the file to look for in each directory # for additional configuration directives. See also the AllowOverride # directive. # AccessFileName .htaccess # # The following lines prevent .htaccess and .htpasswd files from being # viewed by Web clients. # --More--(187%) Order allow,deny[?25h[?25l Order allow,deny Deny from all TypesConfig describes where the mime.types file (or e quivalent) is # to be found. #TypesConfig conf/mime.typesDefaultType is th --More--(85%) e 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#[ ?25h[?25l# # 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. # --More--(188%) MIMEMagicFile conf/magic # # HostnameLookups: Log the names of clients or just their IP addresses # e.g., www.apache.org (on) or 204.62.129.132 (off). # The default is off because it'd be overall better for the net if people # had to knowingly turn this feature on, since enabling it means that # each client request will result in AT LEAST one lookup request to the --More--(85%) # nameserver. # HostnameLookups Off # # EnableMMAP: Control whether memory-mapping is used to deliver # files (assuming that the underlying OS supports it).[?25h[?25l# EnableMMA P: Control whether memory-mapping is used to deliver # files (assuming that the underlying OS supports it).default is on; turn t his off if you serve from NFS-mounted filesystems. On some systems --More--(188%) , turning it off (regardless offilesystem) can improve performance; for details, please seehttp://httpd.apache.org/docs-2.0/mod/core.h tml#enablemmap ##EnableMMAP off# # ErrorLog: The location of the error log file. # If you do not specify an ErrorLog directive within a [13 ;3Hcontainer, error messages relating to that virtual host will be # logged here. If you *do* define an error logfile for a  container, that host's errors will be logged there and not here.[ 16;3HErrorLog logs/error_log## LogLevel: Con trol the number of messages logged to the error_log. # Possible values include: debug, info, notice, warn, error, crit, --More--(85%) # alert, emerg.[?25h[?25l# aler t, emerg. # --More--(188%) LogLevel warn # # 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\"" combine d LogFormat "%h %l %u %t \"%r\" %>s %b" common LogFormat "%{Referer}i -> %U" referer LogFormat "%{User-agent}i" agent # # The location and format of the access logfile (Common Logfile Format). # If you do not define any access logfiles within a # container, they will be logged here. Contrariwise, if you *do* # define per- access logfiles, transactions will be # logged therein and *not* in this file. # --More--(86%) CustomLog logs/access_log common[?25h[?25lCustomLog logs/access_log common[ --More--(188%) 2;1H## If you would like to have agent and referer logfiles, uncomment the # following directives.CustomLog logs/referer_log referer[8; 2HCustomLog logs/agent_log agent# # If you prefer a single logfile with access, agent, and referer information # (Combined Logfile Format) you can use the following directive. ##CustomLog logs/access_log combinedServerTo kensThis directive configures what you return as the Server HTTP response # Header. The default is 'Full' which sends information about the OS-Type # and compiled in modules.Set to one of: Full | OS | Minor | Min imal | Major | Prod # where Full conveys the most information, and Prod the least. #[?25h[?25l# where Full conveys the most informa tion, and Prod the least. # --More--(188%) ServerTokens Full # # Optionally add a line containing the server version and virtual host # name to server-generated pages (internal error documents, FTP directory --More--(86%) # listings, mod_status and mod_info output etc., but not CGI generated # documents or custom error documents). # Set to "EMail" to also include a mailto: link to the ServerAdmin. # Set to one of: On | Off | EMail # ServerSignature On # # Aliases: Add here as many aliases as you need (with no limit). The format is # Alias fakename realname # # Note that if you include a trailing / on fakename then the server will # require it to be present in the URL. So "/icons" isn't aliased in this # example, only "/icons/". If the fakename is slash-terminated, then the # realname must also be slash terminated, and if the fakename omits the # trailing slash, the realname must also omit it.[?25h[?25l# realname must --More--(189%) also be slash terminated, and if the fakename omits the # trailing slash, the realname must also omit it. ## We include the /icons/ alias for FancyIndexed directory listings. If you # do not use FancyIndexing, you may comment this out.Alias /icons/ " /usr/local/apache2/icons/" Options Indexes MultiViews AllowOverride None Order allow,deny Allow from all This should be changed to the ServerRoot/manua l/. The alias provides # the manual, even if you choose to move your DocumentRoot. You may comment # this out if you do not care for the documentation.Alias /manual "/usr/local/apache2/manual"[?25h[?25l Options Indexes FollowSymLinks MultiViews IncludesNoExec AddOutputFilter Includes html AllowOverride None Order allow,deny Allow from all # # ScriptAlias: This controls which directories contain server scripts. # ScriptAliases are essentially the same as Aliases, except that # documents in the realname directory are treated as applications and # run by the server when requested rather than as documents sent to the client. --More--(86%) # The same rules about trailing "/" apply to ScriptAlias directives as to # Alias. # ScriptAlias /cgi-bin/ "/usr/local/apache2/cgi-bin/" # # Additional to mod_cgid.c settings, mod_cgid has Scriptsock --More--(189%) # for setting UNIX socket for communicating with cgid.[?25h[?25l# Additiona l to mod_cgid.c settings, mod_cgid has Scriptsock # for setting UNIX socket for communicating with cgid. ##Scriptsock logs/cgisock ## "/usr/local/apache2/cgi-bin" shoul d be changed to whatever your ScriptAliased # CGI directory exists, if you have that configured.  AllowOverride None[12 ;23H Options None Order allow,deny Allow from all## Redire ct allows you to tell clients about documents which used to exist in # your server's namespace, but do not anymore. This allows you to tell the # clients where to look for the relocated document. --More--(87%) # Example:Redirect permanent /foo http://www.example.com/bar[23;5 3H[?25h[?25l# Example: --More--(189%) # Redirect permanent /foo http://www.example.com/bar # # Directives controlling the display of server-generated directory listings. # # # IndexOptions: Controls the appearance of server-generated directory # listings. # IndexOptions FancyIndexing VersionSort # # AddIcon* directives tell the server which icon to show for different # files or filename extensions. These are only displayed for # FancyIndexed directories. # AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip AddIconByType (TXT,/icons/text.gif) text/* --More--(87%) AddIconByType (IMG,/icons/image2.gif) image/* AddIconByType (SND,/icons/sound2.gif) audio/*[?25h[?25lAddIconByType (IMG,/ --More--(190%)  icons/image2.gif) image/* AddIconByType (SND,/icons/sound2.gif) audio/*AddIconByType (VID,/ic ons/movie.gif) video/*AddIcon /icons/binary.gif .bin .exe[6; 1HAddIcon /icons/binhex.gif .hqx AddIcon /icons/tar.gif .tar AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv AddIcon /icons/compressed.gif .Z .z .tgz .gz .zipAddIcon /icons/a. gif .ps .ai .eps AddIcon /icons/layout.gif .html .shtml .htm .pdf AddIcon /icons/text.gif .txtAddIcon /icons/c.gif .c AddIcon /icons/p.gif .pl .py AddIcon /icons/f.gif .forAddIcon /icons/dvi.gif .dv[17;1 HAddIcon /icons/uuencoded.gif .uu AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl /icons/tex.gif .t exAddIcon /icons/bomb.gif core /icons/back.gif ..[2 --More--(190%) 2;27H /icons/hand.right.gif README[?25h[?25l[27 mAddIcon /icons/back.gif .. AddIcon /icons/hand.right.gif README AddIcon /icons/folder.gif ^^DIRECTORY^^ AddIcon /icons/blank.gif ^^BLANKICON^^ --More--(87%)  # # DefaultIcon is which icon to show for files which do not have an icon # explicitly set. # DefaultIcon /icons/unknown.gif # # AddDescription allows you to place a short description after a file in # server-generated indexes. These are only displayed for FancyIndexed # directories. # Format: AddDescription "description" filename # #AddDescription "GZIP compressed document" .gz #AddDescription "tar archive" .tar #AddDescription "GZIP compressed tar archive" .tgz --More--(190%)  # # ReadmeName is the name of the README file the server will look for by[?25 h[?25l## ReadmeName is the name of the README file the server will l ook for by # default, and append to directory listings. --More--(87%) ## HeaderName is the name of a file which should be prepended to # directory indexes. ReadmeName README.htmlHeaderName HEADER.html#[ 11;1H# IndexIgnore is a set of filenames which directory indexing should ignore # and not include in the listing. Shell-style wildcarding is permitted. IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t[16 ;3HAddEncoding allows you to have certain browsers (Mosaic/X 2.1+) uncom press # information on the fly. Note: Not all browsers support this. # Despite the name similarity, the following Add* directives have nothing --More--(190%) # to do with the FancyIndexing customization directives above. # AddEncoding x-compress Z AddEncoding x-gzip gz tgz[?25h[?25lAddE ncoding x-compress Z AddEncoding x-gzip gz tgz # # DefaultLanguage and AddLanguage allows you to specify the language of # a document. You can then use content negotiation to give a browser a # file in a language the user can understand. # --More--(88%) # Specify a default language. This means that all data # going out without a specific language tag (see below) will # be marked with this one. You probably do NOT want to set # this unless you are sure it is correct for all cases. # # * It is generally better to not mark a page as # * being a certain language than marking it with the wrong # * language! # --More--(191%) # DefaultLanguage nl # # Note 1: The suffix does not have to be the same as the language # keyword --- those with documents in Polish (whose net-standard # language code is pl) may wish to use "AddLanguage pl .po" to # avoid the ambiguity with the common suffix for perl scripts.[?25h[?25l# l anguage code is pl) may wish to use "AddLanguage pl .po" to # avoid the ambiguity with the common suffix for perl scripts. # # Note 2: The example entries below illustrate that in some cases # the two character 'Language' abbreviation is not identical to the two character 'Country' code for its country,E.g. 'Danmark/dk' ver sus 'Danish/da'.Note 3: In the case of 'ltz' we violate the RFC by --More--(88%) using a three char # specifier. There is 'work in progress' to fix this and get # the reference data for rfc1766 cleaned up.Danish (da) - Dutch (nl) - English (en) - Estonian (et) --More--(191%) # French (fr) - German (de) - Greek-Modern (el)Italian (it) - Nor wegian (no) - Norwegian Nynorsk (nn) - Korean (ko) # Portugese (pt) - Luxembourgeois* (ltz) # Spanish (es) - Swedish (sv) - Catalan (ca) - Czech(cz) # Polish (pl) - Brazilian Portuguese (pt-br) - Japanese (ja) # Russian (ru) - Croatian (hr)AddLanguage da .dkAdd Language nl .nlAddLanguage en .en[?25h[?25l AddLanguage nl .nl AddLanguage en .en AddLanguage et .et AddLanguage fr .fr AddLanguage de .de AddLanguage he .he AddLanguage el .el AddLanguage it .it AddLanguage ja .ja AddLanguage pl .po AddLanguage ko .ko --More--(88%) AddLanguage pt .pt --More--(191%) AddLanguage nn .nn AddLanguage no .no AddLanguage pt-br .pt-br AddLanguage ltz .ltz AddLanguage ca .ca AddLanguage es .es AddLanguage sv .se AddLanguage cz .cz AddLanguage ru .ru AddLanguage tw .tw AddLanguage zh-tw .tw[?25h[?25ltw .twzh-tw .twhr .hr ## LanguagePriority allows you to give precedence to some langu ages # in case of a tie during content negotiation. ## Just list the languages in decreasing order of preference. We hav e # more or less alphabetized them here. You probably want to change this. #LanguagePriority en da nl et fr de el it ja ko no pl pt pt-br ltz --More--(191%) ca es sv tw## ForceLanguagePriority allows you to s erve a result page rather than # MULTIPLE CHOICES (Prefer) [in case of a tie] or NOT ACCEPTABLE (Fallback) --More--(88%) # [in case no accepted languages matched the available variants] #ForceLanguagePriority Prefer Fallback#[22;1 H# Specify a default charset for all pages sent out. This is # always a good idea and opens the door for future internationalisation[?25 h[?25l# Specify a default charset for all pages sent out. This is # always a good idea and opens the door for future internationalisation # of your web site, should you ever want it. Specifying it as # a default does little harm; as the standard dictates that a page # is in iso-8859-1 (latin1) unless specified otherwise i.e. you # are merely stating the obvious. There are also some security # reasons in browsers, related to javascript and URL parsing # which encourage you to always set a default char set. # AddDefaultCharset ISO-8859-1 --More--(191%)  # # Commonly used filename extensions to character sets. You probably # want to avoid clashes with the language extensions, unless you # are good at carefully testing your setup after each change. # See ftp://ftp.isi.edu/in-notes/iana/assignments/character-sets for # the official list of charset names and their respective RFCs --More--(89%) # AddCharset ISO-8859-1 .iso8859-1 .latin1 AddCharset ISO-8859-2 .iso8859-2 .latin2 .cen AddCharset ISO-8859-3 .iso8859-3 .latin3 AddCharset ISO-8859-4 .iso8859-4 .latin4 AddCharset ISO-8859-5 .iso8859-5 .latin5 .cyr .iso-ru[?25h[?25lAddCharset ISO-8859-4 .iso8859-4 .latin4AddCharset ISO-8859-5 .iso8859-5 .latin5 .cyr .iso-ruAddCharset ISO-8859-6 .iso8859-6 .latin6 .arb AddCharset ISO-8859-7 .iso8859-7 .latin7 .grkAddChar set ISO-8859-8 .iso8859-8 .latin8 .hebAddCharset ISO-8859-9 .iso --More--(192%) 8859-9 .latin9 .trkAddCharset ISO-2022-JP .iso2022-jp .ji[ 8;1HAddCharset ISO-2022-KR .iso2022-kr .kisAddCharset ISO-2022-CN . iso2022-cn .cis AddCharset Big5 .Big5.big5 # For russian, more than one charset is used (depends on client, mostly): AddCharset WINDOWS-1251 .cp-1251 .win-1251 AddCharset CP866 .cp866AddCharset KOI8-r .koi8-r .koi8 -ruAddCharset KOI8-ru .koi8-uk .uaAddCharset I SO-10646-UCS-2 .ucs2AddCharset ISO-10646-UCS-4 .ucs4[18; 1HAddCharset UTF-8.utf8# The set below does not map to a specif ic (iso) standard # but works on a fairly wide range of browsers. Note that --More--(89%) # capitalization actually matters (it should not, but it # does for some browsers).[?25h[?25l# c apitalization actually matters (it should not, but it --More--(192%) # does for some browsers). # # See ftp://ftp.isi.edu/in-notes/iana/assignments/character-sets # for a list of sorts. But browsers support few. # AddCharset GB2312 .gb2312 .gb AddCharset utf-7.utf7 AddCharset utf-8.utf8 AddCharset big5.big5 .b5 AddCharset EUC-TW .euc-tw AddCharset EUC-JP .euc-jp AddCharset EUC-KR .euc-kr AddCharset shift_jis .sjis # # AddType allows you to add to or override the MIME configuration # file mime.types for specific file types. # AddType application/x-tar .tgz --More--(89%) AddType image/x-icon .ico #[?25h[?25lAddHandler allows you to map certain file ext --More--(192%)  ensions 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 asisFor server-parse d imagemap files:#AddHandler imap-file map # # For type maps (negotiated resources):[?25h[?25l[1;1 H# # For type maps (negotiated resources): # (This is enabled by default to allow the Apache "It Worked" page # to be distributed in multiple languages.) # --More--(192%) AddHandler type-map var --More--(90%) # # 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 # # Action lets you define media types that will execute a script whenever # a matching file is called. This eliminates the need for repeated URL # pathnames for oft-used CGI file processors. # Format: Action media/type /cgi-script/location # Format: Action handler-name /cgi-script/location #[?25h[?25l# Format: Action handler-name /cgi-script/location Customizable error responses come in three flavors: # 1) plain text 2) local redirects 3) external redirects # --More--(193%) # Some examples: #ErrorDocument 500 "The server made a boo boo."ErrorDocument 404 / missing.html --More--(90%) #ErrorDocument 404 "/cgi-bin/missing_handler.pl"ErrorDocument 402 http://www.example.com/subscription_info.html# P utting this all together, we can internationalize error responses. # We use Alias to redirect any /error/HTTP_.html.var response to our collection of by-error message multi-language collections. We use # includes to substitute the appropriate text.You can modify the m essages' appearance without changing any of the # default HTTP_.html.var files by adding the line:[?25h[?25l # You can modify the messages' appearance without changing an y of the # default HTTP_.html.var files by adding the line: --More--(193%) # # Alias /error/include/ "/your/include/path/" # # which allows you to create your own set of files by starting with the # /usr/local/apache2/error/include/ files and copying them to /your/include/path /, # even on a per-VirtualHost basis. The default include files will display # your Apache version number and your ServerAdmin email address regardless # of the setting of ServerSignature. # --More--(90%) # The internationalized error documents require mod_alias, mod_include # and mod_negotiation. To activate them, uncomment the following 30 lines. # Alias /error/ "/usr/local/apache2/error/" # # #AllowOverride None #Options IncludesNoExec #AddOutputFilter Includes html #AddHandler type-map var #Order allow,deny[?25h[?25l# AddHandler type-map var --More--(193%)  Order allow,denyAllow from all # LanguagePriority en de es fr it nl svForceLanguagePriorit y Prefer Fallback # # ErrorDocument 400 /error/HTTP_BAD_REQU EST.html.var # ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var ErrorDo cument 403 /error/HTTP_FORBIDDEN.html.var ErrorDocument 404 /er ror/HTTP_NOT_FOUND.html.varErrorDocument 405 /error/HTTP_METHOD_NOT_ALLOWE D.html.var # ErrorDocument 408 /error/HTTP_REQUEST_TIME_OUT.html.var Er rorDocument 410 /error/HTTP_GONE.html.var# ErrorDocument 411 / --More--(90%) error/HTTP_LENGTH_REQUIRED.html.varErrorDocument 412 /error/HTTP_PRECONDIT ION_FAILED.html.varErrorDocument 413 /error/HTTP_REQUEST_ENTITY_TOO_LARGE. --More--(193%)  html.varErrorDocument 414 /error/HTTP_REQUEST_URI_TOO_LARGE.html.var ErrorDocument 415 /error/HTTP_SERVICE_UNAVAILABLE.html.varErrorDocument 50 0 /error/HTTP_INTERNAL_SERVER_ERROR.html.varErrorDocument 501 /error/HTTP_ NOT_IMPLEMENTED.html.varErrorDocument 502 /error/HTTP_BAD_GATEWAY.html.var ErrorDocument 503 /error/HTTP_SERVICE_UNAVAILABLE.html.var[?25h[?25l[ 27m# ErrorDocument 502 /error/HTTP_BAD_GATEWAY.html.va r # ErrorDocument 503 /error/HTTP_SERVICE_UNAVAILABLE.html.var # ErrorDocument 506 /error/HTTP_VARIANT_ALSO_VARIES.html.var # # The following directives modify normal HTTP response behavior to # handle known problems with browser implementations. # --More--(193%) BrowserMatch "Mozilla/2" nokeepalive BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0 BrowserMatch "RealPlayer 4\.0" force-response-1.0 BrowserMatch "Java/1\.0" force-response-1.0 BrowserMatch "JDK/1\.0" force-response-1.0 --More--(91%)  # # The following directive disables redirects on non-GET requests for # a directory that does not include the trailing slash. This fixes a # problem with Microsoft WebFolders which does not appropriately handle # redirects for folders with DAV methods. # Same deal with Apple's DAV filesystem. # BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-caref @[?25h[?25l# Same deal with Apple's DAV filesystem.[1;41 HBrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-caref ully BrowserMatch "^WebDrive" redirect-carefully BrowserMatch "^WebDAVFS/1.[012]" redirect-carefullyAllow serv --More--(194%)  er status reports generated by mod_status, # with the URL of http://servername/server-status # Change the ".example.com" to match your domain to enable.#[12;2 H## SetHandler server-status[ 14;30H# Order deny,allowDeny from all # Allow from .example.com[ 21;3HAllow remote server configuration reports, with the URL of # http://servername/server-info (requires that mod_info.c be loaded). --More--(91%) # Change the ".example.com" to match your domain to enable.[?25h[?25l # http://servername/server-info (requires that mod_info.c be loaded). # Change the ".example.com" to match your domain to enable. # # # SetHandler server-info # Order deny,allow --More--(194%) # Deny from all # Allow from .example.com # # # Proxy Server directives. Uncomment the following lines to # enable the proxy server: # # #ProxyRequests On # # # Order deny,allow # Deny from all --More--(91%) # Allow from .example.com #[?25h[?25l# Enable/disable the handlin g of HTTP/1.1 "Via:" headers. # ("Full" adds the server version; "Block" removes all outgoing Via: headers) # Set to one of: Off | On | Full | BlockProxyVia On[1 0;1H# --More--(194%) # To enable the cache as well, edit and uncomment the following lines: # (no cacheing without CacheRoot)CacheRoot "/usr/local/ap ache2/proxy" #CacheSize 5CacheGcInterval 4 #CacheMaxExpire 24 #CacheLastModifiedFactor 0.1 #CacheDefaultExpire 1 #NoCache a-domain.com another-domain.edu joes.garage-sale.comIfMod ule> # End of proxy directives.[?25h[?25l# # End of proxy directives. # # Bring in additional module-specific configurations # --More--(91%) Include conf/ssl.conf --More--(194%)  ### Section 3: Virtual Hosts # # VirtualHost: If you want to maintain multiple domains/hostnames on your # machine you can setup VirtualHost containers for them. Most configurations # use only name-based virtual hosts so the server doesn't need to worry about # IP addresses. This is indicated by the asterisks in the directives below. # # Please see the documentation at # # for further details before you try to setup virtual hosts. # # You may use the command line option '-S' to verify your virtual host[?25h [?25lYou may use the command line option '-S' to verify your virtual host # configuration.Use name-based virtual hosting. ##NameVirtualHost *# # VirtualHost example: --More--(92%) # Almost any Apache directive may go into a VirtualHost container. --More--(194%) # The first VirtualHost section is used for requests without a known # server name. ServerAdmi n webmaster@dummy-host.example.comDocumentRoot /www/docs/dummy-ho st.example.com # ServerName dummy-host.example.com # ErrorLog logs/dummy-host.example.com-error_log # CustomLog logs/dummy-host.example.com-access_log common #~[?25h[?25l# ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ --More--(195%) ~ ~ --More--(92%) ~ ~ ~ ~ ~ ~ ~ ~ ~ ~[?25h[?25l[?25h[?25l:[?25hw httpd.com[?25l[?25hnf [?25l"httpd.conf" 1058L, 35271C written[?25h[?25l:[?25hq! [?25l[?1l>[?25h[?1047l[?1048l[barrie@magnolia conf]$ ls highperformance.conf httpd.confLAST20021004 mime.t ypes highperformance-std.conf httpd-std.conf ssl.conf[0 0m httpd.conf magic ssl-std.co nf [barrie@magnolia conf]$ sudocd .. --More--(195%) [barrie@magnolia apache2]$ sudo /usr/local/apache2/bin/apachectl start  Password: Syntax error on line 309 of /usr/local/apache2/conf/httpd.conf: DocumentRoot must be a directory [barrie@magnolia apache2]$ cd /home --More--(92%) [barrie@magnolia /home]$ ls  barrie lost+found [barrie@magnolia /home]$ mksudo mkdir htdocs [barrie@magnolia /home]$ ls barrie htdocs lost+found [barrie@magnolia /home]$ ll total 24 drwx------ 17 barrie barrie 4096 Oct 4 23:24 barrie drwxr-xr-x 2 root root 4096 Oct 4 23:38 htdocs drwx------ 2 root root 16384 Sep 23 05:57 lost+found [barrie@magnolia /home]$ llssudo mkdir htdocslscd /homesudo /usr/local/apa che2/bin/apachectl start httpd: Could not determine the server's fully qualified domain name, using 127.0 .0.1 for ServerName [barrie@magnolia /home]$ echo serservefrnrname --More--(195%) servername: Command not found. [barrie@magnolia /home]$ echo $Servername Servername: Undefined variable. [barrie@magnolia /home]$ domainname (none) [barrie@magnolia /home]$ hostname magnolia --More--(92%) [barrie@magnolia /home]$ cd /etc/host.comfnfdnsdomainname  [barrie@magnolia /home]$ cd etc/etc [barrie@magnolia /etc]$ ls a2ps.cfg iproute2 ppp a2ps-site.cfg isdn printcap adjtime issue printcap.local[00 m alchemist issue.net printcap.old[0 0m aliases kde printconf.loca --More--(195%) l aliases.db kderc profile aliasesLAST20020927 krb5.conf profile.d alternatives krb.conf protocols anacrontab krb.realms pwdb.conf at.deny ksysguarddrc qt.fontguess auto.master ldap.conf radvd.conf auto.misc ld.so.cache rc bashrc ld.so.conf rc0.d cdrecord.conf libuser.conf rc1.d cipe lilo.conf.anaconda rc2.d --More--(93%) CORBA locale rc3.d[00 m cron.d localtime rc4.d cron.daily log.d rc5.d[00 m cron.hourly login.defs rc6.d cron.monthly logrotate.conf rc.d crontab logrotate.d rc.local[00 --More--(196%) m cron.weekly lpd.conf rc.sysinit[ 00m csh.cshrc lpd.perms redhat-release[00 m csh.login ltrace.conf resolv.conf cups lynx.cfg resolv.conf.sv  default lynx.cfg.cs rmt dhcpc lynx.cfg.ja rpc dhcpcd lynx.cfg.sk rpm DIR_COLORS lynx-site.cfg sane.d dumpdates mail screenrc esd.conf mailcap scrollkeeper.conf --More--(93%)  exports mail.rc securetty fam.conf makedev.d security[00 --More--(196%) m fdprm man.config sendmail.cf filesystems midi sensors.conf[0 0m fstab mime-magic services fstab.REVOKE mime-magic.dat sgml gconf mime.types shadow gnome minicom.users shadow- gnome-vfs-mime-magic modules.conf shells gpm-root.conf modules.conf~ skel group motd smrsh group- mtab snmp grub.conf Muttrc sound grub.confLAST20020927 nmh ssh gshadow nscd.conf sudoers gshadow- nsswitch.conf sudoersLAST200209 23 gtk ntp sysconfi g --More--(196%) --More--(93%) gtk-2.0 ntp.conf sysctl.conf[00 m host.conf oaf syslog.conf[00 m hosts openldap termcap hosts.allow opt timidity.cfg[0 0m hosts.deny pam.d updatedb.conf[ 00m hotplug pam_smb.conf updfstab.conf[ 00m htdig.conf pango updfstab.conf. default identd.conf paper.config vfontcap im_palette.pal passwd vfs im_palette-small.pal passwd- warnquota.conf[00 --More--(197%)  m im_palette-tiny.pal passwdLAST20020923 wgetrc imrc passwd.OLD X11 info-dir pbm2ppa.conf xinetd.conf init.d pine.conf xinetd.d[00 m --More--(94%) initlog.conf pine.conf.fixed xml inittab pinforc xpdfrc inputrc pluggerrc yp.conf ioctl.save pnm2ppa.conf ypserv.conf [barrie@magnolia /etc]$ cdls h os*ost* host.conf hosts hosts.allow hosts.deny [barrie@magnolia /etc]$ more host.conf order hosts,bind [barrie@magnolia /etc]$ cd hosts hosts: Not a directory. [barrie@magnolia /etc]$ ls a2ps.cfg iproute2 ppp --More--(197%) a2ps-site.cfg isdn printcap adjtime issue printcap.local[00 m alchemist issue.net printcap.old[0 0m aliases kde printconf.loca l aliases.db kderc profile aliasesLAST20020927 krb5.conf profile.d --More--(94%) alternatives krb.conf protocols anacrontab krb.realms pwdb.conf at.deny ksysguarddrc qt.fontguess auto.master ldap.conf radvd.conf auto.misc ld.so.cache rc bashrc ld.so.conf rc0.d cdrecord.conf libuser.conf rc1.d cipe lilo.conf.anaconda rc2.d CORBA locale rc3.d[00 --More--(197%) m cron.d localtime rc4.d cron.daily log.d rc5.d[00 m cron.hourly login.defs rc6.d cron.monthly logrotate.conf rc.d crontab logrotate.d rc.local[00 m cron.weekly lpd.conf rc.sysinit[ 00m csh.cshrc lpd.perms redhat-release[00 m csh.login ltrace.conf resolv.conf --More--(94%) cups lynx.cfg resolv.conf.sv  default lynx.cfg.cs rmt dhcpc lynx.cfg.ja rpc --More--(197%) dhcpcd lynx.cfg.sk rpm DIR_COLORS lynx-site.cfg sane.d dumpdates mail screenrc esd.conf mailcap scrollkeeper.conf  exports mail.rc securetty fam.conf makedev.d security[00 m fdprm man.config sendmail.cf filesystems midi sensors.conf[0 0m fstab mime-magic services fstab.REVOKE mime-magic.dat sgml gconf mime.types shadow gnome minicom.users shadow- gnome-vfs-mime-magic modules.conf shells gpm-root.conf modules.conf~ skel group motd smrsh --More--(95%) group- mtab snmp --More--(198%) grub.conf Muttrc sound grub.confLAST20020927 nmh ssh gshadow nscd.conf sudoers gshadow- nsswitch.conf sudoersLAST200209 23 gtk ntp sysconfi g gtk-2.0 ntp.conf sysctl.conf[00 m host.conf oaf syslog.conf[00 m hosts openldap termcap hosts.allow opt timidity.cfg[0 0m hosts.deny pam.d updatedb.conf[ 00m --More--(198%) hotplug pam_smb.conf updfstab.conf[ 00m htdig.conf pango updfstab.conf. default identd.conf paper.config vfontcap --More--(95%) im_palette.pal passwd vfs im_palette-small.pal passwd- warnquota.conf[00 m im_palette-tiny.pal passwdLAST20020923 wgetrc imrc passwd.OLD X11 info-dir pbm2ppa.conf xinetd.conf init.d pine.conf xinetd.d[00 m initlog.conf pine.conf.fixed xml inittab pinforc xpdfrc inputrc pluggerrc yp.conf ioctl.save pnm2ppa.conf ypserv.conf [barrie@magnolia /etc]$ pqs --More--(198%) pqs: Command not found. [barrie@magnolia /etc]$ pqswd /etc [barrie@magnolia /etc]$ ls host* host.conf hosts hosts.allow hosts.deny [barrie@magnolia /etc]$ hostname -fdqn hostname: invalid option -- q Usage: hostname [-v] {hostname|-F file} set hostname (from file) domainname [-v] {nisdomain|-F file} set NIS domainname (from file) --More--(95%) hostname [-v] [-d|-f|-s|-a|-i|-y|-n] display formatted name hostname [-v] display hostname hostname -V|--version|-h|--help print info and exit dnsdomainname=hostname -d, {yp,nis,}domainname=hostname -y -s, --short short host name -a, --alias alias names -i, --ip-address addresses for the hostname -f, --fqdn, --long long host name (FQDN) -d, --domain DNS domain name -y, --yp, --nis NIS/YP domainname --More--(199%) -F, --file read hostname or NIS domainname from given file This command can read or set the hostname or the NIS domainname. You can also read the DNS domain or the FQDN (fully qualified domain name). Unless you are using bind or NIS for host lookups you can change the FQDN (Fully Qualified Domain Name) and the DNS domain name (which is part of the FQDN) in the /etc/hosts file. [barrie@magnolia /etc]$ hostname -fdqnqdn hostname: invalid option -- q --More--(96%) Usage: hostname [-v] {hostname|-F file} set hostname (from file) domainname [-v] {nisdomain|-F file} set NIS domainname (from file) hostname [-v] [-d|-f|-s|-a|-i|-y|-n] display formatted name hostname [-v] display hostname hostname -V|--version|-h|--help print info and exit dnsdomainname=hostname -d, {yp,nis,}domainname=hostname -y -s, --short short host name -a, --alias alias names -i, --ip-address addresses for the hostname -f, --fqdn, --long long host name (FQDN) --More--(199%) -d, --domain DNS domain name -y, --yp, --nis NIS/YP domainname -F, --file read hostname or NIS domainname from given file This command can read or set the hostname or the NIS domainname. You can also read the DNS domain or the FQDN (fully qualified domain name). Unless you are using bind or NIS for host lookups you can change the FQDN (Fully Qualified Domain Name) and the DNS domain name (which is part of the FQDN) in the /etc/hosts file. --More--(96%) [barrie@magnolia /etc]$ hostname -i  127.0.0.1 [barrie@magnolia /etc]$ vi hosts [?1048h[?1047h[?1h=[?25h[?25h[?25l"hosts" [readonly] 3L, 156C# Do not remove the following line, or various programs # that require network functionality will fail. 127.0.0.1magnolia localhost.localdomain localhost ~ ~ ~ --More--(199%)  ~ ~ ~ ~ ~ ~ ~ ~ ~ ~  --More--(199%)  ~ --More--(96%) ~ ~ ~ ~ ~ ~ 1,1All[?25h[?25l[2 4;1H:[?25hq! [?25l[?1l>[?25h[?1047l[?1048l[barrie@magnolia /etc]$ sudo via hosts Password: [?1048h[?1047h[?1h=[?25h[?25h[?25l"hosts" 3L, 156C# Do not remove the following line, or various programs --More--(200%) # that require network functionality will fail. 127.0.0.1magnolia localhost.localdomain localhost ~ ~ ~ ~ ~ ~ ~ ~ ~ --More--(97%) ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~[?25h[?25l-- INSERT --[?25h --More--(200%)  [?25l#127.0.0.1 #[?25h[?25l 127.0.0.1 # [?25h[?25l[?25h[?25l-- INSERT --[?25h# 127.0.0.1 magnolia localhost.localdomain localhost[?25l[?25h[ K[?25l[?25h[?25l 127.0.0.1 [?25h[?25l127.0.0.1 [?25h[?25l-- INSERT --[?25h [?25l[?25h[?25l:[?25hq! [?25l[?1l>[?25h[?1047l[?1048l[barrie@magnolia /etc]$ sudo vi hosts [?1048h[?1047h[?1h=[?25h[?25h[?25l"hosts" 3L, 156C# Do not remove the following line, or various programs # that require network functionality will fail. 127.0.0.1magnolia localhost.localdomain localhost ~ ~ --More--(97%) ~ ~ ~ ~ ~ ~ ~ ~ --More--(200%) ~ ~ ~ ~ ~ ~ ~ ~ ~ ~[?25h[?25l:[?25hw hostsLAST20020[?25l[?25h 1004 [?25l"hostsLAST20021004" [New] 3L, 156C written[?25h[?25l-- INSERT --[?25h 127.0.0.1magnolia localhost.localdomain localhost[?25l[?25h[?2 --More--(97%) 5l2[?25h[?25l4[?25h[?25l.[?25h[?25l9[?25h[?25l3[?25h[?25l.[?25h[?25l6[?25h[?25l7 [?25h[?25l.[?25h[?25l6[?25h[?25l5[?25h[?25l[?25h[?25l[4;10 H[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[4; --More--(200%)  6H[?25h[?25l[?25h[?25l[?25h[?25l1[?25h[?25l6[?25h [?25l3[?25h[?25l.[?25h[?25l4[?25h[?25l1[?25h[?25l.[?25h[?25l7[?25h[?25l3[?25h[?2 5l [?25h[?25l[?25h[?25lm[?25h[?25la[?25h[?25lg[?25h[?25ln[?25h[?25lo[?25h[ ?25ll[?25h[?25li[?25h[?25la[?25h[?25l [?25h[?25ll[?25h[?25l[?25h[? 25lm[?25h[?25la[?25h[?25lg[?25h[?25ln[?25h[?25lo[?25h[?25ll[?25h[?25li[?25h[?25l a[?25h[?25l.[?25h[?25lh[?25h[?25la[?25h[?25ly[?25h[?25le[?25h[?25lb[?25h[?25l.[? 25h[?25lo[?25h[?25lr[?25h[?25lg[?25h[?25l.org[?25h[?25l.org[4;46 H[?25h[?25l.org[?25h[?25l.org[?25h[?25l.org[4;4 3H[?25h[?25lt.org[?25h[?25lr.org[?25h[?25le.org[?25h[?25le.org[?25h[?25lt.org[?25h[?25lo.org[?25h[?25lp. org[?25h[?25l.org[?25h[?25l.org[?25h[?25l.org[4;47 H[?25h[?25l.org[?25h[?25l.org[?25h[?25l.org[4;4 --More--(200%)  4H[?25h[?25l.org[?25h[?25lb.org[?25h[?25lr.org[?25h[?25li.org[?25h[?25lg.org[?25h[? 25lh.org[?25h[?25lt.org[?25h[?25lo.org[?25h[?25ln.org[?25h.org[?25l [?25h[?25lm[?25h[?25la[?25h[ ?25lg[?25h[?25ln[?25h[?25lo[?25h[?25ll[?25h[?25li[?25h[?25la[?25h[?25l( insert) --[?25h[?25lINSERT --[?25h[?2 5l[?25h[?25l:[?25hw hosts [?25l"hosts" 4L, 210C written[?25h[?25l:[?25hq! [?25l[?1l>[?25h[?1047l[?1048l[barrie@magnolia /etc]$ sudo vi hostsv hostname -ifqdndqn[3@ls host*pwdqslscd hostsmore host.confls host* cd /etcdnsdomainnamehostname[2@domainname[6@echo $Servername sudo /usr/local/apache2/bin/apachectl start --More--(97%) Password: httpd: Could not determine the server's fully qualified domain name, using 127.0 .0.1 for ServerName httpd (pid 10292) already running [barrie@magnolia /etc]$ ~ps -ef | grep httpd --More--(201%) root 10292 1 0 Oct04 ? 00:00:00 /usr/local/apache2/bin/httpd -k nobody 10293 10292 0 Oct04 ? 00:00:00 /usr/local/apache2/bin/httpd -k nobody 10325 10292 0 Oct04 ? 00:00:00 /usr/local/apache2/bin/httpd -k [barrie@magnolia /etc]$ lynx http://127.0.0.1/ (B)0[?1048h[?1047h[?7h[?1h=Gett ing http://127.0.0.1/ Looking up 127.0.0.1  [26@Making HTTP connection to 0.1 Sending HTTP request. HTTP request sent; w [19@aiting for response /1.1 200 OK Data transfer completetest page test page for apache document root directory  Arrow keys: Up and Down to move. Right to follow a link; Left to go back. H)elp O)ptions P)rint G)o M)ain screen Q)uit /=search [delete]=history list  Commands: Use arrow keys to move, '?' for help, 'q' to quit, '< -' to go back. Are you sure you want to quit? (y)  --More--(201%)  --More--(98%) [?1047l[?1048l [?1l>[barrie@magnolia /etc]$ ls  a2ps.cfg iproute2 printcap[0 0m a2ps-site.cfg isdn printcap.local  adjtime issue printcap.old alchemist issue.net printconf.loca l aliases kde profile aliases.db kderc profile.d aliasesLAST20020927 krb5.conf protocols alternatives krb.conf pwdb.conf anacrontab krb.realms qt.fontguess at.deny ksysguarddrc radvd.conf auto.master ldap.conf rc auto.misc ld.so.cache rc0.d bashrc ld.so.conf rc1.d cdrecord.conf libuser.conf rc2.d --More--(201%) cipe lilo.conf.anaconda rc3.d CORBA locale rc4.d[00 m cron.d localtime rc5.d --More--(98%) cron.daily log.d rc6.d[00 m cron.hourly login.defs rc.d cron.monthly logrotate.conf rc.local[00 m crontab logrotate.d rc.sysinit[ 00m cron.weekly lpd.conf redhat-release  csh.cshrc lpd.perms resolv.conf csh.login ltrace.conf resolv.conf.sv[00 m --More--(201%) cups lynx.cfg rmt default lynx.cfg.cs rpc dhcpc lynx.cfg.ja rpm dhcpcd lynx.cfg.sk sane.d DIR_COLORS lynx-site.cfg screenrc dumpdates mail scrollkeeper.c onf esd.conf mailcap securetty exports mail.rc security fam.conf makedev.d sendmail.cf[00 --More--(99%) m fdprm man.config sensors.conf filesystems midi services fstab mime-magic sgml fstab.REVOKE mime-magic.dat shadow gconf mime.types shadow- gnome minicom.users shells gnome-vfs-mime-magic modules.conf skel gpm-root.conf modules.conf~ smrsh group motd snmp --More--(202%) group- mtab sound grub.conf Muttrc ssh grub.confLAST20020927 nmh sudoers gshadow nscd.conf sudoersLAST200209 23 gshadow- nsswitch.conf sysconfig gtk ntp sysctl.conf  gtk-2.0 ntp.conf syslog.conf[00 m host.conf oaf termcap hosts openldap timidity.cfg[0 --More--(99%) 0m hosts.allow opt updatedb.conf[ 00m hosts.deny pam.d updfstab.conf[ --More--(202%) 00m hostsLAST20021004 pam_smb.conf updfstab.conf.def ault hotplug pango vfontcap  htdig.conf paper.config vfs identd.conf passwd warnquota.conf[00 m im_palette.pal passwd- wgetrc im_palette-small.pal passwdLAST20020923 X11 im_palette-tiny.pal passwd.OLD xinetd.conf imrc pbm2ppa.conf xinetd.d info-dir pine.conf xml init.d pine.conf.fixed xpdfrc initlog.conf pinforc yp.conf inittab pluggerrc ypserv.conf inputrc pnm2ppa.conf ioctl.save ppp --More--(99%) [barrie@magnolia /etc]$ cd ~  --More--(202%) [barrie@magnolia ~]$ ls  apacheinstall lynxinstallrpm nsmail [0 1;34mscripts tmp lynxinstall lynxinstalltar opensslinstall termt ype up2date20020927 [barrie@magnolia ~]$ ll total 1516 -rw-rw-r-- 1 barrie barrie 386068 Oct 5 00:14 apacheinstall -rw-rw-r-- 1 barrie barrie 152306 Sep 29 22:18 lynxinstall -rw-rw-r-- 1 barrie barrie 80366 Sep 30 14:22 lynxinstallrpm -rw-rw-r-- 1 barrie barrie 213379 Sep 30 17:22 lynxinstalltar drwx------ 2 barrie barrie 4096 Sep 27 22:31 nsmail -rw-rw-r-- 1 barrie barrie 621942 Oct 4 21:56 opensslinstall drwxrwxr-x 2 barrie barrie 4096 Sep 30 15:49 scripts -rw-rw-r-- 1 barrie barrie 40191 Sep 27 22:56 termtype drwxrwxr-x 3 barrie barrie 4096 Oct 4 23:13 tmp -rw-rw-r-- 1 barrie barrie 8727 Sep 27 22:17 up2date20020927 [barrie@magnolia ~]$ more apacheinstall Script started on Fri Oct 4 22:00:50 2002 [barrie@magnolia ~]$ ps -ef | grep http --More--(203%) barrie 8570 8551 0 22:01 pts/1 00:00:00 grep http --More--(100%) [barrie@magnolia ~]$ telnet localhost 80  Trying 127.0.0.1... telnet: connect to address 127.0.0.1: Connection refused [barrie@magnolia ~]$ lscd tmp [barrie@magnolia ~/tmp]$ ls httpd-2.0.42.tar.gz lynx-2.8.4-18.i386.rpm op enssl-0.9.6g.tar.gz httpd-2.0.43.tar.gz lynx2.8.4.tar lynx2-8-4 lynx2.8.4.tar.gz [barrie@magnolia ~/tmp]$ ll total 25272 -rw-rw-r-- 1 barrie barrie 4971969 Oct 4 18:52 httpd-2.0.42.tar. gz -rw-rw-r-- 1 barrie barrie 4835188 Oct 4 18:57 httpd-2.0.43.tar. gz --More--(203%) drwxrwxr-x 12 barrie barrie 4096 Jul 18 2001 lynx2-8-4 -rw-rw-r-- 1 barrie barrie 1539499 Sep 30 13:23 lynx-2.8.4-18.i38 6.rpm --More--(100%) -rw-rw-r-- 1 barrie barrie 9738240 Jul 18 2001 lynx2.8.4.tar --More--(0%)  -rw-rw-r-- 1 barrie barrie 2556501 Jul 18 2001 lynx2.8.4.tar.gz[ 00m -rw-r--r-- 1 barrie barrie 2170570 Oct 4 21:23 openssl-0.9.6g.ta r.gz [barrie@magnolia ~/tmp]$ This release fixes a security problem described in CA N- 2002-0840 on cve.mitre.org. It also fixes some bugs from 2.0.42 (and earlier) --More--(203%)  as  well as adding some additional capability. All users of Apache 2.0.42 and pri or  are urged to upgrade as soon as possible. Badly placed ()'s. [barrie@magnolia ~/tmp]$ echo Apache 2.0.43 is the best available version. Apache 2.0.43 is the best available version. [barrie@magnolia ~/tmp]$ gunzipcp http:-2.90/43.43.tar.gz /usr/local cp: cannot stat `http-2.0.43.tar.gz': No such file or directory [barrie@magnolia ~/tmp]$ cp http-2.0.43.tar.gz /usr/local[1@sc[1@uc[1@dc[1@oc[1@ c --More--(100%) Password: cp: cannot stat `http-2.0.43.tar.gz': No such file or directory [barrie@magnolia ~/tmp]$ sudo cp http-2.0.43.tar.gz /usr/locall cp: cannot stat `http-2.0.43.tar.gz': No such file or directory [barrie@magnolia ~/tmp]$ cd /usr/local [barrie@magnolia local]$ ls bin etc include libexec --More--(0%) lynx2.8.4.tar share doc games lib lynx2-8-4 [01; --More--(203%)  34msbin src [barrie@magnolia local]$ cd ~ [barrie@magnolia ~]$ ls apacheinstall lynxinstallrpm nsmail [0 1;34mscripts tmp lynxinstall lynxinstalltar opensslinstall termt ype up2date20020927 [barrie@magnolia ~]$ cd tmp [barrie@magnolia ~/tmp]$ ls --More--(100%) httpd-2.0.42.tar.gz lynx-2.8.4-18.i386.rpm op enssl-0.9.6g.tar.gz httpd-2.0.43.tar.gz lynx2.8.4.tar lynx2-8-4 lynx2.8.4.tar.gz [barrie@magnolia ~/tmp]$ csudo cp httpd.-2.0.43.tar.gz /usr/local --More--(204%) [barrie@magnolia ~/tmp]$ cdc !$  cd /usr/local [barrie@magnolia local]$ ls bin etc httpd-2.0.43.tar.gz lib  lynx2-8-4 sbin src doc games include libexec --More--(0%)  lynx2.8.4.tar share [barrie@magnolia local]$ gunziptar xzf httpd-2.0.43.tar.gz[1@st[1@ut[1@dt[1@ot[1@ t [barrie@magnolia local]$ ls bin etc httpd-2.0.43 inc lude libexec lynx2.8.4.tar share doc games httpd-2.0.43.tar.gz lib --More--(101%) lynx2-8-4 sbin src [barrie@magnolia local]$ cd httpd-2.0.43 --More--(204%) [barrie@magnolia httpd-2.0.43]$ ls  ABOUT_APACHE BuildBin.dsp emacs-style [00 mMakefile.in ROADMAP acconfig.h buildconf include [ 00mMakefile.win server acinclude.m4 CHANGES INSTALL  modules srclib Apache.dsp config.layout InstallBin.dsp NWG NUmakefile support Apache.dsw configure LAYOUT [01; 34mos test apachenw.mcp.zip configure.in libhttpd.dsp  --More--(204%)  README build docs LICENSE [ --More--(101%)  --More--(1%) 00mREADME.platforms [barrie@magnolia httpd-2.0.43]$ more rereREADME Apache HTTP Server What is it? ----------- The Apache HTTP Server is a powerful and flexible HTTP/1.1 compliant web server. Originally designed as a replacement for the NCSA HTTP Server, it has grown to be the most popular web server on the Internet. As a project of the Apache Software Foundation, the developers aim to collaboratively develop and maintain a robust, commercial-grade, standards-based server with freely available source code. --More--(204%) The Latest Version ------------------ Details of the latest version can be found on the Apache HTTP server project page under http://httpd.apache.org/. --More--(101%)  --More--(1%) Documentation ------------- --More--(20%)  The documentation available as of the date of this release is included in HTML format in the docs/manual/ directory. The most up-to-date documentation can be found at http://httpd.apache.org/docs-2.0/. Installation ------------ Please see the file called INSTALL. Platform specific notes can be found in README.platforms. Licensing --------- --More--(204%)  Please see the file called LICENSE. Contacts -------- --More--(101%)  --More--(1%) o If you want to be informed about new code releases, bug fixes, security fixes, general news and information about the Apache server --More--(38%) subscribe to the apache-announce mailing list as described under http://httpd.apache.org/lists.html#http-announce o If you want freely available support for running Apache please join the Apache user community by subscribing to Users Mailing List at http://httpd.apache.org/userslist.html or one of the following USENET newsgroups: comp.infosystems.www.servers.unix comp.infosystems.www.servers.ms-windows Also available at: http://groups.google.com/groups?group=comp.infosystems.www.servers o If you want commercial support for running Apache please contact one of the companies and contractors which are listed at --More--(205%) http://www.apache.org/info/support.cgi o If you have a concrete bug report for Apache please go to the Apache Group Bug Database and submit your report: http://httpd.apache.org/bug_report.html --More--(102%)  --More--(1%) o If you want to participate in actively developing Apache please subscribe to the `dev@httpd.apache.org' mailing list as described at --More--(70%) http://www.apache.org/lists.html#http-dev Acknowledgments ---------------- We wish to acknowledge the following copyrighted works that make up portions of the Apache software: Portions of this software were developed at the National Center for Supercomputing Applications (NCSA) at the University of Illinois at Urbana-Champaign. This software contains code derived from the RSA Data Security Inc. MD5 Message-Digest Algorithm, including various --More--(205%) modifications by Spyglass Inc., Carnegie Mellon University, and Bell Communications Research, Inc (Bellcore). Regular expression support is provided by the PCRE library package, which is open source software, written by Philip Hazel, and copyright by the --More--(102%) University of Cambridge, England. The original software is available from --More--(2%) ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ --More--(97%) Apache 2.0 relies heavily on the use of autoconf and libtool to provide a build environment. [barrie@magnolia httpd-2.0.43]$ morless INSTALL [?1048h[?1047h[?1h= APACHE INSTALLATION OVERVIEW Quick Start - Unix ------------------ For complete installation documentation, see [ht]docs/manual/install.html or http://httpd.apache.org/docs-2.0/install.html $ ./configure --prefix=PREFIX $ make --More--(205%) $ make install $ PREFIX/bin/apachectl start NOTES: * Replace PREFIX with the filesystem path under which Apache should be installed. A typical installation --More--(102%) might use "/usr/local/apache2" for PREFIX (without the --More--(2%) quotes). * If you are building on FreeBSD, be aware that threads will be disabled and the prefork MPM will be used by default, as threads do not work well with Apache on FreeBSD. If you wish to try a threaded Apache on FreeBSD anyway, use INSTALL  "./configure --enable-threads ". * If you are building on Mac OS X (Darwin), make sure to use libtool 1.4.2 or newer. * If you are a developer building Apache directly from CVS, you will need to run ./buildconf before running configure. --More--(205%)  For a short impression of what possibilities you have, here is a typical example which configures Apache for the installation tree /sw/pkg/apache with a particular compiler and flags plus the two additional modules mod_rewrite and mod_speling for later loading through the DSO mechanism: --More--(102%)  $ CC="pgcc" CFLAGS="-O2" \ --More--(2%) ./configure --prefix=/sw/pkg/apache \ --enable-rewrite=shared \ --enable-speling=shared The easiest way to find all of the configuration flags for Apache 2.0 is to run ./configure --help. : Quick Start - Windows --------------------- For complete documentation, see [ht]docs/manual/platform/windows.html or http://httpd.apache.org/docs-2.0/platform/windows.html. --More--(206%) The Apache/Win32 binaries are primarily distributed as a Windows Installer package (.msi), and may be available as a .zip file as well. These packages are named apache-2.0.xx-win32-x86.msi and apache-2.0.xx-win32-x86.zip. Please choose the .msi package if at all possible. If you have unpacked a source distribution (named httpd-2.0-xx.zip, without --More--(103%) any -win32-x86 notation) you must compile the package yourself, see the links mentioned above. Unless you intended to do this, please look again for the --More--(2%) binary package from http://www.apache.org/dist/httpd/binaries/win32/ and install that .msi (or .zip package, if you must.) If you have unpacked this binary distribution from the .zip package, you _must_ edit the conf/httpd.conf file (with notepad or another text editor) to reflect the correct ServerName, Domain, and directory paths. Search for the text "@@" to discover what you must edit. To install and start the service after you have corrected the httpd.conf file, use the command : bin\Apache -k install bin\Apache -k start The .msi package configures the httpd.conf file, and installs and starts the Apache2 service for you. It also installs plenty of useful shortcuts --More--(206%) and the taskbar ApacheMonitor. We strongly encourage you to use it. Postscript ---------- --More--(103%) The Apache HTTP Server group cannot field user's installation questions. There are many valuable forums to help you get started. Please refer your --More--(3%) questions to the appropriate forum, such as the Users Mailing List at http://httpd.apache.org/userslist.html or the usenet newsgroups comp.infosystems.www.servers.unix or comp.infosystems.www.servers.ms-windows. Thanks for using the Apache HTTP Server, version 2.0. The Apache Software Foundation http://www.apache.org/ (END) [?1l>[?1047l[?1048l[barrie@magnolia httpd-2.0.43]$ ./confiigrureure --help ./configure: conftest.sh: No such file or directory --More--(206%) ./configure: conftest.sh: No such file or directory chmod: getting attributes of `conftest.sh': No such file or directory ./configure: conf8593.file: No such file or directory `configure' configures this package to adapt to many kinds of systems. Usage: ./configure [OPTION]... [VAR=VALUE]... --More--(103%) To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. --More--(3%) Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print `checking...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for `--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or `..'] --More--(207%)  Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [/usr/local/apache2] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] --More--(103%) By default, `make install' will install all the files in `/usr/local/apache2/bin', `/usr/local/apache2/lib' etc. You can specify an installation prefix other than `/usr/local/apache2' using `--prefix', --More--(3%) for instance `--prefix=$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --datadir=DIR read-only architecture-independent data [PREFIX/share] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --More--(207%) --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --infodir=DIR info documentation [PREFIX/info] --mandir=DIR man documentation [PREFIX/man] System types: --More--(104%) --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] --target=TARGET configure for building compilers for TARGET [HOST] --More--(3%)  Optional Features: --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-layout=LAYOUT --enable-maintainer-mode Turn on debugging and compile time warnings --enable-modules=MODULE-LIST Modules to enable --enable-mods-shared=MODULE-LIST Shared modules to enable --disable-access host-based access control --More--(207%) --disable-auth user-based access control --enable-auth-anon anonymous user access --enable-auth-dbm DBM-based access databases --enable-auth-digest RFC2617 Digest authentication --enable-isapi isapi extension support --enable-file-cache File cache --enable-echo ECHO server --More--(104%) --disable-charset-lite character set translation --enable-charset-lite character set translation --enable-cache dynamic file caching --More--(4%) --enable-disk-cache disk caching module --enable-mem-cache memory caching module --enable-example example and demo module --enable-ext-filter external filter module --enable-case-filter example uppercase conversion filter --enable-case-filter-in example uppercase conversion input filter --enable-auth-ldap LDAP based authentication --enable-ldap LDAP caching and connection pooling services --disable-include Server Side Includes --enable-deflate Deflate transfer encoding support --disable-log-config log