Linux程序包管理(rpm、yum、make)

linux系统程序安装的方法有rpm yum 以及make手动编译3种方法:

rpm这个机制最早由Redhat公司开发出来,后来由于实在好用,所以被很多发行版所使用作为软件安装的管理方式。不过由于使用RPM安装软件时有时会涉及到文件的依赖信,此时需要手动去逐个安装被依赖的包操作起来十分复杂,于是yum这种线上升级的机制便出现了,它会自己主动解决各文件的依赖关系,会将要安装的软件说涉及的被依赖的包一同装上。

 

一、rpm包安装方法

 

1.rpm包的格式

RPM包格式:以zsh为例 zsh-5.0.2-25.el7.x86_64.rpm

zsh:软件名

5.0.2:版本号

25:软件的编译次数

el7:所适用的系统

x86_64:所适用的硬件平台

rpm:软件包的扩展名

 

2.rpm包的安装、升级、卸载、查询及检验

安装:

rpm -i [install-options] <package_file>

[install-options]

-h:以#来表示安装进度

-v:显示安装过程中的详细信息

-vv:比v更详细

-vvv:比vv更加详细

–test:只用来测试不安装

–nodeps:忽略依赖关系,能安装成功不一定能使用

–replacepkgs:重新安装或者覆盖安装

–force:强制安装

例:

[root@localhost Packages]# rpm -ivh zsh-5.0.2-25.el7.x86_64.rpm 
准备中...                          ################################# [100%]
正在升级/安装...
   1:zsh-5.0.2-25.el7                 ################################# [100%]     

 

zsh已经安装成功

 

升级:

rpm -U [install-options] <package_file>+                                       升级或安装
rpm [-F|–freshen] [install-options] <package_file>+                   升级

 

[install-options]

–test:测试安装,并不是真的安装

 

–nodeps:忽略依赖关系

–oldpackages:降级操作

例:

 

[root@localhost tmp]# rpm -Uvh zsh-5.0.2-25.el7_3.1.x86_64.rpm 
准备中...                          ################################# [100%]
正在升级/安装...
   1:zsh-5.0.2-25.el7_3.1             ################################# [ 50%]
正在清理/删除...
   2:zsh-5.0.2-25.el7                 ################################# [100%]

 

zsh升级成功

注意:

1.不要对内核进行升级,Linux支持多内核共存,可以直接安装多个不同版本的内核。

2.如果程序包的配置文件被修改过,升级时版本的文件不会覆盖老版本的文件,而是把新版本的文件重命名为加后缀(XXXX.rpmnew)来保存。

 

卸载:

rpm [–uninstall|-e] [uninstalloptions] [package]+
[uninstall-options]

–test:测试卸载

–nodeps:忽略依赖关系

–allmatches:如果一个程序包同时安装多个版本,则一次卸载全部

例:

 

[root@localhost tmp]# rpm -evh --allmatches zsh
准备中...                          ################################# [100%]
正在清理/删除...
   1:zsh-5.0.2-25.el7_3.1             ################################# [100%]

注意:如果程序包的配置文件安装后曾被修改过,则卸载时此文件不会被删除,而是被重命名为加(XXXX.rpmsave)后缀,然后保留

 

查询:

rpm -q [query-options]<packagename>

[query-options]

-a, –all:查询所有安装的包.
–whatrequires <capability>: 查询所有需要<capability>才能提供适当功能的包.
–whatprovides <virtual>: 查询所有提供<virtual>功能的包.
-f <file>, –file <file>:查询拥有文件<file>的包.
-g <group>, –group <group>:查询属于组<group>的包
-p <package_file>:查询一个没有安装的包<package_file>
-i: 展示包信息,包括名字,版本,以及描述.
-R, –requires:列出该包所依赖的别的包.
–provides:列出该包所提供的功能.
–changelog:展示该包的变更信息.
-l, –list:列出该包的文件.
-c, –configfiles:只列出配置文件.
–scripts:如果有的话,就列出该包里作为安装或卸载过程一部分的特殊shell脚本.

脚本有4类:

preinstall:安装前执行的脚本

postinstall:安装后执行的脚本

preuninstall:卸载前执行的脚本

postuninstall:卸载后执行的脚本

 

检验:

rpm -V|-y|–verify [verify-options]
[verify-options]
–nofiles:核实时忽略缺失文件
–nomd5:核实时忽略MD5校验错误
–nopgp:核实时忽略PGP校验错误
–nofiles:核实时忽略缺失文件

校验正确则输出的格式为8个点号,每个点号对应一个文件属性与保存在RPM的数据库中的属性纪录值的比较结果。如果校验比较结果出现不同则会显示出相应的属性,表明对应的内容有修改。

S:文件大小发生改变

M:文件类型或文件属性发生改变

5:md5校验发生改变

D:设备的主次代码发生改变

L:链接路径发生改变

U:文件属主发生改变

G:文件属组发生改变

T:文件的创建时间发生改变

P:capabilities differ

 

校验时先要将合法的KEY文件导入:

rpm –import /Path/to/PRM-GPG-KEY-FILE

校验文件可在安装光盘上或者/etc/pki/rpm-gpg/目录下找到

验证方法:

rpm -K <package-file>

 

数据库重建

rpm -i [–initdb][–dbpath]
rpm -i [–rebuilddb][–dbpath]

–initdb:初始化数据库,当数据库不存在时可以进行新建

–rebuilddb:无论数据存在与否都会重建数据库;构建的数据放在/var/lib/rpm中

–dbpath:用来指定数据库路径

 

二、yum工具安装程序包

yum是通过分析rpm的标头数据后,更具各原件的依赖关系制作出有依赖关系时的解决方案,然后可以自动处理软件的依赖性问题,以解决软件的安装、升级、移除的问题

yum本身有配置文件,主要指向仓库的位置以及相关的各种配置信息,每个yum命令可以同时指向多个仓库,仓库间可以优先级等相关的配置,配置文件有2个部分组成

1、主配置文件:/etc/yum.conf,为个仓库指向提供公共的配置文件。

 

[main]                                                 #提供公共配置信息
cachedir=/var/cache/yum/$basearch/$releasever
keepcache=0
debuglevel=2
logfile=/var/log/yum.log
exactarch=1
obsoletes=1
gpgcheck=1
plugins=1
installonly_limit=5
bugtracker_url=http://bugs.centos.org/set_project.php?project_id=23&ref=http://bugs.centos.org/bug_report_page.php?category=yum
distroverpkg=centos-release

 

2、个仓库的定义:/etc/yum.repos.d/*.repo

 

[base]                                           #用于唯一标识repository指向,因此其必须唯一。
name=CentOS-$releasever - Base                   #当前仓库描述信息
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os&infra=$infra    #repository访问的路径
#baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/                                
gpgcheck=1                                       #是否对程序包作校验
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7     #gpgkey的路径

 

3、yum命令的使用

yum [options] [command] [package …]

command is one of:
* install package1 [package2] […]
* update [package1] [package2] […]
* update-to [package1] [package2] […]
* update-minimal [package1] [package2] […]
* check-update
* upgrade [package1] [package2] […]
* upgrade-to [package1] [package2] […]
* distribution-synchronization [package1] [package2] […]
* remove | erase package1 [package2] […]
* autoremove [package1] […]
* list […]
* info […]
* provides | whatprovides feature1 [feature2] […]
* clean [ packages | metadata | expire-cache | rpmdb | plugins | all ]
* makecache [fast]
* groups […]
* search string1 [string2] […]
* shell [filename]
* resolvedep dep1 [dep2] […]
(maintained  for  legacy  reasons  only – use repoquery or yum provides)
* localinstall rpmfile1 [rpmfile2] […]
(maintained for legacy reasons only – use install)
* localupdate rpmfile1 [rpmfile2] […]
(maintained for legacy reasons only – use update)
* reinstall package1 [package2] […]
* downgrade package1 [package2] […]
* deplist package1 [package2] […]
* repolist [all|enabled|disabled]
* repoinfo [all|enabled|disabled]
* repository-packages <enabled-repoid> <install|remove|remove-or-reinstall|remove-or-distribution-synchronization> [package2] […]
* version [ all | installed | available | group-* | nogroups* | grou‐plist | groupinfo ]
*   history    [info|list|packages-list|packages-info|summary|addon-info|redo|undo|rollback|new|sync|stats]
* load-transaction [txfile]
* updateinfo [summary | list | info | remove-pkgs-ts | exclude-updates | exclude-all | check-running-kernel]
* fssnapshot [summary | list | have-space | create | delete]
* fs [filters | refilter | refilter-cleanup | du]
* check
* help [command]

 

yum仓库管理

yum repolist [all|enabled|disabled]

 

yum缓存管理

yum clean [ packages | metadata | expire-cache | rpmdb | plugins | all ]    清理缓存
yum makecache [fast]    缓存创建,自动连接至一个可用的仓库,下载其数据,将其创建为缓存

 

程序包查看

yum list [all|glob_exp1] [glob_exp2] […]

yum list {available|updates|installed|extras|obsoletes} [glob_exp1][…]

yum grouplist [hidden] [groupwildcard] […]

 

程序包安装

yum install package1 [package2] […]

 

重新安装(覆盖安装)

yum reinstall package1 [package2] […]

 

程序包升级

yum update [package1] [package2]

 

程序包降级

yum downgrade package1 [package2] […]

 

检查有那些升级可用

yum check-update

 

程序包降级

yum remove | erase package1 [package2][…]

注意:所有依赖于被删除包的程序包都会被一并删除

 

查询

查询程序的相关简要信息

yum info package …

在包名和sumary信息中搜索指定的关键字

yum search KEYWORD

查询指定的文件由哪个程序包安装生成

yum provides|whatprovides /path/to/somefile

 

安装升级本地程序包

yum localinstall rpmfile1 [rpmfile2]…

yum localupdate rpmfile1 [rpmfile2]…

用于案组昂或升级仓库中不存在的程序包,而这些程序包又有可能依赖于仓库中的某些程序包

 

程序包组管理

列出所有程序包组

yum grouplist

显示指定包组详情

yum groupinfo group1 […]

程序包组的安装

yum groupinstall group1 […]

在centos7上安装包组时需要添加选项 –setopt=group_package_types=mandatory,default,optional

程序包组的卸载

yum groupremove group1 […]

程序包的升级

yum groupupdate group1 […]

 

yum命令的可用选项

-y:自动回答为yes

–disablerepo=:临时禁用在配置文件中配置并启用的repo

–enablerepo=:临时启用指定的某repo

–nogpgcheck:禁止做包校验

 

yum有一些内置的变量,用于保存当前平台的信息,这些变量有

$releasever:当前OS发行版的主版本号

$arch:平台

$basearch:基础平台

 

制作本地yum源

1、使用光盘作为yum仓库

[root@localhost ~]# mount -r /dev/sr0 /media                  #挂载光光盘
[root@localhost ~]# vim /etc/yum.repo.d/centos7-dvd.repo      #编辑配置文件

[dvdbase]
name=centos7.3_dvd_repo
baseurl=file:///media                                        #仓库指向为光盘挂载的/media目录
gpgcheck=0
enabled=1

 

2、创建本地yum仓库

 

[root@localhost ~]# cp -a /media/Packages/a* /tmp/Pack       #复制光盘部分文件到/tmp/Packages目录下做示范用
[root@localhost Packages]# createrepo .                      #cd  到 /tmp/Packages 目录下 使用createrpo  命令创建repodata
Spawning worker 0 with 195 pkgs
Spawning worker 1 with 195 pkgs
Workers Finished
Saving Primary metadata
Saving file lists metadata
Saving other metadata
Generating sqlite DBs
Sqlite DBs complete

[root@localhost ~]# vim /etc/yum.repo.d/localrepo.repo      #编辑配置文件

[localrepo]
name=localrepo
baseurl=file:///tmp/Packages                                #把仓库路径指向repodata所在的/tmp/Packages目录
gpgcheck=0
enabled=1

 

源代码编译安装程序

源代码编译安装程序,首先需要环境支持,即编译开发工具、以及各个被依赖到的程序开发组件

编译开发工具有:Development tools、Sever Platform Development、Desktop Platform Development、Debug Tools

被依赖的程序包的开发组件:编译安装被依赖的程序;安装相关程序的名称中包含devel的子包

 

注意:

1.每个项目句的程序员开发完成某版本之后,会使用 autoconf为程序代码生成脚本文件:configure;其功能:此脚本会收集当前系统上的开发环境是否满足,最后会根据Makefile.in文件生成一个makefile文件

2.每个项目的程序员开发完成某版本之后,会使用automake为程序代码生成一个makefile模板文件,即Makefile.in

 

编译安装过程如下:

1.运行configure脚本:

2.运行make命令,完成项目构建

3.运行make install 完成安装

 

以下以apache为例子进行演示:

 

[root@localhost yum.repos.d]# yum groupinstall -y --setopt=group_package_types=mandatory,default,opt
[root@localhost tmp]# cd httpd-2.2.34/
[root@localhost httpd-2.2.34]# ls
ABOUT_APACHE  BuildBin.dsp   configure.in  httpd.mak       LAYOUT        Makefile.in    os                server
acinclude.m4  buildconf      docs          httpd.spec      libhttpd.dep  Makefile.win   README            srclib
Apache.dsw    CHANGES        emacs-style   include         libhttpd.dsp  modules        README.platforms  support
build         config.layout  httpd.dep     INSTALL         libhttpd.mak  NOTICE         README-win32.txt  test
BuildAll.dsp  configure      httpd.dsp     InstallBin.dsp  LICENSE       NWGNUmakefile  ROADMAP           VERSIONING
[root@localhost httpd-2.2.34]# ./configure --prefix=/usr/local/httpd2 --sysconfdir=/etc/httpd2
checking for chosen layout... Apache
checking for working mkdir -p... yes
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 Apache Portable Runtime library ...

checking for APR... reconfig
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... /usr/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... /usr/bin/grep
checking for egrep... /usr/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) /usr/bin/sed
checking for fgrep... /usr/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... 1572864
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 a working dd... /usr/bin/dd
checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
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: /tmp/httpd-2.2.34/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 3.10

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... no
checking for dlopen in -ldl... yes
  adding "-ldl" to LIBS
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 -ldl"
  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 " "

Configuring Apache Portable Runtime Utility library...

checking for APR-util... reconfig
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... /usr/bin/grep
checking for egrep... /usr/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... no
checking sqlite3.h presence... no
checking for sqlite3.h... no
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... /usr/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/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... 1572864
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 a working dd... /usr/bin/dd
checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
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/tmp/httpd-2.2.34/srclib/apr-util/xml/expat/lib"
  setting LDFLAGS to "-L/tmp/httpd-2.2.34/srclib/apr-util/xml/expat/lib"
  setting APRUTIL_EXPORT_LIBS to "/tmp/httpd-2.2.34/srclib/apr-util/xml/expat/libexpat.la"
  setting APRUTIL_LIBS to "/tmp/httpd-2.2.34/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 "/tmp/httpd-2.2.34/srclib/apr/libapr-1.la" to APRUTIL_LIBS
  adding "-lrt" to APRUTIL_LIBS
  adding "-lcrypt" to APRUTIL_LIBS
  adding "-lpthread" to APRUTIL_LIBS
  adding "-ldl" 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
configure: Configuring PCRE regular expression library
configuring package in srclib/pcre now
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 grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/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 limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking for an ANSI C-conforming const... yes
checking for size_t... yes
checking for bcopy... yes
checking for memmove... yes
checking for strerror... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating pcre.h
config.status: creating pcre-config
config.status: creating config.h
config.status: executing default commands
srclib/pcre configured properly
  setting AP_LIBS to "/tmp/httpd-2.2.34/srclib/pcre/libpcre.la"
  setting INCLUDES to "-I$(top_builddir)/srclib/pcre"

Configuring Apache httpd ...

  adding "-I." to INCLUDES
  adding "-I$(top_srcdir)/os/$(OS_DIR)" to INCLUDES
  adding "-I$(top_srcdir)/server/mpm/$(MPM_SUBDIR_NAME)" to INCLUDES
  adding "-I$(top_srcdir)/modules/http" to INCLUDES
  adding "-I$(top_srcdir)/modules/filters" to INCLUDES
  adding "-I$(top_srcdir)/modules/proxy" to INCLUDES
  adding "-I$(top_srcdir)/include" to INCLUDES
  adding "-I$(top_srcdir)/modules/generators" to INCLUDES
  adding "-I$(top_srcdir)/modules/mappers" to INCLUDES
  adding "-I$(top_srcdir)/modules/database" to INCLUDES
  adding "-I/tmp/httpd-2.2.34/srclib/apr/include" to INCLUDES
  adding "-I/tmp/httpd-2.2.34/srclib/apr-util/include" to INCLUDES
  adding "-I/tmp/httpd-2.2.34/srclib/apr-util/xml/expat/lib" to INCLUDES

Applying OS-specific hints for httpd ...

  forcing SINGLE_LISTEN_UNSERIALIZED_ACCEPT to "1"
  forcing AP_NONBLOCK_WHEN_MULTI_LISTEN to "1"
checking for rm... /usr/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 grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/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 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 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 void pointer length... no
checking for tm_gmtoff in struct tm... yes
checking whether to enable mod_authn_file... yes (default)
checking whether to enable mod_authn_dbm... no
checking whether to enable mod_authn_anon... no
checking whether to enable mod_authn_dbd... no
checking whether to enable mod_authn_default... yes (default)
checking whether to enable mod_authn_alias... no
checking whether to enable mod_authz_host... yes (default)
checking whether to enable mod_authz_groupfile... yes (default)
checking whether to enable mod_authz_user... yes (default)
checking whether to enable mod_authz_dbm... no
checking whether to enable mod_authz_owner... no
checking whether to enable mod_authnz_ldap... no
checking whether to enable mod_authz_default... yes (default)
checking whether to enable mod_auth_basic... yes (default)
checking whether to enable mod_auth_digest... no
checking whether to enable mod_isapi... no
checking whether to enable mod_file_cache... no
checking whether to enable mod_cache... no
checking whether to enable mod_disk_cache... no
checking whether to enable mod_mem_cache... no
checking whether to enable mod_dbd... no
checking whether to enable mod_bucketeer... no
checking whether to enable mod_dumpio... no
checking whether to enable mod_echo... no
checking whether to enable mod_example... no
checking whether to enable mod_case_filter... no
checking whether to enable mod_case_filter_in... no
checking whether to enable mod_reqtimeout... no
checking whether to enable mod_ext_filter... no
checking whether to enable mod_include... yes (default)
checking whether to enable mod_filter... yes (default)
checking whether to enable mod_substitute... no
checking whether to enable mod_charset_lite... no
checking whether to enable mod_deflate... no
checking whether to enable mod_ldap... no
checking whether to enable mod_log_config... yes (default)
checking whether to enable mod_log_forensic... no
checking whether to enable mod_logio... no
checking whether to enable mod_env... yes (default)
checking whether to enable mod_mime_magic... no
checking whether to enable mod_cern_meta... no
checking whether to enable mod_expires... no
checking whether to enable mod_headers... no
checking whether to enable mod_ident... no
checking whether to enable mod_usertrack... no
checking whether to enable mod_unique_id... no
checking whether to enable mod_setenvif... yes (default)
checking whether to enable mod_version... yes (default)
checking whether to enable mod_proxy... no
checking whether to enable mod_proxy_connect... no
checking whether to enable mod_proxy_ftp... no
checking whether to enable mod_proxy_http... no
checking whether to enable mod_proxy_scgi... no
checking whether to enable mod_proxy_ajp... no
checking whether to enable mod_proxy_balancer... no
  adding "-I$(top_srcdir)/modules/proxy/../generators" to INCLUDES
checking whether to enable mod_ssl... no
  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 for target platform... unix
checking for rlim_t... yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking sys/resource.h usability... yes
checking sys/resource.h presence... yes
checking for sys/resource.h... yes
checking for sys/sem.h... (cached) yes
checking sys/ipc.h usability... yes
checking sys/ipc.h presence... yes
checking for sys/ipc.h... yes
checking for setsid... yes
checking for killpg... yes
checking bstring.h usability... no
checking bstring.h presence... no
checking for bstring.h... no
checking for unistd.h... (cached) yes
checking for syslog... yes
checking sys/times.h usability... yes
checking sys/times.h presence... yes
checking for sys/times.h... yes
checking for times... yes
checking which MPM to use... prefork
checking whether to enable mod_http... yes
checking whether to enable mod_mime... yes (default)
checking for extra modules... none
checking whether to enable mod_dav... no
  adding "-I$(top_srcdir)/modules/dav/main" to INCLUDES
checking whether to enable mod_status... yes (default)
checking whether to enable mod_autoindex... yes (default)
checking whether to enable mod_asis... yes (default)
checking whether to enable mod_info... no
checking whether to enable mod_suexec... no
checking whether to enable mod_cgi... yes (default)
checking whether to enable mod_cgid... no
checking whether to enable mod_dav_fs... no
checking whether to enable mod_dav_lock... no
checking whether to enable mod_vhost_alias... no
checking whether to enable mod_negotiation... yes (default)
checking whether to enable mod_dir... yes (default)
checking whether to enable mod_imagemap... no
checking whether to enable mod_actions... yes (default)
checking whether to enable mod_speling... no
checking whether to enable mod_userdir... yes (default)
checking whether to enable mod_alias... yes (default)
checking whether to enable mod_rewrite... no
  setting HTTPD_LDFLAGS to "-export-dynamic"
checking whether to enable mod_so... yes

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 CXXFLAGS to ""
  setting EXTRA_CXXFLAGS to ""
  restoring LDFLAGS to ""
  setting EXTRA_LDFLAGS to " "
  restoring LIBS to ""
  setting EXTRA_LIBS to "-lm "
  restoring INCLUDES to ""
  setting EXTRA_INCLUDES to "-I$(top_builddir)/srclib/pcre -I. -I$(top_srcdir)/os/$(OS_DIR) -I$(top_srcdir)/server/mpm/$(MPM_SUBDIR_NAME) -I$(top_srcdir)/modules/http -I$(top_srcdir)/modules/filters -I$(top_srcdir)/modules/proxy -I$(top_srcdir)/include -I$(top_srcdir)/modules/generators -I$(top_srcdir)/modules/mappers -I$(top_srcdir)/modules/database -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/xml/expat/lib -I$(top_srcdir)/modules/proxy/../generators -I$(top_srcdir)/modules/ssl -I$(top_srcdir)/modules/dav/main"

Construct makefiles and header files...

creating config_vars.mk
configure: creating ./config.status
creating modules/aaa/Makefile
creating modules/arch/win32/Makefile
creating modules/cache/Makefile
creating modules/database/Makefile
creating modules/debug/Makefile
creating modules/echo/Makefile
creating modules/experimental/Makefile
creating modules/filters/Makefile
creating modules/ldap/Makefile
creating modules/loggers/Makefile
creating modules/metadata/Makefile
creating modules/proxy/Makefile
creating modules/ssl/Makefile
creating modules/test/Makefile
creating os/unix/Makefile
creating server/mpm/Makefile
creating server/mpm/prefork/Makefile
creating modules/http/Makefile
creating modules/dav/main/Makefile
creating modules/generators/Makefile
creating modules/dav/fs/Makefile
creating modules/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 srclib/pcre/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 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


[root@localhost httpd-2.2.34]# make
Making all in srclib
make[1]: 进入目录“/tmp/httpd-2.2.34/srclib”
Making all in apr
make[2]: 进入目录“/tmp/httpd-2.2.34/srclib/apr”
make[3]: 进入目录“/tmp/httpd-2.2.34/srclib/apr”
/tmp/httpd-2.2.34/srclib/apr/build/mkdir.sh tools
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o tools/gen_test_char.lo -c tools/gen_test_char.c && touch tools/gen_test_char.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private   -no-install    -o tools/gen_test_char tools/gen_test_char.lo    -lrt -lcrypt  -lpthread -ldl
/tmp/httpd-2.2.34/srclib/apr/build/mkdir.sh include/private
tools/gen_test_char > include/private/apr_escape_test_char.h
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o encoding/apr_escape.lo -c encoding/apr_escape.c && touch encoding/apr_escape.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o passwd/apr_getpass.lo -c passwd/apr_getpass.c && touch passwd/apr_getpass.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o strings/apr_cpystrn.lo -c strings/apr_cpystrn.c && touch strings/apr_cpystrn.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o strings/apr_fnmatch.lo -c strings/apr_fnmatch.c && touch strings/apr_fnmatch.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o strings/apr_snprintf.lo -c strings/apr_snprintf.c && touch strings/apr_snprintf.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o strings/apr_strings.lo -c strings/apr_strings.c && touch strings/apr_strings.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o strings/apr_strnatcmp.lo -c strings/apr_strnatcmp.c && touch strings/apr_strnatcmp.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o strings/apr_strtok.lo -c strings/apr_strtok.c && touch strings/apr_strtok.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o tables/apr_hash.lo -c tables/apr_hash.c && touch tables/apr_hash.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o tables/apr_skiplist.lo -c tables/apr_skiplist.c && touch tables/apr_skiplist.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o tables/apr_tables.lo -c tables/apr_tables.c && touch tables/apr_tables.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o atomic/unix/builtins.lo -c atomic/unix/builtins.c && touch atomic/unix/builtins.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o atomic/unix/ia32.lo -c atomic/unix/ia32.c && touch atomic/unix/ia32.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o atomic/unix/mutex.lo -c atomic/unix/mutex.c && touch atomic/unix/mutex.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o atomic/unix/ppc.lo -c atomic/unix/ppc.c && touch atomic/unix/ppc.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o atomic/unix/s390.lo -c atomic/unix/s390.c && touch atomic/unix/s390.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o atomic/unix/solaris.lo -c atomic/unix/solaris.c && touch atomic/unix/solaris.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o dso/unix/dso.lo -c dso/unix/dso.c && touch dso/unix/dso.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o file_io/unix/buffer.lo -c file_io/unix/buffer.c && touch file_io/unix/buffer.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o file_io/unix/copy.lo -c file_io/unix/copy.c && touch file_io/unix/copy.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o file_io/unix/dir.lo -c file_io/unix/dir.c && touch file_io/unix/dir.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o file_io/unix/fileacc.lo -c file_io/unix/fileacc.c && touch file_io/unix/fileacc.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o file_io/unix/filedup.lo -c file_io/unix/filedup.c && touch file_io/unix/filedup.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o file_io/unix/filepath.lo -c file_io/unix/filepath.c && touch file_io/unix/filepath.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/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 /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o file_io/unix/filestat.lo -c file_io/unix/filestat.c && touch file_io/unix/filestat.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o file_io/unix/flock.lo -c file_io/unix/flock.c && touch file_io/unix/flock.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o file_io/unix/fullrw.lo -c file_io/unix/fullrw.c && touch file_io/unix/fullrw.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o file_io/unix/mktemp.lo -c file_io/unix/mktemp.c && touch file_io/unix/mktemp.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o file_io/unix/open.lo -c file_io/unix/open.c && touch file_io/unix/open.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o file_io/unix/pipe.lo -c file_io/unix/pipe.c && touch file_io/unix/pipe.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o file_io/unix/readwrite.lo -c file_io/unix/readwrite.c && touch file_io/unix/readwrite.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o file_io/unix/seek.lo -c file_io/unix/seek.c && touch file_io/unix/seek.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o file_io/unix/tempdir.lo -c file_io/unix/tempdir.c && touch file_io/unix/tempdir.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o locks/unix/global_mutex.lo -c locks/unix/global_mutex.c && touch locks/unix/global_mutex.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o locks/unix/proc_mutex.lo -c locks/unix/proc_mutex.c && touch locks/unix/proc_mutex.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o locks/unix/thread_cond.lo -c locks/unix/thread_cond.c && touch locks/unix/thread_cond.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o locks/unix/thread_mutex.lo -c locks/unix/thread_mutex.c && touch locks/unix/thread_mutex.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o locks/unix/thread_rwlock.lo -c locks/unix/thread_rwlock.c && touch locks/unix/thread_rwlock.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o memory/unix/apr_pools.lo -c memory/unix/apr_pools.c && touch memory/unix/apr_pools.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o misc/unix/charset.lo -c misc/unix/charset.c && touch misc/unix/charset.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o misc/unix/env.lo -c misc/unix/env.c && touch misc/unix/env.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o misc/unix/errorcodes.lo -c misc/unix/errorcodes.c && touch misc/unix/errorcodes.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o misc/unix/getopt.lo -c misc/unix/getopt.c && touch misc/unix/getopt.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o misc/unix/otherchild.lo -c misc/unix/otherchild.c && touch misc/unix/otherchild.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o misc/unix/rand.lo -c misc/unix/rand.c && touch misc/unix/rand.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o misc/unix/start.lo -c misc/unix/start.c && touch misc/unix/start.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o misc/unix/version.lo -c misc/unix/version.c && touch misc/unix/version.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o mmap/unix/common.lo -c mmap/unix/common.c && touch mmap/unix/common.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o mmap/unix/mmap.lo -c mmap/unix/mmap.c && touch mmap/unix/mmap.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/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 /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/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 /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o network_io/unix/multicast.lo -c network_io/unix/multicast.c && touch network_io/unix/multicast.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o network_io/unix/sendrecv.lo -c network_io/unix/sendrecv.c && touch network_io/unix/sendrecv.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o network_io/unix/sockaddr.lo -c network_io/unix/sockaddr.c && touch network_io/unix/sockaddr.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/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 /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o network_io/unix/sockets.lo -c network_io/unix/sockets.c && touch network_io/unix/sockets.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o network_io/unix/sockopt.lo -c network_io/unix/sockopt.c && touch network_io/unix/sockopt.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o poll/unix/epoll.lo -c poll/unix/epoll.c && touch poll/unix/epoll.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o poll/unix/kqueue.lo -c poll/unix/kqueue.c && touch poll/unix/kqueue.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o poll/unix/poll.lo -c poll/unix/poll.c && touch poll/unix/poll.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o poll/unix/pollcb.lo -c poll/unix/pollcb.c && touch poll/unix/pollcb.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o poll/unix/pollset.lo -c poll/unix/pollset.c && touch poll/unix/pollset.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o poll/unix/port.lo -c poll/unix/port.c && touch poll/unix/port.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o poll/unix/select.lo -c poll/unix/select.c && touch poll/unix/select.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o poll/unix/z_asio.lo -c poll/unix/z_asio.c && touch poll/unix/z_asio.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o random/unix/apr_random.lo -c random/unix/apr_random.c && touch random/unix/apr_random.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o random/unix/sha2.lo -c random/unix/sha2.c && touch random/unix/sha2.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o random/unix/sha2_glue.lo -c random/unix/sha2_glue.c && touch random/unix/sha2_glue.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o shmem/unix/shm.lo -c shmem/unix/shm.c && touch shmem/unix/shm.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o support/unix/waitio.lo -c support/unix/waitio.c && touch support/unix/waitio.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o threadproc/unix/proc.lo -c threadproc/unix/proc.c && touch threadproc/unix/proc.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o threadproc/unix/procsup.lo -c threadproc/unix/procsup.c && touch threadproc/unix/procsup.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o threadproc/unix/signals.lo -c threadproc/unix/signals.c && touch threadproc/unix/signals.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o threadproc/unix/thread.lo -c threadproc/unix/thread.c && touch threadproc/unix/thread.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o threadproc/unix/threadpriv.lo -c threadproc/unix/threadpriv.c && touch threadproc/unix/threadpriv.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o time/unix/time.lo -c time/unix/time.c && touch time/unix/time.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o time/unix/timestr.lo -c time/unix/timestr.c && touch time/unix/timestr.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o user/unix/groupinfo.lo -c user/unix/groupinfo.c && touch user/unix/groupinfo.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private  -o user/unix/userinfo.lo -c user/unix/userinfo.c && touch user/unix/userinfo.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=link gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/srclib/apr/include/private   -version-info 5:2:5    -o libapr-1.la -rpath /usr/local/httpd2/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 -ldl
gawk -f /tmp/httpd-2.2.34/srclib/apr/build/make_exports.awk /tmp/httpd-2.2.34/srclib/apr/include/apr_allocator.h /tmp/httpd-2.2.34/srclib/apr/include/apr_atomic.h /tmp/httpd-2.2.34/srclib/apr/include/apr_dso.h /tmp/httpd-2.2.34/srclib/apr/include/apr_env.h /tmp/httpd-2.2.34/srclib/apr/include/apr_errno.h /tmp/httpd-2.2.34/srclib/apr/include/apr_escape.h /tmp/httpd-2.2.34/srclib/apr/include/apr_file_info.h /tmp/httpd-2.2.34/srclib/apr/include/apr_file_io.h /tmp/httpd-2.2.34/srclib/apr/include/apr_fnmatch.h /tmp/httpd-2.2.34/srclib/apr/include/apr_general.h /tmp/httpd-2.2.34/srclib/apr/include/apr_getopt.h /tmp/httpd-2.2.34/srclib/apr/include/apr_global_mutex.h /tmp/httpd-2.2.34/srclib/apr/include/apr_hash.h /tmp/httpd-2.2.34/srclib/apr/include/apr_inherit.h /tmp/httpd-2.2.34/srclib/apr/include/apr_lib.h /tmp/httpd-2.2.34/srclib/apr/include/apr_mmap.h /tmp/httpd-2.2.34/srclib/apr/include/apr_network_io.h /tmp/httpd-2.2.34/srclib/apr/include/apr_poll.h /tmp/httpd-2.2.34/srclib/apr/include/apr_pools.h /tmp/httpd-2.2.34/srclib/apr/include/apr_portable.h /tmp/httpd-2.2.34/srclib/apr/include/apr_proc_mutex.h /tmp/httpd-2.2.34/srclib/apr/include/apr_random.h /tmp/httpd-2.2.34/srclib/apr/include/apr_ring.h /tmp/httpd-2.2.34/srclib/apr/include/apr_shm.h /tmp/httpd-2.2.34/srclib/apr/include/apr_signal.h /tmp/httpd-2.2.34/srclib/apr/include/apr_skiplist.h /tmp/httpd-2.2.34/srclib/apr/include/apr_strings.h /tmp/httpd-2.2.34/srclib/apr/include/apr_support.h /tmp/httpd-2.2.34/srclib/apr/include/apr_tables.h /tmp/httpd-2.2.34/srclib/apr/include/apr_thread_cond.h /tmp/httpd-2.2.34/srclib/apr/include/apr_thread_mutex.h /tmp/httpd-2.2.34/srclib/apr/include/apr_thread_proc.h /tmp/httpd-2.2.34/srclib/apr/include/apr_thread_rwlock.h /tmp/httpd-2.2.34/srclib/apr/include/apr_time.h /tmp/httpd-2.2.34/srclib/apr/include/apr_user.h /tmp/httpd-2.2.34/srclib/apr/include/apr_version.h /tmp/httpd-2.2.34/srclib/apr/include/apr_want.h > exports.c
gawk -f /tmp/httpd-2.2.34/srclib/apr/build/make_var_export.awk /tmp/httpd-2.2.34/srclib/apr/include/apr_allocator.h /tmp/httpd-2.2.34/srclib/apr/include/apr_atomic.h /tmp/httpd-2.2.34/srclib/apr/include/apr_dso.h /tmp/httpd-2.2.34/srclib/apr/include/apr_env.h /tmp/httpd-2.2.34/srclib/apr/include/apr_errno.h /tmp/httpd-2.2.34/srclib/apr/include/apr_escape.h /tmp/httpd-2.2.34/srclib/apr/include/apr_file_info.h /tmp/httpd-2.2.34/srclib/apr/include/apr_file_io.h /tmp/httpd-2.2.34/srclib/apr/include/apr_fnmatch.h /tmp/httpd-2.2.34/srclib/apr/include/apr_general.h /tmp/httpd-2.2.34/srclib/apr/include/apr_getopt.h /tmp/httpd-2.2.34/srclib/apr/include/apr_global_mutex.h /tmp/httpd-2.2.34/srclib/apr/include/apr_hash.h /tmp/httpd-2.2.34/srclib/apr/include/apr_inherit.h /tmp/httpd-2.2.34/srclib/apr/include/apr_lib.h /tmp/httpd-2.2.34/srclib/apr/include/apr_mmap.h /tmp/httpd-2.2.34/srclib/apr/include/apr_network_io.h /tmp/httpd-2.2.34/srclib/apr/include/apr_poll.h /tmp/httpd-2.2.34/srclib/apr/include/apr_pools.h /tmp/httpd-2.2.34/srclib/apr/include/apr_portable.h /tmp/httpd-2.2.34/srclib/apr/include/apr_proc_mutex.h /tmp/httpd-2.2.34/srclib/apr/include/apr_random.h /tmp/httpd-2.2.34/srclib/apr/include/apr_ring.h /tmp/httpd-2.2.34/srclib/apr/include/apr_shm.h /tmp/httpd-2.2.34/srclib/apr/include/apr_signal.h /tmp/httpd-2.2.34/srclib/apr/include/apr_skiplist.h /tmp/httpd-2.2.34/srclib/apr/include/apr_strings.h /tmp/httpd-2.2.34/srclib/apr/include/apr_support.h /tmp/httpd-2.2.34/srclib/apr/include/apr_tables.h /tmp/httpd-2.2.34/srclib/apr/include/apr_thread_cond.h /tmp/httpd-2.2.34/srclib/apr/include/apr_thread_mutex.h /tmp/httpd-2.2.34/srclib/apr/include/apr_thread_proc.h /tmp/httpd-2.2.34/srclib/apr/include/apr_thread_rwlock.h /tmp/httpd-2.2.34/srclib/apr/include/apr_time.h /tmp/httpd-2.2.34/srclib/apr/include/apr_user.h /tmp/httpd-2.2.34/srclib/apr/include/apr_version.h /tmp/httpd-2.2.34/srclib/apr/include/apr_want.h > export_vars.c
gcc -E -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I./include -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/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/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I./include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include/arch/unix -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr/include/private -I/tmp/httpd-2.2.34/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/httpd2/build,' -e 's,^\(top_build.*=\).*$,\1/usr/local/httpd2/build,' < build/apr_rules.mk > build/apr_rules.out
make[3]: 离开目录“/tmp/httpd-2.2.34/srclib/apr”
make[2]: 离开目录“/tmp/httpd-2.2.34/srclib/apr”
Making all in apr-util
make[2]: 进入目录“/tmp/httpd-2.2.34/srclib/apr-util”
Making all in xml/expat
make[3]: 进入目录“/tmp/httpd-2.2.34/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/httpd2/lib  -o libexpat.la lib/xmlparse.lo lib/xmltok.lo lib/xmlrole.lo
make[3]: 离开目录“/tmp/httpd-2.2.34/srclib/apr-util/xml/expat”
make[3]: 进入目录“/tmp/httpd-2.2.34/srclib/apr-util”
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/srclib/apr-util/xml/expat/lib  -o buckets/apr_brigade.lo -c buckets/apr_brigade.c && touch buckets/apr_brigade.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/srclib/apr-util/xml/expat/lib  -o buckets/apr_buckets.lo -c buckets/apr_buckets.c && touch buckets/apr_buckets.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/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 /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/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 /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/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 /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/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 /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/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 /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/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 /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/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 /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/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 /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/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 /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/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 /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/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 /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/srclib/apr-util/xml/expat/lib  -o crypto/apr_crypto.lo -c crypto/apr_crypto.c && touch crypto/apr_crypto.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/srclib/apr-util/xml/expat/lib  -o crypto/apr_md4.lo -c crypto/apr_md4.c && touch crypto/apr_md4.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/srclib/apr-util/xml/expat/lib  -o crypto/apr_md5.lo -c crypto/apr_md5.c && touch crypto/apr_md5.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/srclib/apr-util/xml/expat/lib  -o crypto/apr_passwd.lo -c crypto/apr_passwd.c && touch crypto/apr_passwd.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/srclib/apr-util/xml/expat/lib  -o crypto/apr_sha1.lo -c crypto/apr_sha1.c && touch crypto/apr_sha1.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/srclib/apr-util/xml/expat/lib  -o crypto/crypt_blowfish.lo -c crypto/crypt_blowfish.c && touch crypto/crypt_blowfish.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/srclib/apr-util/xml/expat/lib  -o crypto/getuuid.lo -c crypto/getuuid.c && touch crypto/getuuid.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/srclib/apr-util/xml/expat/lib  -o crypto/uuid.lo -c crypto/uuid.c && touch crypto/uuid.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/srclib/apr-util/xml/expat/lib  -o dbd/apr_dbd.lo -c dbd/apr_dbd.c && touch dbd/apr_dbd.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/srclib/apr-util/xml/expat/lib  -o dbm/apr_dbm.lo -c dbm/apr_dbm.c && touch dbm/apr_dbm.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/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 /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/srclib/apr-util/xml/expat/lib  -o dbm/sdbm/sdbm.lo -c dbm/sdbm/sdbm.c && touch dbm/sdbm/sdbm.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/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 /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/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 /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/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 /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/srclib/apr-util/xml/expat/lib  -o encoding/apr_base64.lo -c encoding/apr_base64.c && touch encoding/apr_base64.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/srclib/apr-util/xml/expat/lib  -o hooks/apr_hooks.lo -c hooks/apr_hooks.c && touch hooks/apr_hooks.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/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 /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/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 /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/srclib/apr-util/xml/expat/lib  -o memcache/apr_memcache.lo -c memcache/apr_memcache.c && touch memcache/apr_memcache.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/srclib/apr-util/xml/expat/lib  -o misc/apr_date.lo -c misc/apr_date.c && touch misc/apr_date.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/srclib/apr-util/xml/expat/lib  -o misc/apr_queue.lo -c misc/apr_queue.c && touch misc/apr_queue.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/srclib/apr-util/xml/expat/lib  -o misc/apr_reslist.lo -c misc/apr_reslist.c && touch misc/apr_reslist.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/srclib/apr-util/xml/expat/lib  -o misc/apr_rmm.lo -c misc/apr_rmm.c && touch misc/apr_rmm.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/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 /tmp/httpd-2.2.34/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H  -DLINUX -D_REENTRANT -D_GNU_SOURCE   -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private  -I/tmp/httpd-2.2.34/srclib/apr/include  -I/tmp/httpd-2.2.34/srclib/apr-util/xml/expat/lib  -o misc/apu_dso.lo -c misc/apu_dso.c && touch misc/apu_dso.lo
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool -

[root@localhost httpd-2.2.34]# make install
Making install in srclib
make[1]: 进入目录“/tmp/httpd-2.2.34/srclib”
Making install in apr
make[2]: 进入目录“/tmp/httpd-2.2.34/srclib/apr”
make[3]: 进入目录“/tmp/httpd-2.2.34/srclib/apr”
make[3]: 对“local-all”无需做任何事。
make[3]: 离开目录“/tmp/httpd-2.2.34/srclib/apr”
/tmp/httpd-2.2.34/srclib/apr/build/mkdir.sh /usr/local/httpd2/lib /usr/local/httpd2/bin /usr/local/httpd2/build \
         /usr/local/httpd2/lib/pkgconfig /usr/local/httpd2/include
mkdir /usr/local/httpd2
mkdir /usr/local/httpd2/lib
mkdir /usr/local/httpd2/bin
mkdir /usr/local/httpd2/build
mkdir /usr/local/httpd2/lib/pkgconfig
mkdir /usr/local/httpd2/include
/usr/bin/install -c -m 644 /tmp/httpd-2.2.34/srclib/apr/include/apr.h /usr/local/httpd2/include
for f in /tmp/httpd-2.2.34/srclib/apr/include/apr_*.h; do \
    /usr/bin/install -c -m 644 ${f} /usr/local/httpd2/include; \
done
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --mode=install /usr/bin/install -c -m 755 libapr-1.la /usr/local/httpd2/lib
libtool: install: /usr/bin/install -c -m 755 .libs/libapr-1.so.0.5.2 /usr/local/httpd2/lib/libapr-1.so.0.5.2
libtool: install: (cd /usr/local/httpd2/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/httpd2/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/httpd2/lib/libapr-1.la
libtool: install: /usr/bin/install -c -m 755 .libs/libapr-1.a /usr/local/httpd2/lib/libapr-1.a
libtool: install: chmod 644 /usr/local/httpd2/lib/libapr-1.a
libtool: install: ranlib /usr/local/httpd2/lib/libapr-1.a
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin:/sbin" ldconfig -n /usr/local/httpd2/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/httpd2/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/httpd2/lib/apr.exp
/usr/bin/install -c -m 644 apr.pc /usr/local/httpd2/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/httpd2/build; fi; \
done
/usr/bin/install -c -m 755 /tmp/httpd-2.2.34/srclib/apr/build/mkdir.sh /usr/local/httpd2/build
for f in make_exports.awk make_var_export.awk; do \
    /usr/bin/install -c -m 644 /tmp/httpd-2.2.34/srclib/apr/build/${f} /usr/local/httpd2/build; \
done
/usr/bin/install -c -m 644 build/apr_rules.out /usr/local/httpd2/build/apr_rules.mk
/usr/bin/install -c -m 755 apr-config.out /usr/local/httpd2/bin/apr-1-config
make[2]: 离开目录“/tmp/httpd-2.2.34/srclib/apr”
Making install in apr-util
make[2]: 进入目录“/tmp/httpd-2.2.34/srclib/apr-util”
Making all in xml/expat
make[3]: 进入目录“/tmp/httpd-2.2.34/srclib/apr-util/xml/expat”
make[3]: 对“all”无需做任何事。
make[3]: 离开目录“/tmp/httpd-2.2.34/srclib/apr-util/xml/expat”
make[3]: 进入目录“/tmp/httpd-2.2.34/srclib/apr-util”
make[3]: 对“local-all”无需做任何事。
make[3]: 离开目录“/tmp/httpd-2.2.34/srclib/apr-util”
/tmp/httpd-2.2.34/srclib/apr/build/mkdir.sh /usr/local/httpd2/include /usr/local/httpd2/lib/pkgconfig \
         /usr/local/httpd2/lib /usr/local/httpd2/bin
for f in /tmp/httpd-2.2.34/srclib/apr-util/include/*.h /tmp/httpd-2.2.34/srclib/apr-util/include/*.h; do \
    /usr/bin/install -c -m 644 ${f} /usr/local/httpd2/include; \
done
/usr/bin/install -c -m 644 apr-util.pc /usr/local/httpd2/lib/pkgconfig/apr-util-1.pc
list='xml/expat'; for i in $list; do \
    ( cd $i ; make DESTDIR= install ); \
done
make[3]: 进入目录“/tmp/httpd-2.2.34/srclib/apr-util/xml/expat”
/bin/sh ./conftools/mkinstalldirs /usr/local/httpd2/lib /usr/local/httpd2/include
/bin/sh ./libtool  --mode=install /usr/bin/install -c libexpat.la /usr/local/httpd2/lib/libexpat.la
libtool: install: /usr/bin/install -c .libs/libexpat.so.0.5.0 /usr/local/httpd2/lib/libexpat.so.0.5.0
libtool: install: (cd /usr/local/httpd2/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/httpd2/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/httpd2/lib/libexpat.la
libtool: install: /usr/bin/install -c .libs/libexpat.a /usr/local/httpd2/lib/libexpat.a
libtool: install: chmod 644 /usr/local/httpd2/lib/libexpat.a
libtool: install: ranlib /usr/local/httpd2/lib/libexpat.a
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin:/sbin" ldconfig -n /usr/local/httpd2/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/httpd2/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/httpd2/include
make[3]: 离开目录“/tmp/httpd-2.2.34/srclib/apr-util/xml/expat”
/bin/sh /tmp/httpd-2.2.34/srclib/apr/libtool --mode=install /usr/bin/install -c -m 755 libaprutil-1.la /usr/local/httpd2/lib
libtool: warning: relinking 'libaprutil-1.la'
libtool: install: (cd /tmp/httpd-2.2.34/srclib/apr-util; /bin/sh "/tmp/httpd-2.2.34/srclib/apr/libtool"  --silent --mode=relink gcc -g -O2 -pthread -DHAVE_CONFIG_H -DLINUX -D_REENTRANT -D_GNU_SOURCE -I/tmp/httpd-2.2.34/srclib/apr-util/include -I/tmp/httpd-2.2.34/srclib/apr-util/include/private -I/tmp/httpd-2.2.34/srclib/apr/include -I/tmp/httpd-2.2.34/srclib/apr-util/xml/expat/lib -version-info 5:4:5 -o libaprutil-1.la -rpath /usr/local/httpd2/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 -ldl /tmp/httpd-2.2.34/srclib/apr-util/xml/expat/libexpat.la /tmp/httpd-2.2.34/srclib/apr/libapr-1.la -lrt -lcrypt -lpthread -ldl )
libtool: install: /usr/bin/install -c -m 755 .libs/libaprutil-1.so.0.5.4T /usr/local/httpd2/lib/libaprutil-1.so.0.5.4
libtool: install: (cd /usr/local/httpd2/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/httpd2/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/httpd2/lib/libaprutil-1.la
libtool: install: /usr/bin/install -c -m 755 .libs/libaprutil-1.a /usr/local/httpd2/lib/libaprutil-1.a
libtool: install: chmod 644 /usr/local/httpd2/lib/libaprutil-1.a
libtool: install: ranlib /usr/local/httpd2/lib/libaprutil-1.a
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin:/sbin" ldconfig -n /usr/local/httpd2/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/local/httpd2/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/httpd2/lib
/usr/bin/install -c -m 755 apu-config.out /usr/local/httpd2/bin/apu-1-config
make[2]: 离开目录“/tmp/httpd-2.2.34/srclib/apr-util”
Making install in pcre
make[2]: 进入目录“/tmp/httpd-2.2.34/srclib/pcre”
make[3]: 进入目录“/tmp/httpd-2.2.34/srclib/pcre”
make[3]: 离开目录“/tmp/httpd-2.2.34/srclib/pcre”
make[2]: 离开目录“/tmp/httpd-2.2.34/srclib/pcre”
make[2]: 进入目录“/tmp/httpd-2.2.34/srclib”
make[2]: 离开目录“/tmp/httpd-2.2.34/srclib”
make[1]: 离开目录“/tmp/httpd-2.2.34/srclib”
Making install in os
make[1]: 进入目录“/tmp/httpd-2.2.34/os”
Making install in unix
make[2]: 进入目录“/tmp/httpd-2.2.34/os/unix”
make[3]: 进入目录“/tmp/httpd-2.2.34/os/unix”
make[3]: 离开目录“/tmp/httpd-2.2.34/os/unix”
make[2]: 离开目录“/tmp/httpd-2.2.34/os/unix”
make[2]: 进入目录“/tmp/httpd-2.2.34/os”
make[2]: 离开目录“/tmp/httpd-2.2.34/os”
make[1]: 离开目录“/tmp/httpd-2.2.34/os”
Making install in server
make[1]: 进入目录“/tmp/httpd-2.2.34/server”
Making install in mpm
make[2]: 进入目录“/tmp/httpd-2.2.34/server/mpm”
Making install in prefork
make[3]: 进入目录“/tmp/httpd-2.2.34/server/mpm/prefork”
make[4]: 进入目录“/tmp/httpd-2.2.34/server/mpm/prefork”
make[4]: 离开目录“/tmp/httpd-2.2.34/server/mpm/prefork”
make[3]: 离开目录“/tmp/httpd-2.2.34/server/mpm/prefork”
make[3]: 进入目录“/tmp/httpd-2.2.34/server/mpm”
make[3]: 离开目录“/tmp/httpd-2.2.34/server/mpm”
make[2]: 离开目录“/tmp/httpd-2.2.34/server/mpm”
make[2]: 进入目录“/tmp/httpd-2.2.34/server”
make[2]: 离开目录“/tmp/httpd-2.2.34/server”
make[1]: 离开目录“/tmp/httpd-2.2.34/server”
Making install in modules
make[1]: 进入目录“/tmp/httpd-2.2.34/modules”
Making install in aaa
make[2]: 进入目录“/tmp/httpd-2.2.34/modules/aaa”
make[3]: 进入目录“/tmp/httpd-2.2.34/modules/aaa”
mkdir /usr/local/httpd2/modules
make[3]: 离开目录“/tmp/httpd-2.2.34/modules/aaa”
make[2]: 离开目录“/tmp/httpd-2.2.34/modules/aaa”
Making install in filters
make[2]: 进入目录“/tmp/httpd-2.2.34/modules/filters”
make[3]: 进入目录“/tmp/httpd-2.2.34/modules/filters”
make[3]: 离开目录“/tmp/httpd-2.2.34/modules/filters”
make[2]: 离开目录“/tmp/httpd-2.2.34/modules/filters”
Making install in loggers
make[2]: 进入目录“/tmp/httpd-2.2.34/modules/loggers”
make[3]: 进入目录“/tmp/httpd-2.2.34/modules/loggers”
make[3]: 离开目录“/tmp/httpd-2.2.34/modules/loggers”
make[2]: 离开目录“/tmp/httpd-2.2.34/modules/loggers”
Making install in metadata
make[2]: 进入目录“/tmp/httpd-2.2.34/modules/metadata”
make[3]: 进入目录“/tmp/httpd-2.2.34/modules/metadata”
make[3]: 离开目录“/tmp/httpd-2.2.34/modules/metadata”
make[2]: 离开目录“/tmp/httpd-2.2.34/modules/metadata”
Making install in http
make[2]: 进入目录“/tmp/httpd-2.2.34/modules/http”
make[3]: 进入目录“/tmp/httpd-2.2.34/modules/http”
make[3]: 离开目录“/tmp/httpd-2.2.34/modules/http”
make[2]: 离开目录“/tmp/httpd-2.2.34/modules/http”
Making install in generators
make[2]: 进入目录“/tmp/httpd-2.2.34/modules/generators”
make[3]: 进入目录“/tmp/httpd-2.2.34/modules/generators”
make[3]: 离开目录“/tmp/httpd-2.2.34/modules/generators”
make[2]: 离开目录“/tmp/httpd-2.2.34/modules/generators”
Making install in mappers
make[2]: 进入目录“/tmp/httpd-2.2.34/modules/mappers”
make[3]: 进入目录“/tmp/httpd-2.2.34/modules/mappers”
make[3]: 离开目录“/tmp/httpd-2.2.34/modules/mappers”
make[2]: 离开目录“/tmp/httpd-2.2.34/modules/mappers”
make[2]: 进入目录“/tmp/httpd-2.2.34/modules”
make[2]: 离开目录“/tmp/httpd-2.2.34/modules”
make[1]: 离开目录“/tmp/httpd-2.2.34/modules”
Making install in support
make[1]: 进入目录“/tmp/httpd-2.2.34/support”
make[2]: 进入目录“/tmp/httpd-2.2.34/support”
make[2]: 离开目录“/tmp/httpd-2.2.34/support”
make[1]: 离开目录“/tmp/httpd-2.2.34/support”
make[1]: 进入目录“/tmp/httpd-2.2.34”
Installing configuration files
mkdir /etc/httpd2
mkdir /etc/httpd2/extra
mkdir /etc/httpd2/original
mkdir /etc/httpd2/original/extra
Installing HTML documents
mkdir /usr/local/httpd2/htdocs
Installing error documents
mkdir /usr/local/httpd2/error
Installing icons
mkdir /usr/local/httpd2/icons
mkdir /usr/local/httpd2/logs
Installing CGIs
mkdir /usr/local/httpd2/cgi-bin
Installing header files
Installing build system files
Installing man pages and online manual
mkdir /usr/local/httpd2/man
mkdir /usr/local/httpd2/man/man1
mkdir /usr/local/httpd2/man/man8
mkdir /usr/local/httpd2/manual
make[1]: 离开目录“/tmp/httpd-2.2.34”

 

安装完成!

原创文章,作者:M36-Masuri,如若转载,请注明出处:http://www.178linux.com/81580

(0)
上一篇 2017-10-02 11:42
下一篇 2017-10-02 11:56

相关推荐

  • shell 脚本基础作业

    1、编写脚本/root/bin/systeminfo.sh,显示当前主机系统信息,包括主机名,IPv4地址,操作系统版本,内核版本,CPU型号,内存大小,硬盘大小 #!/bin/bash :<<EOF 显示当前主机系统信息,包括主机名,IPv4地址,操作系统版本,内核版本,CPU型号,内存大小,硬盘大小 EOF Host_name=`hostna…

    Linux干货 2016-08-15
  • 软件包管理和磁盘管理

    软件运行和编译 ABI :Application Binary Interface 应用程序二进制接口     Windows和Linux不兼容      PE格式   ELF格式 库级别的虚拟化:       Linu…

    2017-04-24
  • ☞磁盘管理{分区表备份与恢复;修复fstab记录错误;制作swap分区;磁盘配额演示;}

    磁盘管理{ 分区表备份与恢复;错误fstab修复;swap分区;磁盘配额;}

    Linux干货 2016-09-04
  • 恐怖的C++语言

    Linus曾经(2007年9月)在新闻组gmane.comp.version-control.git里和一个微软的工程师(Dmitry Kakurin)争执过用C还是用C++,当时的那个微软的工程师主要是在做Git的Windows版,但他却发现Git的源码居然是C语言写的,而不是C++,于是他(Dmitry Kakurin)在Linux社区里发贴表示对Lin…

    Linux干货 2015-04-03
  • 第一周:Linux基础及哲学思想

    1.现代计算机的组成及功能    现代计算机由运算器、控制器、存储器、输入和输出设备5大部分组成。分别担当着计算机的计算,控制,存储,输入和输出等功能. 2.Linux的发行版及其之间的联系与区别     Linux发行版主要分支分为三大系列: Slackware、debian 、redhat  &…

    Linux干货 2016-06-23
  • 设计模式原则详解

        我们在应用程序开发中,一般要求尽量两做到可维护性和可复用性。       应用程序的复用可以提高应用程序的开发效率和质量,节约开发成本,恰当的复用还可以改善系统的可维护性。而在面向对象的设计里面,可维护性复用都是以面向对象设计原则为基础的,这些设计原则首先都是复用的原则,遵循这些设…

    Linux干货 2015-04-07