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.www58058.com/81580

(0)
M36-MasuriM36-Masuri
上一篇 2017-10-02
下一篇 2017-10-02

相關推薦

  • Linux手動編譯源代碼文件

    一、簡介     Linux系統上程序包安裝的方式多種多樣,一般來說可通過rpm包安裝、yum在線安裝等方式實現。但有時候為了實現某種功能,而這種功能在通常情況下又不是太常用或是因為其他原因,不能通過yum下載安裝或在網上沒有找到rpm包,只是找到了程序安裝包的源代碼的話,這種情況下我們就可以對源代碼直接進行編譯安裝,以便解決這種臨時需求…

    Linux干貨 2015-09-26
  • Gdevops 2017全球敏捷運維峰會【上海站】

    Gdevops-2017全球敏捷運維峰會-上海將于7月7日舉行,活動家提供Gdevops 2017全球敏捷運維峰會【上?!吭诰€報名服務。 峰會介紹 Introduction 全球敏捷運維峰會 數據已經成為企業的核心競爭力!誰掌控數據、更好的利用數據、實現資產化,誰就會真正率先進入大數據時代。 中國數據資產管理峰會DAMS2017,連續三年站在數據時…

    Linux干貨 2017-06-27
  • LINUX的初探

    一般而言,計算機的組成遵循著“馮諾依曼體系結構”。這種結構的體現實質上是一種存儲程序的原理,把程序本身當作數據來對待,程序和該程序處理的數據用同樣的方式來存儲。這種結構的要點是:計算機的數制采用二進制;計算機應該按照程序順序執行。

    2018-03-04
  • Linux常見文件管理命令

    1、Linux上的文件管理類命令都有哪些,其常用的使用方法及其相關示例演示。2、bash的工作特性之命令執行狀態返回值和命令行展開所涉及的內容及其示例演示。3、請使用命令行展開功能來完成以下練習:(1)、創建/tmp目錄下的:a_c, a_d, b_c, b_d(2)、創建/tmp/mylinux目錄下的:mylinux/├── bin├── boot│??…

    2018-02-26
  • Linux 磁盤、文件系統管理

    Linux 磁盤、文件系統管理                                               &nb…

    Linux干貨 2016-09-01
欧美性久久久久