Created
July 10, 2015 04:33
-
-
Save jamesmontalvo3/639da97c7d9e83cef5f1 to your computer and use it in GitHub Desktop.
non-root user Meza1 install.sh output
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[james@Meza1-2015-07-09 ~]$ cat install.sh | |
#!/bin/bash | |
# | |
# Setup the entire Meza1 platform | |
if [ "$(whoami)" != "root" ]; then | |
echo "Try running this script with sudo: \"sudo bash install.sh\"" | |
exit 1 | |
fi | |
cat << EOM | |
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
# # | |
# Welcome to the Meza1 MediaWiki server install script # | |
# # | |
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
EOM | |
# if the script was called in the form: | |
# bash install <architecture> \ | |
# <phpversion> \ | |
# <mysql_root_pass> \ | |
# <wiki_db_name> \ | |
# <wiki_name> \ | |
# <wiki_admin_name> \ | |
# <wiki_admin_pass> | |
# then set params accordingly (meaning no user interaction required) | |
# | |
# These are out of hand. Change them to GNU-style long-options, see: | |
# http://mywiki.wooledge.org/BashFAQ/035 | |
if [ ! -z "$1" ]; then | |
architecture="$1" | |
fi | |
if [ ! -z "$2" ]; then | |
phpversion="$2" | |
fi | |
if [ ! -z "$3" ]; then | |
mysql_root_pass="$3" | |
fi | |
if [ ! -z "$4" ]; then | |
wiki_db_name="$4" | |
fi | |
if [ ! -z "$5" ]; then | |
wiki_name="$5" | |
fi | |
if [ ! -z "$6" ]; then | |
wiki_admin_name="$6" | |
fi | |
if [ ! -z "$7" ]; then | |
wiki_admin_pass="$7" | |
fi | |
if [ ! -z "$8" ]; then | |
git_branch="$8" | |
fi | |
# Force user to pick an architecture: 32 or 64 bit | |
while [ "$architecture" != "32" ] && [ "$architecture" != "64" ] | |
do | |
echo -e "\nWhich architecture are you using? Type 32 or 64 and press [ENTER]: " | |
read architecture | |
done | |
# Prompt user for PHP version | |
while [ -z "$phpversion" ] | |
do | |
echo -e "\nVisit http://php.net/downloads.php for version numbers" | |
echo -e "Enter version of PHP you would like (such as 5.4.42) and press [ENTER]: " | |
read phpversion | |
done | |
while [ -z "$mysql_root_pass" ] | |
do | |
echo -e "\nEnter MySQL root password and press [ENTER]: " | |
read -s mysql_root_pass | |
done | |
while [ -z "$wiki_db_name" ] | |
do | |
echo -e "\nEnter desired name of your wiki database and press [ENTER]: " | |
read wiki_db_name | |
done | |
while [ -z "$wiki_name" ] | |
do | |
echo -e "\nEnter desired name of your wiki and press [ENTER]: " | |
read wiki_name | |
done | |
while [ -z "$wiki_admin_name" ] | |
do | |
echo -e "\nEnter desired administrator account username and press [ENTER]: " | |
read wiki_admin_name | |
done | |
while [ -z "$wiki_admin_pass" ] | |
do | |
echo -e "\nEnter password you would like for your wiki administrator account and press [ENTER]: " | |
read -s wiki_admin_pass | |
done | |
while [ -z "$git_branch" ] | |
do | |
echo -e "\nEnter git branch of Meza1 you want to use (generally this is \"master\") [ENTER]: " | |
read git_branch | |
done | |
# Check if git installed, and install it if required | |
if ! hash git 2>/dev/null; then | |
echo "************ git not installed, installing ************" | |
yum install git -y | |
fi | |
# if no sources directory, create it | |
if [ ! -d ~/sources ]; then | |
mkdir ~/sources | |
fi | |
# function to install Meza1 via git | |
install_via_git() | |
{ | |
cd ~/sources | |
git clone https://github.com/enterprisemediawiki/Meza1 meza1 | |
cd meza1 | |
git checkout "$git_branch" | |
} | |
# no meza1 directory | |
if [ ! -d ~/sources/meza1 ]; then | |
install_via_git | |
# meza1 exists, but is not a git repo (hold over from older versions of meza1) | |
elif [ ! -d ~/sources/meza1/.git ]; then | |
rm -rf ~/sources/meza1 | |
install_via_git | |
# meza1 exists and is a git repo: checkout latest branch | |
else | |
cd ~/sources/meza1 | |
git fetch origin | |
git checkout "$git_branch" | |
fi | |
cd ~/sources/meza1/client_files | |
cat << EOM | |
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
# # | |
# Installing many, many things via yum (yums.sh) # | |
# # | |
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
EOM | |
bash yums.sh "$architecture" || exit 1 | |
cat << EOM | |
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
# # | |
# Installing apache from source (apache.sh) # | |
# # | |
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
EOM | |
bash apache.sh || exit 1 | |
cat << EOM | |
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
# # | |
# Installing PHP from source (php.sh) # | |
# # | |
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
EOM | |
bash php.sh "$phpversion" || exit 1 | |
# add PHP to path accessible at this parent level | |
# this ain't cutting it. Try symlink in php.sh source /etc/profile.d/php.sh # allow usage of php command? | |
cat << EOM | |
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
# # | |
# Installing MySQL from MySQL .rpm (mysql.sh) # | |
# # | |
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
EOM | |
bash mysql.sh "$mysql_root_pass" || exit 1 | |
cat << EOM | |
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
# # | |
# Installing MediaWiki from tarball (mediawiki-quick.sh) # | |
# # | |
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
EOM | |
# bash mediawiki-quick.sh <mysql pass> <wiki db name> <wiki name> <wiki admin name> <wiki admin pass> | |
bash mediawiki-quick.sh "$mysql_root_pass" "$wiki_db_name" "$wiki_name" "$wiki_admin_name" "$wiki_admin_pass" || exit 1 | |
cat << EOM | |
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
# # | |
# Installing base MW extensions (extensions.sh) # | |
# # | |
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
EOM | |
bash extensions.sh || exit 1 | |
cat << EOM | |
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
# # | |
# Installing VisualEditor (VE.sh) # | |
# # | |
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
EOM | |
bash VE.sh || exit 1 | |
# Display Most Plusquamperfekt Wiki Pigeon of Victory | |
cat ~/sources/meza1/client_files/pigeon.txt | |
[james@Meza1-2015-07-09 ~]$ sudo bash install.sh | |
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
# # | |
# Welcome to the Meza1 MediaWiki server install script # | |
# # | |
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
Which architecture are you using? Type 32 or 64 and press [ENTER]: | |
64 | |
Visit http://php.net/downloads.php for version numbers | |
Enter version of PHP you would like (such as 5.4.42) and press [ENTER]: | |
5.4.42 | |
Enter MySQL root password and press [ENTER]: | |
Enter desired name of your wiki database and press [ENTER]: | |
wiki | |
Enter desired name of your wiki and press [ENTER]: | |
Test Wiki | |
Enter desired administrator account username and press [ENTER]: | |
James | |
Enter password you would like for your wiki administrator account and press [ENTER]: | |
Enter git branch of Meza1 you want to use (generally this is "master") [ENTER]: | |
script-titles | |
************ git not installed, installing ************ | |
Loaded plugins: fastestmirror | |
Setting up Install Process | |
Loading mirror speeds from cached hostfile | |
* base: mirror.umd.edu | |
* extras: mirrors.advancedhosters.com | |
* updates: mirror.cs.vt.edu | |
base | 3.7 kB 00:00 | |
extras | 3.4 kB 00:00 | |
updates | 3.4 kB 00:00 | |
updates/primary_db | 3.9 MB 00:25 | |
Resolving Dependencies | |
--> Running transaction check | |
---> Package git.x86_64 0:1.7.1-3.el6_4.1 will be installed | |
--> Processing Dependency: perl-Git = 1.7.1-3.el6_4.1 for package: git-1.7.1-3.el6_4.1.x86_64 | |
--> Processing Dependency: perl >= 5.006 for package: git-1.7.1-3.el6_4.1.x86_64 | |
--> Processing Dependency: rsync for package: git-1.7.1-3.el6_4.1.x86_64 | |
--> Processing Dependency: perl(warnings) for package: git-1.7.1-3.el6_4.1.x86_64 | |
--> Processing Dependency: perl(vars) for package: git-1.7.1-3.el6_4.1.x86_64 | |
--> Processing Dependency: perl(strict) for package: git-1.7.1-3.el6_4.1.x86_64 | |
--> Processing Dependency: perl(lib) for package: git-1.7.1-3.el6_4.1.x86_64 | |
--> Processing Dependency: perl(Git) for package: git-1.7.1-3.el6_4.1.x86_64 | |
--> Processing Dependency: perl(Getopt::Long) for package: git-1.7.1-3.el6_4.1.x86_64 | |
--> Processing Dependency: perl(File::Spec) for package: git-1.7.1-3.el6_4.1.x86_64 | |
--> Processing Dependency: perl(File::Find) for package: git-1.7.1-3.el6_4.1.x86_64 | |
--> Processing Dependency: perl(File::Basename) for package: git-1.7.1-3.el6_4.1.x86_64 | |
--> Processing Dependency: perl(Exporter) for package: git-1.7.1-3.el6_4.1.x86_64 | |
--> Processing Dependency: perl(Error) for package: git-1.7.1-3.el6_4.1.x86_64 | |
--> Processing Dependency: perl(Cwd) for package: git-1.7.1-3.el6_4.1.x86_64 | |
--> Processing Dependency: /usr/bin/perl for package: git-1.7.1-3.el6_4.1.x86_64 | |
--> Running transaction check | |
---> Package perl.x86_64 4:5.10.1-136.el6_6.1 will be installed | |
--> Processing Dependency: perl-libs = 4:5.10.1-136.el6_6.1 for package: 4:perl-5.10.1-136.el6_6.1.x86_64 | |
--> Processing Dependency: perl-libs for package: 4:perl-5.10.1-136.el6_6.1.x86_64 | |
--> Processing Dependency: perl(version) for package: 4:perl-5.10.1-136.el6_6.1.x86_64 | |
--> Processing Dependency: perl(Pod::Simple) for package: 4:perl-5.10.1-136.el6_6.1.x86_64 | |
--> Processing Dependency: perl(Module::Pluggable) for package: 4:perl-5.10.1-136.el6_6.1.x86_64 | |
--> Processing Dependency: libperl.so()(64bit) for package: 4:perl-5.10.1-136.el6_6.1.x86_64 | |
---> Package perl-Error.noarch 1:0.17015-4.el6 will be installed | |
---> Package perl-Git.noarch 0:1.7.1-3.el6_4.1 will be installed | |
---> Package rsync.x86_64 0:3.0.6-12.el6 will be installed | |
--> Running transaction check | |
---> Package perl-Module-Pluggable.x86_64 1:3.90-136.el6_6.1 will be installed | |
---> Package perl-Pod-Simple.x86_64 1:3.13-136.el6_6.1 will be installed | |
--> Processing Dependency: perl(Pod::Escapes) >= 1.04 for package: 1:perl-Pod-Simple-3.13-136.el6_6.1.x86_64 | |
---> Package perl-libs.x86_64 4:5.10.1-136.el6_6.1 will be installed | |
---> Package perl-version.x86_64 3:0.77-136.el6_6.1 will be installed | |
--> Running transaction check | |
---> Package perl-Pod-Escapes.x86_64 1:1.04-136.el6_6.1 will be installed | |
--> Finished Dependency Resolution | |
Dependencies Resolved | |
================================================================================ | |
Package Arch Version Repository Size | |
================================================================================ | |
Installing: | |
git x86_64 1.7.1-3.el6_4.1 base 4.6 M | |
Installing for dependencies: | |
perl x86_64 4:5.10.1-136.el6_6.1 updates 10 M | |
perl-Error noarch 1:0.17015-4.el6 base 29 k | |
perl-Git noarch 1.7.1-3.el6_4.1 base 28 k | |
perl-Module-Pluggable x86_64 1:3.90-136.el6_6.1 updates 40 k | |
perl-Pod-Escapes x86_64 1:1.04-136.el6_6.1 updates 32 k | |
perl-Pod-Simple x86_64 1:3.13-136.el6_6.1 updates 212 k | |
perl-libs x86_64 4:5.10.1-136.el6_6.1 updates 578 k | |
perl-version x86_64 3:0.77-136.el6_6.1 updates 51 k | |
rsync x86_64 3.0.6-12.el6 base 335 k | |
Transaction Summary | |
================================================================================ | |
Install 10 Package(s) | |
Total download size: 16 M | |
Installed size: 51 M | |
Downloading Packages: | |
(1/10): git-1.7.1-3.el6_4.1.x86_64.rpm | 4.6 MB 00:00 | |
(2/10): perl-5.10.1-136.el6_6.1.x86_64.rpm | 10 MB 01:11 | |
(3/10): perl-Error-0.17015-4.el6.noarch.rpm | 29 kB 00:00 | |
(4/10): perl-Git-1.7.1-3.el6_4.1.noarch.rpm | 28 kB 00:00 | |
(5/10): perl-Module-Pluggable-3.90-136.el6_6.1.x86_64.rp | 40 kB 00:00 | |
(6/10): perl-Pod-Escapes-1.04-136.el6_6.1.x86_64.rpm | 32 kB 00:00 | |
(7/10): perl-Pod-Simple-3.13-136.el6_6.1.x86_64.rpm | 212 kB 00:00 | |
(8/10): perl-libs-5.10.1-136.el6_6.1.x86_64.rpm | 578 kB 00:04 | |
(9/10): perl-version-0.77-136.el6_6.1.x86_64.rpm | 51 kB 00:00 | |
(10/10): rsync-3.0.6-12.el6.x86_64.rpm | 335 kB 00:00 | |
-------------------------------------------------------------------------------- | |
Total 213 kB/s | 16 MB 01:17 | |
Running rpm_check_debug | |
Running Transaction Test | |
Transaction Test Succeeded | |
Running Transaction | |
Installing : 1:perl-Pod-Escapes-1.04-136.el6_6.1.x86_64 1/10 | |
Installing : 4:perl-libs-5.10.1-136.el6_6.1.x86_64 2/10 | |
Installing : 1:perl-Module-Pluggable-3.90-136.el6_6.1.x86_64 3/10 | |
Installing : 1:perl-Pod-Simple-3.13-136.el6_6.1.x86_64 4/10 | |
Installing : 3:perl-version-0.77-136.el6_6.1.x86_64 5/10 | |
Installing : 4:perl-5.10.1-136.el6_6.1.x86_64 6/10 | |
Installing : 1:perl-Error-0.17015-4.el6.noarch 7/10 | |
Installing : rsync-3.0.6-12.el6.x86_64 8/10 | |
Installing : perl-Git-1.7.1-3.el6_4.1.noarch 9/10 | |
Installing : git-1.7.1-3.el6_4.1.x86_64 10/10 | |
Verifying : 1:perl-Error-0.17015-4.el6.noarch 1/10 | |
Verifying : 3:perl-version-0.77-136.el6_6.1.x86_64 2/10 | |
Verifying : perl-Git-1.7.1-3.el6_4.1.noarch 3/10 | |
Verifying : 1:perl-Pod-Simple-3.13-136.el6_6.1.x86_64 4/10 | |
Verifying : rsync-3.0.6-12.el6.x86_64 5/10 | |
Verifying : 4:perl-5.10.1-136.el6_6.1.x86_64 6/10 | |
Verifying : 4:perl-libs-5.10.1-136.el6_6.1.x86_64 7/10 | |
Verifying : git-1.7.1-3.el6_4.1.x86_64 8/10 | |
Verifying : 1:perl-Module-Pluggable-3.90-136.el6_6.1.x86_64 9/10 | |
Verifying : 1:perl-Pod-Escapes-1.04-136.el6_6.1.x86_64 10/10 | |
Installed: | |
git.x86_64 0:1.7.1-3.el6_4.1 | |
Dependency Installed: | |
perl.x86_64 4:5.10.1-136.el6_6.1 | |
perl-Error.noarch 1:0.17015-4.el6 | |
perl-Git.noarch 0:1.7.1-3.el6_4.1 | |
perl-Module-Pluggable.x86_64 1:3.90-136.el6_6.1 | |
perl-Pod-Escapes.x86_64 1:1.04-136.el6_6.1 | |
perl-Pod-Simple.x86_64 1:3.13-136.el6_6.1 | |
perl-libs.x86_64 4:5.10.1-136.el6_6.1 | |
perl-version.x86_64 3:0.77-136.el6_6.1 | |
rsync.x86_64 0:3.0.6-12.el6 | |
Complete! | |
Initialized empty Git repository in /root/sources/meza1/.git/ | |
remote: Counting objects: 689, done. | |
remote: Compressing objects: 100% (85/85), done. | |
remote: Total 689 (delta 50), reused 0 (delta 0), pack-reused 604 | |
Receiving objects: 100% (689/689), 148.52 KiB, done. | |
Resolving deltas: 100% (430/430), done. | |
Branch script-titles set up to track remote branch script-titles from origin. | |
Switched to a new branch 'script-titles' | |
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
# # | |
# Installing many, many things via yum (yums.sh) # | |
# # | |
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
Downloading RPM for 64-bit | |
--2015-07-09 23:37:47-- http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm | |
Resolving pkgs.repoforge.org... 78.46.17.228 | |
Connecting to pkgs.repoforge.org|78.46.17.228|:80... connected. | |
HTTP request sent, awaiting response... 302 Found | |
Location: http://rpmforge.sw.be/redhat/el6/en/x86_64/rpmforge/RPMS/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm [following] | |
--2015-07-09 23:37:47-- http://rpmforge.sw.be/redhat/el6/en/x86_64/rpmforge/RPMS/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm | |
Resolving rpmforge.sw.be... 78.46.17.228 | |
Connecting to rpmforge.sw.be|78.46.17.228|:80... connected. | |
HTTP request sent, awaiting response... 301 Moved Permanently | |
Location: http://tree.repoforge.org/redhat/el6/en/x86_64/rpmforge/RPMS/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm [following] | |
--2015-07-09 23:37:48-- http://tree.repoforge.org/redhat/el6/en/x86_64/rpmforge/RPMS/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm | |
Resolving tree.repoforge.org... 78.46.17.228 | |
Connecting to tree.repoforge.org|78.46.17.228|:80... connected. | |
HTTP request sent, awaiting response... 301 Moved Permanently | |
Location: http://apt.sw.be/redhat/el6/en/x86_64/rpmforge/RPMS/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm [following] | |
--2015-07-09 23:37:48-- http://apt.sw.be/redhat/el6/en/x86_64/rpmforge/RPMS/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm | |
Resolving apt.sw.be... 193.1.193.67 | |
Connecting to apt.sw.be|193.1.193.67|:80... connected. | |
HTTP request sent, awaiting response... 200 OK | |
Length: 12640 (12K) [application/x-redhat-package-manager] | |
Saving to: “rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm” | |
100%[======================================>] 12,640 75.5K/s in 0.2s | |
2015-07-09 23:37:48 (75.5 KB/s) - “rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm” saved [12640/12640] | |
Loaded plugins: fastestmirror | |
Setting up Update Process | |
Loading mirror speeds from cached hostfile | |
* base: mirror.umd.edu | |
* extras: mirrors.advancedhosters.com | |
* updates: mirror.cs.vt.edu | |
Resolving Dependencies | |
--> Running transaction check | |
---> Package ca-certificates.noarch 0:2014.1.98-65.1.el6 will be updated | |
---> Package ca-certificates.noarch 0:2015.2.4-65.0.1.el6_6 will be an update | |
---> Package db4.x86_64 0:4.7.25-18.el6_4 will be updated | |
---> Package db4.x86_64 0:4.7.25-19.el6_6 will be an update | |
---> Package db4-utils.x86_64 0:4.7.25-18.el6_4 will be updated | |
---> Package db4-utils.x86_64 0:4.7.25-19.el6_6 will be an update | |
---> Package dbus-libs.x86_64 1:1.2.24-7.el6_3 will be updated | |
---> Package dbus-libs.x86_64 1:1.2.24-8.el6_6 will be an update | |
---> Package device-mapper.x86_64 0:1.02.90-2.el6_6.1 will be updated | |
---> Package device-mapper.x86_64 0:1.02.90-2.el6_6.3 will be an update | |
---> Package device-mapper-event.x86_64 0:1.02.90-2.el6_6.1 will be updated | |
---> Package device-mapper-event.x86_64 0:1.02.90-2.el6_6.3 will be an update | |
---> Package device-mapper-event-libs.x86_64 0:1.02.90-2.el6_6.1 will be updated | |
---> Package device-mapper-event-libs.x86_64 0:1.02.90-2.el6_6.3 will be an update | |
---> Package device-mapper-libs.x86_64 0:1.02.90-2.el6_6.1 will be updated | |
---> Package device-mapper-libs.x86_64 0:1.02.90-2.el6_6.3 will be an update | |
---> Package dracut.noarch 0:004-356.el6_6.1 will be updated | |
---> Package dracut.noarch 0:004-356.el6_6.2 will be an update | |
---> Package dracut-kernel.noarch 0:004-356.el6_6.1 will be updated | |
---> Package dracut-kernel.noarch 0:004-356.el6_6.2 will be an update | |
---> Package glibc.x86_64 0:2.12-1.149.el6_6.7 will be updated | |
---> Package glibc.x86_64 0:2.12-1.149.el6_6.9 will be an update | |
---> Package glibc-common.x86_64 0:2.12-1.149.el6_6.7 will be updated | |
---> Package glibc-common.x86_64 0:2.12-1.149.el6_6.9 will be an update | |
---> Package kernel.x86_64 0:2.6.32-504.23.4.el6 will be installed | |
---> Package kernel-firmware.noarch 0:2.6.32-504.12.2.el6 will be updated | |
---> Package kernel-firmware.noarch 0:2.6.32-504.23.4.el6 will be an update | |
---> Package lvm2.x86_64 0:2.02.111-2.el6_6.1 will be updated | |
---> Package lvm2.x86_64 0:2.02.111-2.el6_6.3 will be an update | |
---> Package lvm2-libs.x86_64 0:2.02.111-2.el6_6.1 will be updated | |
---> Package lvm2-libs.x86_64 0:2.02.111-2.el6_6.3 will be an update | |
---> Package mysql-libs.x86_64 0:5.1.73-3.el6_5 will be updated | |
---> Package mysql-libs.x86_64 0:5.1.73-5.el6_6 will be an update | |
---> Package nspr.x86_64 0:4.10.6-1.el6_5 will be updated | |
---> Package nspr.x86_64 0:4.10.8-1.el6_6 will be an update | |
---> Package nss.x86_64 0:3.16.2.3-3.el6_6 will be updated | |
---> Package nss.x86_64 0:3.19.1-3.el6_6 will be an update | |
---> Package nss-sysinit.x86_64 0:3.16.2.3-3.el6_6 will be updated | |
---> Package nss-sysinit.x86_64 0:3.19.1-3.el6_6 will be an update | |
---> Package nss-tools.x86_64 0:3.16.2.3-3.el6_6 will be updated | |
---> Package nss-tools.x86_64 0:3.19.1-3.el6_6 will be an update | |
---> Package nss-util.x86_64 0:3.16.2.3-2.el6_6 will be updated | |
---> Package nss-util.x86_64 0:3.19.1-1.el6_6 will be an update | |
---> Package openssl.x86_64 0:1.0.1e-30.el6.8 will be updated | |
---> Package openssl.x86_64 0:1.0.1e-30.el6.11 will be an update | |
---> Package selinux-policy.noarch 0:3.7.19-260.el6_6.2 will be updated | |
---> Package selinux-policy.noarch 0:3.7.19-260.el6_6.5 will be an update | |
---> Package selinux-policy-targeted.noarch 0:3.7.19-260.el6_6.2 will be updated | |
---> Package selinux-policy-targeted.noarch 0:3.7.19-260.el6_6.5 will be an update | |
---> Package tzdata.noarch 0:2015c-2.el6 will be updated | |
---> Package tzdata.noarch 0:2015e-1.el6 will be an update | |
--> Finished Dependency Resolution | |
--> Running transaction check | |
---> Package kernel.x86_64 0:2.6.32-431.1.2.0.1.el6 will be erased | |
--> Finished Dependency Resolution | |
Dependencies Resolved | |
================================================================================ | |
Package Arch Version Repository Size | |
================================================================================ | |
Installing: | |
kernel x86_64 2.6.32-504.23.4.el6 updates 29 M | |
Updating: | |
ca-certificates noarch 2015.2.4-65.0.1.el6_6 updates 1.3 M | |
db4 x86_64 4.7.25-19.el6_6 updates 563 k | |
db4-utils x86_64 4.7.25-19.el6_6 updates 130 k | |
dbus-libs x86_64 1:1.2.24-8.el6_6 updates 127 k | |
device-mapper x86_64 1.02.90-2.el6_6.3 updates 174 k | |
device-mapper-event x86_64 1.02.90-2.el6_6.3 updates 122 k | |
device-mapper-event-libs x86_64 1.02.90-2.el6_6.3 updates 116 k | |
device-mapper-libs x86_64 1.02.90-2.el6_6.3 updates 219 k | |
dracut noarch 004-356.el6_6.2 updates 123 k | |
dracut-kernel noarch 004-356.el6_6.2 updates 25 k | |
glibc x86_64 2.12-1.149.el6_6.9 updates 3.8 M | |
glibc-common x86_64 2.12-1.149.el6_6.9 updates 14 M | |
kernel-firmware noarch 2.6.32-504.23.4.el6 updates 14 M | |
lvm2 x86_64 2.02.111-2.el6_6.3 updates 817 k | |
lvm2-libs x86_64 2.02.111-2.el6_6.3 updates 901 k | |
mysql-libs x86_64 5.1.73-5.el6_6 updates 1.2 M | |
nspr x86_64 4.10.8-1.el6_6 updates 113 k | |
nss x86_64 3.19.1-3.el6_6 updates 856 k | |
nss-sysinit x86_64 3.19.1-3.el6_6 updates 46 k | |
nss-tools x86_64 3.19.1-3.el6_6 updates 433 k | |
nss-util x86_64 3.19.1-1.el6_6 updates 66 k | |
openssl x86_64 1.0.1e-30.el6.11 updates 1.5 M | |
selinux-policy noarch 3.7.19-260.el6_6.5 updates 864 k | |
selinux-policy-targeted noarch 3.7.19-260.el6_6.5 updates 3.0 M | |
tzdata noarch 2015e-1.el6 updates 442 k | |
Removing: | |
kernel x86_64 2.6.32-431.1.2.0.1.el6 @updates 121 M | |
Transaction Summary | |
================================================================================ | |
Install 1 Package(s) | |
Upgrade 25 Package(s) | |
Remove 1 Package(s) | |
Total download size: 75 M | |
Downloading Packages: | |
(1/26): ca-certificates-2015.2.4-65.0.1.el6_6.noarch.rpm | 1.3 MB 00:08 | |
(2/26): db4-4.7.25-19.el6_6.x86_64.rpm | 563 kB 00:02 | |
(3/26): db4-utils-4.7.25-19.el6_6.x86_64.rpm | 130 kB 00:00 | |
(4/26): dbus-libs-1.2.24-8.el6_6.x86_64.rpm | 127 kB 00:00 | |
(5/26): device-mapper-1.02.90-2.el6_6.3.x86_64.rpm | 174 kB 00:00 | |
(6/26): device-mapper-event-1.02.90-2.el6_6.3.x86_64.rpm | 122 kB 00:00 | |
(7/26): device-mapper-event-libs-1.02.90-2.el6_6.3.x86_6 | 116 kB 00:00 | |
(8/26): device-mapper-libs-1.02.90-2.el6_6.3.x86_64.rpm | 219 kB 00:01 | |
(9/26): dracut-004-356.el6_6.2.noarch.rpm | 123 kB 00:00 | |
(10/26): dracut-kernel-004-356.el6_6.2.noarch.rpm | 25 kB 00:00 | |
(11/26): glibc-2.12-1.149.el6_6.9.x86_64.rpm | 3.8 MB 00:23 | |
(12/26): glibc-common-2.12-1.149.el6_6.9.x86_64.rpm | 14 MB 01:15 | |
(13/26): kernel-2.6.32-504.23.4.el6.x86_64.rpm | 29 MB 03:08 | |
(14/26): kernel-firmware-2.6.32-504.23.4.el6.noarch.rpm | 14 MB 01:39 | |
(15/26): lvm2-2.02.111-2.el6_6.3.x86_64.rpm | 817 kB 00:03 | |
(16/26): lvm2-libs-2.02.111-2.el6_6.3.x86_64.rpm | 901 kB 00:07 | |
(17/26): mysql-libs-5.1.73-5.el6_6.x86_64.rpm | 1.2 MB 00:06 | |
(18/26): nspr-4.10.8-1.el6_6.x86_64.rpm | 113 kB 00:00 | |
(19/26): nss-3.19.1-3.el6_6.x86_64.rpm | 856 kB 00:06 | |
(20/26): nss-sysinit-3.19.1-3.el6_6.x86_64.rpm | 46 kB 00:00 | |
(21/26): nss-tools-3.19.1-3.el6_6.x86_64.rpm | 433 kB 00:03 | |
(22/26): nss-util-3.19.1-1.el6_6.x86_64.rpm | 66 kB 00:00 | |
(23/26): openssl-1.0.1e-30.el6.11.x86_64.rpm | 1.5 MB 00:10 | |
(24/26): selinux-policy-3.7.19-260.el6_6.5.noarch.rpm | 864 kB 00:03 | |
(25/26): selinux-policy-targeted-3.7.19-260.el6_6.5.noar | 3.0 MB 00:17 | |
(26/26): tzdata-2015e-1.el6.noarch.rpm | 442 kB 00:02 | |
-------------------------------------------------------------------------------- | |
Total 163 kB/s | 75 MB 07:47 | |
Running rpm_check_debug | |
Running Transaction Test | |
Transaction Test Succeeded | |
Running Transaction | |
Updating : tzdata-2015e-1.el6.noarch 1/52 | |
Updating : glibc-common-2.12-1.149.el6_6.9.x86_64 2/52 | |
Updating : glibc-2.12-1.149.el6_6.9.x86_64 3/52 | |
Updating : device-mapper-libs-1.02.90-2.el6_6.3.x86_64 4/52 | |
Updating : device-mapper-1.02.90-2.el6_6.3.x86_64 5/52 | |
Updating : nspr-4.10.8-1.el6_6.x86_64 6/52 | |
Updating : nss-util-3.19.1-1.el6_6.x86_64 7/52 | |
Updating : device-mapper-event-libs-1.02.90-2.el6_6.3.x86_64 8/52 | |
Updating : nss-3.19.1-3.el6_6.x86_64 9/52 | |
Updating : nss-sysinit-3.19.1-3.el6_6.x86_64 10/52 | |
Updating : device-mapper-event-1.02.90-2.el6_6.3.x86_64 11/52 | |
Updating : lvm2-libs-2.02.111-2.el6_6.3.x86_64 12/52 | |
Updating : db4-4.7.25-19.el6_6.x86_64 13/52 | |
Updating : dracut-004-356.el6_6.2.noarch 14/52 | |
Updating : dracut-kernel-004-356.el6_6.2.noarch 15/52 | |
Updating : ca-certificates-2015.2.4-65.0.1.el6_6.noarch 16/52 | |
Updating : openssl-1.0.1e-30.el6.11.x86_64 17/52 | |
Updating : kernel-firmware-2.6.32-504.23.4.el6.noarch 18/52 | |
Updating : selinux-policy-3.7.19-260.el6_6.5.noarch 19/52 | |
Updating : selinux-policy-targeted-3.7.19-260.el6_6.5.noarch 20/52 | |
Installing : kernel-2.6.32-504.23.4.el6.x86_64 21/52 | |
grubby fatal error: unable to find a suitable template | |
Updating : mysql-libs-5.1.73-5.el6_6.x86_64 22/52 | |
Updating : db4-utils-4.7.25-19.el6_6.x86_64 23/52 | |
Updating : lvm2-2.02.111-2.el6_6.3.x86_64 24/52 | |
Updating : nss-tools-3.19.1-3.el6_6.x86_64 25/52 | |
Updating : 1:dbus-libs-1.2.24-8.el6_6.x86_64 26/52 | |
Cleanup : nss-tools-3.16.2.3-3.el6_6.x86_64 27/52 | |
Cleanup : nss-sysinit-3.16.2.3-3.el6_6.x86_64 28/52 | |
Cleanup : nss-3.16.2.3-3.el6_6.x86_64 29/52 | |
Cleanup : lvm2-2.02.111-2.el6_6.1.x86_64 30/52 | |
Cleanup : lvm2-libs-2.02.111-2.el6_6.1.x86_64 31/52 | |
Cleanup : device-mapper-event-1.02.90-2.el6_6.1.x86_64 32/52 | |
Cleanup : nss-util-3.16.2.3-2.el6_6.x86_64 33/52 | |
Cleanup : mysql-libs-5.1.73-3.el6_5.x86_64 34/52 | |
Cleanup : db4-utils-4.7.25-18.el6_4.x86_64 35/52 | |
Cleanup : kernel-2.6.32-431.1.2.0.1.el6.x86_64 36/52 | |
Cleanup : dracut-kernel-004-356.el6_6.1.noarch 37/52 | |
Cleanup : selinux-policy-targeted-3.7.19-260.el6_6.2.noarch 38/52 | |
Cleanup : openssl-1.0.1e-30.el6.8.x86_64 39/52 | |
Cleanup : device-mapper-event-libs-1.02.90-2.el6_6.1.x86_64 40/52 | |
Cleanup : device-mapper-1.02.90-2.el6_6.1.x86_64 41/52 | |
Cleanup : device-mapper-libs-1.02.90-2.el6_6.1.x86_64 42/52 | |
Cleanup : db4-4.7.25-18.el6_4.x86_64 43/52 | |
Cleanup : nspr-4.10.6-1.el6_5.x86_64 44/52 | |
Cleanup : 1:dbus-libs-1.2.24-7.el6_3.x86_64 45/52 | |
Cleanup : ca-certificates-2014.1.98-65.1.el6.noarch 46/52 | |
Cleanup : selinux-policy-3.7.19-260.el6_6.2.noarch 47/52 | |
Cleanup : dracut-004-356.el6_6.1.noarch 48/52 | |
Cleanup : kernel-firmware-2.6.32-504.12.2.el6.noarch 49/52 | |
Cleanup : glibc-common-2.12-1.149.el6_6.7.x86_64 50/52 | |
Cleanup : glibc-2.12-1.149.el6_6.7.x86_64 51/52 | |
Cleanup : tzdata-2015c-2.el6.noarch 52/52 | |
Verifying : selinux-policy-3.7.19-260.el6_6.5.noarch 1/52 | |
Verifying : nspr-4.10.8-1.el6_6.x86_64 2/52 | |
Verifying : lvm2-2.02.111-2.el6_6.3.x86_64 3/52 | |
Verifying : db4-utils-4.7.25-19.el6_6.x86_64 4/52 | |
Verifying : nss-util-3.19.1-1.el6_6.x86_64 5/52 | |
Verifying : glibc-2.12-1.149.el6_6.9.x86_64 6/52 | |
Verifying : kernel-firmware-2.6.32-504.23.4.el6.noarch 7/52 | |
Verifying : device-mapper-event-1.02.90-2.el6_6.3.x86_64 8/52 | |
Verifying : device-mapper-libs-1.02.90-2.el6_6.3.x86_64 9/52 | |
Verifying : nss-tools-3.19.1-3.el6_6.x86_64 10/52 | |
Verifying : nss-3.19.1-3.el6_6.x86_64 11/52 | |
Verifying : openssl-1.0.1e-30.el6.11.x86_64 12/52 | |
Verifying : device-mapper-event-libs-1.02.90-2.el6_6.3.x86_64 13/52 | |
Verifying : 1:dbus-libs-1.2.24-8.el6_6.x86_64 14/52 | |
Verifying : ca-certificates-2015.2.4-65.0.1.el6_6.noarch 15/52 | |
Verifying : dracut-004-356.el6_6.2.noarch 16/52 | |
Verifying : selinux-policy-targeted-3.7.19-260.el6_6.5.noarch 17/52 | |
Verifying : db4-4.7.25-19.el6_6.x86_64 18/52 | |
Verifying : mysql-libs-5.1.73-5.el6_6.x86_64 19/52 | |
Verifying : glibc-common-2.12-1.149.el6_6.9.x86_64 20/52 | |
Verifying : kernel-2.6.32-504.23.4.el6.x86_64 21/52 | |
Verifying : lvm2-libs-2.02.111-2.el6_6.3.x86_64 22/52 | |
Verifying : tzdata-2015e-1.el6.noarch 23/52 | |
Verifying : device-mapper-1.02.90-2.el6_6.3.x86_64 24/52 | |
Verifying : nss-sysinit-3.19.1-3.el6_6.x86_64 25/52 | |
Verifying : dracut-kernel-004-356.el6_6.2.noarch 26/52 | |
Verifying : nss-util-3.16.2.3-2.el6_6.x86_64 27/52 | |
Verifying : nss-3.16.2.3-3.el6_6.x86_64 28/52 | |
Verifying : db4-utils-4.7.25-18.el6_4.x86_64 29/52 | |
Verifying : selinux-policy-targeted-3.7.19-260.el6_6.2.noarch 30/52 | |
Verifying : kernel-firmware-2.6.32-504.12.2.el6.noarch 31/52 | |
Verifying : device-mapper-event-1.02.90-2.el6_6.1.x86_64 32/52 | |
Verifying : ca-certificates-2014.1.98-65.1.el6.noarch 33/52 | |
Verifying : lvm2-2.02.111-2.el6_6.1.x86_64 34/52 | |
Verifying : dracut-kernel-004-356.el6_6.1.noarch 35/52 | |
Verifying : nss-sysinit-3.16.2.3-3.el6_6.x86_64 36/52 | |
Verifying : nspr-4.10.6-1.el6_5.x86_64 37/52 | |
Verifying : nss-tools-3.16.2.3-3.el6_6.x86_64 38/52 | |
Verifying : dracut-004-356.el6_6.1.noarch 39/52 | |
Verifying : device-mapper-event-libs-1.02.90-2.el6_6.1.x86_64 40/52 | |
Verifying : tzdata-2015c-2.el6.noarch 41/52 | |
Verifying : lvm2-libs-2.02.111-2.el6_6.1.x86_64 42/52 | |
Verifying : selinux-policy-3.7.19-260.el6_6.2.noarch 43/52 | |
Verifying : openssl-1.0.1e-30.el6.8.x86_64 44/52 | |
Verifying : glibc-2.12-1.149.el6_6.7.x86_64 45/52 | |
Verifying : db4-4.7.25-18.el6_4.x86_64 46/52 | |
Verifying : glibc-common-2.12-1.149.el6_6.7.x86_64 47/52 | |
Verifying : device-mapper-libs-1.02.90-2.el6_6.1.x86_64 48/52 | |
Verifying : mysql-libs-5.1.73-3.el6_5.x86_64 49/52 | |
Verifying : device-mapper-1.02.90-2.el6_6.1.x86_64 50/52 | |
Verifying : 1:dbus-libs-1.2.24-7.el6_3.x86_64 51/52 | |
Verifying : kernel-2.6.32-431.1.2.0.1.el6.x86_64 52/52 | |
Removed: | |
kernel.x86_64 0:2.6.32-431.1.2.0.1.el6 | |
Installed: | |
kernel.x86_64 0:2.6.32-504.23.4.el6 | |
Updated: | |
ca-certificates.noarch 0:2015.2.4-65.0.1.el6_6 | |
db4.x86_64 0:4.7.25-19.el6_6 | |
db4-utils.x86_64 0:4.7.25-19.el6_6 | |
dbus-libs.x86_64 1:1.2.24-8.el6_6 | |
device-mapper.x86_64 0:1.02.90-2.el6_6.3 | |
device-mapper-event.x86_64 0:1.02.90-2.el6_6.3 | |
device-mapper-event-libs.x86_64 0:1.02.90-2.el6_6.3 | |
device-mapper-libs.x86_64 0:1.02.90-2.el6_6.3 | |
dracut.noarch 0:004-356.el6_6.2 | |
dracut-kernel.noarch 0:004-356.el6_6.2 | |
glibc.x86_64 0:2.12-1.149.el6_6.9 | |
glibc-common.x86_64 0:2.12-1.149.el6_6.9 | |
kernel-firmware.noarch 0:2.6.32-504.23.4.el6 | |
lvm2.x86_64 0:2.02.111-2.el6_6.3 | |
lvm2-libs.x86_64 0:2.02.111-2.el6_6.3 | |
mysql-libs.x86_64 0:5.1.73-5.el6_6 | |
nspr.x86_64 0:4.10.8-1.el6_6 | |
nss.x86_64 0:3.19.1-3.el6_6 | |
nss-sysinit.x86_64 0:3.19.1-3.el6_6 | |
nss-tools.x86_64 0:3.19.1-3.el6_6 | |
nss-util.x86_64 0:3.19.1-1.el6_6 | |
openssl.x86_64 0:1.0.1e-30.el6.11 | |
selinux-policy.noarch 0:3.7.19-260.el6_6.5 | |
selinux-policy-targeted.noarch 0:3.7.19-260.el6_6.5 | |
tzdata.noarch 0:2015e-1.el6 | |
Complete! | |
Loaded plugins: fastestmirror | |
Setting up Group Process | |
Loading mirror speeds from cached hostfile | |
* base: mirror.umd.edu | |
* extras: mirrors.advancedhosters.com | |
* updates: mirror.cs.vt.edu | |
base/group_gz | 216 kB 00:00 | |
Package 1:make-3.81-20.el6.x86_64 already installed and latest version | |
Package 1:pkgconfig-0.23-9.1.el6.x86_64 already installed and latest version | |
Package binutils-2.20.51.0.2-5.42.el6.x86_64 already installed and latest version | |
Package git-1.7.1-3.el6_4.1.x86_64 already installed and latest version | |
Resolving Dependencies | |
--> Running transaction check | |
---> Package autoconf.noarch 0:2.63-5.1.el6 will be installed | |
---> Package automake.noarch 0:1.11.1-4.el6 will be installed | |
---> Package bison.x86_64 0:2.4.1-5.el6 will be installed | |
---> Package byacc.x86_64 0:1.9.20070509-7.el6 will be installed | |
---> Package cscope.x86_64 0:15.6-6.el6 will be installed | |
---> Package ctags.x86_64 0:5.8-2.el6 will be installed | |
---> Package cvs.x86_64 0:1.11.23-16.el6 will be installed | |
---> Package diffstat.x86_64 0:1.51-2.el6 will be installed | |
---> Package doxygen.x86_64 1:1.6.1-6.el6 will be installed | |
---> Package elfutils.x86_64 0:0.158-3.2.el6 will be installed | |
--> Processing Dependency: elfutils-libs(x86-64) = 0.158-3.2.el6 for package: elfutils-0.158-3.2.el6.x86_64 | |
--> Processing Dependency: libdw.so.1(ELFUTILS_0.158)(64bit) for package: elfutils-0.158-3.2.el6.x86_64 | |
--> Processing Dependency: libdw.so.1(ELFUTILS_0.149)(64bit) for package: elfutils-0.158-3.2.el6.x86_64 | |
--> Processing Dependency: libdw.so.1(ELFUTILS_0.148)(64bit) for package: elfutils-0.158-3.2.el6.x86_64 | |
--> Processing Dependency: libdw.so.1(ELFUTILS_0.138)(64bit) for package: elfutils-0.158-3.2.el6.x86_64 | |
--> Processing Dependency: libdw.so.1(ELFUTILS_0.130)(64bit) for package: elfutils-0.158-3.2.el6.x86_64 | |
--> Processing Dependency: libdw.so.1(ELFUTILS_0.127)(64bit) for package: elfutils-0.158-3.2.el6.x86_64 | |
--> Processing Dependency: libdw.so.1(ELFUTILS_0.126)(64bit) for package: elfutils-0.158-3.2.el6.x86_64 | |
--> Processing Dependency: libdw.so.1(ELFUTILS_0.122)(64bit) for package: elfutils-0.158-3.2.el6.x86_64 | |
--> Processing Dependency: libasm.so.1(ELFUTILS_1.0)(64bit) for package: elfutils-0.158-3.2.el6.x86_64 | |
--> Processing Dependency: libdw.so.1()(64bit) for package: elfutils-0.158-3.2.el6.x86_64 | |
--> Processing Dependency: libasm.so.1()(64bit) for package: elfutils-0.158-3.2.el6.x86_64 | |
---> Package flex.x86_64 0:2.5.35-9.el6 will be installed | |
---> Package gcc.x86_64 0:4.4.7-11.el6 will be installed | |
--> Processing Dependency: libgomp = 4.4.7-11.el6 for package: gcc-4.4.7-11.el6.x86_64 | |
--> Processing Dependency: cpp = 4.4.7-11.el6 for package: gcc-4.4.7-11.el6.x86_64 | |
--> Processing Dependency: glibc-devel >= 2.2.90-12 for package: gcc-4.4.7-11.el6.x86_64 | |
--> Processing Dependency: cloog-ppl >= 0.15 for package: gcc-4.4.7-11.el6.x86_64 | |
--> Processing Dependency: libgomp.so.1()(64bit) for package: gcc-4.4.7-11.el6.x86_64 | |
---> Package gcc-c++.x86_64 0:4.4.7-11.el6 will be installed | |
--> Processing Dependency: libstdc++-devel = 4.4.7-11.el6 for package: gcc-c++-4.4.7-11.el6.x86_64 | |
--> Processing Dependency: libmpfr.so.1()(64bit) for package: gcc-c++-4.4.7-11.el6.x86_64 | |
---> Package gcc-gfortran.x86_64 0:4.4.7-11.el6 will be installed | |
--> Processing Dependency: libgfortran = 4.4.7-11.el6 for package: gcc-gfortran-4.4.7-11.el6.x86_64 | |
--> Processing Dependency: libgfortran.so.3()(64bit) for package: gcc-gfortran-4.4.7-11.el6.x86_64 | |
---> Package gettext.x86_64 0:0.17-18.el6 will be installed | |
---> Package indent.x86_64 0:2.2.10-7.el6 will be installed | |
---> Package intltool.noarch 0:0.41.0-1.1.el6 will be installed | |
--> Processing Dependency: perl(XML::Parser) for package: intltool-0.41.0-1.1.el6.noarch | |
--> Processing Dependency: gettext-devel for package: intltool-0.41.0-1.1.el6.noarch | |
---> Package libtool.x86_64 0:2.2.6-15.5.el6 will be installed | |
---> Package patch.x86_64 0:2.6-6.el6 will be installed | |
---> Package patchutils.x86_64 0:0.3.1-3.1.el6 will be installed | |
---> Package rcs.x86_64 0:5.7-37.el6 will be installed | |
---> Package redhat-rpm-config.noarch 0:9.0.3-42.el6.centos will be installed | |
---> Package rpm-build.x86_64 0:4.8.0-38.el6_6 will be installed | |
--> Processing Dependency: xz for package: rpm-build-4.8.0-38.el6_6.x86_64 | |
--> Processing Dependency: unzip for package: rpm-build-4.8.0-38.el6_6.x86_64 | |
--> Processing Dependency: lzma for package: rpm-build-4.8.0-38.el6_6.x86_64 | |
--> Processing Dependency: /usr/bin/gdb-add-index for package: rpm-build-4.8.0-38.el6_6.x86_64 | |
---> Package subversion.x86_64 0:1.6.11-12.el6_6 will be installed | |
--> Processing Dependency: perl(URI) >= 1.17 for package: subversion-1.6.11-12.el6_6.x86_64 | |
--> Processing Dependency: apr >= 1.3.0 for package: subversion-1.6.11-12.el6_6.x86_64 | |
--> Processing Dependency: libneon.so.27()(64bit) for package: subversion-1.6.11-12.el6_6.x86_64 | |
--> Processing Dependency: libaprutil-1.so.0()(64bit) for package: subversion-1.6.11-12.el6_6.x86_64 | |
--> Processing Dependency: libapr-1.so.0()(64bit) for package: subversion-1.6.11-12.el6_6.x86_64 | |
---> Package swig.x86_64 0:1.3.40-6.el6 will be installed | |
---> Package systemtap.x86_64 0:2.5-5.el6 will be installed | |
--> Processing Dependency: systemtap-devel = 2.5-5.el6 for package: systemtap-2.5-5.el6.x86_64 | |
--> Processing Dependency: systemtap-client = 2.5-5.el6 for package: systemtap-2.5-5.el6.x86_64 | |
--> Running transaction check | |
---> Package apr.x86_64 0:1.3.9-5.el6_2 will be installed | |
---> Package apr-util.x86_64 0:1.3.9-3.el6_0.1 will be installed | |
---> Package cloog-ppl.x86_64 0:0.15.7-1.2.el6 will be installed | |
--> Processing Dependency: libppl_c.so.2()(64bit) for package: cloog-ppl-0.15.7-1.2.el6.x86_64 | |
--> Processing Dependency: libppl.so.7()(64bit) for package: cloog-ppl-0.15.7-1.2.el6.x86_64 | |
---> Package cpp.x86_64 0:4.4.7-11.el6 will be installed | |
---> Package elfutils-libs.x86_64 0:0.158-3.2.el6 will be installed | |
---> Package gdb.x86_64 0:7.2-75.el6 will be installed | |
---> Package gettext-devel.x86_64 0:0.17-18.el6 will be installed | |
--> Processing Dependency: gettext-libs = 0.17-18.el6 for package: gettext-devel-0.17-18.el6.x86_64 | |
--> Processing Dependency: libgettextpo.so.0()(64bit) for package: gettext-devel-0.17-18.el6.x86_64 | |
--> Processing Dependency: libgcj_bc.so.1()(64bit) for package: gettext-devel-0.17-18.el6.x86_64 | |
--> Processing Dependency: libasprintf.so.0()(64bit) for package: gettext-devel-0.17-18.el6.x86_64 | |
---> Package glibc-devel.x86_64 0:2.12-1.149.el6_6.9 will be installed | |
--> Processing Dependency: glibc-headers = 2.12-1.149.el6_6.9 for package: glibc-devel-2.12-1.149.el6_6.9.x86_64 | |
--> Processing Dependency: glibc-headers for package: glibc-devel-2.12-1.149.el6_6.9.x86_64 | |
---> Package libgfortran.x86_64 0:4.4.7-11.el6 will be installed | |
---> Package libgomp.x86_64 0:4.4.7-11.el6 will be installed | |
---> Package libstdc++-devel.x86_64 0:4.4.7-11.el6 will be installed | |
---> Package mpfr.x86_64 0:2.4.1-6.el6 will be installed | |
---> Package neon.x86_64 0:0.29.3-3.el6_4 will be installed | |
--> Processing Dependency: libgnutls.so.26(GNUTLS_1_4)(64bit) for package: neon-0.29.3-3.el6_4.x86_64 | |
--> Processing Dependency: libproxy.so.0()(64bit) for package: neon-0.29.3-3.el6_4.x86_64 | |
--> Processing Dependency: libpakchois.so.0()(64bit) for package: neon-0.29.3-3.el6_4.x86_64 | |
--> Processing Dependency: libgnutls.so.26()(64bit) for package: neon-0.29.3-3.el6_4.x86_64 | |
---> Package perl-URI.noarch 0:1.40-2.el6 will be installed | |
---> Package perl-XML-Parser.x86_64 0:2.36-7.el6 will be installed | |
--> Processing Dependency: perl(LWP) for package: perl-XML-Parser-2.36-7.el6.x86_64 | |
---> Package systemtap-client.x86_64 0:2.5-5.el6 will be installed | |
--> Processing Dependency: systemtap-runtime = 2.5-5.el6 for package: systemtap-client-2.5-5.el6.x86_64 | |
--> Processing Dependency: zip for package: systemtap-client-2.5-5.el6.x86_64 | |
--> Processing Dependency: libavahi-common.so.3()(64bit) for package: systemtap-client-2.5-5.el6.x86_64 | |
--> Processing Dependency: libavahi-client.so.3()(64bit) for package: systemtap-client-2.5-5.el6.x86_64 | |
---> Package systemtap-devel.x86_64 0:2.5-5.el6 will be installed | |
--> Processing Dependency: kernel-devel for package: systemtap-devel-2.5-5.el6.x86_64 | |
---> Package unzip.x86_64 0:6.0-2.el6_6 will be installed | |
---> Package xz.x86_64 0:4.999.9-0.5.beta.20091007git.el6 will be installed | |
---> Package xz-lzma-compat.x86_64 0:4.999.9-0.5.beta.20091007git.el6 will be installed | |
--> Running transaction check | |
---> Package avahi-libs.x86_64 0:0.6.25-15.el6 will be installed | |
---> Package gettext-libs.x86_64 0:0.17-18.el6 will be installed | |
---> Package glibc-headers.x86_64 0:2.12-1.149.el6_6.9 will be installed | |
--> Processing Dependency: kernel-headers >= 2.2.1 for package: glibc-headers-2.12-1.149.el6_6.9.x86_64 | |
--> Processing Dependency: kernel-headers for package: glibc-headers-2.12-1.149.el6_6.9.x86_64 | |
---> Package gnutls.x86_64 0:2.8.5-14.el6_5 will be installed | |
---> Package kernel-devel.x86_64 0:2.6.32-504.23.4.el6 will be installed | |
---> Package libgcj.x86_64 0:4.4.7-11.el6 will be installed | |
--> Processing Dependency: libart_lgpl >= 2.1.0 for package: libgcj-4.4.7-11.el6.x86_64 | |
--> Processing Dependency: gtk2 >= 2.4.0 for package: libgcj-4.4.7-11.el6.x86_64 | |
--> Processing Dependency: libasound.so.2(ALSA_0.9)(64bit) for package: libgcj-4.4.7-11.el6.x86_64 | |
--> Processing Dependency: libpangoft2-1.0.so.0()(64bit) for package: libgcj-4.4.7-11.el6.x86_64 | |
--> Processing Dependency: libpangocairo-1.0.so.0()(64bit) for package: libgcj-4.4.7-11.el6.x86_64 | |
--> Processing Dependency: libpango-1.0.so.0()(64bit) for package: libgcj-4.4.7-11.el6.x86_64 | |
--> Processing Dependency: libgtk-x11-2.0.so.0()(64bit) for package: libgcj-4.4.7-11.el6.x86_64 | |
--> Processing Dependency: libgdk_pixbuf-2.0.so.0()(64bit) for package: libgcj-4.4.7-11.el6.x86_64 | |
--> Processing Dependency: libgdk-x11-2.0.so.0()(64bit) for package: libgcj-4.4.7-11.el6.x86_64 | |
--> Processing Dependency: libfreetype.so.6()(64bit) for package: libgcj-4.4.7-11.el6.x86_64 | |
--> Processing Dependency: libfontconfig.so.1()(64bit) for package: libgcj-4.4.7-11.el6.x86_64 | |
--> Processing Dependency: libcairo.so.2()(64bit) for package: libgcj-4.4.7-11.el6.x86_64 | |
--> Processing Dependency: libatk-1.0.so.0()(64bit) for package: libgcj-4.4.7-11.el6.x86_64 | |
--> Processing Dependency: libasound.so.2()(64bit) for package: libgcj-4.4.7-11.el6.x86_64 | |
--> Processing Dependency: libXtst.so.6()(64bit) for package: libgcj-4.4.7-11.el6.x86_64 | |
--> Processing Dependency: libXrender.so.1()(64bit) for package: libgcj-4.4.7-11.el6.x86_64 | |
--> Processing Dependency: libXrandr.so.2()(64bit) for package: libgcj-4.4.7-11.el6.x86_64 | |
--> Processing Dependency: libSM.so.6()(64bit) for package: libgcj-4.4.7-11.el6.x86_64 | |
--> Processing Dependency: libICE.so.6()(64bit) for package: libgcj-4.4.7-11.el6.x86_64 | |
---> Package libproxy.x86_64 0:0.3.0-10.el6 will be installed | |
--> Processing Dependency: libproxy-python = 0.3.0-10.el6 for package: libproxy-0.3.0-10.el6.x86_64 | |
--> Processing Dependency: libproxy-bin = 0.3.0-10.el6 for package: libproxy-0.3.0-10.el6.x86_64 | |
---> Package pakchois.x86_64 0:0.4-3.2.el6 will be installed | |
---> Package perl-libwww-perl.noarch 0:5.833-2.el6 will be installed | |
--> Processing Dependency: perl-HTML-Parser >= 3.33 for package: perl-libwww-perl-5.833-2.el6.noarch | |
--> Processing Dependency: perl(HTML::Entities) for package: perl-libwww-perl-5.833-2.el6.noarch | |
--> Processing Dependency: perl(Compress::Zlib) for package: perl-libwww-perl-5.833-2.el6.noarch | |
--> Processing Dependency: mailcap for package: perl-libwww-perl-5.833-2.el6.noarch | |
---> Package ppl.x86_64 0:0.10.2-11.el6 will be installed | |
---> Package systemtap-runtime.x86_64 0:2.5-5.el6 will be installed | |
---> Package zip.x86_64 0:3.0-1.el6 will be installed | |
--> Running transaction check | |
---> Package alsa-lib.x86_64 0:1.0.22-3.el6 will be installed | |
---> Package atk.x86_64 0:1.30.0-1.el6 will be installed | |
---> Package cairo.x86_64 0:1.8.8-6.el6_6 will be installed | |
--> Processing Dependency: libpng12.so.0(PNG12_0)(64bit) for package: cairo-1.8.8-6.el6_6.x86_64 | |
--> Processing Dependency: libpng12.so.0()(64bit) for package: cairo-1.8.8-6.el6_6.x86_64 | |
--> Processing Dependency: libpixman-1.so.0()(64bit) for package: cairo-1.8.8-6.el6_6.x86_64 | |
--> Processing Dependency: libX11.so.6()(64bit) for package: cairo-1.8.8-6.el6_6.x86_64 | |
---> Package fontconfig.x86_64 0:2.8.0-5.el6 will be installed | |
---> Package freetype.x86_64 0:2.3.11-15.el6_6.1 will be installed | |
---> Package gdk-pixbuf2.x86_64 0:2.24.1-5.el6 will be installed | |
--> Processing Dependency: libjpeg.so.62(LIBJPEG_6.2)(64bit) for package: gdk-pixbuf2-2.24.1-5.el6.x86_64 | |
--> Processing Dependency: libtiff.so.3()(64bit) for package: gdk-pixbuf2-2.24.1-5.el6.x86_64 | |
--> Processing Dependency: libjpeg.so.62()(64bit) for package: gdk-pixbuf2-2.24.1-5.el6.x86_64 | |
--> Processing Dependency: libjasper.so.1()(64bit) for package: gdk-pixbuf2-2.24.1-5.el6.x86_64 | |
---> Package gtk2.x86_64 0:2.24.23-6.el6 will be installed | |
--> Processing Dependency: hicolor-icon-theme for package: gtk2-2.24.23-6.el6.x86_64 | |
--> Processing Dependency: libcups.so.2()(64bit) for package: gtk2-2.24.23-6.el6.x86_64 | |
--> Processing Dependency: libXinerama.so.1()(64bit) for package: gtk2-2.24.23-6.el6.x86_64 | |
--> Processing Dependency: libXi.so.6()(64bit) for package: gtk2-2.24.23-6.el6.x86_64 | |
--> Processing Dependency: libXfixes.so.3()(64bit) for package: gtk2-2.24.23-6.el6.x86_64 | |
--> Processing Dependency: libXext.so.6()(64bit) for package: gtk2-2.24.23-6.el6.x86_64 | |
--> Processing Dependency: libXdamage.so.1()(64bit) for package: gtk2-2.24.23-6.el6.x86_64 | |
--> Processing Dependency: libXcursor.so.1()(64bit) for package: gtk2-2.24.23-6.el6.x86_64 | |
--> Processing Dependency: libXcomposite.so.1()(64bit) for package: gtk2-2.24.23-6.el6.x86_64 | |
---> Package kernel-headers.x86_64 0:2.6.32-504.23.4.el6 will be installed | |
---> Package libICE.x86_64 0:1.0.6-1.el6 will be installed | |
---> Package libSM.x86_64 0:1.2.1-2.el6 will be installed | |
---> Package libXrandr.x86_64 0:1.4.1-2.1.el6 will be installed | |
---> Package libXrender.x86_64 0:0.9.8-2.1.el6 will be installed | |
---> Package libXtst.x86_64 0:1.2.2-2.1.el6 will be installed | |
---> Package libart_lgpl.x86_64 0:2.3.20-5.1.el6 will be installed | |
---> Package libproxy-bin.x86_64 0:0.3.0-10.el6 will be installed | |
---> Package libproxy-python.x86_64 0:0.3.0-10.el6 will be installed | |
---> Package mailcap.noarch 0:2.1.31-2.el6 will be installed | |
---> Package pango.x86_64 0:1.28.1-10.el6 will be installed | |
--> Processing Dependency: libthai >= 0.1.9 for package: pango-1.28.1-10.el6.x86_64 | |
--> Processing Dependency: libthai.so.0(LIBTHAI_0.1)(64bit) for package: pango-1.28.1-10.el6.x86_64 | |
--> Processing Dependency: libthai.so.0()(64bit) for package: pango-1.28.1-10.el6.x86_64 | |
--> Processing Dependency: libXft.so.2()(64bit) for package: pango-1.28.1-10.el6.x86_64 | |
---> Package perl-Compress-Zlib.x86_64 0:2.021-136.el6_6.1 will be installed | |
--> Processing Dependency: perl(IO::Uncompress::Gunzip) >= 2.021 for package: perl-Compress-Zlib-2.021-136.el6_6.1.x86_64 | |
--> Processing Dependency: perl(IO::Compress::Gzip::Constants) >= 2.021 for package: perl-Compress-Zlib-2.021-136.el6_6.1.x86_64 | |
--> Processing Dependency: perl(IO::Compress::Gzip) >= 2.021 for package: perl-Compress-Zlib-2.021-136.el6_6.1.x86_64 | |
--> Processing Dependency: perl(IO::Compress::Base::Common) >= 2.021 for package: perl-Compress-Zlib-2.021-136.el6_6.1.x86_64 | |
--> Processing Dependency: perl(Compress::Raw::Zlib) >= 2.021 for package: perl-Compress-Zlib-2.021-136.el6_6.1.x86_64 | |
---> Package perl-HTML-Parser.x86_64 0:3.64-2.el6 will be installed | |
--> Processing Dependency: perl(HTML::Tagset) >= 3.03 for package: perl-HTML-Parser-3.64-2.el6.x86_64 | |
--> Processing Dependency: perl(HTML::Tagset) for package: perl-HTML-Parser-3.64-2.el6.x86_64 | |
--> Running transaction check | |
---> Package cups-libs.x86_64 1:1.4.2-67.el6_6.1 will be installed | |
---> Package hicolor-icon-theme.noarch 0:0.11-1.1.el6 will be installed | |
---> Package jasper-libs.x86_64 0:1.900.1-16.el6_6.3 will be installed | |
---> Package libX11.x86_64 0:1.6.0-2.2.el6 will be installed | |
--> Processing Dependency: libX11-common = 1.6.0-2.2.el6 for package: libX11-1.6.0-2.2.el6.x86_64 | |
--> Processing Dependency: libxcb.so.1()(64bit) for package: libX11-1.6.0-2.2.el6.x86_64 | |
---> Package libXcomposite.x86_64 0:0.4.3-4.el6 will be installed | |
---> Package libXcursor.x86_64 0:1.1.14-2.1.el6 will be installed | |
---> Package libXdamage.x86_64 0:1.1.3-4.el6 will be installed | |
---> Package libXext.x86_64 0:1.3.2-2.1.el6 will be installed | |
---> Package libXfixes.x86_64 0:5.0.1-2.1.el6 will be installed | |
---> Package libXft.x86_64 0:2.3.1-2.el6 will be installed | |
---> Package libXi.x86_64 0:1.7.2-2.2.el6 will be installed | |
---> Package libXinerama.x86_64 0:1.1.3-2.1.el6 will be installed | |
---> Package libjpeg-turbo.x86_64 0:1.2.1-3.el6_5 will be installed | |
---> Package libpng.x86_64 2:1.2.49-1.el6_2 will be installed | |
---> Package libthai.x86_64 0:0.1.12-3.el6 will be installed | |
---> Package libtiff.x86_64 0:3.9.4-10.el6_5 will be installed | |
---> Package perl-Compress-Raw-Zlib.x86_64 1:2.021-136.el6_6.1 will be installed | |
---> Package perl-HTML-Tagset.noarch 0:3.20-4.el6 will be installed | |
---> Package perl-IO-Compress-Base.x86_64 0:2.021-136.el6_6.1 will be installed | |
---> Package perl-IO-Compress-Zlib.x86_64 0:2.021-136.el6_6.1 will be installed | |
---> Package pixman.x86_64 0:0.32.4-4.el6 will be installed | |
--> Running transaction check | |
---> Package libX11-common.noarch 0:1.6.0-2.2.el6 will be installed | |
---> Package libxcb.x86_64 0:1.9.1-2.el6 will be installed | |
--> Processing Dependency: libXau.so.6()(64bit) for package: libxcb-1.9.1-2.el6.x86_64 | |
--> Running transaction check | |
---> Package libXau.x86_64 0:1.0.6-4.el6 will be installed | |
--> Finished Dependency Resolution | |
Dependencies Resolved | |
================================================================================ | |
Package Arch Version Repository | |
Size | |
================================================================================ | |
Installing: | |
autoconf noarch 2.63-5.1.el6 base 781 k | |
automake noarch 1.11.1-4.el6 base 550 k | |
bison x86_64 2.4.1-5.el6 base 637 k | |
byacc x86_64 1.9.20070509-7.el6 base 48 k | |
cscope x86_64 15.6-6.el6 base 136 k | |
ctags x86_64 5.8-2.el6 base 147 k | |
cvs x86_64 1.11.23-16.el6 base 712 k | |
diffstat x86_64 1.51-2.el6 base 29 k | |
doxygen x86_64 1:1.6.1-6.el6 base 2.4 M | |
elfutils x86_64 0.158-3.2.el6 base 233 k | |
flex x86_64 2.5.35-9.el6 base 285 k | |
gcc x86_64 4.4.7-11.el6 base 10 M | |
gcc-c++ x86_64 4.4.7-11.el6 base 4.7 M | |
gcc-gfortran x86_64 4.4.7-11.el6 base 4.7 M | |
gettext x86_64 0.17-18.el6 base 1.8 M | |
indent x86_64 2.2.10-7.el6 base 115 k | |
intltool noarch 0.41.0-1.1.el6 base 58 k | |
libtool x86_64 2.2.6-15.5.el6 base 564 k | |
patch x86_64 2.6-6.el6 base 90 k | |
patchutils x86_64 0.3.1-3.1.el6 base 95 k | |
rcs x86_64 5.7-37.el6 base 173 k | |
redhat-rpm-config noarch 9.0.3-42.el6.centos base 59 k | |
rpm-build x86_64 4.8.0-38.el6_6 updates 127 k | |
subversion x86_64 1.6.11-12.el6_6 updates 2.3 M | |
swig x86_64 1.3.40-6.el6 base 1.1 M | |
systemtap x86_64 2.5-5.el6 base 26 k | |
Installing for dependencies: | |
alsa-lib x86_64 1.0.22-3.el6 base 370 k | |
apr x86_64 1.3.9-5.el6_2 base 123 k | |
apr-util x86_64 1.3.9-3.el6_0.1 base 87 k | |
atk x86_64 1.30.0-1.el6 base 195 k | |
avahi-libs x86_64 0.6.25-15.el6 base 55 k | |
cairo x86_64 1.8.8-6.el6_6 updates 309 k | |
cloog-ppl x86_64 0.15.7-1.2.el6 base 93 k | |
cpp x86_64 4.4.7-11.el6 base 3.7 M | |
cups-libs x86_64 1:1.4.2-67.el6_6.1 updates 320 k | |
elfutils-libs x86_64 0.158-3.2.el6 base 211 k | |
fontconfig x86_64 2.8.0-5.el6 base 186 k | |
freetype x86_64 2.3.11-15.el6_6.1 updates 361 k | |
gdb x86_64 7.2-75.el6 base 2.3 M | |
gdk-pixbuf2 x86_64 2.24.1-5.el6 base 501 k | |
gettext-devel x86_64 0.17-18.el6 base 155 k | |
gettext-libs x86_64 0.17-18.el6 base 112 k | |
glibc-devel x86_64 2.12-1.149.el6_6.9 updates 984 k | |
glibc-headers x86_64 2.12-1.149.el6_6.9 updates 612 k | |
gnutls x86_64 2.8.5-14.el6_5 base 346 k | |
gtk2 x86_64 2.24.23-6.el6 base 3.2 M | |
hicolor-icon-theme noarch 0.11-1.1.el6 base 40 k | |
jasper-libs x86_64 1.900.1-16.el6_6.3 updates 137 k | |
kernel-devel x86_64 2.6.32-504.23.4.el6 updates 9.4 M | |
kernel-headers x86_64 2.6.32-504.23.4.el6 updates 3.4 M | |
libICE x86_64 1.0.6-1.el6 base 53 k | |
libSM x86_64 1.2.1-2.el6 base 37 k | |
libX11 x86_64 1.6.0-2.2.el6 base 586 k | |
libX11-common noarch 1.6.0-2.2.el6 base 192 k | |
libXau x86_64 1.0.6-4.el6 base 24 k | |
libXcomposite x86_64 0.4.3-4.el6 base 20 k | |
libXcursor x86_64 1.1.14-2.1.el6 base 28 k | |
libXdamage x86_64 1.1.3-4.el6 base 18 k | |
libXext x86_64 1.3.2-2.1.el6 base 35 k | |
libXfixes x86_64 5.0.1-2.1.el6 base 17 k | |
libXft x86_64 2.3.1-2.el6 base 55 k | |
libXi x86_64 1.7.2-2.2.el6 base 37 k | |
libXinerama x86_64 1.1.3-2.1.el6 base 13 k | |
libXrandr x86_64 1.4.1-2.1.el6 base 23 k | |
libXrender x86_64 0.9.8-2.1.el6 base 24 k | |
libXtst x86_64 1.2.2-2.1.el6 base 19 k | |
libart_lgpl x86_64 2.3.20-5.1.el6 base 65 k | |
libgcj x86_64 4.4.7-11.el6 base 19 M | |
libgfortran x86_64 4.4.7-11.el6 base 267 k | |
libgomp x86_64 4.4.7-11.el6 base 133 k | |
libjpeg-turbo x86_64 1.2.1-3.el6_5 base 174 k | |
libpng x86_64 2:1.2.49-1.el6_2 base 182 k | |
libproxy x86_64 0.3.0-10.el6 base 39 k | |
libproxy-bin x86_64 0.3.0-10.el6 base 9.0 k | |
libproxy-python x86_64 0.3.0-10.el6 base 9.1 k | |
libstdc++-devel x86_64 4.4.7-11.el6 base 1.6 M | |
libthai x86_64 0.1.12-3.el6 base 183 k | |
libtiff x86_64 3.9.4-10.el6_5 base 343 k | |
libxcb x86_64 1.9.1-2.el6 base 110 k | |
mailcap noarch 2.1.31-2.el6 base 27 k | |
mpfr x86_64 2.4.1-6.el6 base 157 k | |
neon x86_64 0.29.3-3.el6_4 base 119 k | |
pakchois x86_64 0.4-3.2.el6 base 21 k | |
pango x86_64 1.28.1-10.el6 base 351 k | |
perl-Compress-Raw-Zlib x86_64 1:2.021-136.el6_6.1 updates 69 k | |
perl-Compress-Zlib x86_64 2.021-136.el6_6.1 updates 45 k | |
perl-HTML-Parser x86_64 3.64-2.el6 base 109 k | |
perl-HTML-Tagset noarch 3.20-4.el6 base 17 k | |
perl-IO-Compress-Base x86_64 2.021-136.el6_6.1 updates 69 k | |
perl-IO-Compress-Zlib x86_64 2.021-136.el6_6.1 updates 135 k | |
perl-URI noarch 1.40-2.el6 base 117 k | |
perl-XML-Parser x86_64 2.36-7.el6 base 224 k | |
perl-libwww-perl noarch 5.833-2.el6 base 387 k | |
pixman x86_64 0.32.4-4.el6 base 243 k | |
ppl x86_64 0.10.2-11.el6 base 1.3 M | |
systemtap-client x86_64 2.5-5.el6 base 3.6 M | |
systemtap-devel x86_64 2.5-5.el6 base 1.5 M | |
systemtap-runtime x86_64 2.5-5.el6 base 201 k | |
unzip x86_64 6.0-2.el6_6 updates 149 k | |
xz x86_64 4.999.9-0.5.beta.20091007git.el6 base 137 k | |
xz-lzma-compat x86_64 4.999.9-0.5.beta.20091007git.el6 base 16 k | |
zip x86_64 3.0-1.el6 base 260 k | |
Transaction Summary | |
================================================================================ | |
Install 102 Package(s) | |
Total download size: 91 M | |
Installed size: 262 M | |
Downloading Packages: | |
(1/102): alsa-lib-1.0.22-3.el6.x86_64.rpm | 370 kB 00:00 | |
(2/102): apr-1.3.9-5.el6_2.x86_64.rpm | 123 kB 00:00 | |
(3/102): apr-util-1.3.9-3.el6_0.1.x86_64.rpm | 87 kB 00:00 | |
(4/102): atk-1.30.0-1.el6.x86_64.rpm | 195 kB 00:00 | |
(5/102): autoconf-2.63-5.1.el6.noarch.rpm | 781 kB 00:00 | |
(6/102): automake-1.11.1-4.el6.noarch.rpm | 550 kB 00:00 | |
(7/102): avahi-libs-0.6.25-15.el6.x86_64.rpm | 55 kB 00:00 | |
(8/102): bison-2.4.1-5.el6.x86_64.rpm | 637 kB 00:00 | |
(9/102): byacc-1.9.20070509-7.el6.x86_64.rpm | 48 kB 00:00 | |
(10/102): cairo-1.8.8-6.el6_6.x86_64.rpm | 309 kB 00:00 | |
(11/102): cloog-ppl-0.15.7-1.2.el6.x86_64.rpm | 93 kB 00:00 | |
(12/102): cpp-4.4.7-11.el6.x86_64.rpm | 3.7 MB 00:00 | |
(13/102): cscope-15.6-6.el6.x86_64.rpm | 136 kB 00:00 | |
(14/102): ctags-5.8-2.el6.x86_64.rpm | 147 kB 00:00 | |
(15/102): cups-libs-1.4.2-67.el6_6.1.x86_64.rpm | 320 kB 00:00 | |
(16/102): cvs-1.11.23-16.el6.x86_64.rpm | 712 kB 00:00 | |
(17/102): diffstat-1.51-2.el6.x86_64.rpm | 29 kB 00:00 | |
(18/102): doxygen-1.6.1-6.el6.x86_64.rpm | 2.4 MB 00:00 | |
(19/102): elfutils-0.158-3.2.el6.x86_64.rpm | 233 kB 00:00 | |
(20/102): elfutils-libs-0.158-3.2.el6.x86_64.rpm | 211 kB 00:00 | |
(21/102): flex-2.5.35-9.el6.x86_64.rpm | 285 kB 00:00 | |
(22/102): fontconfig-2.8.0-5.el6.x86_64.rpm | 186 kB 00:00 | |
(23/102): freetype-2.3.11-15.el6_6.1.x86_64.rpm | 361 kB 00:00 | |
(24/102): gcc-4.4.7-11.el6.x86_64.rpm | 10 MB 00:00 | |
(25/102): gcc-c++-4.4.7-11.el6.x86_64.rpm | 4.7 MB 00:00 | |
(26/102): gcc-gfortran-4.4.7-11.el6.x86_64.rpm | 4.7 MB 00:00 | |
(27/102): gdb-7.2-75.el6.x86_64.rpm | 2.3 MB 00:00 | |
(28/102): gdk-pixbuf2-2.24.1-5.el6.x86_64.rpm | 501 kB 00:00 | |
(29/102): gettext-0.17-18.el6.x86_64.rpm | 1.8 MB 00:00 | |
(30/102): gettext-devel-0.17-18.el6.x86_64.rpm | 155 kB 00:00 | |
(31/102): gettext-libs-0.17-18.el6.x86_64.rpm | 112 kB 00:00 | |
(32/102): glibc-devel-2.12-1.149.el6_6.9.x86_64.rpm | 984 kB 00:04 | |
(33/102): glibc-headers-2.12-1.149.el6_6.9.x86_64.rpm | 612 kB 00:02 | |
(34/102): gnutls-2.8.5-14.el6_5.x86_64.rpm | 346 kB 00:00 | |
(35/102): gtk2-2.24.23-6.el6.x86_64.rpm | 3.2 MB 00:00 | |
(36/102): hicolor-icon-theme-0.11-1.1.el6.noarch.rpm | 40 kB 00:00 | |
(37/102): indent-2.2.10-7.el6.x86_64.rpm | 115 kB 00:00 | |
(38/102): intltool-0.41.0-1.1.el6.noarch.rpm | 58 kB 00:00 | |
(39/102): jasper-libs-1.900.1-16.el6_6.3.x86_64.rpm | 137 kB 00:00 | |
(40/102): kernel-devel-2.6.32-504.23.4.el6.x86_64.rpm | 9.4 MB 01:02 | |
(41/102): kernel-headers-2.6.32-504.23.4.el6.x86_64.rpm | 3.4 MB 00:17 | |
(42/102): libICE-1.0.6-1.el6.x86_64.rpm | 53 kB 00:00 | |
(43/102): libSM-1.2.1-2.el6.x86_64.rpm | 37 kB 00:00 | |
(44/102): libX11-1.6.0-2.2.el6.x86_64.rpm | 586 kB 00:00 | |
(45/102): libX11-common-1.6.0-2.2.el6.noarch.rpm | 192 kB 00:00 | |
(46/102): libXau-1.0.6-4.el6.x86_64.rpm | 24 kB 00:00 | |
(47/102): libXcomposite-0.4.3-4.el6.x86_64.rpm | 20 kB 00:00 | |
(48/102): libXcursor-1.1.14-2.1.el6.x86_64.rpm | 28 kB 00:00 | |
(49/102): libXdamage-1.1.3-4.el6.x86_64.rpm | 18 kB 00:00 | |
(50/102): libXext-1.3.2-2.1.el6.x86_64.rpm | 35 kB 00:00 | |
(51/102): libXfixes-5.0.1-2.1.el6.x86_64.rpm | 17 kB 00:00 | |
(52/102): libXft-2.3.1-2.el6.x86_64.rpm | 55 kB 00:00 | |
(53/102): libXi-1.7.2-2.2.el6.x86_64.rpm | 37 kB 00:00 | |
(54/102): libXinerama-1.1.3-2.1.el6.x86_64.rpm | 13 kB 00:00 | |
(55/102): libXrandr-1.4.1-2.1.el6.x86_64.rpm | 23 kB 00:00 | |
(56/102): libXrender-0.9.8-2.1.el6.x86_64.rpm | 24 kB 00:00 | |
(57/102): libXtst-1.2.2-2.1.el6.x86_64.rpm | 19 kB 00:00 | |
(58/102): libart_lgpl-2.3.20-5.1.el6.x86_64.rpm | 65 kB 00:00 | |
(59/102): libgcj-4.4.7-11.el6.x86_64.rpm | 19 MB 00:00 | |
(60/102): libgfortran-4.4.7-11.el6.x86_64.rpm | 267 kB 00:00 | |
(61/102): libgomp-4.4.7-11.el6.x86_64.rpm | 133 kB 00:00 | |
(62/102): libjpeg-turbo-1.2.1-3.el6_5.x86_64.rpm | 174 kB 00:00 | |
(63/102): libpng-1.2.49-1.el6_2.x86_64.rpm | 182 kB 00:00 | |
(64/102): libproxy-0.3.0-10.el6.x86_64.rpm | 39 kB 00:00 | |
(65/102): libproxy-bin-0.3.0-10.el6.x86_64.rpm | 9.0 kB 00:00 | |
(66/102): libproxy-python-0.3.0-10.el6.x86_64.rpm | 9.1 kB 00:00 | |
(67/102): libstdc++-devel-4.4.7-11.el6.x86_64.rpm | 1.6 MB 00:00 | |
(68/102): libthai-0.1.12-3.el6.x86_64.rpm | 183 kB 00:00 | |
(69/102): libtiff-3.9.4-10.el6_5.x86_64.rpm | 343 kB 00:00 | |
(70/102): libtool-2.2.6-15.5.el6.x86_64.rpm | 564 kB 00:00 | |
(71/102): libxcb-1.9.1-2.el6.x86_64.rpm | 110 kB 00:00 | |
(72/102): mailcap-2.1.31-2.el6.noarch.rpm | 27 kB 00:00 | |
(73/102): mpfr-2.4.1-6.el6.x86_64.rpm | 157 kB 00:00 | |
(74/102): neon-0.29.3-3.el6_4.x86_64.rpm | 119 kB 00:00 | |
(75/102): pakchois-0.4-3.2.el6.x86_64.rpm | 21 kB 00:00 | |
(76/102): pango-1.28.1-10.el6.x86_64.rpm | 351 kB 00:00 | |
(77/102): patch-2.6-6.el6.x86_64.rpm | 90 kB 00:00 | |
(78/102): patchutils-0.3.1-3.1.el6.x86_64.rpm | 95 kB 00:00 | |
(79/102): perl-Compress-Raw-Zlib-2.021-136.el6_6.1.x86_6 | 69 kB 00:00 | |
(80/102): perl-Compress-Zlib-2.021-136.el6_6.1.x86_64.rp | 45 kB 00:00 | |
(81/102): perl-HTML-Parser-3.64-2.el6.x86_64.rpm | 109 kB 00:00 | |
(82/102): perl-HTML-Tagset-3.20-4.el6.noarch.rpm | 17 kB 00:00 | |
(83/102): perl-IO-Compress-Base-2.021-136.el6_6.1.x86_64 | 69 kB 00:00 | |
(84/102): perl-IO-Compress-Zlib-2.021-136.el6_6.1.x86_64 | 135 kB 00:00 | |
(85/102): perl-URI-1.40-2.el6.noarch.rpm | 117 kB 00:00 | |
(86/102): perl-XML-Parser-2.36-7.el6.x86_64.rpm | 224 kB 00:00 | |
(87/102): perl-libwww-perl-5.833-2.el6.noarch.rpm | 387 kB 00:00 | |
(88/102): pixman-0.32.4-4.el6.x86_64.rpm | 243 kB 00:00 | |
(89/102): ppl-0.10.2-11.el6.x86_64.rpm | 1.3 MB 00:00 | |
(90/102): rcs-5.7-37.el6.x86_64.rpm | 173 kB 00:00 | |
(91/102): redhat-rpm-config-9.0.3-42.el6.centos.noarch.r | 59 kB 00:00 | |
(92/102): rpm-build-4.8.0-38.el6_6.x86_64.rpm | 127 kB 00:00 | |
(93/102): subversion-1.6.11-12.el6_6.x86_64.rpm | 2.3 MB 00:09 | |
(94/102): swig-1.3.40-6.el6.x86_64.rpm | 1.1 MB 00:00 | |
(95/102): systemtap-2.5-5.el6.x86_64.rpm | 26 kB 00:00 | |
(96/102): systemtap-client-2.5-5.el6.x86_64.rpm | 3.6 MB 00:00 | |
(97/102): systemtap-devel-2.5-5.el6.x86_64.rpm | 1.5 MB 00:00 | |
(98/102): systemtap-runtime-2.5-5.el6.x86_64.rpm | 201 kB 00:00 | |
(99/102): unzip-6.0-2.el6_6.x86_64.rpm | 149 kB 00:00 | |
(100/102): xz-4.999.9-0.5.beta.20091007git.el6.x86_64.rp | 137 kB 00:00 | |
(101/102): xz-lzma-compat-4.999.9-0.5.beta.20091007git.e | 16 kB 00:00 | |
(102/102): zip-3.0-1.el6.x86_64.rpm | 260 kB 00:00 | |
-------------------------------------------------------------------------------- | |
Total 869 kB/s | 91 MB 01:46 | |
Running rpm_check_debug | |
Running Transaction Test | |
Transaction Test Succeeded | |
Running Transaction | |
Installing : freetype-2.3.11-15.el6_6.1.x86_64 1/102 | |
Installing : fontconfig-2.8.0-5.el6.x86_64 2/102 | |
Installing : libjpeg-turbo-1.2.1-3.el6_5.x86_64 3/102 | |
Installing : libproxy-bin-0.3.0-10.el6.x86_64 4/102 | |
Installing : libproxy-python-0.3.0-10.el6.x86_64 5/102 | |
Installing : libproxy-0.3.0-10.el6.x86_64 6/102 | |
Installing : perl-URI-1.40-2.el6.noarch 7/102 | |
Installing : avahi-libs-0.6.25-15.el6.x86_64 8/102 | |
Installing : elfutils-libs-0.158-3.2.el6.x86_64 9/102 | |
Installing : mpfr-2.4.1-6.el6.x86_64 10/102 | |
Installing : 2:libpng-1.2.49-1.el6_2.x86_64 11/102 | |
Installing : libtiff-3.9.4-10.el6_5.x86_64 12/102 | |
Installing : libICE-1.0.6-1.el6.x86_64 13/102 | |
Installing : autoconf-2.63-5.1.el6.noarch 14/102 | |
Installing : automake-1.11.1-4.el6.noarch 15/102 | |
Installing : apr-1.3.9-5.el6_2.x86_64 16/102 | |
Installing : patch-2.6-6.el6.x86_64 17/102 | |
Installing : 1:perl-Compress-Raw-Zlib-2.021-136.el6_6.1.x86_64 18/102 | |
Installing : libgomp-4.4.7-11.el6.x86_64 19/102 | |
Installing : zip-3.0-1.el6.x86_64 20/102 | |
Installing : unzip-6.0-2.el6_6.x86_64 21/102 | |
Installing : atk-1.30.0-1.el6.x86_64 22/102 | |
Installing : xz-4.999.9-0.5.beta.20091007git.el6.x86_64 23/102 | |
Installing : gnutls-2.8.5-14.el6_5.x86_64 24/102 | |
Installing : perl-IO-Compress-Base-2.021-136.el6_6.1.x86_64 25/102 | |
Installing : perl-IO-Compress-Zlib-2.021-136.el6_6.1.x86_64 26/102 | |
Installing : perl-Compress-Zlib-2.021-136.el6_6.1.x86_64 27/102 | |
Installing : 1:cups-libs-1.4.2-67.el6_6.1.x86_64 28/102 | |
Installing : xz-lzma-compat-4.999.9-0.5.beta.20091007git.el6.x86_64 29/102 | |
Installing : apr-util-1.3.9-3.el6_0.1.x86_64 30/102 | |
Installing : libSM-1.2.1-2.el6.x86_64 31/102 | |
Installing : cpp-4.4.7-11.el6.x86_64 32/102 | |
Installing : elfutils-0.158-3.2.el6.x86_64 33/102 | |
Installing : jasper-libs-1.900.1-16.el6_6.3.x86_64 34/102 | |
Installing : libX11-common-1.6.0-2.2.el6.noarch 35/102 | |
Installing : systemtap-runtime-2.5-5.el6.x86_64 36/102 | |
Installing : systemtap-client-2.5-5.el6.x86_64 37/102 | |
Installing : alsa-lib-1.0.22-3.el6.x86_64 38/102 | |
Installing : libstdc++-devel-4.4.7-11.el6.x86_64 39/102 | |
Installing : libthai-0.1.12-3.el6.x86_64 40/102 | |
Installing : gettext-libs-0.17-18.el6.x86_64 41/102 | |
Installing : gdb-7.2-75.el6.x86_64 42/102 | |
Installing : cvs-1.11.23-16.el6.x86_64 43/102 | |
Installing : gettext-0.17-18.el6.x86_64 44/102 | |
Installing : ppl-0.10.2-11.el6.x86_64 45/102 | |
Installing : cloog-ppl-0.15.7-1.2.el6.x86_64 46/102 | |
Installing : kernel-devel-2.6.32-504.23.4.el6.x86_64 47/102 | |
Installing : mailcap-2.1.31-2.el6.noarch 48/102 | |
Installing : libart_lgpl-2.3.20-5.1.el6.x86_64 49/102 | |
Installing : libgfortran-4.4.7-11.el6.x86_64 50/102 | |
Installing : kernel-headers-2.6.32-504.23.4.el6.x86_64 51/102 | |
Installing : glibc-headers-2.12-1.149.el6_6.9.x86_64 52/102 | |
Installing : glibc-devel-2.12-1.149.el6_6.9.x86_64 53/102 | |
Installing : gcc-4.4.7-11.el6.x86_64 54/102 | |
Installing : systemtap-devel-2.5-5.el6.x86_64 55/102 | |
Installing : perl-HTML-Tagset-3.20-4.el6.noarch 56/102 | |
Installing : perl-HTML-Parser-3.64-2.el6.x86_64 57/102 | |
Installing : perl-libwww-perl-5.833-2.el6.noarch 58/102 | |
Installing : perl-XML-Parser-2.36-7.el6.x86_64 59/102 | |
Installing : pixman-0.32.4-4.el6.x86_64 60/102 | |
Installing : hicolor-icon-theme-0.11-1.1.el6.noarch 61/102 | |
Installing : libXau-1.0.6-4.el6.x86_64 62/102 | |
Installing : libxcb-1.9.1-2.el6.x86_64 63/102 | |
Installing : libX11-1.6.0-2.2.el6.x86_64 64/102 | |
Installing : libXrender-0.9.8-2.1.el6.x86_64 65/102 | |
Installing : libXext-1.3.2-2.1.el6.x86_64 66/102 | |
Installing : cairo-1.8.8-6.el6_6.x86_64 67/102 | |
Installing : libXfixes-5.0.1-2.1.el6.x86_64 68/102 | |
Installing : libXrandr-1.4.1-2.1.el6.x86_64 69/102 | |
Installing : libXi-1.7.2-2.2.el6.x86_64 70/102 | |
Installing : gdk-pixbuf2-2.24.1-5.el6.x86_64 71/102 | |
Installing : libXtst-1.2.2-2.1.el6.x86_64 72/102 | |
Installing : libXdamage-1.1.3-4.el6.x86_64 73/102 | |
Installing : libXcursor-1.1.14-2.1.el6.x86_64 74/102 | |
Installing : libXinerama-1.1.3-2.1.el6.x86_64 75/102 | |
Installing : libXft-2.3.1-2.el6.x86_64 76/102 | |
Installing : pango-1.28.1-10.el6.x86_64 77/102 | |
Installing : libXcomposite-0.4.3-4.el6.x86_64 78/102 | |
Installing : gtk2-2.24.23-6.el6.x86_64 79/102 | |
Installing : libgcj-4.4.7-11.el6.x86_64 80/102 | |
Installing : gettext-devel-0.17-18.el6.x86_64 81/102 | |
Installing : pakchois-0.4-3.2.el6.x86_64 82/102 | |
Installing : neon-0.29.3-3.el6_4.x86_64 83/102 | |
Installing : subversion-1.6.11-12.el6_6.x86_64 84/102 | |
Installing : intltool-0.41.0-1.1.el6.noarch 85/102 | |
Installing : systemtap-2.5-5.el6.x86_64 86/102 | |
Installing : gcc-c++-4.4.7-11.el6.x86_64 87/102 | |
Installing : libtool-2.2.6-15.5.el6.x86_64 88/102 | |
Installing : gcc-gfortran-4.4.7-11.el6.x86_64 89/102 | |
Installing : rpm-build-4.8.0-38.el6_6.x86_64 90/102 | |
Installing : byacc-1.9.20070509-7.el6.x86_64 91/102 | |
Installing : 1:doxygen-1.6.1-6.el6.x86_64 92/102 | |
Installing : indent-2.2.10-7.el6.x86_64 93/102 | |
Installing : bison-2.4.1-5.el6.x86_64 94/102 | |
Installing : diffstat-1.51-2.el6.x86_64 95/102 | |
Installing : swig-1.3.40-6.el6.x86_64 96/102 | |
Installing : redhat-rpm-config-9.0.3-42.el6.centos.noarch 97/102 | |
Installing : rcs-5.7-37.el6.x86_64 98/102 | |
Installing : ctags-5.8-2.el6.x86_64 99/102 | |
Installing : flex-2.5.35-9.el6.x86_64 100/102 | |
Installing : patchutils-0.3.1-3.1.el6.x86_64 101/102 | |
Installing : cscope-15.6-6.el6.x86_64 102/102 | |
Verifying : pakchois-0.4-3.2.el6.x86_64 1/102 | |
Verifying : cscope-15.6-6.el6.x86_64 2/102 | |
Verifying : perl-IO-Compress-Base-2.021-136.el6_6.1.x86_64 3/102 | |
Verifying : libXdamage-1.1.3-4.el6.x86_64 4/102 | |
Verifying : libSM-1.2.1-2.el6.x86_64 5/102 | |
Verifying : libXau-1.0.6-4.el6.x86_64 6/102 | |
Verifying : libproxy-0.3.0-10.el6.x86_64 7/102 | |
Verifying : subversion-1.6.11-12.el6_6.x86_64 8/102 | |
Verifying : hicolor-icon-theme-0.11-1.1.el6.noarch 9/102 | |
Verifying : patchutils-0.3.1-3.1.el6.x86_64 10/102 | |
Verifying : libproxy-bin-0.3.0-10.el6.x86_64 11/102 | |
Verifying : gnutls-2.8.5-14.el6_5.x86_64 12/102 | |
Verifying : flex-2.5.35-9.el6.x86_64 13/102 | |
Verifying : perl-XML-Parser-2.36-7.el6.x86_64 14/102 | |
Verifying : libXtst-1.2.2-2.1.el6.x86_64 15/102 | |
Verifying : perl-Compress-Zlib-2.021-136.el6_6.1.x86_64 16/102 | |
Verifying : 2:libpng-1.2.49-1.el6_2.x86_64 17/102 | |
Verifying : libXrandr-1.4.1-2.1.el6.x86_64 18/102 | |
Verifying : pixman-0.32.4-4.el6.x86_64 19/102 | |
Verifying : cpp-4.4.7-11.el6.x86_64 20/102 | |
Verifying : systemtap-client-2.5-5.el6.x86_64 21/102 | |
Verifying : glibc-devel-2.12-1.149.el6_6.9.x86_64 22/102 | |
Verifying : libgcj-4.4.7-11.el6.x86_64 23/102 | |
Verifying : xz-4.999.9-0.5.beta.20091007git.el6.x86_64 24/102 | |
Verifying : intltool-0.41.0-1.1.el6.noarch 25/102 | |
Verifying : libX11-1.6.0-2.2.el6.x86_64 26/102 | |
Verifying : pango-1.28.1-10.el6.x86_64 27/102 | |
Verifying : ctags-5.8-2.el6.x86_64 28/102 | |
Verifying : perl-libwww-perl-5.833-2.el6.noarch 29/102 | |
Verifying : atk-1.30.0-1.el6.x86_64 30/102 | |
Verifying : mpfr-2.4.1-6.el6.x86_64 31/102 | |
Verifying : libXfixes-5.0.1-2.1.el6.x86_64 32/102 | |
Verifying : cloog-ppl-0.15.7-1.2.el6.x86_64 33/102 | |
Verifying : glibc-headers-2.12-1.149.el6_6.9.x86_64 34/102 | |
Verifying : libproxy-python-0.3.0-10.el6.x86_64 35/102 | |
Verifying : perl-HTML-Tagset-3.20-4.el6.noarch 36/102 | |
Verifying : rcs-5.7-37.el6.x86_64 37/102 | |
Verifying : kernel-headers-2.6.32-504.23.4.el6.x86_64 38/102 | |
Verifying : gcc-4.4.7-11.el6.x86_64 39/102 | |
Verifying : libgfortran-4.4.7-11.el6.x86_64 40/102 | |
Verifying : unzip-6.0-2.el6_6.x86_64 41/102 | |
Verifying : neon-0.29.3-3.el6_4.x86_64 42/102 | |
Verifying : redhat-rpm-config-9.0.3-42.el6.centos.noarch 43/102 | |
Verifying : swig-1.3.40-6.el6.x86_64 44/102 | |
Verifying : libtiff-3.9.4-10.el6_5.x86_64 45/102 | |
Verifying : jasper-libs-1.900.1-16.el6_6.3.x86_64 46/102 | |
Verifying : diffstat-1.51-2.el6.x86_64 47/102 | |
Verifying : libXrender-0.9.8-2.1.el6.x86_64 48/102 | |
Verifying : libart_lgpl-2.3.20-5.1.el6.x86_64 49/102 | |
Verifying : mailcap-2.1.31-2.el6.noarch 50/102 | |
Verifying : automake-1.11.1-4.el6.noarch 51/102 | |
Verifying : cairo-1.8.8-6.el6_6.x86_64 52/102 | |
Verifying : zip-3.0-1.el6.x86_64 53/102 | |
Verifying : kernel-devel-2.6.32-504.23.4.el6.x86_64 54/102 | |
Verifying : rpm-build-4.8.0-38.el6_6.x86_64 55/102 | |
Verifying : libXcursor-1.1.14-2.1.el6.x86_64 56/102 | |
Verifying : elfutils-libs-0.158-3.2.el6.x86_64 57/102 | |
Verifying : libgomp-4.4.7-11.el6.x86_64 58/102 | |
Verifying : freetype-2.3.11-15.el6_6.1.x86_64 59/102 | |
Verifying : apr-util-1.3.9-3.el6_0.1.x86_64 60/102 | |
Verifying : perl-HTML-Parser-3.64-2.el6.x86_64 61/102 | |
Verifying : 1:cups-libs-1.4.2-67.el6_6.1.x86_64 62/102 | |
Verifying : gcc-c++-4.4.7-11.el6.x86_64 63/102 | |
Verifying : gtk2-2.24.23-6.el6.x86_64 64/102 | |
Verifying : 1:perl-Compress-Raw-Zlib-2.021-136.el6_6.1.x86_64 65/102 | |
Verifying : ppl-0.10.2-11.el6.x86_64 66/102 | |
Verifying : gettext-0.17-18.el6.x86_64 67/102 | |
Verifying : patch-2.6-6.el6.x86_64 68/102 | |
Verifying : systemtap-2.5-5.el6.x86_64 69/102 | |
Verifying : gettext-devel-0.17-18.el6.x86_64 70/102 | |
Verifying : cvs-1.11.23-16.el6.x86_64 71/102 | |
Verifying : gdb-7.2-75.el6.x86_64 72/102 | |
Verifying : libXcomposite-0.4.3-4.el6.x86_64 73/102 | |
Verifying : libtool-2.2.6-15.5.el6.x86_64 74/102 | |
Verifying : gdk-pixbuf2-2.24.1-5.el6.x86_64 75/102 | |
Verifying : bison-2.4.1-5.el6.x86_64 76/102 | |
Verifying : elfutils-0.158-3.2.el6.x86_64 77/102 | |
Verifying : gettext-libs-0.17-18.el6.x86_64 78/102 | |
Verifying : indent-2.2.10-7.el6.x86_64 79/102 | |
Verifying : fontconfig-2.8.0-5.el6.x86_64 80/102 | |
Verifying : systemtap-devel-2.5-5.el6.x86_64 81/102 | |
Verifying : libthai-0.1.12-3.el6.x86_64 82/102 | |
Verifying : libstdc++-devel-4.4.7-11.el6.x86_64 83/102 | |
Verifying : libXext-1.3.2-2.1.el6.x86_64 84/102 | |
Verifying : libxcb-1.9.1-2.el6.x86_64 85/102 | |
Verifying : avahi-libs-0.6.25-15.el6.x86_64 86/102 | |
Verifying : libXft-2.3.1-2.el6.x86_64 87/102 | |
Verifying : 1:doxygen-1.6.1-6.el6.x86_64 88/102 | |
Verifying : xz-lzma-compat-4.999.9-0.5.beta.20091007git.el6.x86_64 89/102 | |
Verifying : alsa-lib-1.0.22-3.el6.x86_64 90/102 | |
Verifying : apr-1.3.9-5.el6_2.x86_64 91/102 | |
Verifying : libXinerama-1.1.3-2.1.el6.x86_64 92/102 | |
Verifying : perl-URI-1.40-2.el6.noarch 93/102 | |
Verifying : autoconf-2.63-5.1.el6.noarch 94/102 | |
Verifying : libjpeg-turbo-1.2.1-3.el6_5.x86_64 95/102 | |
Verifying : byacc-1.9.20070509-7.el6.x86_64 96/102 | |
Verifying : libXi-1.7.2-2.2.el6.x86_64 97/102 | |
Verifying : libICE-1.0.6-1.el6.x86_64 98/102 | |
Verifying : perl-IO-Compress-Zlib-2.021-136.el6_6.1.x86_64 99/102 | |
Verifying : systemtap-runtime-2.5-5.el6.x86_64 100/102 | |
Verifying : gcc-gfortran-4.4.7-11.el6.x86_64 101/102 | |
Verifying : libX11-common-1.6.0-2.2.el6.noarch 102/102 | |
Installed: | |
autoconf.noarch 0:2.63-5.1.el6 | |
automake.noarch 0:1.11.1-4.el6 | |
bison.x86_64 0:2.4.1-5.el6 | |
byacc.x86_64 0:1.9.20070509-7.el6 | |
cscope.x86_64 0:15.6-6.el6 | |
ctags.x86_64 0:5.8-2.el6 | |
cvs.x86_64 0:1.11.23-16.el6 | |
diffstat.x86_64 0:1.51-2.el6 | |
doxygen.x86_64 1:1.6.1-6.el6 | |
elfutils.x86_64 0:0.158-3.2.el6 | |
flex.x86_64 0:2.5.35-9.el6 | |
gcc.x86_64 0:4.4.7-11.el6 | |
gcc-c++.x86_64 0:4.4.7-11.el6 | |
gcc-gfortran.x86_64 0:4.4.7-11.el6 | |
gettext.x86_64 0:0.17-18.el6 | |
indent.x86_64 0:2.2.10-7.el6 | |
intltool.noarch 0:0.41.0-1.1.el6 | |
libtool.x86_64 0:2.2.6-15.5.el6 | |
patch.x86_64 0:2.6-6.el6 | |
patchutils.x86_64 0:0.3.1-3.1.el6 | |
rcs.x86_64 0:5.7-37.el6 | |
redhat-rpm-config.noarch 0:9.0.3-42.el6.centos | |
rpm-build.x86_64 0:4.8.0-38.el6_6 | |
subversion.x86_64 0:1.6.11-12.el6_6 | |
swig.x86_64 0:1.3.40-6.el6 | |
systemtap.x86_64 0:2.5-5.el6 | |
Dependency Installed: | |
alsa-lib.x86_64 0:1.0.22-3.el6 | |
apr.x86_64 0:1.3.9-5.el6_2 | |
apr-util.x86_64 0:1.3.9-3.el6_0.1 | |
atk.x86_64 0:1.30.0-1.el6 | |
avahi-libs.x86_64 0:0.6.25-15.el6 | |
cairo.x86_64 0:1.8.8-6.el6_6 | |
cloog-ppl.x86_64 0:0.15.7-1.2.el6 | |
cpp.x86_64 0:4.4.7-11.el6 | |
cups-libs.x86_64 1:1.4.2-67.el6_6.1 | |
elfutils-libs.x86_64 0:0.158-3.2.el6 | |
fontconfig.x86_64 0:2.8.0-5.el6 | |
freetype.x86_64 0:2.3.11-15.el6_6.1 | |
gdb.x86_64 0:7.2-75.el6 | |
gdk-pixbuf2.x86_64 0:2.24.1-5.el6 | |
gettext-devel.x86_64 0:0.17-18.el6 | |
gettext-libs.x86_64 0:0.17-18.el6 | |
glibc-devel.x86_64 0:2.12-1.149.el6_6.9 | |
glibc-headers.x86_64 0:2.12-1.149.el6_6.9 | |
gnutls.x86_64 0:2.8.5-14.el6_5 | |
gtk2.x86_64 0:2.24.23-6.el6 | |
hicolor-icon-theme.noarch 0:0.11-1.1.el6 | |
jasper-libs.x86_64 0:1.900.1-16.el6_6.3 | |
kernel-devel.x86_64 0:2.6.32-504.23.4.el6 | |
kernel-headers.x86_64 0:2.6.32-504.23.4.el6 | |
libICE.x86_64 0:1.0.6-1.el6 | |
libSM.x86_64 0:1.2.1-2.el6 | |
libX11.x86_64 0:1.6.0-2.2.el6 | |
libX11-common.noarch 0:1.6.0-2.2.el6 | |
libXau.x86_64 0:1.0.6-4.el6 | |
libXcomposite.x86_64 0:0.4.3-4.el6 | |
libXcursor.x86_64 0:1.1.14-2.1.el6 | |
libXdamage.x86_64 0:1.1.3-4.el6 | |
libXext.x86_64 0:1.3.2-2.1.el6 | |
libXfixes.x86_64 0:5.0.1-2.1.el6 | |
libXft.x86_64 0:2.3.1-2.el6 | |
libXi.x86_64 0:1.7.2-2.2.el6 | |
libXinerama.x86_64 0:1.1.3-2.1.el6 | |
libXrandr.x86_64 0:1.4.1-2.1.el6 | |
libXrender.x86_64 0:0.9.8-2.1.el6 | |
libXtst.x86_64 0:1.2.2-2.1.el6 | |
libart_lgpl.x86_64 0:2.3.20-5.1.el6 | |
libgcj.x86_64 0:4.4.7-11.el6 | |
libgfortran.x86_64 0:4.4.7-11.el6 | |
libgomp.x86_64 0:4.4.7-11.el6 | |
libjpeg-turbo.x86_64 0:1.2.1-3.el6_5 | |
libpng.x86_64 2:1.2.49-1.el6_2 | |
libproxy.x86_64 0:0.3.0-10.el6 | |
libproxy-bin.x86_64 0:0.3.0-10.el6 | |
libproxy-python.x86_64 0:0.3.0-10.el6 | |
libstdc++-devel.x86_64 0:4.4.7-11.el6 | |
libthai.x86_64 0:0.1.12-3.el6 | |
libtiff.x86_64 0:3.9.4-10.el6_5 | |
libxcb.x86_64 0:1.9.1-2.el6 | |
mailcap.noarch 0:2.1.31-2.el6 | |
mpfr.x86_64 0:2.4.1-6.el6 | |
neon.x86_64 0:0.29.3-3.el6_4 | |
pakchois.x86_64 0:0.4-3.2.el6 | |
pango.x86_64 0:1.28.1-10.el6 | |
perl-Compress-Raw-Zlib.x86_64 1:2.021-136.el6_6.1 | |
perl-Compress-Zlib.x86_64 0:2.021-136.el6_6.1 | |
perl-HTML-Parser.x86_64 0:3.64-2.el6 | |
perl-HTML-Tagset.noarch 0:3.20-4.el6 | |
perl-IO-Compress-Base.x86_64 0:2.021-136.el6_6.1 | |
perl-IO-Compress-Zlib.x86_64 0:2.021-136.el6_6.1 | |
perl-URI.noarch 0:1.40-2.el6 | |
perl-XML-Parser.x86_64 0:2.36-7.el6 | |
perl-libwww-perl.noarch 0:5.833-2.el6 | |
pixman.x86_64 0:0.32.4-4.el6 | |
ppl.x86_64 0:0.10.2-11.el6 | |
systemtap-client.x86_64 0:2.5-5.el6 | |
systemtap-devel.x86_64 0:2.5-5.el6 | |
systemtap-runtime.x86_64 0:2.5-5.el6 | |
unzip.x86_64 0:6.0-2.el6_6 | |
xz.x86_64 0:4.999.9-0.5.beta.20091007git.el6 | |
xz-lzma-compat.x86_64 0:4.999.9-0.5.beta.20091007git.el6 | |
zip.x86_64 0:3.0-1.el6 | |
Complete! | |
rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm: (sha1) dsa sha1 md5 gpg OK | |
Loaded plugins: fastestmirror | |
Setting up Install Process | |
Loading mirror speeds from cached hostfile | |
* base: mirror.umd.edu | |
* extras: mirrors.advancedhosters.com | |
* rpmforge: mirror.us.leaseweb.net | |
* updates: mirror.cs.vt.edu | |
rpmforge | 1.9 kB 00:00 | |
rpmforge/primary_db | 2.7 MB 00:00 | |
No package zlib-dev available. | |
Package xz-libs-4.999.9-0.5.beta.20091007git.el6.x86_64 already installed and latest version | |
Package openssh-server-5.3p1-104.el6_6.1.x86_64 already installed and latest version | |
Package openssh-clients-5.3p1-104.el6_6.1.x86_64 already installed and latest version | |
Package 4:perl-5.10.1-136.el6_6.1.x86_64 already installed and latest version | |
Package wget-1.12-5.el6_6.1.x86_64 already installed and latest version | |
Package gcc-4.4.7-11.el6.x86_64 already installed and latest version | |
Resolving Dependencies | |
--> Running transaction check | |
---> Package aspell-devel.x86_64 12:0.60.6-12.el6 will be installed | |
--> Processing Dependency: aspell = 12:0.60.6-12.el6 for package: 12:aspell-devel-0.60.6-12.el6.x86_64 | |
--> Processing Dependency: libpspell.so.15()(64bit) for package: 12:aspell-devel-0.60.6-12.el6.x86_64 | |
--> Processing Dependency: libaspell.so.15()(64bit) for package: 12:aspell-devel-0.60.6-12.el6.x86_64 | |
---> Package bzip2-devel.x86_64 0:1.0.5-7.el6_0 will be installed | |
---> Package freetype-devel.x86_64 0:2.3.11-15.el6_6.1 will be installed | |
--> Processing Dependency: zlib-devel for package: freetype-devel-2.3.11-15.el6_6.1.x86_64 | |
---> Package gmp-devel.x86_64 0:4.3.1-7.el6_2.2 will be installed | |
---> Package libXpm-devel.x86_64 0:3.5.10-2.el6 will be installed | |
--> Processing Dependency: libXpm = 3.5.10-2.el6 for package: libXpm-devel-3.5.10-2.el6.x86_64 | |
--> Processing Dependency: pkgconfig(x11) for package: libXpm-devel-3.5.10-2.el6.x86_64 | |
--> Processing Dependency: libXt.so.6()(64bit) for package: libXpm-devel-3.5.10-2.el6.x86_64 | |
--> Processing Dependency: libXpm.so.4()(64bit) for package: libXpm-devel-3.5.10-2.el6.x86_64 | |
---> Package libc-client-devel.i686 0:2007e-11.el6 will be installed | |
--> Processing Dependency: libc-client = 2007e-11.el6 for package: libc-client-devel-2007e-11.el6.i686 | |
--> Processing Dependency: libc-client.so.2007 for package: libc-client-devel-2007e-11.el6.i686 | |
---> Package libc-client-devel.x86_64 0:2007e-11.el6 will be installed | |
---> Package libcurl-devel.x86_64 0:7.19.7-40.el6_6.4 will be installed | |
--> Processing Dependency: libidn-devel for package: libcurl-devel-7.19.7-40.el6_6.4.x86_64 | |
---> Package libicu-devel.x86_64 0:4.2.1-9.1.el6_2 will be installed | |
--> Processing Dependency: libicu = 4.2.1-9.1.el6_2 for package: libicu-devel-4.2.1-9.1.el6_2.x86_64 | |
--> Processing Dependency: libicuuc.so.42()(64bit) for package: libicu-devel-4.2.1-9.1.el6_2.x86_64 | |
--> Processing Dependency: libicutu.so.42()(64bit) for package: libicu-devel-4.2.1-9.1.el6_2.x86_64 | |
--> Processing Dependency: libiculx.so.42()(64bit) for package: libicu-devel-4.2.1-9.1.el6_2.x86_64 | |
--> Processing Dependency: libicule.so.42()(64bit) for package: libicu-devel-4.2.1-9.1.el6_2.x86_64 | |
--> Processing Dependency: libicuio.so.42()(64bit) for package: libicu-devel-4.2.1-9.1.el6_2.x86_64 | |
--> Processing Dependency: libicui18n.so.42()(64bit) for package: libicu-devel-4.2.1-9.1.el6_2.x86_64 | |
--> Processing Dependency: libicudata.so.42()(64bit) for package: libicu-devel-4.2.1-9.1.el6_2.x86_64 | |
---> Package libjpeg-turbo-devel.x86_64 0:1.2.1-3.el6_5 will be installed | |
---> Package libmcrypt-devel.x86_64 0:2.5.7-1.2.el6.rf will be installed | |
--> Processing Dependency: libmcrypt = 2.5.7-1.2.el6.rf for package: libmcrypt-devel-2.5.7-1.2.el6.rf.x86_64 | |
--> Processing Dependency: libmcrypt.so.4()(64bit) for package: libmcrypt-devel-2.5.7-1.2.el6.rf.x86_64 | |
---> Package libpng-devel.x86_64 2:1.2.49-1.el6_2 will be installed | |
---> Package libtidy-devel.x86_64 0:0.99.0-19.20070615.1.el6 will be installed | |
--> Processing Dependency: libtidy = 0.99.0-19.20070615.1.el6 for package: libtidy-devel-0.99.0-19.20070615.1.el6.x86_64 | |
--> Processing Dependency: libtidy-0.99.so.0()(64bit) for package: libtidy-devel-0.99.0-19.20070615.1.el6.x86_64 | |
---> Package libvpx-devel.x86_64 0:1.3.0-5.el6_5 will be installed | |
--> Processing Dependency: libvpx(x86-64) = 1.3.0-5.el6_5 for package: libvpx-devel-1.3.0-5.el6_5.x86_64 | |
--> Processing Dependency: libvpx.so.1()(64bit) for package: libvpx-devel-1.3.0-5.el6_5.x86_64 | |
---> Package libxml2-devel.x86_64 0:2.7.6-17.el6_6.1 will be installed | |
---> Package openssl-devel.x86_64 0:1.0.1e-30.el6.11 will be installed | |
--> Processing Dependency: krb5-devel for package: openssl-devel-1.0.1e-30.el6.11.x86_64 | |
---> Package pcre-devel.x86_64 0:7.8-6.el6 will be installed | |
---> Package readline-devel.x86_64 0:6.0-4.el6 will be installed | |
--> Processing Dependency: ncurses-devel for package: readline-devel-6.0-4.el6.x86_64 | |
---> Package sqlite-devel.x86_64 0:3.6.20-1.el6 will be installed | |
---> Package t1lib-devel.x86_64 0:5.1.2-6.el6_2.1 will be installed | |
--> Processing Dependency: t1lib = 5.1.2-6.el6_2.1 for package: t1lib-devel-5.1.2-6.el6_2.1.x86_64 | |
--> Processing Dependency: libt1x.so.5()(64bit) for package: t1lib-devel-5.1.2-6.el6_2.1.x86_64 | |
--> Processing Dependency: libt1.so.5()(64bit) for package: t1lib-devel-5.1.2-6.el6_2.1.x86_64 | |
--> Running transaction check | |
---> Package aspell.x86_64 12:0.60.6-12.el6 will be installed | |
---> Package krb5-devel.x86_64 0:1.10.3-37.el6_6 will be installed | |
--> Processing Dependency: libselinux-devel for package: krb5-devel-1.10.3-37.el6_6.x86_64 | |
--> Processing Dependency: libcom_err-devel for package: krb5-devel-1.10.3-37.el6_6.x86_64 | |
--> Processing Dependency: keyutils-libs-devel for package: krb5-devel-1.10.3-37.el6_6.x86_64 | |
---> Package libX11-devel.x86_64 0:1.6.0-2.2.el6 will be installed | |
--> Processing Dependency: pkgconfig(xcb) >= 1.1.92 for package: libX11-devel-1.6.0-2.2.el6.x86_64 | |
--> Processing Dependency: pkgconfig(xproto) for package: libX11-devel-1.6.0-2.2.el6.x86_64 | |
--> Processing Dependency: pkgconfig(xcb) for package: libX11-devel-1.6.0-2.2.el6.x86_64 | |
--> Processing Dependency: pkgconfig(kbproto) for package: libX11-devel-1.6.0-2.2.el6.x86_64 | |
---> Package libXpm.x86_64 0:3.5.10-2.el6 will be installed | |
---> Package libXt.x86_64 0:1.1.4-6.1.el6 will be installed | |
---> Package libc-client.i686 0:2007e-11.el6 will be installed | |
--> Processing Dependency: libssl.so.10 for package: libc-client-2007e-11.el6.i686 | |
--> Processing Dependency: libpam.so.0(LIBPAM_1.0) for package: libc-client-2007e-11.el6.i686 | |
--> Processing Dependency: libpam.so.0 for package: libc-client-2007e-11.el6.i686 | |
--> Processing Dependency: libkrb5.so.3(krb5_3_MIT) for package: libc-client-2007e-11.el6.i686 | |
--> Processing Dependency: libkrb5.so.3 for package: libc-client-2007e-11.el6.i686 | |
--> Processing Dependency: libgssapi_krb5.so.2(gssapi_krb5_2_MIT) for package: libc-client-2007e-11.el6.i686 | |
--> Processing Dependency: libgssapi_krb5.so.2 for package: libc-client-2007e-11.el6.i686 | |
--> Processing Dependency: libdl.so.2 for package: libc-client-2007e-11.el6.i686 | |
--> Processing Dependency: libcrypto.so.10 for package: libc-client-2007e-11.el6.i686 | |
--> Processing Dependency: libcom_err.so.2 for package: libc-client-2007e-11.el6.i686 | |
--> Processing Dependency: libc.so.6(GLIBC_2.4) for package: libc-client-2007e-11.el6.i686 | |
---> Package libc-client.x86_64 0:2007e-11.el6 will be installed | |
---> Package libicu.x86_64 0:4.2.1-9.1.el6_2 will be installed | |
---> Package libidn-devel.x86_64 0:1.18-2.el6 will be installed | |
---> Package libmcrypt.x86_64 0:2.5.7-1.2.el6.rf will be installed | |
---> Package libtidy.x86_64 0:0.99.0-19.20070615.1.el6 will be installed | |
---> Package libvpx.x86_64 0:1.3.0-5.el6_5 will be installed | |
---> Package ncurses-devel.x86_64 0:5.7-3.20090208.el6 will be installed | |
---> Package t1lib.x86_64 0:5.1.2-6.el6_2.1 will be installed | |
---> Package zlib-devel.x86_64 0:1.2.3-29.el6 will be installed | |
--> Running transaction check | |
---> Package glibc.i686 0:2.12-1.149.el6_6.9 will be installed | |
--> Processing Dependency: libfreebl3.so(NSSRAWHASH_3.12.3) for package: glibc-2.12-1.149.el6_6.9.i686 | |
--> Processing Dependency: libfreebl3.so for package: glibc-2.12-1.149.el6_6.9.i686 | |
---> Package keyutils-libs-devel.x86_64 0:1.4-5.el6 will be installed | |
---> Package krb5-libs.i686 0:1.10.3-37.el6_6 will be installed | |
--> Processing Dependency: libselinux.so.1 for package: krb5-libs-1.10.3-37.el6_6.i686 | |
--> Processing Dependency: libkeyutils.so.1(KEYUTILS_0.3) for package: krb5-libs-1.10.3-37.el6_6.i686 | |
--> Processing Dependency: libkeyutils.so.1 for package: krb5-libs-1.10.3-37.el6_6.i686 | |
---> Package libcom_err.i686 0:1.41.12-21.el6 will be installed | |
---> Package libcom_err-devel.x86_64 0:1.41.12-21.el6 will be installed | |
---> Package libselinux-devel.x86_64 0:2.0.94-5.8.el6 will be installed | |
--> Processing Dependency: libsepol-devel >= 2.0.32-1 for package: libselinux-devel-2.0.94-5.8.el6.x86_64 | |
--> Processing Dependency: pkgconfig(libsepol) for package: libselinux-devel-2.0.94-5.8.el6.x86_64 | |
---> Package libxcb-devel.x86_64 0:1.9.1-2.el6 will be installed | |
--> Processing Dependency: pkgconfig(xau) >= 0.99.2 for package: libxcb-devel-1.9.1-2.el6.x86_64 | |
---> Package openssl.i686 0:1.0.1e-30.el6.11 will be installed | |
--> Processing Dependency: libz.so.1 for package: openssl-1.0.1e-30.el6.11.i686 | |
---> Package pam.i686 0:1.1.1-20.el6 will be installed | |
--> Processing Dependency: libdb-4.7.so for package: pam-1.1.1-20.el6.i686 | |
--> Processing Dependency: libcrack.so.2 for package: pam-1.1.1-20.el6.i686 | |
--> Processing Dependency: libaudit.so.1 for package: pam-1.1.1-20.el6.i686 | |
---> Package xorg-x11-proto-devel.noarch 0:7.7-9.el6 will be installed | |
--> Running transaction check | |
---> Package audit-libs.i686 0:2.3.7-5.el6 will be installed | |
---> Package cracklib.i686 0:2.8.16-4.el6 will be installed | |
---> Package db4.i686 0:4.7.25-19.el6_6 will be installed | |
---> Package keyutils-libs.i686 0:1.4-5.el6 will be installed | |
---> Package libXau-devel.x86_64 0:1.0.6-4.el6 will be installed | |
---> Package libselinux.i686 0:2.0.94-5.8.el6 will be installed | |
---> Package libsepol-devel.x86_64 0:2.0.41-4.el6 will be installed | |
---> Package nss-softokn-freebl.i686 0:3.14.3-22.el6_6 will be installed | |
---> Package zlib.i686 0:1.2.3-29.el6 will be installed | |
--> Finished Dependency Resolution | |
Dependencies Resolved | |
================================================================================ | |
Package Arch Version Repository Size | |
================================================================================ | |
Installing: | |
aspell-devel x86_64 12:0.60.6-12.el6 base 46 k | |
bzip2-devel x86_64 1.0.5-7.el6_0 base 250 k | |
freetype-devel x86_64 2.3.11-15.el6_6.1 updates 365 k | |
gmp-devel x86_64 4.3.1-7.el6_2.2 base 171 k | |
libXpm-devel x86_64 3.5.10-2.el6 base 33 k | |
libc-client-devel i686 2007e-11.el6 base 56 k | |
libc-client-devel x86_64 2007e-11.el6 base 56 k | |
libcurl-devel x86_64 7.19.7-40.el6_6.4 updates 245 k | |
libicu-devel x86_64 4.2.1-9.1.el6_2 base 617 k | |
libjpeg-turbo-devel x86_64 1.2.1-3.el6_5 base 96 k | |
libmcrypt-devel x86_64 2.5.7-1.2.el6.rf rpmforge 115 k | |
libpng-devel x86_64 2:1.2.49-1.el6_2 base 112 k | |
libtidy-devel x86_64 0.99.0-19.20070615.1.el6 base 97 k | |
libvpx-devel x86_64 1.3.0-5.el6_5 base 209 k | |
libxml2-devel x86_64 2.7.6-17.el6_6.1 updates 1.1 M | |
openssl-devel x86_64 1.0.1e-30.el6.11 updates 1.2 M | |
pcre-devel x86_64 7.8-6.el6 base 318 k | |
readline-devel x86_64 6.0-4.el6 base 134 k | |
sqlite-devel x86_64 3.6.20-1.el6 base 81 k | |
t1lib-devel x86_64 5.1.2-6.el6_2.1 base 522 k | |
Installing for dependencies: | |
aspell x86_64 12:0.60.6-12.el6 base 648 k | |
audit-libs i686 2.3.7-5.el6 base 72 k | |
cracklib i686 2.8.16-4.el6 base 70 k | |
db4 i686 4.7.25-19.el6_6 updates 580 k | |
glibc i686 2.12-1.149.el6_6.9 updates 4.3 M | |
keyutils-libs i686 1.4-5.el6 base 20 k | |
keyutils-libs-devel x86_64 1.4-5.el6 base 29 k | |
krb5-devel x86_64 1.10.3-37.el6_6 updates 499 k | |
krb5-libs i686 1.10.3-37.el6_6 updates 773 k | |
libX11-devel x86_64 1.6.0-2.2.el6 base 982 k | |
libXau-devel x86_64 1.0.6-4.el6 base 14 k | |
libXpm x86_64 3.5.10-2.el6 base 51 k | |
libXt x86_64 1.1.4-6.1.el6 base 165 k | |
libc-client i686 2007e-11.el6 base 524 k | |
libc-client x86_64 2007e-11.el6 base 515 k | |
libcom_err i686 1.41.12-21.el6 base 37 k | |
libcom_err-devel x86_64 1.41.12-21.el6 base 32 k | |
libicu x86_64 4.2.1-9.1.el6_2 base 4.9 M | |
libidn-devel x86_64 1.18-2.el6 base 137 k | |
libmcrypt x86_64 2.5.7-1.2.el6.rf rpmforge 196 k | |
libselinux i686 2.0.94-5.8.el6 base 109 k | |
libselinux-devel x86_64 2.0.94-5.8.el6 base 137 k | |
libsepol-devel x86_64 2.0.41-4.el6 base 64 k | |
libtidy x86_64 0.99.0-19.20070615.1.el6 base 127 k | |
libvpx x86_64 1.3.0-5.el6_5 base 486 k | |
libxcb-devel x86_64 1.9.1-2.el6 base 1.0 M | |
ncurses-devel x86_64 5.7-3.20090208.el6 base 642 k | |
nss-softokn-freebl i686 3.14.3-22.el6_6 updates 157 k | |
openssl i686 1.0.1e-30.el6.11 updates 1.5 M | |
pam i686 1.1.1-20.el6 base 660 k | |
t1lib x86_64 5.1.2-6.el6_2.1 base 160 k | |
xorg-x11-proto-devel noarch 7.7-9.el6 base 286 k | |
zlib i686 1.2.3-29.el6 base 73 k | |
zlib-devel x86_64 1.2.3-29.el6 base 44 k | |
Transaction Summary | |
================================================================================ | |
Install 54 Package(s) | |
Total download size: 26 M | |
Installed size: 85 M | |
Downloading Packages: | |
(1/54): aspell-0.60.6-12.el6.x86_64.rpm | 648 kB 00:00 | |
(2/54): aspell-devel-0.60.6-12.el6.x86_64.rpm | 46 kB 00:00 | |
(3/54): audit-libs-2.3.7-5.el6.i686.rpm | 72 kB 00:00 | |
(4/54): bzip2-devel-1.0.5-7.el6_0.x86_64.rpm | 250 kB 00:00 | |
(5/54): cracklib-2.8.16-4.el6.i686.rpm | 70 kB 00:00 | |
(6/54): db4-4.7.25-19.el6_6.i686.rpm | 580 kB 00:03 | |
(7/54): freetype-devel-2.3.11-15.el6_6.1.x86_64.rpm | 365 kB 00:01 | |
(8/54): glibc-2.12-1.149.el6_6.9.i686.rpm | 4.3 MB 00:27 | |
(9/54): gmp-devel-4.3.1-7.el6_2.2.x86_64.rpm | 171 kB 00:00 | |
(10/54): keyutils-libs-1.4-5.el6.i686.rpm | 20 kB 00:00 | |
(11/54): keyutils-libs-devel-1.4-5.el6.x86_64.rpm | 29 kB 00:00 | |
(12/54): krb5-devel-1.10.3-37.el6_6.x86_64.rpm | 499 kB 00:03 | |
(13/54): krb5-libs-1.10.3-37.el6_6.i686.rpm | 773 kB 00:02 | |
(14/54): libX11-devel-1.6.0-2.2.el6.x86_64.rpm | 982 kB 00:00 | |
(15/54): libXau-devel-1.0.6-4.el6.x86_64.rpm | 14 kB 00:00 | |
(16/54): libXpm-3.5.10-2.el6.x86_64.rpm | 51 kB 00:00 | |
(17/54): libXpm-devel-3.5.10-2.el6.x86_64.rpm | 33 kB 00:00 | |
(18/54): libXt-1.1.4-6.1.el6.x86_64.rpm | 165 kB 00:00 | |
(19/54): libc-client-2007e-11.el6.i686.rpm | 524 kB 00:00 | |
(20/54): libc-client-2007e-11.el6.x86_64.rpm | 515 kB 00:00 | |
(21/54): libc-client-devel-2007e-11.el6.i686.rpm | 56 kB 00:00 | |
(22/54): libc-client-devel-2007e-11.el6.x86_64.rpm | 56 kB 00:00 | |
(23/54): libcom_err-1.41.12-21.el6.i686.rpm | 37 kB 00:00 | |
(24/54): libcom_err-devel-1.41.12-21.el6.x86_64.rpm | 32 kB 00:00 | |
(25/54): libcurl-devel-7.19.7-40.el6_6.4.x86_64.rpm | 245 kB 00:01 | |
(26/54): libicu-4.2.1-9.1.el6_2.x86_64.rpm | 4.9 MB 00:00 | |
(27/54): libicu-devel-4.2.1-9.1.el6_2.x86_64.rpm | 617 kB 00:00 | |
(28/54): libidn-devel-1.18-2.el6.x86_64.rpm | 137 kB 00:00 | |
(29/54): libjpeg-turbo-devel-1.2.1-3.el6_5.x86_64.rpm | 96 kB 00:00 | |
(30/54): libmcrypt-2.5.7-1.2.el6.rf.x86_64.rpm | 196 kB 00:00 | |
(31/54): libmcrypt-devel-2.5.7-1.2.el6.rf.x86_64.rpm | 115 kB 00:00 | |
(32/54): libpng-devel-1.2.49-1.el6_2.x86_64.rpm | 112 kB 00:00 | |
(33/54): libselinux-2.0.94-5.8.el6.i686.rpm | 109 kB 00:00 | |
(34/54): libselinux-devel-2.0.94-5.8.el6.x86_64.rpm | 137 kB 00:00 | |
(35/54): libsepol-devel-2.0.41-4.el6.x86_64.rpm | 64 kB 00:00 | |
(36/54): libtidy-0.99.0-19.20070615.1.el6.x86_64.rpm | 127 kB 00:00 | |
(37/54): libtidy-devel-0.99.0-19.20070615.1.el6.x86_64.r | 97 kB 00:00 | |
(38/54): libvpx-1.3.0-5.el6_5.x86_64.rpm | 486 kB 00:00 | |
(39/54): libvpx-devel-1.3.0-5.el6_5.x86_64.rpm | 209 kB 00:00 | |
(40/54): libxcb-devel-1.9.1-2.el6.x86_64.rpm | 1.0 MB 00:00 | |
(41/54): libxml2-devel-2.7.6-17.el6_6.1.x86_64.rpm | 1.1 MB 00:05 | |
(42/54): ncurses-devel-5.7-3.20090208.el6.x86_64.rpm | 642 kB 00:00 | |
(43/54): nss-softokn-freebl-3.14.3-22.el6_6.i686.rpm | 157 kB 00:01 | |
(44/54): openssl-1.0.1e-30.el6.11.i686.rpm | 1.5 MB 00:04 | |
(45/54): openssl-devel-1.0.1e-30.el6.11.x86_64.rpm | 1.2 MB 00:07 | |
(46/54): pam-1.1.1-20.el6.i686.rpm | 660 kB 00:00 | |
(47/54): pcre-devel-7.8-6.el6.x86_64.rpm | 318 kB 00:00 | |
(48/54): readline-devel-6.0-4.el6.x86_64.rpm | 134 kB 00:00 | |
(49/54): sqlite-devel-3.6.20-1.el6.x86_64.rpm | 81 kB 00:00 | |
(50/54): t1lib-5.1.2-6.el6_2.1.x86_64.rpm | 160 kB 00:00 | |
(51/54): t1lib-devel-5.1.2-6.el6_2.1.x86_64.rpm | 522 kB 00:00 | |
(52/54): xorg-x11-proto-devel-7.7-9.el6.noarch.rpm | 286 kB 00:00 | |
(53/54): zlib-1.2.3-29.el6.i686.rpm | 73 kB 00:00 | |
(54/54): zlib-devel-1.2.3-29.el6.x86_64.rpm | 44 kB 00:00 | |
-------------------------------------------------------------------------------- | |
Total 418 kB/s | 26 MB 01:02 | |
Running rpm_check_debug | |
Running Transaction Test | |
Transaction Test Succeeded | |
Running Transaction | |
Warning: RPMDB altered outside of yum. | |
Installing : xorg-x11-proto-devel-7.7-9.el6.noarch 1/54 | |
Installing : libXau-devel-1.0.6-4.el6.x86_64 2/54 | |
Installing : libxcb-devel-1.9.1-2.el6.x86_64 3/54 | |
Installing : libX11-devel-1.6.0-2.2.el6.x86_64 4/54 | |
Installing : ncurses-devel-5.7-3.20090208.el6.x86_64 5/54 | |
Installing : libidn-devel-1.18-2.el6.x86_64 6/54 | |
Installing : libsepol-devel-2.0.41-4.el6.x86_64 7/54 | |
Installing : libcurl-devel-7.19.7-40.el6_6.4.x86_64 8/54 | |
Installing : readline-devel-6.0-4.el6.x86_64 9/54 | |
Installing : sqlite-devel-3.6.20-1.el6.x86_64 10/54 | |
Installing : pcre-devel-7.8-6.el6.x86_64 11/54 | |
Installing : bzip2-devel-1.0.5-7.el6_0.x86_64 12/54 | |
Installing : gmp-devel-4.3.1-7.el6_2.2.x86_64 13/54 | |
Installing : libjpeg-turbo-devel-1.2.1-3.el6_5.x86_64 14/54 | |
Installing : glibc-2.12-1.149.el6_6.9.i686 15/54 | |
Installing : nss-softokn-freebl-3.14.3-22.el6_6.i686 16/54 | |
Installing : libcom_err-1.41.12-21.el6.i686 17/54 | |
Installing : libc-client-2007e-11.el6.x86_64 18/54 | |
Installing : libcom_err-devel-1.41.12-21.el6.x86_64 19/54 | |
Installing : libtidy-0.99.0-19.20070615.1.el6.x86_64 20/54 | |
Installing : libXpm-3.5.10-2.el6.x86_64 21/54 | |
Installing : 12:aspell-0.60.6-12.el6.x86_64 22/54 | |
Installing : libmcrypt-2.5.7-1.2.el6.rf.x86_64 23/54 | |
Installing : libXt-1.1.4-6.1.el6.x86_64 24/54 | |
Installing : t1lib-5.1.2-6.el6_2.1.x86_64 25/54 | |
Installing : libvpx-1.3.0-5.el6_5.x86_64 26/54 | |
Installing : libicu-4.2.1-9.1.el6_2.x86_64 27/54 | |
Installing : libselinux-2.0.94-5.8.el6.i686 28/54 | |
Installing : keyutils-libs-1.4-5.el6.i686 29/54 | |
Installing : krb5-libs-1.10.3-37.el6_6.i686 30/54 | |
Installing : zlib-1.2.3-29.el6.i686 31/54 | |
Installing : zlib-devel-1.2.3-29.el6.x86_64 32/54 | |
Installing : keyutils-libs-devel-1.4-5.el6.x86_64 33/54 | |
Installing : libselinux-devel-2.0.94-5.8.el6.x86_64 34/54 | |
Installing : openssl-1.0.1e-30.el6.11.i686 35/54 | |
Installing : krb5-devel-1.10.3-37.el6_6.x86_64 36/54 | |
Installing : audit-libs-2.3.7-5.el6.i686 37/54 | |
Installing : db4-4.7.25-19.el6_6.i686 38/54 | |
Installing : cracklib-2.8.16-4.el6.i686 39/54 | |
Installing : openssl-devel-1.0.1e-30.el6.11.x86_64 40/54 | |
Installing : freetype-devel-2.3.11-15.el6_6.1.x86_64 41/54 | |
Installing : 2:libpng-devel-1.2.49-1.el6_2.x86_64 42/54 | |
Installing : libxml2-devel-2.7.6-17.el6_6.1.x86_64 43/54 | |
Installing : libicu-devel-4.2.1-9.1.el6_2.x86_64 44/54 | |
Installing : libvpx-devel-1.3.0-5.el6_5.x86_64 45/54 | |
Installing : t1lib-devel-5.1.2-6.el6_2.1.x86_64 46/54 | |
Installing : libXpm-devel-3.5.10-2.el6.x86_64 47/54 | |
Installing : libmcrypt-devel-2.5.7-1.2.el6.rf.x86_64 48/54 | |
Installing : 12:aspell-devel-0.60.6-12.el6.x86_64 49/54 | |
Installing : libtidy-devel-0.99.0-19.20070615.1.el6.x86_64 50/54 | |
Installing : libc-client-devel-2007e-11.el6.x86_64 51/54 | |
Installing : pam-1.1.1-20.el6.i686 52/54 | |
Installing : libc-client-2007e-11.el6.i686 53/54 | |
Installing : libc-client-devel-2007e-11.el6.i686 54/54 | |
Verifying : libxcb-devel-1.9.1-2.el6.x86_64 1/54 | |
Verifying : readline-devel-6.0-4.el6.x86_64 2/54 | |
Verifying : freetype-devel-2.3.11-15.el6_6.1.x86_64 3/54 | |
Verifying : libtidy-0.99.0-19.20070615.1.el6.x86_64 4/54 | |
Verifying : krb5-devel-1.10.3-37.el6_6.x86_64 5/54 | |
Verifying : libXpm-3.5.10-2.el6.x86_64 6/54 | |
Verifying : keyutils-libs-1.4-5.el6.i686 7/54 | |
Verifying : libsepol-devel-2.0.41-4.el6.x86_64 8/54 | |
Verifying : 12:aspell-0.60.6-12.el6.x86_64 9/54 | |
Verifying : audit-libs-2.3.7-5.el6.i686 10/54 | |
Verifying : libc-client-devel-2007e-11.el6.i686 11/54 | |
Verifying : libcurl-devel-7.19.7-40.el6_6.4.x86_64 12/54 | |
Verifying : pam-1.1.1-20.el6.i686 13/54 | |
Verifying : libjpeg-turbo-devel-1.2.1-3.el6_5.x86_64 14/54 | |
Verifying : libc-client-devel-2007e-11.el6.x86_64 15/54 | |
Verifying : libmcrypt-2.5.7-1.2.el6.rf.x86_64 16/54 | |
Verifying : zlib-1.2.3-29.el6.i686 17/54 | |
Verifying : gmp-devel-4.3.1-7.el6_2.2.x86_64 18/54 | |
Verifying : libXt-1.1.4-6.1.el6.x86_64 19/54 | |
Verifying : libmcrypt-devel-2.5.7-1.2.el6.rf.x86_64 20/54 | |
Verifying : t1lib-5.1.2-6.el6_2.1.x86_64 21/54 | |
Verifying : bzip2-devel-1.0.5-7.el6_0.x86_64 22/54 | |
Verifying : db4-4.7.25-19.el6_6.i686 23/54 | |
Verifying : libselinux-2.0.94-5.8.el6.i686 24/54 | |
Verifying : zlib-devel-1.2.3-29.el6.x86_64 25/54 | |
Verifying : libc-client-2007e-11.el6.i686 26/54 | |
Verifying : openssl-1.0.1e-30.el6.11.i686 27/54 | |
Verifying : libXau-devel-1.0.6-4.el6.x86_64 28/54 | |
Verifying : libc-client-2007e-11.el6.x86_64 29/54 | |
Verifying : 12:aspell-devel-0.60.6-12.el6.x86_64 30/54 | |
Verifying : xorg-x11-proto-devel-7.7-9.el6.noarch 31/54 | |
Verifying : libvpx-1.3.0-5.el6_5.x86_64 32/54 | |
Verifying : libidn-devel-1.18-2.el6.x86_64 33/54 | |
Verifying : cracklib-2.8.16-4.el6.i686 34/54 | |
Verifying : libicu-4.2.1-9.1.el6_2.x86_64 35/54 | |
Verifying : keyutils-libs-devel-1.4-5.el6.x86_64 36/54 | |
Verifying : nss-softokn-freebl-3.14.3-22.el6_6.i686 37/54 | |
Verifying : 2:libpng-devel-1.2.49-1.el6_2.x86_64 38/54 | |
Verifying : libcom_err-devel-1.41.12-21.el6.x86_64 39/54 | |
Verifying : krb5-libs-1.10.3-37.el6_6.i686 40/54 | |
Verifying : libX11-devel-1.6.0-2.2.el6.x86_64 41/54 | |
Verifying : ncurses-devel-5.7-3.20090208.el6.x86_64 42/54 | |
Verifying : glibc-2.12-1.149.el6_6.9.i686 43/54 | |
Verifying : libcom_err-1.41.12-21.el6.i686 44/54 | |
Verifying : t1lib-devel-5.1.2-6.el6_2.1.x86_64 45/54 | |
Verifying : libvpx-devel-1.3.0-5.el6_5.x86_64 46/54 | |
Verifying : pcre-devel-7.8-6.el6.x86_64 47/54 | |
Verifying : libXpm-devel-3.5.10-2.el6.x86_64 48/54 | |
Verifying : libxml2-devel-2.7.6-17.el6_6.1.x86_64 49/54 | |
Verifying : libtidy-devel-0.99.0-19.20070615.1.el6.x86_64 50/54 | |
Verifying : libselinux-devel-2.0.94-5.8.el6.x86_64 51/54 | |
Verifying : openssl-devel-1.0.1e-30.el6.11.x86_64 52/54 | |
Verifying : sqlite-devel-3.6.20-1.el6.x86_64 53/54 | |
Verifying : libicu-devel-4.2.1-9.1.el6_2.x86_64 54/54 | |
Installed: | |
aspell-devel.x86_64 12:0.60.6-12.el6 | |
bzip2-devel.x86_64 0:1.0.5-7.el6_0 | |
freetype-devel.x86_64 0:2.3.11-15.el6_6.1 | |
gmp-devel.x86_64 0:4.3.1-7.el6_2.2 | |
libXpm-devel.x86_64 0:3.5.10-2.el6 | |
libc-client-devel.i686 0:2007e-11.el6 | |
libc-client-devel.x86_64 0:2007e-11.el6 | |
libcurl-devel.x86_64 0:7.19.7-40.el6_6.4 | |
libicu-devel.x86_64 0:4.2.1-9.1.el6_2 | |
libjpeg-turbo-devel.x86_64 0:1.2.1-3.el6_5 | |
libmcrypt-devel.x86_64 0:2.5.7-1.2.el6.rf | |
libpng-devel.x86_64 2:1.2.49-1.el6_2 | |
libtidy-devel.x86_64 0:0.99.0-19.20070615.1.el6 | |
libvpx-devel.x86_64 0:1.3.0-5.el6_5 | |
libxml2-devel.x86_64 0:2.7.6-17.el6_6.1 | |
openssl-devel.x86_64 0:1.0.1e-30.el6.11 | |
pcre-devel.x86_64 0:7.8-6.el6 | |
readline-devel.x86_64 0:6.0-4.el6 | |
sqlite-devel.x86_64 0:3.6.20-1.el6 | |
t1lib-devel.x86_64 0:5.1.2-6.el6_2.1 | |
Dependency Installed: | |
aspell.x86_64 12:0.60.6-12.el6 | |
audit-libs.i686 0:2.3.7-5.el6 | |
cracklib.i686 0:2.8.16-4.el6 | |
db4.i686 0:4.7.25-19.el6_6 | |
glibc.i686 0:2.12-1.149.el6_6.9 | |
keyutils-libs.i686 0:1.4-5.el6 | |
keyutils-libs-devel.x86_64 0:1.4-5.el6 | |
krb5-devel.x86_64 0:1.10.3-37.el6_6 | |
krb5-libs.i686 0:1.10.3-37.el6_6 | |
libX11-devel.x86_64 0:1.6.0-2.2.el6 | |
libXau-devel.x86_64 0:1.0.6-4.el6 | |
libXpm.x86_64 0:3.5.10-2.el6 | |
libXt.x86_64 0:1.1.4-6.1.el6 | |
libc-client.i686 0:2007e-11.el6 | |
libc-client.x86_64 0:2007e-11.el6 | |
libcom_err.i686 0:1.41.12-21.el6 | |
libcom_err-devel.x86_64 0:1.41.12-21.el6 | |
libicu.x86_64 0:4.2.1-9.1.el6_2 | |
libidn-devel.x86_64 0:1.18-2.el6 | |
libmcrypt.x86_64 0:2.5.7-1.2.el6.rf | |
libselinux.i686 0:2.0.94-5.8.el6 | |
libselinux-devel.x86_64 0:2.0.94-5.8.el6 | |
libsepol-devel.x86_64 0:2.0.41-4.el6 | |
libtidy.x86_64 0:0.99.0-19.20070615.1.el6 | |
libvpx.x86_64 0:1.3.0-5.el6_5 | |
libxcb-devel.x86_64 0:1.9.1-2.el6 | |
ncurses-devel.x86_64 0:5.7-3.20090208.el6 | |
nss-softokn-freebl.i686 0:3.14.3-22.el6_6 | |
openssl.i686 0:1.0.1e-30.el6.11 | |
pam.i686 0:1.1.1-20.el6 | |
t1lib.x86_64 0:5.1.2-6.el6_2.1 | |
xorg-x11-proto-devel.noarch 0:7.7-9.el6 | |
zlib.i686 0:1.2.3-29.el6 | |
zlib-devel.x86_64 0:1.2.3-29.el6 | |
Complete! | |
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
# # | |
# Installing apache from source (apache.sh) # | |
# # | |
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
--2015-07-09 23:50:52-- http://www.us.apache.org/dist//httpd/httpd-2.4.12.tar.gz | |
Resolving www.us.apache.org... 104.130.219.184, 2001:4801:7828:101:be76:4eff:fe11:7b9d | |
Connecting to www.us.apache.org|104.130.219.184|:80... connected. | |
HTTP request sent, awaiting response... 200 OK | |
Length: 6853506 (6.5M) [application/x-gzip] | |
Saving to: “httpd-2.4.12.tar.gz” | |
100%[======================================>] 6,853,506 13.3M/s in 0.5s | |
2015-07-09 23:50:53 (13.3 MB/s) - “httpd-2.4.12.tar.gz” saved [6853506/6853506] | |
--2015-07-09 23:50:53-- http://www.us.apache.org/dist//apr/apr-1.5.2.tar.gz | |
Resolving www.us.apache.org... 104.130.219.184, 2001:4801:7828:101:be76:4eff:fe11:7b9d | |
Connecting to www.us.apache.org|104.130.219.184|:80... connected. | |
HTTP request sent, awaiting response... 200 OK | |
Length: 1031613 (1007K) [application/x-gzip] | |
Saving to: “apr-1.5.2.tar.gz” | |
100%[======================================>] 1,031,613 4.35M/s in 0.2s | |
2015-07-09 23:50:53 (4.35 MB/s) - “apr-1.5.2.tar.gz” saved [1031613/1031613] | |
--2015-07-09 23:50:53-- http://www.us.apache.org/dist//apr/apr-util-1.5.4.tar.gz | |
Resolving www.us.apache.org... 104.130.219.184, 2001:4801:7828:101:be76:4eff:fe11:7b9d | |
Connecting to www.us.apache.org|104.130.219.184|:80... connected. | |
HTTP request sent, awaiting response... 200 OK | |
Length: 874044 (854K) [application/x-gzip] | |
Saving to: “apr-util-1.5.4.tar.gz” | |
100%[======================================>] 874,044 4.08M/s in 0.2s | |
2015-07-09 23:50:53 (4.08 MB/s) - “apr-util-1.5.4.tar.gz” saved [874044/874044] | |
httpd-2.4.12/ | |
httpd-2.4.12/.deps | |
httpd-2.4.12/.gdbinit | |
httpd-2.4.12/ABOUT_APACHE | |
httpd-2.4.12/acinclude.m4 | |
httpd-2.4.12/ap.d | |
httpd-2.4.12/Apache-apr2.dsw | |
httpd-2.4.12/Apache.dsw | |
httpd-2.4.12/apache_probes.d | |
httpd-2.4.12/build/ | |
httpd-2.4.12/BuildAll.dsp | |
httpd-2.4.12/BuildBin.dsp | |
httpd-2.4.12/buildconf | |
httpd-2.4.12/CHANGES | |
httpd-2.4.12/CMakeLists.txt | |
httpd-2.4.12/config.layout | |
httpd-2.4.12/configure | |
httpd-2.4.12/configure.in | |
httpd-2.4.12/docs/ | |
httpd-2.4.12/emacs-style | |
httpd-2.4.12/httpd.dsp | |
httpd-2.4.12/httpd.spec | |
httpd-2.4.12/include/ | |
httpd-2.4.12/INSTALL | |
httpd-2.4.12/InstallBin.dsp | |
httpd-2.4.12/LAYOUT | |
httpd-2.4.12/libhttpd.dsp | |
httpd-2.4.12/LICENSE | |
httpd-2.4.12/Makefile.in | |
httpd-2.4.12/Makefile.win | |
httpd-2.4.12/modules/ | |
httpd-2.4.12/NOTICE | |
httpd-2.4.12/NWGNUmakefile | |
httpd-2.4.12/os/ | |
httpd-2.4.12/README | |
httpd-2.4.12/README.cmake | |
httpd-2.4.12/README.platforms | |
httpd-2.4.12/ROADMAP | |
httpd-2.4.12/server/ | |
httpd-2.4.12/srclib/ | |
httpd-2.4.12/support/ | |
httpd-2.4.12/test/ | |
httpd-2.4.12/VERSIONING | |
httpd-2.4.12/test/.indent.pro | |
httpd-2.4.12/test/check_chunked | |
httpd-2.4.12/test/cls.c | |
httpd-2.4.12/test/make_sni.sh | |
httpd-2.4.12/test/Makefile.in | |
httpd-2.4.12/test/README | |
httpd-2.4.12/test/tcpdumpscii.txt | |
httpd-2.4.12/test/test-writev.c | |
httpd-2.4.12/test/test_find.c | |
httpd-2.4.12/test/test_limits.c | |
httpd-2.4.12/test/test_parser.c | |
httpd-2.4.12/test/test_select.c | |
httpd-2.4.12/test/time-sem.c | |
httpd-2.4.12/support/.indent.pro | |
httpd-2.4.12/support/ab.c | |
httpd-2.4.12/support/ab.dsp | |
httpd-2.4.12/support/abs.dsp | |
httpd-2.4.12/support/apachectl.in | |
httpd-2.4.12/support/apxs.in | |
httpd-2.4.12/support/check_forensic | |
httpd-2.4.12/support/checkgid.c | |
httpd-2.4.12/support/config.m4 | |
httpd-2.4.12/support/dbmmanage.in | |
httpd-2.4.12/support/envvars-std.in | |
httpd-2.4.12/support/fcgistarter.c | |
httpd-2.4.12/support/fcgistarter.dsp | |
httpd-2.4.12/support/htcacheclean.c | |
httpd-2.4.12/support/htcacheclean.dsp | |
httpd-2.4.12/support/htdbm.c | |
httpd-2.4.12/support/htdbm.dsp | |
httpd-2.4.12/support/htdigest.c | |
httpd-2.4.12/support/htdigest.dsp | |
httpd-2.4.12/support/htpasswd.c | |
httpd-2.4.12/support/htpasswd.dsp | |
httpd-2.4.12/support/httxt2dbm.c | |
httpd-2.4.12/support/httxt2dbm.dsp | |
httpd-2.4.12/support/list_hooks.pl | |
httpd-2.4.12/support/log_server_status.in | |
httpd-2.4.12/support/logresolve.c | |
httpd-2.4.12/support/logresolve.dsp | |
httpd-2.4.12/support/logresolve.pl.in | |
httpd-2.4.12/support/Makefile.in | |
httpd-2.4.12/support/NWGNUab | |
httpd-2.4.12/support/NWGNUhtcacheclean | |
httpd-2.4.12/support/NWGNUhtdbm | |
httpd-2.4.12/support/NWGNUhtdigest | |
httpd-2.4.12/support/NWGNUhtpasswd | |
httpd-2.4.12/support/NWGNUhttxt2dbm | |
httpd-2.4.12/support/NWGNUlogres | |
httpd-2.4.12/support/NWGNUmakefile | |
httpd-2.4.12/support/NWGNUrotlogs | |
httpd-2.4.12/support/passwd_common.c | |
httpd-2.4.12/support/passwd_common.h | |
httpd-2.4.12/support/phf_abuse_log.cgi.in | |
httpd-2.4.12/support/README | |
httpd-2.4.12/support/rotatelogs.c | |
httpd-2.4.12/support/rotatelogs.dsp | |
httpd-2.4.12/support/SHA1/ | |
httpd-2.4.12/support/split-logfile.in | |
httpd-2.4.12/support/suexec.c | |
httpd-2.4.12/support/suexec.h | |
httpd-2.4.12/support/win32/ | |
httpd-2.4.12/support/win32/apache_header.bmp | |
httpd-2.4.12/support/win32/ApacheMonitor.c | |
httpd-2.4.12/support/win32/ApacheMonitor.dsp | |
httpd-2.4.12/support/win32/ApacheMonitor.h | |
httpd-2.4.12/support/win32/ApacheMonitor.ico | |
httpd-2.4.12/support/win32/ApacheMonitor.manifest | |
httpd-2.4.12/support/win32/ApacheMonitor.rc | |
httpd-2.4.12/support/win32/aprun.ico | |
httpd-2.4.12/support/win32/apstop.ico | |
httpd-2.4.12/support/win32/srun.bmp | |
httpd-2.4.12/support/win32/sstop.bmp | |
httpd-2.4.12/support/win32/wintty.c | |
httpd-2.4.12/support/win32/wintty.dsp | |
httpd-2.4.12/support/SHA1/convert-sha1.pl | |
httpd-2.4.12/support/SHA1/htpasswd-sha1.pl | |
httpd-2.4.12/support/SHA1/ldif-sha1.example | |
httpd-2.4.12/support/SHA1/README.sha1 | |
httpd-2.4.12/srclib/Makefile.in | |
httpd-2.4.12/server/.indent.pro | |
httpd-2.4.12/server/buildmark.c | |
httpd-2.4.12/server/config.c | |
httpd-2.4.12/server/config.m4 | |
httpd-2.4.12/server/connection.c | |
httpd-2.4.12/server/core.c | |
httpd-2.4.12/server/core_filters.c | |
httpd-2.4.12/server/eoc_bucket.c | |
httpd-2.4.12/server/eor_bucket.c | |
httpd-2.4.12/server/error_bucket.c | |
httpd-2.4.12/server/gen_test_char.c | |
httpd-2.4.12/server/gen_test_char.dsp | |
httpd-2.4.12/server/listen.c | |
httpd-2.4.12/server/log.c | |
httpd-2.4.12/server/main.c | |
httpd-2.4.12/server/Makefile.in | |
httpd-2.4.12/server/mpm/ | |
httpd-2.4.12/server/mpm_common.c | |
httpd-2.4.12/server/mpm_unix.c | |
httpd-2.4.12/server/NWGNUmakefile | |
httpd-2.4.12/server/protocol.c | |
httpd-2.4.12/server/provider.c | |
httpd-2.4.12/server/request.c | |
httpd-2.4.12/server/scoreboard.c | |
httpd-2.4.12/server/util.c | |
httpd-2.4.12/server/util_cfgtree.c | |
httpd-2.4.12/server/util_charset.c | |
httpd-2.4.12/server/util_cookies.c | |
httpd-2.4.12/server/util_debug.c | |
httpd-2.4.12/server/util_ebcdic.c | |
httpd-2.4.12/server/util_expr_eval.c | |
httpd-2.4.12/server/util_expr_parse.c | |
httpd-2.4.12/server/util_expr_parse.h | |
httpd-2.4.12/server/util_expr_parse.y | |
httpd-2.4.12/server/util_expr_private.h | |
httpd-2.4.12/server/util_expr_scan.c | |
httpd-2.4.12/server/util_expr_scan.l | |
httpd-2.4.12/server/util_fcgi.c | |
httpd-2.4.12/server/util_filter.c | |
httpd-2.4.12/server/util_md5.c | |
httpd-2.4.12/server/util_mutex.c | |
httpd-2.4.12/server/util_pcre.c | |
httpd-2.4.12/server/util_regex.c | |
httpd-2.4.12/server/util_script.c | |
httpd-2.4.12/server/util_time.c | |
httpd-2.4.12/server/util_xml.c | |
httpd-2.4.12/server/vhost.c | |
httpd-2.4.12/server/mpm/config.m4 | |
httpd-2.4.12/server/mpm/config2.m4 | |
httpd-2.4.12/server/mpm/event/ | |
httpd-2.4.12/server/mpm/Makefile.in | |
httpd-2.4.12/server/mpm/MPM.NAMING | |
httpd-2.4.12/server/mpm/mpmt_os2/ | |
httpd-2.4.12/server/mpm/netware/ | |
httpd-2.4.12/server/mpm/prefork/ | |
httpd-2.4.12/server/mpm/winnt/ | |
httpd-2.4.12/server/mpm/worker/ | |
httpd-2.4.12/server/mpm/worker/config.m4 | |
httpd-2.4.12/server/mpm/worker/config3.m4 | |
httpd-2.4.12/server/mpm/worker/fdqueue.c | |
httpd-2.4.12/server/mpm/worker/fdqueue.h | |
httpd-2.4.12/server/mpm/worker/Makefile.in | |
httpd-2.4.12/server/mpm/worker/mpm_default.h | |
httpd-2.4.12/server/mpm/worker/worker.c | |
httpd-2.4.12/server/mpm/winnt/child.c | |
httpd-2.4.12/server/mpm/winnt/config.m4 | |
httpd-2.4.12/server/mpm/winnt/config3.m4 | |
httpd-2.4.12/server/mpm/winnt/Makefile.in | |
httpd-2.4.12/server/mpm/winnt/mpm_default.h | |
httpd-2.4.12/server/mpm/winnt/mpm_winnt.c | |
httpd-2.4.12/server/mpm/winnt/mpm_winnt.h | |
httpd-2.4.12/server/mpm/winnt/nt_eventlog.c | |
httpd-2.4.12/server/mpm/winnt/service.c | |
httpd-2.4.12/server/mpm/prefork/config.m4 | |
httpd-2.4.12/server/mpm/prefork/config3.m4 | |
httpd-2.4.12/server/mpm/prefork/Makefile.in | |
httpd-2.4.12/server/mpm/prefork/mpm_default.h | |
httpd-2.4.12/server/mpm/prefork/prefork.c | |
httpd-2.4.12/server/mpm/netware/mpm_default.h | |
httpd-2.4.12/server/mpm/netware/mpm_netware.c | |
httpd-2.4.12/server/mpm/mpmt_os2/config.m4 | |
httpd-2.4.12/server/mpm/mpmt_os2/config5.m4 | |
httpd-2.4.12/server/mpm/mpmt_os2/Makefile.in | |
httpd-2.4.12/server/mpm/mpmt_os2/mpm_default.h | |
httpd-2.4.12/server/mpm/mpmt_os2/mpmt_os2.c | |
httpd-2.4.12/server/mpm/mpmt_os2/mpmt_os2_child.c | |
httpd-2.4.12/server/mpm/event/config.m4 | |
httpd-2.4.12/server/mpm/event/config3.m4 | |
httpd-2.4.12/server/mpm/event/event.c | |
httpd-2.4.12/server/mpm/event/fdqueue.c | |
httpd-2.4.12/server/mpm/event/fdqueue.h | |
httpd-2.4.12/server/mpm/event/Makefile.in | |
httpd-2.4.12/server/mpm/event/mpm_default.h | |
httpd-2.4.12/os/.indent.pro | |
httpd-2.4.12/os/bs2000/ | |
httpd-2.4.12/os/config.m4 | |
httpd-2.4.12/os/Makefile.in | |
httpd-2.4.12/os/netware/ | |
httpd-2.4.12/os/os2/ | |
httpd-2.4.12/os/unix/ | |
httpd-2.4.12/os/win32/ | |
httpd-2.4.12/os/win32/ap_regkey.c | |
httpd-2.4.12/os/win32/BaseAddr.ref | |
httpd-2.4.12/os/win32/Makefile.in | |
httpd-2.4.12/os/win32/modules.c | |
httpd-2.4.12/os/win32/os.h | |
httpd-2.4.12/os/win32/util_win32.c | |
httpd-2.4.12/os/win32/win32_config_layout.h | |
httpd-2.4.12/os/unix/config.m4 | |
httpd-2.4.12/os/unix/Makefile.in | |
httpd-2.4.12/os/unix/os.h | |
httpd-2.4.12/os/unix/unixd.c | |
httpd-2.4.12/os/unix/unixd.h | |
httpd-2.4.12/os/os2/config.m4 | |
httpd-2.4.12/os/os2/core.mk | |
httpd-2.4.12/os/os2/core_header.def | |
httpd-2.4.12/os/os2/Makefile.in | |
httpd-2.4.12/os/os2/os.h | |
httpd-2.4.12/os/os2/util_os2.c | |
httpd-2.4.12/os/netware/apache.xdc | |
httpd-2.4.12/os/netware/modules.c | |
httpd-2.4.12/os/netware/netware_config_layout.h | |
httpd-2.4.12/os/netware/os.h | |
httpd-2.4.12/os/netware/pre_nw.h | |
httpd-2.4.12/os/netware/util_nw.c | |
httpd-2.4.12/os/bs2000/ebcdic.c | |
httpd-2.4.12/os/bs2000/ebcdic.h | |
httpd-2.4.12/os/bs2000/os.c | |
httpd-2.4.12/os/bs2000/os.h | |
httpd-2.4.12/modules/aaa/ | |
httpd-2.4.12/modules/arch/ | |
httpd-2.4.12/modules/cache/ | |
httpd-2.4.12/modules/cluster/ | |
httpd-2.4.12/modules/config7.m4 | |
httpd-2.4.12/modules/core/ | |
httpd-2.4.12/modules/database/ | |
httpd-2.4.12/modules/dav/ | |
httpd-2.4.12/modules/debugging/ | |
httpd-2.4.12/modules/echo/ | |
httpd-2.4.12/modules/examples/ | |
httpd-2.4.12/modules/experimental/ | |
httpd-2.4.12/modules/filters/ | |
httpd-2.4.12/modules/generators/ | |
httpd-2.4.12/modules/http/ | |
httpd-2.4.12/modules/ldap/ | |
httpd-2.4.12/modules/loggers/ | |
httpd-2.4.12/modules/lua/ | |
httpd-2.4.12/modules/Makefile.in | |
httpd-2.4.12/modules/mappers/ | |
httpd-2.4.12/modules/metadata/ | |
httpd-2.4.12/modules/NWGNUmakefile | |
httpd-2.4.12/modules/proxy/ | |
httpd-2.4.12/modules/README | |
httpd-2.4.12/modules/session/ | |
httpd-2.4.12/modules/slotmem/ | |
httpd-2.4.12/modules/ssl/ | |
httpd-2.4.12/modules/test/ | |
httpd-2.4.12/modules/test/.indent.pro | |
httpd-2.4.12/modules/test/config.m4 | |
httpd-2.4.12/modules/test/Makefile.in | |
httpd-2.4.12/modules/test/mod_dialup.c | |
httpd-2.4.12/modules/test/mod_optional_fn_export.c | |
httpd-2.4.12/modules/test/mod_optional_fn_export.h | |
httpd-2.4.12/modules/test/mod_optional_fn_import.c | |
httpd-2.4.12/modules/test/mod_optional_hook_export.c | |
httpd-2.4.12/modules/test/mod_optional_hook_export.h | |
httpd-2.4.12/modules/test/mod_optional_hook_import.c | |
httpd-2.4.12/modules/test/NWGNUmakefile | |
httpd-2.4.12/modules/test/NWGNUoptfnexport | |
httpd-2.4.12/modules/test/NWGNUoptfnimport | |
httpd-2.4.12/modules/test/NWGNUopthookexport | |
httpd-2.4.12/modules/test/NWGNUopthookimport | |
httpd-2.4.12/modules/test/README | |
httpd-2.4.12/modules/ssl/config.m4 | |
httpd-2.4.12/modules/ssl/Makefile.in | |
httpd-2.4.12/modules/ssl/mod_ssl.c | |
httpd-2.4.12/modules/ssl/mod_ssl.dsp | |
httpd-2.4.12/modules/ssl/mod_ssl.h | |
httpd-2.4.12/modules/ssl/NWGNUmakefile | |
httpd-2.4.12/modules/ssl/README | |
httpd-2.4.12/modules/ssl/README.dsov.fig | |
httpd-2.4.12/modules/ssl/README.dsov.ps | |
httpd-2.4.12/modules/ssl/ssl_engine_config.c | |
httpd-2.4.12/modules/ssl/ssl_engine_init.c | |
httpd-2.4.12/modules/ssl/ssl_engine_io.c | |
httpd-2.4.12/modules/ssl/ssl_engine_kernel.c | |
httpd-2.4.12/modules/ssl/ssl_engine_log.c | |
httpd-2.4.12/modules/ssl/ssl_engine_mutex.c | |
httpd-2.4.12/modules/ssl/ssl_engine_ocsp.c | |
httpd-2.4.12/modules/ssl/ssl_engine_pphrase.c | |
httpd-2.4.12/modules/ssl/ssl_engine_rand.c | |
httpd-2.4.12/modules/ssl/ssl_engine_vars.c | |
httpd-2.4.12/modules/ssl/ssl_private.h | |
httpd-2.4.12/modules/ssl/ssl_scache.c | |
httpd-2.4.12/modules/ssl/ssl_util.c | |
httpd-2.4.12/modules/ssl/ssl_util_ocsp.c | |
httpd-2.4.12/modules/ssl/ssl_util_ssl.c | |
httpd-2.4.12/modules/ssl/ssl_util_ssl.h | |
httpd-2.4.12/modules/ssl/ssl_util_stapling.c | |
httpd-2.4.12/modules/slotmem/config.m4 | |
httpd-2.4.12/modules/slotmem/Makefile.in | |
httpd-2.4.12/modules/slotmem/mod_slotmem_plain.c | |
httpd-2.4.12/modules/slotmem/mod_slotmem_plain.dsp | |
httpd-2.4.12/modules/slotmem/mod_slotmem_shm.c | |
httpd-2.4.12/modules/slotmem/mod_slotmem_shm.dsp | |
httpd-2.4.12/modules/slotmem/NWGNUmakefile | |
httpd-2.4.12/modules/slotmem/NWGNUslotmem_plain | |
httpd-2.4.12/modules/slotmem/NWGNUslotmem_shm | |
httpd-2.4.12/modules/session/config.m4 | |
httpd-2.4.12/modules/session/Makefile.in | |
httpd-2.4.12/modules/session/mod_session.c | |
httpd-2.4.12/modules/session/mod_session.dsp | |
httpd-2.4.12/modules/session/mod_session.h | |
httpd-2.4.12/modules/session/mod_session_cookie.c | |
httpd-2.4.12/modules/session/mod_session_cookie.dsp | |
httpd-2.4.12/modules/session/mod_session_crypto.c | |
httpd-2.4.12/modules/session/mod_session_crypto.dsp | |
httpd-2.4.12/modules/session/mod_session_dbd.c | |
httpd-2.4.12/modules/session/mod_session_dbd.dsp | |
httpd-2.4.12/modules/session/NWGNUmakefile | |
httpd-2.4.12/modules/session/NWGNUsession | |
httpd-2.4.12/modules/session/NWGNUsession_cookie | |
httpd-2.4.12/modules/session/NWGNUsession_crypto | |
httpd-2.4.12/modules/session/NWGNUsession_dbd | |
httpd-2.4.12/modules/proxy/.indent.pro | |
httpd-2.4.12/modules/proxy/ajp.h | |
httpd-2.4.12/modules/proxy/ajp_header.c | |
httpd-2.4.12/modules/proxy/ajp_header.h | |
httpd-2.4.12/modules/proxy/ajp_link.c | |
httpd-2.4.12/modules/proxy/ajp_msg.c | |
httpd-2.4.12/modules/proxy/ajp_utils.c | |
httpd-2.4.12/modules/proxy/balancers/ | |
httpd-2.4.12/modules/proxy/CHANGES | |
httpd-2.4.12/modules/proxy/config.m4 | |
httpd-2.4.12/modules/proxy/examples/ | |
httpd-2.4.12/modules/proxy/libproxy.exp | |
httpd-2.4.12/modules/proxy/Makefile.in | |
httpd-2.4.12/modules/proxy/mod_proxy.c | |
httpd-2.4.12/modules/proxy/mod_proxy.dsp | |
httpd-2.4.12/modules/proxy/mod_proxy.h | |
httpd-2.4.12/modules/proxy/mod_proxy_ajp.c | |
httpd-2.4.12/modules/proxy/mod_proxy_ajp.dsp | |
httpd-2.4.12/modules/proxy/mod_proxy_balancer.c | |
httpd-2.4.12/modules/proxy/mod_proxy_balancer.dsp | |
httpd-2.4.12/modules/proxy/mod_proxy_connect.c | |
httpd-2.4.12/modules/proxy/mod_proxy_connect.dsp | |
httpd-2.4.12/modules/proxy/mod_proxy_express.c | |
httpd-2.4.12/modules/proxy/mod_proxy_express.dsp | |
httpd-2.4.12/modules/proxy/mod_proxy_fcgi.c | |
httpd-2.4.12/modules/proxy/mod_proxy_fcgi.dsp | |
httpd-2.4.12/modules/proxy/mod_proxy_fdpass.c | |
httpd-2.4.12/modules/proxy/mod_proxy_fdpass.h | |
httpd-2.4.12/modules/proxy/mod_proxy_ftp.c | |
httpd-2.4.12/modules/proxy/mod_proxy_ftp.dsp | |
httpd-2.4.12/modules/proxy/mod_proxy_http.c | |
httpd-2.4.12/modules/proxy/mod_proxy_http.dsp | |
httpd-2.4.12/modules/proxy/mod_proxy_scgi.c | |
httpd-2.4.12/modules/proxy/mod_proxy_scgi.dsp | |
httpd-2.4.12/modules/proxy/mod_proxy_wstunnel.c | |
httpd-2.4.12/modules/proxy/mod_proxy_wstunnel.dsp | |
httpd-2.4.12/modules/proxy/NWGNUmakefile | |
httpd-2.4.12/modules/proxy/NWGNUproxy | |
httpd-2.4.12/modules/proxy/NWGNUproxyajp | |
httpd-2.4.12/modules/proxy/NWGNUproxybalancer | |
httpd-2.4.12/modules/proxy/NWGNUproxycon | |
httpd-2.4.12/modules/proxy/NWGNUproxyexpress | |
httpd-2.4.12/modules/proxy/NWGNUproxyfcgi | |
httpd-2.4.12/modules/proxy/NWGNUproxyftp | |
httpd-2.4.12/modules/proxy/NWGNUproxyhtp | |
httpd-2.4.12/modules/proxy/NWGNUproxylbm_busy | |
httpd-2.4.12/modules/proxy/NWGNUproxylbm_hb | |
httpd-2.4.12/modules/proxy/NWGNUproxylbm_req | |
httpd-2.4.12/modules/proxy/NWGNUproxylbm_traf | |
httpd-2.4.12/modules/proxy/NWGNUproxyscgi | |
httpd-2.4.12/modules/proxy/NWGNUproxywstunnel | |
httpd-2.4.12/modules/proxy/proxy_util.c | |
httpd-2.4.12/modules/proxy/proxy_util.h | |
httpd-2.4.12/modules/proxy/scgi.h | |
httpd-2.4.12/modules/proxy/examples/mod_lbmethod_rr.c | |
httpd-2.4.12/modules/proxy/examples/mod_lbmethod_rr.dsp | |
httpd-2.4.12/modules/proxy/balancers/config2.m4 | |
httpd-2.4.12/modules/proxy/balancers/Makefile.in | |
httpd-2.4.12/modules/proxy/balancers/mod_lbmethod_bybusyness.c | |
httpd-2.4.12/modules/proxy/balancers/mod_lbmethod_bybusyness.dsp | |
httpd-2.4.12/modules/proxy/balancers/mod_lbmethod_byrequests.c | |
httpd-2.4.12/modules/proxy/balancers/mod_lbmethod_byrequests.dsp | |
httpd-2.4.12/modules/proxy/balancers/mod_lbmethod_bytraffic.c | |
httpd-2.4.12/modules/proxy/balancers/mod_lbmethod_bytraffic.dsp | |
httpd-2.4.12/modules/proxy/balancers/mod_lbmethod_heartbeat.c | |
httpd-2.4.12/modules/proxy/balancers/mod_lbmethod_heartbeat.dsp | |
httpd-2.4.12/modules/metadata/.indent.pro | |
httpd-2.4.12/modules/metadata/config.m4 | |
httpd-2.4.12/modules/metadata/Makefile.in | |
httpd-2.4.12/modules/metadata/mod_cern_meta.c | |
httpd-2.4.12/modules/metadata/mod_cern_meta.dsp | |
httpd-2.4.12/modules/metadata/mod_cern_meta.exp | |
httpd-2.4.12/modules/metadata/mod_env.c | |
httpd-2.4.12/modules/metadata/mod_env.dsp | |
httpd-2.4.12/modules/metadata/mod_env.exp | |
httpd-2.4.12/modules/metadata/mod_expires.c | |
httpd-2.4.12/modules/metadata/mod_expires.dsp | |
httpd-2.4.12/modules/metadata/mod_expires.exp | |
httpd-2.4.12/modules/metadata/mod_headers.c | |
httpd-2.4.12/modules/metadata/mod_headers.dsp | |
httpd-2.4.12/modules/metadata/mod_headers.exp | |
httpd-2.4.12/modules/metadata/mod_ident.c | |
httpd-2.4.12/modules/metadata/mod_ident.dsp | |
httpd-2.4.12/modules/metadata/mod_ident.exp | |
httpd-2.4.12/modules/metadata/mod_mime_magic.c | |
httpd-2.4.12/modules/metadata/mod_mime_magic.dsp | |
httpd-2.4.12/modules/metadata/mod_mime_magic.exp | |
httpd-2.4.12/modules/metadata/mod_remoteip.c | |
httpd-2.4.12/modules/metadata/mod_remoteip.dsp | |
httpd-2.4.12/modules/metadata/mod_setenvif.c | |
httpd-2.4.12/modules/metadata/mod_setenvif.dsp | |
httpd-2.4.12/modules/metadata/mod_setenvif.exp | |
httpd-2.4.12/modules/metadata/mod_unique_id.c | |
httpd-2.4.12/modules/metadata/mod_unique_id.dsp | |
httpd-2.4.12/modules/metadata/mod_unique_id.exp | |
httpd-2.4.12/modules/metadata/mod_usertrack.c | |
httpd-2.4.12/modules/metadata/mod_usertrack.dsp | |
httpd-2.4.12/modules/metadata/mod_usertrack.exp | |
httpd-2.4.12/modules/metadata/mod_version.c | |
httpd-2.4.12/modules/metadata/mod_version.dsp | |
httpd-2.4.12/modules/metadata/mod_version.exp | |
httpd-2.4.12/modules/metadata/NWGNUcernmeta | |
httpd-2.4.12/modules/metadata/NWGNUexpires | |
httpd-2.4.12/modules/metadata/NWGNUheaders | |
httpd-2.4.12/modules/metadata/NWGNUmakefile | |
httpd-2.4.12/modules/metadata/NWGNUmimemagi | |
httpd-2.4.12/modules/metadata/NWGNUmodident | |
httpd-2.4.12/modules/metadata/NWGNUmodversion | |
httpd-2.4.12/modules/metadata/NWGNUremoteip | |
httpd-2.4.12/modules/metadata/NWGNUuniqueid | |
httpd-2.4.12/modules/metadata/NWGNUusertrk | |
httpd-2.4.12/modules/mappers/.indent.pro | |
httpd-2.4.12/modules/mappers/config9.m4 | |
httpd-2.4.12/modules/mappers/Makefile.in | |
httpd-2.4.12/modules/mappers/mod_actions.c | |
httpd-2.4.12/modules/mappers/mod_actions.dsp | |
httpd-2.4.12/modules/mappers/mod_actions.exp | |
httpd-2.4.12/modules/mappers/mod_alias.c | |
httpd-2.4.12/modules/mappers/mod_alias.dsp | |
httpd-2.4.12/modules/mappers/mod_alias.exp | |
httpd-2.4.12/modules/mappers/mod_dir.c | |
httpd-2.4.12/modules/mappers/mod_dir.dsp | |
httpd-2.4.12/modules/mappers/mod_dir.exp | |
httpd-2.4.12/modules/mappers/mod_imagemap.c | |
httpd-2.4.12/modules/mappers/mod_imagemap.dsp | |
httpd-2.4.12/modules/mappers/mod_imagemap.exp | |
httpd-2.4.12/modules/mappers/mod_negotiation.c | |
httpd-2.4.12/modules/mappers/mod_negotiation.dsp | |
httpd-2.4.12/modules/mappers/mod_negotiation.exp | |
httpd-2.4.12/modules/mappers/mod_rewrite.c | |
httpd-2.4.12/modules/mappers/mod_rewrite.dsp | |
httpd-2.4.12/modules/mappers/mod_rewrite.exp | |
httpd-2.4.12/modules/mappers/mod_rewrite.h | |
httpd-2.4.12/modules/mappers/mod_speling.c | |
httpd-2.4.12/modules/mappers/mod_speling.dsp | |
httpd-2.4.12/modules/mappers/mod_speling.exp | |
httpd-2.4.12/modules/mappers/mod_userdir.c | |
httpd-2.4.12/modules/mappers/mod_userdir.dsp | |
httpd-2.4.12/modules/mappers/mod_userdir.exp | |
httpd-2.4.12/modules/mappers/mod_vhost_alias.c | |
httpd-2.4.12/modules/mappers/mod_vhost_alias.dsp | |
httpd-2.4.12/modules/mappers/mod_vhost_alias.exp | |
httpd-2.4.12/modules/mappers/NWGNUactions | |
httpd-2.4.12/modules/mappers/NWGNUimagemap | |
httpd-2.4.12/modules/mappers/NWGNUmakefile | |
httpd-2.4.12/modules/mappers/NWGNUrewrite | |
httpd-2.4.12/modules/mappers/NWGNUspeling | |
httpd-2.4.12/modules/mappers/NWGNUuserdir | |
httpd-2.4.12/modules/mappers/NWGNUvhost | |
httpd-2.4.12/modules/lua/config.m4 | |
httpd-2.4.12/modules/lua/docs/ | |
httpd-2.4.12/modules/lua/lua_apr.c | |
httpd-2.4.12/modules/lua/lua_apr.h | |
httpd-2.4.12/modules/lua/lua_config.c | |
httpd-2.4.12/modules/lua/lua_config.h | |
httpd-2.4.12/modules/lua/lua_dbd.c | |
httpd-2.4.12/modules/lua/lua_dbd.h | |
httpd-2.4.12/modules/lua/lua_passwd.c | |
httpd-2.4.12/modules/lua/lua_passwd.h | |
httpd-2.4.12/modules/lua/lua_request.c | |
httpd-2.4.12/modules/lua/lua_request.h | |
httpd-2.4.12/modules/lua/lua_vmprep.c | |
httpd-2.4.12/modules/lua/lua_vmprep.h | |
httpd-2.4.12/modules/lua/Makefile.in | |
httpd-2.4.12/modules/lua/mod_lua.c | |
httpd-2.4.12/modules/lua/mod_lua.dsp | |
httpd-2.4.12/modules/lua/mod_lua.h | |
httpd-2.4.12/modules/lua/NWGNUmakefile | |
httpd-2.4.12/modules/lua/README | |
httpd-2.4.12/modules/lua/test/ | |
httpd-2.4.12/modules/lua/test/helpers.lua | |
httpd-2.4.12/modules/lua/test/htdocs/ | |
httpd-2.4.12/modules/lua/test/lib/ | |
httpd-2.4.12/modules/lua/test/moonunit.lua | |
httpd-2.4.12/modules/lua/test/test.lua | |
httpd-2.4.12/modules/lua/test/test_httpd.conf | |
httpd-2.4.12/modules/lua/test/lib/kangaroo.lua | |
httpd-2.4.12/modules/lua/test/htdocs/config_tests.lua | |
httpd-2.4.12/modules/lua/test/htdocs/filters.lua | |
httpd-2.4.12/modules/lua/test/htdocs/find_me.txt | |
httpd-2.4.12/modules/lua/test/htdocs/headers.lua | |
httpd-2.4.12/modules/lua/test/htdocs/hooks.lua | |
httpd-2.4.12/modules/lua/test/htdocs/other.lua | |
httpd-2.4.12/modules/lua/test/htdocs/simple.lua | |
httpd-2.4.12/modules/lua/test/htdocs/test.lua | |
httpd-2.4.12/modules/lua/docs/basic-configuration.txt | |
httpd-2.4.12/modules/lua/docs/building-from-subversion.txt | |
httpd-2.4.12/modules/lua/docs/README | |
httpd-2.4.12/modules/lua/docs/running-developer-tests.txt | |
httpd-2.4.12/modules/lua/docs/writing-handlers.txt | |
httpd-2.4.12/modules/loggers/.indent.pro | |
httpd-2.4.12/modules/loggers/config.m4 | |
httpd-2.4.12/modules/loggers/Makefile.in | |
httpd-2.4.12/modules/loggers/mod_log_config.c | |
httpd-2.4.12/modules/loggers/mod_log_config.dsp | |
httpd-2.4.12/modules/loggers/mod_log_config.exp | |
httpd-2.4.12/modules/loggers/mod_log_config.h | |
httpd-2.4.12/modules/loggers/mod_log_debug.c | |
httpd-2.4.12/modules/loggers/mod_log_debug.dsp | |
httpd-2.4.12/modules/loggers/mod_log_forensic.c | |
httpd-2.4.12/modules/loggers/mod_log_forensic.dsp | |
httpd-2.4.12/modules/loggers/mod_log_forensic.exp | |
httpd-2.4.12/modules/loggers/mod_logio.c | |
httpd-2.4.12/modules/loggers/mod_logio.dsp | |
httpd-2.4.12/modules/loggers/NWGNUforensic | |
httpd-2.4.12/modules/loggers/NWGNUlogdebug | |
httpd-2.4.12/modules/loggers/NWGNUmakefile | |
httpd-2.4.12/modules/loggers/NWGNUmodlogio | |
httpd-2.4.12/modules/ldap/config.m4 | |
httpd-2.4.12/modules/ldap/Makefile.in | |
httpd-2.4.12/modules/ldap/mod_ldap.dsp | |
httpd-2.4.12/modules/ldap/NWGNUmakefile | |
httpd-2.4.12/modules/ldap/README.ldap | |
httpd-2.4.12/modules/ldap/util_ldap.c | |
httpd-2.4.12/modules/ldap/util_ldap_cache.c | |
httpd-2.4.12/modules/ldap/util_ldap_cache.h | |
httpd-2.4.12/modules/ldap/util_ldap_cache_mgr.c | |
httpd-2.4.12/modules/http/.indent.pro | |
httpd-2.4.12/modules/http/byterange_filter.c | |
httpd-2.4.12/modules/http/chunk_filter.c | |
httpd-2.4.12/modules/http/config.m4 | |
httpd-2.4.12/modules/http/http_core.c | |
httpd-2.4.12/modules/http/http_etag.c | |
httpd-2.4.12/modules/http/http_filters.c | |
httpd-2.4.12/modules/http/http_protocol.c | |
httpd-2.4.12/modules/http/http_request.c | |
httpd-2.4.12/modules/http/Makefile.in | |
httpd-2.4.12/modules/http/mod_mime.c | |
httpd-2.4.12/modules/http/mod_mime.dsp | |
httpd-2.4.12/modules/http/mod_mime.exp | |
httpd-2.4.12/modules/generators/.indent.pro | |
httpd-2.4.12/modules/generators/config5.m4 | |
httpd-2.4.12/modules/generators/Makefile.in | |
httpd-2.4.12/modules/generators/mod_asis.c | |
httpd-2.4.12/modules/generators/mod_asis.dsp | |
httpd-2.4.12/modules/generators/mod_asis.exp | |
httpd-2.4.12/modules/generators/mod_autoindex.c | |
httpd-2.4.12/modules/generators/mod_autoindex.dsp | |
httpd-2.4.12/modules/generators/mod_autoindex.exp | |
httpd-2.4.12/modules/generators/mod_cgi.c | |
httpd-2.4.12/modules/generators/mod_cgi.dsp | |
httpd-2.4.12/modules/generators/mod_cgi.exp | |
httpd-2.4.12/modules/generators/mod_cgi.h | |
httpd-2.4.12/modules/generators/mod_cgid.c | |
httpd-2.4.12/modules/generators/mod_cgid.exp | |
httpd-2.4.12/modules/generators/mod_info.c | |
httpd-2.4.12/modules/generators/mod_info.dsp | |
httpd-2.4.12/modules/generators/mod_info.exp | |
httpd-2.4.12/modules/generators/mod_status.c | |
httpd-2.4.12/modules/generators/mod_status.dsp | |
httpd-2.4.12/modules/generators/mod_status.exp | |
httpd-2.4.12/modules/generators/mod_status.h | |
httpd-2.4.12/modules/generators/mod_suexec.c | |
httpd-2.4.12/modules/generators/mod_suexec.h | |
httpd-2.4.12/modules/generators/NWGNUautoindex | |
httpd-2.4.12/modules/generators/NWGNUinfo | |
httpd-2.4.12/modules/generators/NWGNUmakefile | |
httpd-2.4.12/modules/generators/NWGNUmod_asis | |
httpd-2.4.12/modules/generators/NWGNUmod_cgi | |
httpd-2.4.12/modules/generators/NWGNUstatus | |
httpd-2.4.12/modules/filters/.indent.pro | |
httpd-2.4.12/modules/filters/config.m4 | |
httpd-2.4.12/modules/filters/libsed.h | |
httpd-2.4.12/modules/filters/Makefile.in | |
httpd-2.4.12/modules/filters/mod_buffer.c | |
httpd-2.4.12/modules/filters/mod_buffer.dsp | |
httpd-2.4.12/modules/filters/mod_charset_lite.c | |
httpd-2.4.12/modules/filters/mod_charset_lite.dsp | |
httpd-2.4.12/modules/filters/mod_charset_lite.exp | |
httpd-2.4.12/modules/filters/mod_data.c | |
httpd-2.4.12/modules/filters/mod_data.dsp | |
httpd-2.4.12/modules/filters/mod_deflate.c | |
httpd-2.4.12/modules/filters/mod_deflate.dsp | |
httpd-2.4.12/modules/filters/mod_deflate.exp | |
httpd-2.4.12/modules/filters/mod_ext_filter.c | |
httpd-2.4.12/modules/filters/mod_ext_filter.dsp | |
httpd-2.4.12/modules/filters/mod_ext_filter.exp | |
httpd-2.4.12/modules/filters/mod_filter.c | |
httpd-2.4.12/modules/filters/mod_filter.dsp | |
httpd-2.4.12/modules/filters/mod_include.c | |
httpd-2.4.12/modules/filters/mod_include.dsp | |
httpd-2.4.12/modules/filters/mod_include.exp | |
httpd-2.4.12/modules/filters/mod_include.h | |
httpd-2.4.12/modules/filters/mod_proxy_html.c | |
httpd-2.4.12/modules/filters/mod_proxy_html.dsp | |
httpd-2.4.12/modules/filters/mod_ratelimit.c | |
httpd-2.4.12/modules/filters/mod_ratelimit.dsp | |
httpd-2.4.12/modules/filters/mod_ratelimit.h | |
httpd-2.4.12/modules/filters/mod_reflector.c | |
httpd-2.4.12/modules/filters/mod_reflector.dsp | |
httpd-2.4.12/modules/filters/mod_reqtimeout.c | |
httpd-2.4.12/modules/filters/mod_reqtimeout.dsp | |
httpd-2.4.12/modules/filters/mod_request.c | |
httpd-2.4.12/modules/filters/mod_request.dsp | |
httpd-2.4.12/modules/filters/mod_sed.c | |
httpd-2.4.12/modules/filters/mod_sed.dsp | |
httpd-2.4.12/modules/filters/mod_substitute.c | |
httpd-2.4.12/modules/filters/mod_substitute.dsp | |
httpd-2.4.12/modules/filters/mod_xml2enc.c | |
httpd-2.4.12/modules/filters/mod_xml2enc.dsp | |
httpd-2.4.12/modules/filters/mod_xml2enc.h | |
httpd-2.4.12/modules/filters/NWGNUcharsetl | |
httpd-2.4.12/modules/filters/NWGNUdeflate | |
httpd-2.4.12/modules/filters/NWGNUextfiltr | |
httpd-2.4.12/modules/filters/NWGNUmakefile | |
httpd-2.4.12/modules/filters/NWGNUmod_data | |
httpd-2.4.12/modules/filters/NWGNUmod_filter | |
httpd-2.4.12/modules/filters/NWGNUmod_request | |
httpd-2.4.12/modules/filters/NWGNUmodbuffer | |
httpd-2.4.12/modules/filters/NWGNUmodsed | |
httpd-2.4.12/modules/filters/NWGNUproxyhtml | |
httpd-2.4.12/modules/filters/NWGNUratelimit | |
httpd-2.4.12/modules/filters/NWGNUreflector | |
httpd-2.4.12/modules/filters/NWGNUreqtimeout | |
httpd-2.4.12/modules/filters/NWGNUsubstitute | |
httpd-2.4.12/modules/filters/NWGNUxml2enc | |
httpd-2.4.12/modules/filters/regexp.c | |
httpd-2.4.12/modules/filters/regexp.h | |
httpd-2.4.12/modules/filters/sed.h | |
httpd-2.4.12/modules/filters/sed0.c | |
httpd-2.4.12/modules/filters/sed1.c | |
httpd-2.4.12/modules/experimental/.indent.pro | |
httpd-2.4.12/modules/experimental/config.m4 | |
httpd-2.4.12/modules/experimental/Makefile.in | |
httpd-2.4.12/modules/experimental/NWGNUmakefile | |
httpd-2.4.12/modules/examples/config.m4 | |
httpd-2.4.12/modules/examples/Makefile.in | |
httpd-2.4.12/modules/examples/mod_case_filter.c | |
httpd-2.4.12/modules/examples/mod_case_filter.dsp | |
httpd-2.4.12/modules/examples/mod_case_filter_in.c | |
httpd-2.4.12/modules/examples/mod_case_filter_in.dsp | |
httpd-2.4.12/modules/examples/mod_example_hooks.c | |
httpd-2.4.12/modules/examples/mod_example_hooks.dsp | |
httpd-2.4.12/modules/examples/mod_example_ipc.c | |
httpd-2.4.12/modules/examples/mod_example_ipc.dsp | |
httpd-2.4.12/modules/examples/NWGNUcase_flt | |
httpd-2.4.12/modules/examples/NWGNUcase_flt_in | |
httpd-2.4.12/modules/examples/NWGNUexample_hooks | |
httpd-2.4.12/modules/examples/NWGNUexample_ipc | |
httpd-2.4.12/modules/examples/NWGNUmakefile | |
httpd-2.4.12/modules/examples/README | |
httpd-2.4.12/modules/echo/.indent.pro | |
httpd-2.4.12/modules/echo/config.m4 | |
httpd-2.4.12/modules/echo/Makefile.in | |
httpd-2.4.12/modules/echo/mod_echo.c | |
httpd-2.4.12/modules/echo/mod_echo.dsp | |
httpd-2.4.12/modules/echo/NWGNUmakefile | |
httpd-2.4.12/modules/debugging/config.m4 | |
httpd-2.4.12/modules/debugging/Makefile.in | |
httpd-2.4.12/modules/debugging/mod_bucketeer.c | |
httpd-2.4.12/modules/debugging/mod_bucketeer.dsp | |
httpd-2.4.12/modules/debugging/mod_dumpio.c | |
httpd-2.4.12/modules/debugging/mod_dumpio.dsp | |
httpd-2.4.12/modules/debugging/NWGNUmakefile | |
httpd-2.4.12/modules/debugging/NWGNUmodbucketeer | |
httpd-2.4.12/modules/debugging/NWGNUmoddumpio | |
httpd-2.4.12/modules/debugging/README | |
httpd-2.4.12/modules/dav/fs/ | |
httpd-2.4.12/modules/dav/lock/ | |
httpd-2.4.12/modules/dav/main/ | |
httpd-2.4.12/modules/dav/main/config5.m4 | |
httpd-2.4.12/modules/dav/main/liveprop.c | |
httpd-2.4.12/modules/dav/main/Makefile.in | |
httpd-2.4.12/modules/dav/main/mod_dav.c | |
httpd-2.4.12/modules/dav/main/mod_dav.dsp | |
httpd-2.4.12/modules/dav/main/mod_dav.h | |
httpd-2.4.12/modules/dav/main/NWGNUmakefile | |
httpd-2.4.12/modules/dav/main/props.c | |
httpd-2.4.12/modules/dav/main/providers.c | |
httpd-2.4.12/modules/dav/main/std_liveprop.c | |
httpd-2.4.12/modules/dav/main/util.c | |
httpd-2.4.12/modules/dav/main/util_lock.c | |
httpd-2.4.12/modules/dav/lock/config6.m4 | |
httpd-2.4.12/modules/dav/lock/locks.c | |
httpd-2.4.12/modules/dav/lock/locks.h | |
httpd-2.4.12/modules/dav/lock/Makefile.in | |
httpd-2.4.12/modules/dav/lock/mod_dav_lock.c | |
httpd-2.4.12/modules/dav/lock/mod_dav_lock.dsp | |
httpd-2.4.12/modules/dav/lock/NWGNUmakefile | |
httpd-2.4.12/modules/dav/fs/config6.m4 | |
httpd-2.4.12/modules/dav/fs/dbm.c | |
httpd-2.4.12/modules/dav/fs/lock.c | |
httpd-2.4.12/modules/dav/fs/Makefile.in | |
httpd-2.4.12/modules/dav/fs/mod_dav_fs.c | |
httpd-2.4.12/modules/dav/fs/mod_dav_fs.dsp | |
httpd-2.4.12/modules/dav/fs/NWGNUmakefile | |
httpd-2.4.12/modules/dav/fs/repos.c | |
httpd-2.4.12/modules/dav/fs/repos.h | |
httpd-2.4.12/modules/database/config.m4 | |
httpd-2.4.12/modules/database/Makefile.in | |
httpd-2.4.12/modules/database/mod_dbd.c | |
httpd-2.4.12/modules/database/mod_dbd.dsp | |
httpd-2.4.12/modules/database/mod_dbd.h | |
httpd-2.4.12/modules/database/NWGNUmakefile | |
httpd-2.4.12/modules/core/config.m4 | |
httpd-2.4.12/modules/core/Makefile.in | |
httpd-2.4.12/modules/core/mod_macro.c | |
httpd-2.4.12/modules/core/mod_macro.dsp | |
httpd-2.4.12/modules/core/mod_so.c | |
httpd-2.4.12/modules/core/mod_so.h | |
httpd-2.4.12/modules/core/mod_watchdog.c | |
httpd-2.4.12/modules/core/mod_watchdog.dsp | |
httpd-2.4.12/modules/core/mod_watchdog.h | |
httpd-2.4.12/modules/core/NWGNUmakefile | |
httpd-2.4.12/modules/core/test/ | |
httpd-2.4.12/modules/core/test/conf/ | |
httpd-2.4.12/modules/core/test/Makefile | |
httpd-2.4.12/modules/core/test/ref/ | |
httpd-2.4.12/modules/core/test/ref/test01.out | |
httpd-2.4.12/modules/core/test/ref/test02.out | |
httpd-2.4.12/modules/core/test/ref/test03.out | |
httpd-2.4.12/modules/core/test/ref/test04.out | |
httpd-2.4.12/modules/core/test/ref/test05.out | |
httpd-2.4.12/modules/core/test/ref/test06.out | |
httpd-2.4.12/modules/core/test/ref/test07.out | |
httpd-2.4.12/modules/core/test/ref/test08.out | |
httpd-2.4.12/modules/core/test/ref/test09.out | |
httpd-2.4.12/modules/core/test/ref/test10.out | |
httpd-2.4.12/modules/core/test/ref/test11.out | |
httpd-2.4.12/modules/core/test/ref/test12.out | |
httpd-2.4.12/modules/core/test/ref/test13.out | |
httpd-2.4.12/modules/core/test/ref/test14.out | |
httpd-2.4.12/modules/core/test/ref/test15.out | |
httpd-2.4.12/modules/core/test/ref/test16.out | |
httpd-2.4.12/modules/core/test/ref/test17.out | |
httpd-2.4.12/modules/core/test/ref/test18.out | |
httpd-2.4.12/modules/core/test/ref/test19.out | |
httpd-2.4.12/modules/core/test/ref/test20.out | |
httpd-2.4.12/modules/core/test/ref/test21.out | |
httpd-2.4.12/modules/core/test/ref/test22.out | |
httpd-2.4.12/modules/core/test/ref/test23.out | |
httpd-2.4.12/modules/core/test/ref/test24.out | |
httpd-2.4.12/modules/core/test/ref/test25.out | |
httpd-2.4.12/modules/core/test/ref/test26.out | |
httpd-2.4.12/modules/core/test/ref/test27.out | |
httpd-2.4.12/modules/core/test/ref/test28.out | |
httpd-2.4.12/modules/core/test/ref/test29.out | |
httpd-2.4.12/modules/core/test/ref/test30.out | |
httpd-2.4.12/modules/core/test/ref/test31.out | |
httpd-2.4.12/modules/core/test/ref/test32.out | |
httpd-2.4.12/modules/core/test/ref/test33.out | |
httpd-2.4.12/modules/core/test/ref/test34.out | |
httpd-2.4.12/modules/core/test/ref/test35.out | |
httpd-2.4.12/modules/core/test/ref/test36.out | |
httpd-2.4.12/modules/core/test/ref/test37.out | |
httpd-2.4.12/modules/core/test/ref/test38.out | |
httpd-2.4.12/modules/core/test/ref/test39.out | |
httpd-2.4.12/modules/core/test/ref/test40.out | |
httpd-2.4.12/modules/core/test/ref/test41.out | |
httpd-2.4.12/modules/core/test/ref/test42.out | |
httpd-2.4.12/modules/core/test/ref/test43.out | |
httpd-2.4.12/modules/core/test/ref/test44.out | |
httpd-2.4.12/modules/core/test/ref/test45.out | |
httpd-2.4.12/modules/core/test/ref/test46.out | |
httpd-2.4.12/modules/core/test/ref/test47.out | |
httpd-2.4.12/modules/core/test/ref/test48.out | |
httpd-2.4.12/modules/core/test/ref/test49.out | |
httpd-2.4.12/modules/core/test/ref/test50.out | |
httpd-2.4.12/modules/core/test/ref/test51.out | |
httpd-2.4.12/modules/core/test/ref/test52.out | |
httpd-2.4.12/modules/core/test/ref/test53.out | |
httpd-2.4.12/modules/core/test/ref/test54.out | |
httpd-2.4.12/modules/core/test/ref/test55.out | |
httpd-2.4.12/modules/core/test/ref/test56.out | |
httpd-2.4.12/modules/core/test/ref/test57.out | |
httpd-2.4.12/modules/core/test/ref/test58.out | |
httpd-2.4.12/modules/core/test/ref/test59.out | |
httpd-2.4.12/modules/core/test/ref/test60.out | |
httpd-2.4.12/modules/core/test/ref/test61.out | |
httpd-2.4.12/modules/core/test/ref/test62.out | |
httpd-2.4.12/modules/core/test/ref/test63.out | |
httpd-2.4.12/modules/core/test/ref/test64.out | |
httpd-2.4.12/modules/core/test/ref/test65.out | |
httpd-2.4.12/modules/core/test/ref/test66.out | |
httpd-2.4.12/modules/core/test/ref/test67.out | |
httpd-2.4.12/modules/core/test/ref/test68.out | |
httpd-2.4.12/modules/core/test/ref/test69.out | |
httpd-2.4.12/modules/core/test/conf/inc63_1.conf | |
httpd-2.4.12/modules/core/test/conf/inc63_2.conf | |
httpd-2.4.12/modules/core/test/conf/test01.conf | |
httpd-2.4.12/modules/core/test/conf/test02.conf | |
httpd-2.4.12/modules/core/test/conf/test03.conf | |
httpd-2.4.12/modules/core/test/conf/test04.conf | |
httpd-2.4.12/modules/core/test/conf/test05.conf | |
httpd-2.4.12/modules/core/test/conf/test06.conf | |
httpd-2.4.12/modules/core/test/conf/test07.conf | |
httpd-2.4.12/modules/core/test/conf/test08.conf | |
httpd-2.4.12/modules/core/test/conf/test09.conf | |
httpd-2.4.12/modules/core/test/conf/test10.conf | |
httpd-2.4.12/modules/core/test/conf/test11.conf | |
httpd-2.4.12/modules/core/test/conf/test12.conf | |
httpd-2.4.12/modules/core/test/conf/test13.conf | |
httpd-2.4.12/modules/core/test/conf/test14.conf | |
httpd-2.4.12/modules/core/test/conf/test15.conf | |
httpd-2.4.12/modules/core/test/conf/test16.conf | |
httpd-2.4.12/modules/core/test/conf/test17.conf | |
httpd-2.4.12/modules/core/test/conf/test18.conf | |
httpd-2.4.12/modules/core/test/conf/test19.conf | |
httpd-2.4.12/modules/core/test/conf/test20.conf | |
httpd-2.4.12/modules/core/test/conf/test21.conf | |
httpd-2.4.12/modules/core/test/conf/test22.conf | |
httpd-2.4.12/modules/core/test/conf/test23.conf | |
httpd-2.4.12/modules/core/test/conf/test24.conf | |
httpd-2.4.12/modules/core/test/conf/test25.conf | |
httpd-2.4.12/modules/core/test/conf/test26.conf | |
httpd-2.4.12/modules/core/test/conf/test27.conf | |
httpd-2.4.12/modules/core/test/conf/test28.conf | |
httpd-2.4.12/modules/core/test/conf/test29.conf | |
httpd-2.4.12/modules/core/test/conf/test30.conf | |
httpd-2.4.12/modules/core/test/conf/test31.conf | |
httpd-2.4.12/modules/core/test/conf/test32.conf | |
httpd-2.4.12/modules/core/test/conf/test33.conf | |
httpd-2.4.12/modules/core/test/conf/test34.conf | |
httpd-2.4.12/modules/core/test/conf/test35.conf | |
httpd-2.4.12/modules/core/test/conf/test36.conf | |
httpd-2.4.12/modules/core/test/conf/test37.conf | |
httpd-2.4.12/modules/core/test/conf/test38.conf | |
httpd-2.4.12/modules/core/test/conf/test39.conf | |
httpd-2.4.12/modules/core/test/conf/test40.conf | |
httpd-2.4.12/modules/core/test/conf/test41.conf | |
httpd-2.4.12/modules/core/test/conf/test42.conf | |
httpd-2.4.12/modules/core/test/conf/test43.conf | |
httpd-2.4.12/modules/core/test/conf/test44.conf | |
httpd-2.4.12/modules/core/test/conf/test45.conf | |
httpd-2.4.12/modules/core/test/conf/test46.conf | |
httpd-2.4.12/modules/core/test/conf/test47.conf | |
httpd-2.4.12/modules/core/test/conf/test48.conf | |
httpd-2.4.12/modules/core/test/conf/test49.conf | |
httpd-2.4.12/modules/core/test/conf/test50.conf | |
httpd-2.4.12/modules/core/test/conf/test51.conf | |
httpd-2.4.12/modules/core/test/conf/test52.conf | |
httpd-2.4.12/modules/core/test/conf/test53.conf | |
httpd-2.4.12/modules/core/test/conf/test54.conf | |
httpd-2.4.12/modules/core/test/conf/test55.conf | |
httpd-2.4.12/modules/core/test/conf/test56.conf | |
httpd-2.4.12/modules/core/test/conf/test57.conf | |
httpd-2.4.12/modules/core/test/conf/test58.conf | |
httpd-2.4.12/modules/core/test/conf/test59.conf | |
httpd-2.4.12/modules/core/test/conf/test60.conf | |
httpd-2.4.12/modules/core/test/conf/test61.conf | |
httpd-2.4.12/modules/core/test/conf/test62.conf | |
httpd-2.4.12/modules/core/test/conf/test63.conf | |
httpd-2.4.12/modules/core/test/conf/test64.conf | |
httpd-2.4.12/modules/core/test/conf/test65.conf | |
httpd-2.4.12/modules/core/test/conf/test66.conf | |
httpd-2.4.12/modules/core/test/conf/test67.conf | |
httpd-2.4.12/modules/core/test/conf/test68.conf | |
httpd-2.4.12/modules/core/test/conf/test69.conf | |
httpd-2.4.12/modules/cluster/config5.m4 | |
httpd-2.4.12/modules/cluster/Makefile.in | |
httpd-2.4.12/modules/cluster/mod_heartbeat.c | |
httpd-2.4.12/modules/cluster/mod_heartbeat.dsp | |
httpd-2.4.12/modules/cluster/mod_heartmonitor.c | |
httpd-2.4.12/modules/cluster/mod_heartmonitor.dsp | |
httpd-2.4.12/modules/cluster/NWGNUmakefile | |
httpd-2.4.12/modules/cluster/NWGNUmodheartbeat | |
httpd-2.4.12/modules/cluster/NWGNUmodheartmonitor | |
httpd-2.4.12/modules/cluster/README.heartbeat | |
httpd-2.4.12/modules/cluster/README.heartmonitor | |
httpd-2.4.12/modules/cache/.indent.pro | |
httpd-2.4.12/modules/cache/cache_common.h | |
httpd-2.4.12/modules/cache/cache_disk_common.h | |
httpd-2.4.12/modules/cache/cache_socache_common.h | |
httpd-2.4.12/modules/cache/cache_storage.c | |
httpd-2.4.12/modules/cache/cache_storage.h | |
httpd-2.4.12/modules/cache/cache_util.c | |
httpd-2.4.12/modules/cache/cache_util.h | |
httpd-2.4.12/modules/cache/config.m4 | |
httpd-2.4.12/modules/cache/Makefile.in | |
httpd-2.4.12/modules/cache/mod_cache.c | |
httpd-2.4.12/modules/cache/mod_cache.dsp | |
httpd-2.4.12/modules/cache/mod_cache.h | |
httpd-2.4.12/modules/cache/mod_cache_disk.c | |
httpd-2.4.12/modules/cache/mod_cache_disk.dsp | |
httpd-2.4.12/modules/cache/mod_cache_disk.h | |
httpd-2.4.12/modules/cache/mod_cache_socache.c | |
httpd-2.4.12/modules/cache/mod_cache_socache.dsp | |
httpd-2.4.12/modules/cache/mod_file_cache.c | |
httpd-2.4.12/modules/cache/mod_file_cache.dsp | |
httpd-2.4.12/modules/cache/mod_file_cache.exp | |
httpd-2.4.12/modules/cache/mod_socache_dbm.c | |
httpd-2.4.12/modules/cache/mod_socache_dbm.dsp | |
httpd-2.4.12/modules/cache/mod_socache_dc.c | |
httpd-2.4.12/modules/cache/mod_socache_dc.dsp | |
httpd-2.4.12/modules/cache/mod_socache_memcache.c | |
httpd-2.4.12/modules/cache/mod_socache_memcache.dsp | |
httpd-2.4.12/modules/cache/mod_socache_shmcb.c | |
httpd-2.4.12/modules/cache/mod_socache_shmcb.dsp | |
httpd-2.4.12/modules/cache/NWGNUcach_dsk | |
httpd-2.4.12/modules/cache/NWGNUcach_socache | |
httpd-2.4.12/modules/cache/NWGNUmakefile | |
httpd-2.4.12/modules/cache/NWGNUmod_cach | |
httpd-2.4.12/modules/cache/NWGNUsocachdbm | |
httpd-2.4.12/modules/cache/NWGNUsocachmem | |
httpd-2.4.12/modules/cache/NWGNUsocachshmcb | |
httpd-2.4.12/modules/arch/netware/ | |
httpd-2.4.12/modules/arch/unix/ | |
httpd-2.4.12/modules/arch/win32/ | |
httpd-2.4.12/modules/arch/win32/config.m4 | |
httpd-2.4.12/modules/arch/win32/Makefile.in | |
httpd-2.4.12/modules/arch/win32/mod_isapi.c | |
httpd-2.4.12/modules/arch/win32/mod_isapi.dsp | |
httpd-2.4.12/modules/arch/win32/mod_isapi.h | |
httpd-2.4.12/modules/arch/win32/mod_win32.c | |
httpd-2.4.12/modules/arch/unix/config5.m4 | |
httpd-2.4.12/modules/arch/unix/Makefile.in | |
httpd-2.4.12/modules/arch/unix/mod_privileges.c | |
httpd-2.4.12/modules/arch/unix/mod_unixd.c | |
httpd-2.4.12/modules/arch/unix/mod_unixd.h | |
httpd-2.4.12/modules/arch/netware/libprews.c | |
httpd-2.4.12/modules/arch/netware/mod_netware.c | |
httpd-2.4.12/modules/arch/netware/mod_nw_ssl.c | |
httpd-2.4.12/modules/aaa/.indent.pro | |
httpd-2.4.12/modules/aaa/config.m4 | |
httpd-2.4.12/modules/aaa/Makefile.in | |
httpd-2.4.12/modules/aaa/mod_access_compat.c | |
httpd-2.4.12/modules/aaa/mod_access_compat.dsp | |
httpd-2.4.12/modules/aaa/mod_allowmethods.c | |
httpd-2.4.12/modules/aaa/mod_allowmethods.dsp | |
httpd-2.4.12/modules/aaa/mod_auth_basic.c | |
httpd-2.4.12/modules/aaa/mod_auth_basic.dsp | |
httpd-2.4.12/modules/aaa/mod_auth_digest.c | |
httpd-2.4.12/modules/aaa/mod_auth_digest.dsp | |
httpd-2.4.12/modules/aaa/mod_auth_form.c | |
httpd-2.4.12/modules/aaa/mod_auth_form.dsp | |
httpd-2.4.12/modules/aaa/mod_authn_anon.c | |
httpd-2.4.12/modules/aaa/mod_authn_anon.dsp | |
httpd-2.4.12/modules/aaa/mod_authn_core.c | |
httpd-2.4.12/modules/aaa/mod_authn_core.dsp | |
httpd-2.4.12/modules/aaa/mod_authn_dbd.c | |
httpd-2.4.12/modules/aaa/mod_authn_dbd.dsp | |
httpd-2.4.12/modules/aaa/mod_authn_dbm.c | |
httpd-2.4.12/modules/aaa/mod_authn_dbm.dsp | |
httpd-2.4.12/modules/aaa/mod_authn_file.c | |
httpd-2.4.12/modules/aaa/mod_authn_file.dsp | |
httpd-2.4.12/modules/aaa/mod_authn_socache.c | |
httpd-2.4.12/modules/aaa/mod_authn_socache.dsp | |
httpd-2.4.12/modules/aaa/mod_authnz_fcgi.c | |
httpd-2.4.12/modules/aaa/mod_authnz_fcgi.dsp | |
httpd-2.4.12/modules/aaa/mod_authnz_ldap.c | |
httpd-2.4.12/modules/aaa/mod_authnz_ldap.dsp | |
httpd-2.4.12/modules/aaa/mod_authz_core.c | |
httpd-2.4.12/modules/aaa/mod_authz_core.dsp | |
httpd-2.4.12/modules/aaa/mod_authz_dbd.c | |
httpd-2.4.12/modules/aaa/mod_authz_dbd.dsp | |
httpd-2.4.12/modules/aaa/mod_authz_dbd.h | |
httpd-2.4.12/modules/aaa/mod_authz_dbm.c | |
httpd-2.4.12/modules/aaa/mod_authz_dbm.dsp | |
httpd-2.4.12/modules/aaa/mod_authz_groupfile.c | |
httpd-2.4.12/modules/aaa/mod_authz_groupfile.dsp | |
httpd-2.4.12/modules/aaa/mod_authz_host.c | |
httpd-2.4.12/modules/aaa/mod_authz_host.dsp | |
httpd-2.4.12/modules/aaa/mod_authz_owner.c | |
httpd-2.4.12/modules/aaa/mod_authz_owner.dsp | |
httpd-2.4.12/modules/aaa/mod_authz_user.c | |
httpd-2.4.12/modules/aaa/mod_authz_user.dsp | |
httpd-2.4.12/modules/aaa/NWGNUaccesscompat | |
httpd-2.4.12/modules/aaa/NWGNUallowmethods | |
httpd-2.4.12/modules/aaa/NWGNUauthbasc | |
httpd-2.4.12/modules/aaa/NWGNUauthdigt | |
httpd-2.4.12/modules/aaa/NWGNUauthform | |
httpd-2.4.12/modules/aaa/NWGNUauthnano | |
httpd-2.4.12/modules/aaa/NWGNUauthndbd | |
httpd-2.4.12/modules/aaa/NWGNUauthndbm | |
httpd-2.4.12/modules/aaa/NWGNUauthnfil | |
httpd-2.4.12/modules/aaa/NWGNUauthnsocache | |
httpd-2.4.12/modules/aaa/NWGNUauthnzldap | |
httpd-2.4.12/modules/aaa/NWGNUauthzdbd | |
httpd-2.4.12/modules/aaa/NWGNUauthzdbm | |
httpd-2.4.12/modules/aaa/NWGNUauthzgrp | |
httpd-2.4.12/modules/aaa/NWGNUauthzusr | |
httpd-2.4.12/modules/aaa/NWGNUmakefile | |
httpd-2.4.12/include/.indent.pro | |
httpd-2.4.12/include/ap_compat.h | |
httpd-2.4.12/include/ap_config.h | |
httpd-2.4.12/include/ap_config_auto.h.in | |
httpd-2.4.12/include/ap_config_layout.h.in | |
httpd-2.4.12/include/ap_expr.h | |
httpd-2.4.12/include/ap_hooks.h | |
httpd-2.4.12/include/ap_listen.h | |
httpd-2.4.12/include/ap_mmn.h | |
httpd-2.4.12/include/ap_mpm.h | |
httpd-2.4.12/include/ap_provider.h | |
httpd-2.4.12/include/ap_regex.h | |
httpd-2.4.12/include/ap_regkey.h | |
httpd-2.4.12/include/ap_release.h | |
httpd-2.4.12/include/ap_slotmem.h | |
httpd-2.4.12/include/ap_socache.h | |
httpd-2.4.12/include/apache_noprobes.h | |
httpd-2.4.12/include/heartbeat.h | |
httpd-2.4.12/include/http_config.h | |
httpd-2.4.12/include/http_connection.h | |
httpd-2.4.12/include/http_core.h | |
httpd-2.4.12/include/http_log.h | |
httpd-2.4.12/include/http_main.h | |
httpd-2.4.12/include/http_protocol.h | |
httpd-2.4.12/include/http_request.h | |
httpd-2.4.12/include/http_vhost.h | |
httpd-2.4.12/include/httpd.h | |
httpd-2.4.12/include/mod_auth.h | |
httpd-2.4.12/include/mod_core.h | |
httpd-2.4.12/include/mod_request.h | |
httpd-2.4.12/include/mpm_common.h | |
httpd-2.4.12/include/scoreboard.h | |
httpd-2.4.12/include/util_cfgtree.h | |
httpd-2.4.12/include/util_charset.h | |
httpd-2.4.12/include/util_cookies.h | |
httpd-2.4.12/include/util_ebcdic.h | |
httpd-2.4.12/include/util_fcgi.h | |
httpd-2.4.12/include/util_filter.h | |
httpd-2.4.12/include/util_ldap.h | |
httpd-2.4.12/include/util_md5.h | |
httpd-2.4.12/include/util_mutex.h | |
httpd-2.4.12/include/util_script.h | |
httpd-2.4.12/include/util_time.h | |
httpd-2.4.12/include/util_varbuf.h | |
httpd-2.4.12/include/util_xml.h | |
httpd-2.4.12/docs/cgi-examples/ | |
httpd-2.4.12/docs/conf/ | |
httpd-2.4.12/docs/docroot/ | |
httpd-2.4.12/docs/doxygen.conf | |
httpd-2.4.12/docs/error/ | |
httpd-2.4.12/docs/icons/ | |
httpd-2.4.12/docs/man/ | |
httpd-2.4.12/docs/manual/ | |
httpd-2.4.12/docs/manual/bind.html | |
httpd-2.4.12/docs/manual/bind.html.de | |
httpd-2.4.12/docs/manual/bind.html.en | |
httpd-2.4.12/docs/manual/bind.html.fr | |
httpd-2.4.12/docs/manual/bind.html.ja.utf8 | |
httpd-2.4.12/docs/manual/bind.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/bind.html.tr.utf8 | |
httpd-2.4.12/docs/manual/BUILDING | |
httpd-2.4.12/docs/manual/caching.html | |
httpd-2.4.12/docs/manual/caching.html.en | |
httpd-2.4.12/docs/manual/caching.html.fr | |
httpd-2.4.12/docs/manual/caching.html.tr.utf8 | |
httpd-2.4.12/docs/manual/configuring.html | |
httpd-2.4.12/docs/manual/configuring.html.de | |
httpd-2.4.12/docs/manual/configuring.html.en | |
httpd-2.4.12/docs/manual/configuring.html.fr | |
httpd-2.4.12/docs/manual/configuring.html.ja.utf8 | |
httpd-2.4.12/docs/manual/configuring.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/configuring.html.tr.utf8 | |
httpd-2.4.12/docs/manual/content-negotiation.html | |
httpd-2.4.12/docs/manual/content-negotiation.html.en | |
httpd-2.4.12/docs/manual/content-negotiation.html.fr | |
httpd-2.4.12/docs/manual/content-negotiation.html.ja.utf8 | |
httpd-2.4.12/docs/manual/content-negotiation.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/content-negotiation.html.tr.utf8 | |
httpd-2.4.12/docs/manual/convenience.map | |
httpd-2.4.12/docs/manual/custom-error.html | |
httpd-2.4.12/docs/manual/custom-error.html.en | |
httpd-2.4.12/docs/manual/custom-error.html.es | |
httpd-2.4.12/docs/manual/custom-error.html.fr | |
httpd-2.4.12/docs/manual/custom-error.html.ja.utf8 | |
httpd-2.4.12/docs/manual/custom-error.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/custom-error.html.tr.utf8 | |
httpd-2.4.12/docs/manual/developer/ | |
httpd-2.4.12/docs/manual/dns-caveats.html | |
httpd-2.4.12/docs/manual/dns-caveats.html.en | |
httpd-2.4.12/docs/manual/dns-caveats.html.fr | |
httpd-2.4.12/docs/manual/dns-caveats.html.ja.utf8 | |
httpd-2.4.12/docs/manual/dns-caveats.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/dns-caveats.html.tr.utf8 | |
httpd-2.4.12/docs/manual/dso.html | |
httpd-2.4.12/docs/manual/dso.html.en | |
httpd-2.4.12/docs/manual/dso.html.fr | |
httpd-2.4.12/docs/manual/dso.html.ja.utf8 | |
httpd-2.4.12/docs/manual/dso.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/dso.html.tr.utf8 | |
httpd-2.4.12/docs/manual/env.html | |
httpd-2.4.12/docs/manual/env.html.en | |
httpd-2.4.12/docs/manual/env.html.fr | |
httpd-2.4.12/docs/manual/env.html.ja.utf8 | |
httpd-2.4.12/docs/manual/env.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/env.html.tr.utf8 | |
httpd-2.4.12/docs/manual/expr.html | |
httpd-2.4.12/docs/manual/expr.html.en | |
httpd-2.4.12/docs/manual/expr.html.fr | |
httpd-2.4.12/docs/manual/faq/ | |
httpd-2.4.12/docs/manual/filter.html | |
httpd-2.4.12/docs/manual/filter.html.en | |
httpd-2.4.12/docs/manual/filter.html.es | |
httpd-2.4.12/docs/manual/filter.html.fr | |
httpd-2.4.12/docs/manual/filter.html.ja.utf8 | |
httpd-2.4.12/docs/manual/filter.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/filter.html.tr.utf8 | |
httpd-2.4.12/docs/manual/getting-started.html | |
httpd-2.4.12/docs/manual/getting-started.html.en | |
httpd-2.4.12/docs/manual/getting-started.html.fr | |
httpd-2.4.12/docs/manual/glossary.html | |
httpd-2.4.12/docs/manual/glossary.html.de | |
httpd-2.4.12/docs/manual/glossary.html.en | |
httpd-2.4.12/docs/manual/glossary.html.es | |
httpd-2.4.12/docs/manual/glossary.html.fr | |
httpd-2.4.12/docs/manual/glossary.html.ja.utf8 | |
httpd-2.4.12/docs/manual/glossary.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/glossary.html.tr.utf8 | |
httpd-2.4.12/docs/manual/handler.html | |
httpd-2.4.12/docs/manual/handler.html.en | |
httpd-2.4.12/docs/manual/handler.html.es | |
httpd-2.4.12/docs/manual/handler.html.fr | |
httpd-2.4.12/docs/manual/handler.html.ja.utf8 | |
httpd-2.4.12/docs/manual/handler.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/handler.html.tr.utf8 | |
httpd-2.4.12/docs/manual/handler.html.zh-cn.utf8 | |
httpd-2.4.12/docs/manual/howto/ | |
httpd-2.4.12/docs/manual/images/ | |
httpd-2.4.12/docs/manual/index.html | |
httpd-2.4.12/docs/manual/index.html.da | |
httpd-2.4.12/docs/manual/index.html.de | |
httpd-2.4.12/docs/manual/index.html.en | |
httpd-2.4.12/docs/manual/index.html.es | |
httpd-2.4.12/docs/manual/index.html.fr | |
httpd-2.4.12/docs/manual/index.html.ja.utf8 | |
httpd-2.4.12/docs/manual/index.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/index.html.pt-br | |
httpd-2.4.12/docs/manual/index.html.tr.utf8 | |
httpd-2.4.12/docs/manual/index.html.zh-cn.utf8 | |
httpd-2.4.12/docs/manual/install.html | |
httpd-2.4.12/docs/manual/install.html.de | |
httpd-2.4.12/docs/manual/install.html.en | |
httpd-2.4.12/docs/manual/install.html.es | |
httpd-2.4.12/docs/manual/install.html.fr | |
httpd-2.4.12/docs/manual/install.html.ja.utf8 | |
httpd-2.4.12/docs/manual/install.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/install.html.tr.utf8 | |
httpd-2.4.12/docs/manual/invoking.html | |
httpd-2.4.12/docs/manual/invoking.html.de | |
httpd-2.4.12/docs/manual/invoking.html.en | |
httpd-2.4.12/docs/manual/invoking.html.es | |
httpd-2.4.12/docs/manual/invoking.html.fr | |
httpd-2.4.12/docs/manual/invoking.html.ja.utf8 | |
httpd-2.4.12/docs/manual/invoking.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/invoking.html.tr.utf8 | |
httpd-2.4.12/docs/manual/LICENSE | |
httpd-2.4.12/docs/manual/license.html | |
httpd-2.4.12/docs/manual/license.html.en | |
httpd-2.4.12/docs/manual/logs.html | |
httpd-2.4.12/docs/manual/logs.html.en | |
httpd-2.4.12/docs/manual/logs.html.fr | |
httpd-2.4.12/docs/manual/logs.html.ja.utf8 | |
httpd-2.4.12/docs/manual/logs.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/logs.html.tr.utf8 | |
httpd-2.4.12/docs/manual/misc/ | |
httpd-2.4.12/docs/manual/mod/ | |
httpd-2.4.12/docs/manual/mpm.html | |
httpd-2.4.12/docs/manual/mpm.html.de | |
httpd-2.4.12/docs/manual/mpm.html.en | |
httpd-2.4.12/docs/manual/mpm.html.es | |
httpd-2.4.12/docs/manual/mpm.html.fr | |
httpd-2.4.12/docs/manual/mpm.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mpm.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mpm.html.tr.utf8 | |
httpd-2.4.12/docs/manual/mpm.html.zh-cn.utf8 | |
httpd-2.4.12/docs/manual/new_features_2_0.html | |
httpd-2.4.12/docs/manual/new_features_2_0.html.de | |
httpd-2.4.12/docs/manual/new_features_2_0.html.en | |
httpd-2.4.12/docs/manual/new_features_2_0.html.fr | |
httpd-2.4.12/docs/manual/new_features_2_0.html.ja.utf8 | |
httpd-2.4.12/docs/manual/new_features_2_0.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/new_features_2_0.html.pt-br | |
httpd-2.4.12/docs/manual/new_features_2_0.html.ru.koi8-r | |
httpd-2.4.12/docs/manual/new_features_2_0.html.tr.utf8 | |
httpd-2.4.12/docs/manual/new_features_2_2.html | |
httpd-2.4.12/docs/manual/new_features_2_2.html.en | |
httpd-2.4.12/docs/manual/new_features_2_2.html.fr | |
httpd-2.4.12/docs/manual/new_features_2_2.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/new_features_2_2.html.pt-br | |
httpd-2.4.12/docs/manual/new_features_2_2.html.tr.utf8 | |
httpd-2.4.12/docs/manual/new_features_2_4.html | |
httpd-2.4.12/docs/manual/new_features_2_4.html.en | |
httpd-2.4.12/docs/manual/new_features_2_4.html.fr | |
httpd-2.4.12/docs/manual/new_features_2_4.html.tr.utf8 | |
httpd-2.4.12/docs/manual/platform/ | |
httpd-2.4.12/docs/manual/programs/ | |
httpd-2.4.12/docs/manual/rewrite/ | |
httpd-2.4.12/docs/manual/sections.html | |
httpd-2.4.12/docs/manual/sections.html.en | |
httpd-2.4.12/docs/manual/sections.html.fr | |
httpd-2.4.12/docs/manual/sections.html.ja.utf8 | |
httpd-2.4.12/docs/manual/sections.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/sections.html.tr.utf8 | |
httpd-2.4.12/docs/manual/server-wide.html | |
httpd-2.4.12/docs/manual/server-wide.html.en | |
httpd-2.4.12/docs/manual/server-wide.html.fr | |
httpd-2.4.12/docs/manual/server-wide.html.ja.utf8 | |
httpd-2.4.12/docs/manual/server-wide.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/server-wide.html.tr.utf8 | |
httpd-2.4.12/docs/manual/sitemap.html | |
httpd-2.4.12/docs/manual/sitemap.html.de | |
httpd-2.4.12/docs/manual/sitemap.html.en | |
httpd-2.4.12/docs/manual/sitemap.html.es | |
httpd-2.4.12/docs/manual/sitemap.html.fr | |
httpd-2.4.12/docs/manual/sitemap.html.ja.utf8 | |
httpd-2.4.12/docs/manual/sitemap.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/sitemap.html.tr.utf8 | |
httpd-2.4.12/docs/manual/sitemap.html.zh-cn.utf8 | |
httpd-2.4.12/docs/manual/socache.html | |
httpd-2.4.12/docs/manual/socache.html.en | |
httpd-2.4.12/docs/manual/socache.html.fr | |
httpd-2.4.12/docs/manual/ssl/ | |
httpd-2.4.12/docs/manual/stopping.html | |
httpd-2.4.12/docs/manual/stopping.html.de | |
httpd-2.4.12/docs/manual/stopping.html.en | |
httpd-2.4.12/docs/manual/stopping.html.es | |
httpd-2.4.12/docs/manual/stopping.html.fr | |
httpd-2.4.12/docs/manual/stopping.html.ja.utf8 | |
httpd-2.4.12/docs/manual/stopping.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/stopping.html.tr.utf8 | |
httpd-2.4.12/docs/manual/style/ | |
httpd-2.4.12/docs/manual/suexec.html | |
httpd-2.4.12/docs/manual/suexec.html.en | |
httpd-2.4.12/docs/manual/suexec.html.fr | |
httpd-2.4.12/docs/manual/suexec.html.ja.utf8 | |
httpd-2.4.12/docs/manual/suexec.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/suexec.html.tr.utf8 | |
httpd-2.4.12/docs/manual/upgrading.html | |
httpd-2.4.12/docs/manual/upgrading.html.en | |
httpd-2.4.12/docs/manual/upgrading.html.fr | |
httpd-2.4.12/docs/manual/urlmapping.html | |
httpd-2.4.12/docs/manual/urlmapping.html.en | |
httpd-2.4.12/docs/manual/urlmapping.html.fr | |
httpd-2.4.12/docs/manual/urlmapping.html.ja.utf8 | |
httpd-2.4.12/docs/manual/urlmapping.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/urlmapping.html.tr.utf8 | |
httpd-2.4.12/docs/manual/vhosts/ | |
httpd-2.4.12/docs/manual/vhosts/details.html | |
httpd-2.4.12/docs/manual/vhosts/details.html.en | |
httpd-2.4.12/docs/manual/vhosts/details.html.fr | |
httpd-2.4.12/docs/manual/vhosts/details.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/vhosts/details.html.tr.utf8 | |
httpd-2.4.12/docs/manual/vhosts/examples.html | |
httpd-2.4.12/docs/manual/vhosts/examples.html.en | |
httpd-2.4.12/docs/manual/vhosts/examples.html.fr | |
httpd-2.4.12/docs/manual/vhosts/examples.html.ja.utf8 | |
httpd-2.4.12/docs/manual/vhosts/examples.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/vhosts/examples.html.tr.utf8 | |
httpd-2.4.12/docs/manual/vhosts/fd-limits.html | |
httpd-2.4.12/docs/manual/vhosts/fd-limits.html.en | |
httpd-2.4.12/docs/manual/vhosts/fd-limits.html.fr | |
httpd-2.4.12/docs/manual/vhosts/fd-limits.html.ja.utf8 | |
httpd-2.4.12/docs/manual/vhosts/fd-limits.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/vhosts/fd-limits.html.tr.utf8 | |
httpd-2.4.12/docs/manual/vhosts/index.html | |
httpd-2.4.12/docs/manual/vhosts/index.html.de | |
httpd-2.4.12/docs/manual/vhosts/index.html.en | |
httpd-2.4.12/docs/manual/vhosts/index.html.fr | |
httpd-2.4.12/docs/manual/vhosts/index.html.ja.utf8 | |
httpd-2.4.12/docs/manual/vhosts/index.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/vhosts/index.html.tr.utf8 | |
httpd-2.4.12/docs/manual/vhosts/index.html.zh-cn.utf8 | |
httpd-2.4.12/docs/manual/vhosts/ip-based.html | |
httpd-2.4.12/docs/manual/vhosts/ip-based.html.en | |
httpd-2.4.12/docs/manual/vhosts/ip-based.html.fr | |
httpd-2.4.12/docs/manual/vhosts/ip-based.html.ja.utf8 | |
httpd-2.4.12/docs/manual/vhosts/ip-based.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/vhosts/ip-based.html.tr.utf8 | |
httpd-2.4.12/docs/manual/vhosts/mass.html | |
httpd-2.4.12/docs/manual/vhosts/mass.html.en | |
httpd-2.4.12/docs/manual/vhosts/mass.html.fr | |
httpd-2.4.12/docs/manual/vhosts/mass.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/vhosts/mass.html.tr.utf8 | |
httpd-2.4.12/docs/manual/vhosts/name-based.html | |
httpd-2.4.12/docs/manual/vhosts/name-based.html.de | |
httpd-2.4.12/docs/manual/vhosts/name-based.html.en | |
httpd-2.4.12/docs/manual/vhosts/name-based.html.fr | |
httpd-2.4.12/docs/manual/vhosts/name-based.html.ja.utf8 | |
httpd-2.4.12/docs/manual/vhosts/name-based.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/vhosts/name-based.html.tr.utf8 | |
httpd-2.4.12/docs/manual/style/build.properties | |
httpd-2.4.12/docs/manual/style/common.dtd | |
httpd-2.4.12/docs/manual/style/css/ | |
httpd-2.4.12/docs/manual/style/faq.dtd | |
httpd-2.4.12/docs/manual/style/lang/ | |
httpd-2.4.12/docs/manual/style/lang.dtd | |
httpd-2.4.12/docs/manual/style/latex/ | |
httpd-2.4.12/docs/manual/style/manualpage.dtd | |
httpd-2.4.12/docs/manual/style/modulesynopsis.dtd | |
httpd-2.4.12/docs/manual/style/scripts/ | |
httpd-2.4.12/docs/manual/style/sitemap.dtd | |
httpd-2.4.12/docs/manual/style/version.ent | |
httpd-2.4.12/docs/manual/style/xsl/ | |
httpd-2.4.12/docs/manual/style/xsl/util/ | |
httpd-2.4.12/docs/manual/style/scripts/MINIFY | |
httpd-2.4.12/docs/manual/style/scripts/prettify.js | |
httpd-2.4.12/docs/manual/style/scripts/prettify.min.js | |
httpd-2.4.12/docs/manual/style/latex/atbeginend.sty | |
httpd-2.4.12/docs/manual/style/css/manual-chm.css | |
httpd-2.4.12/docs/manual/style/css/manual-loose-100pc.css | |
httpd-2.4.12/docs/manual/style/css/manual-print.css | |
httpd-2.4.12/docs/manual/style/css/manual-zip-100pc.css | |
httpd-2.4.12/docs/manual/style/css/manual-zip.css | |
httpd-2.4.12/docs/manual/style/css/manual.css | |
httpd-2.4.12/docs/manual/style/css/prettify.css | |
httpd-2.4.12/docs/manual/ssl/index.html | |
httpd-2.4.12/docs/manual/ssl/index.html.en | |
httpd-2.4.12/docs/manual/ssl/index.html.fr | |
httpd-2.4.12/docs/manual/ssl/index.html.ja.utf8 | |
httpd-2.4.12/docs/manual/ssl/index.html.tr.utf8 | |
httpd-2.4.12/docs/manual/ssl/index.html.zh-cn.utf8 | |
httpd-2.4.12/docs/manual/ssl/ssl_compat.html | |
httpd-2.4.12/docs/manual/ssl/ssl_compat.html.en | |
httpd-2.4.12/docs/manual/ssl/ssl_compat.html.fr | |
httpd-2.4.12/docs/manual/ssl/ssl_faq.html | |
httpd-2.4.12/docs/manual/ssl/ssl_faq.html.en | |
httpd-2.4.12/docs/manual/ssl/ssl_faq.html.fr | |
httpd-2.4.12/docs/manual/ssl/ssl_howto.html | |
httpd-2.4.12/docs/manual/ssl/ssl_howto.html.en | |
httpd-2.4.12/docs/manual/ssl/ssl_howto.html.fr | |
httpd-2.4.12/docs/manual/ssl/ssl_intro.html | |
httpd-2.4.12/docs/manual/ssl/ssl_intro.html.en | |
httpd-2.4.12/docs/manual/ssl/ssl_intro.html.fr | |
httpd-2.4.12/docs/manual/ssl/ssl_intro.html.ja.utf8 | |
httpd-2.4.12/docs/manual/rewrite/access.html | |
httpd-2.4.12/docs/manual/rewrite/access.html.en | |
httpd-2.4.12/docs/manual/rewrite/access.html.fr | |
httpd-2.4.12/docs/manual/rewrite/advanced.html | |
httpd-2.4.12/docs/manual/rewrite/advanced.html.en | |
httpd-2.4.12/docs/manual/rewrite/advanced.html.fr | |
httpd-2.4.12/docs/manual/rewrite/avoid.html | |
httpd-2.4.12/docs/manual/rewrite/avoid.html.en | |
httpd-2.4.12/docs/manual/rewrite/avoid.html.fr | |
httpd-2.4.12/docs/manual/rewrite/flags.html | |
httpd-2.4.12/docs/manual/rewrite/flags.html.en | |
httpd-2.4.12/docs/manual/rewrite/flags.html.fr | |
httpd-2.4.12/docs/manual/rewrite/htaccess.html | |
httpd-2.4.12/docs/manual/rewrite/htaccess.html.en | |
httpd-2.4.12/docs/manual/rewrite/htaccess.html.fr | |
httpd-2.4.12/docs/manual/rewrite/index.html | |
httpd-2.4.12/docs/manual/rewrite/index.html.en | |
httpd-2.4.12/docs/manual/rewrite/index.html.fr | |
httpd-2.4.12/docs/manual/rewrite/index.html.tr.utf8 | |
httpd-2.4.12/docs/manual/rewrite/index.html.zh-cn.utf8 | |
httpd-2.4.12/docs/manual/rewrite/intro.html | |
httpd-2.4.12/docs/manual/rewrite/intro.html.en | |
httpd-2.4.12/docs/manual/rewrite/intro.html.fr | |
httpd-2.4.12/docs/manual/rewrite/proxy.html | |
httpd-2.4.12/docs/manual/rewrite/proxy.html.en | |
httpd-2.4.12/docs/manual/rewrite/proxy.html.fr | |
httpd-2.4.12/docs/manual/rewrite/remapping.html | |
httpd-2.4.12/docs/manual/rewrite/remapping.html.en | |
httpd-2.4.12/docs/manual/rewrite/remapping.html.fr | |
httpd-2.4.12/docs/manual/rewrite/rewritemap.html | |
httpd-2.4.12/docs/manual/rewrite/rewritemap.html.en | |
httpd-2.4.12/docs/manual/rewrite/rewritemap.html.fr | |
httpd-2.4.12/docs/manual/rewrite/tech.html | |
httpd-2.4.12/docs/manual/rewrite/tech.html.en | |
httpd-2.4.12/docs/manual/rewrite/tech.html.fr | |
httpd-2.4.12/docs/manual/rewrite/vhosts.html | |
httpd-2.4.12/docs/manual/rewrite/vhosts.html.en | |
httpd-2.4.12/docs/manual/rewrite/vhosts.html.fr | |
httpd-2.4.12/docs/manual/programs/ab.html | |
httpd-2.4.12/docs/manual/programs/ab.html.en | |
httpd-2.4.12/docs/manual/programs/ab.html.fr | |
httpd-2.4.12/docs/manual/programs/ab.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/programs/ab.html.tr.utf8 | |
httpd-2.4.12/docs/manual/programs/apachectl.html | |
httpd-2.4.12/docs/manual/programs/apachectl.html.en | |
httpd-2.4.12/docs/manual/programs/apachectl.html.fr | |
httpd-2.4.12/docs/manual/programs/apachectl.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/programs/apachectl.html.tr.utf8 | |
httpd-2.4.12/docs/manual/programs/apxs.html | |
httpd-2.4.12/docs/manual/programs/apxs.html.en | |
httpd-2.4.12/docs/manual/programs/apxs.html.fr | |
httpd-2.4.12/docs/manual/programs/apxs.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/programs/apxs.html.tr.utf8 | |
httpd-2.4.12/docs/manual/programs/configure.html | |
httpd-2.4.12/docs/manual/programs/configure.html.en | |
httpd-2.4.12/docs/manual/programs/configure.html.fr | |
httpd-2.4.12/docs/manual/programs/configure.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/programs/configure.html.tr.utf8 | |
httpd-2.4.12/docs/manual/programs/dbmmanage.html | |
httpd-2.4.12/docs/manual/programs/dbmmanage.html.en | |
httpd-2.4.12/docs/manual/programs/dbmmanage.html.fr | |
httpd-2.4.12/docs/manual/programs/dbmmanage.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/programs/dbmmanage.html.tr.utf8 | |
httpd-2.4.12/docs/manual/programs/fcgistarter.html | |
httpd-2.4.12/docs/manual/programs/fcgistarter.html.en | |
httpd-2.4.12/docs/manual/programs/fcgistarter.html.fr | |
httpd-2.4.12/docs/manual/programs/fcgistarter.html.tr.utf8 | |
httpd-2.4.12/docs/manual/programs/htcacheclean.html | |
httpd-2.4.12/docs/manual/programs/htcacheclean.html.en | |
httpd-2.4.12/docs/manual/programs/htcacheclean.html.fr | |
httpd-2.4.12/docs/manual/programs/htcacheclean.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/programs/htcacheclean.html.tr.utf8 | |
httpd-2.4.12/docs/manual/programs/htdbm.html | |
httpd-2.4.12/docs/manual/programs/htdbm.html.en | |
httpd-2.4.12/docs/manual/programs/htdbm.html.fr | |
httpd-2.4.12/docs/manual/programs/htdbm.html.tr.utf8 | |
httpd-2.4.12/docs/manual/programs/htdigest.html | |
httpd-2.4.12/docs/manual/programs/htdigest.html.en | |
httpd-2.4.12/docs/manual/programs/htdigest.html.fr | |
httpd-2.4.12/docs/manual/programs/htdigest.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/programs/htdigest.html.tr.utf8 | |
httpd-2.4.12/docs/manual/programs/htpasswd.html | |
httpd-2.4.12/docs/manual/programs/htpasswd.html.en | |
httpd-2.4.12/docs/manual/programs/htpasswd.html.fr | |
httpd-2.4.12/docs/manual/programs/htpasswd.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/programs/htpasswd.html.tr.utf8 | |
httpd-2.4.12/docs/manual/programs/httpd.html | |
httpd-2.4.12/docs/manual/programs/httpd.html.en | |
httpd-2.4.12/docs/manual/programs/httpd.html.fr | |
httpd-2.4.12/docs/manual/programs/httpd.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/programs/httpd.html.tr.utf8 | |
httpd-2.4.12/docs/manual/programs/httxt2dbm.html | |
httpd-2.4.12/docs/manual/programs/httxt2dbm.html.en | |
httpd-2.4.12/docs/manual/programs/httxt2dbm.html.fr | |
httpd-2.4.12/docs/manual/programs/httxt2dbm.html.tr.utf8 | |
httpd-2.4.12/docs/manual/programs/index.html | |
httpd-2.4.12/docs/manual/programs/index.html.en | |
httpd-2.4.12/docs/manual/programs/index.html.es | |
httpd-2.4.12/docs/manual/programs/index.html.fr | |
httpd-2.4.12/docs/manual/programs/index.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/programs/index.html.tr.utf8 | |
httpd-2.4.12/docs/manual/programs/index.html.zh-cn.utf8 | |
httpd-2.4.12/docs/manual/programs/log_server_status.html | |
httpd-2.4.12/docs/manual/programs/log_server_status.html.en | |
httpd-2.4.12/docs/manual/programs/logresolve.html | |
httpd-2.4.12/docs/manual/programs/logresolve.html.en | |
httpd-2.4.12/docs/manual/programs/logresolve.html.fr | |
httpd-2.4.12/docs/manual/programs/logresolve.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/programs/logresolve.html.tr.utf8 | |
httpd-2.4.12/docs/manual/programs/other.html | |
httpd-2.4.12/docs/manual/programs/other.html.en | |
httpd-2.4.12/docs/manual/programs/other.html.fr | |
httpd-2.4.12/docs/manual/programs/other.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/programs/other.html.tr.utf8 | |
httpd-2.4.12/docs/manual/programs/rotatelogs.html | |
httpd-2.4.12/docs/manual/programs/rotatelogs.html.en | |
httpd-2.4.12/docs/manual/programs/rotatelogs.html.fr | |
httpd-2.4.12/docs/manual/programs/rotatelogs.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/programs/rotatelogs.html.tr.utf8 | |
httpd-2.4.12/docs/manual/programs/split-logfile.html | |
httpd-2.4.12/docs/manual/programs/split-logfile.html.en | |
httpd-2.4.12/docs/manual/programs/suexec.html | |
httpd-2.4.12/docs/manual/programs/suexec.html.en | |
httpd-2.4.12/docs/manual/programs/suexec.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/programs/suexec.html.tr.utf8 | |
httpd-2.4.12/docs/manual/platform/ebcdic.html | |
httpd-2.4.12/docs/manual/platform/ebcdic.html.en | |
httpd-2.4.12/docs/manual/platform/ebcdic.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/platform/index.html | |
httpd-2.4.12/docs/manual/platform/index.html.en | |
httpd-2.4.12/docs/manual/platform/index.html.fr | |
httpd-2.4.12/docs/manual/platform/index.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/platform/index.html.zh-cn.utf8 | |
httpd-2.4.12/docs/manual/platform/netware.html | |
httpd-2.4.12/docs/manual/platform/netware.html.en | |
httpd-2.4.12/docs/manual/platform/netware.html.fr | |
httpd-2.4.12/docs/manual/platform/netware.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/platform/perf-hp.html | |
httpd-2.4.12/docs/manual/platform/perf-hp.html.en | |
httpd-2.4.12/docs/manual/platform/perf-hp.html.fr | |
httpd-2.4.12/docs/manual/platform/perf-hp.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/platform/rpm.html | |
httpd-2.4.12/docs/manual/platform/rpm.html.en | |
httpd-2.4.12/docs/manual/platform/win_compiling.html | |
httpd-2.4.12/docs/manual/platform/win_compiling.html.en | |
httpd-2.4.12/docs/manual/platform/win_compiling.html.fr | |
httpd-2.4.12/docs/manual/platform/win_compiling.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/platform/windows.html | |
httpd-2.4.12/docs/manual/platform/windows.html.en | |
httpd-2.4.12/docs/manual/platform/windows.html.fr | |
httpd-2.4.12/docs/manual/platform/windows.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/core.html | |
httpd-2.4.12/docs/manual/mod/core.html.de | |
httpd-2.4.12/docs/manual/mod/core.html.en | |
httpd-2.4.12/docs/manual/mod/core.html.es | |
httpd-2.4.12/docs/manual/mod/core.html.fr | |
httpd-2.4.12/docs/manual/mod/core.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/core.html.tr.utf8 | |
httpd-2.4.12/docs/manual/mod/directive-dict.html | |
httpd-2.4.12/docs/manual/mod/directive-dict.html.en | |
httpd-2.4.12/docs/manual/mod/directive-dict.html.fr | |
httpd-2.4.12/docs/manual/mod/directive-dict.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/directive-dict.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/directive-dict.html.tr.utf8 | |
httpd-2.4.12/docs/manual/mod/directives.html | |
httpd-2.4.12/docs/manual/mod/directives.html.de | |
httpd-2.4.12/docs/manual/mod/directives.html.en | |
httpd-2.4.12/docs/manual/mod/directives.html.es | |
httpd-2.4.12/docs/manual/mod/directives.html.fr | |
httpd-2.4.12/docs/manual/mod/directives.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/directives.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/directives.html.tr.utf8 | |
httpd-2.4.12/docs/manual/mod/directives.html.zh-cn.utf8 | |
httpd-2.4.12/docs/manual/mod/event.html | |
httpd-2.4.12/docs/manual/mod/event.html.en | |
httpd-2.4.12/docs/manual/mod/event.html.fr | |
httpd-2.4.12/docs/manual/mod/index.html | |
httpd-2.4.12/docs/manual/mod/index.html.de | |
httpd-2.4.12/docs/manual/mod/index.html.en | |
httpd-2.4.12/docs/manual/mod/index.html.es | |
httpd-2.4.12/docs/manual/mod/index.html.fr | |
httpd-2.4.12/docs/manual/mod/index.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/index.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/index.html.tr.utf8 | |
httpd-2.4.12/docs/manual/mod/index.html.zh-cn.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_access_compat.html | |
httpd-2.4.12/docs/manual/mod/mod_access_compat.html.en | |
httpd-2.4.12/docs/manual/mod/mod_access_compat.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_access_compat.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_actions.html | |
httpd-2.4.12/docs/manual/mod/mod_actions.html.de | |
httpd-2.4.12/docs/manual/mod/mod_actions.html.en | |
httpd-2.4.12/docs/manual/mod/mod_actions.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_actions.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_actions.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_alias.html | |
httpd-2.4.12/docs/manual/mod/mod_alias.html.en | |
httpd-2.4.12/docs/manual/mod/mod_alias.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_alias.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_alias.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_alias.html.tr.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_allowmethods.html | |
httpd-2.4.12/docs/manual/mod/mod_allowmethods.html.en | |
httpd-2.4.12/docs/manual/mod/mod_allowmethods.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_asis.html | |
httpd-2.4.12/docs/manual/mod/mod_asis.html.en | |
httpd-2.4.12/docs/manual/mod/mod_asis.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_asis.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_asis.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_auth_basic.html | |
httpd-2.4.12/docs/manual/mod/mod_auth_basic.html.en | |
httpd-2.4.12/docs/manual/mod/mod_auth_basic.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_auth_basic.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_auth_basic.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_auth_digest.html | |
httpd-2.4.12/docs/manual/mod/mod_auth_digest.html.en | |
httpd-2.4.12/docs/manual/mod/mod_auth_digest.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_auth_digest.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_auth_form.html | |
httpd-2.4.12/docs/manual/mod/mod_auth_form.html.en | |
httpd-2.4.12/docs/manual/mod/mod_auth_form.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_authn_anon.html | |
httpd-2.4.12/docs/manual/mod/mod_authn_anon.html.en | |
httpd-2.4.12/docs/manual/mod/mod_authn_anon.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_authn_anon.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_authn_anon.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_authn_core.html | |
httpd-2.4.12/docs/manual/mod/mod_authn_core.html.en | |
httpd-2.4.12/docs/manual/mod/mod_authn_core.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_authn_dbd.html | |
httpd-2.4.12/docs/manual/mod/mod_authn_dbd.html.en | |
httpd-2.4.12/docs/manual/mod/mod_authn_dbd.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_authn_dbm.html | |
httpd-2.4.12/docs/manual/mod/mod_authn_dbm.html.en | |
httpd-2.4.12/docs/manual/mod/mod_authn_dbm.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_authn_dbm.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_authn_dbm.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_authn_file.html | |
httpd-2.4.12/docs/manual/mod/mod_authn_file.html.en | |
httpd-2.4.12/docs/manual/mod/mod_authn_file.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_authn_file.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_authn_file.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_authn_socache.html | |
httpd-2.4.12/docs/manual/mod/mod_authn_socache.html.en | |
httpd-2.4.12/docs/manual/mod/mod_authn_socache.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_authnz_fcgi.html | |
httpd-2.4.12/docs/manual/mod/mod_authnz_fcgi.html.en | |
httpd-2.4.12/docs/manual/mod/mod_authnz_ldap.html | |
httpd-2.4.12/docs/manual/mod/mod_authnz_ldap.html.en | |
httpd-2.4.12/docs/manual/mod/mod_authnz_ldap.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_authz_core.html | |
httpd-2.4.12/docs/manual/mod/mod_authz_core.html.en | |
httpd-2.4.12/docs/manual/mod/mod_authz_core.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_authz_dbd.html | |
httpd-2.4.12/docs/manual/mod/mod_authz_dbd.html.en | |
httpd-2.4.12/docs/manual/mod/mod_authz_dbd.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_authz_dbm.html | |
httpd-2.4.12/docs/manual/mod/mod_authz_dbm.html.en | |
httpd-2.4.12/docs/manual/mod/mod_authz_dbm.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_authz_dbm.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_authz_groupfile.html | |
httpd-2.4.12/docs/manual/mod/mod_authz_groupfile.html.en | |
httpd-2.4.12/docs/manual/mod/mod_authz_groupfile.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_authz_groupfile.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_authz_groupfile.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_authz_host.html | |
httpd-2.4.12/docs/manual/mod/mod_authz_host.html.en | |
httpd-2.4.12/docs/manual/mod/mod_authz_host.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_authz_owner.html | |
httpd-2.4.12/docs/manual/mod/mod_authz_owner.html.en | |
httpd-2.4.12/docs/manual/mod/mod_authz_owner.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_authz_owner.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_authz_owner.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_authz_user.html | |
httpd-2.4.12/docs/manual/mod/mod_authz_user.html.en | |
httpd-2.4.12/docs/manual/mod/mod_authz_user.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_authz_user.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_authz_user.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_autoindex.html | |
httpd-2.4.12/docs/manual/mod/mod_autoindex.html.en | |
httpd-2.4.12/docs/manual/mod/mod_autoindex.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_autoindex.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_autoindex.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_autoindex.html.tr.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_buffer.html | |
httpd-2.4.12/docs/manual/mod/mod_buffer.html.en | |
httpd-2.4.12/docs/manual/mod/mod_buffer.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_cache.html | |
httpd-2.4.12/docs/manual/mod/mod_cache.html.en | |
httpd-2.4.12/docs/manual/mod/mod_cache.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_cache.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_cache.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_cache_disk.html | |
httpd-2.4.12/docs/manual/mod/mod_cache_disk.html.en | |
httpd-2.4.12/docs/manual/mod/mod_cache_disk.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_cache_disk.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_cache_disk.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_cache_socache.html | |
httpd-2.4.12/docs/manual/mod/mod_cache_socache.html.en | |
httpd-2.4.12/docs/manual/mod/mod_cache_socache.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_cern_meta.html | |
httpd-2.4.12/docs/manual/mod/mod_cern_meta.html.en | |
httpd-2.4.12/docs/manual/mod/mod_cern_meta.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_cern_meta.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_cgi.html | |
httpd-2.4.12/docs/manual/mod/mod_cgi.html.en | |
httpd-2.4.12/docs/manual/mod/mod_cgi.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_cgi.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_cgi.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_cgid.html | |
httpd-2.4.12/docs/manual/mod/mod_cgid.html.en | |
httpd-2.4.12/docs/manual/mod/mod_cgid.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_cgid.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_cgid.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_charset_lite.html | |
httpd-2.4.12/docs/manual/mod/mod_charset_lite.html.en | |
httpd-2.4.12/docs/manual/mod/mod_charset_lite.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_charset_lite.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_data.html | |
httpd-2.4.12/docs/manual/mod/mod_data.html.en | |
httpd-2.4.12/docs/manual/mod/mod_data.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_dav.html | |
httpd-2.4.12/docs/manual/mod/mod_dav.html.en | |
httpd-2.4.12/docs/manual/mod/mod_dav.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_dav.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_dav.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_dav_fs.html | |
httpd-2.4.12/docs/manual/mod/mod_dav_fs.html.en | |
httpd-2.4.12/docs/manual/mod/mod_dav_fs.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_dav_fs.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_dav_fs.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_dav_lock.html | |
httpd-2.4.12/docs/manual/mod/mod_dav_lock.html.en | |
httpd-2.4.12/docs/manual/mod/mod_dav_lock.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_dav_lock.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_dbd.html | |
httpd-2.4.12/docs/manual/mod/mod_dbd.html.en | |
httpd-2.4.12/docs/manual/mod/mod_dbd.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_deflate.html | |
httpd-2.4.12/docs/manual/mod/mod_deflate.html.en | |
httpd-2.4.12/docs/manual/mod/mod_deflate.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_deflate.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_deflate.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_dialup.html | |
httpd-2.4.12/docs/manual/mod/mod_dialup.html.en | |
httpd-2.4.12/docs/manual/mod/mod_dialup.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_dir.html | |
httpd-2.4.12/docs/manual/mod/mod_dir.html.en | |
httpd-2.4.12/docs/manual/mod/mod_dir.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_dir.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_dir.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_dir.html.tr.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_dumpio.html | |
httpd-2.4.12/docs/manual/mod/mod_dumpio.html.en | |
httpd-2.4.12/docs/manual/mod/mod_dumpio.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_dumpio.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_echo.html | |
httpd-2.4.12/docs/manual/mod/mod_echo.html.en | |
httpd-2.4.12/docs/manual/mod/mod_echo.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_echo.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_echo.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_env.html | |
httpd-2.4.12/docs/manual/mod/mod_env.html.en | |
httpd-2.4.12/docs/manual/mod/mod_env.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_env.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_env.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_env.html.tr.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_example_hooks.html | |
httpd-2.4.12/docs/manual/mod/mod_example_hooks.html.en | |
httpd-2.4.12/docs/manual/mod/mod_example_hooks.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_example_hooks.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_expires.html | |
httpd-2.4.12/docs/manual/mod/mod_expires.html.en | |
httpd-2.4.12/docs/manual/mod/mod_expires.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_expires.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_expires.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_ext_filter.html | |
httpd-2.4.12/docs/manual/mod/mod_ext_filter.html.en | |
httpd-2.4.12/docs/manual/mod/mod_ext_filter.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_ext_filter.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_ext_filter.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_file_cache.html | |
httpd-2.4.12/docs/manual/mod/mod_file_cache.html.en | |
httpd-2.4.12/docs/manual/mod/mod_file_cache.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_file_cache.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_filter.html | |
httpd-2.4.12/docs/manual/mod/mod_filter.html.en | |
httpd-2.4.12/docs/manual/mod/mod_filter.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_headers.html | |
httpd-2.4.12/docs/manual/mod/mod_headers.html.en | |
httpd-2.4.12/docs/manual/mod/mod_headers.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_headers.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_headers.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_heartbeat.html | |
httpd-2.4.12/docs/manual/mod/mod_heartbeat.html.en | |
httpd-2.4.12/docs/manual/mod/mod_heartbeat.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_heartmonitor.html | |
httpd-2.4.12/docs/manual/mod/mod_heartmonitor.html.en | |
httpd-2.4.12/docs/manual/mod/mod_heartmonitor.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_ident.html | |
httpd-2.4.12/docs/manual/mod/mod_ident.html.en | |
httpd-2.4.12/docs/manual/mod/mod_ident.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_ident.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_ident.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_imagemap.html | |
httpd-2.4.12/docs/manual/mod/mod_imagemap.html.en | |
httpd-2.4.12/docs/manual/mod/mod_imagemap.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_imagemap.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_include.html | |
httpd-2.4.12/docs/manual/mod/mod_include.html.en | |
httpd-2.4.12/docs/manual/mod/mod_include.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_include.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_info.html | |
httpd-2.4.12/docs/manual/mod/mod_info.html.en | |
httpd-2.4.12/docs/manual/mod/mod_info.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_info.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_info.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_isapi.html | |
httpd-2.4.12/docs/manual/mod/mod_isapi.html.en | |
httpd-2.4.12/docs/manual/mod/mod_isapi.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_isapi.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_lbmethod_bybusyness.html | |
httpd-2.4.12/docs/manual/mod/mod_lbmethod_bybusyness.html.en | |
httpd-2.4.12/docs/manual/mod/mod_lbmethod_bybusyness.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_lbmethod_byrequests.html | |
httpd-2.4.12/docs/manual/mod/mod_lbmethod_byrequests.html.en | |
httpd-2.4.12/docs/manual/mod/mod_lbmethod_byrequests.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_lbmethod_bytraffic.html | |
httpd-2.4.12/docs/manual/mod/mod_lbmethod_bytraffic.html.en | |
httpd-2.4.12/docs/manual/mod/mod_lbmethod_bytraffic.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_lbmethod_heartbeat.html | |
httpd-2.4.12/docs/manual/mod/mod_lbmethod_heartbeat.html.en | |
httpd-2.4.12/docs/manual/mod/mod_lbmethod_heartbeat.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_ldap.html | |
httpd-2.4.12/docs/manual/mod/mod_ldap.html.en | |
httpd-2.4.12/docs/manual/mod/mod_ldap.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_log_config.html | |
httpd-2.4.12/docs/manual/mod/mod_log_config.html.en | |
httpd-2.4.12/docs/manual/mod/mod_log_config.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_log_config.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_log_config.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_log_config.html.tr.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_log_debug.html | |
httpd-2.4.12/docs/manual/mod/mod_log_debug.html.en | |
httpd-2.4.12/docs/manual/mod/mod_log_debug.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_log_forensic.html | |
httpd-2.4.12/docs/manual/mod/mod_log_forensic.html.en | |
httpd-2.4.12/docs/manual/mod/mod_log_forensic.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_log_forensic.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_log_forensic.html.tr.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_logio.html | |
httpd-2.4.12/docs/manual/mod/mod_logio.html.en | |
httpd-2.4.12/docs/manual/mod/mod_logio.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_logio.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_logio.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_logio.html.tr.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_lua.html | |
httpd-2.4.12/docs/manual/mod/mod_lua.html.en | |
httpd-2.4.12/docs/manual/mod/mod_lua.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_macro.html | |
httpd-2.4.12/docs/manual/mod/mod_macro.html.en | |
httpd-2.4.12/docs/manual/mod/mod_macro.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_mime.html | |
httpd-2.4.12/docs/manual/mod/mod_mime.html.en | |
httpd-2.4.12/docs/manual/mod/mod_mime.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_mime.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_mime_magic.html | |
httpd-2.4.12/docs/manual/mod/mod_mime_magic.html.en | |
httpd-2.4.12/docs/manual/mod/mod_mime_magic.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_negotiation.html | |
httpd-2.4.12/docs/manual/mod/mod_negotiation.html.en | |
httpd-2.4.12/docs/manual/mod/mod_negotiation.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_negotiation.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_nw_ssl.html | |
httpd-2.4.12/docs/manual/mod/mod_nw_ssl.html.en | |
httpd-2.4.12/docs/manual/mod/mod_nw_ssl.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_privileges.html | |
httpd-2.4.12/docs/manual/mod/mod_privileges.html.en | |
httpd-2.4.12/docs/manual/mod/mod_privileges.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_proxy.html | |
httpd-2.4.12/docs/manual/mod/mod_proxy.html.en | |
httpd-2.4.12/docs/manual/mod/mod_proxy.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_proxy.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_proxy_ajp.html | |
httpd-2.4.12/docs/manual/mod/mod_proxy_ajp.html.en | |
httpd-2.4.12/docs/manual/mod/mod_proxy_ajp.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_proxy_ajp.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_proxy_balancer.html | |
httpd-2.4.12/docs/manual/mod/mod_proxy_balancer.html.en | |
httpd-2.4.12/docs/manual/mod/mod_proxy_balancer.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_proxy_balancer.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_proxy_connect.html | |
httpd-2.4.12/docs/manual/mod/mod_proxy_connect.html.en | |
httpd-2.4.12/docs/manual/mod/mod_proxy_connect.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_proxy_connect.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_proxy_express.html | |
httpd-2.4.12/docs/manual/mod/mod_proxy_express.html.en | |
httpd-2.4.12/docs/manual/mod/mod_proxy_express.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_proxy_fcgi.html | |
httpd-2.4.12/docs/manual/mod/mod_proxy_fcgi.html.en | |
httpd-2.4.12/docs/manual/mod/mod_proxy_fcgi.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_proxy_fdpass.html | |
httpd-2.4.12/docs/manual/mod/mod_proxy_fdpass.html.en | |
httpd-2.4.12/docs/manual/mod/mod_proxy_fdpass.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_proxy_ftp.html | |
httpd-2.4.12/docs/manual/mod/mod_proxy_ftp.html.en | |
httpd-2.4.12/docs/manual/mod/mod_proxy_ftp.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_proxy_html.html | |
httpd-2.4.12/docs/manual/mod/mod_proxy_html.html.en | |
httpd-2.4.12/docs/manual/mod/mod_proxy_html.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_proxy_http.html | |
httpd-2.4.12/docs/manual/mod/mod_proxy_http.html.en | |
httpd-2.4.12/docs/manual/mod/mod_proxy_http.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_proxy_scgi.html | |
httpd-2.4.12/docs/manual/mod/mod_proxy_scgi.html.en | |
httpd-2.4.12/docs/manual/mod/mod_proxy_scgi.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_proxy_wstunnel.html | |
httpd-2.4.12/docs/manual/mod/mod_proxy_wstunnel.html.en | |
httpd-2.4.12/docs/manual/mod/mod_ratelimit.html | |
httpd-2.4.12/docs/manual/mod/mod_ratelimit.html.en | |
httpd-2.4.12/docs/manual/mod/mod_ratelimit.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_reflector.html | |
httpd-2.4.12/docs/manual/mod/mod_reflector.html.en | |
httpd-2.4.12/docs/manual/mod/mod_reflector.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_remoteip.html | |
httpd-2.4.12/docs/manual/mod/mod_remoteip.html.en | |
httpd-2.4.12/docs/manual/mod/mod_remoteip.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_reqtimeout.html | |
httpd-2.4.12/docs/manual/mod/mod_reqtimeout.html.en | |
httpd-2.4.12/docs/manual/mod/mod_reqtimeout.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_request.html | |
httpd-2.4.12/docs/manual/mod/mod_request.html.en | |
httpd-2.4.12/docs/manual/mod/mod_request.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_request.html.tr.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_rewrite.html | |
httpd-2.4.12/docs/manual/mod/mod_rewrite.html.en | |
httpd-2.4.12/docs/manual/mod/mod_rewrite.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_sed.html | |
httpd-2.4.12/docs/manual/mod/mod_sed.html.en | |
httpd-2.4.12/docs/manual/mod/mod_sed.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_session.html | |
httpd-2.4.12/docs/manual/mod/mod_session.html.en | |
httpd-2.4.12/docs/manual/mod/mod_session.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_session_cookie.html | |
httpd-2.4.12/docs/manual/mod/mod_session_cookie.html.en | |
httpd-2.4.12/docs/manual/mod/mod_session_cookie.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_session_crypto.html | |
httpd-2.4.12/docs/manual/mod/mod_session_crypto.html.en | |
httpd-2.4.12/docs/manual/mod/mod_session_crypto.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_session_dbd.html | |
httpd-2.4.12/docs/manual/mod/mod_session_dbd.html.en | |
httpd-2.4.12/docs/manual/mod/mod_session_dbd.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_setenvif.html | |
httpd-2.4.12/docs/manual/mod/mod_setenvif.html.en | |
httpd-2.4.12/docs/manual/mod/mod_setenvif.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_setenvif.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_setenvif.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_setenvif.html.tr.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_slotmem_plain.html | |
httpd-2.4.12/docs/manual/mod/mod_slotmem_plain.html.en | |
httpd-2.4.12/docs/manual/mod/mod_slotmem_plain.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_slotmem_shm.html | |
httpd-2.4.12/docs/manual/mod/mod_slotmem_shm.html.en | |
httpd-2.4.12/docs/manual/mod/mod_slotmem_shm.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_so.html | |
httpd-2.4.12/docs/manual/mod/mod_so.html.en | |
httpd-2.4.12/docs/manual/mod/mod_so.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_so.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_so.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_so.html.tr.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_socache_dbm.html | |
httpd-2.4.12/docs/manual/mod/mod_socache_dbm.html.en | |
httpd-2.4.12/docs/manual/mod/mod_socache_dbm.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_socache_dc.html | |
httpd-2.4.12/docs/manual/mod/mod_socache_dc.html.en | |
httpd-2.4.12/docs/manual/mod/mod_socache_dc.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_socache_memcache.html | |
httpd-2.4.12/docs/manual/mod/mod_socache_memcache.html.en | |
httpd-2.4.12/docs/manual/mod/mod_socache_memcache.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_socache_shmcb.html | |
httpd-2.4.12/docs/manual/mod/mod_socache_shmcb.html.en | |
httpd-2.4.12/docs/manual/mod/mod_socache_shmcb.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_speling.html | |
httpd-2.4.12/docs/manual/mod/mod_speling.html.en | |
httpd-2.4.12/docs/manual/mod/mod_speling.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_speling.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_speling.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_ssl.html | |
httpd-2.4.12/docs/manual/mod/mod_ssl.html.en | |
httpd-2.4.12/docs/manual/mod/mod_ssl.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_status.html | |
httpd-2.4.12/docs/manual/mod/mod_status.html.en | |
httpd-2.4.12/docs/manual/mod/mod_status.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_status.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_status.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_status.html.tr.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_substitute.html | |
httpd-2.4.12/docs/manual/mod/mod_substitute.html.en | |
httpd-2.4.12/docs/manual/mod/mod_substitute.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_suexec.html | |
httpd-2.4.12/docs/manual/mod/mod_suexec.html.en | |
httpd-2.4.12/docs/manual/mod/mod_suexec.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_suexec.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_suexec.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_suexec.html.tr.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_unique_id.html | |
httpd-2.4.12/docs/manual/mod/mod_unique_id.html.en | |
httpd-2.4.12/docs/manual/mod/mod_unique_id.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_unique_id.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_unique_id.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_unixd.html | |
httpd-2.4.12/docs/manual/mod/mod_unixd.html.en | |
httpd-2.4.12/docs/manual/mod/mod_unixd.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_unixd.html.tr.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_userdir.html | |
httpd-2.4.12/docs/manual/mod/mod_userdir.html.en | |
httpd-2.4.12/docs/manual/mod/mod_userdir.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_userdir.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_userdir.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_userdir.html.tr.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_usertrack.html | |
httpd-2.4.12/docs/manual/mod/mod_usertrack.html.en | |
httpd-2.4.12/docs/manual/mod/mod_usertrack.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_version.html | |
httpd-2.4.12/docs/manual/mod/mod_version.html.en | |
httpd-2.4.12/docs/manual/mod/mod_version.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_version.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/mod_vhost_alias.html | |
httpd-2.4.12/docs/manual/mod/mod_vhost_alias.html.en | |
httpd-2.4.12/docs/manual/mod/mod_vhost_alias.html.fr | |
httpd-2.4.12/docs/manual/mod/mod_vhost_alias.html.tr.utf8 | |
httpd-2.4.12/docs/manual/mod/mod_watchdog.html | |
httpd-2.4.12/docs/manual/mod/mod_watchdog.html.en | |
httpd-2.4.12/docs/manual/mod/mod_xml2enc.html | |
httpd-2.4.12/docs/manual/mod/mod_xml2enc.html.en | |
httpd-2.4.12/docs/manual/mod/mod_xml2enc.html.fr | |
httpd-2.4.12/docs/manual/mod/module-dict.html | |
httpd-2.4.12/docs/manual/mod/module-dict.html.en | |
httpd-2.4.12/docs/manual/mod/module-dict.html.fr | |
httpd-2.4.12/docs/manual/mod/module-dict.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/module-dict.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/module-dict.html.tr.utf8 | |
httpd-2.4.12/docs/manual/mod/mpm_common.html | |
httpd-2.4.12/docs/manual/mod/mpm_common.html.de | |
httpd-2.4.12/docs/manual/mod/mpm_common.html.en | |
httpd-2.4.12/docs/manual/mod/mpm_common.html.fr | |
httpd-2.4.12/docs/manual/mod/mpm_common.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mpm_common.html.tr.utf8 | |
httpd-2.4.12/docs/manual/mod/mpm_netware.html | |
httpd-2.4.12/docs/manual/mod/mpm_netware.html.en | |
httpd-2.4.12/docs/manual/mod/mpm_netware.html.fr | |
httpd-2.4.12/docs/manual/mod/mpm_winnt.html | |
httpd-2.4.12/docs/manual/mod/mpm_winnt.html.de | |
httpd-2.4.12/docs/manual/mod/mpm_winnt.html.en | |
httpd-2.4.12/docs/manual/mod/mpm_winnt.html.fr | |
httpd-2.4.12/docs/manual/mod/mpm_winnt.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/mpmt_os2.html | |
httpd-2.4.12/docs/manual/mod/mpmt_os2.html.en | |
httpd-2.4.12/docs/manual/mod/mpmt_os2.html.fr | |
httpd-2.4.12/docs/manual/mod/prefork.html | |
httpd-2.4.12/docs/manual/mod/prefork.html.de | |
httpd-2.4.12/docs/manual/mod/prefork.html.en | |
httpd-2.4.12/docs/manual/mod/prefork.html.fr | |
httpd-2.4.12/docs/manual/mod/prefork.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/prefork.html.tr.utf8 | |
httpd-2.4.12/docs/manual/mod/quickreference.html | |
httpd-2.4.12/docs/manual/mod/quickreference.html.de | |
httpd-2.4.12/docs/manual/mod/quickreference.html.en | |
httpd-2.4.12/docs/manual/mod/quickreference.html.es | |
httpd-2.4.12/docs/manual/mod/quickreference.html.fr | |
httpd-2.4.12/docs/manual/mod/quickreference.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/quickreference.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/mod/quickreference.html.tr.utf8 | |
httpd-2.4.12/docs/manual/mod/quickreference.html.zh-cn.utf8 | |
httpd-2.4.12/docs/manual/mod/worker.html | |
httpd-2.4.12/docs/manual/mod/worker.html.de | |
httpd-2.4.12/docs/manual/mod/worker.html.en | |
httpd-2.4.12/docs/manual/mod/worker.html.fr | |
httpd-2.4.12/docs/manual/mod/worker.html.ja.utf8 | |
httpd-2.4.12/docs/manual/mod/worker.html.tr.utf8 | |
httpd-2.4.12/docs/manual/misc/index.html | |
httpd-2.4.12/docs/manual/misc/index.html.en | |
httpd-2.4.12/docs/manual/misc/index.html.fr | |
httpd-2.4.12/docs/manual/misc/index.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/misc/index.html.tr.utf8 | |
httpd-2.4.12/docs/manual/misc/index.html.zh-cn.utf8 | |
httpd-2.4.12/docs/manual/misc/password_encryptions.html | |
httpd-2.4.12/docs/manual/misc/password_encryptions.html.en | |
httpd-2.4.12/docs/manual/misc/password_encryptions.html.fr | |
httpd-2.4.12/docs/manual/misc/perf-tuning.html | |
httpd-2.4.12/docs/manual/misc/perf-tuning.html.en | |
httpd-2.4.12/docs/manual/misc/perf-tuning.html.fr | |
httpd-2.4.12/docs/manual/misc/perf-tuning.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/misc/perf-tuning.html.tr.utf8 | |
httpd-2.4.12/docs/manual/misc/relevant_standards.html | |
httpd-2.4.12/docs/manual/misc/relevant_standards.html.en | |
httpd-2.4.12/docs/manual/misc/relevant_standards.html.fr | |
httpd-2.4.12/docs/manual/misc/relevant_standards.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/misc/security_tips.html | |
httpd-2.4.12/docs/manual/misc/security_tips.html.en | |
httpd-2.4.12/docs/manual/misc/security_tips.html.fr | |
httpd-2.4.12/docs/manual/misc/security_tips.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/misc/security_tips.html.tr.utf8 | |
httpd-2.4.12/docs/manual/images/apache_header.gif | |
httpd-2.4.12/docs/manual/images/build_a_mod_2.png | |
httpd-2.4.12/docs/manual/images/build_a_mod_3.png | |
httpd-2.4.12/docs/manual/images/build_a_mod_4.png | |
httpd-2.4.12/docs/manual/images/caching_fig1.gif | |
httpd-2.4.12/docs/manual/images/caching_fig1.png | |
httpd-2.4.12/docs/manual/images/caching_fig1.tr.png | |
httpd-2.4.12/docs/manual/images/custom_errordocs.png | |
httpd-2.4.12/docs/manual/images/down.gif | |
httpd-2.4.12/docs/manual/images/favicon.ico | |
httpd-2.4.12/docs/manual/images/feather.gif | |
httpd-2.4.12/docs/manual/images/feather.png | |
httpd-2.4.12/docs/manual/images/filter_arch.png | |
httpd-2.4.12/docs/manual/images/filter_arch.tr.png | |
httpd-2.4.12/docs/manual/images/home.gif | |
httpd-2.4.12/docs/manual/images/index.gif | |
httpd-2.4.12/docs/manual/images/left.gif | |
httpd-2.4.12/docs/manual/images/mod_filter_new.gif | |
httpd-2.4.12/docs/manual/images/mod_filter_new.png | |
httpd-2.4.12/docs/manual/images/mod_filter_new.tr.png | |
httpd-2.4.12/docs/manual/images/mod_filter_old.gif | |
httpd-2.4.12/docs/manual/images/mod_filter_old.png | |
httpd-2.4.12/docs/manual/images/mod_rewrite_fig1.gif | |
httpd-2.4.12/docs/manual/images/mod_rewrite_fig1.png | |
httpd-2.4.12/docs/manual/images/mod_rewrite_fig2.gif | |
httpd-2.4.12/docs/manual/images/mod_rewrite_fig2.png | |
httpd-2.4.12/docs/manual/images/pixel.gif | |
httpd-2.4.12/docs/manual/images/rewrite_backreferences.png | |
httpd-2.4.12/docs/manual/images/rewrite_process_uri.png | |
httpd-2.4.12/docs/manual/images/rewrite_rule_flow.png | |
httpd-2.4.12/docs/manual/images/right.gif | |
httpd-2.4.12/docs/manual/images/ssl_intro_fig1.gif | |
httpd-2.4.12/docs/manual/images/ssl_intro_fig1.png | |
httpd-2.4.12/docs/manual/images/ssl_intro_fig2.gif | |
httpd-2.4.12/docs/manual/images/ssl_intro_fig2.png | |
httpd-2.4.12/docs/manual/images/ssl_intro_fig3.gif | |
httpd-2.4.12/docs/manual/images/ssl_intro_fig3.png | |
httpd-2.4.12/docs/manual/images/sub.gif | |
httpd-2.4.12/docs/manual/images/syntax_rewritecond.png | |
httpd-2.4.12/docs/manual/images/syntax_rewriterule.png | |
httpd-2.4.12/docs/manual/images/up.gif | |
httpd-2.4.12/docs/manual/howto/access.html | |
httpd-2.4.12/docs/manual/howto/access.html.en | |
httpd-2.4.12/docs/manual/howto/access.html.fr | |
httpd-2.4.12/docs/manual/howto/auth.html | |
httpd-2.4.12/docs/manual/howto/auth.html.en | |
httpd-2.4.12/docs/manual/howto/auth.html.fr | |
httpd-2.4.12/docs/manual/howto/auth.html.ja.utf8 | |
httpd-2.4.12/docs/manual/howto/auth.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/howto/auth.html.tr.utf8 | |
httpd-2.4.12/docs/manual/howto/cgi.html | |
httpd-2.4.12/docs/manual/howto/cgi.html.en | |
httpd-2.4.12/docs/manual/howto/cgi.html.fr | |
httpd-2.4.12/docs/manual/howto/cgi.html.ja.utf8 | |
httpd-2.4.12/docs/manual/howto/cgi.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/howto/htaccess.html | |
httpd-2.4.12/docs/manual/howto/htaccess.html.en | |
httpd-2.4.12/docs/manual/howto/htaccess.html.fr | |
httpd-2.4.12/docs/manual/howto/htaccess.html.ja.utf8 | |
httpd-2.4.12/docs/manual/howto/htaccess.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/howto/htaccess.html.pt-br | |
httpd-2.4.12/docs/manual/howto/index.html | |
httpd-2.4.12/docs/manual/howto/index.html.en | |
httpd-2.4.12/docs/manual/howto/index.html.fr | |
httpd-2.4.12/docs/manual/howto/index.html.ja.utf8 | |
httpd-2.4.12/docs/manual/howto/index.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/howto/index.html.zh-cn.utf8 | |
httpd-2.4.12/docs/manual/howto/public_html.html | |
httpd-2.4.12/docs/manual/howto/public_html.html.en | |
httpd-2.4.12/docs/manual/howto/public_html.html.fr | |
httpd-2.4.12/docs/manual/howto/public_html.html.ja.utf8 | |
httpd-2.4.12/docs/manual/howto/public_html.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/howto/public_html.html.tr.utf8 | |
httpd-2.4.12/docs/manual/howto/ssi.html | |
httpd-2.4.12/docs/manual/howto/ssi.html.en | |
httpd-2.4.12/docs/manual/howto/ssi.html.fr | |
httpd-2.4.12/docs/manual/howto/ssi.html.ja.utf8 | |
httpd-2.4.12/docs/manual/howto/ssi.html.ko.euc-kr | |
httpd-2.4.12/docs/manual/faq/index.html | |
httpd-2.4.12/docs/manual/faq/index.html.en | |
httpd-2.4.12/docs/manual/faq/index.html.fr | |
httpd-2.4.12/docs/manual/faq/index.html.tr.utf8 | |
httpd-2.4.12/docs/manual/faq/index.html.zh-cn.utf8 | |
httpd-2.4.12/docs/manual/developer/API.html | |
httpd-2.4.12/docs/manual/developer/API.html.en | |
httpd-2.4.12/docs/manual/developer/debugging.html | |
httpd-2.4.12/docs/manual/developer/debugging.html.en | |
httpd-2.4.12/docs/manual/developer/documenting.html | |
httpd-2.4.12/docs/manual/developer/documenting.html.en | |
httpd-2.4.12/docs/manual/developer/documenting.html.zh-cn.utf8 | |
httpd-2.4.12/docs/manual/developer/filters.html | |
httpd-2.4.12/docs/manual/developer/filters.html.en | |
httpd-2.4.12/docs/manual/developer/hooks.html | |
httpd-2.4.12/docs/manual/developer/hooks.html.en | |
httpd-2.4.12/docs/manual/developer/index.html | |
httpd-2.4.12/docs/manual/developer/index.html.en | |
httpd-2.4.12/docs/manual/developer/index.html.zh-cn.utf8 | |
httpd-2.4.12/docs/manual/developer/modguide.html | |
httpd-2.4.12/docs/manual/developer/modguide.html.en | |
httpd-2.4.12/docs/manual/developer/modules.html | |
httpd-2.4.12/docs/manual/developer/modules.html.en | |
httpd-2.4.12/docs/manual/developer/modules.html.ja.utf8 | |
httpd-2.4.12/docs/manual/developer/new_api_2_4.html | |
httpd-2.4.12/docs/manual/developer/new_api_2_4.html.en | |
httpd-2.4.12/docs/manual/developer/output-filters.html | |
httpd-2.4.12/docs/manual/developer/output-filters.html.en | |
httpd-2.4.12/docs/manual/developer/request.html | |
httpd-2.4.12/docs/manual/developer/request.html.en | |
httpd-2.4.12/docs/manual/developer/thread_safety.html | |
httpd-2.4.12/docs/manual/developer/thread_safety.html.en | |
httpd-2.4.12/docs/man/ab.1 | |
httpd-2.4.12/docs/man/apachectl.8 | |
httpd-2.4.12/docs/man/apxs.1 | |
httpd-2.4.12/docs/man/dbmmanage.1 | |
httpd-2.4.12/docs/man/fcgistarter.8 | |
httpd-2.4.12/docs/man/htcacheclean.8 | |
httpd-2.4.12/docs/man/htdbm.1 | |
httpd-2.4.12/docs/man/htdigest.1 | |
httpd-2.4.12/docs/man/htpasswd.1 | |
httpd-2.4.12/docs/man/httpd.8 | |
httpd-2.4.12/docs/man/httxt2dbm.1 | |
httpd-2.4.12/docs/man/logresolve.1 | |
httpd-2.4.12/docs/man/rotatelogs.8 | |
httpd-2.4.12/docs/man/suexec.8 | |
httpd-2.4.12/docs/man/tr/ | |
httpd-2.4.12/docs/man/tr/ab.1 | |
httpd-2.4.12/docs/man/tr/apachectl.8 | |
httpd-2.4.12/docs/man/tr/apxs.1 | |
httpd-2.4.12/docs/man/tr/dbmmanage.1 | |
httpd-2.4.12/docs/man/tr/fcgistarter.8 | |
httpd-2.4.12/docs/man/tr/htcacheclean.8 | |
httpd-2.4.12/docs/man/tr/htdbm.1 | |
httpd-2.4.12/docs/man/tr/htdigest.1 | |
httpd-2.4.12/docs/man/tr/htpasswd.1 | |
httpd-2.4.12/docs/man/tr/httpd.8 | |
httpd-2.4.12/docs/man/tr/httxt2dbm.1 | |
httpd-2.4.12/docs/man/tr/logresolve.1 | |
httpd-2.4.12/docs/man/tr/rotatelogs.8 | |
httpd-2.4.12/docs/man/tr/suexec.8 | |
httpd-2.4.12/docs/icons/a.gif | |
httpd-2.4.12/docs/icons/a.png | |
httpd-2.4.12/docs/icons/alert.black.gif | |
httpd-2.4.12/docs/icons/alert.black.png | |
httpd-2.4.12/docs/icons/alert.red.gif | |
httpd-2.4.12/docs/icons/alert.red.png | |
httpd-2.4.12/docs/icons/apache_pb.gif | |
httpd-2.4.12/docs/icons/apache_pb.png | |
httpd-2.4.12/docs/icons/apache_pb.svg | |
httpd-2.4.12/docs/icons/apache_pb2.gif | |
httpd-2.4.12/docs/icons/apache_pb2.png | |
httpd-2.4.12/docs/icons/back.gif | |
httpd-2.4.12/docs/icons/back.png | |
httpd-2.4.12/docs/icons/ball.gray.gif | |
httpd-2.4.12/docs/icons/ball.gray.png | |
httpd-2.4.12/docs/icons/ball.red.gif | |
httpd-2.4.12/docs/icons/ball.red.png | |
httpd-2.4.12/docs/icons/binary.gif | |
httpd-2.4.12/docs/icons/binary.png | |
httpd-2.4.12/docs/icons/binhex.gif | |
httpd-2.4.12/docs/icons/binhex.png | |
httpd-2.4.12/docs/icons/blank.gif | |
httpd-2.4.12/docs/icons/blank.png | |
httpd-2.4.12/docs/icons/bomb.gif | |
httpd-2.4.12/docs/icons/bomb.png | |
httpd-2.4.12/docs/icons/box1.gif | |
httpd-2.4.12/docs/icons/box1.png | |
httpd-2.4.12/docs/icons/box2.gif | |
httpd-2.4.12/docs/icons/box2.png | |
httpd-2.4.12/docs/icons/broken.gif | |
httpd-2.4.12/docs/icons/broken.png | |
httpd-2.4.12/docs/icons/burst.gif | |
httpd-2.4.12/docs/icons/burst.png | |
httpd-2.4.12/docs/icons/c.gif | |
httpd-2.4.12/docs/icons/c.png | |
httpd-2.4.12/docs/icons/comp.blue.gif | |
httpd-2.4.12/docs/icons/comp.blue.png | |
httpd-2.4.12/docs/icons/comp.gray.gif | |
httpd-2.4.12/docs/icons/comp.gray.png | |
httpd-2.4.12/docs/icons/compressed.gif | |
httpd-2.4.12/docs/icons/compressed.png | |
httpd-2.4.12/docs/icons/continued.gif | |
httpd-2.4.12/docs/icons/continued.png | |
httpd-2.4.12/docs/icons/dir.gif | |
httpd-2.4.12/docs/icons/dir.png | |
httpd-2.4.12/docs/icons/diskimg.gif | |
httpd-2.4.12/docs/icons/diskimg.png | |
httpd-2.4.12/docs/icons/down.gif | |
httpd-2.4.12/docs/icons/down.png | |
httpd-2.4.12/docs/icons/dvi.gif | |
httpd-2.4.12/docs/icons/dvi.png | |
httpd-2.4.12/docs/icons/f.gif | |
httpd-2.4.12/docs/icons/f.png | |
httpd-2.4.12/docs/icons/folder.gif | |
httpd-2.4.12/docs/icons/folder.open.gif | |
httpd-2.4.12/docs/icons/folder.open.png | |
httpd-2.4.12/docs/icons/folder.png | |
httpd-2.4.12/docs/icons/folder.sec.gif | |
httpd-2.4.12/docs/icons/folder.sec.png | |
httpd-2.4.12/docs/icons/forward.gif | |
httpd-2.4.12/docs/icons/forward.png | |
httpd-2.4.12/docs/icons/generic.gif | |
httpd-2.4.12/docs/icons/generic.png | |
httpd-2.4.12/docs/icons/generic.red.gif | |
httpd-2.4.12/docs/icons/generic.red.png | |
httpd-2.4.12/docs/icons/generic.sec.gif | |
httpd-2.4.12/docs/icons/generic.sec.png | |
httpd-2.4.12/docs/icons/hand.right.gif | |
httpd-2.4.12/docs/icons/hand.right.png | |
httpd-2.4.12/docs/icons/hand.up.gif | |
httpd-2.4.12/docs/icons/hand.up.png | |
httpd-2.4.12/docs/icons/icon.sheet.gif | |
httpd-2.4.12/docs/icons/icon.sheet.png | |
httpd-2.4.12/docs/icons/image1.gif | |
httpd-2.4.12/docs/icons/image1.png | |
httpd-2.4.12/docs/icons/image2.gif | |
httpd-2.4.12/docs/icons/image2.png | |
httpd-2.4.12/docs/icons/image3.gif | |
httpd-2.4.12/docs/icons/image3.png | |
httpd-2.4.12/docs/icons/index.gif | |
httpd-2.4.12/docs/icons/index.png | |
httpd-2.4.12/docs/icons/layout.gif | |
httpd-2.4.12/docs/icons/layout.png | |
httpd-2.4.12/docs/icons/left.gif | |
httpd-2.4.12/docs/icons/left.png | |
httpd-2.4.12/docs/icons/link.gif | |
httpd-2.4.12/docs/icons/link.png | |
httpd-2.4.12/docs/icons/movie.gif | |
httpd-2.4.12/docs/icons/movie.png | |
httpd-2.4.12/docs/icons/odf6odb.png | |
httpd-2.4.12/docs/icons/odf6odc.png | |
httpd-2.4.12/docs/icons/odf6odf.png | |
httpd-2.4.12/docs/icons/odf6odg.png | |
httpd-2.4.12/docs/icons/odf6odi.png | |
httpd-2.4.12/docs/icons/odf6odm.png | |
httpd-2.4.12/docs/icons/odf6odp.png | |
httpd-2.4.12/docs/icons/odf6ods.png | |
httpd-2.4.12/docs/icons/odf6odt.png | |
httpd-2.4.12/docs/icons/odf6otc.png | |
httpd-2.4.12/docs/icons/odf6otf.png | |
httpd-2.4.12/docs/icons/odf6otg.png | |
httpd-2.4.12/docs/icons/odf6oth.png | |
httpd-2.4.12/docs/icons/odf6oti.png | |
httpd-2.4.12/docs/icons/odf6otp.png | |
httpd-2.4.12/docs/icons/odf6ots.png | |
httpd-2.4.12/docs/icons/odf6ott.png | |
httpd-2.4.12/docs/icons/p.gif | |
httpd-2.4.12/docs/icons/p.png | |
httpd-2.4.12/docs/icons/patch.gif | |
httpd-2.4.12/docs/icons/patch.png | |
httpd-2.4.12/docs/icons/pdf.gif | |
httpd-2.4.12/docs/icons/pdf.png | |
httpd-2.4.12/docs/icons/pie0.gif | |
httpd-2.4.12/docs/icons/pie0.png | |
httpd-2.4.12/docs/icons/pie1.gif | |
httpd-2.4.12/docs/icons/pie1.png | |
httpd-2.4.12/docs/icons/pie2.gif | |
httpd-2.4.12/docs/icons/pie2.png | |
httpd-2.4.12/docs/icons/pie3.gif | |
httpd-2.4.12/docs/icons/pie3.png | |
httpd-2.4.12/docs/icons/pie4.gif | |
httpd-2.4.12/docs/icons/pie4.png | |
httpd-2.4.12/docs/icons/pie5.gif | |
httpd-2.4.12/docs/icons/pie5.png | |
httpd-2.4.12/docs/icons/pie6.gif | |
httpd-2.4.12/docs/icons/pie6.png | |
httpd-2.4.12/docs/icons/pie7.gif | |
httpd-2.4.12/docs/icons/pie7.png | |
httpd-2.4.12/docs/icons/pie8.gif | |
httpd-2.4.12/docs/icons/pie8.png | |
httpd-2.4.12/docs/icons/portal.gif | |
httpd-2.4.12/docs/icons/portal.png | |
httpd-2.4.12/docs/icons/ps.gif | |
httpd-2.4.12/docs/icons/ps.png | |
httpd-2.4.12/docs/icons/quill.gif | |
httpd-2.4.12/docs/icons/quill.png | |
httpd-2.4.12/docs/icons/README | |
httpd-2.4.12/docs/icons/README.html | |
httpd-2.4.12/docs/icons/right.gif | |
httpd-2.4.12/docs/icons/right.png | |
httpd-2.4.12/docs/icons/screw1.gif | |
httpd-2.4.12/docs/icons/screw1.png | |
httpd-2.4.12/docs/icons/screw2.gif | |
httpd-2.4.12/docs/icons/screw2.png | |
httpd-2.4.12/docs/icons/script.gif | |
httpd-2.4.12/docs/icons/script.png | |
httpd-2.4.12/docs/icons/small/ | |
httpd-2.4.12/docs/icons/sound1.gif | |
httpd-2.4.12/docs/icons/sound1.png | |
httpd-2.4.12/docs/icons/sound2.gif | |
httpd-2.4.12/docs/icons/sound2.png | |
httpd-2.4.12/docs/icons/sphere1.gif | |
httpd-2.4.12/docs/icons/sphere1.png | |
httpd-2.4.12/docs/icons/sphere2.gif | |
httpd-2.4.12/docs/icons/sphere2.png | |
httpd-2.4.12/docs/icons/svg.png | |
httpd-2.4.12/docs/icons/tar.gif | |
httpd-2.4.12/docs/icons/tar.png | |
httpd-2.4.12/docs/icons/tex.gif | |
httpd-2.4.12/docs/icons/tex.png | |
httpd-2.4.12/docs/icons/text.gif | |
httpd-2.4.12/docs/icons/text.png | |
httpd-2.4.12/docs/icons/transfer.gif | |
httpd-2.4.12/docs/icons/transfer.png | |
httpd-2.4.12/docs/icons/unknown.gif | |
httpd-2.4.12/docs/icons/unknown.png | |
httpd-2.4.12/docs/icons/up.gif | |
httpd-2.4.12/docs/icons/up.png | |
httpd-2.4.12/docs/icons/uu.gif | |
httpd-2.4.12/docs/icons/uu.png | |
httpd-2.4.12/docs/icons/uuencoded.gif | |
httpd-2.4.12/docs/icons/uuencoded.png | |
httpd-2.4.12/docs/icons/world1.gif | |
httpd-2.4.12/docs/icons/world1.png | |
httpd-2.4.12/docs/icons/world2.gif | |
httpd-2.4.12/docs/icons/world2.png | |
httpd-2.4.12/docs/icons/xml.png | |
httpd-2.4.12/docs/icons/small/back.gif | |
httpd-2.4.12/docs/icons/small/back.png | |
httpd-2.4.12/docs/icons/small/binary.gif | |
httpd-2.4.12/docs/icons/small/binary.png | |
httpd-2.4.12/docs/icons/small/binhex.gif | |
httpd-2.4.12/docs/icons/small/binhex.png | |
httpd-2.4.12/docs/icons/small/blank.gif | |
httpd-2.4.12/docs/icons/small/blank.png | |
httpd-2.4.12/docs/icons/small/broken.gif | |
httpd-2.4.12/docs/icons/small/broken.png | |
httpd-2.4.12/docs/icons/small/burst.gif | |
httpd-2.4.12/docs/icons/small/burst.png | |
httpd-2.4.12/docs/icons/small/comp1.gif | |
httpd-2.4.12/docs/icons/small/comp1.png | |
httpd-2.4.12/docs/icons/small/comp2.gif | |
httpd-2.4.12/docs/icons/small/comp2.png | |
httpd-2.4.12/docs/icons/small/compressed.gif | |
httpd-2.4.12/docs/icons/small/compressed.png | |
httpd-2.4.12/docs/icons/small/continued.gif | |
httpd-2.4.12/docs/icons/small/continued.png | |
httpd-2.4.12/docs/icons/small/doc.gif | |
httpd-2.4.12/docs/icons/small/doc.png | |
httpd-2.4.12/docs/icons/small/folder.gif | |
httpd-2.4.12/docs/icons/small/folder.png | |
httpd-2.4.12/docs/icons/small/folder2.gif | |
httpd-2.4.12/docs/icons/small/folder2.png | |
httpd-2.4.12/docs/icons/small/forward.gif | |
httpd-2.4.12/docs/icons/small/forward.png | |
httpd-2.4.12/docs/icons/small/generic.gif | |
httpd-2.4.12/docs/icons/small/generic.png | |
httpd-2.4.12/docs/icons/small/generic2.gif | |
httpd-2.4.12/docs/icons/small/generic2.png | |
httpd-2.4.12/docs/icons/small/generic3.gif | |
httpd-2.4.12/docs/icons/small/generic3.png | |
httpd-2.4.12/docs/icons/small/image.gif | |
httpd-2.4.12/docs/icons/small/image.png | |
httpd-2.4.12/docs/icons/small/image2.gif | |
httpd-2.4.12/docs/icons/small/image2.png | |
httpd-2.4.12/docs/icons/small/index.gif | |
httpd-2.4.12/docs/icons/small/index.png | |
httpd-2.4.12/docs/icons/small/key.gif | |
httpd-2.4.12/docs/icons/small/key.png | |
httpd-2.4.12/docs/icons/small/movie.gif | |
httpd-2.4.12/docs/icons/small/movie.png | |
httpd-2.4.12/docs/icons/small/patch.gif | |
httpd-2.4.12/docs/icons/small/patch.png | |
httpd-2.4.12/docs/icons/small/ps.gif | |
httpd-2.4.12/docs/icons/small/ps.png | |
httpd-2.4.12/docs/icons/small/rainbow.gif | |
httpd-2.4.12/docs/icons/small/rainbow.png | |
httpd-2.4.12/docs/icons/small/sound.gif | |
httpd-2.4.12/docs/icons/small/sound.png | |
httpd-2.4.12/docs/icons/small/sound2.gif | |
httpd-2.4.12/docs/icons/small/sound2.png | |
httpd-2.4.12/docs/icons/small/tar.gif | |
httpd-2.4.12/docs/icons/small/tar.png | |
httpd-2.4.12/docs/icons/small/text.gif | |
httpd-2.4.12/docs/icons/small/text.png | |
httpd-2.4.12/docs/icons/small/transfer.gif | |
httpd-2.4.12/docs/icons/small/transfer.png | |
httpd-2.4.12/docs/icons/small/unknown.gif | |
httpd-2.4.12/docs/icons/small/unknown.png | |
httpd-2.4.12/docs/icons/small/uu.gif | |
httpd-2.4.12/docs/icons/small/uu.png | |
httpd-2.4.12/docs/error/contact.html.var | |
httpd-2.4.12/docs/error/HTTP_BAD_GATEWAY.html.var | |
httpd-2.4.12/docs/error/HTTP_BAD_REQUEST.html.var | |
httpd-2.4.12/docs/error/HTTP_FORBIDDEN.html.var | |
httpd-2.4.12/docs/error/HTTP_GONE.html.var | |
httpd-2.4.12/docs/error/HTTP_INTERNAL_SERVER_ERROR.html.var | |
httpd-2.4.12/docs/error/HTTP_LENGTH_REQUIRED.html.var | |
httpd-2.4.12/docs/error/HTTP_METHOD_NOT_ALLOWED.html.var | |
httpd-2.4.12/docs/error/HTTP_NOT_FOUND.html.var | |
httpd-2.4.12/docs/error/HTTP_NOT_IMPLEMENTED.html.var | |
httpd-2.4.12/docs/error/HTTP_PRECONDITION_FAILED.html.var | |
httpd-2.4.12/docs/error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var | |
httpd-2.4.12/docs/error/HTTP_REQUEST_TIME_OUT.html.var | |
httpd-2.4.12/docs/error/HTTP_REQUEST_URI_TOO_LARGE.html.var | |
httpd-2.4.12/docs/error/HTTP_SERVICE_UNAVAILABLE.html.var | |
httpd-2.4.12/docs/error/HTTP_UNAUTHORIZED.html.var | |
httpd-2.4.12/docs/error/HTTP_UNSUPPORTED_MEDIA_TYPE.html.var | |
httpd-2.4.12/docs/error/HTTP_VARIANT_ALSO_VARIES.html.var | |
httpd-2.4.12/docs/error/include/ | |
httpd-2.4.12/docs/error/README | |
httpd-2.4.12/docs/error/include/bottom.html | |
httpd-2.4.12/docs/error/include/spacer.html | |
httpd-2.4.12/docs/error/include/top.html | |
httpd-2.4.12/docs/docroot/index.html | |
httpd-2.4.12/docs/conf/charset.conv | |
httpd-2.4.12/docs/conf/extra/ | |
httpd-2.4.12/docs/conf/httpd.conf.in | |
httpd-2.4.12/docs/conf/magic | |
httpd-2.4.12/docs/conf/mime.types | |
httpd-2.4.12/docs/conf/extra/httpd-autoindex.conf.in | |
httpd-2.4.12/docs/conf/extra/httpd-dav.conf.in | |
httpd-2.4.12/docs/conf/extra/httpd-default.conf.in | |
httpd-2.4.12/docs/conf/extra/httpd-info.conf.in | |
httpd-2.4.12/docs/conf/extra/httpd-languages.conf.in | |
httpd-2.4.12/docs/conf/extra/httpd-manual.conf.in | |
httpd-2.4.12/docs/conf/extra/httpd-mpm.conf.in | |
httpd-2.4.12/docs/conf/extra/httpd-multilang-errordoc.conf.in | |
httpd-2.4.12/docs/conf/extra/httpd-ssl.conf.in | |
httpd-2.4.12/docs/conf/extra/httpd-userdir.conf.in | |
httpd-2.4.12/docs/conf/extra/httpd-vhosts.conf.in | |
httpd-2.4.12/docs/conf/extra/proxy-html.conf.in | |
httpd-2.4.12/docs/cgi-examples/printenv | |
httpd-2.4.12/docs/cgi-examples/printenv.vbs | |
httpd-2.4.12/docs/cgi-examples/printenv.wsf | |
httpd-2.4.12/docs/cgi-examples/test-cgi | |
httpd-2.4.12/build/aix/ | |
httpd-2.4.12/build/apr_common.m4 | |
httpd-2.4.12/build/binbuild.sh | |
httpd-2.4.12/build/bsd_makefile | |
httpd-2.4.12/build/build-modules-c.awk | |
httpd-2.4.12/build/buildinfo.sh | |
httpd-2.4.12/build/config-stubs | |
httpd-2.4.12/build/config.guess | |
httpd-2.4.12/build/config.sub | |
httpd-2.4.12/build/config_vars.sh.in | |
httpd-2.4.12/build/cpR_noreplace.pl | |
httpd-2.4.12/build/default.pl | |
httpd-2.4.12/build/fastgen.sh | |
httpd-2.4.12/build/find_apr.m4 | |
httpd-2.4.12/build/find_apu.m4 | |
httpd-2.4.12/build/get-version.sh | |
httpd-2.4.12/build/install-bindist.sh.in | |
httpd-2.4.12/build/install.sh | |
httpd-2.4.12/build/installwinconf.awk | |
httpd-2.4.12/build/instdso.sh | |
httpd-2.4.12/build/library.mk | |
httpd-2.4.12/build/ltlib.mk | |
httpd-2.4.12/build/ltmain.sh | |
httpd-2.4.12/build/make_exports.awk | |
httpd-2.4.12/build/make_nw_export.awk | |
httpd-2.4.12/build/make_var_export.awk | |
httpd-2.4.12/build/mkconfNW.awk | |
httpd-2.4.12/build/mkdep.perl | |
httpd-2.4.12/build/mkdir.sh | |
httpd-2.4.12/build/nw_export.inc | |
httpd-2.4.12/build/nw_ver.awk | |
httpd-2.4.12/build/NWGNUenvironment.inc | |
httpd-2.4.12/build/NWGNUhead.inc | |
httpd-2.4.12/build/NWGNUmakefile | |
httpd-2.4.12/build/NWGNUscripts.inc | |
httpd-2.4.12/build/NWGNUtail.inc | |
httpd-2.4.12/build/pkg/ | |
httpd-2.4.12/build/PrintPath | |
httpd-2.4.12/build/program.mk | |
httpd-2.4.12/build/rpm/ | |
httpd-2.4.12/build/rules.mk.in | |
httpd-2.4.12/build/special.mk | |
httpd-2.4.12/build/sysv_makefile | |
httpd-2.4.12/build/win32/ | |
httpd-2.4.12/build/win32/apache.ico | |
httpd-2.4.12/build/win32/httpd.rc | |
httpd-2.4.12/build/rpm/htcacheclean.init | |
httpd-2.4.12/build/rpm/httpd.init | |
httpd-2.4.12/build/rpm/httpd.logrotate | |
httpd-2.4.12/build/rpm/httpd.spec.in | |
httpd-2.4.12/build/pkg/buildpkg.sh | |
httpd-2.4.12/build/pkg/pkginfo.in | |
httpd-2.4.12/build/pkg/README | |
httpd-2.4.12/build/aix/aixinfo | |
httpd-2.4.12/build/aix/aixproto.ksh | |
httpd-2.4.12/build/aix/buildaix.ksh | |
httpd-2.4.12/build/aix/mkinstallp.ksh | |
httpd-2.4.12/build/aix/README | |
apr-1.5.2/ | |
apr-1.5.2/config.layout | |
apr-1.5.2/build.conf | |
apr-1.5.2/emacs-mode | |
apr-1.5.2/strings/ | |
apr-1.5.2/strings/apr_cpystrn.c | |
apr-1.5.2/strings/apr_strnatcmp.c | |
apr-1.5.2/strings/apr_strtok.c | |
apr-1.5.2/strings/apr_strings.c | |
apr-1.5.2/strings/apr_fnmatch.c | |
apr-1.5.2/strings/apr_snprintf.c | |
apr-1.5.2/LICENSE | |
apr-1.5.2/file_io/ | |
apr-1.5.2/file_io/os2/ | |
apr-1.5.2/file_io/os2/dir.c | |
apr-1.5.2/file_io/os2/mktemp.c | |
apr-1.5.2/file_io/os2/filedup.c | |
apr-1.5.2/file_io/os2/readwrite.c | |
apr-1.5.2/file_io/os2/filepath.c | |
apr-1.5.2/file_io/os2/open.c | |
apr-1.5.2/file_io/os2/filestat.c | |
apr-1.5.2/file_io/os2/pipe.c | |
apr-1.5.2/file_io/os2/copy.c | |
apr-1.5.2/file_io/os2/flock.c | |
apr-1.5.2/file_io/os2/filepath_util.c | |
apr-1.5.2/file_io/os2/tempdir.c | |
apr-1.5.2/file_io/os2/dir_make_recurse.c | |
apr-1.5.2/file_io/os2/seek.c | |
apr-1.5.2/file_io/os2/fileacc.c | |
apr-1.5.2/file_io/os2/maperrorcode.c | |
apr-1.5.2/file_io/os2/fullrw.c | |
apr-1.5.2/file_io/os2/buffer.c | |
apr-1.5.2/file_io/os2/filesys.c | |
apr-1.5.2/file_io/unix/ | |
apr-1.5.2/file_io/unix/dir.c | |
apr-1.5.2/file_io/unix/mktemp.c | |
apr-1.5.2/file_io/unix/filedup.c | |
apr-1.5.2/file_io/unix/readwrite.c | |
apr-1.5.2/file_io/unix/filepath.c | |
apr-1.5.2/file_io/unix/open.c | |
apr-1.5.2/file_io/unix/filestat.c | |
apr-1.5.2/file_io/unix/pipe.c | |
apr-1.5.2/file_io/unix/copy.c | |
apr-1.5.2/file_io/unix/flock.c | |
apr-1.5.2/file_io/unix/filepath_util.c | |
apr-1.5.2/file_io/unix/tempdir.c | |
apr-1.5.2/file_io/unix/seek.c | |
apr-1.5.2/file_io/unix/fileacc.c | |
apr-1.5.2/file_io/unix/fullrw.c | |
apr-1.5.2/file_io/unix/buffer.c | |
apr-1.5.2/file_io/win32/ | |
apr-1.5.2/file_io/win32/dir.c | |
apr-1.5.2/file_io/win32/filedup.c | |
apr-1.5.2/file_io/win32/readwrite.c | |
apr-1.5.2/file_io/win32/filepath.c | |
apr-1.5.2/file_io/win32/open.c | |
apr-1.5.2/file_io/win32/filestat.c | |
apr-1.5.2/file_io/win32/pipe.c | |
apr-1.5.2/file_io/win32/flock.c | |
apr-1.5.2/file_io/win32/seek.c | |
apr-1.5.2/file_io/win32/buffer.c | |
apr-1.5.2/file_io/win32/filesys.c | |
apr-1.5.2/file_io/netware/ | |
apr-1.5.2/file_io/netware/mktemp.c | |
apr-1.5.2/file_io/netware/filepath.c | |
apr-1.5.2/file_io/netware/filestat.c | |
apr-1.5.2/file_io/netware/pipe.c | |
apr-1.5.2/file_io/netware/flock.c | |
apr-1.5.2/file_io/netware/filesys.c | |
apr-1.5.2/random/ | |
apr-1.5.2/random/unix/ | |
apr-1.5.2/random/unix/sha2.c | |
apr-1.5.2/random/unix/apr_random.c | |
apr-1.5.2/random/unix/sha2.h | |
apr-1.5.2/random/unix/sha2_glue.c | |
apr-1.5.2/poll/ | |
apr-1.5.2/poll/os2/ | |
apr-1.5.2/poll/os2/pollset.c | |
apr-1.5.2/poll/os2/poll.c | |
apr-1.5.2/poll/unix/ | |
apr-1.5.2/poll/unix/pollset.c | |
apr-1.5.2/poll/unix/port.c | |
apr-1.5.2/poll/unix/kqueue.c | |
apr-1.5.2/poll/unix/epoll.c | |
apr-1.5.2/poll/unix/z_asio.c | |
apr-1.5.2/poll/unix/select.c | |
apr-1.5.2/poll/unix/pollcb.c | |
apr-1.5.2/poll/unix/poll.c | |
apr-1.5.2/libapr.dsp | |
apr-1.5.2/docs/ | |
apr-1.5.2/docs/win32_builds.html | |
apr-1.5.2/docs/incomplete_types | |
apr-1.5.2/docs/pool-design.html | |
apr-1.5.2/docs/doxygen.conf | |
apr-1.5.2/docs/non_apr_programs | |
apr-1.5.2/docs/canonical_filenames.html | |
apr-1.5.2/docs/APRDesign.html | |
apr-1.5.2/CMakeLists.txt | |
apr-1.5.2/apr.pc.in | |
apr-1.5.2/apr.spec | |
apr-1.5.2/libapr.dep | |
apr-1.5.2/configure.in | |
apr-1.5.2/buildconf | |
apr-1.5.2/NWGNUmakefile | |
apr-1.5.2/include/ | |
apr-1.5.2/include/apr_want.h | |
apr-1.5.2/include/apr_thread_rwlock.h | |
apr-1.5.2/include/apr_signal.h | |
apr-1.5.2/include/apr_random.h | |
apr-1.5.2/include/apr_strings.h | |
apr-1.5.2/include/apr_general.h | |
apr-1.5.2/include/apr_thread_cond.h | |
apr-1.5.2/include/apr_time.h | |
apr-1.5.2/include/apr.hw | |
apr-1.5.2/include/apr_atomic.h | |
apr-1.5.2/include/apr_user.h | |
apr-1.5.2/include/apr_mmap.h | |
apr-1.5.2/include/apr_version.h | |
apr-1.5.2/include/apr_file_io.h | |
apr-1.5.2/include/apr_ring.h | |
apr-1.5.2/include/apr_shm.h | |
apr-1.5.2/include/apr.hwc | |
apr-1.5.2/include/apr_global_mutex.h | |
apr-1.5.2/include/apr_errno.h | |
apr-1.5.2/include/apr.hnw | |
apr-1.5.2/include/apr_thread_mutex.h | |
apr-1.5.2/include/apr_proc_mutex.h | |
apr-1.5.2/include/apr.h.in | |
apr-1.5.2/include/apr_dso.h | |
apr-1.5.2/include/apr_thread_proc.h | |
apr-1.5.2/include/apr_hash.h | |
apr-1.5.2/include/private/ | |
apr-1.5.2/include/apr_skiplist.h | |
apr-1.5.2/include/apr_getopt.h | |
apr-1.5.2/include/apr_pools.h | |
apr-1.5.2/include/apr_allocator.h | |
apr-1.5.2/include/apr_inherit.h | |
apr-1.5.2/include/apr_fnmatch.h | |
apr-1.5.2/include/apr_tables.h | |
apr-1.5.2/include/apr_env.h | |
apr-1.5.2/include/apr_lib.h | |
apr-1.5.2/include/arch/ | |
apr-1.5.2/include/arch/os2/ | |
apr-1.5.2/include/arch/os2/apr_arch_threadproc.h | |
apr-1.5.2/include/arch/os2/apr_arch_thread_mutex.h | |
apr-1.5.2/include/arch/os2/apr_arch_thread_cond.h | |
apr-1.5.2/include/arch/os2/apr_arch_thread_rwlock.h | |
apr-1.5.2/include/arch/os2/apr_arch_inherit.h | |
apr-1.5.2/include/arch/os2/apr_arch_proc_mutex.h | |
apr-1.5.2/include/arch/os2/apr_arch_dso.h | |
apr-1.5.2/include/arch/os2/apr_arch_os2calls.h | |
apr-1.5.2/include/arch/os2/apr_arch_file_io.h | |
apr-1.5.2/include/arch/os2/apr_arch_networkio.h | |
apr-1.5.2/include/arch/apr_private_common.h | |
apr-1.5.2/include/arch/unix/ | |
apr-1.5.2/include/arch/unix/apr_arch_poll_private.h | |
apr-1.5.2/include/arch/unix/apr_arch_threadproc.h | |
apr-1.5.2/include/arch/unix/apr_arch_atomic.h | |
apr-1.5.2/include/arch/unix/apr_arch_thread_mutex.h | |
apr-1.5.2/include/arch/unix/apr_arch_thread_cond.h | |
apr-1.5.2/include/arch/unix/apr_arch_misc.h | |
apr-1.5.2/include/arch/unix/apr_arch_global_mutex.h | |
apr-1.5.2/include/arch/unix/apr_arch_thread_rwlock.h | |
apr-1.5.2/include/arch/unix/apr_arch_internal_time.h | |
apr-1.5.2/include/arch/unix/apr_private.h.in | |
apr-1.5.2/include/arch/unix/apr_arch_inherit.h | |
apr-1.5.2/include/arch/unix/apr_arch_proc_mutex.h | |
apr-1.5.2/include/arch/unix/apr_arch_dso.h | |
apr-1.5.2/include/arch/unix/apr_arch_file_io.h | |
apr-1.5.2/include/arch/unix/apr_arch_networkio.h | |
apr-1.5.2/include/arch/unix/apr_arch_shm.h | |
apr-1.5.2/include/arch/os390/ | |
apr-1.5.2/include/arch/os390/apr_arch_dso.h | |
apr-1.5.2/include/arch/aix/ | |
apr-1.5.2/include/arch/aix/apr_arch_dso.h | |
apr-1.5.2/include/arch/darwin/ | |
apr-1.5.2/include/arch/win32/ | |
apr-1.5.2/include/arch/win32/apr_arch_atime.h | |
apr-1.5.2/include/arch/win32/apr_arch_threadproc.h | |
apr-1.5.2/include/arch/win32/apr_arch_thread_mutex.h | |
apr-1.5.2/include/arch/win32/apr_arch_thread_cond.h | |
apr-1.5.2/include/arch/win32/apr_arch_utf8.h | |
apr-1.5.2/include/arch/win32/apr_arch_misc.h | |
apr-1.5.2/include/arch/win32/apr_arch_thread_rwlock.h | |
apr-1.5.2/include/arch/win32/apr_arch_inherit.h | |
apr-1.5.2/include/arch/win32/apr_dbg_win32_handles.h | |
apr-1.5.2/include/arch/win32/apr_arch_proc_mutex.h | |
apr-1.5.2/include/arch/win32/apr_arch_dso.h | |
apr-1.5.2/include/arch/win32/apr_arch_file_io.h | |
apr-1.5.2/include/arch/win32/apr_arch_networkio.h | |
apr-1.5.2/include/arch/win32/apr_private.h | |
apr-1.5.2/include/arch/beos/ | |
apr-1.5.2/include/arch/beos/apr_arch_threadproc.h | |
apr-1.5.2/include/arch/beos/apr_arch_thread_mutex.h | |
apr-1.5.2/include/arch/beos/apr_arch_thread_cond.h | |
apr-1.5.2/include/arch/beos/apr_arch_thread_rwlock.h | |
apr-1.5.2/include/arch/beos/apr_arch_proc_mutex.h | |
apr-1.5.2/include/arch/beos/apr_arch_dso.h | |
apr-1.5.2/include/arch/netware/ | |
apr-1.5.2/include/arch/netware/apr_arch_threadproc.h | |
apr-1.5.2/include/arch/netware/apr_arch_pre_nw.h | |
apr-1.5.2/include/arch/netware/apr_arch_thread_mutex.h | |
apr-1.5.2/include/arch/netware/apr_arch_thread_cond.h | |
apr-1.5.2/include/arch/netware/apr_arch_global_mutex.h | |
apr-1.5.2/include/arch/netware/apr_arch_thread_rwlock.h | |
apr-1.5.2/include/arch/netware/apr_arch_internal_time.h | |
apr-1.5.2/include/arch/netware/apr_arch_proc_mutex.h | |
apr-1.5.2/include/arch/netware/apr_arch_dso.h | |
apr-1.5.2/include/arch/netware/apr_arch_file_io.h | |
apr-1.5.2/include/arch/netware/apr_arch_networkio.h | |
apr-1.5.2/include/arch/netware/apr_private.h | |
apr-1.5.2/include/apr_network_io.h | |
apr-1.5.2/include/apr_support.h | |
apr-1.5.2/include/apr_file_info.h | |
apr-1.5.2/include/apr_escape.h | |
apr-1.5.2/include/apr_portable.h | |
apr-1.5.2/include/apr_poll.h | |
apr-1.5.2/shmem/ | |
apr-1.5.2/shmem/os2/ | |
apr-1.5.2/shmem/os2/shm.c | |
apr-1.5.2/shmem/unix/ | |
apr-1.5.2/shmem/unix/shm.c | |
apr-1.5.2/shmem/win32/ | |
apr-1.5.2/shmem/win32/shm.c | |
apr-1.5.2/shmem/beos/ | |
apr-1.5.2/shmem/beos/shm.c | |
apr-1.5.2/README.cmake | |
apr-1.5.2/locks/ | |
apr-1.5.2/locks/os2/ | |
apr-1.5.2/locks/os2/thread_rwlock.c | |
apr-1.5.2/locks/os2/thread_mutex.c | |
apr-1.5.2/locks/os2/thread_cond.c | |
apr-1.5.2/locks/os2/proc_mutex.c | |
apr-1.5.2/locks/unix/ | |
apr-1.5.2/locks/unix/thread_rwlock.c | |
apr-1.5.2/locks/unix/global_mutex.c | |
apr-1.5.2/locks/unix/thread_mutex.c | |
apr-1.5.2/locks/unix/thread_cond.c | |
apr-1.5.2/locks/unix/proc_mutex.c | |
apr-1.5.2/locks/win32/ | |
apr-1.5.2/locks/win32/thread_rwlock.c | |
apr-1.5.2/locks/win32/thread_mutex.c | |
apr-1.5.2/locks/win32/thread_cond.c | |
apr-1.5.2/locks/win32/proc_mutex.c | |
apr-1.5.2/locks/beos/ | |
apr-1.5.2/locks/beos/thread_rwlock.c | |
apr-1.5.2/locks/beos/thread_mutex.c | |
apr-1.5.2/locks/beos/thread_cond.c | |
apr-1.5.2/locks/beos/proc_mutex.c | |
apr-1.5.2/locks/netware/ | |
apr-1.5.2/locks/netware/thread_rwlock.c | |
apr-1.5.2/locks/netware/thread_mutex.c | |
apr-1.5.2/locks/netware/thread_cond.c | |
apr-1.5.2/locks/netware/proc_mutex.c | |
apr-1.5.2/CHANGES | |
apr-1.5.2/time/ | |
apr-1.5.2/time/unix/ | |
apr-1.5.2/time/unix/timestr.c | |
apr-1.5.2/time/unix/time.c | |
apr-1.5.2/time/win32/ | |
apr-1.5.2/time/win32/timestr.c | |
apr-1.5.2/time/win32/time.c | |
apr-1.5.2/support/ | |
apr-1.5.2/support/unix/ | |
apr-1.5.2/support/unix/waitio.c | |
apr-1.5.2/NOTICE | |
apr-1.5.2/tools/ | |
apr-1.5.2/tools/gen_test_char.c | |
apr-1.5.2/Makefile.in | |
apr-1.5.2/threadproc/ | |
apr-1.5.2/threadproc/os2/ | |
apr-1.5.2/threadproc/os2/thread.c | |
apr-1.5.2/threadproc/os2/signals.c | |
apr-1.5.2/threadproc/os2/proc.c | |
apr-1.5.2/threadproc/os2/threadpriv.c | |
apr-1.5.2/threadproc/unix/ | |
apr-1.5.2/threadproc/unix/procsup.c | |
apr-1.5.2/threadproc/unix/thread.c | |
apr-1.5.2/threadproc/unix/signals.c | |
apr-1.5.2/threadproc/unix/proc.c | |
apr-1.5.2/threadproc/unix/threadpriv.c | |
apr-1.5.2/threadproc/win32/ | |
apr-1.5.2/threadproc/win32/thread.c | |
apr-1.5.2/threadproc/win32/signals.c | |
apr-1.5.2/threadproc/win32/proc.c | |
apr-1.5.2/threadproc/win32/threadpriv.c | |
apr-1.5.2/threadproc/beos/ | |
apr-1.5.2/threadproc/beos/threadproc_common.c | |
apr-1.5.2/threadproc/beos/apr_proc_stub.c | |
apr-1.5.2/threadproc/beos/thread.c | |
apr-1.5.2/threadproc/beos/proc.c | |
apr-1.5.2/threadproc/beos/threadpriv.c | |
apr-1.5.2/threadproc/netware/ | |
apr-1.5.2/threadproc/netware/procsup.c | |
apr-1.5.2/threadproc/netware/thread.c | |
apr-1.5.2/threadproc/netware/signals.c | |
apr-1.5.2/threadproc/netware/proc.c | |
apr-1.5.2/threadproc/netware/threadpriv.c | |
apr-1.5.2/apr.dsw | |
apr-1.5.2/user/ | |
apr-1.5.2/user/unix/ | |
apr-1.5.2/user/unix/groupinfo.c | |
apr-1.5.2/user/unix/userinfo.c | |
apr-1.5.2/user/win32/ | |
apr-1.5.2/user/win32/groupinfo.c | |
apr-1.5.2/user/win32/userinfo.c | |
apr-1.5.2/user/netware/ | |
apr-1.5.2/user/netware/groupinfo.c | |
apr-1.5.2/user/netware/userinfo.c | |
apr-1.5.2/atomic/ | |
apr-1.5.2/atomic/unix/ | |
apr-1.5.2/atomic/unix/mutex.c | |
apr-1.5.2/atomic/unix/ppc.c | |
apr-1.5.2/atomic/unix/builtins.c | |
apr-1.5.2/atomic/unix/ia32.c | |
apr-1.5.2/atomic/unix/solaris.c | |
apr-1.5.2/atomic/unix/s390.c | |
apr-1.5.2/atomic/os390/ | |
apr-1.5.2/atomic/os390/atomic.c | |
apr-1.5.2/atomic/win32/ | |
apr-1.5.2/atomic/win32/apr_atomic.c | |
apr-1.5.2/atomic/netware/ | |
apr-1.5.2/atomic/netware/apr_atomic.c | |
apr-1.5.2/test/ | |
apr-1.5.2/test/testud.c | |
apr-1.5.2/test/globalmutexchild.c | |
apr-1.5.2/test/testprocmutex.c | |
apr-1.5.2/test/occhild.c | |
apr-1.5.2/test/testpipe.c | |
apr-1.5.2/test/NWGNUsockchild | |
apr-1.5.2/test/tryread.c | |
apr-1.5.2/test/abts.h | |
apr-1.5.2/test/echod.c | |
apr-1.5.2/test/data/ | |
apr-1.5.2/test/data/file_datafile.txt | |
apr-1.5.2/test/data/mmap_datafile.txt | |
apr-1.5.2/test/testhash.c | |
apr-1.5.2/test/internal/ | |
apr-1.5.2/test/internal/testregex.c | |
apr-1.5.2/test/internal/testucs.c | |
apr-1.5.2/test/internal/Makefile.in | |
apr-1.5.2/test/internal/Makefile.win | |
apr-1.5.2/test/testenv.c | |
apr-1.5.2/test/testshmconsumer.c | |
apr-1.5.2/test/proc_child.c | |
apr-1.5.2/test/testargs.c | |
apr-1.5.2/test/testutil.c | |
apr-1.5.2/test/testmutexscope.c | |
apr-1.5.2/test/NWGNUsockperf | |
apr-1.5.2/test/testfnmatch.c | |
apr-1.5.2/test/NWGNUmakefile | |
apr-1.5.2/test/NWGNUproc_child | |
apr-1.5.2/test/testflock.c | |
apr-1.5.2/test/NWGNUglobalmutexchild | |
apr-1.5.2/test/NWGNUmod_test | |
apr-1.5.2/test/testfileinfo.c | |
apr-1.5.2/test/testtime.c | |
apr-1.5.2/test/testrand.c | |
apr-1.5.2/test/sendfile.c | |
apr-1.5.2/test/testuser.c | |
apr-1.5.2/test/teststr.c | |
apr-1.5.2/test/testsock.c | |
apr-1.5.2/test/testpoll.c | |
apr-1.5.2/test/testoc.c | |
apr-1.5.2/test/testmmap.c | |
apr-1.5.2/test/NWGNUechod | |
apr-1.5.2/test/teststrnatcmp.c | |
apr-1.5.2/test/Makefile.in | |
apr-1.5.2/test/testtable.c | |
apr-1.5.2/test/testall.dsw | |
apr-1.5.2/test/testatomic.c | |
apr-1.5.2/test/testvsn.c | |
apr-1.5.2/test/testshm.c | |
apr-1.5.2/test/testescape.c | |
apr-1.5.2/test/testglobalmutex.h | |
apr-1.5.2/test/nw_misc.c | |
apr-1.5.2/test/testfile.c | |
apr-1.5.2/test/sockperf.c | |
apr-1.5.2/test/testsockets.c | |
apr-1.5.2/test/README | |
apr-1.5.2/test/testtemp.c | |
apr-1.5.2/test/testlib.dsp | |
apr-1.5.2/test/testsleep.c | |
apr-1.5.2/test/testskiplist.c | |
apr-1.5.2/test/testapp.c | |
apr-1.5.2/test/testproc.c | |
apr-1.5.2/test/testdso.c | |
apr-1.5.2/test/abts_tests.h | |
apr-1.5.2/test/testpools.c | |
apr-1.5.2/test/testdup.c | |
apr-1.5.2/test/testipsub.c | |
apr-1.5.2/test/abts.c | |
apr-1.5.2/test/testshmproducer.c | |
apr-1.5.2/test/testlockperf.c | |
apr-1.5.2/test/sockchild.c | |
apr-1.5.2/test/testsock.h | |
apr-1.5.2/test/Makefile.win | |
apr-1.5.2/test/readchild.c | |
apr-1.5.2/test/testshm.h | |
apr-1.5.2/test/NWGNUtryread | |
apr-1.5.2/test/NWGNUtestatmc | |
apr-1.5.2/test/testlock.c | |
apr-1.5.2/test/mod_test.c | |
apr-1.5.2/test/testglobalmutex.c | |
apr-1.5.2/test/testutil.h | |
apr-1.5.2/test/testfilecopy.c | |
apr-1.5.2/test/testnames.c | |
apr-1.5.2/test/testlfs.c | |
apr-1.5.2/test/testpath.c | |
apr-1.5.2/test/testflock.h | |
apr-1.5.2/test/testdir.c | |
apr-1.5.2/test/testdll.dsp | |
apr-1.5.2/test/NWGNUaprtest | |
apr-1.5.2/test/testthread.c | |
apr-1.5.2/test/testsockopt.c | |
apr-1.5.2/test/testcond.c | |
apr-1.5.2/test/testfmt.c | |
apr-1.5.2/test/NWGNUreadchild | |
apr-1.5.2/libapr.mak | |
apr-1.5.2/dso/ | |
apr-1.5.2/dso/os2/ | |
apr-1.5.2/dso/os2/dso.c | |
apr-1.5.2/dso/unix/ | |
apr-1.5.2/dso/unix/dso.c | |
apr-1.5.2/dso/os390/ | |
apr-1.5.2/dso/os390/dso.c | |
apr-1.5.2/dso/aix/ | |
apr-1.5.2/dso/aix/dso.c | |
apr-1.5.2/dso/win32/ | |
apr-1.5.2/dso/win32/dso.c | |
apr-1.5.2/dso/beos/ | |
apr-1.5.2/dso/beos/dso.c | |
apr-1.5.2/dso/netware/ | |
apr-1.5.2/dso/netware/dso.c | |
apr-1.5.2/build-outputs.mk | |
apr-1.5.2/README | |
apr-1.5.2/misc/ | |
apr-1.5.2/misc/unix/ | |
apr-1.5.2/misc/unix/randbyte_os2.inc | |
apr-1.5.2/misc/unix/getopt.c | |
apr-1.5.2/misc/unix/errorcodes.c | |
apr-1.5.2/misc/unix/start.c | |
apr-1.5.2/misc/unix/env.c | |
apr-1.5.2/misc/unix/version.c | |
apr-1.5.2/misc/unix/charset.c | |
apr-1.5.2/misc/unix/rand.c | |
apr-1.5.2/misc/unix/otherchild.c | |
apr-1.5.2/misc/win32/ | |
apr-1.5.2/misc/win32/misc.c | |
apr-1.5.2/misc/win32/apr_app.c | |
apr-1.5.2/misc/win32/internal.c | |
apr-1.5.2/misc/win32/start.c | |
apr-1.5.2/misc/win32/env.c | |
apr-1.5.2/misc/win32/utf8.c | |
apr-1.5.2/misc/win32/charset.c | |
apr-1.5.2/misc/win32/rand.c | |
apr-1.5.2/misc/netware/ | |
apr-1.5.2/misc/netware/aprlib.def | |
apr-1.5.2/misc/netware/start.c | |
apr-1.5.2/misc/netware/libprews.c | |
apr-1.5.2/misc/netware/charset.c | |
apr-1.5.2/misc/netware/rand.c | |
apr-1.5.2/misc/netware/apr.xdc | |
apr-1.5.2/build/ | |
apr-1.5.2/build/MakeEtags | |
apr-1.5.2/build/aprapp.mak | |
apr-1.5.2/build/config.guess | |
apr-1.5.2/build/libaprapp.dsp | |
apr-1.5.2/build/ltoptions.m4 | |
apr-1.5.2/build/NWGNUtail.inc | |
apr-1.5.2/build/pkg/ | |
apr-1.5.2/build/pkg/buildpkg.sh | |
apr-1.5.2/build/pkg/pkginfo.in | |
apr-1.5.2/build/pkg/README | |
apr-1.5.2/build/apr_win32.m4 | |
apr-1.5.2/build/ltmain.sh | |
apr-1.5.2/build/run-gcov.sh | |
apr-1.5.2/build/apr_rules.mk.in | |
apr-1.5.2/build/prelibaprapp.dsp | |
apr-1.5.2/build/apr_network.m4 | |
apr-1.5.2/build/NWGNUhead.inc | |
apr-1.5.2/build/apr_common.m4 | |
apr-1.5.2/build/aplibtool.c | |
apr-1.5.2/build/gen-build.py | |
apr-1.5.2/build/libaprapp.mak | |
apr-1.5.2/build/libtool.m4 | |
apr-1.5.2/build/NWGNUmakefile | |
apr-1.5.2/build/ltversion.m4 | |
apr-1.5.2/build/mkdir.sh | |
apr-1.5.2/build/buildcheck.sh | |
apr-1.5.2/build/get-version.sh | |
apr-1.5.2/build/PrintPath | |
apr-1.5.2/build/libaprapp.dep | |
apr-1.5.2/build/cvtdsp.pl | |
apr-1.5.2/build/jlibtool.c | |
apr-1.5.2/build/find_apr.m4 | |
apr-1.5.2/build/nw_make_header.awk | |
apr-1.5.2/build/lineends.pl | |
apr-1.5.2/build/make_nw_export.awk | |
apr-1.5.2/build/make_exports.awk | |
apr-1.5.2/build/aprapp.dsp | |
apr-1.5.2/build/ltsugar.m4 | |
apr-1.5.2/build/nw_ver.awk | |
apr-1.5.2/build/rpm/ | |
apr-1.5.2/build/rpm/apr.spec.in | |
apr-1.5.2/build/lt~obsolete.m4 | |
apr-1.5.2/build/config.sub | |
apr-1.5.2/build/apr_threads.m4 | |
apr-1.5.2/build/win32ver.awk | |
apr-1.5.2/build/NWGNUenvironment.inc | |
apr-1.5.2/build/install.sh | |
apr-1.5.2/build/preaprapp.dsp | |
apr-1.5.2/build/make_var_export.awk | |
apr-1.5.2/build/aprapp.dep | |
apr-1.5.2/build/apr_hints.m4 | |
apr-1.5.2/build/fixwin32mak.pl | |
apr-1.5.2/build/nw_export.inc | |
apr-1.5.2/apr.dsp | |
apr-1.5.2/network_io/ | |
apr-1.5.2/network_io/os2/ | |
apr-1.5.2/network_io/os2/os2calls.c | |
apr-1.5.2/network_io/os2/inet_ntop.c | |
apr-1.5.2/network_io/os2/sendrecv_udp.c | |
apr-1.5.2/network_io/os2/sockets.c | |
apr-1.5.2/network_io/os2/sockaddr.c | |
apr-1.5.2/network_io/os2/socket_util.c | |
apr-1.5.2/network_io/os2/sockopt.c | |
apr-1.5.2/network_io/os2/inet_pton.c | |
apr-1.5.2/network_io/os2/sendrecv.c | |
apr-1.5.2/network_io/unix/ | |
apr-1.5.2/network_io/unix/multicast.c | |
apr-1.5.2/network_io/unix/inet_ntop.c | |
apr-1.5.2/network_io/unix/sockets.c | |
apr-1.5.2/network_io/unix/sockaddr.c | |
apr-1.5.2/network_io/unix/socket_util.c | |
apr-1.5.2/network_io/unix/sockopt.c | |
apr-1.5.2/network_io/unix/inet_pton.c | |
apr-1.5.2/network_io/unix/sendrecv.c | |
apr-1.5.2/network_io/win32/ | |
apr-1.5.2/network_io/win32/sockets.c | |
apr-1.5.2/network_io/win32/sockopt.c | |
apr-1.5.2/network_io/win32/sendrecv.c | |
apr-1.5.2/network_io/beos/ | |
apr-1.5.2/network_io/beos/socketcommon.c | |
apr-1.5.2/network_io/beos/sendrecv.c | |
apr-1.5.2/helpers/ | |
apr-1.5.2/helpers/apr_rename.pl | |
apr-1.5.2/configure | |
apr-1.5.2/memory/ | |
apr-1.5.2/memory/unix/ | |
apr-1.5.2/memory/unix/apr_pools.c | |
apr-1.5.2/tables/ | |
apr-1.5.2/tables/apr_hash.c | |
apr-1.5.2/tables/apr_tables.c | |
apr-1.5.2/tables/apr_skiplist.c | |
apr-1.5.2/Makefile.win | |
apr-1.5.2/apr.dep | |
apr-1.5.2/apr.mak | |
apr-1.5.2/passwd/ | |
apr-1.5.2/passwd/apr_getpass.c | |
apr-1.5.2/encoding/ | |
apr-1.5.2/encoding/apr_escape.c | |
apr-1.5.2/mmap/ | |
apr-1.5.2/mmap/unix/ | |
apr-1.5.2/mmap/unix/mmap.c | |
apr-1.5.2/mmap/unix/common.c | |
apr-1.5.2/mmap/win32/ | |
apr-1.5.2/mmap/win32/mmap.c | |
apr-1.5.2/apr-config.in | |
apr-1.5.2/libapr.rc | |
apr-util-1.5.4/ | |
apr-util-1.5.4/libaprutil.dep | |
apr-util-1.5.4/xlate/ | |
apr-util-1.5.4/xlate/xlate.c | |
apr-util-1.5.4/docs/ | |
apr-util-1.5.4/docs/doxygen.conf | |
apr-util-1.5.4/libaprutil.dsp | |
apr-util-1.5.4/NWGNUmakefile | |
apr-util-1.5.4/hooks/ | |
apr-util-1.5.4/hooks/apr_hooks.c | |
apr-util-1.5.4/aprutil.mak | |
apr-util-1.5.4/crypto/ | |
apr-util-1.5.4/crypto/apr_md4.c | |
apr-util-1.5.4/crypto/apr_md5.c | |
apr-util-1.5.4/crypto/apr_crypto_openssl.mak | |
apr-util-1.5.4/crypto/apr_crypto_openssl.dep | |
apr-util-1.5.4/crypto/apr_sha1.c | |
apr-util-1.5.4/crypto/apr_crypto.c | |
apr-util-1.5.4/crypto/apr_crypto_openssl.dsp | |
apr-util-1.5.4/crypto/apr_crypto_nss.c | |
apr-util-1.5.4/crypto/getuuid.c | |
apr-util-1.5.4/crypto/apr_crypto_nss.dsp | |
apr-util-1.5.4/crypto/apr_crypto_openssl.c | |
apr-util-1.5.4/crypto/apr_crypto_nss.mak | |
apr-util-1.5.4/crypto/crypt_blowfish.h | |
apr-util-1.5.4/crypto/uuid.c | |
apr-util-1.5.4/crypto/apr_crypto_nss.dep | |
apr-util-1.5.4/crypto/apr_passwd.c | |
apr-util-1.5.4/crypto/crypt_blowfish.c | |
apr-util-1.5.4/test/ | |
apr-util-1.5.4/test/testutillib.dsp | |
apr-util-1.5.4/test/dbd.c | |
apr-util-1.5.4/test/testxml.c | |
apr-util-1.5.4/test/testmd5.c | |
apr-util-1.5.4/test/NWGNUmakefile | |
apr-util-1.5.4/test/testutil.c | |
apr-util-1.5.4/test/testdbm.c | |
apr-util-1.5.4/test/testutil.h | |
apr-util-1.5.4/test/abts.c | |
apr-util-1.5.4/test/testbuckets.c | |
apr-util-1.5.4/test/Makefile.in | |
apr-util-1.5.4/test/testreslist.c | |
apr-util-1.5.4/test/testdbd.c | |
apr-util-1.5.4/test/testutildll.dsp | |
apr-util-1.5.4/test/testuri.c | |
apr-util-1.5.4/test/testcrypto.c | |
apr-util-1.5.4/test/testmemcache.c | |
apr-util-1.5.4/test/nw_misc.c | |
apr-util-1.5.4/test/NWGNUaputest | |
apr-util-1.5.4/test/testrmm.c | |
apr-util-1.5.4/test/Makefile.win | |
apr-util-1.5.4/test/testall.dsw | |
apr-util-1.5.4/test/testmd4.c | |
apr-util-1.5.4/test/abts.h | |
apr-util-1.5.4/test/teststrmatch.c | |
apr-util-1.5.4/test/testpass.c | |
apr-util-1.5.4/test/testqueue.c | |
apr-util-1.5.4/test/test_apu.h | |
apr-util-1.5.4/test/testldap.c | |
apr-util-1.5.4/test/data/ | |
apr-util-1.5.4/test/data/billion-laughs.xml | |
apr-util-1.5.4/test/abts_tests.h | |
apr-util-1.5.4/test/testdate.c | |
apr-util-1.5.4/test/testuuid.c | |
apr-util-1.5.4/test/testxlate.c | |
apr-util-1.5.4/memcache/ | |
apr-util-1.5.4/memcache/apr_memcache.c | |
apr-util-1.5.4/dbd/ | |
apr-util-1.5.4/dbd/apr_dbd_odbc.c | |
apr-util-1.5.4/dbd/apr_dbd_oracle.dsp | |
apr-util-1.5.4/dbd/apr_dbd_sqlite2.dep | |
apr-util-1.5.4/dbd/apr_dbd_freetds.dsp | |
apr-util-1.5.4/dbd/NWGNUmakefile | |
apr-util-1.5.4/dbd/NWGNUdbdmysql | |
apr-util-1.5.4/dbd/apr_dbd_pgsql.dep | |
apr-util-1.5.4/dbd/NWGNUdbdfreetds | |
apr-util-1.5.4/dbd/NWGNUdbdpgsql | |
apr-util-1.5.4/dbd/apr_dbd_sqlite3.mak | |
apr-util-1.5.4/dbd/apr_dbd_freetds.dep | |
apr-util-1.5.4/dbd/apr_dbd_pgsql.mak | |
apr-util-1.5.4/dbd/apr_dbd_oracle.mak | |
apr-util-1.5.4/dbd/apr_dbd_sqlite3.c | |
apr-util-1.5.4/dbd/apr_dbd_mysql.dsp | |
apr-util-1.5.4/dbd/apr_dbd.c | |
apr-util-1.5.4/dbd/apr_dbd_sqlite2.dsp | |
apr-util-1.5.4/dbd/apr_dbd_odbc.dsp | |
apr-util-1.5.4/dbd/apr_dbd_freetds.mak | |
apr-util-1.5.4/dbd/NWGNUdbdsqli2 | |
apr-util-1.5.4/dbd/apr_dbd_sqlite3.dsp | |
apr-util-1.5.4/dbd/apr_dbd_pgsql.c | |
apr-util-1.5.4/dbd/apr_dbd_oracle.c | |
apr-util-1.5.4/dbd/apr_dbd_pgsql.dsp | |
apr-util-1.5.4/dbd/apr_dbd_sqlite2.mak | |
apr-util-1.5.4/dbd/apr_dbd_mysql.dep | |
apr-util-1.5.4/dbd/apr_dbd_odbc.mak | |
apr-util-1.5.4/dbd/apr_dbd_mysql.c | |
apr-util-1.5.4/dbd/apr_dbd_oracle.dep | |
apr-util-1.5.4/dbd/apr_dbd_mysql.mak | |
apr-util-1.5.4/dbd/apr_dbd_sqlite2.c | |
apr-util-1.5.4/dbd/apr_dbd_freetds.c | |
apr-util-1.5.4/dbd/apr_dbd_sqlite3.dep | |
apr-util-1.5.4/dbd/apr_dbd_odbc.dep | |
apr-util-1.5.4/dbd/NWGNUdbdsqli3 | |
apr-util-1.5.4/configure.in | |
apr-util-1.5.4/Makefile.in | |
apr-util-1.5.4/build.conf | |
apr-util-1.5.4/apr-util.pc.in | |
apr-util-1.5.4/README.cmake | |
apr-util-1.5.4/aprutil.dep | |
apr-util-1.5.4/apu-config.in | |
apr-util-1.5.4/configure | |
apr-util-1.5.4/buckets/ | |
apr-util-1.5.4/buckets/apr_buckets_pool.c | |
apr-util-1.5.4/buckets/apr_buckets.c | |
apr-util-1.5.4/buckets/apr_buckets_flush.c | |
apr-util-1.5.4/buckets/apr_buckets_socket.c | |
apr-util-1.5.4/buckets/apr_buckets_file.c | |
apr-util-1.5.4/buckets/apr_buckets_simple.c | |
apr-util-1.5.4/buckets/apr_buckets_mmap.c | |
apr-util-1.5.4/buckets/apr_buckets_heap.c | |
apr-util-1.5.4/buckets/apr_buckets_alloc.c | |
apr-util-1.5.4/buckets/apr_brigade.c | |
apr-util-1.5.4/buckets/apr_buckets_pipe.c | |
apr-util-1.5.4/buckets/apr_buckets_eos.c | |
apr-util-1.5.4/buckets/apr_buckets_refcount.c | |
apr-util-1.5.4/renames_pending | |
apr-util-1.5.4/CHANGES | |
apr-util-1.5.4/CMakeLists.txt | |
apr-util-1.5.4/config.layout | |
apr-util-1.5.4/uri/ | |
apr-util-1.5.4/uri/apr_uri.c | |
apr-util-1.5.4/Makefile.win | |
apr-util-1.5.4/aprutil.dsw | |
apr-util-1.5.4/include/ | |
apr-util-1.5.4/include/apu.hw | |
apr-util-1.5.4/include/apu_errno.h | |
apr-util-1.5.4/include/apr_optional.h | |
apr-util-1.5.4/include/apr_base64.h | |
apr-util-1.5.4/include/apr_rmm.h | |
apr-util-1.5.4/include/apr_ldap_option.h | |
apr-util-1.5.4/include/apr_md5.h | |
apr-util-1.5.4/include/apr_xml.h | |
apr-util-1.5.4/include/apu.hnw | |
apr-util-1.5.4/include/apr_thread_pool.h | |
apr-util-1.5.4/include/apu_version.h | |
apr-util-1.5.4/include/apr_ldap.hwc | |
apr-util-1.5.4/include/apr_sdbm.h | |
apr-util-1.5.4/include/apr_ldap_init.h | |
apr-util-1.5.4/include/apr_buckets.h | |
apr-util-1.5.4/include/apr_optional_hooks.h | |
apr-util-1.5.4/include/apr_date.h | |
apr-util-1.5.4/include/apr_queue.h | |
apr-util-1.5.4/include/apr_ldap.h.in | |
apr-util-1.5.4/include/apu.h.in | |
apr-util-1.5.4/include/apu_want.hnw | |
apr-util-1.5.4/include/apr_anylock.h | |
apr-util-1.5.4/include/apr_ldap.hw | |
apr-util-1.5.4/include/apr_ldap.hnw | |
apr-util-1.5.4/include/apr_ldap_rebind.h | |
apr-util-1.5.4/include/apu_want.h.in | |
apr-util-1.5.4/include/apr_uri.h | |
apr-util-1.5.4/include/apr_memcache.h | |
apr-util-1.5.4/include/apu.hwc | |
apr-util-1.5.4/include/apr_ldap_url.h | |
apr-util-1.5.4/include/apr_strmatch.h | |
apr-util-1.5.4/include/apu_want.hw | |
apr-util-1.5.4/include/apr_dbd.h | |
apr-util-1.5.4/include/apr_md4.h | |
apr-util-1.5.4/include/private/ | |
apr-util-1.5.4/include/private/apu_config.h.in | |
apr-util-1.5.4/include/private/apu_config.hw | |
apr-util-1.5.4/include/private/apu_config.hnw | |
apr-util-1.5.4/include/private/apu_select_dbm.h.in | |
apr-util-1.5.4/include/private/apr_dbm_private.h | |
apr-util-1.5.4/include/private/apr_dbd_odbc_v2.h | |
apr-util-1.5.4/include/private/apr_dbd_internal.h | |
apr-util-1.5.4/include/private/apu_select_dbm.hw | |
apr-util-1.5.4/include/private/apr_crypto_internal.h | |
apr-util-1.5.4/include/private/apu_internal.h | |
apr-util-1.5.4/include/apr_xlate.h | |
apr-util-1.5.4/include/apr_reslist.h | |
apr-util-1.5.4/include/apr_hooks.h | |
apr-util-1.5.4/include/apr_sha1.h | |
apr-util-1.5.4/include/apr_uuid.h | |
apr-util-1.5.4/include/apr_dbm.h | |
apr-util-1.5.4/include/apr_crypto.h | |
apr-util-1.5.4/libaprutil.mak | |
apr-util-1.5.4/dbm/ | |
apr-util-1.5.4/dbm/NWGNUmakefile | |
apr-util-1.5.4/dbm/apr_dbm_ndbm.c | |
apr-util-1.5.4/dbm/NWGNUdbmdb | |
apr-util-1.5.4/dbm/apr_dbm.c | |
apr-util-1.5.4/dbm/apr_dbm_db.dsp | |
apr-util-1.5.4/dbm/apr_dbm_sdbm.c | |
apr-util-1.5.4/dbm/apr_dbm_db.mak | |
apr-util-1.5.4/dbm/sdbm/ | |
apr-util-1.5.4/dbm/sdbm/sdbm_pair.c | |
apr-util-1.5.4/dbm/sdbm/sdbm_pair.h | |
apr-util-1.5.4/dbm/sdbm/sdbm_private.h | |
apr-util-1.5.4/dbm/sdbm/sdbm.c | |
apr-util-1.5.4/dbm/sdbm/sdbm_tune.h | |
apr-util-1.5.4/dbm/sdbm/sdbm_lock.c | |
apr-util-1.5.4/dbm/sdbm/sdbm_hash.c | |
apr-util-1.5.4/dbm/apr_dbm_db.dep | |
apr-util-1.5.4/dbm/apr_dbm_gdbm.c | |
apr-util-1.5.4/dbm/NWGNUdbmgdbm | |
apr-util-1.5.4/dbm/apr_dbm_gdbm.dep | |
apr-util-1.5.4/dbm/apr_dbm_gdbm.mak | |
apr-util-1.5.4/dbm/apr_dbm_berkeleydb.c | |
apr-util-1.5.4/dbm/apr_dbm_gdbm.dsp | |
apr-util-1.5.4/libaprutil.rc | |
apr-util-1.5.4/misc/ | |
apr-util-1.5.4/misc/apr_date.c | |
apr-util-1.5.4/misc/apu_dso.c | |
apr-util-1.5.4/misc/apr_queue.c | |
apr-util-1.5.4/misc/apr_reslist.c | |
apr-util-1.5.4/misc/apr_thread_pool.c | |
apr-util-1.5.4/misc/apr_rmm.c | |
apr-util-1.5.4/misc/apu_version.c | |
apr-util-1.5.4/LICENSE | |
apr-util-1.5.4/build/ | |
apr-util-1.5.4/build/crypto.m4 | |
apr-util-1.5.4/build/dbm.m4 | |
apr-util-1.5.4/build/apu-iconv.m4 | |
apr-util-1.5.4/build/apr_common.m4 | |
apr-util-1.5.4/build/config.guess | |
apr-util-1.5.4/build/apu-hints.m4 | |
apr-util-1.5.4/build/apu-conf.m4 | |
apr-util-1.5.4/build/get-version.sh | |
apr-util-1.5.4/build/pkg/ | |
apr-util-1.5.4/build/pkg/buildpkg.sh | |
apr-util-1.5.4/build/pkg/README | |
apr-util-1.5.4/build/pkg/pkginfo.in | |
apr-util-1.5.4/build/config.sub | |
apr-util-1.5.4/build/mkdir.sh | |
apr-util-1.5.4/build/nw_apu_export.inc | |
apr-util-1.5.4/build/preaprutil.dsp | |
apr-util-1.5.4/build/dbd.m4 | |
apr-util-1.5.4/build/find_apr.m4 | |
apr-util-1.5.4/build/w32locatedb.pl | |
apr-util-1.5.4/build/rpm/ | |
apr-util-1.5.4/build/rpm/apr-util.spec.in | |
apr-util-1.5.4/build/dso.m4 | |
apr-util-1.5.4/build/find_apu.m4 | |
apr-util-1.5.4/build/install.sh | |
apr-util-1.5.4/README | |
apr-util-1.5.4/xml/ | |
apr-util-1.5.4/xml/NWGNUmakefile | |
apr-util-1.5.4/xml/apr_xml.c | |
apr-util-1.5.4/xml/expat/ | |
apr-util-1.5.4/xml/expat/configure.in | |
apr-util-1.5.4/xml/expat/Makefile.in | |
apr-util-1.5.4/xml/expat/buildconf.sh | |
apr-util-1.5.4/xml/expat/conftools/ | |
apr-util-1.5.4/xml/expat/conftools/install-sh | |
apr-util-1.5.4/xml/expat/conftools/config.guess | |
apr-util-1.5.4/xml/expat/conftools/libtool.m4 | |
apr-util-1.5.4/xml/expat/conftools/mkinstalldirs | |
apr-util-1.5.4/xml/expat/conftools/ltmain.sh | |
apr-util-1.5.4/xml/expat/conftools/PrintPath | |
apr-util-1.5.4/xml/expat/conftools/lt~obsolete.m4 | |
apr-util-1.5.4/xml/expat/conftools/config.sub | |
apr-util-1.5.4/xml/expat/conftools/ac_c_bigendian_cross.m4 | |
apr-util-1.5.4/xml/expat/conftools/ltsugar.m4 | |
apr-util-1.5.4/xml/expat/conftools/ltoptions.m4 | |
apr-util-1.5.4/xml/expat/conftools/ltversion.m4 | |
apr-util-1.5.4/xml/expat/expat_config.h.in | |
apr-util-1.5.4/xml/expat/configure | |
apr-util-1.5.4/xml/expat/COPYING | |
apr-util-1.5.4/xml/expat/lib/ | |
apr-util-1.5.4/xml/expat/lib/xmlrole.c | |
apr-util-1.5.4/xml/expat/lib/xmltok_ns.c | |
apr-util-1.5.4/xml/expat/lib/utf8tab.h | |
apr-util-1.5.4/xml/expat/lib/xmltok.h | |
apr-util-1.5.4/xml/expat/lib/nametab.h | |
apr-util-1.5.4/xml/expat/lib/xmltok_impl.c | |
apr-util-1.5.4/xml/expat/lib/latin1tab.h | |
apr-util-1.5.4/xml/expat/lib/expat_config.hnw | |
apr-util-1.5.4/xml/expat/lib/xmltok.c | |
apr-util-1.5.4/xml/expat/lib/xml.dsp | |
apr-util-1.5.4/xml/expat/lib/xmltok_impl.h | |
apr-util-1.5.4/xml/expat/lib/xml.dep | |
apr-util-1.5.4/xml/expat/lib/xmlparse.c | |
apr-util-1.5.4/xml/expat/lib/map_osd_ebcdic_df04_1.h | |
apr-util-1.5.4/xml/expat/lib/xml.mak | |
apr-util-1.5.4/xml/expat/lib/winconfig.h | |
apr-util-1.5.4/xml/expat/lib/internal.h | |
apr-util-1.5.4/xml/expat/lib/xmlrole.h | |
apr-util-1.5.4/xml/expat/lib/osd_ebcdic_df04_1.h | |
apr-util-1.5.4/xml/expat/lib/ascii.h | |
apr-util-1.5.4/xml/expat/lib/expat.dsp | |
apr-util-1.5.4/xml/expat/lib/asciitab.h | |
apr-util-1.5.4/xml/expat/lib/expat.h | |
apr-util-1.5.4/xml/expat/lib/iasciitab.h | |
apr-util-1.5.4/xml/expat/README | |
apr-util-1.5.4/xml/expat/win32/ | |
apr-util-1.5.4/xml/expat/win32/MANIFEST.txt | |
apr-util-1.5.4/xml/expat/win32/expat.iss | |
apr-util-1.5.4/NOTICE | |
apr-util-1.5.4/export_vars.sh.in | |
apr-util-1.5.4/apr-util.spec | |
apr-util-1.5.4/buildconf | |
apr-util-1.5.4/build-outputs.mk | |
apr-util-1.5.4/strmatch/ | |
apr-util-1.5.4/strmatch/apr_strmatch.c | |
apr-util-1.5.4/aprutil.dsp | |
apr-util-1.5.4/ldap/ | |
apr-util-1.5.4/ldap/NWGNUmakefile | |
apr-util-1.5.4/ldap/apr_ldap.dsp | |
apr-util-1.5.4/ldap/apr_ldap.dep | |
apr-util-1.5.4/ldap/apr_ldap_url.c | |
apr-util-1.5.4/ldap/apr_ldap_init.c | |
apr-util-1.5.4/ldap/apr_ldap_stub.c | |
apr-util-1.5.4/ldap/apr_ldap_rebind.c | |
apr-util-1.5.4/ldap/apr_ldap_option.c | |
apr-util-1.5.4/ldap/apr_ldap.mak | |
apr-util-1.5.4/encoding/ | |
apr-util-1.5.4/encoding/apr_base64.c | |
checking for chosen layout... Apache | |
checking for working mkdir -p... yes | |
checking for grep that handles long lines and -e... /bin/grep | |
checking for egrep... /bin/grep -E | |
checking build system type... x86_64-unknown-linux-gnu | |
checking host system type... x86_64-unknown-linux-gnu | |
checking target system type... x86_64-unknown-linux-gnu | |
configure: | |
configure: Configuring Apache Portable Runtime library... | |
configure: | |
configuring package in srclib/apr now | |
checking build system type... x86_64-unknown-linux-gnu | |
checking host system type... x86_64-unknown-linux-gnu | |
checking target system type... x86_64-unknown-linux-gnu | |
Configuring APR library | |
Platform: x86_64-unknown-linux-gnu | |
checking for working mkdir -p... yes | |
APR Version: 1.5.2 | |
checking for chosen layout... apr | |
checking for gcc... gcc | |
checking whether the C compiler works... yes | |
checking for C compiler default output file name... a.out | |
checking for suffix of executables... | |
checking whether we are cross compiling... no | |
checking for suffix of object files... o | |
checking whether we are using the GNU C compiler... yes | |
checking whether gcc accepts -g... yes | |
checking for gcc option to accept ISO C89... none needed | |
checking for a sed that does not truncate output... /bin/sed | |
Applying APR hints file rules for x86_64-unknown-linux-gnu | |
setting CPPFLAGS to "-DLINUX -D_REENTRANT -D_GNU_SOURCE" | |
(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 grep that handles long lines and -e... /bin/grep | |
checking for egrep... /bin/grep -E | |
checking for ANSI C header files... yes | |
checking for sys/types.h... yes | |
checking for sys/stat.h... yes | |
checking for stdlib.h... yes | |
checking for string.h... yes | |
checking for memory.h... yes | |
checking for strings.h... yes | |
checking for inttypes.h... yes | |
checking for stdint.h... yes | |
checking for unistd.h... yes | |
checking minix/config.h usability... no | |
checking minix/config.h presence... no | |
checking for minix/config.h... no | |
checking whether it is safe to define __EXTENSIONS__... yes | |
checking for library containing strerror... none required | |
checking whether system uses EBCDIC... no | |
performing libtool configuration... | |
checking how to print strings... printf | |
checking for a sed that does not truncate output... (cached) /bin/sed | |
checking for fgrep... /bin/grep -F | |
checking for ld used by gcc... /usr/bin/ld | |
checking if the linker (/usr/bin/ld) is GNU ld... yes | |
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B | |
checking the name lister (/usr/bin/nm -B) interface... BSD nm | |
checking the maximum length of command line arguments... 1966080 | |
checking whether the shell understands some XSI constructs... yes | |
checking whether the shell understands "+="... yes | |
checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop | |
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop | |
checking for /usr/bin/ld option to reload object files... -r | |
checking for objdump... objdump | |
checking how to recognize dependent libraries... pass_all | |
checking for dlltool... dlltool | |
checking how to associate runtime and link libraries... printf %s\n | |
checking for archiver @FILE support... @ | |
checking for strip... strip | |
checking for ranlib... (cached) ranlib | |
checking command to parse /usr/bin/nm -B output from gcc object... ok | |
checking for sysroot... no | |
checking for mt... no | |
checking if : is a manifest tool... no | |
checking for dlfcn.h... yes | |
checking for objdir... .libs | |
checking if gcc supports -fno-rtti -fno-exceptions... no | |
checking for gcc option to produce PIC... -fPIC -DPIC | |
checking if gcc PIC flag -fPIC -DPIC works... yes | |
checking if gcc static flag -static works... no | |
checking if gcc supports -c -o file.o... rm: cannot remove `conftest*': No such file or directory | |
yes | |
checking if gcc supports -c -o file.o... (cached) yes | |
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes | |
checking whether -lc should be explicitly linked in... rm: cannot remove `conftest*': No such file or directory | |
no | |
checking dynamic linker characteristics... GNU/Linux ld.so | |
checking how to hardcode library paths into programs... immediate | |
checking whether stripping libraries is possible... yes | |
checking if libtool supports shared libraries... yes | |
checking whether to build shared libraries... yes | |
checking whether to build static libraries... yes | |
grep: /root/sources/httpd-2.4.12/srclib/apr/libtool: No such file or directory | |
Check for compiler flags... | |
checking whether the compiler provides atomic builtins... yes | |
checking whether to enable -D_LARGEFILE64_SOURCE... no | |
configure: Configured for Linux 2.6 | |
Checking for libraries... | |
checking for library containing gethostbyname... none required | |
checking for library containing gethostname... none required | |
checking for library containing socket... none required | |
checking for library containing crypt... -lcrypt | |
checking for main in -ltruerand... no | |
checking for library containing modf... none required | |
Checking for Threads... | |
checking pthread.h usability... yes | |
checking pthread.h presence... yes | |
checking for pthread.h... yes | |
checking for CFLAGS needed for pthreads... -pthread | |
adding "-pthread" to CFLAGS | |
checking for LIBS needed for pthreads... -lpthread | |
adding "-lpthread" to LIBS | |
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 recursive mutex support... yes | |
checking for pthread_key_delete... yes | |
checking for pthread_rwlock_init... yes | |
checking for pthread_attr_setguardsize... yes | |
checking for pthread_yield... yes | |
checking for pthread_rwlock_t... yes | |
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 getservbyname in -lc_r... no | |
checking for gethostbyname_r... yes | |
checking for gethostbyaddr_r... yes | |
checking for getservbyname_r... yes | |
checking for sigsuspend... yes | |
checking for sigwait... yes | |
checking for poll... yes | |
checking for kqueue... no | |
checking for port_create... no | |
checking for epoll support... yes | |
checking for epoll_create1 support... yes | |
checking for dup3 support... yes | |
checking for accept4 support... yes | |
checking for SOCK_CLOEXEC support... yes | |
checking for fdatasync... yes | |
checking for epoll_create1 support... (cached) yes | |
checking for asio -> message queue support... no | |
checking for dup3 support... (cached) yes | |
checking for accept4 support... (cached) yes | |
checking for SOCK_CLOEXEC support... (cached) 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 for library containing shm_open... -lrt | |
checking for sys/types.h... (cached) yes | |
checking sys/mman.h usability... yes | |
checking sys/mman.h presence... yes | |
checking for sys/mman.h... yes | |
checking sys/ipc.h usability... yes | |
checking sys/ipc.h presence... yes | |
checking for sys/ipc.h... yes | |
checking sys/mutex.h usability... no | |
checking sys/mutex.h presence... no | |
checking for sys/mutex.h... no | |
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 kernel/OS.h usability... no | |
checking kernel/OS.h presence... no | |
checking for kernel/OS.h... no | |
checking os2.h usability... no | |
checking os2.h presence... no | |
checking for os2.h... no | |
checking windows.h usability... no | |
checking windows.h presence... no | |
checking for windows.h... no | |
checking for mmap... yes | |
checking for munmap... yes | |
checking for shm_open... yes | |
checking for shm_unlink... yes | |
checking for shmget... yes | |
checking for shmat... yes | |
checking for shmdt... yes | |
checking for shmctl... yes | |
checking for create_area... no | |
checking for MAP_ANON in sys/mman.h... yes | |
checking for /dev/zero... yes | |
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 size_t... yes | |
checking for working alloca.h... yes | |
checking for alloca... yes | |
checking for calloc... yes | |
checking for setsid... yes | |
checking for isinf... yes | |
checking for isnan... yes | |
checking for getenv... yes | |
checking for putenv... yes | |
checking for setenv... yes | |
checking for unsetenv... yes | |
checking for writev... yes | |
checking for getifaddrs... yes | |
checking for utime... yes | |
checking for utimes... yes | |
checking for setrlimit... yes | |
checking for getrlimit... 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 whether sys_siglist is declared... yes | |
checking for fork... yes | |
checking for inet_addr... yes | |
checking for inet_network... yes | |
checking for _getch... no | |
checking for strerror_r... yes | |
checking for type of return code from strerror_r... pointer | |
checking for mmap... (cached) yes | |
checking for memmove... yes | |
checking for getpass... yes | |
checking for getpassphrase... no | |
checking for gmtime_r... yes | |
checking for localtime_r... yes | |
checking for mkstemp... yes | |
checking whether sigwait takes one argument... no | |
checking for ANSI C header files... (cached) 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 for dlfcn.h... (cached) 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 for windows.h... (cached) no | |
checking winsock2.h usability... no | |
checking winsock2.h presence... no | |
checking for winsock2.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 netinet/sctp.h usability... no | |
checking netinet/sctp.h presence... no | |
checking for netinet/sctp.h... no | |
checking netinet/sctp_uio.h usability... no | |
checking netinet/sctp_uio.h presence... no | |
checking for netinet/sctp_uio.h... no | |
checking for sys/file.h... (cached) yes | |
checking sys/ioctl.h usability... yes | |
checking sys/ioctl.h presence... yes | |
checking for sys/ioctl.h... yes | |
checking for sys/mman.h... (cached) yes | |
checking sys/param.h usability... yes | |
checking sys/param.h presence... yes | |
checking for sys/param.h... 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 sys/sockio.h usability... no | |
checking sys/sockio.h presence... no | |
checking for sys/sockio.h... no | |
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... (cached) yes | |
checking for uid_t in sys/types.h... yes | |
checking for ssize_t... yes | |
checking for inline... inline | |
checking for an ANSI C-conforming const... yes | |
checking whether setpgrp takes no argument... yes | |
checking for socklen_t... yes | |
checking size of void*... 8 | |
checking size of char... 1 | |
checking size of int... 4 | |
checking size of long... 8 | |
checking size of short... 2 | |
checking size of long long... 8 | |
checking for INT64_C... yes | |
checking size of pid_t... 4 | |
checking whether ssize_t and int are the same... no | |
checking whether ssize_t and long are the same... yes | |
checking whether size_t and unsigned int are the same... no | |
checking whether size_t and unsigned long are the same... yes | |
checking size of ssize_t... 8 | |
checking which format to use for apr_ssize_t... %ld | |
checking size of size_t... 8 | |
checking which format to use for apr_size_t... %lu | |
checking size of off_t... 8 | |
checking which type to use for apr_off_t... off_t | |
checking size of ino_t... 8 | |
configure: using ino_t for ino_t | |
checking whether byte ordering is bigendian... no | |
checking size of struct iovec... 16 | |
checking for strnicmp... no | |
checking for strncasecmp... yes | |
checking for stricmp... no | |
checking for strcasecmp... yes | |
checking for strdup... yes | |
checking for strstr... yes | |
checking for memchr... yes | |
checking for strtol... yes | |
Checking for DSO... | |
checking for dlopen... yes | |
checking for dlsym... yes | |
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 OS.h usability... no | |
checking OS.h presence... no | |
checking for OS.h... no | |
checking for library containing sem_open... none required | |
checking for sem_close... yes | |
checking for sem_unlink... yes | |
checking for sem_post... yes | |
checking for sem_wait... yes | |
checking for create_sem... no | |
checking for working sem_open... yes | |
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 | |
checking for working PROCESS_SHARED locks... yes | |
checking for robust cross-process mutex support... yes | |
decision on apr_lock implementation method... SysV IPC semget() | |
checking if fcntl returns EACCES when F_SETLK is already held... no | |
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/urandom | |
Checking for File Info Support... | |
checking for struct stat.st_blocks... yes | |
checking for struct stat.st_atimensec... no | |
checking for struct stat.st_ctimensec... no | |
checking for struct stat.st_mtimensec... no | |
checking for struct stat.st_atim.tv_nsec... yes | |
checking for struct stat.st_ctim.tv_nsec... yes | |
checking for struct stat.st_mtim.tv_nsec... yes | |
checking for struct stat.st_atime_n... no | |
checking for struct stat.st_ctime_n... no | |
checking for struct stat.st_mtime_n... no | |
checking for inode member of struct dirent... d_fileno | |
checking for file type member of struct dirent... d_type | |
Checking for OS UUID Support... | |
checking uuid.h usability... no | |
checking uuid.h presence... no | |
checking for uuid.h... no | |
checking uuid/uuid.h usability... no | |
checking uuid/uuid.h presence... no | |
checking for uuid/uuid.h... no | |
checking sys/uuid.h usability... no | |
checking sys/uuid.h presence... no | |
checking for sys/uuid.h... no | |
checking for library containing uuid_create... no | |
checking for library containing uuid_generate... no | |
checking for uuid_create... no | |
checking for uuid_generate... no | |
checking for os uuid usability... no | |
Checking for Time Support... | |
checking for struct tm.tm_gmtoff... yes | |
checking for struct tm.__tm_gmtoff... no | |
Checking for Networking support... | |
checking for type in_addr... yes | |
checking if fd == socket on this platform... yes | |
checking style of gethostbyname_r routine... glibc2 | |
checking 3rd argument to the gethostbyname_r routines... char | |
checking style of getservbyname_r routine... glibc2 | |
checking if TCP_NODELAY setting is inherited from listening sockets... yes | |
checking if O_NONBLOCK setting is inherited from listening sockets... no | |
checking whether TCP_NODELAY and TCP_CORK can both be enabled... yes | |
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 whether SCTP is supported... no | |
checking for struct ip_mreq... yes | |
checking for set_h_errno... no | |
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 for sockaddr_storage... yes | |
checking for working AI_ADDRCONFIG... yes | |
checking if APR supports IPv6... yes | |
checking langinfo.h usability... yes | |
checking langinfo.h presence... yes | |
checking for langinfo.h... yes | |
checking for nl_langinfo... yes | |
setting have_unicode_fs to "0" | |
setting apr_has_xthread_files to "0" | |
setting apr_procattr_user_set_requires_password to "0" | |
setting apr_thread_func to "" | |
setting apr_has_user to "1" | |
Restore user-defined environment settings... | |
restoring CPPFLAGS to "" | |
setting EXTRA_CPPFLAGS to "-DLINUX -D_REENTRANT -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 "-lrt -lcrypt -lpthread" | |
restoring INCLUDES to "" | |
setting EXTRA_INCLUDES to "" | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating include/apr.h | |
config.status: creating build/apr_rules.mk | |
config.status: creating build/pkg/pkginfo | |
config.status: creating apr-1-config | |
config.status: creating apr.pc | |
config.status: creating test/Makefile | |
config.status: creating test/internal/Makefile | |
config.status: creating include/arch/unix/apr_private.h | |
config.status: executing libtool commands | |
rm: cannot remove `libtoolT': No such file or directory | |
config.status: executing default commands | |
srclib/apr configured properly | |
setting CC to "gcc" | |
setting CPP to "gcc -E" | |
setting CFLAGS to " -g -O2 -pthread" | |
setting CPPFLAGS to " -DLINUX -D_REENTRANT -D_GNU_SOURCE" | |
setting LDFLAGS to " " | |
configure: | |
configure: Configuring Apache Portable Runtime Utility library... | |
configure: | |
configuring package in srclib/apr-util now | |
checking build system type... x86_64-unknown-linux-gnu | |
checking host system type... x86_64-unknown-linux-gnu | |
checking target system type... x86_64-unknown-linux-gnu | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking for working mkdir -p... yes | |
APR-util Version: 1.5.4 | |
checking for chosen layout... apr-util | |
checking for gcc... gcc | |
checking whether the C compiler works... yes | |
checking for C compiler default output file name... a.out | |
checking for suffix of executables... | |
checking whether we are cross compiling... no | |
checking for suffix of object files... o | |
checking whether we are using the GNU C compiler... yes | |
checking whether gcc accepts -g... yes | |
checking for gcc option to accept ISO C89... none needed | |
Applying apr-util hints file rules for x86_64-unknown-linux-gnu | |
checking for APR... yes | |
setting CPP to "gcc -E" | |
adding "-pthread" to CFLAGS | |
setting CPPFLAGS to " -DLINUX -D_REENTRANT -D_GNU_SOURCE" | |
checking how to run the C preprocessor... gcc -E | |
checking for grep that handles long lines and -e... /bin/grep | |
checking for egrep... /bin/grep -E | |
checking for ANSI C header files... yes | |
checking for sys/types.h... yes | |
checking for sys/stat.h... yes | |
checking for stdlib.h... yes | |
checking for string.h... yes | |
checking for memory.h... yes | |
checking for strings.h... yes | |
checking for inttypes.h... yes | |
checking for stdint.h... yes | |
checking for unistd.h... yes | |
checking for ldap support... | |
checking for default DBM... sdbm (default) | |
checking for pg_config... no | |
checking libpq-fe.h usability... no | |
checking libpq-fe.h presence... no | |
checking for libpq-fe.h... no | |
checking postgresql/libpq-fe.h usability... no | |
checking postgresql/libpq-fe.h presence... no | |
checking for postgresql/libpq-fe.h... no | |
checking sqlite3.h usability... yes | |
checking sqlite3.h presence... yes | |
checking for sqlite3.h... yes | |
checking for sqlite3_open in -lsqlite3... yes | |
setting LDADD_dbd_sqlite3 to " -lsqlite3" | |
checking sqlite.h usability... no | |
checking sqlite.h presence... no | |
checking for sqlite.h... no | |
checking sybdb.h usability... no | |
checking sybdb.h presence... no | |
checking for sybdb.h... no | |
checking freetds/sybdb.h usability... no | |
checking freetds/sybdb.h presence... no | |
checking for freetds/sybdb.h... no | |
checking for odbc_config... no | |
checking sql.h usability... no | |
checking sql.h presence... no | |
checking for sql.h... no | |
checking odbc/sql.h usability... no | |
checking odbc/sql.h presence... no | |
checking for odbc/sql.h... no | |
checking Expat 1.95.x... no | |
checking old Debian-packaged expat... no | |
checking old FreeBSD-packaged expat... no | |
checking Expat 1.0/1.1... no | |
setting LDFLAGS to "-L/usr/local/lib" | |
adding "-I/usr/local/include" to CPPFLAGS | |
checking Expat 1.95.x in /usr/local... no | |
nulling LDFLAGS | |
removed "-I/usr/local/include" from CPPFLAGS | |
configuring package in xml/expat now | |
checking build system type... x86_64-unknown-linux-gnu | |
checking host system type... x86_64-unknown-linux-gnu | |
checking target system type... x86_64-unknown-linux-gnu | |
checking how to print strings... printf | |
checking for gcc... gcc | |
checking whether the C compiler works... yes | |
checking for C compiler default output file name... a.out | |
checking for suffix of executables... | |
checking whether we are cross compiling... no | |
checking for suffix of object files... o | |
checking whether we are using the GNU C compiler... yes | |
checking whether gcc accepts -g... yes | |
checking for gcc option to accept ISO C89... none needed | |
checking for a sed that does not truncate output... /bin/sed | |
checking for grep that handles long lines and -e... /bin/grep | |
checking for egrep... /bin/grep -E | |
checking for fgrep... /bin/grep -F | |
checking for ld used by gcc... /usr/bin/ld | |
checking if the linker (/usr/bin/ld) is GNU ld... yes | |
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B | |
checking the name lister (/usr/bin/nm -B) interface... BSD nm | |
checking whether ln -s works... yes | |
checking the maximum length of command line arguments... 1966080 | |
checking whether the shell understands some XSI constructs... yes | |
checking whether the shell understands "+="... yes | |
checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop | |
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop | |
checking for /usr/bin/ld option to reload object files... -r | |
checking for objdump... objdump | |
checking how to recognize dependent libraries... pass_all | |
checking for dlltool... dlltool | |
checking how to associate runtime and link libraries... printf %s\n | |
checking for ar... ar | |
checking for archiver @FILE support... @ | |
checking for strip... strip | |
checking for ranlib... ranlib | |
checking for gawk... gawk | |
checking command to parse /usr/bin/nm -B output from gcc object... ok | |
checking for sysroot... no | |
checking for mt... no | |
checking if : is a manifest tool... no | |
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 dlfcn.h... yes | |
checking for objdir... .libs | |
checking if gcc supports -fno-rtti -fno-exceptions... no | |
checking for gcc option to produce PIC... -fPIC -DPIC | |
checking if gcc PIC flag -fPIC -DPIC works... yes | |
checking if gcc static flag -static works... no | |
checking if gcc supports -c -o file.o... yes | |
checking if gcc supports -c -o file.o... (cached) yes | |
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes | |
checking whether -lc should be explicitly linked in... no | |
checking dynamic linker characteristics... GNU/Linux ld.so | |
checking how to hardcode library paths into programs... immediate | |
checking whether stripping libraries is possible... yes | |
checking if libtool supports shared libraries... yes | |
checking whether to build shared libraries... yes | |
checking whether to build static libraries... yes | |
checking for gcc... (cached) gcc | |
checking whether we are using the GNU C compiler... (cached) yes | |
checking whether gcc accepts -g... (cached) yes | |
checking for gcc option to accept ISO C89... (cached) none needed | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking for ANSI C header files... (cached) yes | |
checking whether byte ordering is bigendian... no | |
checking for an ANSI C-conforming const... yes | |
checking for size_t... yes | |
checking for memmove... yes | |
checking for bcopy... yes | |
checking check.h usability... no | |
checking check.h presence... no | |
checking for check.h... no | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating expat_config.h | |
config.status: executing libtool commands | |
xml/expat configured properly | |
setting APRUTIL_INCLUDES to "-I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib" | |
setting LDFLAGS to "-L/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib" | |
setting APRUTIL_EXPORT_LIBS to "/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/libexpat.la" | |
setting APRUTIL_LIBS to "/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/libexpat.la" | |
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 | |
checking whether APR has DSO support... yes | |
checking for library containing crypt... -lcrypt | |
checking if system crypt() function is threadsafe... no | |
checking for crypt_r... yes | |
checking style of crypt_r... struct_crypt_data | |
adding "/root/sources/httpd-2.4.12/srclib/apr/libapr-1.la" to APRUTIL_LIBS | |
adding "-lrt" to APRUTIL_LIBS | |
adding "-lcrypt" to APRUTIL_LIBS | |
adding "-lpthread" to APRUTIL_LIBS | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating export_vars.sh | |
config.status: creating build/pkg/pkginfo | |
config.status: creating apr-util.pc | |
config.status: creating apu-1-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 include/apu_want.h | |
config.status: creating test/Makefile | |
config.status: creating include/private/apu_config.h | |
config.status: executing default commands | |
srclib/apr-util configured properly | |
checking for gcc... gcc | |
checking whether the C compiler works... yes | |
checking for C compiler default output file name... a.out | |
checking for suffix of executables... | |
checking whether we are cross compiling... no | |
checking for suffix of object files... o | |
checking whether we are using the GNU C compiler... yes | |
checking whether gcc accepts -g... yes | |
checking for gcc option to accept ISO C89... none needed | |
checking how to run the C preprocessor... gcc -E | |
checking for gcc option to accept ISO C99... -std=gnu99 | |
checking for pcre-config... /usr/bin/pcre-config | |
configure: Using external PCRE library from /usr/bin/pcre-config | |
setting PCRE_INCLUDES to "" | |
setting PCRE_LIBS to "-lpcre" | |
configure: | |
configure: Configuring Apache httpd... | |
configure: | |
setting INCLUDES to "-I." | |
adding "-I$(top_srcdir)/os/$(OS_DIR)" to INCLUDES | |
adding "-I$(top_srcdir)/include" to INCLUDES | |
adding "-I/root/sources/httpd-2.4.12/srclib/apr/include" to INCLUDES | |
adding "-I/root/sources/httpd-2.4.12/srclib/apr-util/include" to INCLUDES | |
adding "-I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib" to INCLUDES | |
configure: | |
configure: Applying OS-specific hints for httpd... | |
configure: | |
forcing SINGLE_LISTEN_UNSERIALIZED_ACCEPT to "1" | |
forcing AP_NONBLOCK_WHEN_MULTI_LISTEN to "1" | |
checking for rm... /bin/rm | |
checking for pkg-config... /usr/bin/pkg-config | |
checking for rsync... /usr/bin/rsync | |
checking for gawk... gawk | |
checking whether ln -s works... yes | |
checking for ranlib... ranlib | |
checking for lynx... no | |
checking for links... no | |
checking for elinks... no | |
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 it is safe to define __EXTENSIONS__... yes | |
checking for library containing strerror... none required | |
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/prctl.h usability... yes | |
checking sys/prctl.h presence... yes | |
checking for sys/prctl.h... 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 sys/sdt.h usability... no | |
checking sys/sdt.h presence... no | |
checking for sys/sdt.h... no | |
checking sys/loadavg.h usability... no | |
checking sys/loadavg.h presence... no | |
checking for sys/loadavg.h... no | |
checking for sys/wait.h that is POSIX.1 compatible... yes | |
checking for an ANSI C-conforming const... yes | |
checking for library containing sqrt... -lm | |
checking for library containing crypt... -lcrypt | |
checking for getpwnam... yes | |
checking for getgrnam... yes | |
checking for initgroups... yes | |
checking for bindprocessor... no | |
checking for prctl... yes | |
checking for timegm... yes | |
checking for getpgid... yes | |
checking for fopen64... yes | |
checking for getloadavg... yes | |
checking for void pointer length... no | |
checking for gettid()... yes | |
checking for tm_gmtoff in struct tm... yes | |
checking whether to enable mod_authn_file... shared | |
checking whether to enable mod_authn_dbm... shared (most) | |
checking whether to enable mod_authn_anon... shared (most) | |
checking whether to enable mod_authn_dbd... shared (most) | |
checking whether to enable mod_authn_socache... shared (most) | |
checking whether to enable mod_authn_core... shared | |
checking whether to enable mod_authz_host... shared | |
checking whether to enable mod_authz_groupfile... shared | |
checking whether to enable mod_authz_user... shared | |
checking whether to enable mod_authz_dbm... shared (most) | |
checking whether to enable mod_authz_owner... shared (most) | |
checking whether to enable mod_authz_dbd... shared (most) | |
checking whether to enable mod_authz_core... shared | |
checking whether to enable mod_authnz_ldap... checking dependencies | |
checking for ldap support in apr/apr-util... no | |
configure: WARNING: apr/apr-util is compiled without ldap support | |
checking whether to enable mod_authnz_ldap... no (disabled) | |
checking whether to enable mod_authnz_fcgi... no | |
checking whether to enable mod_access_compat... shared | |
checking whether to enable mod_auth_basic... shared | |
checking whether to enable mod_auth_form... shared (most) | |
checking whether to enable mod_auth_digest... checking dependencies | |
checking whether to enable mod_auth_digest... shared (most) | |
checking whether to enable mod_allowmethods... shared (most) | |
adding "-I$(top_srcdir)/modules/aaa" to INCLUDES | |
checking whether to enable mod_isapi... no | |
checking whether to enable mod_file_cache... shared (most) | |
checking whether to enable mod_cache... shared (most) | |
checking whether to enable mod_cache_disk... checking dependencies | |
checking whether to enable mod_cache_disk... shared (most) | |
checking whether to enable mod_cache_socache... shared (most) | |
checking whether to enable mod_socache_shmcb... shared (most) | |
checking whether to enable mod_socache_dbm... shared (most) | |
checking whether to enable mod_socache_memcache... shared (most) | |
checking whether to enable mod_socache_dc... no | |
adding "-I$(top_srcdir)/modules/cache" to INCLUDES | |
setting HTTPD_LDFLAGS to "-export-dynamic" | |
checking whether to enable mod_so... static | |
setting AP_LIBS to "$(MOD_SO_LDADD)" | |
checking whether to enable mod_watchdog... no | |
checking whether to enable mod_macro... shared (most) | |
adding "-I$(top_srcdir)/modules/core" to INCLUDES | |
checking whether to enable mod_dbd... shared (most) | |
adding "-I$(top_srcdir)/modules/database" to INCLUDES | |
checking whether to enable mod_bucketeer... no | |
checking whether to enable mod_dumpio... shared (most) | |
checking whether to enable mod_echo... no | |
checking whether to enable mod_example_hooks... no | |
checking whether to enable mod_case_filter... no | |
checking whether to enable mod_case_filter_in... no | |
checking whether to enable mod_example_ipc... no | |
checking whether to enable mod_buffer... shared (most) | |
checking whether to enable mod_data... no | |
checking whether to enable mod_ratelimit... shared (most) | |
checking whether to enable mod_reqtimeout... shared | |
checking whether to enable mod_ext_filter... shared (most) | |
checking whether to enable mod_request... shared (most) | |
checking whether to enable mod_include... shared (most) | |
checking whether to enable mod_filter... shared | |
checking whether to enable mod_reflector... no | |
checking whether to enable mod_substitute... shared (most) | |
checking whether to enable mod_sed... checking dependencies | |
setting MOD_SED_LDADD to "-export-symbols-regex sed_module" | |
checking whether to enable mod_sed... shared (most) | |
checking whether to enable mod_charset_lite... no | |
checking whether to enable mod_deflate... checking dependencies | |
checking for zlib location... /usr | |
setting LIBS to "-lz" | |
checking for zlib library... found | |
setting MOD_DEFLATE_LDADD to " -lz" | |
nulling LIBS | |
checking whether to enable mod_deflate... shared (most) | |
checking whether to enable mod_xml2enc... no | |
checking whether to enable mod_proxy_html... no | |
adding "-I$(top_srcdir)/modules/filters" to INCLUDES | |
checking whether to enable mod_http... static | |
adding "$(MOD_HTTP_LDADD)" to AP_LIBS | |
checking whether to enable mod_mime... shared | |
checking whether to enable mod_ldap... checking dependencies | |
checking for ldap support in apr/apr-util... (cached) no | |
configure: WARNING: apr/apr-util is compiled without ldap support | |
checking whether to enable mod_ldap... no (disabled) | |
adding "-I$(top_srcdir)/modules/ldap" to INCLUDES | |
checking whether to enable mod_log_config... shared | |
checking whether to enable mod_log_debug... shared (most) | |
checking whether to enable mod_log_forensic... no | |
checking whether to enable mod_logio... shared (most) | |
adding "-I$(top_srcdir)/modules/loggers" to INCLUDES | |
checking whether to enable mod_lua... no | |
adding "-I$(top_srcdir)/modules/lua" to INCLUDES | |
checking whether to enable mod_env... shared | |
checking whether to enable mod_mime_magic... no | |
checking whether to enable mod_cern_meta... no | |
checking whether to enable mod_expires... shared (most) | |
checking whether to enable mod_headers... shared | |
checking whether to enable mod_ident... no | |
checking whether to enable mod_usertrack... no | |
checking whether to enable mod_unique_id... shared (most) | |
checking whether to enable mod_setenvif... shared | |
checking whether to enable mod_version... shared | |
checking whether to enable mod_remoteip... shared (most) | |
checking whether to enable mod_proxy... shared (most) | |
checking whether to enable mod_proxy_connect... checking dependencies | |
checking whether to enable mod_proxy_connect... shared (most) | |
checking whether to enable mod_proxy_ftp... checking dependencies | |
checking whether to enable mod_proxy_ftp... shared (most) | |
checking whether to enable mod_proxy_http... checking dependencies | |
checking whether to enable mod_proxy_http... shared (most) | |
checking whether to enable mod_proxy_fcgi... checking dependencies | |
checking whether to enable mod_proxy_fcgi... shared (most) | |
checking whether to enable mod_proxy_scgi... checking dependencies | |
checking whether to enable mod_proxy_scgi... shared (most) | |
checking whether to enable mod_proxy_fdpass... no | |
checking whether to enable mod_proxy_wstunnel... checking dependencies | |
checking whether to enable mod_proxy_wstunnel... shared (most) | |
checking whether to enable mod_proxy_ajp... checking dependencies | |
checking whether to enable mod_proxy_ajp... shared (most) | |
checking whether to enable mod_proxy_balancer... checking dependencies | |
checking whether to enable mod_proxy_balancer... shared (most) | |
checking whether to enable mod_proxy_express... checking dependencies | |
checking whether to enable mod_proxy_express... shared (most) | |
adding "-I$(top_srcdir)/modules/proxy" to INCLUDES | |
checking whether to enable mod_session... shared (most) | |
checking whether to enable mod_session_cookie... checking dependencies | |
checking whether to enable mod_session_cookie... shared (most) | |
configure: WARNING: Your APR does not include SSL/EVP support. To enable it: configure --with-crypto | |
checking whether to enable mod_session_crypto... no | |
checking whether to enable mod_session_dbd... checking dependencies | |
checking whether to enable mod_session_dbd... shared (most) | |
adding "-I$(top_srcdir)/modules/session" to INCLUDES | |
checking whether to enable mod_slotmem_shm... shared (most) | |
checking whether to enable mod_slotmem_plain... no | |
checking whether to enable mod_ssl... checking dependencies | |
checking for OpenSSL... checking for user-provided OpenSSL base directory... none | |
setting MOD_CFLAGS to " " | |
setting ab_CFLAGS to " " | |
setting MOD_LDFLAGS to " " | |
checking for OpenSSL version >= 0.9.8a... OK | |
adding "-lssl" to MOD_LDFLAGS | |
adding "-lcrypto" to MOD_LDFLAGS | |
adding "-lrt" to MOD_LDFLAGS | |
adding "-lcrypt" to MOD_LDFLAGS | |
adding "-lpthread" to MOD_LDFLAGS | |
setting LIBS to "-lssl -lcrypto -lrt -lcrypt -lpthread" | |
forcing ab_LDFLAGS to " -lssl -lcrypto -lrt -lcrypt -lpthread" | |
checking openssl/engine.h usability... yes | |
checking openssl/engine.h presence... yes | |
checking for openssl/engine.h... yes | |
checking for SSLeay_version... yes | |
checking for SSL_CTX_new... yes | |
checking for ENGINE_init... yes | |
checking for ENGINE_load_builtin_engines... yes | |
yes | |
setting MOD_SSL_LDADD to "-export-symbols-regex ssl_module" | |
checking whether to enable mod_ssl... shared | |
adding "-I$(top_srcdir)/modules/ssl" to INCLUDES | |
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_dialup... no | |
adding "-I$(top_srcdir)/modules/test" to INCLUDES | |
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 | |
adding "-I$(top_srcdir)/server" to INCLUDES | |
checking whether APR supports thread-safe pollsets... checking for kqueue... no | |
checking for port_create... no | |
checking for epoll_create... yes | |
yes | |
checking if event MPM supports this platform... yes | |
checking if mpmt_os2 MPM supports this platform... no | |
checking if prefork MPM supports this platform... yes | |
checking if WinNT MPM supports this platform... no | |
checking if worker MPM supports this platform... yes | |
checking whether to enable mod_lbmethod_byrequests... shared (most) | |
checking whether to enable mod_lbmethod_bytraffic... shared (most) | |
checking whether to enable mod_lbmethod_bybusyness... shared (most) | |
checking whether to enable mod_lbmethod_heartbeat... shared (most) | |
checking which MPM to use by default... event | |
adding "$(MOD_MPM_EVENT_LDADD)" to AP_LIBS | |
checking for pthread_kill... yes | |
checking whether to enable mod_unixd... shared | |
checking whether to enable mod_privileges... no | |
adding "-I$(top_srcdir)/modules/arch/unix" to INCLUDES | |
checking whether to enable mod_heartbeat... no | |
checking whether to enable mod_heartmonitor... no | |
checking whether to enable mod_dav... shared (most) | |
adding "-I$(top_srcdir)/modules/dav/main" to INCLUDES | |
checking whether to enable mod_status... shared | |
checking whether to enable mod_autoindex... shared | |
checking whether to enable mod_asis... no | |
checking whether to enable mod_info... shared (most) | |
checking whether to enable mod_suexec... no | |
checking whether to enable mod_cgid... checking dependencies | |
checking whether to enable mod_cgid... shared (most) | |
checking whether to enable mod_cgi... no | |
adding "-I$(top_srcdir)/modules/generators" to INCLUDES | |
checking whether to enable mod_dav_fs... checking dependencies | |
checking whether to enable mod_dav_fs... shared (most) | |
checking whether to enable mod_dav_lock... no | |
checking for extra modules... none | |
checking whether to enable mod_vhost_alias... shared (most) | |
checking whether to enable mod_negotiation... shared (most) | |
checking whether to enable mod_dir... shared | |
checking whether to enable mod_imagemap... no | |
checking whether to enable mod_actions... shared (most) | |
checking whether to enable mod_speling... shared (most) | |
checking whether to enable mod_userdir... shared (most) | |
checking whether to enable mod_alias... shared | |
checking whether to enable mod_rewrite... shared (most) | |
adding "-I$(top_srcdir)/modules/mappers" to INCLUDES | |
configure: | |
configure: Restore user-defined environment settings... | |
configure: | |
restoring CPPFLAGS to "" | |
setting EXTRA_CPPFLAGS to " -DLINUX -D_REENTRANT -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. -I$(top_srcdir)/os/$(OS_DIR) -I$(top_srcdir)/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I$(top_srcdir)/modules/aaa -I$(top_srcdir)/modules/cache -I$(top_srcdir)/modules/core -I$(top_srcdir)/modules/database -I$(top_srcdir)/modules/filters -I$(top_srcdir)/modules/ldap -I$(top_srcdir)/modules/loggers -I$(top_srcdir)/modules/lua -I$(top_srcdir)/modules/proxy -I$(top_srcdir)/modules/session -I$(top_srcdir)/modules/ssl -I$(top_srcdir)/modules/test -I$(top_srcdir)/server -I$(top_srcdir)/modules/arch/unix -I$(top_srcdir)/modules/dav/main -I$(top_srcdir)/modules/generators -I$(top_srcdir)/modules/mappers" | |
configure: | |
configure: Construct makefiles and header files... | |
configure: | |
configure: creating config_vars.mk | |
configure: creating ./config.status | |
creating modules/aaa/Makefile | |
creating modules/arch/win32/Makefile | |
creating modules/cache/Makefile | |
creating modules/core/Makefile | |
creating modules/database/Makefile | |
creating modules/debugging/Makefile | |
creating modules/echo/Makefile | |
creating modules/examples/Makefile | |
creating modules/experimental/Makefile | |
creating modules/filters/Makefile | |
creating modules/http/Makefile | |
creating modules/ldap/Makefile | |
creating modules/loggers/Makefile | |
creating modules/lua/Makefile | |
creating modules/metadata/Makefile | |
creating modules/proxy/Makefile | |
creating modules/session/Makefile | |
creating modules/slotmem/Makefile | |
creating modules/ssl/Makefile | |
creating modules/test/Makefile | |
creating os/unix/Makefile | |
creating modules/proxy/balancers/Makefile | |
creating server/mpm/Makefile | |
creating server/mpm/event/Makefile | |
creating modules/arch/unix/Makefile | |
creating modules/cluster/Makefile | |
creating modules/dav/main/Makefile | |
creating modules/generators/Makefile | |
creating modules/dav/fs/Makefile | |
creating modules/dav/lock/Makefile | |
creating modules/mappers/Makefile | |
creating Makefile | |
creating modules/Makefile | |
creating srclib/Makefile | |
creating os/Makefile | |
creating server/Makefile | |
creating support/Makefile | |
creating test/Makefile | |
config.status: creating docs/conf/httpd.conf | |
config.status: creating docs/conf/extra/httpd-autoindex.conf | |
config.status: creating docs/conf/extra/httpd-dav.conf | |
config.status: creating docs/conf/extra/httpd-default.conf | |
config.status: creating docs/conf/extra/httpd-info.conf | |
config.status: creating docs/conf/extra/httpd-languages.conf | |
config.status: creating docs/conf/extra/httpd-manual.conf | |
config.status: creating docs/conf/extra/httpd-mpm.conf | |
config.status: creating docs/conf/extra/httpd-multilang-errordoc.conf | |
config.status: creating docs/conf/extra/httpd-ssl.conf | |
config.status: creating docs/conf/extra/httpd-userdir.conf | |
config.status: creating docs/conf/extra/httpd-vhosts.conf | |
config.status: creating docs/conf/extra/proxy-html.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 build/pkg/pkginfo | |
config.status: creating build/config_vars.sh | |
config.status: creating include/ap_config_auto.h | |
config.status: executing default commands | |
Making all in srclib | |
make[1]: Entering directory `/root/sources/httpd-2.4.12/srclib' | |
Making all in apr | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/srclib/apr' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/srclib/apr' | |
/root/sources/httpd-2.4.12/srclib/apr/build/mkdir.sh tools | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o tools/gen_test_char.lo -c tools/gen_test_char.c && touch tools/gen_test_char.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -no-install -o tools/gen_test_char tools/gen_test_char.lo -lrt -lcrypt -lpthread | |
/root/sources/httpd-2.4.12/srclib/apr/build/mkdir.sh include/private | |
tools/gen_test_char > include/private/apr_escape_test_char.h | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o encoding/apr_escape.lo -c encoding/apr_escape.c && touch encoding/apr_escape.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o passwd/apr_getpass.lo -c passwd/apr_getpass.c && touch passwd/apr_getpass.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o strings/apr_cpystrn.lo -c strings/apr_cpystrn.c && touch strings/apr_cpystrn.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o strings/apr_fnmatch.lo -c strings/apr_fnmatch.c && touch strings/apr_fnmatch.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o strings/apr_snprintf.lo -c strings/apr_snprintf.c && touch strings/apr_snprintf.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o strings/apr_strings.lo -c strings/apr_strings.c && touch strings/apr_strings.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o strings/apr_strnatcmp.lo -c strings/apr_strnatcmp.c && touch strings/apr_strnatcmp.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o strings/apr_strtok.lo -c strings/apr_strtok.c && touch strings/apr_strtok.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o tables/apr_hash.lo -c tables/apr_hash.c && touch tables/apr_hash.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o tables/apr_skiplist.lo -c tables/apr_skiplist.c && touch tables/apr_skiplist.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o tables/apr_tables.lo -c tables/apr_tables.c && touch tables/apr_tables.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o atomic/unix/builtins.lo -c atomic/unix/builtins.c && touch atomic/unix/builtins.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o atomic/unix/ia32.lo -c atomic/unix/ia32.c && touch atomic/unix/ia32.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o atomic/unix/mutex.lo -c atomic/unix/mutex.c && touch atomic/unix/mutex.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o atomic/unix/ppc.lo -c atomic/unix/ppc.c && touch atomic/unix/ppc.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o atomic/unix/s390.lo -c atomic/unix/s390.c && touch atomic/unix/s390.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o atomic/unix/solaris.lo -c atomic/unix/solaris.c && touch atomic/unix/solaris.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o dso/unix/dso.lo -c dso/unix/dso.c && touch dso/unix/dso.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o file_io/unix/buffer.lo -c file_io/unix/buffer.c && touch file_io/unix/buffer.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o file_io/unix/copy.lo -c file_io/unix/copy.c && touch file_io/unix/copy.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o file_io/unix/dir.lo -c file_io/unix/dir.c && touch file_io/unix/dir.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o file_io/unix/fileacc.lo -c file_io/unix/fileacc.c && touch file_io/unix/fileacc.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o file_io/unix/filedup.lo -c file_io/unix/filedup.c && touch file_io/unix/filedup.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o file_io/unix/filepath.lo -c file_io/unix/filepath.c && touch file_io/unix/filepath.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o file_io/unix/filepath_util.lo -c file_io/unix/filepath_util.c && touch file_io/unix/filepath_util.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o file_io/unix/filestat.lo -c file_io/unix/filestat.c && touch file_io/unix/filestat.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o file_io/unix/flock.lo -c file_io/unix/flock.c && touch file_io/unix/flock.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o file_io/unix/fullrw.lo -c file_io/unix/fullrw.c && touch file_io/unix/fullrw.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o file_io/unix/mktemp.lo -c file_io/unix/mktemp.c && touch file_io/unix/mktemp.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o file_io/unix/open.lo -c file_io/unix/open.c && touch file_io/unix/open.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o file_io/unix/pipe.lo -c file_io/unix/pipe.c && touch file_io/unix/pipe.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o file_io/unix/readwrite.lo -c file_io/unix/readwrite.c && touch file_io/unix/readwrite.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o file_io/unix/seek.lo -c file_io/unix/seek.c && touch file_io/unix/seek.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o file_io/unix/tempdir.lo -c file_io/unix/tempdir.c && touch file_io/unix/tempdir.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o locks/unix/global_mutex.lo -c locks/unix/global_mutex.c && touch locks/unix/global_mutex.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o locks/unix/proc_mutex.lo -c locks/unix/proc_mutex.c && touch locks/unix/proc_mutex.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o locks/unix/thread_cond.lo -c locks/unix/thread_cond.c && touch locks/unix/thread_cond.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o locks/unix/thread_mutex.lo -c locks/unix/thread_mutex.c && touch locks/unix/thread_mutex.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o locks/unix/thread_rwlock.lo -c locks/unix/thread_rwlock.c && touch locks/unix/thread_rwlock.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o memory/unix/apr_pools.lo -c memory/unix/apr_pools.c && touch memory/unix/apr_pools.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o misc/unix/charset.lo -c misc/unix/charset.c && touch misc/unix/charset.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o misc/unix/env.lo -c misc/unix/env.c && touch misc/unix/env.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o misc/unix/errorcodes.lo -c misc/unix/errorcodes.c && touch misc/unix/errorcodes.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o misc/unix/getopt.lo -c misc/unix/getopt.c && touch misc/unix/getopt.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o misc/unix/otherchild.lo -c misc/unix/otherchild.c && touch misc/unix/otherchild.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o misc/unix/rand.lo -c misc/unix/rand.c && touch misc/unix/rand.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o misc/unix/start.lo -c misc/unix/start.c && touch misc/unix/start.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o misc/unix/version.lo -c misc/unix/version.c && touch misc/unix/version.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o mmap/unix/common.lo -c mmap/unix/common.c && touch mmap/unix/common.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o mmap/unix/mmap.lo -c mmap/unix/mmap.c && touch mmap/unix/mmap.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o network_io/unix/inet_ntop.lo -c network_io/unix/inet_ntop.c && touch network_io/unix/inet_ntop.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o network_io/unix/inet_pton.lo -c network_io/unix/inet_pton.c && touch network_io/unix/inet_pton.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o network_io/unix/multicast.lo -c network_io/unix/multicast.c && touch network_io/unix/multicast.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o network_io/unix/sendrecv.lo -c network_io/unix/sendrecv.c && touch network_io/unix/sendrecv.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o network_io/unix/sockaddr.lo -c network_io/unix/sockaddr.c && touch network_io/unix/sockaddr.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o network_io/unix/socket_util.lo -c network_io/unix/socket_util.c && touch network_io/unix/socket_util.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o network_io/unix/sockets.lo -c network_io/unix/sockets.c && touch network_io/unix/sockets.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o network_io/unix/sockopt.lo -c network_io/unix/sockopt.c && touch network_io/unix/sockopt.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o poll/unix/epoll.lo -c poll/unix/epoll.c && touch poll/unix/epoll.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o poll/unix/kqueue.lo -c poll/unix/kqueue.c && touch poll/unix/kqueue.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o poll/unix/poll.lo -c poll/unix/poll.c && touch poll/unix/poll.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o poll/unix/pollcb.lo -c poll/unix/pollcb.c && touch poll/unix/pollcb.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o poll/unix/pollset.lo -c poll/unix/pollset.c && touch poll/unix/pollset.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o poll/unix/port.lo -c poll/unix/port.c && touch poll/unix/port.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o poll/unix/select.lo -c poll/unix/select.c && touch poll/unix/select.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o poll/unix/z_asio.lo -c poll/unix/z_asio.c && touch poll/unix/z_asio.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o random/unix/apr_random.lo -c random/unix/apr_random.c && touch random/unix/apr_random.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o random/unix/sha2.lo -c random/unix/sha2.c && touch random/unix/sha2.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o random/unix/sha2_glue.lo -c random/unix/sha2_glue.c && touch random/unix/sha2_glue.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o shmem/unix/shm.lo -c shmem/unix/shm.c && touch shmem/unix/shm.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o support/unix/waitio.lo -c support/unix/waitio.c && touch support/unix/waitio.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o threadproc/unix/proc.lo -c threadproc/unix/proc.c && touch threadproc/unix/proc.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o threadproc/unix/procsup.lo -c threadproc/unix/procsup.c && touch threadproc/unix/procsup.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o threadproc/unix/signals.lo -c threadproc/unix/signals.c && touch threadproc/unix/signals.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o threadproc/unix/thread.lo -c threadproc/unix/thread.c && touch threadproc/unix/thread.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o threadproc/unix/threadpriv.lo -c threadproc/unix/threadpriv.c && touch threadproc/unix/threadpriv.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o time/unix/time.lo -c time/unix/time.c && touch time/unix/time.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o time/unix/timestr.lo -c time/unix/timestr.c && touch time/unix/timestr.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o user/unix/groupinfo.lo -c user/unix/groupinfo.c && touch user/unix/groupinfo.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -o user/unix/userinfo.lo -c user/unix/userinfo.c && touch user/unix/userinfo.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private -version-info 5:2:5 -o libapr-1.la -rpath /usr/local/apache2/lib encoding/apr_escape.lo passwd/apr_getpass.lo strings/apr_cpystrn.lo strings/apr_fnmatch.lo strings/apr_snprintf.lo strings/apr_strings.lo strings/apr_strnatcmp.lo strings/apr_strtok.lo tables/apr_hash.lo tables/apr_skiplist.lo tables/apr_tables.lo atomic/unix/builtins.lo atomic/unix/ia32.lo atomic/unix/mutex.lo atomic/unix/ppc.lo atomic/unix/s390.lo atomic/unix/solaris.lo dso/unix/dso.lo file_io/unix/buffer.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/filepath_util.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 file_io/unix/tempdir.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 memory/unix/apr_pools.lo misc/unix/charset.lo misc/unix/env.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 mmap/unix/common.lo mmap/unix/mmap.lo network_io/unix/inet_ntop.lo network_io/unix/inet_pton.lo network_io/unix/multicast.lo network_io/unix/sendrecv.lo network_io/unix/sockaddr.lo network_io/unix/socket_util.lo network_io/unix/sockets.lo network_io/unix/sockopt.lo poll/unix/epoll.lo poll/unix/kqueue.lo poll/unix/poll.lo poll/unix/pollcb.lo poll/unix/pollset.lo poll/unix/port.lo poll/unix/select.lo poll/unix/z_asio.lo random/unix/apr_random.lo random/unix/sha2.lo random/unix/sha2_glue.lo shmem/unix/shm.lo support/unix/waitio.lo threadproc/unix/proc.lo threadproc/unix/procsup.lo threadproc/unix/signals.lo threadproc/unix/thread.lo threadproc/unix/threadpriv.lo time/unix/time.lo time/unix/timestr.lo user/unix/groupinfo.lo user/unix/userinfo.lo -lrt -lcrypt -lpthread | |
gawk -f /root/sources/httpd-2.4.12/srclib/apr/build/make_exports.awk /root/sources/httpd-2.4.12/srclib/apr/include/apr_allocator.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_atomic.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_dso.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_env.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_errno.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_escape.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_file_info.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_file_io.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_fnmatch.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_general.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_getopt.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_global_mutex.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_hash.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_inherit.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_lib.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_mmap.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_network_io.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_poll.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_pools.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_portable.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_proc_mutex.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_random.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_ring.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_shm.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_signal.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_skiplist.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_strings.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_support.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_tables.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_thread_cond.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_thread_mutex.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_thread_proc.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_thread_rwlock.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_time.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_user.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_version.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_want.h > exports.c | |
gawk -f /root/sources/httpd-2.4.12/srclib/apr/build/make_var_export.awk /root/sources/httpd-2.4.12/srclib/apr/include/apr_allocator.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_atomic.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_dso.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_env.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_errno.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_escape.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_file_info.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_file_io.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_fnmatch.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_general.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_getopt.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_global_mutex.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_hash.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_inherit.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_lib.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_mmap.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_network_io.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_poll.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_pools.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_portable.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_proc_mutex.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_random.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_ring.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_shm.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_signal.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_skiplist.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_strings.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_support.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_tables.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_thread_cond.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_thread_mutex.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_thread_proc.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_thread_rwlock.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_time.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_user.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_version.h /root/sources/httpd-2.4.12/srclib/apr/include/apr_want.h > export_vars.c | |
gcc -E -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private exports.c | grep "ap_hack_" | sed -e 's/^.*[)]\(.*\);$/\1/' >> apr.exp | |
gcc -E -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I./include -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I./include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include/arch/unix -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include/private export_vars.c | sed -e 's/^\#[^!]*//' | sed -e '/^$/d' >> apr.exp | |
sed 's,^\(location=\).*$,\1installed,' < apr-1-config > apr-config.out | |
sed -e 's,^\(apr_build.*=\).*$,\1/usr/local/apache2/build,' -e 's,^\(top_build.*=\).*$,\1/usr/local/apache2/build,' < build/apr_rules.mk > build/apr_rules.out | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/srclib/apr' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/srclib/apr' | |
Making all in apr-util | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/srclib/apr-util' | |
Making all in xml/expat | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat' | |
/bin/sh ./libtool --silent --mode=compile gcc -g -O2 -DHAVE_EXPAT_CONFIG_H -I./lib -I. -o lib/xmlparse.lo -c lib/xmlparse.c | |
/bin/sh ./libtool --silent --mode=compile gcc -g -O2 -DHAVE_EXPAT_CONFIG_H -I./lib -I. -o lib/xmltok.lo -c lib/xmltok.c | |
/bin/sh ./libtool --silent --mode=compile gcc -g -O2 -DHAVE_EXPAT_CONFIG_H -I./lib -I. -o lib/xmlrole.lo -c lib/xmlrole.c | |
/bin/sh ./libtool --silent --mode=link gcc -g -O2 -DHAVE_EXPAT_CONFIG_H -I./lib -I. -no-undefined -version-info 5:0:5 -rpath /usr/local/apache2/lib -o libexpat.la lib/xmlparse.lo lib/xmltok.lo lib/xmlrole.lo | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/srclib/apr-util' | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o buckets/apr_brigade.lo -c buckets/apr_brigade.c && touch buckets/apr_brigade.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o buckets/apr_buckets.lo -c buckets/apr_buckets.c && touch buckets/apr_buckets.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o buckets/apr_buckets_alloc.lo -c buckets/apr_buckets_alloc.c && touch buckets/apr_buckets_alloc.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o buckets/apr_buckets_eos.lo -c buckets/apr_buckets_eos.c && touch buckets/apr_buckets_eos.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o buckets/apr_buckets_file.lo -c buckets/apr_buckets_file.c && touch buckets/apr_buckets_file.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o buckets/apr_buckets_flush.lo -c buckets/apr_buckets_flush.c && touch buckets/apr_buckets_flush.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o buckets/apr_buckets_heap.lo -c buckets/apr_buckets_heap.c && touch buckets/apr_buckets_heap.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o buckets/apr_buckets_mmap.lo -c buckets/apr_buckets_mmap.c && touch buckets/apr_buckets_mmap.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o buckets/apr_buckets_pipe.lo -c buckets/apr_buckets_pipe.c && touch buckets/apr_buckets_pipe.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o buckets/apr_buckets_pool.lo -c buckets/apr_buckets_pool.c && touch buckets/apr_buckets_pool.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o buckets/apr_buckets_refcount.lo -c buckets/apr_buckets_refcount.c && touch buckets/apr_buckets_refcount.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o buckets/apr_buckets_simple.lo -c buckets/apr_buckets_simple.c && touch buckets/apr_buckets_simple.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o buckets/apr_buckets_socket.lo -c buckets/apr_buckets_socket.c && touch buckets/apr_buckets_socket.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o crypto/apr_crypto.lo -c crypto/apr_crypto.c && touch crypto/apr_crypto.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o crypto/apr_md4.lo -c crypto/apr_md4.c && touch crypto/apr_md4.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o crypto/apr_md5.lo -c crypto/apr_md5.c && touch crypto/apr_md5.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o crypto/apr_passwd.lo -c crypto/apr_passwd.c && touch crypto/apr_passwd.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o crypto/apr_sha1.lo -c crypto/apr_sha1.c && touch crypto/apr_sha1.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o crypto/crypt_blowfish.lo -c crypto/crypt_blowfish.c && touch crypto/crypt_blowfish.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o crypto/getuuid.lo -c crypto/getuuid.c && touch crypto/getuuid.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o crypto/uuid.lo -c crypto/uuid.c && touch crypto/uuid.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o dbd/apr_dbd.lo -c dbd/apr_dbd.c && touch dbd/apr_dbd.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o dbm/apr_dbm.lo -c dbm/apr_dbm.c && touch dbm/apr_dbm.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o dbm/apr_dbm_sdbm.lo -c dbm/apr_dbm_sdbm.c && touch dbm/apr_dbm_sdbm.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o dbm/sdbm/sdbm.lo -c dbm/sdbm/sdbm.c && touch dbm/sdbm/sdbm.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o dbm/sdbm/sdbm_hash.lo -c dbm/sdbm/sdbm_hash.c && touch dbm/sdbm/sdbm_hash.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o dbm/sdbm/sdbm_lock.lo -c dbm/sdbm/sdbm_lock.c && touch dbm/sdbm/sdbm_lock.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o dbm/sdbm/sdbm_pair.lo -c dbm/sdbm/sdbm_pair.c && touch dbm/sdbm/sdbm_pair.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o encoding/apr_base64.lo -c encoding/apr_base64.c && touch encoding/apr_base64.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o hooks/apr_hooks.lo -c hooks/apr_hooks.c && touch hooks/apr_hooks.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o ldap/apr_ldap_stub.lo -c ldap/apr_ldap_stub.c && touch ldap/apr_ldap_stub.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o ldap/apr_ldap_url.lo -c ldap/apr_ldap_url.c && touch ldap/apr_ldap_url.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o memcache/apr_memcache.lo -c memcache/apr_memcache.c && touch memcache/apr_memcache.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o misc/apr_date.lo -c misc/apr_date.c && touch misc/apr_date.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o misc/apr_queue.lo -c misc/apr_queue.c && touch misc/apr_queue.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o misc/apr_reslist.lo -c misc/apr_reslist.c && touch misc/apr_reslist.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o misc/apr_rmm.lo -c misc/apr_rmm.c && touch misc/apr_rmm.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o misc/apr_thread_pool.lo -c misc/apr_thread_pool.c && touch misc/apr_thread_pool.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o misc/apu_dso.lo -c misc/apu_dso.c && touch misc/apu_dso.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o misc/apu_version.lo -c misc/apu_version.c && touch misc/apu_version.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o strmatch/apr_strmatch.lo -c strmatch/apr_strmatch.c && touch strmatch/apr_strmatch.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o uri/apr_uri.lo -c uri/apr_uri.c && touch uri/apr_uri.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o xlate/xlate.lo -c xlate/xlate.c && touch xlate/xlate.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o xml/apr_xml.lo -c xml/apr_xml.c && touch xml/apr_xml.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -version-info 5:4:5 -o libaprutil-1.la -rpath /usr/local/apache2/lib buckets/apr_brigade.lo buckets/apr_buckets.lo buckets/apr_buckets_alloc.lo buckets/apr_buckets_eos.lo buckets/apr_buckets_file.lo buckets/apr_buckets_flush.lo buckets/apr_buckets_heap.lo buckets/apr_buckets_mmap.lo buckets/apr_buckets_pipe.lo buckets/apr_buckets_pool.lo buckets/apr_buckets_refcount.lo buckets/apr_buckets_simple.lo buckets/apr_buckets_socket.lo crypto/apr_crypto.lo crypto/apr_md4.lo crypto/apr_md5.lo crypto/apr_passwd.lo crypto/apr_sha1.lo crypto/crypt_blowfish.lo crypto/getuuid.lo crypto/uuid.lo dbd/apr_dbd.lo dbm/apr_dbm.lo dbm/apr_dbm_sdbm.lo dbm/sdbm/sdbm.lo dbm/sdbm/sdbm_hash.lo dbm/sdbm/sdbm_lock.lo dbm/sdbm/sdbm_pair.lo encoding/apr_base64.lo hooks/apr_hooks.lo ldap/apr_ldap_stub.lo ldap/apr_ldap_url.lo memcache/apr_memcache.lo misc/apr_date.lo misc/apr_queue.lo misc/apr_reslist.lo misc/apr_rmm.lo misc/apr_thread_pool.lo misc/apu_dso.lo misc/apu_version.lo strmatch/apr_strmatch.lo uri/apr_uri.lo xlate/xlate.lo xml/apr_xml.lo -lrt -lcrypt -lpthread /root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/libexpat.la /root/sources/httpd-2.4.12/srclib/apr/libapr-1.la -lrt -lcrypt -lpthread | |
gawk -f /root/sources/httpd-2.4.12/srclib/apr/build/make_exports.awk /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_anylock.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_base64.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_buckets.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_crypto.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_date.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_dbd.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_dbm.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_hooks.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_ldap_init.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_ldap_option.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_ldap_rebind.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_ldap_url.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_md4.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_md5.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_memcache.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_optional.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_optional_hooks.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_queue.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_reslist.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_rmm.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_sdbm.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_sha1.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_strmatch.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_thread_pool.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_uri.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_uuid.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_xlate.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_xml.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apu_errno.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apu_version.h /root/sources/httpd-2.4.12/srclib/apr-util/include/private/apr_crypto_internal.h /root/sources/httpd-2.4.12/srclib/apr-util/include/private/apr_dbd_internal.h /root/sources/httpd-2.4.12/srclib/apr-util/include/private/apr_dbd_odbc_v2.h /root/sources/httpd-2.4.12/srclib/apr-util/include/private/apr_dbm_private.h /root/sources/httpd-2.4.12/srclib/apr-util/include/private/apu_internal.h > exports.c | |
gawk -f /root/sources/httpd-2.4.12/srclib/apr/build/make_var_export.awk /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_anylock.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_base64.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_buckets.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_crypto.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_date.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_dbd.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_dbm.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_hooks.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_ldap_init.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_ldap_option.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_ldap_rebind.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_ldap_url.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_md4.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_md5.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_memcache.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_optional.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_optional_hooks.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_queue.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_reslist.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_rmm.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_sdbm.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_sha1.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_strmatch.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_thread_pool.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_uri.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_uuid.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_xlate.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apr_xml.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apu_errno.h /root/sources/httpd-2.4.12/srclib/apr-util/include/apu_version.h /root/sources/httpd-2.4.12/srclib/apr-util/include/private/apr_crypto_internal.h /root/sources/httpd-2.4.12/srclib/apr-util/include/private/apr_dbd_internal.h /root/sources/httpd-2.4.12/srclib/apr-util/include/private/apr_dbd_odbc_v2.h /root/sources/httpd-2.4.12/srclib/apr-util/include/private/apr_dbm_private.h /root/sources/httpd-2.4.12/srclib/apr-util/include/private/apu_internal.h > export_vars.c | |
gcc -E -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib exports.c | grep "ap_hack_" | sed -e 's/^.*[)]\(.*\);$/\1/' >> aprutil.exp | |
gcc -E -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib export_vars.c | sed -e 's/^\#[^!]*//' | sed -e '/^$/d' >> aprutil.exp | |
sed 's,^\(location=\).*$,\1installed,' < apu-1-config > apu-config.out | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -o dbd/apr_dbd_sqlite3.lo -c dbd/apr_dbd_sqlite3.c && touch dbd/apr_dbd_sqlite3.lo | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread -release 1 -module -rpath /usr/local/apache2/lib/apr-util-1 -o dbd/apr_dbd_sqlite3.la dbd/apr_dbd_sqlite3.lo -lsqlite3 | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/srclib/apr-util' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/srclib/apr-util' | |
make[1]: Leaving directory `/root/sources/httpd-2.4.12/srclib' | |
Making all in os | |
make[1]: Entering directory `/root/sources/httpd-2.4.12/os' | |
Making all in unix | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/os/unix' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/os/unix' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c unixd.c && touch unixd.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o libos.la -static unixd.lo | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/os/unix' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/os/unix' | |
make[1]: Leaving directory `/root/sources/httpd-2.4.12/os' | |
Making all in server | |
make[1]: Entering directory `/root/sources/httpd-2.4.12/server' | |
Making all in mpm | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/server/mpm' | |
Making all in event | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/server/mpm/event' | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/server/mpm/event' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c event.c && touch event.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c fdqueue.c && touch fdqueue.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -static -o libevent.la event.lo fdqueue.lo | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/server/mpm/event' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/server/mpm/event' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/server/mpm' | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/server' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c config.c && touch config.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c log.c && touch log.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c main.c && touch main.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c vhost.c && touch vhost.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c gen_test_char.c && touch gen_test_char.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o gen_test_char gen_test_char.lo | |
./gen_test_char > test_char.h | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c util.c && touch util.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c util_fcgi.c && touch util_fcgi.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c util_script.c && touch util_script.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c util_md5.c && touch util_md5.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c util_cfgtree.c && touch util_cfgtree.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c util_ebcdic.c && touch util_ebcdic.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c util_time.c && touch util_time.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c connection.c && touch connection.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c listen.c && touch listen.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c util_mutex.c && touch util_mutex.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c mpm_common.c && touch mpm_common.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c mpm_unix.c && touch mpm_unix.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c util_charset.c && touch util_charset.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c util_cookies.c && touch util_cookies.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c util_debug.c && touch util_debug.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c util_xml.c && touch util_xml.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c util_filter.c && touch util_filter.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c util_pcre.c && touch util_pcre.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c util_regex.c && touch util_regex.lo | |
( for dir in /root/sources/httpd-2.4.12/include /root/sources/httpd-2.4.12/os/unix; do \ | |
ls $dir/*.h ; \ | |
done; \ | |
for dir in /root/sources/httpd-2.4.12/srclib/apr/include /root/sources/httpd-2.4.12/srclib/apr-util/include; do \ | |
ls $dir/ap[ru].h $dir/ap[ru]_*.h 2>/dev/null; \ | |
done; \ | |
) | sed -e s,//,/,g | sort -u > export_files | |
gawk -f /root/sources/httpd-2.4.12/build/make_exports.awk `cat export_files` > exports.c | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c exports.c && touch exports.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c scoreboard.c && touch scoreboard.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c error_bucket.c && touch error_bucket.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c protocol.c && touch protocol.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c core.c && touch core.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c request.c && touch request.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c provider.c && touch provider.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c eoc_bucket.c && touch eoc_bucket.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c eor_bucket.c && touch eor_bucket.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c core_filters.c && touch core_filters.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c util_expr_parse.c && touch util_expr_parse.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c util_expr_scan.c && touch util_expr_scan.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c util_expr_eval.c && touch util_expr_eval.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o libmain.la -static config.lo log.lo main.lo vhost.lo util.lo util_fcgi.lo util_script.lo util_md5.lo util_cfgtree.lo util_ebcdic.lo util_time.lo connection.lo listen.lo util_mutex.lo mpm_common.lo mpm_unix.lo util_charset.lo util_cookies.lo util_debug.lo util_xml.lo util_filter.lo util_pcre.lo util_regex.lo exports.lo scoreboard.lo error_bucket.lo protocol.lo core.lo request.lo provider.lo eoc_bucket.lo eor_bucket.lo core_filters.lo util_expr_parse.lo util_expr_scan.lo util_expr_eval.lo | |
gawk -f /root/sources/httpd-2.4.12/build/make_var_export.awk `cat export_files` > export_vars.h | |
gcc -E -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers exports.c | grep "ap_hack_" | grep -v apr_ | sed -e 's/^.*[)]\(.*\);$/\1/' >> httpd.exp | |
gcc -E -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers export_vars.h | grep -v apr_ | sed -e 's/^\#[^!]*//' | sed -e '/^$/d' >> httpd.exp | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/server' | |
make[1]: Leaving directory `/root/sources/httpd-2.4.12/server' | |
Making all in modules | |
make[1]: Entering directory `/root/sources/httpd-2.4.12/modules' | |
Making all in aaa | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/aaa' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/aaa' | |
Making all in cache | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/cache' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/cache' | |
Making all in core | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/core' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/core' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c mod_so.c && touch mod_so.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -static -o libmod_so.la mod_so.lo | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/core' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/core' | |
Making all in database | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/database' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/database' | |
Making all in debugging | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/debugging' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/debugging' | |
Making all in filters | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/filters' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/filters' | |
Making all in http | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/http' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/http' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c http_core.c && touch http_core.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c http_protocol.c && touch http_protocol.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c http_request.c && touch http_request.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c http_filters.c && touch http_filters.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c chunk_filter.c && touch chunk_filter.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c byterange_filter.c && touch byterange_filter.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c http_etag.c && touch http_etag.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -static -o libmod_http.la http_core.lo http_protocol.lo http_request.lo http_filters.lo chunk_filter.lo byterange_filter.lo http_etag.lo | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/http' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/http' | |
Making all in loggers | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/loggers' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/loggers' | |
Making all in metadata | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/metadata' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/metadata' | |
Making all in proxy | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/proxy' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/proxy' | |
Making all in session | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/session' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/session' | |
Making all in slotmem | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/slotmem' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/slotmem' | |
Making all in ssl | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/ssl' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/ssl' | |
Making all in proxy/balancers | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/proxy/balancers' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/proxy/balancers' | |
Making all in arch/unix | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/arch/unix' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/arch/unix' | |
Making all in dav/main | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/dav/main' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/dav/main' | |
Making all in generators | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/generators' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/generators' | |
Making all in dav/fs | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/dav/fs' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/dav/fs' | |
Making all in mappers | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/mappers' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/mappers' | |
make[1]: Leaving directory `/root/sources/httpd-2.4.12/modules' | |
Making all in support | |
make[1]: Entering directory `/root/sources/httpd-2.4.12/support' | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/support' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c htpasswd.c && touch htpasswd.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c passwd_common.c && touch passwd_common.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o htpasswd htpasswd.lo passwd_common.lo /root/sources/httpd-2.4.12/srclib/apr-util/libaprutil-1.la /root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/libexpat.la /root/sources/httpd-2.4.12/srclib/apr/libapr-1.la -lrt -lcrypt -lpthread -lcrypt | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c htdigest.c && touch htdigest.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o htdigest htdigest.lo /root/sources/httpd-2.4.12/srclib/apr-util/libaprutil-1.la /root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/libexpat.la /root/sources/httpd-2.4.12/srclib/apr/libapr-1.la -lrt -lcrypt -lpthread | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c htdbm.c && touch htdbm.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o htdbm htdbm.lo passwd_common.lo /root/sources/httpd-2.4.12/srclib/apr-util/libaprutil-1.la /root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/libexpat.la /root/sources/httpd-2.4.12/srclib/apr/libapr-1.la -lrt -lcrypt -lpthread -lcrypt | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE \ | |
-I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c ab.c && touch ab.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -lssl -lcrypto -lrt -lcrypt -lpthread \ | |
-o ab ab.lo /root/sources/httpd-2.4.12/srclib/apr-util/libaprutil-1.la /root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/libexpat.la /root/sources/httpd-2.4.12/srclib/apr/libapr-1.la -lrt -lcrypt -lpthread -lm | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c logresolve.c && touch logresolve.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o logresolve logresolve.lo /root/sources/httpd-2.4.12/srclib/apr-util/libaprutil-1.la /root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/libexpat.la /root/sources/httpd-2.4.12/srclib/apr/libapr-1.la -lrt -lcrypt -lpthread | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c httxt2dbm.c && touch httxt2dbm.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o httxt2dbm httxt2dbm.lo /root/sources/httpd-2.4.12/srclib/apr-util/libaprutil-1.la /root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/libexpat.la /root/sources/httpd-2.4.12/srclib/apr/libapr-1.la -lrt -lcrypt -lpthread | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c htcacheclean.c && touch htcacheclean.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o htcacheclean htcacheclean.lo /root/sources/httpd-2.4.12/srclib/apr-util/libaprutil-1.la /root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/libexpat.la /root/sources/httpd-2.4.12/srclib/apr/libapr-1.la -lrt -lcrypt -lpthread | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c rotatelogs.c && touch rotatelogs.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o rotatelogs rotatelogs.lo /root/sources/httpd-2.4.12/srclib/apr-util/libaprutil-1.la /root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/libexpat.la /root/sources/httpd-2.4.12/srclib/apr/libapr-1.la -lrt -lcrypt -lpthread | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c checkgid.c && touch checkgid.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o checkgid checkgid.lo /root/sources/httpd-2.4.12/srclib/apr-util/libaprutil-1.la /root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/libexpat.la /root/sources/httpd-2.4.12/srclib/apr/libapr-1.la -lrt -lcrypt -lpthread | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c fcgistarter.c && touch fcgistarter.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o fcgistarter fcgistarter.lo /root/sources/httpd-2.4.12/srclib/apr-util/libaprutil-1.la /root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/libexpat.la /root/sources/httpd-2.4.12/srclib/apr/libapr-1.la -lrt -lcrypt -lpthread | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/support' | |
make[1]: Leaving directory `/root/sources/httpd-2.4.12/support' | |
make[1]: Entering directory `/root/sources/httpd-2.4.12' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-non-pic -static -c modules.c && touch modules.lo | |
gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -c /root/sources/httpd-2.4.12/server/buildmark.c | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o httpd modules.lo buildmark.o -export-dynamic server/libmain.la modules/core/libmod_so.la modules/http/libmod_http.la server/mpm/event/libevent.la os/unix/libos.la -lpcre /root/sources/httpd-2.4.12/srclib/apr-util/libaprutil-1.la /root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/libexpat.la /root/sources/httpd-2.4.12/srclib/apr/libapr-1.la -lrt -lcrypt -lpthread | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/os' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/os/unix' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/os/unix' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/os' | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/server' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/server/mpm' | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/server/mpm/event' | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/server/mpm/event' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/server/mpm' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/server' | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/aaa' | |
Building shared: mod_authn_file.la mod_authn_dbm.la mod_authn_anon.la mod_authn_dbd.la mod_authn_socache.la mod_authn_core.la mod_authz_host.la mod_authz_groupfile.la mod_authz_user.la mod_authz_dbm.la mod_authz_owner.la mod_authz_dbd.la mod_authz_core.la mod_access_compat.la mod_auth_basic.la mod_auth_form.la mod_auth_digest.la mod_allowmethods.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/aaa' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_authn_file.c && touch mod_authn_file.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_authn_file.la -rpath /usr/local/apache2/modules -module -avoid-version mod_authn_file.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_authn_dbm.c && touch mod_authn_dbm.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_authn_dbm.la -rpath /usr/local/apache2/modules -module -avoid-version mod_authn_dbm.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_authn_anon.c && touch mod_authn_anon.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_authn_anon.la -rpath /usr/local/apache2/modules -module -avoid-version mod_authn_anon.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_authn_dbd.c && touch mod_authn_dbd.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_authn_dbd.la -rpath /usr/local/apache2/modules -module -avoid-version mod_authn_dbd.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_authn_socache.c && touch mod_authn_socache.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_authn_socache.la -rpath /usr/local/apache2/modules -module -avoid-version mod_authn_socache.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_authn_core.c && touch mod_authn_core.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_authn_core.la -rpath /usr/local/apache2/modules -module -avoid-version mod_authn_core.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_authz_host.c && touch mod_authz_host.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_authz_host.la -rpath /usr/local/apache2/modules -module -avoid-version mod_authz_host.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_authz_groupfile.c && touch mod_authz_groupfile.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_authz_groupfile.la -rpath /usr/local/apache2/modules -module -avoid-version mod_authz_groupfile.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_authz_user.c && touch mod_authz_user.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_authz_user.la -rpath /usr/local/apache2/modules -module -avoid-version mod_authz_user.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_authz_dbm.c && touch mod_authz_dbm.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_authz_dbm.la -rpath /usr/local/apache2/modules -module -avoid-version mod_authz_dbm.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_authz_owner.c && touch mod_authz_owner.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_authz_owner.la -rpath /usr/local/apache2/modules -module -avoid-version mod_authz_owner.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_authz_dbd.c && touch mod_authz_dbd.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_authz_dbd.la -rpath /usr/local/apache2/modules -module -avoid-version mod_authz_dbd.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_authz_core.c && touch mod_authz_core.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_authz_core.la -rpath /usr/local/apache2/modules -module -avoid-version mod_authz_core.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_access_compat.c && touch mod_access_compat.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_access_compat.la -rpath /usr/local/apache2/modules -module -avoid-version mod_access_compat.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_auth_basic.c && touch mod_auth_basic.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_auth_basic.la -rpath /usr/local/apache2/modules -module -avoid-version mod_auth_basic.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_auth_form.c && touch mod_auth_form.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_auth_form.la -rpath /usr/local/apache2/modules -module -avoid-version mod_auth_form.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_auth_digest.c && touch mod_auth_digest.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_auth_digest.la -rpath /usr/local/apache2/modules -module -avoid-version mod_auth_digest.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_allowmethods.c && touch mod_allowmethods.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_allowmethods.la -rpath /usr/local/apache2/modules -module -avoid-version mod_allowmethods.lo | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/aaa' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/aaa' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/cache' | |
Building shared: mod_file_cache.la mod_cache.la mod_cache_disk.la mod_cache_socache.la mod_socache_shmcb.la mod_socache_dbm.la mod_socache_memcache.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/cache' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_file_cache.c && touch mod_file_cache.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_file_cache.la -rpath /usr/local/apache2/modules -module -avoid-version mod_file_cache.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_cache.c && touch mod_cache.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c cache_storage.c && touch cache_storage.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c cache_util.c && touch cache_util.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_cache.la -rpath /usr/local/apache2/modules -module -avoid-version mod_cache.lo cache_storage.lo cache_util.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_cache_disk.c && touch mod_cache_disk.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_cache_disk.la -rpath /usr/local/apache2/modules -module -avoid-version mod_cache_disk.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_cache_socache.c && touch mod_cache_socache.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_cache_socache.la -rpath /usr/local/apache2/modules -module -avoid-version mod_cache_socache.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_socache_shmcb.c && touch mod_socache_shmcb.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_socache_shmcb.la -rpath /usr/local/apache2/modules -module -avoid-version mod_socache_shmcb.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_socache_dbm.c && touch mod_socache_dbm.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_socache_dbm.la -rpath /usr/local/apache2/modules -module -avoid-version mod_socache_dbm.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_socache_memcache.c && touch mod_socache_memcache.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_socache_memcache.la -rpath /usr/local/apache2/modules -module -avoid-version mod_socache_memcache.lo | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/cache' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/cache' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/core' | |
Building shared: mod_macro.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/core' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_macro.c && touch mod_macro.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_macro.la -rpath /usr/local/apache2/modules -module -avoid-version mod_macro.lo | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/core' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/core' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/database' | |
Building shared: mod_dbd.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/database' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_dbd.c && touch mod_dbd.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_dbd.la -rpath /usr/local/apache2/modules -module -avoid-version mod_dbd.lo | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/database' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/database' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/debugging' | |
Building shared: mod_dumpio.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/debugging' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_dumpio.c && touch mod_dumpio.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_dumpio.la -rpath /usr/local/apache2/modules -module -avoid-version mod_dumpio.lo | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/debugging' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/debugging' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/filters' | |
Building shared: mod_buffer.la mod_ratelimit.la mod_reqtimeout.la mod_ext_filter.la mod_request.la mod_include.la mod_filter.la mod_substitute.la mod_sed.la mod_deflate.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/filters' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_buffer.c && touch mod_buffer.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_buffer.la -rpath /usr/local/apache2/modules -module -avoid-version mod_buffer.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_ratelimit.c && touch mod_ratelimit.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_ratelimit.la -rpath /usr/local/apache2/modules -module -avoid-version mod_ratelimit.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_reqtimeout.c && touch mod_reqtimeout.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_reqtimeout.la -rpath /usr/local/apache2/modules -module -avoid-version mod_reqtimeout.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_ext_filter.c && touch mod_ext_filter.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_ext_filter.la -rpath /usr/local/apache2/modules -module -avoid-version mod_ext_filter.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_request.c && touch mod_request.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_request.la -rpath /usr/local/apache2/modules -module -avoid-version mod_request.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_include.c && touch mod_include.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_include.la -rpath /usr/local/apache2/modules -module -avoid-version mod_include.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_filter.c && touch mod_filter.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_filter.la -rpath /usr/local/apache2/modules -module -avoid-version mod_filter.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_substitute.c && touch mod_substitute.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_substitute.la -rpath /usr/local/apache2/modules -module -avoid-version mod_substitute.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_sed.c && touch mod_sed.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c sed0.c && touch sed0.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c sed1.c && touch sed1.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c regexp.c && touch regexp.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_sed.la -rpath /usr/local/apache2/modules -module -avoid-version mod_sed.lo sed0.lo sed1.lo regexp.lo -export-symbols-regex sed_module | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_deflate.c && touch mod_deflate.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_deflate.la -rpath /usr/local/apache2/modules -module -avoid-version mod_deflate.lo -lz | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/filters' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/filters' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/http' | |
Building shared: mod_mime.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/http' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_mime.c && touch mod_mime.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_mime.la -rpath /usr/local/apache2/modules -module -avoid-version mod_mime.lo | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/http' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/http' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/loggers' | |
Building shared: mod_log_config.la mod_log_debug.la mod_logio.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/loggers' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_log_config.c && touch mod_log_config.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_log_config.la -rpath /usr/local/apache2/modules -module -avoid-version mod_log_config.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_log_debug.c && touch mod_log_debug.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_log_debug.la -rpath /usr/local/apache2/modules -module -avoid-version mod_log_debug.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_logio.c && touch mod_logio.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_logio.la -rpath /usr/local/apache2/modules -module -avoid-version mod_logio.lo | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/loggers' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/loggers' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/metadata' | |
Building shared: mod_env.la mod_expires.la mod_headers.la mod_unique_id.la mod_setenvif.la mod_version.la mod_remoteip.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/metadata' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_env.c && touch mod_env.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_env.la -rpath /usr/local/apache2/modules -module -avoid-version mod_env.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_expires.c && touch mod_expires.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_expires.la -rpath /usr/local/apache2/modules -module -avoid-version mod_expires.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_headers.c && touch mod_headers.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_headers.la -rpath /usr/local/apache2/modules -module -avoid-version mod_headers.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_unique_id.c && touch mod_unique_id.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_unique_id.la -rpath /usr/local/apache2/modules -module -avoid-version mod_unique_id.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_setenvif.c && touch mod_setenvif.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_setenvif.la -rpath /usr/local/apache2/modules -module -avoid-version mod_setenvif.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_version.c && touch mod_version.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_version.la -rpath /usr/local/apache2/modules -module -avoid-version mod_version.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_remoteip.c && touch mod_remoteip.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_remoteip.la -rpath /usr/local/apache2/modules -module -avoid-version mod_remoteip.lo | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/metadata' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/metadata' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/proxy' | |
Building shared: mod_proxy.la mod_proxy_connect.la mod_proxy_ftp.la mod_proxy_http.la mod_proxy_fcgi.la mod_proxy_scgi.la mod_proxy_wstunnel.la mod_proxy_ajp.la mod_proxy_balancer.la mod_proxy_express.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/proxy' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_proxy.c && touch mod_proxy.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c proxy_util.c && touch proxy_util.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_proxy.la -rpath /usr/local/apache2/modules -module -avoid-version mod_proxy.lo proxy_util.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_proxy_connect.c && touch mod_proxy_connect.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_proxy_connect.la -rpath /usr/local/apache2/modules -module -avoid-version mod_proxy_connect.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_proxy_ftp.c && touch mod_proxy_ftp.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_proxy_ftp.la -rpath /usr/local/apache2/modules -module -avoid-version mod_proxy_ftp.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_proxy_http.c && touch mod_proxy_http.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_proxy_http.la -rpath /usr/local/apache2/modules -module -avoid-version mod_proxy_http.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_proxy_fcgi.c && touch mod_proxy_fcgi.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_proxy_fcgi.la -rpath /usr/local/apache2/modules -module -avoid-version mod_proxy_fcgi.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_proxy_scgi.c && touch mod_proxy_scgi.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_proxy_scgi.la -rpath /usr/local/apache2/modules -module -avoid-version mod_proxy_scgi.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_proxy_wstunnel.c && touch mod_proxy_wstunnel.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_proxy_wstunnel.la -rpath /usr/local/apache2/modules -module -avoid-version mod_proxy_wstunnel.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_proxy_ajp.c && touch mod_proxy_ajp.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c ajp_header.c && touch ajp_header.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c ajp_link.c && touch ajp_link.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c ajp_msg.c && touch ajp_msg.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c ajp_utils.c && touch ajp_utils.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_proxy_ajp.la -rpath /usr/local/apache2/modules -module -avoid-version mod_proxy_ajp.lo ajp_header.lo ajp_link.lo ajp_msg.lo ajp_utils.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_proxy_balancer.c && touch mod_proxy_balancer.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_proxy_balancer.la -rpath /usr/local/apache2/modules -module -avoid-version mod_proxy_balancer.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_proxy_express.c && touch mod_proxy_express.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_proxy_express.la -rpath /usr/local/apache2/modules -module -avoid-version mod_proxy_express.lo | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/proxy' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/proxy' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/session' | |
Building shared: mod_session.la mod_session_cookie.la mod_session_dbd.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/session' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_session.c && touch mod_session.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_session.la -rpath /usr/local/apache2/modules -module -avoid-version mod_session.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_session_cookie.c && touch mod_session_cookie.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_session_cookie.la -rpath /usr/local/apache2/modules -module -avoid-version mod_session_cookie.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_session_dbd.c && touch mod_session_dbd.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_session_dbd.la -rpath /usr/local/apache2/modules -module -avoid-version mod_session_dbd.lo | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/session' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/session' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/slotmem' | |
Building shared: mod_slotmem_shm.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/slotmem' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_slotmem_shm.c && touch mod_slotmem_shm.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_slotmem_shm.la -rpath /usr/local/apache2/modules -module -avoid-version mod_slotmem_shm.lo | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/slotmem' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/slotmem' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/ssl' | |
Building shared: mod_ssl.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/ssl' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_ssl.c && touch mod_ssl.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c ssl_engine_config.c && touch ssl_engine_config.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c ssl_engine_init.c && touch ssl_engine_init.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c ssl_engine_io.c && touch ssl_engine_io.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c ssl_engine_kernel.c && touch ssl_engine_kernel.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c ssl_engine_log.c && touch ssl_engine_log.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c ssl_engine_mutex.c && touch ssl_engine_mutex.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c ssl_engine_pphrase.c && touch ssl_engine_pphrase.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c ssl_engine_rand.c && touch ssl_engine_rand.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c ssl_engine_vars.c && touch ssl_engine_vars.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c ssl_scache.c && touch ssl_scache.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c ssl_util_stapling.c && touch ssl_util_stapling.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c ssl_util.c && touch ssl_util.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c ssl_util_ssl.c && touch ssl_util_ssl.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c ssl_engine_ocsp.c && touch ssl_engine_ocsp.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c ssl_util_ocsp.c && touch ssl_util_ocsp.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -lssl -lcrypto -lrt -lcrypt -lpthread -o mod_ssl.la -rpath /usr/local/apache2/modules -module -avoid-version mod_ssl.lo ssl_engine_config.lo ssl_engine_init.lo ssl_engine_io.lo ssl_engine_kernel.lo ssl_engine_log.lo ssl_engine_mutex.lo ssl_engine_pphrase.lo ssl_engine_rand.lo ssl_engine_vars.lo ssl_scache.lo ssl_util_stapling.lo ssl_util.lo ssl_util_ssl.lo ssl_engine_ocsp.lo ssl_util_ocsp.lo -export-symbols-regex ssl_module | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/ssl' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/ssl' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/proxy/balancers' | |
Building shared: mod_lbmethod_byrequests.la mod_lbmethod_bytraffic.la mod_lbmethod_bybusyness.la mod_lbmethod_heartbeat.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/proxy/balancers' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_lbmethod_byrequests.c && touch mod_lbmethod_byrequests.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_lbmethod_byrequests.la -rpath /usr/local/apache2/modules -module -avoid-version mod_lbmethod_byrequests.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_lbmethod_bytraffic.c && touch mod_lbmethod_bytraffic.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_lbmethod_bytraffic.la -rpath /usr/local/apache2/modules -module -avoid-version mod_lbmethod_bytraffic.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_lbmethod_bybusyness.c && touch mod_lbmethod_bybusyness.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_lbmethod_bybusyness.la -rpath /usr/local/apache2/modules -module -avoid-version mod_lbmethod_bybusyness.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_lbmethod_heartbeat.c && touch mod_lbmethod_heartbeat.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_lbmethod_heartbeat.la -rpath /usr/local/apache2/modules -module -avoid-version mod_lbmethod_heartbeat.lo | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/proxy/balancers' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/proxy/balancers' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/arch/unix' | |
Building shared: mod_unixd.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/arch/unix' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_unixd.c && touch mod_unixd.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_unixd.la -rpath /usr/local/apache2/modules -module -avoid-version mod_unixd.lo | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/arch/unix' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/arch/unix' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/dav/main' | |
Building shared: mod_dav.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/dav/main' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_dav.c && touch mod_dav.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c props.c && touch props.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c util.c && touch util.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c util_lock.c && touch util_lock.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c liveprop.c && touch liveprop.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c providers.c && touch providers.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c std_liveprop.c && touch std_liveprop.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_dav.la -rpath /usr/local/apache2/modules -module -avoid-version mod_dav.lo props.lo util.lo util_lock.lo liveprop.lo providers.lo std_liveprop.lo | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/dav/main' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/dav/main' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/generators' | |
Building shared: mod_status.la mod_autoindex.la mod_info.la mod_cgid.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/generators' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_status.c && touch mod_status.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_status.la -rpath /usr/local/apache2/modules -module -avoid-version mod_status.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_autoindex.c && touch mod_autoindex.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_autoindex.la -rpath /usr/local/apache2/modules -module -avoid-version mod_autoindex.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_info.c && touch mod_info.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_info.la -rpath /usr/local/apache2/modules -module -avoid-version mod_info.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_cgid.c && touch mod_cgid.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_cgid.la -rpath /usr/local/apache2/modules -module -avoid-version mod_cgid.lo | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/generators' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/generators' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/dav/fs' | |
Building shared: mod_dav_fs.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/dav/fs' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_dav_fs.c && touch mod_dav_fs.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c dbm.c && touch dbm.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c lock.c && touch lock.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c repos.c && touch repos.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_dav_fs.la -rpath /usr/local/apache2/modules -module -avoid-version mod_dav_fs.lo dbm.lo lock.lo repos.lo | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/dav/fs' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/dav/fs' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/mappers' | |
Building shared: mod_vhost_alias.la mod_negotiation.la mod_dir.la mod_actions.la mod_speling.la mod_userdir.la mod_alias.la mod_rewrite.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/mappers' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_vhost_alias.c && touch mod_vhost_alias.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_vhost_alias.la -rpath /usr/local/apache2/modules -module -avoid-version mod_vhost_alias.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_negotiation.c && touch mod_negotiation.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_negotiation.la -rpath /usr/local/apache2/modules -module -avoid-version mod_negotiation.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_dir.c && touch mod_dir.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_dir.la -rpath /usr/local/apache2/modules -module -avoid-version mod_dir.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_actions.c && touch mod_actions.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_actions.la -rpath /usr/local/apache2/modules -module -avoid-version mod_actions.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_speling.c && touch mod_speling.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_speling.la -rpath /usr/local/apache2/modules -module -avoid-version mod_speling.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_userdir.c && touch mod_userdir.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_userdir.la -rpath /usr/local/apache2/modules -module -avoid-version mod_userdir.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_alias.c && touch mod_alias.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_alias.la -rpath /usr/local/apache2/modules -module -avoid-version mod_alias.lo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=compile gcc -std=gnu99 -g -O2 -pthread -DLINUX -D_REENTRANT -D_GNU_SOURCE -I. -I/root/sources/httpd-2.4.12/os/unix -I/root/sources/httpd-2.4.12/include -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -I/root/sources/httpd-2.4.12/modules/aaa -I/root/sources/httpd-2.4.12/modules/cache -I/root/sources/httpd-2.4.12/modules/core -I/root/sources/httpd-2.4.12/modules/database -I/root/sources/httpd-2.4.12/modules/filters -I/root/sources/httpd-2.4.12/modules/ldap -I/root/sources/httpd-2.4.12/modules/loggers -I/root/sources/httpd-2.4.12/modules/lua -I/root/sources/httpd-2.4.12/modules/proxy -I/root/sources/httpd-2.4.12/modules/session -I/root/sources/httpd-2.4.12/modules/ssl -I/root/sources/httpd-2.4.12/modules/test -I/root/sources/httpd-2.4.12/server -I/root/sources/httpd-2.4.12/modules/arch/unix -I/root/sources/httpd-2.4.12/modules/dav/main -I/root/sources/httpd-2.4.12/modules/generators -I/root/sources/httpd-2.4.12/modules/mappers -prefer-pic -c mod_rewrite.c && touch mod_rewrite.slo | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=link gcc -std=gnu99 -g -O2 -pthread -o mod_rewrite.la -rpath /usr/local/apache2/modules -module -avoid-version mod_rewrite.lo | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/mappers' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/mappers' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules' | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/support' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/support' | |
make[1]: Leaving directory `/root/sources/httpd-2.4.12' | |
Making install in srclib | |
make[1]: Entering directory `/root/sources/httpd-2.4.12/srclib' | |
Making install in apr | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/srclib/apr' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/srclib/apr' | |
make[3]: Nothing to be done for `local-all'. | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/srclib/apr' | |
/root/sources/httpd-2.4.12/srclib/apr/build/mkdir.sh /usr/local/apache2/lib /usr/local/apache2/bin /usr/local/apache2/build \ | |
/usr/local/apache2/lib/pkgconfig /usr/local/apache2/include | |
mkdir /usr/local/apache2 | |
mkdir /usr/local/apache2/lib | |
mkdir /usr/local/apache2/bin | |
mkdir /usr/local/apache2/build | |
mkdir /usr/local/apache2/lib/pkgconfig | |
mkdir /usr/local/apache2/include | |
/usr/bin/install -c -m 644 /root/sources/httpd-2.4.12/srclib/apr/include/apr.h /usr/local/apache2/include | |
for f in /root/sources/httpd-2.4.12/srclib/apr/include/apr_*.h; do \ | |
/usr/bin/install -c -m 644 ${f} /usr/local/apache2/include; \ | |
done | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --mode=install /usr/bin/install -c -m 755 libapr-1.la /usr/local/apache2/lib | |
libtool: install: /usr/bin/install -c -m 755 .libs/libapr-1.so.0.5.2 /usr/local/apache2/lib/libapr-1.so.0.5.2 | |
libtool: install: (cd /usr/local/apache2/lib && { ln -s -f libapr-1.so.0.5.2 libapr-1.so.0 || { rm -f libapr-1.so.0 && ln -s libapr-1.so.0.5.2 libapr-1.so.0; }; }) | |
libtool: install: (cd /usr/local/apache2/lib && { ln -s -f libapr-1.so.0.5.2 libapr-1.so || { rm -f libapr-1.so && ln -s libapr-1.so.0.5.2 libapr-1.so; }; }) | |
libtool: install: /usr/bin/install -c -m 755 .libs/libapr-1.lai /usr/local/apache2/lib/libapr-1.la | |
libtool: install: /usr/bin/install -c -m 755 .libs/libapr-1.a /usr/local/apache2/lib/libapr-1.a | |
libtool: install: chmod 644 /usr/local/apache2/lib/libapr-1.a | |
libtool: install: ranlib /usr/local/apache2/lib/libapr-1.a | |
libtool: finish: PATH="/sbin:/bin:/usr/sbin:/usr/bin:/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 the `-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. | |
---------------------------------------------------------------------- | |
/usr/bin/install -c -m 644 apr.exp /usr/local/apache2/lib/apr.exp | |
/usr/bin/install -c -m 644 apr.pc /usr/local/apache2/lib/pkgconfig/apr-1.pc | |
for f in libtool shlibtool; do \ | |
if test -f ${f}; then /usr/bin/install -c -m 755 ${f} /usr/local/apache2/build; fi; \ | |
done | |
/usr/bin/install -c -m 755 /root/sources/httpd-2.4.12/srclib/apr/build/mkdir.sh /usr/local/apache2/build | |
for f in make_exports.awk make_var_export.awk; do \ | |
/usr/bin/install -c -m 644 /root/sources/httpd-2.4.12/srclib/apr/build/${f} /usr/local/apache2/build; \ | |
done | |
/usr/bin/install -c -m 644 build/apr_rules.out /usr/local/apache2/build/apr_rules.mk | |
/usr/bin/install -c -m 755 apr-config.out /usr/local/apache2/bin/apr-1-config | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/srclib/apr' | |
Making install in apr-util | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/srclib/apr-util' | |
/root/sources/httpd-2.4.12/srclib/apr/build/mkdir.sh /usr/local/apache2/lib/apr-util-1 | |
mkdir /usr/local/apache2/lib/apr-util-1 | |
Making all in xml/expat | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat' | |
make[3]: Nothing to be done for `all'. | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/srclib/apr-util' | |
make[3]: Nothing to be done for `local-all'. | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/srclib/apr-util' | |
/root/sources/httpd-2.4.12/srclib/apr/build/mkdir.sh /usr/local/apache2/include /usr/local/apache2/lib/pkgconfig \ | |
/usr/local/apache2/lib /usr/local/apache2/bin | |
for f in /root/sources/httpd-2.4.12/srclib/apr-util/include/*.h /root/sources/httpd-2.4.12/srclib/apr-util/include/*.h; do \ | |
/usr/bin/install -c -m 644 ${f} /usr/local/apache2/include; \ | |
done | |
/usr/bin/install -c -m 644 apr-util.pc /usr/local/apache2/lib/pkgconfig/apr-util-1.pc | |
list='xml/expat'; for i in $list; do \ | |
( cd $i ; make DESTDIR= install ); \ | |
done | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat' | |
/bin/sh ./conftools/mkinstalldirs /usr/local/apache2/lib /usr/local/apache2/include | |
/bin/sh ./libtool --mode=install /usr/bin/install -c libexpat.la /usr/local/apache2/lib/libexpat.la | |
libtool: install: /usr/bin/install -c .libs/libexpat.so.0.5.0 /usr/local/apache2/lib/libexpat.so.0.5.0 | |
libtool: install: (cd /usr/local/apache2/lib && { ln -s -f libexpat.so.0.5.0 libexpat.so.0 || { rm -f libexpat.so.0 && ln -s libexpat.so.0.5.0 libexpat.so.0; }; }) | |
libtool: install: (cd /usr/local/apache2/lib && { ln -s -f libexpat.so.0.5.0 libexpat.so || { rm -f libexpat.so && ln -s libexpat.so.0.5.0 libexpat.so; }; }) | |
libtool: install: /usr/bin/install -c .libs/libexpat.lai /usr/local/apache2/lib/libexpat.la | |
libtool: install: /usr/bin/install -c .libs/libexpat.a /usr/local/apache2/lib/libexpat.a | |
libtool: install: chmod 644 /usr/local/apache2/lib/libexpat.a | |
libtool: install: ranlib /usr/local/apache2/lib/libexpat.a | |
libtool: finish: PATH="/sbin:/bin:/usr/sbin:/usr/bin:/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 the `-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. | |
---------------------------------------------------------------------- | |
/usr/bin/install -c -m 644 ./lib/expat.h /usr/local/apache2/include | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat' | |
/bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --mode=install /usr/bin/install -c -m 755 libaprutil-1.la /usr/local/apache2/lib | |
libtool: install: warning: relinking `libaprutil-1.la' | |
libtool: install: (cd /root/sources/httpd-2.4.12/srclib/apr-util; /bin/sh /root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=relink gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/root/sources/httpd-2.4.12/srclib/apr-util/include -I/root/sources/httpd-2.4.12/srclib/apr-util/include/private -I/root/sources/httpd-2.4.12/srclib/apr/include -I/root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/lib -version-info 5:4:5 -o libaprutil-1.la -rpath /usr/local/apache2/lib buckets/apr_brigade.lo buckets/apr_buckets.lo buckets/apr_buckets_alloc.lo buckets/apr_buckets_eos.lo buckets/apr_buckets_file.lo buckets/apr_buckets_flush.lo buckets/apr_buckets_heap.lo buckets/apr_buckets_mmap.lo buckets/apr_buckets_pipe.lo buckets/apr_buckets_pool.lo buckets/apr_buckets_refcount.lo buckets/apr_buckets_simple.lo buckets/apr_buckets_socket.lo crypto/apr_crypto.lo crypto/apr_md4.lo crypto/apr_md5.lo crypto/apr_passwd.lo crypto/apr_sha1.lo crypto/crypt_blowfish.lo crypto/getuuid.lo crypto/uuid.lo dbd/apr_dbd.lo dbm/apr_dbm.lo dbm/apr_dbm_sdbm.lo dbm/sdbm/sdbm.lo dbm/sdbm/sdbm_hash.lo dbm/sdbm/sdbm_lock.lo dbm/sdbm/sdbm_pair.lo encoding/apr_base64.lo hooks/apr_hooks.lo ldap/apr_ldap_stub.lo ldap/apr_ldap_url.lo memcache/apr_memcache.lo misc/apr_date.lo misc/apr_queue.lo misc/apr_reslist.lo misc/apr_rmm.lo misc/apr_thread_pool.lo misc/apu_dso.lo misc/apu_version.lo strmatch/apr_strmatch.lo uri/apr_uri.lo xlate/xlate.lo xml/apr_xml.lo -lrt -lcrypt -lpthread /root/sources/httpd-2.4.12/srclib/apr-util/xml/expat/libexpat.la /root/sources/httpd-2.4.12/srclib/apr/libapr-1.la -lrt -lcrypt -lpthread ) | |
libtool: install: /usr/bin/install -c -m 755 .libs/libaprutil-1.so.0.5.4T /usr/local/apache2/lib/libaprutil-1.so.0.5.4 | |
libtool: install: (cd /usr/local/apache2/lib && { ln -s -f libaprutil-1.so.0.5.4 libaprutil-1.so.0 || { rm -f libaprutil-1.so.0 && ln -s libaprutil-1.so.0.5.4 libaprutil-1.so.0; }; }) | |
libtool: install: (cd /usr/local/apache2/lib && { ln -s -f libaprutil-1.so.0.5.4 libaprutil-1.so || { rm -f libaprutil-1.so && ln -s libaprutil-1.so.0.5.4 libaprutil-1.so; }; }) | |
libtool: install: /usr/bin/install -c -m 755 .libs/libaprutil-1.lai /usr/local/apache2/lib/libaprutil-1.la | |
libtool: install: /usr/bin/install -c -m 755 .libs/libaprutil-1.a /usr/local/apache2/lib/libaprutil-1.a | |
libtool: install: chmod 644 /usr/local/apache2/lib/libaprutil-1.a | |
libtool: install: ranlib /usr/local/apache2/lib/libaprutil-1.a | |
libtool: finish: PATH="/sbin:/bin:/usr/sbin:/usr/bin:/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 the `-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. | |
---------------------------------------------------------------------- | |
/usr/bin/install -c -m 644 aprutil.exp /usr/local/apache2/lib | |
/usr/bin/install -c -m 755 apu-config.out /usr/local/apache2/bin/apu-1-config | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/srclib/apr-util' | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/srclib' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/srclib' | |
make[1]: Leaving directory `/root/sources/httpd-2.4.12/srclib' | |
Making install in os | |
make[1]: Entering directory `/root/sources/httpd-2.4.12/os' | |
Making install in unix | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/os/unix' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/os/unix' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/os/unix' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/os/unix' | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/os' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/os' | |
make[1]: Leaving directory `/root/sources/httpd-2.4.12/os' | |
Making install in server | |
make[1]: Entering directory `/root/sources/httpd-2.4.12/server' | |
Making install in mpm | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/server/mpm' | |
Making install in event | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/server/mpm/event' | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/server/mpm/event' | |
mkdir /usr/local/apache2/modules | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/server/mpm/event' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/server/mpm/event' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/server/mpm' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/server/mpm' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/server/mpm' | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/server' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/server' | |
make[1]: Leaving directory `/root/sources/httpd-2.4.12/server' | |
Making install in modules | |
make[1]: Entering directory `/root/sources/httpd-2.4.12/modules' | |
Making install in aaa | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/aaa' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/aaa' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_authn_file.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_authn_dbm.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_authn_anon.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_authn_dbd.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_authn_socache.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_authn_core.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_authz_host.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_authz_groupfile.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_authz_user.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_authz_dbm.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_authz_owner.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_authz_dbd.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_authz_core.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_access_compat.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_auth_basic.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_auth_form.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_auth_digest.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_allowmethods.la /usr/local/apache2/modules/ | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/aaa' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/aaa' | |
Making install in cache | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/cache' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/cache' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_file_cache.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_cache.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_cache_disk.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_cache_socache.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_socache_shmcb.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_socache_dbm.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_socache_memcache.la /usr/local/apache2/modules/ | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/cache' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/cache' | |
Making install in core | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/core' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/core' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_macro.la /usr/local/apache2/modules/ | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/core' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/core' | |
Making install in database | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/database' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/database' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_dbd.la /usr/local/apache2/modules/ | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/database' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/database' | |
Making install in debugging | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/debugging' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/debugging' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_dumpio.la /usr/local/apache2/modules/ | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/debugging' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/debugging' | |
Making install in filters | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/filters' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/filters' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_buffer.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_ratelimit.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_reqtimeout.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_ext_filter.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_request.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_include.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_filter.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_substitute.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_sed.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_deflate.la /usr/local/apache2/modules/ | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/filters' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/filters' | |
Making install in http | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/http' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/http' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_mime.la /usr/local/apache2/modules/ | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/http' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/http' | |
Making install in loggers | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/loggers' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/loggers' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_log_config.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_log_debug.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_logio.la /usr/local/apache2/modules/ | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/loggers' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/loggers' | |
Making install in metadata | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/metadata' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/metadata' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_env.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_expires.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_headers.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_unique_id.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_setenvif.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_version.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_remoteip.la /usr/local/apache2/modules/ | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/metadata' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/metadata' | |
Making install in proxy | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/proxy' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/proxy' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_proxy.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_proxy_connect.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_proxy_ftp.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_proxy_http.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_proxy_fcgi.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_proxy_scgi.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_proxy_wstunnel.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_proxy_ajp.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_proxy_balancer.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_proxy_express.la /usr/local/apache2/modules/ | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/proxy' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/proxy' | |
Making install in session | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/session' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/session' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_session.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_session_cookie.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_session_dbd.la /usr/local/apache2/modules/ | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/session' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/session' | |
Making install in slotmem | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/slotmem' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/slotmem' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_slotmem_shm.la /usr/local/apache2/modules/ | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/slotmem' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/slotmem' | |
Making install in ssl | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/ssl' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/ssl' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_ssl.la /usr/local/apache2/modules/ | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/ssl' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/ssl' | |
Making install in proxy/balancers | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/proxy/balancers' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/proxy/balancers' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_lbmethod_byrequests.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_lbmethod_bytraffic.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_lbmethod_bybusyness.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_lbmethod_heartbeat.la /usr/local/apache2/modules/ | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/proxy/balancers' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/proxy/balancers' | |
Making install in arch/unix | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/arch/unix' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/arch/unix' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_unixd.la /usr/local/apache2/modules/ | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/arch/unix' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/arch/unix' | |
Making install in dav/main | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/dav/main' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/dav/main' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_dav.la /usr/local/apache2/modules/ | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/dav/main' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/dav/main' | |
Making install in generators | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/generators' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/generators' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_status.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_autoindex.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_info.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_cgid.la /usr/local/apache2/modules/ | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/generators' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/generators' | |
Making install in dav/fs | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/dav/fs' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/dav/fs' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_dav_fs.la /usr/local/apache2/modules/ | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/dav/fs' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/dav/fs' | |
Making install in mappers | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules/mappers' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/mappers' | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_vhost_alias.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_negotiation.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_dir.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_actions.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_speling.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_userdir.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_alias.la /usr/local/apache2/modules/ | |
/root/sources/httpd-2.4.12/srclib/apr/libtool --silent --mode=install install mod_rewrite.la /usr/local/apache2/modules/ | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/mappers' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules/mappers' | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules' | |
make[1]: Leaving directory `/root/sources/httpd-2.4.12/modules' | |
Making install in support | |
make[1]: Entering directory `/root/sources/httpd-2.4.12/support' | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/support' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/support' | |
make[1]: Leaving directory `/root/sources/httpd-2.4.12/support' | |
make[1]: Entering directory `/root/sources/httpd-2.4.12' | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/os' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/os/unix' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/os/unix' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/os' | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/server' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/server/mpm' | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/server/mpm/event' | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/server/mpm/event' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/server/mpm' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/server' | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/modules' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/aaa' | |
Building shared: mod_authn_file.la mod_authn_dbm.la mod_authn_anon.la mod_authn_dbd.la mod_authn_socache.la mod_authn_core.la mod_authz_host.la mod_authz_groupfile.la mod_authz_user.la mod_authz_dbm.la mod_authz_owner.la mod_authz_dbd.la mod_authz_core.la mod_access_compat.la mod_auth_basic.la mod_auth_form.la mod_auth_digest.la mod_allowmethods.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/aaa' | |
make[4]: Nothing to be done for `local-shared-build'. | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/aaa' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/aaa' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/cache' | |
Building shared: mod_file_cache.la mod_cache.la mod_cache_disk.la mod_cache_socache.la mod_socache_shmcb.la mod_socache_dbm.la mod_socache_memcache.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/cache' | |
make[4]: Nothing to be done for `local-shared-build'. | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/cache' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/cache' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/core' | |
Building shared: mod_macro.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/core' | |
make[4]: Nothing to be done for `local-shared-build'. | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/core' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/core' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/database' | |
Building shared: mod_dbd.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/database' | |
make[4]: Nothing to be done for `local-shared-build'. | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/database' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/database' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/debugging' | |
Building shared: mod_dumpio.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/debugging' | |
make[4]: Nothing to be done for `local-shared-build'. | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/debugging' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/debugging' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/filters' | |
Building shared: mod_buffer.la mod_ratelimit.la mod_reqtimeout.la mod_ext_filter.la mod_request.la mod_include.la mod_filter.la mod_substitute.la mod_sed.la mod_deflate.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/filters' | |
make[4]: Nothing to be done for `local-shared-build'. | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/filters' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/filters' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/http' | |
Building shared: mod_mime.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/http' | |
make[4]: Nothing to be done for `local-shared-build'. | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/http' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/http' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/loggers' | |
Building shared: mod_log_config.la mod_log_debug.la mod_logio.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/loggers' | |
make[4]: Nothing to be done for `local-shared-build'. | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/loggers' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/loggers' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/metadata' | |
Building shared: mod_env.la mod_expires.la mod_headers.la mod_unique_id.la mod_setenvif.la mod_version.la mod_remoteip.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/metadata' | |
make[4]: Nothing to be done for `local-shared-build'. | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/metadata' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/metadata' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/proxy' | |
Building shared: mod_proxy.la mod_proxy_connect.la mod_proxy_ftp.la mod_proxy_http.la mod_proxy_fcgi.la mod_proxy_scgi.la mod_proxy_wstunnel.la mod_proxy_ajp.la mod_proxy_balancer.la mod_proxy_express.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/proxy' | |
make[4]: Nothing to be done for `local-shared-build'. | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/proxy' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/proxy' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/session' | |
Building shared: mod_session.la mod_session_cookie.la mod_session_dbd.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/session' | |
make[4]: Nothing to be done for `local-shared-build'. | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/session' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/session' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/slotmem' | |
Building shared: mod_slotmem_shm.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/slotmem' | |
make[4]: Nothing to be done for `local-shared-build'. | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/slotmem' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/slotmem' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/ssl' | |
Building shared: mod_ssl.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/ssl' | |
make[4]: Nothing to be done for `local-shared-build'. | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/ssl' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/ssl' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/proxy/balancers' | |
Building shared: mod_lbmethod_byrequests.la mod_lbmethod_bytraffic.la mod_lbmethod_bybusyness.la mod_lbmethod_heartbeat.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/proxy/balancers' | |
make[4]: Nothing to be done for `local-shared-build'. | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/proxy/balancers' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/proxy/balancers' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/arch/unix' | |
Building shared: mod_unixd.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/arch/unix' | |
make[4]: Nothing to be done for `local-shared-build'. | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/arch/unix' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/arch/unix' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/dav/main' | |
Building shared: mod_dav.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/dav/main' | |
make[4]: Nothing to be done for `local-shared-build'. | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/dav/main' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/dav/main' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/generators' | |
Building shared: mod_status.la mod_autoindex.la mod_info.la mod_cgid.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/generators' | |
make[4]: Nothing to be done for `local-shared-build'. | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/generators' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/generators' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/dav/fs' | |
Building shared: mod_dav_fs.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/dav/fs' | |
make[4]: Nothing to be done for `local-shared-build'. | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/dav/fs' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/dav/fs' | |
make[3]: Entering directory `/root/sources/httpd-2.4.12/modules/mappers' | |
Building shared: mod_vhost_alias.la mod_negotiation.la mod_dir.la mod_actions.la mod_speling.la mod_userdir.la mod_alias.la mod_rewrite.la | |
make[4]: Entering directory `/root/sources/httpd-2.4.12/modules/mappers' | |
make[4]: Nothing to be done for `local-shared-build'. | |
make[4]: Leaving directory `/root/sources/httpd-2.4.12/modules/mappers' | |
make[3]: Leaving directory `/root/sources/httpd-2.4.12/modules/mappers' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/modules' | |
make[2]: Entering directory `/root/sources/httpd-2.4.12/support' | |
make[2]: Leaving directory `/root/sources/httpd-2.4.12/support' | |
Installing configuration files | |
mkdir /usr/local/apache2/conf | |
mkdir /usr/local/apache2/conf/extra | |
mkdir /usr/local/apache2/conf/original | |
mkdir /usr/local/apache2/conf/original/extra | |
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 build system 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 | |
make[1]: Leaving directory `/root/sources/httpd-2.4.12' | |
httpd is stopped | |
Shutting down http: [FAILED] | |
Starting httpd: AH00557: httpd: apr_sockaddr_info_get() failed for Meza1-2015-07-09 | |
AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1. Set the 'ServerName' directive globally to suppress this message | |
[ OK ] | |
Your Apache 2.4 webserver has been setup. | |
Please use the web browser on your host computer to navigate to http://192.168.56.56 to test it out | |
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
# # | |
# Installing PHP from source (php.sh) # | |
# # | |
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | |
--2015-07-09 23:53:58-- http://php.net/get/php-5.4.42.tar.bz2/from/this/mirror | |
Resolving php.net... 72.52.91.14, 2a02:cb41::7 | |
Connecting to php.net|72.52.91.14|:80... connected. | |
HTTP request sent, awaiting response... 302 Found | |
Location: http://php.net/distributions/php-5.4.42.tar.bz2 [following] | |
--2015-07-09 23:53:59-- http://php.net/distributions/php-5.4.42.tar.bz2 | |
Connecting to php.net|72.52.91.14|:80... connected. | |
HTTP request sent, awaiting response... 200 OK | |
Length: 12708394 (12M) [application/octet-stream] | |
Saving to: “php-5.4.42.tar.bz2” | |
100%[======================================>] 12,708,394 7.14M/s in 1.7s | |
2015-07-09 23:54:00 (7.14 MB/s) - “php-5.4.42.tar.bz2” saved [12708394/12708394] | |
PHP v5.4.42 downloaded. Unpacking. | |
configure: WARNING: unrecognized options: --enable-opcache | |
checking for grep that handles long lines and -e... /bin/grep | |
checking for egrep... /bin/grep -E | |
checking for a sed that does not truncate output... /bin/sed | |
checking build system type... x86_64-unknown-linux-gnu | |
checking host system type... x86_64-unknown-linux-gnu | |
checking target system type... x86_64-unknown-linux-gnu | |
checking for cc... cc | |
checking whether the C compiler works... yes | |
checking for C compiler default output file name... a.out | |
checking for suffix of executables... | |
checking whether we are cross compiling... no | |
checking for suffix of object files... o | |
checking whether we are using the GNU C compiler... yes | |
checking whether cc accepts -g... yes | |
checking for cc option to accept ISO C89... none needed | |
checking how to run the C preprocessor... cc -E | |
checking for icc... no | |
checking for suncc... no | |
checking whether cc understands -c and -o together... yes | |
checking how to run the C preprocessor... cc -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 minix/config.h usability... no | |
checking minix/config.h presence... no | |
checking for minix/config.h... no | |
checking whether it is safe to define __EXTENSIONS__... yes | |
checking whether ln -s works... yes | |
checking for system library directory... lib | |
checking whether to enable runpaths... yes | |
checking if compiler supports -R... no | |
checking if compiler supports -Wl,-rpath,... yes | |
checking for gawk... gawk | |
checking for bison... bison -y | |
checking for bison version... 2.4 (ok) | |
checking for re2c... no | |
configure: WARNING: You will need re2c 0.13.4 or later if you want to regenerate PHP parsers. | |
checking whether to enable computed goto gcc extension with re2c... no | |
checking whether to force non-PIC code in shared modules... no | |
checking whether /dev/urandom exists... yes | |
checking for pthreads_cflags... -pthread | |
checking for pthreads_lib... | |
Configuring SAPI modules | |
checking for AOLserver support... no | |
checking for Apache 1.x module support via DSO through APXS... no | |
checking for Apache 1.x module support... no | |
checking whether to enable Apache charset compatibility option... no | |
checking for Apache 2.0 filter-module support via DSO through APXS... no | |
checking for Apache 2.0 handler-module support via DSO through APXS... yes | |
checking for Apache 1.x (hooks) module support via DSO through APXS... no | |
checking for Apache 1.x (hooks) module support... no | |
checking whether to enable Apache charset compatibility option... no | |
checking for Caudium support... no | |
checking for CLI build... yes | |
checking for Continuity support... no | |
checking for embedded SAPI library support... no | |
checking for FPM build... yes | |
checking for setenv... yes | |
checking for clearenv... yes | |
checking for setproctitle... no | |
checking for library containing socket... none required | |
checking for library containing inet_addr... none required | |
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 stdio.h usability... yes | |
checking stdio.h presence... yes | |
checking for stdio.h... yes | |
checking for stdlib.h... (cached) yes | |
checking for unistd.h... (cached) yes | |
checking sys/uio.h usability... yes | |
checking sys/uio.h presence... yes | |
checking for sys/uio.h... yes | |
checking sys/select.h usability... yes | |
checking sys/select.h presence... yes | |
checking for sys/select.h... yes | |
checking sys/socket.h usability... yes | |
checking sys/socket.h presence... yes | |
checking for sys/socket.h... yes | |
checking sys/time.h usability... yes | |
checking sys/time.h presence... yes | |
checking for sys/time.h... yes | |
checking arpa/inet.h usability... yes | |
checking arpa/inet.h presence... yes | |
checking for arpa/inet.h... yes | |
checking netinet/in.h usability... yes | |
checking netinet/in.h presence... yes | |
checking for netinet/in.h... yes | |
checking sysexits.h usability... yes | |
checking sysexits.h presence... yes | |
checking for sysexits.h... yes | |
checking for prctl... yes | |
checking for clock_gettime... no | |
checking for clock_gettime in -lrt... yes | |
checking for ptrace... yes | |
checking whether ptrace works... yes | |
checking for proc mem file... mem | |
checking if gcc supports __sync_bool_compare_and_swap... yes | |
checking for TCP_INFO... yes | |
checking for sysconf... yes | |
checking for times... yes | |
checking for kqueue... no | |
checking for port framework... no | |
checking for /dev/poll... no | |
checking for epoll... yes | |
checking for poll... yes | |
checking for select... yes | |
checking for Zeus ISAPI support... no | |
checking for LiteSpeed support... no | |
checking for Milter support... no | |
checking for NSAPI support... no | |
checking for PHTTPD support... no | |
checking for Pi3Web support... no | |
checking whether Roxen module is build using ZTS... no | |
checking for Roxen/Pike support... | |
checking for thttpd... no | |
checking for TUX... no | |
checking for webjames... no | |
checking for CGI build... yes | |
checking for socklen_t in sys/socket.h... yes | |
checking for sun_len in sys/un.h... no | |
checking whether cross-process locking is required by accept()... no | |
checking for chosen SAPI module... apache2handler | |
checking for executable SAPI binaries... cli fpm cgi | |
Running system checks | |
checking for sendmail... /usr/sbin/sendmail | |
checking whether system uses EBCDIC... no | |
checking whether byte ordering is bigendian... no | |
checking whether writing to stdout works... This is the test message -- yes | |
checking for socket... yes | |
checking for socketpair... yes | |
checking for htonl... yes | |
checking for gethostname... yes | |
checking for gethostbyaddr... yes | |
checking for yp_get_default_domain... no | |
checking for __yp_get_default_domain... no | |
checking for yp_get_default_domain in -lnsl... yes | |
checking for dlopen... no | |
checking for __dlopen... no | |
checking for dlopen in -ldl... yes | |
checking for sin in -lm... yes | |
checking for inet_aton... yes | |
checking for ANSI C header files... (cached) yes | |
checking for dirent.h that defines DIR... yes | |
checking for library containing opendir... none required | |
checking for inttypes.h... (cached) yes | |
checking for stdint.h... (cached) yes | |
checking for dirent.h... yes | |
checking for ApplicationServices/ApplicationServices.h... no | |
checking for sys/param.h... yes | |
checking for sys/types.h... (cached) yes | |
checking for sys/time.h... (cached) yes | |
checking for netinet/in.h... (cached) yes | |
checking for alloca.h... yes | |
checking for arpa/inet.h... (cached) yes | |
checking for arpa/nameser.h... yes | |
checking for assert.h... yes | |
checking for crypt.h... yes | |
checking for dns.h... no | |
checking for fcntl.h... (cached) yes | |
checking for grp.h... yes | |
checking for ieeefp.h... no | |
checking for langinfo.h... yes | |
checking for limits.h... yes | |
checking for locale.h... yes | |
checking for monetary.h... yes | |
checking for netdb.h... yes | |
checking for pwd.h... yes | |
checking for resolv.h... yes | |
checking for signal.h... yes | |
checking for stdarg.h... yes | |
checking for stdlib.h... (cached) yes | |
checking for string.h... (cached) yes | |
checking for syslog.h... yes | |
checking for sysexits.h... (cached) yes | |
checking for sys/ioctl.h... yes | |
checking for sys/file.h... yes | |
checking for sys/mman.h... yes | |
checking for sys/mount.h... yes | |
checking for sys/poll.h... yes | |
checking for sys/resource.h... yes | |
checking for sys/select.h... (cached) yes | |
checking for sys/socket.h... (cached) yes | |
checking for sys/stat.h... (cached) yes | |
checking for sys/statfs.h... yes | |
checking for sys/statvfs.h... yes | |
checking for sys/vfs.h... yes | |
checking for sys/sysexits.h... no | |
checking for sys/varargs.h... no | |
checking for sys/wait.h... yes | |
checking for sys/loadavg.h... no | |
checking for termios.h... yes | |
checking for unistd.h... (cached) yes | |
checking for unix.h... no | |
checking for utime.h... yes | |
checking for sys/utsname.h... yes | |
checking for sys/ipc.h... yes | |
checking for dlfcn.h... yes | |
checking for assert.h... (cached) yes | |
checking for fopencookie... yes | |
checking for broken getcwd... no | |
checking for broken libc stdio... yes | |
checking whether struct tm is in sys/time.h or time.h... time.h | |
checking for struct tm.tm_zone... yes | |
checking for missing declarations of reentrant functions... done | |
checking for fclose declaration... ok | |
checking for tm_gmtoff in struct tm... yes | |
checking for struct flock... yes | |
checking for socklen_t... yes | |
checking size of size_t... 8 | |
checking size of long long... 8 | |
checking size of long long int... 8 | |
checking size of long... 8 | |
checking size of int... 4 | |
checking size of intmax_t... 8 | |
checking size of ssize_t... 8 | |
checking size of ptrdiff_t... 8 | |
checking for struct stat.st_blksize... yes | |
checking for struct stat.st_blocks... yes | |
checking for struct stat.st_rdev... yes | |
checking for size_t... yes | |
checking for uid_t in sys/types.h... yes | |
checking for struct sockaddr_storage... yes | |
checking for field sa_len in struct sockaddr... no | |
checking for IPv6 support... yes | |
checking for vprintf... yes | |
checking for _doprnt... no | |
checking for alphasort... yes | |
checking for asctime_r... yes | |
checking for chroot... yes | |
checking for ctime_r... yes | |
checking for cuserid... yes | |
checking for crypt... no | |
checking for flock... yes | |
checking for ftok... yes | |
checking for funopen... no | |
checking for gai_strerror... yes | |
checking for gcvt... yes | |
checking for getloadavg... yes | |
checking for getlogin... yes | |
checking for getprotobyname... yes | |
checking for getprotobynumber... yes | |
checking for getservbyname... yes | |
checking for getservbyport... yes | |
checking for gethostname... (cached) yes | |
checking for getrusage... yes | |
checking for gettimeofday... yes | |
checking for gmtime_r... yes | |
checking for getpwnam_r... yes | |
checking for getgrnam_r... yes | |
checking for getpwuid_r... yes | |
checking for grantpt... yes | |
checking for inet_ntoa... yes | |
checking for inet_ntop... yes | |
checking for inet_pton... yes | |
checking for isascii... yes | |
checking for link... yes | |
checking for localtime_r... yes | |
checking for lockf... yes | |
checking for lchown... yes | |
checking for lrand48... yes | |
checking for memcpy... yes | |
checking for memmove... yes | |
checking for mkstemp... yes | |
checking for mmap... yes | |
checking for nl_langinfo... yes | |
checking for perror... yes | |
checking for poll... yes | |
checking for ptsname... yes | |
checking for putenv... yes | |
checking for realpath... yes | |
checking for random... yes | |
checking for rand_r... yes | |
checking for scandir... yes | |
checking for setitimer... yes | |
checking for setlocale... yes | |
checking for localeconv... yes | |
checking for setenv... (cached) yes | |
checking for setpgid... yes | |
checking for setsockopt... yes | |
checking for setvbuf... yes | |
checking for shutdown... yes | |
checking for sin... yes | |
checking for snprintf... yes | |
checking for srand48... yes | |
checking for srandom... yes | |
checking for statfs... yes | |
checking for statvfs... yes | |
checking for std_syslog... no | |
checking for strcasecmp... yes | |
checking for strcoll... yes | |
checking for strdup... yes | |
checking for strerror... yes | |
checking for strftime... yes | |
checking for strnlen... yes | |
checking for strptime... yes | |
checking for strstr... yes | |
checking for strtok_r... yes | |
checking for symlink... yes | |
checking for tempnam... yes | |
checking for tzset... yes | |
checking for unlockpt... yes | |
checking for unsetenv... yes | |
checking for usleep... yes | |
checking for utime... yes | |
checking for vsnprintf... yes | |
checking for vasprintf... yes | |
checking for asprintf... yes | |
checking for nanosleep... yes | |
checking for nanosleep in -lrt... yes | |
checking for getaddrinfo... yes | |
checking for __sync_fetch_and_add... yes | |
checking for strlcat... no | |
checking for strlcpy... no | |
checking for getopt... yes | |
checking for utime.h... (cached) yes | |
checking whether utime accepts a null argument... yes | |
checking for working alloca.h... yes | |
checking for alloca... yes | |
checking for declared timezone... yes | |
checking for type of reentrant time-related functions... POSIX | |
checking for readdir_r... yes | |
checking for type of readdir_r... POSIX | |
checking for in_addr_t... yes | |
checking for crypt_r... no | |
General settings | |
checking whether to include gcov symbols... no | |
checking whether to include debugging symbols... no | |
checking layout of installed files... PHP | |
checking path to configuration file... DEFAULT | |
checking where to scan for configuration files... | |
checking whether to enable PHP's own SIGCHLD handler... no | |
checking whether to explicitly link against libgcc... no | |
checking whether to enable short tags by default... yes | |
checking whether to enable dmalloc... no | |
checking whether to enable IPv6 support... yes | |
checking whether to enable DTrace support... no | |
checking how big to make fd sets... using system default | |
Configuring extensions | |
checking size of long... (cached) 8 | |
checking size of int... (cached) 4 | |
checking for int32_t... yes | |
checking for uint32_t... yes | |
checking for sys/types.h... (cached) yes | |
checking for inttypes.h... (cached) yes | |
checking for stdint.h... (cached) yes | |
checking for string.h... (cached) yes | |
checking for stdlib.h... (cached) yes | |
checking for strtoll... yes | |
checking for atoll... yes | |
checking for strftime... (cached) yes | |
checking which regex library to use... php | |
checking whether to enable LIBXML support... yes | |
checking libxml2 install dir... no | |
checking for xml2-config path... /usr/bin/xml2-config | |
checking whether libxml build works... yes | |
checking for OpenSSL support... yes | |
checking for Kerberos support... yes | |
checking for krb5-config... /usr/bin/krb5-config | |
checking for DSA_get_default_method in -lssl... yes | |
checking for X509_free in -lcrypto... yes | |
checking for pkg-config... /usr/bin/pkg-config | |
checking for PCRE library to use... bundled | |
checking whether to enable the SQLite3 extension... yes | |
checking bundled sqlite3 library... yes | |
checking for ZLIB support... yes | |
checking if the location of ZLIB install directory is defined... yes | |
checking for zlib version >= 1.2.0.4... 1.2.3 | |
checking for gzgets in -lz... yes | |
checking whether to enable bc style precision math functions... yes | |
checking for BZip2 support... yes | |
checking for BZip2 in default path... found in /usr | |
checking for BZ2_bzerror in -lbz2... yes | |
checking whether to enable calendar conversion support... yes | |
checking whether to enable ctype functions... yes | |
checking for cURL support... yes | |
checking if we should use cURL for url streams... no | |
checking for cURL in default path... found in /usr | |
checking for cURL 7.10.5 or greater... libcurl 7.19.7 | |
checking for SSL support in libcurl... yes | |
checking how to run the C preprocessor... cc -E | |
checking for openssl support in libcurl... no | |
checking for gnutls support in libcurl... no | |
checking for curl_easy_perform in -lcurl... yes | |
checking for curl_version_info in -lcurl... yes | |
checking for curl_easy_strerror in -lcurl... yes | |
checking for curl_multi_strerror in -lcurl... yes | |
checking for QDBM support... no | |
checking for GDBM support... no | |
checking for NDBM support... no | |
checking for TCADB support... no | |
checking for Berkeley DB4 support... no | |
checking for Berkeley DB3 support... no | |
checking for Berkeley DB2 support... no | |
checking for DB1 support... no | |
checking for DBM support... no | |
checking for CDB support... no | |
checking for INI File support... no | |
checking for FlatFile support... no | |
checking whether to enable DBA interface... no | |
checking whether to enable DOM support... yes | |
checking for xml2-config path... (cached) /usr/bin/xml2-config | |
checking whether libxml build works... (cached) yes | |
checking for ENCHANT support... no | |
checking whether to enable EXIF (metadata from images) support... yes | |
checking for fileinfo support... yes | |
checking for utimes... yes | |
checking for strndup... yes | |
checking whether to enable input filter support... yes | |
checking pcre install prefix... no | |
checking whether to enable FTP support... yes | |
checking OpenSSL dir for FTP... no | |
checking for GD support... yes | |
checking for the location of libvpx... no | |
checking for the location of libjpeg... yes | |
checking for the location of libpng... yes | |
checking for the location of libXpm... no | |
checking for FreeType 2... yes | |
checking for T1lib support... no | |
checking whether to enable truetype string function in GD... yes | |
checking whether to enable JIS-mapped Japanese font support in GD... no | |
checking for fabsf... yes | |
checking for floorf... yes | |
checking for jpeg_read_header in -ljpeg... yes | |
If configure fails try --with-vpx-dir=<DIR> | |
checking for png_write_image in -lpng... yes | |
If configure fails try --with-xpm-dir=<DIR> | |
checking for GNU gettext support... no | |
checking for GNU MP support... no | |
checking for mhash support... yes | |
checking whether to enable hash support... yes | |
checking whether byte ordering is bigendian... (cached) no | |
checking size of short... 2 | |
checking size of int... (cached) 4 | |
checking size of long... (cached) 8 | |
checking size of long long... (cached) 8 | |
checking for iconv support... yes | |
checking for iconv... yes | |
checking if iconv is glibc's... yes | |
checking if iconv supports errno... yes | |
checking if your cpp allows macro usage in include lines... yes | |
checking for IMAP support... yes | |
checking for IMAP Kerberos support... yes | |
checking for IMAP SSL support... yes | |
checking for utf8_mime2text signature... new | |
checking for U8T_DECOMPOSE... | |
checking for pam_start in -lpam... no | |
checking for crypt in -lcrypt... yes | |
checking whether rfc822_output_address_list function present... yes | |
checking whether build with IMAP works... yes | |
checking for InterBase support... no | |
checking whether to enable internationalization support... yes | |
checking for icu-config... /usr/bin/icu-config | |
checking for location of ICU headers and libraries... /usr | |
checking for ICU 3.4 or greater... found 4.2.1 | |
checking for g++... g++ | |
checking whether we are using the GNU C++ compiler... yes | |
checking whether g++ accepts -g... yes | |
checking how to run the C++ preprocessor... g++ -E | |
checking whether to enable JavaScript Object Serialization support... yes | |
checking for ANSI C header files... (cached) yes | |
checking for LDAP support... no | |
checking for LDAP Cyrus SASL support... no | |
checking whether to enable multibyte string support... yes | |
checking whether to enable multibyte regex support... yes | |
checking whether to check multibyte regex backtrack... yes | |
checking for external libmbfl... no | |
checking for external oniguruma... no | |
checking for variable length prototypes and stdarg.h... yes | |
checking for stdlib.h... (cached) yes | |
checking for string.h... (cached) yes | |
checking for strings.h... (cached) yes | |
checking for unistd.h... (cached) yes | |
checking for sys/time.h... (cached) yes | |
checking sys/times.h usability... yes | |
checking sys/times.h presence... yes | |
checking for sys/times.h... yes | |
checking for stdarg.h... (cached) yes | |
checking size of int... (cached) 4 | |
checking size of short... (cached) 2 | |
checking size of long... (cached) 8 | |
checking for an ANSI C-conforming const... yes | |
checking whether time.h and sys/time.h may both be included... yes | |
checking for working alloca.h... (cached) yes | |
checking for alloca... (cached) yes | |
checking for working memcmp... yes | |
checking for stdarg.h... (cached) yes | |
checking for mcrypt support... yes | |
checking for libmcrypt version... >= 2.5.6 | |
checking for mcrypt_module_open in -lmcrypt... no | |
checking for mcrypt_module_open in -lmcrypt... yes | |
checking for MSSQL support via FreeTDS... no | |
checking for MySQL support... yes | |
checking for specified location of the MySQL UNIX socket... no | |
checking for MySQL UNIX socket location... no | |
checking for MySQLi support... yes | |
checking whether to enable embedded MySQLi support... no | |
checking for Oracle Database OCI8 support... no | |
checking whether to enable pcntl support... no | |
checking whether to enable PDO support... yes | |
checking for PDO_DBLIB support via FreeTDS... no | |
checking for Firebird support for PDO... no | |
checking for MySQL support for PDO... yes | |
checking for PDO includes... checking for PDO includes... /root/sources/php-5.4.42/ext | |
checking Oracle OCI support for PDO... no | |
checking for ODBC v3 support for PDO... no | |
checking for PostgreSQL support for PDO... no | |
checking for sqlite 3 support for PDO... yes | |
checking for PDO includes... (cached) /root/sources/php-5.4.42/ext | |
checking for usleep... (cached) yes | |
checking for nanosleep... (cached) yes | |
checking time.h usability... yes | |
checking time.h presence... yes | |
checking for time.h... yes | |
checking for fdatasync in -lrt... yes | |
checking for PostgreSQL support... no | |
checking for phar archive support... yes | |
checking for phar openssl support... yes | |
checking whether to enable POSIX-like functions... yes | |
checking sys/mkdev.h usability... no | |
checking sys/mkdev.h presence... no | |
checking for sys/mkdev.h... no | |
checking for seteuid... yes | |
checking for setegid... yes | |
checking for setsid... yes | |
checking for getsid... yes | |
checking for setpgid... (cached) yes | |
checking for getpgid... yes | |
checking for ctermid... yes | |
checking for mkfifo... yes | |
checking for mknod... yes | |
checking for getrlimit... yes | |
checking for getlogin... (cached) yes | |
checking for getgroups... yes | |
checking for makedev... no | |
checking for initgroups... yes | |
checking for getpwuid_r... (cached) yes | |
checking for getgrgid_r... yes | |
checking for working ttyname_r() implementation... no, posix_ttyname() will be thread-unsafe | |
checking for utsname.domainname... yes | |
checking for PSPELL support... no | |
checking for libedit readline replacement... no | |
checking for readline support... no | |
checking for recode support... no | |
checking whether to enable PHP sessions... yes | |
checking for mm support... no | |
checking whether pwrite works... yes | |
checking whether pread works... yes | |
checking whether to enable shmop support... no | |
checking whether to enable SimpleXML support... yes | |
checking for xml2-config path... (cached) /usr/bin/xml2-config | |
checking whether libxml build works... (cached) yes | |
checking for SNMP support... no | |
checking OpenSSL dir for SNMP... no | |
checking whether to enable SOAP support... yes | |
checking for xml2-config path... (cached) /usr/bin/xml2-config | |
checking whether libxml build works... (cached) yes | |
checking whether to enable sockets support... yes | |
checking for struct cmsghdr... yes | |
checking for hstrerror... yes | |
checking for socketpair... (cached) yes | |
checking for if_nametoindex... yes | |
checking for if_indextoname... yes | |
checking for netdb.h... (cached) yes | |
checking netinet/tcp.h usability... yes | |
checking netinet/tcp.h presence... yes | |
checking for netinet/tcp.h... yes | |
checking sys/un.h usability... yes | |
checking sys/un.h presence... yes | |
checking for sys/un.h... yes | |
checking sys/sockio.h usability... no | |
checking sys/sockio.h presence... no | |
checking for sys/sockio.h... no | |
checking for errno.h... (cached) yes | |
checking for field ss_family in struct sockaddr_storage... yes | |
checking whether zend_object_value is packed... no | |
checking whether flush should be called explicitly after a buffered io... no | |
checking for crypt in -lcrypt... (cached) yes | |
checking for standard DES crypt... yes | |
checking for extended DES crypt... no | |
checking for MD5 crypt... yes | |
checking for Blowfish crypt... no | |
checking for SHA512 crypt... no | |
checking for SHA256 crypt... no | |
checking whether the compiler supports __alignof__... yes | |
checking whether the compiler supports aligned attribute... yes | |
checking for getcwd... yes | |
checking for getwd... yes | |
checking for asinh... yes | |
checking for acosh... yes | |
checking for atanh... yes | |
checking for log1p... yes | |
checking for hypot... yes | |
checking for glob... yes | |
checking for strfmon... yes | |
checking for nice... yes | |
checking for fpclass... no | |
checking for isinf... yes | |
checking for isnan... yes | |
checking for mempcpy... yes | |
checking for strpncpy... no | |
checking for working POSIX fnmatch... yes | |
checking for fork... yes | |
checking if your OS can spawn processes with inherited handles... yes | |
checking for res_nsearch... no | |
checking for __res_nsearch... yes | |
checking for dns_search... no | |
checking for __dns_search... no | |
checking for dns_search in -lresolv... no | |
checking for __dns_search in -lresolv... no | |
checking for dns_search in -lbind... no | |
checking for __dns_search in -lbind... no | |
checking for dns_search in -lsocket... no | |
checking for __dns_search in -lsocket... no | |
checking for dn_expand... no | |
checking for __dn_expand... yes | |
checking for dn_skipname... no | |
checking for __dn_skipname... yes | |
checking for res_search... no | |
checking for __res_search... yes | |
checking whether atof() accepts NAN... yes | |
checking whether atof() accepts INF... yes | |
checking whether HUGE_VAL == INF... yes | |
checking whether HUGE_VAL + -HUGEVAL == NAN... yes | |
checking whether strptime() declaration fails... yes | |
checking wchar.h usability... yes | |
checking wchar.h presence... yes | |
checking for wchar.h... yes | |
checking for mblen... yes | |
checking for mbrlen... yes | |
checking for mbsinit... yes | |
checking for mbstate_t... yes | |
checking atomic.h usability... no | |
checking atomic.h presence... no | |
checking for atomic.h... no | |
checking for Sybase-CT support... no | |
checking whether to enable System V IPC support... yes | |
checking sys/msg.h usability... yes | |
checking sys/msg.h presence... yes | |
checking for sys/msg.h... yes | |
checking whether to enable System V semaphore support... yes | |
checking for union semun... no | |
checking whether to enable System V shared memory support... yes | |
checking for TIDY support... no | |
checking whether to enable tokenizer support... yes | |
checking whether to enable WDDX support... no | |
checking libexpat dir for WDDX... no | |
checking whether to enable XML support... yes | |
checking libexpat install dir... no | |
checking for xml2-config path... (cached) /usr/bin/xml2-config | |
checking whether libxml build works... (cached) yes | |
checking whether to enable XMLReader support... yes | |
checking for xml2-config path... (cached) /usr/bin/xml2-config | |
checking whether libxml build works... (cached) yes | |
checking for XMLRPC-EPI support... yes | |
checking libexpat dir for XMLRPC-EPI... no | |
checking iconv dir for XMLRPC-EPI... no | |
checking for xml2-config path... (cached) /usr/bin/xml2-config | |
checking whether libxml build works... (cached) yes | |
checking for ranlib... ranlib | |
checking for inline... inline | |
checking for ANSI C header files... (cached) yes | |
checking xmlparse.h usability... no | |
checking xmlparse.h presence... no | |
checking for xmlparse.h... no | |
checking xmltok.h usability... no | |
checking xmltok.h presence... no | |
checking for xmltok.h... no | |
checking for stdlib.h... (cached) yes | |
checking for strings.h... (cached) yes | |
checking for string.h... (cached) yes | |
checking size of char... 1 | |
checking size of int... (cached) 4 | |
checking size of long... (cached) 8 | |
checking size of long long... (cached) 8 | |
checking for size_t... (cached) yes | |
checking whether time.h and sys/time.h may both be included... (cached) yes | |
checking for uid_t in sys/types.h... (cached) yes | |
checking for strtoul... yes | |
checking for strtoull... yes | |
checking for snprintf... (cached) yes | |
checking for strstr... (cached) yes | |
checking for strpbrk... yes | |
checking for strerror... (cached) yes | |
checking for memcpy... (cached) yes | |
checking for memmove... (cached) yes | |
checking whether to enable XMLWriter support... yes | |
checking for xml2-config path... (cached) /usr/bin/xml2-config | |
checking whether libxml build works... (cached) yes | |
checking for XSL support... no | |
checking for zip archive read/writesupport... yes | |
checking pcre install prefix... no | |
checking for the location of zlib... /usr | |
checking whether to enable mysqlnd... no | |
checking whether to disable compressed protocol support in mysqlnd... yes | |
checking whether int8 exists... no | |
checking whether uint8 exists... no | |
checking whether int16 exists... no | |
checking whether uint16 exists... no | |
checking whether int32 exists... no | |
checking whether uint32 exists... no | |
checking whether uchar exists... no | |
checking whether ulong exists... yes | |
checking whether int8_t exists... yes | |
checking whether uint8_t exists... yes | |
checking whether int16_t exists... yes | |
checking whether uint16_t exists... yes | |
checking whether int32_t exists... yes | |
checking whether uint32_t exists... yes | |
checking whether int64_t exists... yes | |
checking whether uint64_t exists... yes | |
checking whether whether compiler supports Decimal32/64/128 types... yes | |
Configuring PEAR | |
checking whether to install PEAR... yes | |
Configuring Zend | |
checking for bison version... (cached) 2.4 (ok) | |
checking for inttypes.h... (cached) yes | |
checking for stdint.h... (cached) yes | |
checking for limits.h... (cached) yes | |
checking malloc.h usability... yes | |
checking malloc.h presence... yes | |
checking for malloc.h... yes | |
checking for string.h... (cached) yes | |
checking for unistd.h... (cached) yes | |
checking for stdarg.h... (cached) yes | |
checking for sys/types.h... (cached) yes | |
checking for sys/time.h... (cached) yes | |
checking for signal.h... (cached) yes | |
checking for unix.h... (cached) no | |
checking for stdlib.h... (cached) yes | |
checking for dlfcn.h... (cached) yes | |
checking for size_t... (cached) yes | |
checking return type of signal handlers... void | |
checking for uint... yes | |
checking for ulong... yes | |
checking for int32_t... yes | |
checking for uint32_t... yes | |
checking for vprintf... (cached) yes | |
checking for _doprnt... (cached) no | |
checking for working memcmp... (cached) yes | |
checking for working alloca.h... (cached) yes | |
checking for alloca... (cached) yes | |
checking for memcpy... (cached) yes | |
checking for strdup... (cached) yes | |
checking for getpid... yes | |
checking for kill... yes | |
checking for strtod... yes | |
checking for strtol... yes | |
checking for finite... yes | |
checking for fpclass... (cached) no | |
checking for sigsetjmp... no | |
checking whether sprintf is broken... no | |
checking for finite... (cached) yes | |
checking for isfinite... no | |
checking for isinf... (cached) yes | |
checking for isnan... (cached) yes | |
checking whether fp_except is defined... no | |
checking for usable _FPU_SETCW... yes | |
checking for usable fpsetprec... no | |
checking for usable _controlfp... no | |
checking for usable _controlfp_s... no | |
checking whether FPU control word can be manipulated by inline assembler... yes | |
checking whether double cast to long preserves least significant bits... no | |
checking for dlfcn.h... (cached) yes | |
checking whether dlsym() requires a leading underscore in symbol names... no | |
checking virtual machine dispatch method... CALL | |
checking whether to enable thread-safety... yes | |
checking whether to enable inline optimization for GCC... yes | |
checking whether to enable Zend debugging... no | |
checking for inline... (cached) inline | |
checking target system is Darwin... no | |
checking for MM alignment and log values... done | |
checking for memory allocation using mmap(MAP_ANON)... yes | |
checking for memory allocation using mmap("/dev/zero")... yes | |
checking for mremap... yes | |
checking for sigaction... yes | |
checking whether to enable zend signal handling... no | |
Configuring TSRM | |
checking for stdarg.h... (cached) yes | |
checking for sigprocmask... yes | |
checking for pthreads_cflags... (cached) -pthread | |
checking for pthreads_lib... (cached) | |
checking for POSIX threads... yes | |
Configuring libtool | |
checking for ld used by /root/sources/php-5.4.42/meta_ccld... /usr/bin/ld | |
checking if the linker (/usr/bin/ld) is GNU ld... yes | |
checking for /usr/bin/ld option to reload object files... -r | |
checking for BSD-compatible nm... /usr/bin/nm -B | |
checking how to recognize dependent libraries... pass_all | |
checking how to run the C++ preprocessor... g++ -E | |
checking the maximum length of command line arguments... 1966080 | |
checking command to parse /usr/bin/nm -B output from /root/sources/php-5.4.42/meta_ccld object... ok | |
checking for objdir... .libs | |
checking for ar... ar | |
checking for ranlib... (cached) ranlib | |
checking for strip... strip | |
checking if /root/sources/php-5.4.42/meta_ccld supports -fno-rtti -fno-exceptions... no | |
checking for /root/sources/php-5.4.42/meta_ccld option to produce PIC... -fPIC | |
checking if /root/sources/php-5.4.42/meta_ccld PIC flag -fPIC works... yes | |
checking if /root/sources/php-5.4.42/meta_ccld static flag -static works... no | |
checking if /root/sources/php-5.4.42/meta_ccld supports -c -o file.o... yes | |
checking whether the /root/sources/php-5.4.42/meta_ccld linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes | |
checking whether -lc should be explicitly linked in... no | |
checking dynamic linker characteristics... GNU/Linux ld.so | |
checking how to hardcode library paths into programs... immediate | |
checking whether stripping libraries is possible... yes | |
checking if libtool supports shared libraries... yes | |
checking whether to build shared libraries... yes | |
checking whether to build static libraries... no | |
creating libtool | |
appending configuration tag "CXX" to libtool | |
checking for ld used by g++... /usr/bin/ld -m elf_x86_64 | |
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes | |
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes | |
checking for g++ option to produce PIC... -fPIC | |
checking if g++ PIC flag -fPIC works... yes | |
checking if g++ static flag -static works... no | |
checking if g++ supports -c -o file.o... yes | |
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes | |
checking dynamic linker characteristics... GNU/Linux ld.so | |
(cached) (cached) checking how to hardcode library paths into programs... immediate | |
Generating files | |
configure: creating ./config.status | |
creating main/internal_functions.c | |
creating main/internal_functions_cli.c | |
+--------------------------------------------------------------------+ | |
| License: | | |
| This software is subject to the PHP License, available in this | | |
| distribution in the file LICENSE. By continuing this installation | | |
| process, you are bound by the terms of this license agreement. | | |
| If you do not agree with the terms of this license, you must abort | | |
| the installation process at this point. | | |
+--------------------------------------------------------------------+ | |
Thank you for using PHP. | |
config.status: creating php5.spec | |
config.status: creating main/build-defs.h | |
config.status: creating scripts/phpize | |
config.status: creating scripts/man1/phpize.1 | |
config.status: creating scripts/php-config | |
config.status: creating scripts/man1/php-config.1 | |
config.status: creating sapi/cli/php.1 | |
config.status: creating sapi/fpm/php-fpm.conf | |
config.status: creating sapi/fpm/init.d.php-fpm | |
config.status: creating sapi/fpm/php-fpm.service | |
config.status: creating sapi/fpm/php-fpm.8 | |
config.status: creating sapi/fpm/status.html | |
config.status: creating sapi/cgi/php-cgi.1 | |
config.status: creating ext/phar/phar.1 | |
config.status: creating ext/phar/phar.phar.1 | |
config.status: creating main/php_config.h | |
config.status: executing default commands | |
configure: WARNING: unrecognized options: --enable-opcache | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/date/lib -Iext/date/ -I/root/sources/php-5.4.42/ext/date/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/date/php_date.c -o ext/date/php_date.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/date/lib -Iext/date/ -I/root/sources/php-5.4.42/ext/date/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/date/lib/astro.c -o ext/date/lib/astro.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/date/lib -Iext/date/ -I/root/sources/php-5.4.42/ext/date/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/date/lib/dow.c -o ext/date/lib/dow.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/date/lib -Iext/date/ -I/root/sources/php-5.4.42/ext/date/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/date/lib/parse_date.c -o ext/date/lib/parse_date.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/date/lib -Iext/date/ -I/root/sources/php-5.4.42/ext/date/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/date/lib/parse_tz.c -o ext/date/lib/parse_tz.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/date/lib -Iext/date/ -I/root/sources/php-5.4.42/ext/date/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/date/lib/timelib.c -o ext/date/lib/timelib.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/date/lib -Iext/date/ -I/root/sources/php-5.4.42/ext/date/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/date/lib/tm2unixtime.c -o ext/date/lib/tm2unixtime.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/date/lib -Iext/date/ -I/root/sources/php-5.4.42/ext/date/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/date/lib/unixtime2tm.c -o ext/date/lib/unixtime2tm.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/date/lib -Iext/date/ -I/root/sources/php-5.4.42/ext/date/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/date/lib/parse_iso_intervals.c -o ext/date/lib/parse_iso_intervals.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/date/lib -Iext/date/ -I/root/sources/php-5.4.42/ext/date/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/date/lib/interval.c -o ext/date/lib/interval.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Dregexec=php_regexec -Dregerror=php_regerror -Dregfree=php_regfree -Dregcomp=php_regcomp -Iext/ereg/ -I/root/sources/php-5.4.42/ext/ereg/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/ereg/ereg.c -o ext/ereg/ereg.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Dregexec=php_regexec -Dregerror=php_regerror -Dregfree=php_regfree -Dregcomp=php_regcomp -Iext/ereg/ -I/root/sources/php-5.4.42/ext/ereg/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/ereg/regex/regcomp.c -o ext/ereg/regex/regcomp.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Dregexec=php_regexec -Dregerror=php_regerror -Dregfree=php_regfree -Dregcomp=php_regcomp -Iext/ereg/ -I/root/sources/php-5.4.42/ext/ereg/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/ereg/regex/regexec.c -o ext/ereg/regex/regexec.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Dregexec=php_regexec -Dregerror=php_regerror -Dregfree=php_regfree -Dregcomp=php_regcomp -Iext/ereg/ -I/root/sources/php-5.4.42/ext/ereg/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/ereg/regex/regerror.c -o ext/ereg/regex/regerror.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Dregexec=php_regexec -Dregerror=php_regerror -Dregfree=php_regfree -Dregcomp=php_regcomp -Iext/ereg/ -I/root/sources/php-5.4.42/ext/ereg/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/ereg/regex/regfree.c -o ext/ereg/regex/regfree.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/libxml/ -I/root/sources/php-5.4.42/ext/libxml/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/libxml/libxml.c -o ext/libxml/libxml.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/openssl/ -I/root/sources/php-5.4.42/ext/openssl/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/openssl/openssl.c -o ext/openssl/openssl.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/openssl/ -I/root/sources/php-5.4.42/ext/openssl/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/openssl/xp_ssl.c -o ext/openssl/xp_ssl.lo | |
/root/sources/php-5.4.42/ext/openssl/xp_ssl.c: In function ‘php_openssl_setup_crypto’: | |
/root/sources/php-5.4.42/ext/openssl/xp_ssl.c:330: warning: assignment discards qualifiers from pointer target type | |
/root/sources/php-5.4.42/ext/openssl/xp_ssl.c:338: warning: assignment discards qualifiers from pointer target type | |
/root/sources/php-5.4.42/ext/openssl/xp_ssl.c:343: warning: assignment discards qualifiers from pointer target type | |
/root/sources/php-5.4.42/ext/openssl/xp_ssl.c:347: warning: assignment discards qualifiers from pointer target type | |
/root/sources/php-5.4.42/ext/openssl/xp_ssl.c:351: warning: assignment discards qualifiers from pointer target type | |
/root/sources/php-5.4.42/ext/openssl/xp_ssl.c:355: warning: assignment discards qualifiers from pointer target type | |
/root/sources/php-5.4.42/ext/openssl/xp_ssl.c:363: warning: assignment discards qualifiers from pointer target type | |
/root/sources/php-5.4.42/ext/openssl/xp_ssl.c:368: warning: assignment discards qualifiers from pointer target type | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -DHAVE_CONFIG_H -I/root/sources/php-5.4.42/ext/pcre/pcrelib -Iext/pcre/ -I/root/sources/php-5.4.42/ext/pcre/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/pcre/pcrelib/pcre_chartables.c -o ext/pcre/pcrelib/pcre_chartables.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -DHAVE_CONFIG_H -I/root/sources/php-5.4.42/ext/pcre/pcrelib -Iext/pcre/ -I/root/sources/php-5.4.42/ext/pcre/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/pcre/pcrelib/pcre_ucd.c -o ext/pcre/pcrelib/pcre_ucd.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -DHAVE_CONFIG_H -I/root/sources/php-5.4.42/ext/pcre/pcrelib -Iext/pcre/ -I/root/sources/php-5.4.42/ext/pcre/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/pcre/pcrelib/pcre_compile.c -o ext/pcre/pcrelib/pcre_compile.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -DHAVE_CONFIG_H -I/root/sources/php-5.4.42/ext/pcre/pcrelib -Iext/pcre/ -I/root/sources/php-5.4.42/ext/pcre/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/pcre/pcrelib/pcre_config.c -o ext/pcre/pcrelib/pcre_config.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -DHAVE_CONFIG_H -I/root/sources/php-5.4.42/ext/pcre/pcrelib -Iext/pcre/ -I/root/sources/php-5.4.42/ext/pcre/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/pcre/pcrelib/pcre_exec.c -o ext/pcre/pcrelib/pcre_exec.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -DHAVE_CONFIG_H -I/root/sources/php-5.4.42/ext/pcre/pcrelib -Iext/pcre/ -I/root/sources/php-5.4.42/ext/pcre/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/pcre/pcrelib/pcre_fullinfo.c -o ext/pcre/pcrelib/pcre_fullinfo.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -DHAVE_CONFIG_H -I/root/sources/php-5.4.42/ext/pcre/pcrelib -Iext/pcre/ -I/root/sources/php-5.4.42/ext/pcre/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/pcre/pcrelib/pcre_get.c -o ext/pcre/pcrelib/pcre_get.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -DHAVE_CONFIG_H -I/root/sources/php-5.4.42/ext/pcre/pcrelib -Iext/pcre/ -I/root/sources/php-5.4.42/ext/pcre/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/pcre/pcrelib/pcre_globals.c -o ext/pcre/pcrelib/pcre_globals.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -DHAVE_CONFIG_H -I/root/sources/php-5.4.42/ext/pcre/pcrelib -Iext/pcre/ -I/root/sources/php-5.4.42/ext/pcre/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/pcre/pcrelib/pcre_maketables.c -o ext/pcre/pcrelib/pcre_maketables.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -DHAVE_CONFIG_H -I/root/sources/php-5.4.42/ext/pcre/pcrelib -Iext/pcre/ -I/root/sources/php-5.4.42/ext/pcre/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/pcre/pcrelib/pcre_newline.c -o ext/pcre/pcrelib/pcre_newline.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -DHAVE_CONFIG_H -I/root/sources/php-5.4.42/ext/pcre/pcrelib -Iext/pcre/ -I/root/sources/php-5.4.42/ext/pcre/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/pcre/pcrelib/pcre_ord2utf8.c -o ext/pcre/pcrelib/pcre_ord2utf8.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -DHAVE_CONFIG_H -I/root/sources/php-5.4.42/ext/pcre/pcrelib -Iext/pcre/ -I/root/sources/php-5.4.42/ext/pcre/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/pcre/pcrelib/pcre_refcount.c -o ext/pcre/pcrelib/pcre_refcount.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -DHAVE_CONFIG_H -I/root/sources/php-5.4.42/ext/pcre/pcrelib -Iext/pcre/ -I/root/sources/php-5.4.42/ext/pcre/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/pcre/pcrelib/pcre_study.c -o ext/pcre/pcrelib/pcre_study.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -DHAVE_CONFIG_H -I/root/sources/php-5.4.42/ext/pcre/pcrelib -Iext/pcre/ -I/root/sources/php-5.4.42/ext/pcre/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/pcre/pcrelib/pcre_tables.c -o ext/pcre/pcrelib/pcre_tables.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -DHAVE_CONFIG_H -I/root/sources/php-5.4.42/ext/pcre/pcrelib -Iext/pcre/ -I/root/sources/php-5.4.42/ext/pcre/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/pcre/pcrelib/pcre_valid_utf8.c -o ext/pcre/pcrelib/pcre_valid_utf8.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -DHAVE_CONFIG_H -I/root/sources/php-5.4.42/ext/pcre/pcrelib -Iext/pcre/ -I/root/sources/php-5.4.42/ext/pcre/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/pcre/pcrelib/pcre_version.c -o ext/pcre/pcrelib/pcre_version.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -DHAVE_CONFIG_H -I/root/sources/php-5.4.42/ext/pcre/pcrelib -Iext/pcre/ -I/root/sources/php-5.4.42/ext/pcre/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/pcre/pcrelib/pcre_xclass.c -o ext/pcre/pcrelib/pcre_xclass.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -DHAVE_CONFIG_H -I/root/sources/php-5.4.42/ext/pcre/pcrelib -Iext/pcre/ -I/root/sources/php-5.4.42/ext/pcre/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/pcre/pcrelib/pcre_jit_compile.c -o ext/pcre/pcrelib/pcre_jit_compile.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -DHAVE_CONFIG_H -I/root/sources/php-5.4.42/ext/pcre/pcrelib -Iext/pcre/ -I/root/sources/php-5.4.42/ext/pcre/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/pcre/php_pcre.c -o ext/pcre/php_pcre.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -DSQLITE_ENABLE_FTS3=1 -DSQLITE_CORE=1 -DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_THREADSAFE=1 -Iext/sqlite3/ -I/root/sources/php-5.4.42/ext/sqlite3/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/sqlite3/sqlite3.c -o ext/sqlite3/sqlite3.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -DSQLITE_ENABLE_FTS3=1 -DSQLITE_CORE=1 -DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_THREADSAFE=1 -Iext/sqlite3/ -I/root/sources/php-5.4.42/ext/sqlite3/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/sqlite3/libsqlite/sqlite3.c -o ext/sqlite3/libsqlite/sqlite3.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/zlib/ -I/root/sources/php-5.4.42/ext/zlib/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/zlib/zlib.c -o ext/zlib/zlib.lo | |
/root/sources/php-5.4.42/ext/zlib/zlib.c:1023: warning: initialization from incompatible pointer type | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/zlib/ -I/root/sources/php-5.4.42/ext/zlib/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/zlib/zlib_fopen_wrapper.c -o ext/zlib/zlib_fopen_wrapper.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/zlib/ -I/root/sources/php-5.4.42/ext/zlib/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/zlib/zlib_filter.c -o ext/zlib/zlib_filter.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/bcmath/libbcmath/src -Iext/bcmath/ -I/root/sources/php-5.4.42/ext/bcmath/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/bcmath/bcmath.c -o ext/bcmath/bcmath.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/bcmath/libbcmath/src -Iext/bcmath/ -I/root/sources/php-5.4.42/ext/bcmath/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/bcmath/libbcmath/src/add.c -o ext/bcmath/libbcmath/src/add.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/bcmath/libbcmath/src -Iext/bcmath/ -I/root/sources/php-5.4.42/ext/bcmath/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/bcmath/libbcmath/src/div.c -o ext/bcmath/libbcmath/src/div.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/bcmath/libbcmath/src -Iext/bcmath/ -I/root/sources/php-5.4.42/ext/bcmath/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/bcmath/libbcmath/src/init.c -o ext/bcmath/libbcmath/src/init.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/bcmath/libbcmath/src -Iext/bcmath/ -I/root/sources/php-5.4.42/ext/bcmath/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/bcmath/libbcmath/src/neg.c -o ext/bcmath/libbcmath/src/neg.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/bcmath/libbcmath/src -Iext/bcmath/ -I/root/sources/php-5.4.42/ext/bcmath/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/bcmath/libbcmath/src/outofmem.c -o ext/bcmath/libbcmath/src/outofmem.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/bcmath/libbcmath/src -Iext/bcmath/ -I/root/sources/php-5.4.42/ext/bcmath/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/bcmath/libbcmath/src/raisemod.c -o ext/bcmath/libbcmath/src/raisemod.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/bcmath/libbcmath/src -Iext/bcmath/ -I/root/sources/php-5.4.42/ext/bcmath/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/bcmath/libbcmath/src/rt.c -o ext/bcmath/libbcmath/src/rt.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/bcmath/libbcmath/src -Iext/bcmath/ -I/root/sources/php-5.4.42/ext/bcmath/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/bcmath/libbcmath/src/sub.c -o ext/bcmath/libbcmath/src/sub.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/bcmath/libbcmath/src -Iext/bcmath/ -I/root/sources/php-5.4.42/ext/bcmath/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/bcmath/libbcmath/src/compare.c -o ext/bcmath/libbcmath/src/compare.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/bcmath/libbcmath/src -Iext/bcmath/ -I/root/sources/php-5.4.42/ext/bcmath/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/bcmath/libbcmath/src/divmod.c -o ext/bcmath/libbcmath/src/divmod.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/bcmath/libbcmath/src -Iext/bcmath/ -I/root/sources/php-5.4.42/ext/bcmath/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/bcmath/libbcmath/src/int2num.c -o ext/bcmath/libbcmath/src/int2num.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/bcmath/libbcmath/src -Iext/bcmath/ -I/root/sources/php-5.4.42/ext/bcmath/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/bcmath/libbcmath/src/num2long.c -o ext/bcmath/libbcmath/src/num2long.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/bcmath/libbcmath/src -Iext/bcmath/ -I/root/sources/php-5.4.42/ext/bcmath/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/bcmath/libbcmath/src/output.c -o ext/bcmath/libbcmath/src/output.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/bcmath/libbcmath/src -Iext/bcmath/ -I/root/sources/php-5.4.42/ext/bcmath/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/bcmath/libbcmath/src/recmul.c -o ext/bcmath/libbcmath/src/recmul.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/bcmath/libbcmath/src -Iext/bcmath/ -I/root/sources/php-5.4.42/ext/bcmath/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/bcmath/libbcmath/src/sqrt.c -o ext/bcmath/libbcmath/src/sqrt.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/bcmath/libbcmath/src -Iext/bcmath/ -I/root/sources/php-5.4.42/ext/bcmath/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/bcmath/libbcmath/src/zero.c -o ext/bcmath/libbcmath/src/zero.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/bcmath/libbcmath/src -Iext/bcmath/ -I/root/sources/php-5.4.42/ext/bcmath/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/bcmath/libbcmath/src/debug.c -o ext/bcmath/libbcmath/src/debug.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/bcmath/libbcmath/src -Iext/bcmath/ -I/root/sources/php-5.4.42/ext/bcmath/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/bcmath/libbcmath/src/doaddsub.c -o ext/bcmath/libbcmath/src/doaddsub.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/bcmath/libbcmath/src -Iext/bcmath/ -I/root/sources/php-5.4.42/ext/bcmath/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/bcmath/libbcmath/src/nearzero.c -o ext/bcmath/libbcmath/src/nearzero.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/bcmath/libbcmath/src -Iext/bcmath/ -I/root/sources/php-5.4.42/ext/bcmath/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/bcmath/libbcmath/src/num2str.c -o ext/bcmath/libbcmath/src/num2str.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/bcmath/libbcmath/src -Iext/bcmath/ -I/root/sources/php-5.4.42/ext/bcmath/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/bcmath/libbcmath/src/raise.c -o ext/bcmath/libbcmath/src/raise.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/bcmath/libbcmath/src -Iext/bcmath/ -I/root/sources/php-5.4.42/ext/bcmath/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/bcmath/libbcmath/src/rmzero.c -o ext/bcmath/libbcmath/src/rmzero.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/bcmath/libbcmath/src -Iext/bcmath/ -I/root/sources/php-5.4.42/ext/bcmath/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/bcmath/libbcmath/src/str2num.c -o ext/bcmath/libbcmath/src/str2num.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/bz2/ -I/root/sources/php-5.4.42/ext/bz2/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/bz2/bz2.c -o ext/bz2/bz2.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/bz2/ -I/root/sources/php-5.4.42/ext/bz2/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/bz2/bz2_filter.c -o ext/bz2/bz2_filter.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/calendar/ -I/root/sources/php-5.4.42/ext/calendar/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/calendar/calendar.c -o ext/calendar/calendar.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/calendar/ -I/root/sources/php-5.4.42/ext/calendar/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/calendar/dow.c -o ext/calendar/dow.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/calendar/ -I/root/sources/php-5.4.42/ext/calendar/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/calendar/french.c -o ext/calendar/french.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/calendar/ -I/root/sources/php-5.4.42/ext/calendar/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/calendar/gregor.c -o ext/calendar/gregor.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/calendar/ -I/root/sources/php-5.4.42/ext/calendar/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/calendar/jewish.c -o ext/calendar/jewish.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/calendar/ -I/root/sources/php-5.4.42/ext/calendar/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/calendar/julian.c -o ext/calendar/julian.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/calendar/ -I/root/sources/php-5.4.42/ext/calendar/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/calendar/easter.c -o ext/calendar/easter.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/calendar/ -I/root/sources/php-5.4.42/ext/calendar/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/calendar/cal_unix.c -o ext/calendar/cal_unix.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/ctype/ -I/root/sources/php-5.4.42/ext/ctype/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/ctype/ctype.c -o ext/ctype/ctype.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/curl/ -I/root/sources/php-5.4.42/ext/curl/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/curl/interface.c -o ext/curl/interface.lo | |
/root/sources/php-5.4.42/ext/curl/interface.c:74:5: warning: #warning "libcurl was compiled with SSL support, but configure could not determine which" "library was used; thus no SSL crypto locking callbacks will be set, which may " "cause random crashes on SSL requests" | |
/root/sources/php-5.4.42/ext/curl/interface.c: In function ‘zif_curl_getinfo’: | |
/root/sources/php-5.4.42/ext/curl/interface.c:2481: warning: call to ‘_curl_easy_getinfo_err_curl_slist’ declared with attribute warning: curl_easy_getinfo expects a pointer to struct curl_slist * for this info | |
/root/sources/php-5.4.42/ext/curl/interface.c:2591: warning: call to ‘_curl_easy_getinfo_err_curl_slist’ declared with attribute warning: curl_easy_getinfo expects a pointer to struct curl_slist * for this info | |
/root/sources/php-5.4.42/ext/curl/interface.c: In function ‘_php_curl_setopt’: | |
/root/sources/php-5.4.42/ext/curl/interface.c:1889: warning: call to ‘_curl_easy_setopt_err_long’ declared with attribute warning: curl_easy_setopt expects a long argument for this option | |
/root/sources/php-5.4.42/ext/curl/interface.c:2024: warning: call to ‘_curl_easy_setopt_err_progress_cb’ declared with attribute warning: curl_easy_setopt expects a curl_progress_callback argument for this option | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/curl/ -I/root/sources/php-5.4.42/ext/curl/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/curl/multi.c -o ext/curl/multi.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/curl/ -I/root/sources/php-5.4.42/ext/curl/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/curl/streams.c -o ext/curl/streams.lo | |
/root/sources/php-5.4.42/ext/curl/streams.c: In function ‘php_curl_stream_opener’: | |
/root/sources/php-5.4.42/ext/curl/streams.c:316: warning: call to ‘_curl_easy_setopt_err_progress_cb’ declared with attribute warning: curl_easy_setopt expects a curl_progress_callback argument for this option | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/dom/ -I/root/sources/php-5.4.42/ext/dom/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/dom/php_dom.c -o ext/dom/php_dom.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/dom/ -I/root/sources/php-5.4.42/ext/dom/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/dom/attr.c -o ext/dom/attr.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/dom/ -I/root/sources/php-5.4.42/ext/dom/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/dom/document.c -o ext/dom/document.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/dom/ -I/root/sources/php-5.4.42/ext/dom/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/dom/domerrorhandler.c -o ext/dom/domerrorhandler.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/dom/ -I/root/sources/php-5.4.42/ext/dom/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/dom/domstringlist.c -o ext/dom/domstringlist.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/dom/ -I/root/sources/php-5.4.42/ext/dom/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/dom/domexception.c -o ext/dom/domexception.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/dom/ -I/root/sources/php-5.4.42/ext/dom/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/dom/namelist.c -o ext/dom/namelist.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/dom/ -I/root/sources/php-5.4.42/ext/dom/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/dom/processinginstruction.c -o ext/dom/processinginstruction.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/dom/ -I/root/sources/php-5.4.42/ext/dom/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/dom/cdatasection.c -o ext/dom/cdatasection.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/dom/ -I/root/sources/php-5.4.42/ext/dom/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/dom/documentfragment.c -o ext/dom/documentfragment.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/dom/ -I/root/sources/php-5.4.42/ext/dom/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/dom/domimplementation.c -o ext/dom/domimplementation.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/dom/ -I/root/sources/php-5.4.42/ext/dom/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/dom/element.c -o ext/dom/element.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/dom/ -I/root/sources/php-5.4.42/ext/dom/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/dom/node.c -o ext/dom/node.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/dom/ -I/root/sources/php-5.4.42/ext/dom/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/dom/string_extend.c -o ext/dom/string_extend.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/dom/ -I/root/sources/php-5.4.42/ext/dom/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/dom/characterdata.c -o ext/dom/characterdata.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/dom/ -I/root/sources/php-5.4.42/ext/dom/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/dom/documenttype.c -o ext/dom/documenttype.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/dom/ -I/root/sources/php-5.4.42/ext/dom/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/dom/domimplementationlist.c -o ext/dom/domimplementationlist.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/dom/ -I/root/sources/php-5.4.42/ext/dom/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/dom/entity.c -o ext/dom/entity.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/dom/ -I/root/sources/php-5.4.42/ext/dom/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/dom/nodelist.c -o ext/dom/nodelist.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/dom/ -I/root/sources/php-5.4.42/ext/dom/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/dom/text.c -o ext/dom/text.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/dom/ -I/root/sources/php-5.4.42/ext/dom/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/dom/comment.c -o ext/dom/comment.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/dom/ -I/root/sources/php-5.4.42/ext/dom/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/dom/domconfiguration.c -o ext/dom/domconfiguration.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/dom/ -I/root/sources/php-5.4.42/ext/dom/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/dom/domimplementationsource.c -o ext/dom/domimplementationsource.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/dom/ -I/root/sources/php-5.4.42/ext/dom/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/dom/entityreference.c -o ext/dom/entityreference.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/dom/ -I/root/sources/php-5.4.42/ext/dom/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/dom/notation.c -o ext/dom/notation.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/dom/ -I/root/sources/php-5.4.42/ext/dom/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/dom/xpath.c -o ext/dom/xpath.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/dom/ -I/root/sources/php-5.4.42/ext/dom/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/dom/dom_iterators.c -o ext/dom/dom_iterators.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/dom/ -I/root/sources/php-5.4.42/ext/dom/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/dom/typeinfo.c -o ext/dom/typeinfo.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/dom/ -I/root/sources/php-5.4.42/ext/dom/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/dom/domerror.c -o ext/dom/domerror.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/dom/ -I/root/sources/php-5.4.42/ext/dom/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/dom/domlocator.c -o ext/dom/domlocator.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/dom/ -I/root/sources/php-5.4.42/ext/dom/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/dom/namednodemap.c -o ext/dom/namednodemap.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/dom/ -I/root/sources/php-5.4.42/ext/dom/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/dom/userdatahandler.c -o ext/dom/userdatahandler.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/exif/ -I/root/sources/php-5.4.42/ext/exif/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/exif/exif.c -o ext/exif/exif.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/fileinfo/libmagic -Iext/fileinfo/ -I/root/sources/php-5.4.42/ext/fileinfo/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/fileinfo/fileinfo.c -o ext/fileinfo/fileinfo.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/fileinfo/libmagic -Iext/fileinfo/ -I/root/sources/php-5.4.42/ext/fileinfo/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/fileinfo/libmagic/apprentice.c -o ext/fileinfo/libmagic/apprentice.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/fileinfo/libmagic -Iext/fileinfo/ -I/root/sources/php-5.4.42/ext/fileinfo/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/fileinfo/libmagic/apptype.c -o ext/fileinfo/libmagic/apptype.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/fileinfo/libmagic -Iext/fileinfo/ -I/root/sources/php-5.4.42/ext/fileinfo/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/fileinfo/libmagic/ascmagic.c -o ext/fileinfo/libmagic/ascmagic.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/fileinfo/libmagic -Iext/fileinfo/ -I/root/sources/php-5.4.42/ext/fileinfo/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/fileinfo/libmagic/cdf.c -o ext/fileinfo/libmagic/cdf.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/fileinfo/libmagic -Iext/fileinfo/ -I/root/sources/php-5.4.42/ext/fileinfo/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/fileinfo/libmagic/cdf_time.c -o ext/fileinfo/libmagic/cdf_time.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/fileinfo/libmagic -Iext/fileinfo/ -I/root/sources/php-5.4.42/ext/fileinfo/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/fileinfo/libmagic/compress.c -o ext/fileinfo/libmagic/compress.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/fileinfo/libmagic -Iext/fileinfo/ -I/root/sources/php-5.4.42/ext/fileinfo/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/fileinfo/libmagic/encoding.c -o ext/fileinfo/libmagic/encoding.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/fileinfo/libmagic -Iext/fileinfo/ -I/root/sources/php-5.4.42/ext/fileinfo/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/fileinfo/libmagic/fsmagic.c -o ext/fileinfo/libmagic/fsmagic.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/fileinfo/libmagic -Iext/fileinfo/ -I/root/sources/php-5.4.42/ext/fileinfo/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/fileinfo/libmagic/funcs.c -o ext/fileinfo/libmagic/funcs.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/fileinfo/libmagic -Iext/fileinfo/ -I/root/sources/php-5.4.42/ext/fileinfo/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/fileinfo/libmagic/is_tar.c -o ext/fileinfo/libmagic/is_tar.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/fileinfo/libmagic -Iext/fileinfo/ -I/root/sources/php-5.4.42/ext/fileinfo/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/fileinfo/libmagic/magic.c -o ext/fileinfo/libmagic/magic.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/fileinfo/libmagic -Iext/fileinfo/ -I/root/sources/php-5.4.42/ext/fileinfo/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/fileinfo/libmagic/print.c -o ext/fileinfo/libmagic/print.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/fileinfo/libmagic -Iext/fileinfo/ -I/root/sources/php-5.4.42/ext/fileinfo/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/fileinfo/libmagic/readcdf.c -o ext/fileinfo/libmagic/readcdf.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/fileinfo/libmagic -Iext/fileinfo/ -I/root/sources/php-5.4.42/ext/fileinfo/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/fileinfo/libmagic/softmagic.c -o ext/fileinfo/libmagic/softmagic.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/filter/ -I/root/sources/php-5.4.42/ext/filter/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/filter/filter.c -o ext/filter/filter.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/filter/ -I/root/sources/php-5.4.42/ext/filter/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/filter/sanitizing_filters.c -o ext/filter/sanitizing_filters.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/filter/ -I/root/sources/php-5.4.42/ext/filter/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/filter/logical_filters.c -o ext/filter/logical_filters.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/filter/ -I/root/sources/php-5.4.42/ext/filter/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/filter/callback_filter.c -o ext/filter/callback_filter.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/ftp/ -I/root/sources/php-5.4.42/ext/ftp/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/ftp/php_ftp.c -o ext/ftp/php_ftp.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/ftp/ -I/root/sources/php-5.4.42/ext/ftp/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/ftp/ftp.c -o ext/ftp/ftp.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/gd.c -o ext/gd/gd.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/gd.c -o ext/gd/libgd/gd.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/gd_gd.c -o ext/gd/libgd/gd_gd.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/gd_gd2.c -o ext/gd/libgd/gd_gd2.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/gd_io.c -o ext/gd/libgd/gd_io.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/gd_io_dp.c -o ext/gd/libgd/gd_io_dp.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/gd_io_file.c -o ext/gd/libgd/gd_io_file.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/gd_ss.c -o ext/gd/libgd/gd_ss.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/gd_io_ss.c -o ext/gd/libgd/gd_io_ss.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/webpimg.c -o ext/gd/libgd/webpimg.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/gd_webp.c -o ext/gd/libgd/gd_webp.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/gd_png.c -o ext/gd/libgd/gd_png.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/gd_jpeg.c -o ext/gd/libgd/gd_jpeg.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/gdxpm.c -o ext/gd/libgd/gdxpm.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/gdfontt.c -o ext/gd/libgd/gdfontt.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/gdfonts.c -o ext/gd/libgd/gdfonts.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/gdfontmb.c -o ext/gd/libgd/gdfontmb.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/gdfontl.c -o ext/gd/libgd/gdfontl.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/gdfontg.c -o ext/gd/libgd/gdfontg.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/gdtables.c -o ext/gd/libgd/gdtables.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/gdft.c -o ext/gd/libgd/gdft.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/gdcache.c -o ext/gd/libgd/gdcache.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/gdkanji.c -o ext/gd/libgd/gdkanji.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/wbmp.c -o ext/gd/libgd/wbmp.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/gd_wbmp.c -o ext/gd/libgd/gd_wbmp.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/gdhelpers.c -o ext/gd/libgd/gdhelpers.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/gd_topal.c -o ext/gd/libgd/gd_topal.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/gd_gif_in.c -o ext/gd/libgd/gd_gif_in.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/xbm.c -o ext/gd/libgd/xbm.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/gd_gif_out.c -o ext/gd/libgd/gd_gif_out.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/gd_security.c -o ext/gd/libgd/gd_security.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/gd_filter.c -o ext/gd/libgd/gd_filter.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/gd_pixelate.c -o ext/gd/libgd/gd_pixelate.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/gd_arc.c -o ext/gd/libgd/gd_arc.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/gd_rotate.c -o ext/gd/libgd/gd_rotate.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/root/sources/php-5.4.42/ext/gd/libgd -DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE -DENABLE_GD_TTF -Iext/gd/ -I/root/sources/php-5.4.42/ext/gd/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/gd/libgd/gd_color.c -o ext/gd/libgd/gd_color.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/hash/ -I/root/sources/php-5.4.42/ext/hash/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/hash/hash.c -o ext/hash/hash.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/hash/ -I/root/sources/php-5.4.42/ext/hash/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/hash/hash_md.c -o ext/hash/hash_md.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/hash/ -I/root/sources/php-5.4.42/ext/hash/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/hash/hash_sha.c -o ext/hash/hash_sha.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/hash/ -I/root/sources/php-5.4.42/ext/hash/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/hash/hash_ripemd.c -o ext/hash/hash_ripemd.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/hash/ -I/root/sources/php-5.4.42/ext/hash/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/hash/hash_haval.c -o ext/hash/hash_haval.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/hash/ -I/root/sources/php-5.4.42/ext/hash/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/hash/hash_tiger.c -o ext/hash/hash_tiger.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/hash/ -I/root/sources/php-5.4.42/ext/hash/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/hash/hash_gost.c -o ext/hash/hash_gost.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/hash/ -I/root/sources/php-5.4.42/ext/hash/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/hash/hash_snefru.c -o ext/hash/hash_snefru.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/hash/ -I/root/sources/php-5.4.42/ext/hash/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/hash/hash_whirlpool.c -o ext/hash/hash_whirlpool.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/hash/ -I/root/sources/php-5.4.42/ext/hash/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/hash/hash_adler32.c -o ext/hash/hash_adler32.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/hash/ -I/root/sources/php-5.4.42/ext/hash/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/hash/hash_crc32.c -o ext/hash/hash_crc32.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/hash/ -I/root/sources/php-5.4.42/ext/hash/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/hash/hash_fnv.c -o ext/hash/hash_fnv.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/hash/ -I/root/sources/php-5.4.42/ext/hash/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/hash/hash_joaat.c -o ext/hash/hash_joaat.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I"/usr/include" -Iext/iconv/ -I/root/sources/php-5.4.42/ext/iconv/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/iconv/iconv.c -o ext/iconv/iconv.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -Iext/imap/ -I/root/sources/php-5.4.42/ext/imap/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/imap/php_imap.c -o ext/imap/php_imap.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/usr/include -Iext/intl/ -I/root/sources/php-5.4.42/ext/intl/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/intl/php_intl.c -o ext/intl/php_intl.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/usr/include -Iext/intl/ -I/root/sources/php-5.4.42/ext/intl/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/intl/intl_error.c -o ext/intl/intl_error.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/usr/include -Iext/intl/ -I/root/sources/php-5.4.42/ext/intl/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/intl/intl_convert.c -o ext/intl/intl_convert.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/usr/include -Iext/intl/ -I/root/sources/php-5.4.42/ext/intl/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/intl/collator/collator.c -o ext/intl/collator/collator.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/usr/include -Iext/intl/ -I/root/sources/php-5.4.42/ext/intl/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/intl/collator/collator_class.c -o ext/intl/collator/collator_class.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/usr/include -Iext/intl/ -I/root/sources/php-5.4.42/ext/intl/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/intl/collator/collator_sort.c -o ext/intl/collator/collator_sort.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/usr/include -Iext/intl/ -I/root/sources/php-5.4.42/ext/intl/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/intl/collator/collator_convert.c -o ext/intl/collator/collator_convert.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/usr/include -Iext/intl/ -I/root/sources/php-5.4.42/ext/intl/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/intl/collator/collator_locale.c -o ext/intl/collator/collator_locale.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/usr/include -Iext/intl/ -I/root/sources/php-5.4.42/ext/intl/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/intl/collator/collator_compare.c -o ext/intl/collator/collator_compare.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/usr/include -Iext/intl/ -I/root/sources/php-5.4.42/ext/intl/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/intl/collator/collator_attr.c -o ext/intl/collator/collator_attr.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/usr/include -Iext/intl/ -I/root/sources/php-5.4.42/ext/intl/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/intl/collator/collator_create.c -o ext/intl/collator/collator_create.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/usr/include -Iext/intl/ -I/root/sources/php-5.4.42/ext/intl/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/intl/collator/collator_is_numeric.c -o ext/intl/collator/collator_is_numeric.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/usr/include -Iext/intl/ -I/root/sources/php-5.4.42/ext/intl/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/intl/collator/collator_error.c -o ext/intl/collator/collator_error.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/usr/include -Iext/intl/ -I/root/sources/php-5.4.42/ext/intl/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/intl/common/common_error.c -o ext/intl/common/common_error.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/usr/include -Iext/intl/ -I/root/sources/php-5.4.42/ext/intl/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/intl/formatter/formatter.c -o ext/intl/formatter/formatter.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/usr/include -Iext/intl/ -I/root/sources/php-5.4.42/ext/intl/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/intl/formatter/formatter_main.c -o ext/intl/formatter/formatter_main.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/usr/include -Iext/intl/ -I/root/sources/php-5.4.42/ext/intl/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/intl/formatter/formatter_class.c -o ext/intl/formatter/formatter_class.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/usr/include -Iext/intl/ -I/root/sources/php-5.4.42/ext/intl/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/intl/formatter/formatter_attr.c -o ext/intl/formatter/formatter_attr.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/usr/include -Iext/intl/ -I/root/sources/php-5.4.42/ext/intl/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/intl/formatter/formatter_data.c -o ext/intl/formatter/formatter_data.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/usr/include -Iext/intl/ -I/root/sources/php-5.4.42/ext/intl/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/intl/formatter/formatter_format.c -o ext/intl/formatter/formatter_format.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/usr/include -Iext/intl/ -I/root/sources/php-5.4.42/ext/intl/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/intl/formatter/formatter_parse.c -o ext/intl/formatter/formatter_parse.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/usr/include -Iext/intl/ -I/root/sources/php-5.4.42/ext/intl/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/intl/normalizer/normalizer.c -o ext/intl/normalizer/normalizer.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/usr/include -Iext/intl/ -I/root/sources/php-5.4.42/ext/intl/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/intl/normalizer/normalizer_class.c -o ext/intl/normalizer/normalizer_class.lo | |
/bin/sh /root/sources/php-5.4.42/libtool --silent --preserve-dup-deps --mode=compile /root/sources/php-5.4.42/meta_ccld -I/usr/include -Iext/intl/ -I/root/sources/php-5.4.42/ext/intl/ -DPHP_ATOM_INC -I/root/sources/php-5.4.42/include -I/root/sources/php-5.4.42/main -I/root/sources/php-5.4.42 -I/root/sources/php-5.4.42/ext/date/lib -I/root/sources/php-5.4.42/ext/ereg/regex -I/usr/include/libxml2 -I/usr/include/freetype2 -I/usr/include/imap -I/root/sources/php-5.4.42/ext/mbstring/oniguruma -I/root/sources/php-5.4.42/ext/mbstring/libmbfl -I/root/sources/php-5.4.42/ext/mbstring/libmbfl/mbfl -I/root/sources/php-5.4.42/ext/sqlite3/libsqlite -I/root/sources/php-5.4.42/TSRM -I/root/sources/php-5.4.42/Zend -D_REENTRANT -DTHREAD=1 -I/usr/include -g -O2 -fvisibility=hidden -pthread -DZTS -c /root/sources/php-5.4.42/ext/intl/normalizer/normalizer_normalize.c -o ext |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment