IT Japan

DB 작업 메모 본문

IT/PostgreSQL

DB 작업 메모

swhwang 2016. 5. 30. 14:29
반응형

[root@tmc_db02 local]# cd /usr/local
[root@tmc_db02 local]# ls -la
total 96
drwxr-xr-x 12 root     root     4096 Mar 23 21:46 .
drwxr-xr-x 14 root     root     4096 Mar 23 21:47 ..
drwxr-xr-x  2 root     root     4096 Mar 11  2009 bin
drwxr-xr-x  2 root     root     4096 Mar 11  2009 etc
drwxr-xr-x  2 root     root     4096 Mar 11  2009 games
drwxr-xr-x  2 root     root     4096 Mar 11  2009 include
drwxr-xr-x  2 root     root     4096 Mar 11  2009 lib
drwxr-xr-x  2 root     root     4096 Mar 11  2009 lib64
drwxr-xr-x  2 root     root     4096 Mar 11  2009 libexec
drwxr-xr-x  2 root     root     4096 Mar 11  2009 sbin
drwxr-xr-x  4 root     root     4096 Mar 23 21:46 share
drwxr-xr-x  2 interdev interdev 4096 Mar 25 08:39 src
[root@tmc_db02 local]# cd src
[root@tmc_db02 src]# ls -la
total 17936
drwxr-xr-x  2 interdev interdev     4096 Mar 25 08:39 .
drwxr-xr-x 12 root     root         4096 Mar 23 21:46 ..
-rw-r--r--  1 interdev interdev 18319339 Dec 13 19:21 postgresql-9.0.2.tar.gz
-rw-r--r--  1 interdev interdev       65 Dec 13 19:21 postgresql-9.0.2.tar.gz.md5
[root@tmc_db02 src]#
[root@tmc_db02 src]#
[root@tmc_db02 src]#
[root@tmc_db02 src]#
[root@tmc_db02 src]#
[root@tmc_db02 src]#
[root@tmc_db02 src]# md5sum postgresql-9.0.2.tar.gz
30e87e704e75c2c5b141182b0a37bbf0  postgresql-9.0.2.tar.gz
[root@tmc_db02 src]#
[root@tmc_db02 src]#
[root@tmc_db02 src]#
[root@tmc_db02 src]# cat postgresql-9.0.2.tar.gz.md5
MD5 (postgresql-9.0.2.tar.gz) = 30e87e704e75c2c5b141182b0a37bbf0
[root@tmc_db02 src]#
[root@tmc_db02 src]#
[root@tmc_db02 src]#
[root@tmc_db02 src]#
[root@tmc_db02 src]# tar xzf postgresql-9.0.2.tar.gz
[root@tmc_db02 src]#
[root@tmc_db02 src]#
[root@tmc_db02 src]# ls -la
total 17940
drwxr-xr-x  3 interdev interdev     4096 Mar 25 08:41 .
drwxr-xr-x 12 root     root         4096 Mar 23 21:46 ..
drwxrwxrwx  6      258      258     4096 Dec 13 19:21 postgresql-9.0.2
-rw-r--r--  1 interdev interdev 18319339 Dec 13 19:21 postgresql-9.0.2.tar.gz
-rw-r--r--  1 interdev interdev       65 Dec 13 19:21 postgresql-9.0.2.tar.gz.md5
[root@tmc_db02 src]# cd postgresql-9.0.2
[root@tmc_db02 postgresql-9.0.2]# ls -la
total 1984
drwxrwxrwx  6      258      258   4096 Dec 13 19:21 .
drwxr-xr-x  3 interdev interdev   4096 Mar 25 08:41 ..
-rw-r--r--  1      258      258    445 Dec 13 18:55 aclocal.m4
drwxrwxrwx  2      258      258   4096 Mar 25 08:41 config
-rwxr-xr-x  1      258      258 844733 Dec 13 18:55 configure
-rw-r--r--  1      258      258  60877 Dec 13 18:55 configure.in
drwxrwxrwx 46      258      258   4096 Mar 25 08:41 contrib
-rw-r--r--  1      258      258   1192 Dec 13 18:55 COPYRIGHT
drwxrwxrwx  3      258      258   4096 Mar 25 08:41 doc
-rw-r--r--  1      258      258    233 Dec 13 18:55 .gitignore
-rw-r--r--  1      258      258   3760 Dec 13 18:55 GNUmakefile.in
-rw-r--r--  1      258      258 968292 Dec 13 19:21 HISTORY
-rw-r--r--  1      258      258  79024 Dec 13 19:21 INSTALL
-rw-r--r--  1      258      258   1477 Dec 13 18:55 Makefile
-rw-r--r--  1      258      258   1287 Dec 13 18:55 README
drwxrwxrwx 14      258      258   4096 Mar 25 08:41 src
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]# ./configure --prefix=/usr/local/postgresql-9.0.2
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking which template to use... linux
checking whether to build with 64-bit integer date/time support... yes
checking whether NLS is wanted... no
checking for default port number... 5432
checking for block size... 8kB
checking for segment size... 1GB
checking for WAL block size... 8kB
checking for WAL segment size... 16MB
checking for gcc... no
checking for cc... no
configure: error: in `/usr/local/src/postgresql-9.0.2':
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details.
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]# yum -y install gcc
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* addons: centos-mirror.hostdime.com.br
* base: centos-mirror.hostdime.com.br
* extras: centos-mirror.hostdime.com.br
* updates: repo.genomics.upenn.edu
http://centos-mirror.hostdime.com.br/centos/5.5/addons/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.pop.com.br/5.5/addons/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.ufms.br/5.5/addons/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.gtdinternet.com/5.5/addons/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.metrocast.net/centos/5.5/addons/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.netlinux.cl/centos/5.5/addons/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.ueg.br/centos/5.5/addons/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirrors.adams.net/centos/5.5/addons/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirrors.hpcf.upr.edu/ftp/pub/Mirrors/CentOS/5.5/addons/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirrors.xmission.com/centos/5.5/addons/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos-mirror.hostdime.com.br/centos/5.5/os/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.pop.com.br/5.5/os/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.ufms.br/5.5/os/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.atlanticmetro.net/centos/5.5/os/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.gtdinternet.com/5.5/os/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.metrocast.net/centos/5.5/os/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.netlinux.cl/centos/5.5/os/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.team-cymru.org/CentOS/5.5/os/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.ueg.br/centos/5.5/os/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirrors.hpcf.upr.edu/ftp/pub/Mirrors/CentOS/5.5/os/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos-mirror.hostdime.com.br/centos/5.5/extras/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.pop.com.br/5.5/extras/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.ufms.br/5.5/extras/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.gtdinternet.com/5.5/extras/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.hosef.org/centos/5.5/extras/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.netlinux.cl/centos/5.5/extras/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.rackspace.com/CentOS/5.5/extras/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.ueg.br/centos/5.5/extras/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirrors.hpcf.upr.edu/ftp/pub/Mirrors/CentOS/5.5/extras/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirrors.versaweb.com/centos/5.5/extras/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
ftp://repo.genomics.upenn.edu/centos/5.5/updates/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos-mirror.hostdime.com.br/centos/5.5/updates/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.pop.com.br/5.5/updates/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.ufms.br/5.5/updates/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.ash.fastserv.com/pub/linux/centos/5.5/updates/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.gtdinternet.com/5.5/updates/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.netlinux.cl/centos/5.5/updates/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.ueg.br/centos/5.5/updates/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.umoss.org/centos/5.5/updates/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirrors.hpcf.upr.edu/ftp/pub/Mirrors/CentOS/5.5/updates/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package gcc.x86_64 0:4.1.2-48.el5 set to be updated
--> Processing Dependency: cpp = 4.1.2-48.el5 for package: gcc
--> Processing Dependency: libgomp >= 4.1.2-48.el5 for package: gcc
--> Processing Dependency: libgcc >= 4.1.2-48.el5 for package: gcc
--> Processing Dependency: glibc-devel >= 2.2.90-12 for package: gcc
--> Running transaction check
---> Package cpp.x86_64 0:4.1.2-48.el5 set to be updated
---> Package glibc-devel.x86_64 0:2.5-49.el5_5.7 set to be updated
--> Processing Dependency: glibc-headers = 2.5-49.el5_5.7 for package: glibc-devel
--> Processing Dependency: glibc = 2.5-49.el5_5.7 for package: glibc-devel
--> Processing Dependency: glibc-headers for package: glibc-devel
---> Package libgcc.i386 0:4.1.2-48.el5 set to be updated
---> Package libgcc.x86_64 0:4.1.2-48.el5 set to be updated
---> Package libgomp.x86_64 0:4.4.0-6.el5 set to be updated
--> Running transaction check
--> Processing Dependency: glibc = 2.5-42 for package: nscd
---> Package glibc.i686 0:2.5-49.el5_5.7 set to be updated
--> Processing Dependency: glibc-common = 2.5-49.el5_5.7 for package: glibc
---> Package glibc.x86_64 0:2.5-49.el5_5.7 set to be updated
---> Package glibc-headers.x86_64 0:2.5-49.el5_5.7 set to be updated
--> Processing Dependency: kernel-headers >= 2.2.1 for package: glibc-headers
--> Processing Dependency: kernel-headers for package: glibc-headers
--> Running transaction check
---> Package glibc-common.x86_64 0:2.5-49.el5_5.7 set to be updated
---> Package kernel-headers.x86_64 0:2.6.18-194.32.1.el5 set to be updated
---> Package nscd.x86_64 0:2.5-49.el5_5.7 set to be updated
--> Finished Dependency Resolution

Dependencies Resolved

================================================================================
Package             Arch        Version                     Repository    Size
================================================================================
Installing:
gcc                 x86_64      4.1.2-48.el5                base         5.3 M
Installing for dependencies:
cpp                 x86_64      4.1.2-48.el5                base         2.9 M
glibc-devel         x86_64      2.5-49.el5_5.7              updates      2.4 M
glibc-headers       x86_64      2.5-49.el5_5.7              updates      593 k
kernel-headers      x86_64      2.6.18-194.32.1.el5         updates      1.1 M
libgomp             x86_64      4.4.0-6.el5                 base          68 k
Updating for dependencies:
glibc               i686        2.5-49.el5_5.7              updates      5.3 M
glibc               x86_64      2.5-49.el5_5.7              updates      4.8 M
glibc-common        x86_64      2.5-49.el5_5.7              updates       16 M
libgcc              i386        4.1.2-48.el5                base          95 k
libgcc              x86_64      4.1.2-48.el5                base          98 k
nscd                x86_64      2.5-49.el5_5.7              updates      166 k

Transaction Summary
================================================================================
Install      6 Package(s)
Update       6 Package(s)
Remove       0 Package(s)

Total download size: 39 M
Downloading Packages:
http://centos-mirror.hostdime.com.br/centos/5.5/os/x86_64/CentOS/libgomp-4.4.0-6.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.pop.com.br/5.5/os/x86_64/CentOS/libgomp-4.4.0-6.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.ufms.br/5.5/os/x86_64/CentOS/libgomp-4.4.0-6.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.atlanticmetro.net/centos/5.5/os/x86_64/CentOS/libgomp-4.4.0-6.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.gtdinternet.com/5.5/os/x86_64/CentOS/libgomp-4.4.0-6.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.metrocast.net/centos/5.5/os/x86_64/CentOS/libgomp-4.4.0-6.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.netlinux.cl/centos/5.5/os/x86_64/CentOS/libgomp-4.4.0-6.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.team-cymru.org/CentOS/5.5/os/x86_64/CentOS/libgomp-4.4.0-6.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.ueg.br/centos/5.5/os/x86_64/CentOS/libgomp-4.4.0-6.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirrors.hpcf.upr.edu/ftp/pub/Mirrors/CentOS/5.5/os/x86_64/CentOS/libgomp-4.4.0-6.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos-mirror.hostdime.com.br/centos/5.5/os/x86_64/CentOS/libgcc-4.1.2-48.el5.i386.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.pop.com.br/5.5/os/x86_64/CentOS/libgcc-4.1.2-48.el5.i386.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.ufms.br/5.5/os/x86_64/CentOS/libgcc-4.1.2-48.el5.i386.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.atlanticmetro.net/centos/5.5/os/x86_64/CentOS/libgcc-4.1.2-48.el5.i386.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.gtdinternet.com/5.5/os/x86_64/CentOS/libgcc-4.1.2-48.el5.i386.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.metrocast.net/centos/5.5/os/x86_64/CentOS/libgcc-4.1.2-48.el5.i386.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.netlinux.cl/centos/5.5/os/x86_64/CentOS/libgcc-4.1.2-48.el5.i386.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.team-cymru.org/CentOS/5.5/os/x86_64/CentOS/libgcc-4.1.2-48.el5.i386.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.ueg.br/centos/5.5/os/x86_64/CentOS/libgcc-4.1.2-48.el5.i386.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirrors.hpcf.upr.edu/ftp/pub/Mirrors/CentOS/5.5/os/x86_64/CentOS/libgcc-4.1.2-48.el5.i386.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos-mirror.hostdime.com.br/centos/5.5/os/x86_64/CentOS/libgcc-4.1.2-48.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.pop.com.br/5.5/os/x86_64/CentOS/libgcc-4.1.2-48.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.ufms.br/5.5/os/x86_64/CentOS/libgcc-4.1.2-48.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.atlanticmetro.net/centos/5.5/os/x86_64/CentOS/libgcc-4.1.2-48.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.gtdinternet.com/5.5/os/x86_64/CentOS/libgcc-4.1.2-48.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.metrocast.net/centos/5.5/os/x86_64/CentOS/libgcc-4.1.2-48.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.netlinux.cl/centos/5.5/os/x86_64/CentOS/libgcc-4.1.2-48.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.team-cymru.org/CentOS/5.5/os/x86_64/CentOS/libgcc-4.1.2-48.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.ueg.br/centos/5.5/os/x86_64/CentOS/libgcc-4.1.2-48.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirrors.hpcf.upr.edu/ftp/pub/Mirrors/CentOS/5.5/os/x86_64/CentOS/libgcc-4.1.2-48.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
ftp://repo.genomics.upenn.edu/centos/5.5/updates/x86_64/RPMS/nscd-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos-mirror.hostdime.com.br/centos/5.5/updates/x86_64/RPMS/nscd-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.pop.com.br/5.5/updates/x86_64/RPMS/nscd-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.ufms.br/5.5/updates/x86_64/RPMS/nscd-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.ash.fastserv.com/pub/linux/centos/5.5/updates/x86_64/RPMS/nscd-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.gtdinternet.com/5.5/updates/x86_64/RPMS/nscd-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.netlinux.cl/centos/5.5/updates/x86_64/RPMS/nscd-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.ueg.br/centos/5.5/updates/x86_64/RPMS/nscd-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.umoss.org/centos/5.5/updates/x86_64/RPMS/nscd-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirrors.hpcf.upr.edu/ftp/pub/Mirrors/CentOS/5.5/updates/x86_64/RPMS/nscd-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
ftp://repo.genomics.upenn.edu/centos/5.5/updates/x86_64/RPMS/glibc-headers-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos-mirror.hostdime.com.br/centos/5.5/updates/x86_64/RPMS/glibc-headers-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.pop.com.br/5.5/updates/x86_64/RPMS/glibc-headers-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.ufms.br/5.5/updates/x86_64/RPMS/glibc-headers-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.ash.fastserv.com/pub/linux/centos/5.5/updates/x86_64/RPMS/glibc-headers-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.gtdinternet.com/5.5/updates/x86_64/RPMS/glibc-headers-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.netlinux.cl/centos/5.5/updates/x86_64/RPMS/glibc-headers-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.ueg.br/centos/5.5/updates/x86_64/RPMS/glibc-headers-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.umoss.org/centos/5.5/updates/x86_64/RPMS/glibc-headers-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirrors.hpcf.upr.edu/ftp/pub/Mirrors/CentOS/5.5/updates/x86_64/RPMS/glibc-headers-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
ftp://repo.genomics.upenn.edu/centos/5.5/updates/x86_64/RPMS/kernel-headers-2.6.18-194.32.1.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos-mirror.hostdime.com.br/centos/5.5/updates/x86_64/RPMS/kernel-headers-2.6.18-194.32.1.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.pop.com.br/5.5/updates/x86_64/RPMS/kernel-headers-2.6.18-194.32.1.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.ufms.br/5.5/updates/x86_64/RPMS/kernel-headers-2.6.18-194.32.1.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.ash.fastserv.com/pub/linux/centos/5.5/updates/x86_64/RPMS/kernel-headers-2.6.18-194.32.1.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.gtdinternet.com/5.5/updates/x86_64/RPMS/kernel-headers-2.6.18-194.32.1.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.netlinux.cl/centos/5.5/updates/x86_64/RPMS/kernel-headers-2.6.18-194.32.1.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.ueg.br/centos/5.5/updates/x86_64/RPMS/kernel-headers-2.6.18-194.32.1.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.umoss.org/centos/5.5/updates/x86_64/RPMS/kernel-headers-2.6.18-194.32.1.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirrors.hpcf.upr.edu/ftp/pub/Mirrors/CentOS/5.5/updates/x86_64/RPMS/kernel-headers-2.6.18-194.32.1.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
ftp://repo.genomics.upenn.edu/centos/5.5/updates/x86_64/RPMS/glibc-devel-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos-mirror.hostdime.com.br/centos/5.5/updates/x86_64/RPMS/glibc-devel-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.pop.com.br/5.5/updates/x86_64/RPMS/glibc-devel-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.ufms.br/5.5/updates/x86_64/RPMS/glibc-devel-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.ash.fastserv.com/pub/linux/centos/5.5/updates/x86_64/RPMS/glibc-devel-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.gtdinternet.com/5.5/updates/x86_64/RPMS/glibc-devel-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.netlinux.cl/centos/5.5/updates/x86_64/RPMS/glibc-devel-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.ueg.br/centos/5.5/updates/x86_64/RPMS/glibc-devel-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.umoss.org/centos/5.5/updates/x86_64/RPMS/glibc-devel-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirrors.hpcf.upr.edu/ftp/pub/Mirrors/CentOS/5.5/updates/x86_64/RPMS/glibc-devel-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos-mirror.hostdime.com.br/centos/5.5/os/x86_64/CentOS/cpp-4.1.2-48.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.pop.com.br/5.5/os/x86_64/CentOS/cpp-4.1.2-48.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.ufms.br/5.5/os/x86_64/CentOS/cpp-4.1.2-48.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.atlanticmetro.net/centos/5.5/os/x86_64/CentOS/cpp-4.1.2-48.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.gtdinternet.com/5.5/os/x86_64/CentOS/cpp-4.1.2-48.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.metrocast.net/centos/5.5/os/x86_64/CentOS/cpp-4.1.2-48.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.netlinux.cl/centos/5.5/os/x86_64/CentOS/cpp-4.1.2-48.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.team-cymru.org/CentOS/5.5/os/x86_64/CentOS/cpp-4.1.2-48.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.ueg.br/centos/5.5/os/x86_64/CentOS/cpp-4.1.2-48.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirrors.hpcf.upr.edu/ftp/pub/Mirrors/CentOS/5.5/os/x86_64/CentOS/cpp-4.1.2-48.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
ftp://repo.genomics.upenn.edu/centos/5.5/updates/x86_64/RPMS/glibc-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos-mirror.hostdime.com.br/centos/5.5/updates/x86_64/RPMS/glibc-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.pop.com.br/5.5/updates/x86_64/RPMS/glibc-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.ufms.br/5.5/updates/x86_64/RPMS/glibc-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.ash.fastserv.com/pub/linux/centos/5.5/updates/x86_64/RPMS/glibc-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.gtdinternet.com/5.5/updates/x86_64/RPMS/glibc-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.netlinux.cl/centos/5.5/updates/x86_64/RPMS/glibc-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.ueg.br/centos/5.5/updates/x86_64/RPMS/glibc-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.umoss.org/centos/5.5/updates/x86_64/RPMS/glibc-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirrors.hpcf.upr.edu/ftp/pub/Mirrors/CentOS/5.5/updates/x86_64/RPMS/glibc-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos-mirror.hostdime.com.br/centos/5.5/os/x86_64/CentOS/gcc-4.1.2-48.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.pop.com.br/5.5/os/x86_64/CentOS/gcc-4.1.2-48.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.ufms.br/5.5/os/x86_64/CentOS/gcc-4.1.2-48.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.atlanticmetro.net/centos/5.5/os/x86_64/CentOS/gcc-4.1.2-48.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.gtdinternet.com/5.5/os/x86_64/CentOS/gcc-4.1.2-48.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.metrocast.net/centos/5.5/os/x86_64/CentOS/gcc-4.1.2-48.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.netlinux.cl/centos/5.5/os/x86_64/CentOS/gcc-4.1.2-48.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.team-cymru.org/CentOS/5.5/os/x86_64/CentOS/gcc-4.1.2-48.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.ueg.br/centos/5.5/os/x86_64/CentOS/gcc-4.1.2-48.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirrors.hpcf.upr.edu/ftp/pub/Mirrors/CentOS/5.5/os/x86_64/CentOS/gcc-4.1.2-48.el5.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
ftp://repo.genomics.upenn.edu/centos/5.5/updates/x86_64/RPMS/glibc-2.5-49.el5_5.7.i686.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos-mirror.hostdime.com.br/centos/5.5/updates/x86_64/RPMS/glibc-2.5-49.el5_5.7.i686.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.pop.com.br/5.5/updates/x86_64/RPMS/glibc-2.5-49.el5_5.7.i686.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.ufms.br/5.5/updates/x86_64/RPMS/glibc-2.5-49.el5_5.7.i686.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.ash.fastserv.com/pub/linux/centos/5.5/updates/x86_64/RPMS/glibc-2.5-49.el5_5.7.i686.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.gtdinternet.com/5.5/updates/x86_64/RPMS/glibc-2.5-49.el5_5.7.i686.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.netlinux.cl/centos/5.5/updates/x86_64/RPMS/glibc-2.5-49.el5_5.7.i686.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.ueg.br/centos/5.5/updates/x86_64/RPMS/glibc-2.5-49.el5_5.7.i686.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.umoss.org/centos/5.5/updates/x86_64/RPMS/glibc-2.5-49.el5_5.7.i686.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirrors.hpcf.upr.edu/ftp/pub/Mirrors/CentOS/5.5/updates/x86_64/RPMS/glibc-2.5-49.el5_5.7.i686.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
ftp://repo.genomics.upenn.edu/centos/5.5/updates/x86_64/RPMS/glibc-common-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos-mirror.hostdime.com.br/centos/5.5/updates/x86_64/RPMS/glibc-common-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.pop.com.br/5.5/updates/x86_64/RPMS/glibc-common-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.ufms.br/5.5/updates/x86_64/RPMS/glibc-common-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.ash.fastserv.com/pub/linux/centos/5.5/updates/x86_64/RPMS/glibc-common-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.gtdinternet.com/5.5/updates/x86_64/RPMS/glibc-common-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.netlinux.cl/centos/5.5/updates/x86_64/RPMS/glibc-common-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.ueg.br/centos/5.5/updates/x86_64/RPMS/glibc-common-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.umoss.org/centos/5.5/updates/x86_64/RPMS/glibc-common-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirrors.hpcf.upr.edu/ftp/pub/Mirrors/CentOS/5.5/updates/x86_64/RPMS/glibc-common-2.5-49.el5_5.7.x86_64.rpm: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.


Error Downloading Packages:
  kernel-headers-2.6.18-194.32.1.el5.x86_64: failure: RPMS/kernel-headers-2.6.18-194.32.1.el5.x86_64.rpm from updates: [Errno 256] No more mirrors to try.
  glibc-2.5-49.el5_5.7.i686: failure: RPMS/glibc-2.5-49.el5_5.7.i686.rpm from updates: [Errno 256] No more mirrors to try.
  cpp-4.1.2-48.el5.x86_64: failure: CentOS/cpp-4.1.2-48.el5.x86_64.rpm from base: [Errno 256] No more mirrors to try.
  libgomp-4.4.0-6.el5.x86_64: failure: CentOS/libgomp-4.4.0-6.el5.x86_64.rpm from base: [Errno 256] No more mirrors to try.
  glibc-devel-2.5-49.el5_5.7.x86_64: failure: RPMS/glibc-devel-2.5-49.el5_5.7.x86_64.rpm from updates: [Errno 256] No more mirrors to try.
  gcc-4.1.2-48.el5.x86_64: failure: CentOS/gcc-4.1.2-48.el5.x86_64.rpm from base: [Errno 256] No more mirrors to try.
  glibc-common-2.5-49.el5_5.7.x86_64: failure: RPMS/glibc-common-2.5-49.el5_5.7.x86_64.rpm from updates: [Errno 256] No more mirrors to try.
  glibc-headers-2.5-49.el5_5.7.x86_64: failure: RPMS/glibc-headers-2.5-49.el5_5.7.x86_64.rpm from updates: [Errno 256] No more mirrors to try.
  libgcc-4.1.2-48.el5.x86_64: failure: CentOS/libgcc-4.1.2-48.el5.x86_64.rpm from base: [Errno 256] No more mirrors to try.
  glibc-2.5-49.el5_5.7.x86_64: failure: RPMS/glibc-2.5-49.el5_5.7.x86_64.rpm from updates: [Errno 256] No more mirrors to try.
  libgcc-4.1.2-48.el5.i386: failure: CentOS/libgcc-4.1.2-48.el5.i386.rpm from base: [Errno 256] No more mirrors to try.
  nscd-2.5-49.el5_5.7.x86_64: failure: RPMS/nscd-2.5-49.el5_5.7.x86_64.rpm from updates: [Errno 256] No more mirrors to try.

[root@tmc_db02 postgresql-9.0.2]# ./configure --prefix=/usr/local/postgresql-9.0.2
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking which template to use... linux
checking whether to build with 64-bit integer date/time support... yes
checking whether NLS is wanted... no
checking for default port number... 5432
checking for block size... 8kB
checking for segment size... 1GB
checking for WAL block size... 8kB
checking for WAL segment size... 16MB
checking for gcc... no
checking for cc... no
configure: error: in `/usr/local/src/postgresql-9.0.2':
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details.
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]# rpm -qa | grep gcc
libgcc-4.1.2-46.el5
libgcc-4.1.2-46.el5
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]# configure: error: no acceptable C compiler found in $PATH
[root@tmc_db02 postgresql-9.0.2]#  yum -y install gcc gcc-c++
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* addons: centos-mirror.hostdime.com.br
* base: centos-mirror.hostdime.com.br
* extras: centos-mirror.hostdime.com.br
* updates: repo.genomics.upenn.edu
http://centos-mirror.hostdime.com.br/centos/5.5/addons/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.pop.com.br/5.5/addons/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.ufms.br/5.5/addons/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.gtdinternet.com/5.5/addons/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.metrocast.net/centos/5.5/addons/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.netlinux.cl/centos/5.5/addons/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.ueg.br/centos/5.5/addons/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirrors.adams.net/centos/5.5/addons/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirrors.hpcf.upr.edu/ftp/pub/Mirrors/CentOS/5.5/addons/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirrors.xmission.com/centos/5.5/addons/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos-mirror.hostdime.com.br/centos/5.5/os/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.pop.com.br/5.5/os/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.ufms.br/5.5/os/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.atlanticmetro.net/centos/5.5/os/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.gtdinternet.com/5.5/os/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.metrocast.net/centos/5.5/os/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.netlinux.cl/centos/5.5/os/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.team-cymru.org/CentOS/5.5/os/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.ueg.br/centos/5.5/os/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirrors.hpcf.upr.edu/ftp/pub/Mirrors/CentOS/5.5/os/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos-mirror.hostdime.com.br/centos/5.5/extras/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.pop.com.br/5.5/extras/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.ufms.br/5.5/extras/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.gtdinternet.com/5.5/extras/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.hosef.org/centos/5.5/extras/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.netlinux.cl/centos/5.5/extras/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.rackspace.com/CentOS/5.5/extras/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.ueg.br/centos/5.5/extras/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirrors.hpcf.upr.edu/ftp/pub/Mirrors/CentOS/5.5/extras/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirrors.versaweb.com/centos/5.5/extras/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
ftp://repo.genomics.upenn.edu/centos/5.5/updates/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos-mirror.hostdime.com.br/centos/5.5/updates/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.pop.com.br/5.5/updates/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.ufms.br/5.5/updates/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.ash.fastserv.com/pub/linux/centos/5.5/updates/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.gtdinternet.com/5.5/updates/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.netlinux.cl/centos/5.5/updates/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.ueg.br/centos/5.5/updates/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.umoss.org/centos/5.5/updates/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirrors.hpcf.upr.edu/ftp/pub/Mirrors/CentOS/5.5/updates/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package gcc.x86_64 0:4.1.2-48.el5 set to be updated
--> Processing Dependency: cpp = 4.1.2-48.el5 for package: gcc
--> Processing Dependency: libgomp >= 4.1.2-48.el5 for package: gcc
--> Processing Dependency: libgcc >= 4.1.2-48.el5 for package: gcc
--> Processing Dependency: glibc-devel >= 2.2.90-12 for package: gcc
---> Package gcc-c++.x86_64 0:4.1.2-48.el5 set to be updated
--> Processing Dependency: libstdc++-devel = 4.1.2-48.el5 for package: gcc-c++
--> Processing Dependency: libstdc++ = 4.1.2-48.el5 for package: gcc-c++
--> Running transaction check
---> Package cpp.x86_64 0:4.1.2-48.el5 set to be updated
---> Package glibc-devel.x86_64 0:2.5-49.el5_5.7 set to be updated
--> Processing Dependency: glibc-headers = 2.5-49.el5_5.7 for package: glibc-devel
--> Processing Dependency: glibc = 2.5-49.el5_5.7 for package: glibc-devel
--> Processing Dependency: glibc-headers for package: glibc-devel
---> Package libgcc.i386 0:4.1.2-48.el5 set to be updated
---> Package libgcc.x86_64 0:4.1.2-48.el5 set to be updated
---> Package libgomp.x86_64 0:4.4.0-6.el5 set to be updated
---> Package libstdc++.i386 0:4.1.2-48.el5 set to be updated
---> Package libstdc++.x86_64 0:4.1.2-48.el5 set to be updated
---> Package libstdc++-devel.x86_64 0:4.1.2-48.el5 set to be updated
http://centos-mirror.hostdime.com.br/centos/5.5/addons/x86_64/repodata/filelists.xml.gz: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.pop.com.br/5.5/addons/x86_64/repodata/filelists.xml.gz: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://centos.ufms.br/5.5/addons/x86_64/repodata/filelists.xml.gz: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.gtdinternet.com/5.5/addons/x86_64/repodata/filelists.xml.gz: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.metrocast.net/centos/5.5/addons/x86_64/repodata/filelists.xml.gz: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.netlinux.cl/centos/5.5/addons/x86_64/repodata/filelists.xml.gz: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirror.ueg.br/centos/5.5/addons/x86_64/repodata/filelists.xml.gz: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirrors.adams.net/centos/5.5/addons/x86_64/repodata/filelists.xml.gz: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirrors.hpcf.upr.edu/ftp/pub/Mirrors/CentOS/5.5/addons/x86_64/repodata/filelists.xml.gz: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
http://mirrors.xmission.com/centos/5.5/addons/x86_64/repodata/filelists.xml.gz: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
Error: failure: repodata/filelists.xml.gz from addons: [Errno 256] No more mirrors to try.
You could try using --skip-broken to work around the problem
You could try running: package-cleanup --problems
                        package-cleanup --dupes
                        rpm -Va --nofiles --nodigest
The program package-cleanup is found in the yum-utils package.
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]# export http_proxy=http://172.29.1.142:80/
[root@tmc_db02 postgresql-9.0.2]# export ftp_proxy =http://172.29.1.142:80/
-bash: export: `=http://172.29.1.142:80/': not a valid identifier
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#  yum -y install gcc gcc-c++
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* addons: centos-mirror.hostdime.com.br
* base: centos-mirror.hostdime.com.br
* extras: centos-mirror.hostdime.com.br
* updates: repo.genomics.upenn.edu
addons                                                   |  951 B     00:00
base                                                     | 2.1 kB     00:00
extras                                                   | 2.1 kB     00:00
ftp://repo.genomics.upenn.edu/centos/5.5/updates/x86_64/repodata/repomd.xml: [Errno 4] IOError: <urlopen error (-3, 'Temporary failure in name resolution')>
Trying other mirror.
updates                                                  | 1.9 kB     00:00
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package gcc.x86_64 0:4.1.2-48.el5 set to be updated
--> Processing Dependency: cpp = 4.1.2-48.el5 for package: gcc
--> Processing Dependency: libgomp >= 4.1.2-48.el5 for package: gcc
--> Processing Dependency: libgcc >= 4.1.2-48.el5 for package: gcc
--> Processing Dependency: glibc-devel >= 2.2.90-12 for package: gcc
---> Package gcc-c++.x86_64 0:4.1.2-48.el5 set to be updated
--> Processing Dependency: libstdc++-devel = 4.1.2-48.el5 for package: gcc-c++
--> Processing Dependency: libstdc++ = 4.1.2-48.el5 for package: gcc-c++
--> Running transaction check
---> Package cpp.x86_64 0:4.1.2-48.el5 set to be updated
---> Package glibc-devel.x86_64 0:2.5-49.el5_5.7 set to be updated
--> Processing Dependency: glibc-headers = 2.5-49.el5_5.7 for package: glibc-devel
--> Processing Dependency: glibc = 2.5-49.el5_5.7 for package: glibc-devel
--> Processing Dependency: glibc-headers for package: glibc-devel
---> Package libgcc.i386 0:4.1.2-48.el5 set to be updated
---> Package libgcc.x86_64 0:4.1.2-48.el5 set to be updated
---> Package libgomp.x86_64 0:4.4.0-6.el5 set to be updated
---> Package libstdc++.i386 0:4.1.2-48.el5 set to be updated
---> Package libstdc++.x86_64 0:4.1.2-48.el5 set to be updated
---> Package libstdc++-devel.x86_64 0:4.1.2-48.el5 set to be updated
addons/filelists                                         |  197 B     00:00
base/filelists_db                                        | 4.0 MB     00:05
extras/filelists_db                                      | 225 kB     00:01
updates/filelists_db                                     | 3.9 MB     00:06
--> Running transaction check
--> Processing Dependency: glibc = 2.5-42 for package: nscd
---> Package glibc.i686 0:2.5-49.el5_5.7 set to be updated
--> Processing Dependency: glibc-common = 2.5-49.el5_5.7 for package: glibc
---> Package glibc.x86_64 0:2.5-49.el5_5.7 set to be updated
---> Package glibc-headers.x86_64 0:2.5-49.el5_5.7 set to be updated
--> Processing Dependency: kernel-headers >= 2.2.1 for package: glibc-headers
--> Processing Dependency: kernel-headers for package: glibc-headers
--> Running transaction check
---> Package glibc-common.x86_64 0:2.5-49.el5_5.7 set to be updated
---> Package kernel-headers.x86_64 0:2.6.18-194.32.1.el5 set to be updated
---> Package nscd.x86_64 0:2.5-49.el5_5.7 set to be updated
--> Finished Dependency Resolution

Dependencies Resolved

================================================================================
Package              Arch        Version                    Repository    Size
================================================================================
Installing:
gcc                  x86_64      4.1.2-48.el5               base         5.3 M
gcc-c++              x86_64      4.1.2-48.el5               base         3.8 M
Installing for dependencies:
cpp                  x86_64      4.1.2-48.el5               base         2.9 M
glibc-devel          x86_64      2.5-49.el5_5.7             updates      2.4 M
glibc-headers        x86_64      2.5-49.el5_5.7             updates      593 k
kernel-headers       x86_64      2.6.18-194.32.1.el5        updates      1.1 M
libgomp              x86_64      4.4.0-6.el5                base          68 k
libstdc++-devel      x86_64      4.1.2-48.el5               base         2.8 M
Updating for dependencies:
glibc                i686        2.5-49.el5_5.7             updates      5.3 M
glibc                x86_64      2.5-49.el5_5.7             updates      4.8 M
glibc-common         x86_64      2.5-49.el5_5.7             updates       16 M
libgcc               i386        4.1.2-48.el5               base          95 k
libgcc               x86_64      4.1.2-48.el5               base          98 k
libstdc++            i386        4.1.2-48.el5               base         362 k
libstdc++            x86_64      4.1.2-48.el5               base         352 k
nscd                 x86_64      2.5-49.el5_5.7             updates      166 k

Transaction Summary
================================================================================
Install      8 Package(s)
Update       8 Package(s)
Remove       0 Package(s)

Total download size: 47 M
Downloading Packages:
(1/16): libgomp-4.4.0-6.el5.x86_64.rpm                   |  68 kB     00:01
(2/16): libgcc-4.1.2-48.el5.i386.rpm                     |  95 kB     00:01
(3/16): libgcc-4.1.2-48.el5.x86_64.rpm                   |  98 kB     00:01
(4/16): nscd-2.5-49.el5_5.7.x86_64.rpm                   | 166 kB     00:01
(5/16): libstdc++-4.1.2-48.el5.x86_64.rpm                | 352 kB     00:01
(6/16): libstdc++-4.1.2-48.el5.i386.rpm                  | 362 kB     00:01
(7/16): glibc-headers-2.5-49.el5_5.7.x86_64.rpm          | 593 kB     00:02
(8/16): kernel-headers-2.6.18-194.32.1.el5.x86_64.rpm    | 1.1 MB     00:03
(9/16): glibc-devel-2.5-49.el5_5.7.x86_64.rpm            | 2.4 MB     00:04
(10/16): libstdc++-devel-4.1.2-48.el5.x86_64.rpm         | 2.8 MB     00:05
(11/16): cpp-4.1.2-48.el5.x86_64.rpm                     | 2.9 MB     00:07
(12/16): gcc-c++-4.1.2-48.el5.x86_64.rpm                 | 3.8 MB     00:05
(13/16): glibc-2.5-49.el5_5.7.x86_64.rpm                 | 4.8 MB     00:05
(14/16): gcc-4.1.2-48.el5.x86_64.rpm                     | 5.3 MB     00:05
(15/16): glibc-2.5-49.el5_5.7.i686.rpm                   | 5.3 MB     00:05
(16/16): glibc-common-2.5-49.el5_5.7.x86_64.rpm          |  16 MB     00:10
--------------------------------------------------------------------------------
Total                                           660 kB/s |  47 MB     01:12
warning: rpmts_HdrFromFdno: Header V3 DSA signature: NOKEY, key ID e8562897
updates/gpgkey                                           | 1.5 kB     00:00
Importing GPG key 0xE8562897 "CentOS-5 Key (CentOS 5 Official Signing Key) <centos-5-key@centos.org>" from /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
Running rpm_check_debug
Running Transaction Test
Finished Transaction Test
Transaction Test Succeeded
Running Transaction
  Updating       : libgcc                                                  1/24
  Updating       : glibc-common                                            2/24
  Installing     : kernel-headers                                          3/24
  Updating       : libgcc                                                  4/24
  Updating       : glibc                                                   5/24
  Updating       : glibc                                                   6/24
  Updating       : libstdc++                                               7/24
  Installing     : libgomp                                                 8/24
  Installing     : cpp                                                     9/24
  Updating       : nscd                                                   10/24
  Updating       : libstdc++                                              11/24
  Installing     : libstdc++-devel                                        12/24
  Installing     : glibc-headers                                          13/24
  Installing     : glibc-devel                                            14/24
  Installing     : gcc                                                    15/24
  Installing     : gcc-c++                                                16/24
  Cleanup        : nscd                                                   17/24
  Cleanup        : libstdc++                                              18/24
  Cleanup        : glibc                                                  19/24
  Cleanup        : glibc                                                  20/24
  Cleanup        : libstdc++                                              21/24
  Cleanup        : glibc-common                                           22/24
  Cleanup        : libgcc                                                 23/24
  Cleanup        : libgcc                                                 24/24

Installed:
  gcc.x86_64 0:4.1.2-48.el5            gcc-c++.x86_64 0:4.1.2-48.el5

Dependency Installed:
  cpp.x86_64 0:4.1.2-48.el5
  glibc-devel.x86_64 0:2.5-49.el5_5.7
  glibc-headers.x86_64 0:2.5-49.el5_5.7
  kernel-headers.x86_64 0:2.6.18-194.32.1.el5
  libgomp.x86_64 0:4.4.0-6.el5
  libstdc++-devel.x86_64 0:4.1.2-48.el5

Dependency Updated:
  glibc.i686 0:2.5-49.el5_5.7                glibc.x86_64 0:2.5-49.el5_5.7
  glibc-common.x86_64 0:2.5-49.el5_5.7       libgcc.i386 0:4.1.2-48.el5
  libgcc.x86_64 0:4.1.2-48.el5               libstdc++.i386 0:4.1.2-48.el5
  libstdc++.x86_64 0:4.1.2-48.el5            nscd.x86_64 0:2.5-49.el5_5.7

Complete!
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]# ./configure --prefix=/usr/local/postgresql-9.0.2
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking which template to use... linux
checking whether to build with 64-bit integer date/time support... yes
checking whether NLS is wanted... no
checking for default port number... 5432
checking for block size... 8kB
checking for segment size... 1GB
checking for WAL block size... 8kB
checking for WAL segment size... 16MB
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking if gcc supports -Wdeclaration-after-statement... yes
checking if gcc supports -Wendif-labels... yes
checking if gcc supports -fno-strict-aliasing... yes
checking if gcc supports -fwrapv... yes
checking whether the C compiler still works... yes
checking how to run the C preprocessor... gcc -E
checking allow thread-safe client libraries... yes
checking whether to build with Tcl... no
checking whether to build Perl modules... no
checking whether to build Python modules... no
checking whether to build with GSSAPI support... no
checking whether to build with Kerberos 5 support... no
checking whether to build with PAM support... no
checking whether to build with LDAP support... no
checking whether to build with Bonjour support... no
checking whether to build with OpenSSL support... no
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ld used by GCC... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for ranlib... ranlib
checking for strip... strip
checking whether it is possible to strip libraries... yes
checking for ar... ar
checking for tar... /bin/tar
checking whether ln -s works... yes
checking for gawk... gawk
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for bison... no
configure: WARNING:
*** Without Bison you will not be able to build PostgreSQL from Git nor
*** change any of the parser definition files.  You can obtain Bison from
*** a GNU mirror site.  (If you are using the official distribution of
*** PostgreSQL then you do not need to worry about this, because the Bison
*** output is pre-generated.)
checking for flex... no
configure: WARNING:
*** Without Flex you will not be able to build PostgreSQL from Git nor
*** change any of the scanner definition files.  You can obtain Flex from
*** a GNU mirror site.  (If you are using the official distribution of
*** PostgreSQL then you do not need to worry about this because the Flex
*** output is pre-generated.)
checking for perl... /usr/bin/perl
configure: using perl 5.8.8
checking for main in -lm... yes
checking for library containing setproctitle... no
checking for library containing dlopen... -ldl
checking for library containing socket... none required
checking for library containing shl_load... no
checking for library containing getopt_long... none required
checking for library containing crypt... -lcrypt
checking for library containing fdatasync... none required
checking for library containing gethostbyname_r... none required
checking for library containing shmget... none required
checking for -lreadline... no
checking for -ledit... no
configure: error: readline library not found
If you have readline already installed, see config.log for details on the
failure.  It is possible the compiler isn't looking in the proper directory.
Use --without-readline to disable readline support.
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#  yum install readline-devel
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* addons: centos-mirror.hostdime.com.br
* base: centos-mirror.hostdime.com.br
* extras: centos-mirror.hostdime.com.br
* updates: repo.genomics.upenn.edu
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package readline-devel.i386 0:5.1-3.el5 set to be updated
--> Processing Dependency: libtermcap-devel for package: readline-devel
---> Package readline-devel.x86_64 0:5.1-3.el5 set to be updated
--> Running transaction check
---> Package libtermcap-devel.x86_64 0:2.0.8-46.1 set to be updated
--> Finished Dependency Resolution

Dependencies Resolved

================================================================================
Package                  Arch           Version             Repository    Size
================================================================================
Installing:
readline-devel           i386           5.1-3.el5           base         146 k
readline-devel           x86_64         5.1-3.el5           base         159 k
Installing for dependencies:
libtermcap-devel         x86_64         2.0.8-46.1          base          56 k

Transaction Summary
================================================================================
Install      3 Package(s)
Update       0 Package(s)
Remove       0 Package(s)

Total download size: 360 k
Is this ok [y/N]: y
Downloading Packages:
(1/3): libtermcap-devel-2.0.8-46.1.x86_64.rpm            |  56 kB     00:00
(2/3): readline-devel-5.1-3.el5.i386.rpm                 | 146 kB     00:01
(3/3): readline-devel-5.1-3.el5.x86_64.rpm               | 159 kB     00:01
--------------------------------------------------------------------------------
Total                                            67 kB/s | 360 kB     00:05
Running rpm_check_debug
Running Transaction Test
Finished Transaction Test
Transaction Test Succeeded
Running Transaction
  Installing     : libtermcap-devel                                         1/3
  Installing     : readline-devel                                           2/3
  Installing     : readline-devel                                           3/3

Installed:
  readline-devel.i386 0:5.1-3.el5       readline-devel.x86_64 0:5.1-3.el5

Dependency Installed:
  libtermcap-devel.x86_64 0:2.0.8-46.1

Complete!
[root@tmc_db02 postgresql-9.0.2]# ./configure --prefix=/usr/local/postgresql-9.0.2
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking which template to use... linux
checking whether to build with 64-bit integer date/time support... yes
checking whether NLS is wanted... no
checking for default port number... 5432
checking for block size... 8kB
checking for segment size... 1GB
checking for WAL block size... 8kB
checking for WAL segment size... 16MB
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking if gcc supports -Wdeclaration-after-statement... yes
checking if gcc supports -Wendif-labels... yes
checking if gcc supports -fno-strict-aliasing... yes
checking if gcc supports -fwrapv... yes
checking whether the C compiler still works... yes
checking how to run the C preprocessor... gcc -E
checking allow thread-safe client libraries... yes
checking whether to build with Tcl... no
checking whether to build Perl modules... no
checking whether to build Python modules... no
checking whether to build with GSSAPI support... no
checking whether to build with Kerberos 5 support... no
checking whether to build with PAM support... no
checking whether to build with LDAP support... no
checking whether to build with Bonjour support... no
checking whether to build with OpenSSL support... no
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ld used by GCC... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for ranlib... ranlib
checking for strip... strip
checking whether it is possible to strip libraries... yes
checking for ar... ar
checking for tar... /bin/tar
checking whether ln -s works... yes
checking for gawk... gawk
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for bison... no
configure: WARNING:
*** Without Bison you will not be able to build PostgreSQL from Git nor
*** change any of the parser definition files.  You can obtain Bison from
*** a GNU mirror site.  (If you are using the official distribution of
*** PostgreSQL then you do not need to worry about this, because the Bison
*** output is pre-generated.)
checking for flex... no
configure: WARNING:
*** Without Flex you will not be able to build PostgreSQL from Git nor
*** change any of the scanner definition files.  You can obtain Flex from
*** a GNU mirror site.  (If you are using the official distribution of
*** PostgreSQL then you do not need to worry about this because the Flex
*** output is pre-generated.)
checking for perl... /usr/bin/perl
configure: using perl 5.8.8
checking for main in -lm... yes
checking for library containing setproctitle... no
checking for library containing dlopen... -ldl
checking for library containing socket... none required
checking for library containing shl_load... no
checking for library containing getopt_long... none required
checking for library containing crypt... -lcrypt
checking for library containing fdatasync... none required
checking for library containing gethostbyname_r... none required
checking for library containing shmget... none required
checking for -lreadline... yes (-lreadline -ltermcap)
checking for inflate in -lz... no
configure: error: zlib library not found
If you have zlib already installed, see config.log for details on the
failure.  It is possible the compiler isn't looking in the proper directory.
Use --without-zlib to disable zlib support.
[root@tmc_db02 postgresql-9.0.2]# wget http://prdownloads.sourceforge.net/libpng/zlib-1.2.5.tar.gz?download
--2011-03-25 08:52:01--  http://prdownloads.sourceforge.net/libpng/zlib-1.2.5.tar.gz?download
Connecting to 172.29.1.142:80... connected.
Proxy request sent, awaiting response... 301 Moved Permanently
Location: http://downloads.sourceforge.net/project/libpng/zlib/1.2.5/zlib-1.2.5.tar.gz?download= [following]
--2011-03-25 08:52:01--  http://downloads.sourceforge.net/project/libpng/zlib/1.2.5/zlib-1.2.5.tar.gz?download=
Connecting to 172.29.1.142:80... connected.
Proxy request sent, awaiting response... 302 Found
Location: http://voxel.dl.sourceforge.net/project/libpng/zlib/1.2.5/zlib-1.2.5.tar.gz [following]
--2011-03-25 08:52:01--  http://voxel.dl.sourceforge.net/project/libpng/zlib/1.2.5/zlib-1.2.5.tar.gz
Connecting to 172.29.1.142:80... connected.
Proxy request sent, awaiting response... 200 OK
Length: 544640 (532K) [application/x-gzip]
Saving to: `zlib-1.2.5.tar.gz'

100%[======================================>] 544,640      985K/s   in 0.5s

2011-03-25 08:52:02 (985 KB/s) - `zlib-1.2.5.tar.gz' saved [544640/544640]

[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]# ls -la
total 2552
drwxrwxrwx  6      258      258   4096 Mar 25 08:52 .
drwxr-xr-x  3 interdev interdev   4096 Mar 25 08:41 ..
-rw-r--r--  1      258      258    445 Dec 13 18:55 aclocal.m4
drwxrwxrwx  2      258      258   4096 Mar 25 08:41 config
-rw-r--r--  1 root     root      32398 Mar 25 08:51 config.log
-rwxr-xr-x  1      258      258 844733 Dec 13 18:55 configure
-rw-r--r--  1      258      258  60877 Dec 13 18:55 configure.in
drwxrwxrwx 46      258      258   4096 Mar 25 08:41 contrib
-rw-r--r--  1      258      258   1192 Dec 13 18:55 COPYRIGHT
drwxrwxrwx  3      258      258   4096 Mar 25 08:41 doc
-rw-r--r--  1      258      258    233 Dec 13 18:55 .gitignore
-rw-r--r--  1      258      258   3760 Dec 13 18:55 GNUmakefile.in
-rw-r--r--  1      258      258 968292 Dec 13 19:21 HISTORY
-rw-r--r--  1      258      258  79024 Dec 13 19:21 INSTALL
-rw-r--r--  1      258      258   1477 Dec 13 18:55 Makefile
-rw-r--r--  1      258      258   1287 Dec 13 18:55 README
drwxrwxrwx 14      258      258   4096 Mar 25 08:41 src
-rw-r--r--  1 root     root     544640 Apr 25  2010 zlib-1.2.5.tar.gz
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]# mv /usr/local/src/postgresql-9.0.2/zlib-1.2.5.tar.gz /usr/local/src
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]# cd /usr/local/src
[root@tmc_db02 src]# ls -la
total 18476
drwxr-xr-x  3 interdev interdev     4096 Mar 25 08:52 .
drwxr-xr-x 12 root     root         4096 Mar 23 21:46 ..
drwxrwxrwx  6      258      258     4096 Mar 25 08:52 postgresql-9.0.2
-rw-r--r--  1 interdev interdev 18319339 Dec 13 19:21 postgresql-9.0.2.tar.gz
-rw-r--r--  1 interdev interdev       65 Dec 13 19:21 postgresql-9.0.2.tar.gz.md5
-rw-r--r--  1 root     root       544640 Apr 25  2010 zlib-1.2.5.tar.gz
[root@tmc_db02 src]#
[root@tmc_db02 src]#
[root@tmc_db02 src]#
[root@tmc_db02 src]# tar xzvf zlib-1.2.5.tar.gz
zlib-1.2.5/
zlib-1.2.5/adler32.c
zlib-1.2.5/amiga/
zlib-1.2.5/amiga/Makefile.pup
zlib-1.2.5/amiga/Makefile.sas
zlib-1.2.5/ChangeLog
zlib-1.2.5/CMakeLists.txt
zlib-1.2.5/compress.c
zlib-1.2.5/configure
zlib-1.2.5/contrib/
zlib-1.2.5/contrib/ada/
zlib-1.2.5/contrib/ada/buffer_demo.adb
zlib-1.2.5/contrib/ada/mtest.adb
zlib-1.2.5/contrib/ada/read.adb
zlib-1.2.5/contrib/ada/readme.txt
zlib-1.2.5/contrib/ada/test.adb
zlib-1.2.5/contrib/ada/zlib-streams.adb
zlib-1.2.5/contrib/ada/zlib-streams.ads
zlib-1.2.5/contrib/ada/zlib-thin.adb
zlib-1.2.5/contrib/ada/zlib-thin.ads
zlib-1.2.5/contrib/ada/zlib.adb
zlib-1.2.5/contrib/ada/zlib.ads
zlib-1.2.5/contrib/ada/zlib.gpr
zlib-1.2.5/contrib/amd64/
zlib-1.2.5/contrib/amd64/amd64-match.S
zlib-1.2.5/contrib/asm686/
zlib-1.2.5/contrib/asm686/match.S
zlib-1.2.5/contrib/asm686/README.686
zlib-1.2.5/contrib/blast/
zlib-1.2.5/contrib/blast/blast.c
zlib-1.2.5/contrib/blast/blast.h
zlib-1.2.5/contrib/blast/Makefile
zlib-1.2.5/contrib/blast/README
zlib-1.2.5/contrib/blast/test.pk
zlib-1.2.5/contrib/blast/test.txt
zlib-1.2.5/contrib/delphi/
zlib-1.2.5/contrib/delphi/readme.txt
zlib-1.2.5/contrib/delphi/ZLib.pas
zlib-1.2.5/contrib/delphi/ZLibConst.pas
zlib-1.2.5/contrib/delphi/zlibd32.mak
zlib-1.2.5/contrib/dotzlib/
zlib-1.2.5/contrib/dotzlib/DotZLib/
zlib-1.2.5/contrib/dotzlib/DotZLib/AssemblyInfo.cs
zlib-1.2.5/contrib/dotzlib/DotZLib/ChecksumImpl.cs
zlib-1.2.5/contrib/dotzlib/DotZLib/CircularBuffer.cs
zlib-1.2.5/contrib/dotzlib/DotZLib/CodecBase.cs
zlib-1.2.5/contrib/dotzlib/DotZLib/Deflater.cs
zlib-1.2.5/contrib/dotzlib/DotZLib/DotZLib.cs
zlib-1.2.5/contrib/dotzlib/DotZLib/DotZLib.csproj
zlib-1.2.5/contrib/dotzlib/DotZLib/GZipStream.cs
zlib-1.2.5/contrib/dotzlib/DotZLib/Inflater.cs
zlib-1.2.5/contrib/dotzlib/DotZLib/UnitTests.cs
zlib-1.2.5/contrib/dotzlib/DotZLib.build
zlib-1.2.5/contrib/dotzlib/DotZLib.chm
zlib-1.2.5/contrib/dotzlib/DotZLib.sln
zlib-1.2.5/contrib/dotzlib/LICENSE_1_0.txt
zlib-1.2.5/contrib/dotzlib/readme.txt
zlib-1.2.5/contrib/gcc_gvmat64/
zlib-1.2.5/contrib/gcc_gvmat64/gvmat64.S
zlib-1.2.5/contrib/infback9/
zlib-1.2.5/contrib/infback9/infback9.c
zlib-1.2.5/contrib/infback9/infback9.h
zlib-1.2.5/contrib/infback9/inffix9.h
zlib-1.2.5/contrib/infback9/inflate9.h
zlib-1.2.5/contrib/infback9/inftree9.c
zlib-1.2.5/contrib/infback9/inftree9.h
zlib-1.2.5/contrib/infback9/README
zlib-1.2.5/contrib/inflate86/
zlib-1.2.5/contrib/inflate86/inffas86.c
zlib-1.2.5/contrib/inflate86/inffast.S
zlib-1.2.5/contrib/iostream/
zlib-1.2.5/contrib/iostream/test.cpp
zlib-1.2.5/contrib/iostream/zfstream.cpp
zlib-1.2.5/contrib/iostream/zfstream.h
zlib-1.2.5/contrib/iostream2/
zlib-1.2.5/contrib/iostream2/zstream.h
zlib-1.2.5/contrib/iostream2/zstream_test.cpp
zlib-1.2.5/contrib/iostream3/
zlib-1.2.5/contrib/iostream3/README
zlib-1.2.5/contrib/iostream3/test.cc
zlib-1.2.5/contrib/iostream3/TODO
zlib-1.2.5/contrib/iostream3/zfstream.cc
zlib-1.2.5/contrib/iostream3/zfstream.h
zlib-1.2.5/contrib/masmx64/
zlib-1.2.5/contrib/masmx64/bld_ml64.bat
zlib-1.2.5/contrib/masmx64/gvmat64.asm
zlib-1.2.5/contrib/masmx64/inffas8664.c
zlib-1.2.5/contrib/masmx64/inffasx64.asm
zlib-1.2.5/contrib/masmx64/readme.txt
zlib-1.2.5/contrib/masmx86/
zlib-1.2.5/contrib/masmx86/bld_ml32.bat
zlib-1.2.5/contrib/masmx86/inffas32.asm
zlib-1.2.5/contrib/masmx86/match686.asm
zlib-1.2.5/contrib/masmx86/readme.txt
zlib-1.2.5/contrib/minizip/
zlib-1.2.5/contrib/minizip/crypt.h
zlib-1.2.5/contrib/minizip/ioapi.c
zlib-1.2.5/contrib/minizip/ioapi.h
zlib-1.2.5/contrib/minizip/iowin32.c
zlib-1.2.5/contrib/minizip/iowin32.h
zlib-1.2.5/contrib/minizip/make_vms.com
zlib-1.2.5/contrib/minizip/Makefile
zlib-1.2.5/contrib/minizip/miniunz.c
zlib-1.2.5/contrib/minizip/minizip.c
zlib-1.2.5/contrib/minizip/MiniZip64_Changes.txt
zlib-1.2.5/contrib/minizip/MiniZip64_info.txt
zlib-1.2.5/contrib/minizip/mztools.c
zlib-1.2.5/contrib/minizip/mztools.h
zlib-1.2.5/contrib/minizip/unzip.c
zlib-1.2.5/contrib/minizip/unzip.h
zlib-1.2.5/contrib/minizip/zip.c
zlib-1.2.5/contrib/minizip/zip.h
zlib-1.2.5/contrib/pascal/
zlib-1.2.5/contrib/pascal/example.pas
zlib-1.2.5/contrib/pascal/readme.txt
zlib-1.2.5/contrib/pascal/zlibd32.mak
zlib-1.2.5/contrib/pascal/zlibpas.pas
zlib-1.2.5/contrib/puff/
zlib-1.2.5/contrib/puff/Makefile
zlib-1.2.5/contrib/puff/puff.c
zlib-1.2.5/contrib/puff/puff.h
zlib-1.2.5/contrib/puff/README
zlib-1.2.5/contrib/puff/zeros.raw
zlib-1.2.5/contrib/README.contrib
zlib-1.2.5/contrib/testzlib/
zlib-1.2.5/contrib/testzlib/testzlib.c
zlib-1.2.5/contrib/testzlib/testzlib.txt
zlib-1.2.5/contrib/untgz/
zlib-1.2.5/contrib/untgz/Makefile
zlib-1.2.5/contrib/untgz/Makefile.msc
zlib-1.2.5/contrib/untgz/untgz.c
zlib-1.2.5/contrib/vstudio/
zlib-1.2.5/contrib/vstudio/readme.txt
zlib-1.2.5/contrib/vstudio/vc10/
zlib-1.2.5/contrib/vstudio/vc10/miniunz.vcxproj
zlib-1.2.5/contrib/vstudio/vc10/miniunz.vcxproj.filters
zlib-1.2.5/contrib/vstudio/vc10/miniunz.vcxproj.user
zlib-1.2.5/contrib/vstudio/vc10/minizip.vcxproj
zlib-1.2.5/contrib/vstudio/vc10/minizip.vcxproj.filters
zlib-1.2.5/contrib/vstudio/vc10/minizip.vcxproj.user
zlib-1.2.5/contrib/vstudio/vc10/testzlib.vcxproj
zlib-1.2.5/contrib/vstudio/vc10/testzlib.vcxproj.filters
zlib-1.2.5/contrib/vstudio/vc10/testzlib.vcxproj.user
zlib-1.2.5/contrib/vstudio/vc10/testzlibdll.vcxproj
zlib-1.2.5/contrib/vstudio/vc10/testzlibdll.vcxproj.filters
zlib-1.2.5/contrib/vstudio/vc10/testzlibdll.vcxproj.user
zlib-1.2.5/contrib/vstudio/vc10/zlib.rc
zlib-1.2.5/contrib/vstudio/vc10/zlibstat.vcxproj
zlib-1.2.5/contrib/vstudio/vc10/zlibstat.vcxproj.filters
zlib-1.2.5/contrib/vstudio/vc10/zlibstat.vcxproj.user
zlib-1.2.5/contrib/vstudio/vc10/zlibvc.def
zlib-1.2.5/contrib/vstudio/vc10/zlibvc.sln
zlib-1.2.5/contrib/vstudio/vc10/zlibvc.vcxproj
zlib-1.2.5/contrib/vstudio/vc10/zlibvc.vcxproj.filters
zlib-1.2.5/contrib/vstudio/vc10/zlibvc.vcxproj.user
zlib-1.2.5/contrib/vstudio/vc9/
zlib-1.2.5/contrib/vstudio/vc9/miniunz.vcproj
zlib-1.2.5/contrib/vstudio/vc9/minizip.vcproj
zlib-1.2.5/contrib/vstudio/vc9/testzlib.vcproj
zlib-1.2.5/contrib/vstudio/vc9/testzlibdll.vcproj
zlib-1.2.5/contrib/vstudio/vc9/zlib.rc
zlib-1.2.5/contrib/vstudio/vc9/zlibstat.vcproj
zlib-1.2.5/contrib/vstudio/vc9/zlibvc.def
zlib-1.2.5/contrib/vstudio/vc9/zlibvc.sln
zlib-1.2.5/contrib/vstudio/vc9/zlibvc.vcproj
zlib-1.2.5/crc32.c
zlib-1.2.5/crc32.h
zlib-1.2.5/deflate.c
zlib-1.2.5/deflate.h
zlib-1.2.5/doc/
zlib-1.2.5/doc/algorithm.txt
zlib-1.2.5/doc/rfc1950.txt
zlib-1.2.5/doc/rfc1951.txt
zlib-1.2.5/doc/rfc1952.txt
zlib-1.2.5/doc/txtvsbin.txt
zlib-1.2.5/example.c
zlib-1.2.5/examples/
zlib-1.2.5/examples/enough.c
zlib-1.2.5/examples/fitblk.c
zlib-1.2.5/examples/gun.c
zlib-1.2.5/examples/gzappend.c
zlib-1.2.5/examples/gzjoin.c
zlib-1.2.5/examples/gzlog.c
zlib-1.2.5/examples/gzlog.h
zlib-1.2.5/examples/README.examples
zlib-1.2.5/examples/zlib_how.html
zlib-1.2.5/examples/zpipe.c
zlib-1.2.5/examples/zran.c
zlib-1.2.5/FAQ
zlib-1.2.5/gzclose.c
zlib-1.2.5/gzguts.h
zlib-1.2.5/gzlib.c
zlib-1.2.5/gzread.c
zlib-1.2.5/gzwrite.c
zlib-1.2.5/INDEX
zlib-1.2.5/infback.c
zlib-1.2.5/inffast.c
zlib-1.2.5/inffast.h
zlib-1.2.5/inffixed.h
zlib-1.2.5/inflate.c
zlib-1.2.5/inflate.h
zlib-1.2.5/inftrees.c
zlib-1.2.5/inftrees.h
zlib-1.2.5/make_vms.com
zlib-1.2.5/Makefile
zlib-1.2.5/Makefile.in
zlib-1.2.5/minigzip.c
zlib-1.2.5/msdos/
zlib-1.2.5/msdos/Makefile.bor
zlib-1.2.5/msdos/Makefile.dj2
zlib-1.2.5/msdos/Makefile.emx
zlib-1.2.5/msdos/Makefile.msc
zlib-1.2.5/msdos/Makefile.tc
zlib-1.2.5/nintendods/
zlib-1.2.5/nintendods/Makefile
zlib-1.2.5/nintendods/README
zlib-1.2.5/old/
zlib-1.2.5/old/as400/
zlib-1.2.5/old/as400/bndsrc
zlib-1.2.5/old/as400/compile.clp
zlib-1.2.5/old/as400/readme.txt
zlib-1.2.5/old/as400/zlib.inc
zlib-1.2.5/old/descrip.mms
zlib-1.2.5/old/Makefile.riscos
zlib-1.2.5/old/os2/
zlib-1.2.5/old/os2/Makefile.os2
zlib-1.2.5/old/os2/zlib.def
zlib-1.2.5/old/README
zlib-1.2.5/old/visual-basic.txt
zlib-1.2.5/old/visualc6/
zlib-1.2.5/old/visualc6/example.dsp
zlib-1.2.5/old/visualc6/minigzip.dsp
zlib-1.2.5/old/visualc6/README.txt
zlib-1.2.5/old/visualc6/zlib.dsp
zlib-1.2.5/old/visualc6/zlib.dsw
zlib-1.2.5/qnx/
zlib-1.2.5/qnx/package.qpg
zlib-1.2.5/README
zlib-1.2.5/treebuild.xml
zlib-1.2.5/trees.c
zlib-1.2.5/trees.h
zlib-1.2.5/uncompr.c
zlib-1.2.5/watcom/
zlib-1.2.5/watcom/watcom_f.mak
zlib-1.2.5/watcom/watcom_l.mak
zlib-1.2.5/win32/
zlib-1.2.5/win32/DLL_FAQ.txt
zlib-1.2.5/win32/Makefile.bor
zlib-1.2.5/win32/Makefile.emx
zlib-1.2.5/win32/Makefile.gcc
zlib-1.2.5/win32/Makefile.msc
zlib-1.2.5/win32/README-WIN32.txt
zlib-1.2.5/win32/VisualC.txt
zlib-1.2.5/win32/zlib.def
zlib-1.2.5/win32/zlib1.rc
zlib-1.2.5/zconf.h
zlib-1.2.5/zconf.h.cmakein
zlib-1.2.5/zconf.h.in
zlib-1.2.5/zlib.3
zlib-1.2.5/zlib.3.pdf
zlib-1.2.5/zlib.h
zlib-1.2.5/zlib.map
zlib-1.2.5/zlib.pc.in
zlib-1.2.5/zlib2ansi
zlib-1.2.5/zutil.c
zlib-1.2.5/zutil.h
[root@tmc_db02 src]#
[root@tmc_db02 src]#
[root@tmc_db02 src]#
[root@tmc_db02 src]# ls -la
total 18480
drwxr-xr-x  4 interdev interdev     4096 Mar 25 08:52 .
drwxr-xr-x 12 root     root         4096 Mar 23 21:46 ..
drwxrwxrwx  6      258      258     4096 Mar 25 08:52 postgresql-9.0.2
-rw-r--r--  1 interdev interdev 18319339 Dec 13 19:21 postgresql-9.0.2.tar.gz
-rw-r--r--  1 interdev interdev       65 Dec 13 19:21 postgresql-9.0.2.tar.gz.md5
drwxr-xr-x 12      501 games        4096 Apr 19  2010 zlib-1.2.5
-rw-r--r--  1 root     root       544640 Apr 25  2010 zlib-1.2.5.tar.gz
[root@tmc_db02 src]# cd zlib-1.2.5
[root@tmc_db02 zlib-1.2.5]#
[root@tmc_db02 zlib-1.2.5]#
[root@tmc_db02 zlib-1.2.5]#
[root@tmc_db02 zlib-1.2.5]# ./configure -shared -prefix=/usr
Checking for gcc...
Checking for shared library support...
Building shared library libz.so.1.2.5 with gcc.
Checking for off64_t... Yes.
Checking for fseeko... Yes.
Checking for unistd.h... Yes.
Checking whether to use vs[n]printf() or s[n]printf()... using vs[n]printf().
Checking for vsnprintf() in stdio.h... Yes.
Checking for return value of vsnprintf()... Yes.
Checking for attribute(visibility) support... Yes.
[root@tmc_db02 zlib-1.2.5]#
[root@tmc_db02 zlib-1.2.5]#
[root@tmc_db02 zlib-1.2.5]#
[root@tmc_db02 zlib-1.2.5]# make
gcc -O3 -D_LARGEFILE64_SOURCE=1   -c -o example.o example.c
gcc -O3 -D_LARGEFILE64_SOURCE=1   -c -o adler32.o adler32.c
gcc -O3 -D_LARGEFILE64_SOURCE=1   -c -o compress.o compress.c
gcc -O3 -D_LARGEFILE64_SOURCE=1   -c -o crc32.o crc32.c
gcc -O3 -D_LARGEFILE64_SOURCE=1   -c -o deflate.o deflate.c
gcc -O3 -D_LARGEFILE64_SOURCE=1   -c -o gzclose.o gzclose.c
gcc -O3 -D_LARGEFILE64_SOURCE=1   -c -o gzlib.o gzlib.c
gcc -O3 -D_LARGEFILE64_SOURCE=1   -c -o gzread.o gzread.c
gcc -O3 -D_LARGEFILE64_SOURCE=1   -c -o gzwrite.o gzwrite.c
gcc -O3 -D_LARGEFILE64_SOURCE=1   -c -o infback.o infback.c
gcc -O3 -D_LARGEFILE64_SOURCE=1   -c -o inffast.o inffast.c
gcc -O3 -D_LARGEFILE64_SOURCE=1   -c -o inflate.o inflate.c
gcc -O3 -D_LARGEFILE64_SOURCE=1   -c -o inftrees.o inftrees.c
gcc -O3 -D_LARGEFILE64_SOURCE=1   -c -o trees.o trees.c
gcc -O3 -D_LARGEFILE64_SOURCE=1   -c -o uncompr.o uncompr.c
gcc -O3 -D_LARGEFILE64_SOURCE=1   -c -o zutil.o zutil.c
ar rc libz.a adler32.o compress.o crc32.o deflate.o gzclose.o gzlib.o gzread.o gzwrite.o infback.o inffast.o inflate.o inftrees.o trees.o uncompr.o zutil.o
gcc -O3 -D_LARGEFILE64_SOURCE=1 -o example example.o -L. libz.a
gcc -O3 -D_LARGEFILE64_SOURCE=1   -c -o minigzip.o minigzip.c
gcc -O3 -D_LARGEFILE64_SOURCE=1 -o minigzip minigzip.o -L. libz.a
gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DPIC -c -o objs/adler32.o adler32.c
gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DPIC -c -o objs/compress.o compress.c
gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DPIC -c -o objs/crc32.o crc32.c
gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DPIC -c -o objs/deflate.o deflate.c
gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DPIC -c -o objs/gzclose.o gzclose.c
gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DPIC -c -o objs/gzlib.o gzlib.c
gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DPIC -c -o objs/gzread.o gzread.c
gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DPIC -c -o objs/gzwrite.o gzwrite.c
gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DPIC -c -o objs/infback.o infback.c
gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DPIC -c -o objs/inffast.o inffast.c
gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DPIC -c -o objs/inflate.o inflate.c
gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DPIC -c -o objs/inftrees.o inftrees.c
gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DPIC -c -o objs/trees.o trees.c
gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DPIC -c -o objs/uncompr.o uncompr.c
gcc -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -DPIC -c -o objs/zutil.o zutil.c
gcc -shared -Wl,-soname,libz.so.1,--version-script,zlib.map -O3 -fPIC -D_LARGEFILE64_SOURCE=1 -o libz.so.1.2.5 adler32.lo compress.lo crc32.lo deflate.lo gzclose.lo gzlib.lo gzread.lo gzwrite.lo infback.lo inffast.lo inflate.lo inftrees.lo trees.lo uncompr.lo zutil.lo  -lc -L. libz.a
rm -f libz.so libz.so.1
ln -s libz.so.1.2.5 libz.so
ln -s libz.so.1.2.5 libz.so.1
gcc -O3 -D_LARGEFILE64_SOURCE=1 -o examplesh example.o -L. libz.so.1.2.5
gcc -O3 -D_LARGEFILE64_SOURCE=1 -o minigzipsh minigzip.o -L. libz.so.1.2.5
gcc -O3 -D_LARGEFILE64_SOURCE=1 -D_FILE_OFFSET_BITS=64 -c -o example64.o example.c
gcc -O3 -D_LARGEFILE64_SOURCE=1 -o example64 example64.o -L. libz.a
gcc -O3 -D_LARGEFILE64_SOURCE=1 -D_FILE_OFFSET_BITS=64 -c -o minigzip64.o minigzip.c
gcc -O3 -D_LARGEFILE64_SOURCE=1 -o minigzip64 minigzip64.o -L. libz.a
[root@tmc_db02 zlib-1.2.5]#  make install
cp libz.a /usr/lib
cp libz.so.1.2.5 /usr/lib
cd /usr/lib; chmod u=rw,go=r libz.a
cp zlib.3 /usr/share/man/man3
chmod 644 /usr/share/man/man3/zlib.3
cp zlib.pc /usr/lib/pkgconfig
chmod 644 /usr/lib/pkgconfig/zlib.pc
cp zlib.h zconf.h /usr/include
chmod 644 /usr/include/zlib.h /usr/include/zconf.h
[root@tmc_db02 zlib-1.2.5]#
[root@tmc_db02 zlib-1.2.5]#
[root@tmc_db02 zlib-1.2.5]#
[root@tmc_db02 zlib-1.2.5]#
[root@tmc_db02 zlib-1.2.5]# cd /usr/local
[root@tmc_db02 local]# ls -la
total 96
drwxr-xr-x 12 root     root     4096 Mar 23 21:46 .
drwxr-xr-x 14 root     root     4096 Mar 23 21:47 ..
drwxr-xr-x  2 root     root     4096 Mar 11  2009 bin
drwxr-xr-x  2 root     root     4096 Mar 11  2009 etc
drwxr-xr-x  2 root     root     4096 Mar 11  2009 games
drwxr-xr-x  2 root     root     4096 Mar 11  2009 include
drwxr-xr-x  2 root     root     4096 Mar 11  2009 lib
drwxr-xr-x  2 root     root     4096 Mar 11  2009 lib64
drwxr-xr-x  2 root     root     4096 Mar 11  2009 libexec
drwxr-xr-x  2 root     root     4096 Mar 11  2009 sbin
drwxr-xr-x  4 root     root     4096 Mar 23 21:46 share
drwxr-xr-x  4 interdev interdev 4096 Mar 25 08:52 src
[root@tmc_db02 local]#
[root@tmc_db02 local]#
[root@tmc_db02 local]#
[root@tmc_db02 local]# cd src]
-bash: cd: src]: No such file or directory
[root@tmc_db02 local]# cd src
[root@tmc_db02 src]# ls -la
total 18480
drwxr-xr-x  4 interdev interdev     4096 Mar 25 08:52 .
drwxr-xr-x 12 root     root         4096 Mar 23 21:46 ..
drwxrwxrwx  6      258      258     4096 Mar 25 08:52 postgresql-9.0.2
-rw-r--r--  1 interdev interdev 18319339 Dec 13 19:21 postgresql-9.0.2.tar.gz
-rw-r--r--  1 interdev interdev       65 Dec 13 19:21 postgresql-9.0.2.tar.gz.md5
drwxr-xr-x 12      501 games        4096 Mar 25 08:53 zlib-1.2.5
-rw-r--r--  1 root     root       544640 Apr 25  2010 zlib-1.2.5.tar.gz
[root@tmc_db02 src]#
[root@tmc_db02 src]#
[root@tmc_db02 src]#
[root@tmc_db02 src]# cd postgresql-9.0.2
[root@tmc_db02 postgresql-9.0.2]# ls -la
total 2016
drwxrwxrwx  6      258      258   4096 Mar 25 08:52 .
drwxr-xr-x  4 interdev interdev   4096 Mar 25 08:52 ..
-rw-r--r--  1      258      258    445 Dec 13 18:55 aclocal.m4
drwxrwxrwx  2      258      258   4096 Mar 25 08:41 config
-rw-r--r--  1 root     root      32398 Mar 25 08:51 config.log
-rwxr-xr-x  1      258      258 844733 Dec 13 18:55 configure
-rw-r--r--  1      258      258  60877 Dec 13 18:55 configure.in
drwxrwxrwx 46      258      258   4096 Mar 25 08:41 contrib
-rw-r--r--  1      258      258   1192 Dec 13 18:55 COPYRIGHT
drwxrwxrwx  3      258      258   4096 Mar 25 08:41 doc
-rw-r--r--  1      258      258    233 Dec 13 18:55 .gitignore
-rw-r--r--  1      258      258   3760 Dec 13 18:55 GNUmakefile.in
-rw-r--r--  1      258      258 968292 Dec 13 19:21 HISTORY
-rw-r--r--  1      258      258  79024 Dec 13 19:21 INSTALL
-rw-r--r--  1      258      258   1477 Dec 13 18:55 Makefile
-rw-r--r--  1      258      258   1287 Dec 13 18:55 README
drwxrwxrwx 14      258      258   4096 Mar 25 08:41 src
[root@tmc_db02 postgresql-9.0.2]# ./configure --prefix=/usr/local/postgresql-9.0.2
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking which template to use... linux
checking whether to build with 64-bit integer date/time support... yes
checking whether NLS is wanted... no
checking for default port number... 5432
checking for block size... 8kB
checking for segment size... 1GB
checking for WAL block size... 8kB
checking for WAL segment size... 16MB
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking if gcc supports -Wdeclaration-after-statement... yes
checking if gcc supports -Wendif-labels... yes
checking if gcc supports -fno-strict-aliasing... yes
checking if gcc supports -fwrapv... yes
checking whether the C compiler still works... yes
checking how to run the C preprocessor... gcc -E
checking allow thread-safe client libraries... yes
checking whether to build with Tcl... no
checking whether to build Perl modules... no
checking whether to build Python modules... no
checking whether to build with GSSAPI support... no
checking whether to build with Kerberos 5 support... no
checking whether to build with PAM support... no
checking whether to build with LDAP support... no
checking whether to build with Bonjour support... no
checking whether to build with OpenSSL support... no
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ld used by GCC... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for ranlib... ranlib
checking for strip... strip
checking whether it is possible to strip libraries... yes
checking for ar... ar
checking for tar... /bin/tar
checking whether ln -s works... yes
checking for gawk... gawk
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for bison... no
configure: WARNING:
*** Without Bison you will not be able to build PostgreSQL from Git nor
*** change any of the parser definition files.  You can obtain Bison from
*** a GNU mirror site.  (If you are using the official distribution of
*** PostgreSQL then you do not need to worry about this, because the Bison
*** output is pre-generated.)
checking for flex... no
configure: WARNING:
*** Without Flex you will not be able to build PostgreSQL from Git nor
*** change any of the scanner definition files.  You can obtain Flex from
*** a GNU mirror site.  (If you are using the official distribution of
*** PostgreSQL then you do not need to worry about this because the Flex
*** output is pre-generated.)
checking for perl... /usr/bin/perl
configure: using perl 5.8.8
checking for main in -lm... yes
checking for library containing setproctitle... no
checking for library containing dlopen... -ldl
checking for library containing socket... none required
checking for library containing shl_load... no
checking for library containing getopt_long... none required
checking for library containing crypt... -lcrypt
checking for library containing fdatasync... none required
checking for library containing gethostbyname_r... none required
checking for library containing shmget... none required
checking for -lreadline... yes (-lreadline -ltermcap)
checking for inflate in -lz... yes
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 crypt.h usability... yes
checking crypt.h presence... yes
checking for crypt.h... yes
checking dld.h usability... no
checking dld.h presence... no
checking for dld.h... no
checking fp_class.h usability... no
checking fp_class.h presence... no
checking for fp_class.h... no
checking getopt.h usability... yes
checking getopt.h presence... yes
checking for getopt.h... yes
checking ieeefp.h usability... no
checking ieeefp.h presence... no
checking for ieeefp.h... no
checking ifaddrs.h usability... yes
checking ifaddrs.h presence... yes
checking for ifaddrs.h... yes
checking langinfo.h usability... yes
checking langinfo.h presence... yes
checking for langinfo.h... yes
checking poll.h usability... yes
checking poll.h presence... yes
checking for poll.h... yes
checking pwd.h usability... yes
checking pwd.h presence... yes
checking for pwd.h... yes
checking sys/ioctl.h usability... yes
checking sys/ioctl.h presence... yes
checking for sys/ioctl.h... yes
checking sys/ipc.h usability... yes
checking sys/ipc.h presence... yes
checking for sys/ipc.h... yes
checking sys/poll.h usability... yes
checking sys/poll.h presence... yes
checking for sys/poll.h... yes
checking sys/pstat.h usability... no
checking sys/pstat.h presence... no
checking for sys/pstat.h... no
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/shm.h usability... yes
checking sys/shm.h presence... yes
checking for sys/shm.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 sys/tas.h usability... no
checking sys/tas.h presence... no
checking for sys/tas.h... no
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking sys/un.h usability... yes
checking sys/un.h presence... yes
checking for sys/un.h... yes
checking termios.h usability... yes
checking termios.h presence... yes
checking for termios.h... yes
checking ucred.h usability... no
checking ucred.h presence... no
checking for ucred.h... no
checking utime.h usability... yes
checking utime.h presence... yes
checking for utime.h... yes
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking wctype.h usability... yes
checking wctype.h presence... yes
checking for wctype.h... yes
checking kernel/OS.h usability... no
checking kernel/OS.h presence... no
checking for kernel/OS.h... no
checking kernel/image.h usability... no
checking kernel/image.h presence... no
checking for kernel/image.h... no
checking SupportDefs.h usability... no
checking SupportDefs.h presence... no
checking for SupportDefs.h... no
checking for net/if.h... yes
checking netinet/in.h usability... yes
checking netinet/in.h presence... yes
checking for netinet/in.h... yes
checking for netinet/tcp.h... yes
checking readline/readline.h usability... yes
checking readline/readline.h presence... yes
checking for readline/readline.h... yes
checking readline/history.h usability... yes
checking readline/history.h presence... yes
checking for readline/history.h... yes
checking zlib.h usability... yes
checking zlib.h presence... yes
checking for zlib.h... yes
checking whether byte ordering is bigendian... no
checking for an ANSI C-conforming const... yes
checking for inline... inline
checking for quiet inline (no complaint if unreferenced)... yes
checking for preprocessor stringizing operator... yes
checking for signed types... yes
checking for working volatile... yes
checking for __func__... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for tzname... yes
checking for union semun... no
checking for struct sockaddr_un... yes
checking for struct sockaddr_storage... yes
checking for struct sockaddr_storage.ss_family... yes
checking for struct sockaddr_storage.__ss_family... no
checking for struct sockaddr_storage.ss_len... no
checking for struct sockaddr_storage.__ss_len... no
checking for struct sockaddr.sa_len... no
checking for struct addrinfo... yes
checking for intptr_t... yes
checking for uintptr_t... yes
checking for long long int... yes
checking for struct cmsgcred... no
checking for struct fcred... no
checking for struct sockcred... no
checking for struct option... yes
checking for z_streamp... yes
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking size of off_t... 8
checking for int timezone... yes
checking types of arguments for accept()... int, int, struct sockaddr *, socklen_t *
checking whether gettimeofday takes only one argument... no
checking for cbrt... yes
checking for dlopen... yes
checking for fcvt... yes
checking for fdatasync... yes
checking for getifaddrs... yes
checking for getpeereid... no
checking for getpeerucred... no
checking for getrlimit... yes
checking for memmove... yes
checking for poll... yes
checking for pstat... no
checking for readlink... yes
checking for scandir... yes
checking for setproctitle... no
checking for setsid... yes
checking for sigprocmask... yes
checking for symlink... yes
checking for sysconf... yes
checking for towlower... yes
checking for utime... yes
checking for utimes... yes
checking for waitpid... yes
checking for wcstombs... yes
checking for fseeko... yes
checking for _LARGEFILE_SOURCE value needed for large files... no
checking for posix_fadvise... yes
checking whether posix_fadvise is declared... yes
checking whether fdatasync is declared... yes
checking whether strlcat is declared... no
checking whether strlcpy is declared... no
checking whether F_FULLFSYNC is declared... no
checking for struct sockaddr_in6... yes
checking for PS_STRINGS... no
checking for snprintf... yes
checking for vsnprintf... yes
checking whether snprintf is declared... yes
checking whether vsnprintf is declared... yes
checking for isinf... yes
checking for crypt... yes
checking for erand48... yes
checking for getopt... yes
checking for getrusage... yes
checking for inet_aton... yes
checking for random... yes
checking for rint... yes
checking for srandom... yes
checking for strdup... yes
checking for strerror... yes
checking for strlcat... no
checking for strlcpy... no
checking for strtol... yes
checking for strtoul... yes
checking for unsetenv... yes
checking for getaddrinfo... yes
checking for getopt_long... yes
checking for rl_completion_append_character... yes
checking for rl_completion_matches... yes
checking for rl_filename_completion_function... yes
checking for append_history... yes
checking for history_truncate_file... yes
checking for sigsetjmp... yes
checking whether sys_siglist is declared... yes
checking for syslog... yes
checking syslog.h usability... yes
checking syslog.h presence... yes
checking for syslog.h... yes
checking for opterr... yes
checking for optreset... no
checking for strtoll... yes
checking for strtoull... yes
checking for atexit... yes
checking for the pthreads library -lpthreads... no
checking whether pthreads work without any flags... no
checking whether pthreads work with -Kthread... no
checking whether pthreads work with -kthread... no
checking for the pthreads library -llthread... no
checking whether pthreads work with -pthread... yes
checking whether pthreads work with -pthreads... no
checking whether pthreads work with -mthreads... no
checking for the pthreads library -lpthread... yes
checking whether pthreads work with --thread-safe... no
checking whether pthreads work with -mt... no
checking for the pthreads library -lpthreadGC2... no
checking pthread.h usability... yes
checking pthread.h presence... yes
checking for pthread.h... yes
checking for strerror_r... yes
checking for getpwuid_r... yes
checking for gethostbyname_r... yes
checking whether getpwuid_r takes a fifth argument... yes
checking whether strerror_r returns int... no
checking test program... ok
checking whether long int is 64 bits... yes
checking size of void *... 8
checking size of size_t... 8
checking size of long... 8
checking whether to build with float4 passed by value... yes
checking whether to build with float8 passed by value... yes
checking alignment of short... 2
checking alignment of int... 4
checking alignment of long... 8
checking alignment of double... 8
checking for int8... no
checking for uint8... no
checking for int64... no
checking for uint64... no
checking for sig_atomic_t... yes
checking for POSIX signal interface... yes
checking for working memcmp... yes
checking for onsgmls... no
checking for nsgmls... no
checking for openjade... no
checking for jade... no
checking for DocBook V4.2... no
checking for DocBook stylesheets... no
checking for collateindex.pl... no
checking for xsltproc... no
checking for osx... no
checking for sgml2xml... no
checking for sx... no
checking thread safety of required library functions... yes
checking if gcc supports -Wl,--as-needed... no
configure: using CFLAGS=-O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv
configure: using CPPFLAGS= -D_GNU_SOURCE
configure: using LDFLAGS=
configure: creating ./config.status
config.status: creating GNUmakefile
config.status: creating src/Makefile.global
config.status: creating src/include/pg_config.h
config.status: creating src/interfaces/ecpg/include/ecpg_config.h
config.status: linking src/backend/port/tas/dummy.s to src/backend/port/tas.s
config.status: linking src/backend/port/dynloader/linux.c to src/backend/port/dynloader.c
config.status: linking src/backend/port/sysv_sema.c to src/backend/port/pg_sema.c
config.status: linking src/backend/port/sysv_shmem.c to src/backend/port/pg_shmem.c
config.status: linking src/backend/port/dynloader/linux.h to src/include/dynloader.h
config.status: linking src/include/port/linux.h to src/include/pg_config_os.h
config.status: linking src/makefiles/Makefile.linux to src/Makefile.port
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]# make
make -C src all
make[1]: Entering directory `/usr/local/src/postgresql-9.0.2/src'
make -C port all
make[2]: Entering directory `/usr/local/src/postgresql-9.0.2/src/port'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../src/port -DFRONTEND -I../../src/include -D_GNU_SOURCE   -c -o strlcat.o strlcat.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../src/port -DFRONTEND -I../../src/include -D_GNU_SOURCE   -c -o strlcpy.o strlcpy.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../src/port -DFRONTEND -I../../src/include -D_GNU_SOURCE   -c -o chklocale.o chklocale.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../src/port -DFRONTEND -I../../src/include -D_GNU_SOURCE   -c -o dirmod.o dirmod.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../src/port -DFRONTEND -I../../src/include -D_GNU_SOURCE   -c -o exec.o exec.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../src/port -DFRONTEND -I../../src/include -D_GNU_SOURCE   -c -o noblock.o noblock.c
echo "#define PGBINDIR \"/usr/local/postgresql-9.0.2/bin\"" >pg_config_paths.h
echo "#define PGSHAREDIR \"/usr/local/postgresql-9.0.2/share\"" >>pg_config_paths.h
echo "#define SYSCONFDIR \"/usr/local/postgresql-9.0.2/etc\"" >>pg_config_paths.h
echo "#define INCLUDEDIR \"/usr/local/postgresql-9.0.2/include\"" >>pg_config_paths.h
echo "#define PKGINCLUDEDIR \"/usr/local/postgresql-9.0.2/include\"" >>pg_config_paths.h
echo "#define INCLUDEDIRSERVER \"/usr/local/postgresql-9.0.2/include/server\"" >>pg_config_paths.h
echo "#define LIBDIR \"/usr/local/postgresql-9.0.2/lib\"" >>pg_config_paths.h
echo "#define PKGLIBDIR \"/usr/local/postgresql-9.0.2/lib\"" >>pg_config_paths.h
echo "#define LOCALEDIR \"/usr/local/postgresql-9.0.2/share/locale\"" >>pg_config_paths.h
echo "#define DOCDIR \"/usr/local/postgresql-9.0.2/share/doc/\"" >>pg_config_paths.h
echo "#define HTMLDIR \"/usr/local/postgresql-9.0.2/share/doc/\"" >>pg_config_paths.h
echo "#define MANDIR \"/usr/local/postgresql-9.0.2/share/man\"" >>pg_config_paths.h
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../src/port -DFRONTEND -I../../src/include -D_GNU_SOURCE   -c -o path.o path.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../src/port -DFRONTEND -I../../src/include -D_GNU_SOURCE   -c -o pgsleep.o pgsleep.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../src/port -DFRONTEND -I../../src/include -D_GNU_SOURCE   -c -o pgstrcasecmp.o pgstrcasecmp.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../src/port -DFRONTEND -I../../src/include -D_GNU_SOURCE   -c -o qsort.o qsort.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../src/port -DFRONTEND -I../../src/include -D_GNU_SOURCE   -c -o qsort_arg.o qsort_arg.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../src/port -DFRONTEND -I../../src/include -D_GNU_SOURCE   -c -o sprompt.o sprompt.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../src/port -DFRONTEND -I../../src/include -D_GNU_SOURCE  -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -c thread.c
ar crs libpgport.a strlcat.o strlcpy.o chklocale.o dirmod.o exec.o noblock.o path.o pgsleep.o pgstrcasecmp.o qsort.o qsort_arg.o sprompt.o thread.o
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv  -I../../src/port  -I../../src/include -D_GNU_SOURCE  -c strlcat.c -o strlcat_srv.o
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv  -I../../src/port  -I../../src/include -D_GNU_SOURCE  -c strlcpy.c -o strlcpy_srv.o
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv  -I../../src/port  -I../../src/include -D_GNU_SOURCE  -c chklocale.c -o chklocale_srv.o
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv  -I../../src/port  -I../../src/include -D_GNU_SOURCE  -c dirmod.c -o dirmod_srv.o
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv  -I../../src/port  -I../../src/include -D_GNU_SOURCE  -c exec.c -o exec_srv.o
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv  -I../../src/port  -I../../src/include -D_GNU_SOURCE  -c noblock.c -o noblock_srv.o
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv  -I../../src/port  -I../../src/include -D_GNU_SOURCE  -c path.c -o path_srv.o
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv  -I../../src/port  -I../../src/include -D_GNU_SOURCE  -c pgsleep.c -o pgsleep_srv.o
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv  -I../../src/port  -I../../src/include -D_GNU_SOURCE  -c pgstrcasecmp.c -o pgstrcasecmp_srv.o
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv  -I../../src/port  -I../../src/include -D_GNU_SOURCE  -c qsort.c -o qsort_srv.o
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv  -I../../src/port  -I../../src/include -D_GNU_SOURCE  -c qsort_arg.c -o qsort_arg_srv.o
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv  -I../../src/port  -I../../src/include -D_GNU_SOURCE  -c sprompt.c -o sprompt_srv.o
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv  -I../../src/port  -I../../src/include -D_GNU_SOURCE  -c thread.c -o thread_srv.o
ar crs libpgport_srv.a strlcat_srv.o strlcpy_srv.o chklocale_srv.o dirmod_srv.o exec_srv.o noblock_srv.o path_srv.o pgsleep_srv.o pgstrcasecmp_srv.o qsort_srv.o qsort_arg_srv.o sprompt_srv.o thread_srv.o
make[2]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/port'
make -C timezone all
make[2]: Entering directory `/usr/local/src/postgresql-9.0.2/src/timezone'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../src/include -D_GNU_SOURCE   -c -o localtime.o localtime.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../src/include -D_GNU_SOURCE   -c -o strftime.o strftime.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../src/include -D_GNU_SOURCE   -c -o pgtz.o pgtz.c
( echo src/timezone/localtime.o src/timezone/strftime.o src/timezone/pgtz.o ) >objfiles.txt
make -C ../../src/port all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/port'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/port'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../src/include -D_GNU_SOURCE   -c -o zic.o zic.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../src/include -D_GNU_SOURCE   -c -o ialloc.o ialloc.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../src/include -D_GNU_SOURCE   -c -o scheck.o scheck.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv zic.o ialloc.o scheck.o localtime.o -L../../src/port  -Wl,-rpath,'/usr/local/postgresql-9.0.2/lib',--enable-new-dtags  -lpgport -lz -lreadline -ltermcap -lcrypt -ldl -lm  -o zic
make[2]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/timezone'
make -C backend all
make[2]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend'
make -C ../../src/port all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/port'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/port'
make -C catalog schemapg.h
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/catalog'
make[3]: `schemapg.h' is up to date.
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/catalog'
prereqdir=`cd parser/ >/dev/null && pwd` && \
          cd ../../src/include/parser/ && rm -f gram.h && \
          ln -s "$prereqdir/gram.h" .
prereqdir=`cd catalog/ >/dev/null && pwd` && \
          cd ../../src/include/catalog/ && rm -f schemapg.h && \
          ln -s "$prereqdir/schemapg.h" .
prereqdir=`cd utils/ >/dev/null && pwd` && \
          cd ../../src/include/utils/ && rm -f fmgroids.h && \
          ln -s "$prereqdir/fmgroids.h" .
make -C utils probes.h
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils'
sed -f ./Gen_dummy_probes.sed probes.d >probes.h
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils'
cd ../../src/include/utils/ && rm -f probes.h && \
            ln -s ../../../src/backend/utils/probes.h .
make -C access all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/access'
make -C common all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/access/common'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o heaptuple.o heaptuple.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o indextuple.o indextuple.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o printtup.o printtup.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o reloptions.o reloptions.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o scankey.o scankey.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o tupconvert.o tupconvert.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o tupdesc.o tupdesc.c
( echo src/backend/access/common/heaptuple.o src/backend/access/common/indextuple.o src/backend/access/common/printtup.o src/backend/access/common/reloptions.o src/backend/access/common/scankey.o src/backend/access/common/tupconvert.o src/backend/access/common/tupdesc.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/access/common'
make -C gist all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/access/gist'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o gist.o gist.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o gistutil.o gistutil.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o gistxlog.o gistxlog.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o gistvacuum.o gistvacuum.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o gistget.o gistget.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o gistscan.o gistscan.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o gistproc.o gistproc.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o gistsplit.o gistsplit.c
( echo src/backend/access/gist/gist.o src/backend/access/gist/gistutil.o src/backend/access/gist/gistxlog.o src/backend/access/gist/gistvacuum.o src/backend/access/gist/gistget.o src/backend/access/gist/gistscan.o src/backend/access/gist/gistproc.o src/backend/access/gist/gistsplit.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/access/gist'
make -C hash all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/access/hash'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o hash.o hash.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o hashfunc.o hashfunc.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o hashinsert.o hashinsert.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o hashovfl.o hashovfl.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o hashpage.o hashpage.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o hashscan.o hashscan.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o hashsearch.o hashsearch.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o hashsort.o hashsort.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o hashutil.o hashutil.c
( echo src/backend/access/hash/hash.o src/backend/access/hash/hashfunc.o src/backend/access/hash/hashinsert.o src/backend/access/hash/hashovfl.o src/backend/access/hash/hashpage.o src/backend/access/hash/hashscan.o src/backend/access/hash/hashsearch.o src/backend/access/hash/hashsort.o src/backend/access/hash/hashutil.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/access/hash'
make -C heap all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/access/heap'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o heapam.o heapam.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o hio.o hio.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o pruneheap.o pruneheap.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o rewriteheap.o rewriteheap.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o syncscan.o syncscan.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o tuptoaster.o tuptoaster.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o visibilitymap.o visibilitymap.c
( echo src/backend/access/heap/heapam.o src/backend/access/heap/hio.o src/backend/access/heap/pruneheap.o src/backend/access/heap/rewriteheap.o src/backend/access/heap/syncscan.o src/backend/access/heap/tuptoaster.o src/backend/access/heap/visibilitymap.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/access/heap'
make -C index all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/access/index'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o genam.o genam.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o indexam.o indexam.c
( echo src/backend/access/index/genam.o src/backend/access/index/indexam.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/access/index'
make -C nbtree all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/access/nbtree'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o nbtcompare.o nbtcompare.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o nbtinsert.o nbtinsert.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o nbtpage.o nbtpage.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o nbtree.o nbtree.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o nbtsearch.o nbtsearch.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o nbtutils.o nbtutils.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o nbtsort.o nbtsort.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o nbtxlog.o nbtxlog.c
( echo src/backend/access/nbtree/nbtcompare.o src/backend/access/nbtree/nbtinsert.o src/backend/access/nbtree/nbtpage.o src/backend/access/nbtree/nbtree.o src/backend/access/nbtree/nbtsearch.o src/backend/access/nbtree/nbtutils.o src/backend/access/nbtree/nbtsort.o src/backend/access/nbtree/nbtxlog.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/access/nbtree'
make -C transam all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/access/transam'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o clog.o clog.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o transam.o transam.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o varsup.o varsup.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o xact.o xact.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o xlog.o xlog.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o xlogutils.o xlogutils.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o rmgr.o rmgr.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o slru.o slru.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o subtrans.o subtrans.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o multixact.o multixact.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o twophase.o twophase.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o twophase_rmgr.o twophase_rmgr.c
( echo src/backend/access/transam/clog.o src/backend/access/transam/transam.o src/backend/access/transam/varsup.o src/backend/access/transam/xact.o src/backend/access/transam/xlog.o src/backend/access/transam/xlogutils.o src/backend/access/transam/rmgr.o src/backend/access/transam/slru.o src/backend/access/transam/subtrans.o src/backend/access/transam/multixact.o src/backend/access/transam/twophase.o src/backend/access/transam/twophase_rmgr.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/access/transam'
make -C gin all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/access/gin'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o ginutil.o ginutil.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o gininsert.o gininsert.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o ginxlog.o ginxlog.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o ginentrypage.o ginentrypage.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o gindatapage.o gindatapage.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o ginbtree.o ginbtree.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o ginscan.o ginscan.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o ginget.o ginget.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o ginvacuum.o ginvacuum.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o ginarrayproc.o ginarrayproc.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o ginbulk.o ginbulk.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o ginfast.o ginfast.c
( echo src/backend/access/gin/ginutil.o src/backend/access/gin/gininsert.o src/backend/access/gin/ginxlog.o src/backend/access/gin/ginentrypage.o src/backend/access/gin/gindatapage.o src/backend/access/gin/ginbtree.o src/backend/access/gin/ginscan.o src/backend/access/gin/ginget.o src/backend/access/gin/ginvacuum.o src/backend/access/gin/ginarrayproc.o src/backend/access/gin/ginbulk.o src/backend/access/gin/ginfast.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/access/gin'
( cat common/objfiles.txt gist/objfiles.txt hash/objfiles.txt heap/objfiles.txt index/objfiles.txt nbtree/objfiles.txt transam/objfiles.txt gin/objfiles.txt; echo  ) >objfiles.txt
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/access'
make -C bootstrap all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/bootstrap'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/include -D_GNU_SOURCE   -c -o bootparse.o bootparse.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/include -D_GNU_SOURCE   -c -o bootstrap.o bootstrap.c
( echo src/backend/bootstrap/bootparse.o src/backend/bootstrap/bootstrap.o ) >objfiles.txt
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/bootstrap'
make -C catalog all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/catalog'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o catalog.o catalog.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o dependency.o dependency.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o heap.o heap.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o index.o index.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o indexing.o indexing.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o namespace.o namespace.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o aclchk.o aclchk.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o pg_aggregate.o pg_aggregate.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o pg_constraint.o pg_constraint.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o pg_conversion.o pg_conversion.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o pg_depend.o pg_depend.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o pg_enum.o pg_enum.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o pg_inherits.o pg_inherits.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o pg_largeobject.o pg_largeobject.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o pg_namespace.o pg_namespace.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o pg_operator.o pg_operator.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o pg_proc.o pg_proc.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o pg_db_role_setting.o pg_db_role_setting.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o pg_shdepend.o pg_shdepend.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o pg_type.o pg_type.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o storage.o storage.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o toasting.o toasting.c
( echo src/backend/catalog/catalog.o src/backend/catalog/dependency.o src/backend/catalog/heap.o src/backend/catalog/index.o src/backend/catalog/indexing.o src/backend/catalog/namespace.o src/backend/catalog/aclchk.o src/backend/catalog/pg_aggregate.o src/backend/catalog/pg_constraint.o src/backend/catalog/pg_conversion.o src/backend/catalog/pg_depend.o src/backend/catalog/pg_enum.o src/backend/catalog/pg_inherits.o src/backend/catalog/pg_largeobject.o src/backend/catalog/pg_namespace.o src/backend/catalog/pg_operator.o src/backend/catalog/pg_proc.o src/backend/catalog/pg_db_role_setting.o src/backend/catalog/pg_shdepend.o src/backend/catalog/pg_type.o src/backend/catalog/storage.o src/backend/catalog/toasting.o ) >objfiles.txt
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/catalog'
make -C parser all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/parser'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/include -D_GNU_SOURCE   -c -o analyze.o analyze.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -Wno-error -I. -I. -I../../../src/include -D_GNU_SOURCE   -c -o gram.o gram.c
In file included from gram.y:11794:
scan.c: In function ‘yy_try_NUL_trans’:
scan.c:16242: warning: unused variable ‘yyg’
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/include -D_GNU_SOURCE   -c -o keywords.o keywords.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/include -D_GNU_SOURCE   -c -o kwlookup.o kwlookup.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/include -D_GNU_SOURCE   -c -o parser.o parser.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/include -D_GNU_SOURCE   -c -o parse_agg.o parse_agg.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/include -D_GNU_SOURCE   -c -o parse_clause.o parse_clause.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/include -D_GNU_SOURCE   -c -o parse_coerce.o parse_coerce.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/include -D_GNU_SOURCE   -c -o parse_cte.o parse_cte.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/include -D_GNU_SOURCE   -c -o parse_expr.o parse_expr.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/include -D_GNU_SOURCE   -c -o parse_func.o parse_func.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/include -D_GNU_SOURCE   -c -o parse_node.o parse_node.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/include -D_GNU_SOURCE   -c -o parse_oper.o parse_oper.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/include -D_GNU_SOURCE   -c -o parse_param.o parse_param.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/include -D_GNU_SOURCE   -c -o parse_relation.o parse_relation.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/include -D_GNU_SOURCE   -c -o parse_target.o parse_target.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/include -D_GNU_SOURCE   -c -o parse_type.o parse_type.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/include -D_GNU_SOURCE   -c -o parse_utilcmd.o parse_utilcmd.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/include -D_GNU_SOURCE   -c -o scansup.o scansup.c
( echo src/backend/parser/analyze.o src/backend/parser/gram.o src/backend/parser/keywords.o src/backend/parser/kwlookup.o src/backend/parser/parser.o src/backend/parser/parse_agg.o src/backend/parser/parse_clause.o src/backend/parser/parse_coerce.o src/backend/parser/parse_cte.o src/backend/parser/parse_expr.o src/backend/parser/parse_func.o src/backend/parser/parse_node.o src/backend/parser/parse_oper.o src/backend/parser/parse_param.o src/backend/parser/parse_relation.o src/backend/parser/parse_target.o src/backend/parser/parse_type.o src/backend/parser/parse_utilcmd.o src/backend/parser/scansup.o ) >objfiles.txt
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/parser'
make -C commands all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/commands'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o aggregatecmds.o aggregatecmds.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o alter.o alter.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o analyze.o analyze.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o async.o async.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o cluster.o cluster.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o comment.o comment.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o constraint.o constraint.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o conversioncmds.o conversioncmds.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o copy.o copy.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o dbcommands.o dbcommands.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o define.o define.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o discard.o discard.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o explain.o explain.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o foreigncmds.o foreigncmds.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o functioncmds.o functioncmds.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o indexcmds.o indexcmds.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o lockcmds.o lockcmds.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o operatorcmds.o operatorcmds.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o opclasscmds.o opclasscmds.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o portalcmds.o portalcmds.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o prepare.o prepare.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o proclang.o proclang.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o schemacmds.o schemacmds.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o sequence.o sequence.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o tablecmds.o tablecmds.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o tablespace.o tablespace.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o trigger.o trigger.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o tsearchcmds.o tsearchcmds.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o typecmds.o typecmds.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o user.o user.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o vacuum.o vacuum.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o vacuumlazy.o vacuumlazy.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o variable.o variable.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o view.o view.c
( echo src/backend/commands/aggregatecmds.o src/backend/commands/alter.o src/backend/commands/analyze.o src/backend/commands/async.o src/backend/commands/cluster.o src/backend/commands/comment.o src/backend/commands/constraint.o src/backend/commands/conversioncmds.o src/backend/commands/copy.o src/backend/commands/dbcommands.o src/backend/commands/define.o src/backend/commands/discard.o src/backend/commands/explain.o src/backend/commands/foreigncmds.o src/backend/commands/functioncmds.o src/backend/commands/indexcmds.o src/backend/commands/lockcmds.o src/backend/commands/operatorcmds.o src/backend/commands/opclasscmds.o src/backend/commands/portalcmds.o src/backend/commands/prepare.o src/backend/commands/proclang.o src/backend/commands/schemacmds.o src/backend/commands/sequence.o src/backend/commands/tablecmds.o src/backend/commands/tablespace.o src/backend/commands/trigger.o src/backend/commands/tsearchcmds.o src/backend/commands/typecmds.o src/backend/commands/user.o src/backend/commands/vacuum.o src/backend/commands/vacuumlazy.o src/backend/commands/variable.o src/backend/commands/view.o ) >objfiles.txt
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/commands'
make -C executor all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/executor'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o execAmi.o execAmi.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o execCurrent.o execCurrent.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o execGrouping.o execGrouping.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o execJunk.o execJunk.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o execMain.o execMain.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o execProcnode.o execProcnode.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o execQual.o execQual.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o execScan.o execScan.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o execTuples.o execTuples.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o execUtils.o execUtils.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o functions.o functions.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o instrument.o instrument.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o nodeAppend.o nodeAppend.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o nodeAgg.o nodeAgg.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o nodeBitmapAnd.o nodeBitmapAnd.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o nodeBitmapOr.o nodeBitmapOr.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o nodeBitmapHeapscan.o nodeBitmapHeapscan.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o nodeBitmapIndexscan.o nodeBitmapIndexscan.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o nodeHash.o nodeHash.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o nodeHashjoin.o nodeHashjoin.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o nodeIndexscan.o nodeIndexscan.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o nodeLimit.o nodeLimit.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o nodeLockRows.o nodeLockRows.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o nodeMaterial.o nodeMaterial.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o nodeMergejoin.o nodeMergejoin.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o nodeModifyTable.o nodeModifyTable.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o nodeNestloop.o nodeNestloop.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o nodeFunctionscan.o nodeFunctionscan.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o nodeRecursiveunion.o nodeRecursiveunion.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o nodeResult.o nodeResult.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o nodeSeqscan.o nodeSeqscan.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o nodeSetOp.o nodeSetOp.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o nodeSort.o nodeSort.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o nodeUnique.o nodeUnique.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o nodeValuesscan.o nodeValuesscan.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o nodeCtescan.o nodeCtescan.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o nodeWorktablescan.o nodeWorktablescan.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o nodeGroup.o nodeGroup.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o nodeSubplan.o nodeSubplan.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o nodeSubqueryscan.o nodeSubqueryscan.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o nodeTidscan.o nodeTidscan.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o nodeWindowAgg.o nodeWindowAgg.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o tstoreReceiver.o tstoreReceiver.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o spi.o spi.c
( echo src/backend/executor/execAmi.o src/backend/executor/execCurrent.o src/backend/executor/execGrouping.o src/backend/executor/execJunk.o src/backend/executor/execMain.o src/backend/executor/execProcnode.o src/backend/executor/execQual.o src/backend/executor/execScan.o src/backend/executor/execTuples.o src/backend/executor/execUtils.o src/backend/executor/functions.o src/backend/executor/instrument.o src/backend/executor/nodeAppend.o src/backend/executor/nodeAgg.o src/backend/executor/nodeBitmapAnd.o src/backend/executor/nodeBitmapOr.o src/backend/executor/nodeBitmapHeapscan.o src/backend/executor/nodeBitmapIndexscan.o src/backend/executor/nodeHash.o src/backend/executor/nodeHashjoin.o src/backend/executor/nodeIndexscan.o src/backend/executor/nodeLimit.o src/backend/executor/nodeLockRows.o src/backend/executor/nodeMaterial.o src/backend/executor/nodeMergejoin.o src/backend/executor/nodeModifyTable.o src/backend/executor/nodeNestloop.o src/backend/executor/nodeFunctionscan.o src/backend/executor/nodeRecursiveunion.o src/backend/executor/nodeResult.o src/backend/executor/nodeSeqscan.o src/backend/executor/nodeSetOp.o src/backend/executor/nodeSort.o src/backend/executor/nodeUnique.o src/backend/executor/nodeValuesscan.o src/backend/executor/nodeCtescan.o src/backend/executor/nodeWorktablescan.o src/backend/executor/nodeGroup.o src/backend/executor/nodeSubplan.o src/backend/executor/nodeSubqueryscan.o src/backend/executor/nodeTidscan.o src/backend/executor/nodeWindowAgg.o src/backend/executor/tstoreReceiver.o src/backend/executor/spi.o ) >objfiles.txt
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/executor'
make -C foreign all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/foreign'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o foreign.o foreign.c
( echo src/backend/foreign/foreign.o ) >objfiles.txt
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/foreign'
make -C lib all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/lib'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o dllist.o dllist.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o stringinfo.o stringinfo.c
( echo src/backend/lib/dllist.o src/backend/lib/stringinfo.o ) >objfiles.txt
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/lib'
make -C libpq all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/libpq'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o be-fsstubs.o be-fsstubs.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o be-secure.o be-secure.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o auth.o auth.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o crypt.o crypt.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o hba.o hba.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o ip.o ip.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o md5.o md5.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o pqcomm.o pqcomm.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o pqformat.o pqformat.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o pqsignal.o pqsignal.c
( echo src/backend/libpq/be-fsstubs.o src/backend/libpq/be-secure.o src/backend/libpq/auth.o src/backend/libpq/crypt.o src/backend/libpq/hba.o src/backend/libpq/ip.o src/backend/libpq/md5.o src/backend/libpq/pqcomm.o src/backend/libpq/pqformat.o src/backend/libpq/pqsignal.o ) >objfiles.txt
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/libpq'
make -C main all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/main'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o main.o main.c
( echo src/backend/main/main.o ) >objfiles.txt
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/main'
make -C nodes all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/nodes'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o nodeFuncs.o nodeFuncs.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o nodes.o nodes.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o list.o list.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o bitmapset.o bitmapset.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o tidbitmap.o tidbitmap.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o copyfuncs.o copyfuncs.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o equalfuncs.o equalfuncs.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o makefuncs.o makefuncs.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o outfuncs.o outfuncs.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o readfuncs.o readfuncs.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o print.o print.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o read.o read.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o params.o params.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o value.o value.c
( echo src/backend/nodes/nodeFuncs.o src/backend/nodes/nodes.o src/backend/nodes/list.o src/backend/nodes/bitmapset.o src/backend/nodes/tidbitmap.o src/backend/nodes/copyfuncs.o src/backend/nodes/equalfuncs.o src/backend/nodes/makefuncs.o src/backend/nodes/outfuncs.o src/backend/nodes/readfuncs.o src/backend/nodes/print.o src/backend/nodes/read.o src/backend/nodes/params.o src/backend/nodes/value.o ) >objfiles.txt
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/nodes'
make -C optimizer all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/optimizer'
make -C geqo all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/optimizer/geqo'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o geqo_copy.o geqo_copy.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o geqo_eval.o geqo_eval.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o geqo_main.o geqo_main.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o geqo_misc.o geqo_misc.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o geqo_mutation.o geqo_mutation.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o geqo_pool.o geqo_pool.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o geqo_random.o geqo_random.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o geqo_recombination.o geqo_recombination.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o geqo_selection.o geqo_selection.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o geqo_erx.o geqo_erx.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o geqo_pmx.o geqo_pmx.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o geqo_cx.o geqo_cx.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o geqo_px.o geqo_px.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o geqo_ox1.o geqo_ox1.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o geqo_ox2.o geqo_ox2.c
( echo src/backend/optimizer/geqo/geqo_copy.o src/backend/optimizer/geqo/geqo_eval.o src/backend/optimizer/geqo/geqo_main.o src/backend/optimizer/geqo/geqo_misc.o src/backend/optimizer/geqo/geqo_mutation.o src/backend/optimizer/geqo/geqo_pool.o src/backend/optimizer/geqo/geqo_random.o src/backend/optimizer/geqo/geqo_recombination.o src/backend/optimizer/geqo/geqo_selection.o src/backend/optimizer/geqo/geqo_erx.o src/backend/optimizer/geqo/geqo_pmx.o src/backend/optimizer/geqo/geqo_cx.o src/backend/optimizer/geqo/geqo_px.o src/backend/optimizer/geqo/geqo_ox1.o src/backend/optimizer/geqo/geqo_ox2.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/optimizer/geqo'
make -C path all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/optimizer/path'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o allpaths.o allpaths.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o clausesel.o clausesel.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o costsize.o costsize.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o equivclass.o equivclass.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o indxpath.o indxpath.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o joinpath.o joinpath.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o joinrels.o joinrels.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o orindxpath.o orindxpath.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o pathkeys.o pathkeys.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o tidpath.o tidpath.c
( echo src/backend/optimizer/path/allpaths.o src/backend/optimizer/path/clausesel.o src/backend/optimizer/path/costsize.o src/backend/optimizer/path/equivclass.o src/backend/optimizer/path/indxpath.o src/backend/optimizer/path/joinpath.o src/backend/optimizer/path/joinrels.o src/backend/optimizer/path/orindxpath.o src/backend/optimizer/path/pathkeys.o src/backend/optimizer/path/tidpath.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/optimizer/path'
make -C plan all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/optimizer/plan'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o analyzejoins.o analyzejoins.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o createplan.o createplan.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o initsplan.o initsplan.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o planagg.o planagg.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o planmain.o planmain.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o planner.o planner.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o setrefs.o setrefs.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o subselect.o subselect.c
( echo src/backend/optimizer/plan/analyzejoins.o src/backend/optimizer/plan/createplan.o src/backend/optimizer/plan/initsplan.o src/backend/optimizer/plan/planagg.o src/backend/optimizer/plan/planmain.o src/backend/optimizer/plan/planner.o src/backend/optimizer/plan/setrefs.o src/backend/optimizer/plan/subselect.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/optimizer/plan'
make -C prep all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/optimizer/prep'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o prepjointree.o prepjointree.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o prepqual.o prepqual.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o preptlist.o preptlist.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o prepunion.o prepunion.c
( echo src/backend/optimizer/prep/prepjointree.o src/backend/optimizer/prep/prepqual.o src/backend/optimizer/prep/preptlist.o src/backend/optimizer/prep/prepunion.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/optimizer/prep'
make -C util all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/optimizer/util'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o clauses.o clauses.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o joininfo.o joininfo.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o pathnode.o pathnode.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o placeholder.o placeholder.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o plancat.o plancat.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o predtest.o predtest.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o relnode.o relnode.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o restrictinfo.o restrictinfo.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o tlist.o tlist.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o var.o var.c
( echo src/backend/optimizer/util/clauses.o src/backend/optimizer/util/joininfo.o src/backend/optimizer/util/pathnode.o src/backend/optimizer/util/placeholder.o src/backend/optimizer/util/plancat.o src/backend/optimizer/util/predtest.o src/backend/optimizer/util/relnode.o src/backend/optimizer/util/restrictinfo.o src/backend/optimizer/util/tlist.o src/backend/optimizer/util/var.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/optimizer/util'
( cat geqo/objfiles.txt path/objfiles.txt plan/objfiles.txt prep/objfiles.txt util/objfiles.txt; echo  ) >objfiles.txt
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/optimizer'
make -C port all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/port'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o dynloader.o dynloader.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o pg_sema.o pg_sema.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o pg_shmem.o pg_shmem.c
( echo src/backend/port/dynloader.o src/backend/port/pg_sema.o src/backend/port/pg_shmem.o ) >objfiles.txt
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/port'
make -C postmaster all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/postmaster'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o autovacuum.o autovacuum.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o bgwriter.o bgwriter.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o fork_process.o fork_process.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o pgarch.o pgarch.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o pgstat.o pgstat.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o postmaster.o postmaster.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o syslogger.o syslogger.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o walwriter.o walwriter.c
( echo src/backend/postmaster/autovacuum.o src/backend/postmaster/bgwriter.o src/backend/postmaster/fork_process.o src/backend/postmaster/pgarch.o src/backend/postmaster/pgstat.o src/backend/postmaster/postmaster.o src/backend/postmaster/syslogger.o src/backend/postmaster/walwriter.o ) >objfiles.txt
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/postmaster'
make -C regex all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/regex'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o regcomp.o regcomp.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o regerror.o regerror.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o regexec.o regexec.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o regfree.o regfree.c
( echo src/backend/regex/regcomp.o src/backend/regex/regerror.o src/backend/regex/regexec.o src/backend/regex/regfree.o ) >objfiles.txt
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/regex'
make -C replication all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/replication'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o walsender.o walsender.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o walreceiverfuncs.o walreceiverfuncs.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o walreceiver.o walreceiver.c
( echo src/backend/replication/walsender.o src/backend/replication/walreceiverfuncs.o src/backend/replication/walreceiver.o ) >objfiles.txt
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/replication'
make -C rewrite all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/rewrite'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o rewriteRemove.o rewriteRemove.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o rewriteDefine.o rewriteDefine.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o rewriteHandler.o rewriteHandler.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o rewriteManip.o rewriteManip.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o rewriteSupport.o rewriteSupport.c
( echo src/backend/rewrite/rewriteRemove.o src/backend/rewrite/rewriteDefine.o src/backend/rewrite/rewriteHandler.o src/backend/rewrite/rewriteManip.o src/backend/rewrite/rewriteSupport.o ) >objfiles.txt
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/rewrite'
make -C storage all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/storage'
make -C buffer all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/storage/buffer'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o buf_table.o buf_table.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o buf_init.o buf_init.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o bufmgr.o bufmgr.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o freelist.o freelist.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o localbuf.o localbuf.c
( echo src/backend/storage/buffer/buf_table.o src/backend/storage/buffer/buf_init.o src/backend/storage/buffer/bufmgr.o src/backend/storage/buffer/freelist.o src/backend/storage/buffer/localbuf.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/storage/buffer'
make -C file all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/storage/file'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o fd.o fd.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o buffile.o buffile.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o copydir.o copydir.c
( echo src/backend/storage/file/fd.o src/backend/storage/file/buffile.o src/backend/storage/file/copydir.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/storage/file'
make -C freespace all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/storage/freespace'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o freespace.o freespace.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o fsmpage.o fsmpage.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o indexfsm.o indexfsm.c
( echo src/backend/storage/freespace/freespace.o src/backend/storage/freespace/fsmpage.o src/backend/storage/freespace/indexfsm.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/storage/freespace'
make -C ipc all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/storage/ipc'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o ipc.o ipc.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o ipci.o ipci.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o pmsignal.o pmsignal.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o procarray.o procarray.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o procsignal.o procsignal.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o shmem.o shmem.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o shmqueue.o shmqueue.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o sinval.o sinval.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o sinvaladt.o sinvaladt.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o standby.o standby.c
( echo src/backend/storage/ipc/ipc.o src/backend/storage/ipc/ipci.o src/backend/storage/ipc/pmsignal.o src/backend/storage/ipc/procarray.o src/backend/storage/ipc/procsignal.o src/backend/storage/ipc/shmem.o src/backend/storage/ipc/shmqueue.o src/backend/storage/ipc/sinval.o src/backend/storage/ipc/sinvaladt.o src/backend/storage/ipc/standby.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/storage/ipc'
make -C large_object all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/storage/large_object'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o inv_api.o inv_api.c
( echo src/backend/storage/large_object/inv_api.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/storage/large_object'
make -C lmgr all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/storage/lmgr'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o lmgr.o lmgr.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o lock.o lock.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o proc.o proc.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o deadlock.o deadlock.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o lwlock.o lwlock.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o spin.o spin.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o s_lock.o s_lock.c
( echo src/backend/storage/lmgr/lmgr.o src/backend/storage/lmgr/lock.o src/backend/storage/lmgr/proc.o src/backend/storage/lmgr/deadlock.o src/backend/storage/lmgr/lwlock.o src/backend/storage/lmgr/spin.o src/backend/storage/lmgr/s_lock.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/storage/lmgr'
make -C page all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/storage/page'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o bufpage.o bufpage.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o itemptr.o itemptr.c
( echo src/backend/storage/page/bufpage.o src/backend/storage/page/itemptr.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/storage/page'
make -C smgr all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/storage/smgr'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o md.o md.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o smgr.o smgr.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o smgrtype.o smgrtype.c
( echo src/backend/storage/smgr/md.o src/backend/storage/smgr/smgr.o src/backend/storage/smgr/smgrtype.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/storage/smgr'
( cat buffer/objfiles.txt file/objfiles.txt freespace/objfiles.txt ipc/objfiles.txt large_object/objfiles.txt lmgr/objfiles.txt page/objfiles.txt smgr/objfiles.txt; echo  ) >objfiles.txt
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/storage'
make -C tcop all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/tcop'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o dest.o dest.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o fastpath.o fastpath.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o postgres.o postgres.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o pquery.o pquery.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o utility.o utility.c
( echo src/backend/tcop/dest.o src/backend/tcop/fastpath.o src/backend/tcop/postgres.o src/backend/tcop/pquery.o src/backend/tcop/utility.o ) >objfiles.txt
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/tcop'
make -C tsearch all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/tsearch'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o ts_locale.o ts_locale.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o ts_parse.o ts_parse.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o wparser.o wparser.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o wparser_def.o wparser_def.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o dict.o dict.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o dict_simple.o dict_simple.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o dict_synonym.o dict_synonym.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o dict_thesaurus.o dict_thesaurus.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o dict_ispell.o dict_ispell.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o regis.o regis.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o spell.o spell.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o to_tsany.o to_tsany.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o ts_selfuncs.o ts_selfuncs.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o ts_typanalyze.o ts_typanalyze.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o ts_utils.o ts_utils.c
( echo src/backend/tsearch/ts_locale.o src/backend/tsearch/ts_parse.o src/backend/tsearch/wparser.o src/backend/tsearch/wparser_def.o src/backend/tsearch/dict.o src/backend/tsearch/dict_simple.o src/backend/tsearch/dict_synonym.o src/backend/tsearch/dict_thesaurus.o src/backend/tsearch/dict_ispell.o src/backend/tsearch/regis.o src/backend/tsearch/spell.o src/backend/tsearch/to_tsany.o src/backend/tsearch/ts_selfuncs.o src/backend/tsearch/ts_typanalyze.o src/backend/tsearch/ts_utils.o ) >objfiles.txt
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/tsearch'
make -C utils all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils'
make -C adt all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/adt'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o acl.o acl.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o arrayfuncs.o arrayfuncs.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o array_userfuncs.o array_userfuncs.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o arrayutils.o arrayutils.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o bool.o bool.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o cash.o cash.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o char.o char.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o date.o date.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o datetime.o datetime.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o datum.o datum.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o domains.o domains.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o enum.o enum.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o float.o float.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o format_type.o format_type.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o geo_ops.o geo_ops.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o geo_selfuncs.o geo_selfuncs.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o int.o int.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o int8.o int8.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o like.o like.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o lockfuncs.o lockfuncs.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o misc.o misc.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o nabstime.o nabstime.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o name.o name.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o numeric.o numeric.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o numutils.o numutils.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o oid.o oid.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o oracle_compat.o oracle_compat.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o pseudotypes.o pseudotypes.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o rowtypes.o rowtypes.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o regexp.o regexp.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o regproc.o regproc.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o ruleutils.o ruleutils.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o selfuncs.o selfuncs.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o tid.o tid.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o timestamp.o timestamp.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o varbit.o varbit.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o varchar.o varchar.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o varlena.o varlena.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o version.o version.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o xid.o xid.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o network.o network.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o mac.o mac.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o inet_net_ntop.o inet_net_ntop.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o inet_net_pton.o inet_net_pton.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o ri_triggers.o ri_triggers.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o pg_lzcompress.o pg_lzcompress.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o pg_locale.o pg_locale.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o formatting.o formatting.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o ascii.o ascii.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o quote.o quote.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o pgstatfuncs.o pgstatfuncs.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o encode.o encode.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o dbsize.o dbsize.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o genfile.o genfile.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o trigfuncs.o trigfuncs.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o tsginidx.o tsginidx.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o tsgistidx.o tsgistidx.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o tsquery.o tsquery.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o tsquery_cleanup.o tsquery_cleanup.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o tsquery_gist.o tsquery_gist.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o tsquery_op.o tsquery_op.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o tsquery_rewrite.o tsquery_rewrite.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o tsquery_util.o tsquery_util.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o tsrank.o tsrank.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o tsvector.o tsvector.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o tsvector_op.o tsvector_op.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o tsvector_parser.o tsvector_parser.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o txid.o txid.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o uuid.o uuid.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o windowfuncs.o windowfuncs.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o xml.o xml.c
( echo src/backend/utils/adt/acl.o src/backend/utils/adt/arrayfuncs.o src/backend/utils/adt/array_userfuncs.o src/backend/utils/adt/arrayutils.o src/backend/utils/adt/bool.o src/backend/utils/adt/cash.o src/backend/utils/adt/char.o src/backend/utils/adt/date.o src/backend/utils/adt/datetime.o src/backend/utils/adt/datum.o src/backend/utils/adt/domains.o src/backend/utils/adt/enum.o src/backend/utils/adt/float.o src/backend/utils/adt/format_type.o src/backend/utils/adt/geo_ops.o src/backend/utils/adt/geo_selfuncs.o src/backend/utils/adt/int.o src/backend/utils/adt/int8.o src/backend/utils/adt/like.o src/backend/utils/adt/lockfuncs.o src/backend/utils/adt/misc.o src/backend/utils/adt/nabstime.o src/backend/utils/adt/name.o src/backend/utils/adt/numeric.o src/backend/utils/adt/numutils.o src/backend/utils/adt/oid.o src/backend/utils/adt/oracle_compat.o src/backend/utils/adt/pseudotypes.o src/backend/utils/adt/rowtypes.o src/backend/utils/adt/regexp.o src/backend/utils/adt/regproc.o src/backend/utils/adt/ruleutils.o src/backend/utils/adt/selfuncs.o src/backend/utils/adt/tid.o src/backend/utils/adt/timestamp.o src/backend/utils/adt/varbit.o src/backend/utils/adt/varchar.o src/backend/utils/adt/varlena.o src/backend/utils/adt/version.o src/backend/utils/adt/xid.o src/backend/utils/adt/network.o src/backend/utils/adt/mac.o src/backend/utils/adt/inet_net_ntop.o src/backend/utils/adt/inet_net_pton.o src/backend/utils/adt/ri_triggers.o src/backend/utils/adt/pg_lzcompress.o src/backend/utils/adt/pg_locale.o src/backend/utils/adt/formatting.o src/backend/utils/adt/ascii.o src/backend/utils/adt/quote.o src/backend/utils/adt/pgstatfuncs.o src/backend/utils/adt/encode.o src/backend/utils/adt/dbsize.o src/backend/utils/adt/genfile.o src/backend/utils/adt/trigfuncs.o src/backend/utils/adt/tsginidx.o src/backend/utils/adt/tsgistidx.o src/backend/utils/adt/tsquery.o src/backend/utils/adt/tsquery_cleanup.o src/backend/utils/adt/tsquery_gist.o src/backend/utils/adt/tsquery_op.o src/backend/utils/adt/tsquery_rewrite.o src/backend/utils/adt/tsquery_util.o src/backend/utils/adt/tsrank.o src/backend/utils/adt/tsvector.o src/backend/utils/adt/tsvector_op.o src/backend/utils/adt/tsvector_parser.o src/backend/utils/adt/txid.o src/backend/utils/adt/uuid.o src/backend/utils/adt/windowfuncs.o src/backend/utils/adt/xml.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/adt'
make -C cache all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/cache'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o attoptcache.o attoptcache.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o catcache.o catcache.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o inval.o inval.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o plancache.o plancache.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o relcache.o relcache.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o relmapper.o relmapper.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o spccache.o spccache.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o syscache.o syscache.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o lsyscache.o lsyscache.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o typcache.o typcache.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o ts_cache.o ts_cache.c
( echo src/backend/utils/cache/attoptcache.o src/backend/utils/cache/catcache.o src/backend/utils/cache/inval.o src/backend/utils/cache/plancache.o src/backend/utils/cache/relcache.o src/backend/utils/cache/relmapper.o src/backend/utils/cache/spccache.o src/backend/utils/cache/syscache.o src/backend/utils/cache/lsyscache.o src/backend/utils/cache/typcache.o src/backend/utils/cache/ts_cache.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/cache'
make -C error all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/error'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o assert.o assert.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o elog.o elog.c
( echo src/backend/utils/error/assert.o src/backend/utils/error/elog.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/error'
make -C fmgr all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/fmgr'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE  -DDLSUFFIX=\".so\"  -c -o dfmgr.o dfmgr.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE  -DDLSUFFIX=\".so\"  -c -o fmgr.o fmgr.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE  -DDLSUFFIX=\".so\"  -c -o funcapi.o funcapi.c
( echo src/backend/utils/fmgr/dfmgr.o src/backend/utils/fmgr/fmgr.o src/backend/utils/fmgr/funcapi.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/fmgr'
make -C hash all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/hash'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o dynahash.o dynahash.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o hashfn.o hashfn.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o pg_crc.o pg_crc.c
( echo src/backend/utils/hash/dynahash.o src/backend/utils/hash/hashfn.o src/backend/utils/hash/pg_crc.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/hash'
make -C init all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/init'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o globals.o globals.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o miscinit.o miscinit.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o postinit.o postinit.c
( echo src/backend/utils/init/globals.o src/backend/utils/init/miscinit.o src/backend/utils/init/postinit.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/init'
make -C mb all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o encnames.o encnames.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o conv.o conv.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o mbutils.o mbutils.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o wchar.o wchar.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o wstrcmp.o wstrcmp.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o wstrncmp.o wstrncmp.c
( echo src/backend/utils/mb/encnames.o src/backend/utils/mb/conv.o src/backend/utils/mb/mbutils.o src/backend/utils/mb/wchar.o src/backend/utils/mb/wstrcmp.o src/backend/utils/mb/wstrncmp.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb'
make -C misc all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/misc'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../../src/include -D_GNU_SOURCE   -c -o guc.o guc.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../../src/include -D_GNU_SOURCE   -c -o help_config.o help_config.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../../src/include -D_GNU_SOURCE   -c -o pg_rusage.o pg_rusage.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../../src/include -D_GNU_SOURCE   -c -o ps_status.o ps_status.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../../src/include -D_GNU_SOURCE   -c -o superuser.o superuser.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../../src/include -D_GNU_SOURCE   -c -o tzparser.o tzparser.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../../src/include -D_GNU_SOURCE   -c -o rbtree.o rbtree.c
( echo src/backend/utils/misc/guc.o src/backend/utils/misc/help_config.o src/backend/utils/misc/pg_rusage.o src/backend/utils/misc/ps_status.o src/backend/utils/misc/superuser.o src/backend/utils/misc/tzparser.o src/backend/utils/misc/rbtree.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/misc'
make -C mmgr all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mmgr'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o aset.o aset.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o mcxt.o mcxt.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o portalmem.o portalmem.c
( echo src/backend/utils/mmgr/aset.o src/backend/utils/mmgr/mcxt.o src/backend/utils/mmgr/portalmem.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mmgr'
make -C resowner all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/resowner'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o resowner.o resowner.c
( echo src/backend/utils/resowner/resowner.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/resowner'
make -C sort all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/sort'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o logtape.o logtape.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o tuplesort.o tuplesort.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o tuplestore.o tuplestore.c
( echo src/backend/utils/sort/logtape.o src/backend/utils/sort/tuplesort.o src/backend/utils/sort/tuplestore.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/sort'
make -C time all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/time'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o combocid.o combocid.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o tqual.o tqual.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../../src/include -D_GNU_SOURCE   -c -o snapmgr.o snapmgr.c
( echo src/backend/utils/time/combocid.o src/backend/utils/time/tqual.o src/backend/utils/time/snapmgr.o ) >objfiles.txt
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/time'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o fmgrtab.o fmgrtab.c
( cat adt/objfiles.txt cache/objfiles.txt error/objfiles.txt fmgr/objfiles.txt hash/objfiles.txt init/objfiles.txt mb/objfiles.txt misc/objfiles.txt mmgr/objfiles.txt resowner/objfiles.txt sort/objfiles.txt time/objfiles.txt; echo src/backend/utils/fmgrtab.o ) >objfiles.txt
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils'
make -C ../../src/timezone all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/timezone'
make -C ../../src/port all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/port'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/port'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/timezone'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -L../../src/port  -Wl,-rpath,'/usr/local/postgresql-9.0.2/lib',--enable-new-dtags  -Wl,-E access/common/heaptuple.o access/common/indextuple.o access/common/printtup.o access/common/reloptions.o access/common/scankey.o access/common/tupconvert.o access/common/tupdesc.o access/gist/gist.o access/gist/gistutil.o access/gist/gistxlog.o access/gist/gistvacuum.o access/gist/gistget.o access/gist/gistscan.o access/gist/gistproc.o access/gist/gistsplit.o access/hash/hash.o access/hash/hashfunc.o access/hash/hashinsert.o access/hash/hashovfl.o access/hash/hashpage.o access/hash/hashscan.o access/hash/hashsearch.o access/hash/hashsort.o access/hash/hashutil.o access/heap/heapam.o access/heap/hio.o access/heap/pruneheap.o access/heap/rewriteheap.o access/heap/syncscan.o access/heap/tuptoaster.o access/heap/visibilitymap.o access/index/genam.o access/index/indexam.o access/nbtree/nbtcompare.o access/nbtree/nbtinsert.o access/nbtree/nbtpage.o access/nbtree/nbtree.o access/nbtree/nbtsearch.o access/nbtree/nbtutils.o access/nbtree/nbtsort.o access/nbtree/nbtxlog.o access/transam/clog.o access/transam/transam.o access/transam/varsup.o access/transam/xact.o access/transam/xlog.o access/transam/xlogutils.o access/transam/rmgr.o access/transam/slru.o access/transam/subtrans.o access/transam/multixact.o access/transam/twophase.o access/transam/twophase_rmgr.o access/gin/ginutil.o access/gin/gininsert.o access/gin/ginxlog.o access/gin/ginentrypage.o access/gin/gindatapage.o access/gin/ginbtree.o access/gin/ginscan.o access/gin/ginget.o access/gin/ginvacuum.o access/gin/ginarrayproc.o access/gin/ginbulk.o access/gin/ginfast.o bootstrap/bootparse.o bootstrap/bootstrap.o catalog/catalog.o catalog/dependency.o catalog/heap.o catalog/index.o catalog/indexing.o catalog/namespace.o catalog/aclchk.o catalog/pg_aggregate.o catalog/pg_constraint.o catalog/pg_conversion.o catalog/pg_depend.o catalog/pg_enum.o catalog/pg_inherits.o catalog/pg_largeobject.o catalog/pg_namespace.o catalog/pg_operator.o catalog/pg_proc.o catalog/pg_db_role_setting.o catalog/pg_shdepend.o catalog/pg_type.o catalog/storage.o catalog/toasting.o parser/analyze.o parser/gram.o parser/keywords.o parser/kwlookup.o parser/parser.o parser/parse_agg.o parser/parse_clause.o parser/parse_coerce.o parser/parse_cte.o parser/parse_expr.o parser/parse_func.o parser/parse_node.o parser/parse_oper.o parser/parse_param.o parser/parse_relation.o parser/parse_target.o parser/parse_type.o parser/parse_utilcmd.o parser/scansup.o commands/aggregatecmds.o commands/alter.o commands/analyze.o commands/async.o commands/cluster.o commands/comment.o commands/constraint.o commands/conversioncmds.o commands/copy.o commands/dbcommands.o commands/define.o commands/discard.o commands/explain.o commands/foreigncmds.o commands/functioncmds.o commands/indexcmds.o commands/lockcmds.o commands/operatorcmds.o commands/opclasscmds.o commands/portalcmds.o commands/prepare.o commands/proclang.o commands/schemacmds.o commands/sequence.o commands/tablecmds.o commands/tablespace.o commands/trigger.o commands/tsearchcmds.o commands/typecmds.o commands/user.o commands/vacuum.o commands/vacuumlazy.o commands/variable.o commands/view.o executor/execAmi.o executor/execCurrent.o executor/execGrouping.o executor/execJunk.o executor/execMain.o executor/execProcnode.o executor/execQual.o executor/execScan.o executor/execTuples.o executor/execUtils.o executor/functions.o executor/instrument.o executor/nodeAppend.o executor/nodeAgg.o executor/nodeBitmapAnd.o executor/nodeBitmapOr.o executor/nodeBitmapHeapscan.o executor/nodeBitmapIndexscan.o executor/nodeHash.o executor/nodeHashjoin.o executor/nodeIndexscan.o executor/nodeLimit.o executor/nodeLockRows.o executor/nodeMaterial.o executor/nodeMergejoin.o executor/nodeModifyTable.o executor/nodeNestloop.o executor/nodeFunctionscan.o executor/nodeRecursiveunion.o executor/nodeResult.o executor/nodeSeqscan.o executor/nodeSetOp.o executor/nodeSort.o executor/nodeUnique.o executor/nodeValuesscan.o executor/nodeCtescan.o executor/nodeWorktablescan.o executor/nodeGroup.o executor/nodeSubplan.o executor/nodeSubqueryscan.o executor/nodeTidscan.o executor/nodeWindowAgg.o executor/tstoreReceiver.o executor/spi.o foreign/foreign.o lib/dllist.o lib/stringinfo.o libpq/be-fsstubs.o libpq/be-secure.o libpq/auth.o libpq/crypt.o libpq/hba.o libpq/ip.o libpq/md5.o libpq/pqcomm.o libpq/pqformat.o libpq/pqsignal.o main/main.o nodes/nodeFuncs.o nodes/nodes.o nodes/list.o nodes/bitmapset.o nodes/tidbitmap.o nodes/copyfuncs.o nodes/equalfuncs.o nodes/makefuncs.o nodes/outfuncs.o nodes/readfuncs.o nodes/print.o nodes/read.o nodes/params.o nodes/value.o optimizer/geqo/geqo_copy.o optimizer/geqo/geqo_eval.o optimizer/geqo/geqo_main.o optimizer/geqo/geqo_misc.o optimizer/geqo/geqo_mutation.o optimizer/geqo/geqo_pool.o optimizer/geqo/geqo_random.o optimizer/geqo/geqo_recombination.o optimizer/geqo/geqo_selection.o optimizer/geqo/geqo_erx.o optimizer/geqo/geqo_pmx.o optimizer/geqo/geqo_cx.o optimizer/geqo/geqo_px.o optimizer/geqo/geqo_ox1.o optimizer/geqo/geqo_ox2.o optimizer/path/allpaths.o optimizer/path/clausesel.o optimizer/path/costsize.o optimizer/path/equivclass.o optimizer/path/indxpath.o optimizer/path/joinpath.o optimizer/path/joinrels.o optimizer/path/orindxpath.o optimizer/path/pathkeys.o optimizer/path/tidpath.o optimizer/plan/analyzejoins.o optimizer/plan/createplan.o optimizer/plan/initsplan.o optimizer/plan/planagg.o optimizer/plan/planmain.o optimizer/plan/planner.o optimizer/plan/setrefs.o optimizer/plan/subselect.o optimizer/prep/prepjointree.o optimizer/prep/prepqual.o optimizer/prep/preptlist.o optimizer/prep/prepunion.o optimizer/util/clauses.o optimizer/util/joininfo.o optimizer/util/pathnode.o optimizer/util/placeholder.o optimizer/util/plancat.o optimizer/util/predtest.o optimizer/util/relnode.o optimizer/util/restrictinfo.o optimizer/util/tlist.o optimizer/util/var.o port/dynloader.o port/pg_sema.o port/pg_shmem.o postmaster/autovacuum.o postmaster/bgwriter.o postmaster/fork_process.o postmaster/pgarch.o postmaster/pgstat.o postmaster/postmaster.o postmaster/syslogger.o postmaster/walwriter.o regex/regcomp.o regex/regerror.o regex/regexec.o regex/regfree.o replication/walsender.o replication/walreceiverfuncs.o replication/walreceiver.o rewrite/rewriteRemove.o rewrite/rewriteDefine.o rewrite/rewriteHandler.o rewrite/rewriteManip.o rewrite/rewriteSupport.o storage/buffer/buf_table.o storage/buffer/buf_init.o storage/buffer/bufmgr.o storage/buffer/freelist.o storage/buffer/localbuf.o storage/file/fd.o storage/file/buffile.o storage/file/copydir.o storage/freespace/freespace.o storage/freespace/fsmpage.o storage/freespace/indexfsm.o storage/ipc/ipc.o storage/ipc/ipci.o storage/ipc/pmsignal.o storage/ipc/procarray.o storage/ipc/procsignal.o storage/ipc/shmem.o storage/ipc/shmqueue.o storage/ipc/sinval.o storage/ipc/sinvaladt.o storage/ipc/standby.o storage/large_object/inv_api.o storage/lmgr/lmgr.o storage/lmgr/lock.o storage/lmgr/proc.o storage/lmgr/deadlock.o storage/lmgr/lwlock.o storage/lmgr/spin.o storage/lmgr/s_lock.o storage/page/bufpage.o storage/page/itemptr.o storage/smgr/md.o storage/smgr/smgr.o storage/smgr/smgrtype.o tcop/dest.o tcop/fastpath.o tcop/postgres.o tcop/pquery.o tcop/utility.o tsearch/ts_locale.o tsearch/ts_parse.o tsearch/wparser.o tsearch/wparser_def.o tsearch/dict.o tsearch/dict_simple.o tsearch/dict_synonym.o tsearch/dict_thesaurus.o tsearch/dict_ispell.o tsearch/regis.o tsearch/spell.o tsearch/to_tsany.o tsearch/ts_selfuncs.o tsearch/ts_typanalyze.o tsearch/ts_utils.o utils/adt/acl.o utils/adt/arrayfuncs.o utils/adt/array_userfuncs.o utils/adt/arrayutils.o utils/adt/bool.o utils/adt/cash.o utils/adt/char.o utils/adt/date.o utils/adt/datetime.o utils/adt/datum.o utils/adt/domains.o utils/adt/enum.o utils/adt/float.o utils/adt/format_type.o utils/adt/geo_ops.o utils/adt/geo_selfuncs.o utils/adt/int.o utils/adt/int8.o utils/adt/like.o utils/adt/lockfuncs.o utils/adt/misc.o utils/adt/nabstime.o utils/adt/name.o utils/adt/numeric.o utils/adt/numutils.o utils/adt/oid.o utils/adt/oracle_compat.o utils/adt/pseudotypes.o utils/adt/rowtypes.o utils/adt/regexp.o utils/adt/regproc.o utils/adt/ruleutils.o utils/adt/selfuncs.o utils/adt/tid.o utils/adt/timestamp.o utils/adt/varbit.o utils/adt/varchar.o utils/adt/varlena.o utils/adt/version.o utils/adt/xid.o utils/adt/network.o utils/adt/mac.o utils/adt/inet_net_ntop.o utils/adt/inet_net_pton.o utils/adt/ri_triggers.o utils/adt/pg_lzcompress.o utils/adt/pg_locale.o utils/adt/formatting.o utils/adt/ascii.o utils/adt/quote.o utils/adt/pgstatfuncs.o utils/adt/encode.o utils/adt/dbsize.o utils/adt/genfile.o utils/adt/trigfuncs.o utils/adt/tsginidx.o utils/adt/tsgistidx.o utils/adt/tsquery.o utils/adt/tsquery_cleanup.o utils/adt/tsquery_gist.o utils/adt/tsquery_op.o utils/adt/tsquery_rewrite.o utils/adt/tsquery_util.o utils/adt/tsrank.o utils/adt/tsvector.o utils/adt/tsvector_op.o utils/adt/tsvector_parser.o utils/adt/txid.o utils/adt/uuid.o utils/adt/windowfuncs.o utils/adt/xml.o utils/cache/attoptcache.o utils/cache/catcache.o utils/cache/inval.o utils/cache/plancache.o utils/cache/relcache.o utils/cache/relmapper.o utils/cache/spccache.o utils/cache/syscache.o utils/cache/lsyscache.o utils/cache/typcache.o utils/cache/ts_cache.o utils/error/assert.o utils/error/elog.o utils/fmgr/dfmgr.o utils/fmgr/fmgr.o utils/fmgr/funcapi.o utils/hash/dynahash.o utils/hash/hashfn.o utils/hash/pg_crc.o utils/init/globals.o utils/init/miscinit.o utils/init/postinit.o utils/mb/encnames.o utils/mb/conv.o utils/mb/mbutils.o utils/mb/wchar.o utils/mb/wstrcmp.o utils/mb/wstrncmp.o utils/misc/guc.o utils/misc/help_config.o utils/misc/pg_rusage.o utils/misc/ps_status.o utils/misc/superuser.o utils/misc/tzparser.o utils/misc/rbtree.o utils/mmgr/aset.o utils/mmgr/mcxt.o utils/mmgr/portalmem.o utils/resowner/resowner.o utils/sort/logtape.o utils/sort/tuplesort.o utils/sort/tuplestore.o utils/time/combocid.o utils/time/tqual.o utils/time/snapmgr.o utils/fmgrtab.o ../../src/timezone/localtime.o ../../src/timezone/strftime.o ../../src/timezone/pgtz.o ../../src/port/libpgport_srv.a -lcrypt -ldl -lm -o postgres
make[2]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend'
make -C backend/utils/mb/conversion_procs all
make[2]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/ascii_and_mic'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../../../../src/include -D_GNU_SOURCE   -c -o ascii_and_mic.o ascii_and_mic.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -shared -o ascii_and_mic.so ascii_and_mic.o -L../../../../../../src/port
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/ascii_and_mic'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/cyrillic_and_mic'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../../../../src/include -D_GNU_SOURCE   -c -o cyrillic_and_mic.o cyrillic_and_mic.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -shared -o cyrillic_and_mic.so cyrillic_and_mic.o -L../../../../../../src/port
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/cyrillic_and_mic'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/euc_cn_and_mic'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../../../../src/include -D_GNU_SOURCE   -c -o euc_cn_and_mic.o euc_cn_and_mic.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -shared -o euc_cn_and_mic.so euc_cn_and_mic.o -L../../../../../../src/port
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/euc_cn_and_mic'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/euc_jp_and_sjis'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../../../../src/include -D_GNU_SOURCE   -c -o euc_jp_and_sjis.o euc_jp_and_sjis.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -shared -o euc_jp_and_sjis.so euc_jp_and_sjis.o -L../../../../../../src/port
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/euc_jp_and_sjis'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/euc_kr_and_mic'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../../../../src/include -D_GNU_SOURCE   -c -o euc_kr_and_mic.o euc_kr_and_mic.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -shared -o euc_kr_and_mic.so euc_kr_and_mic.o -L../../../../../../src/port
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/euc_kr_and_mic'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/euc_tw_and_big5'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../../../../src/include -D_GNU_SOURCE   -c -o big5.o big5.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../../../../src/include -D_GNU_SOURCE   -c -o euc_tw_and_big5.o euc_tw_and_big5.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -shared -o euc_tw_and_big5.so big5.o euc_tw_and_big5.o -L../../../../../../src/port
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/euc_tw_and_big5'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/latin2_and_win1250'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../../../../src/include -D_GNU_SOURCE   -c -o latin2_and_win1250.o latin2_and_win1250.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -shared -o latin2_and_win1250.so latin2_and_win1250.o -L../../../../../../src/port
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/latin2_and_win1250'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/latin_and_mic'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../../../../src/include -D_GNU_SOURCE   -c -o latin_and_mic.o latin_and_mic.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -shared -o latin_and_mic.so latin_and_mic.o -L../../../../../../src/port
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/latin_and_mic'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_ascii'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../../../../src/include -D_GNU_SOURCE   -c -o utf8_and_ascii.o utf8_and_ascii.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -shared -o utf8_and_ascii.so utf8_and_ascii.o -L../../../../../../src/port
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_ascii'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_big5'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../../../../src/include -D_GNU_SOURCE   -c -o utf8_and_big5.o utf8_and_big5.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -shared -o utf8_and_big5.so utf8_and_big5.o -L../../../../../../src/port
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_big5'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_cyrillic'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../../../../src/include -D_GNU_SOURCE   -c -o utf8_and_cyrillic.o utf8_and_cyrillic.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -shared -o utf8_and_cyrillic.so utf8_and_cyrillic.o -L../../../../../../src/port
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_cyrillic'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_euc_cn'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../../../../src/include -D_GNU_SOURCE   -c -o utf8_and_euc_cn.o utf8_and_euc_cn.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -shared -o utf8_and_euc_cn.so utf8_and_euc_cn.o -L../../../../../../src/port
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_euc_cn'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_euc_jp'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../../../../src/include -D_GNU_SOURCE   -c -o utf8_and_euc_jp.o utf8_and_euc_jp.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -shared -o utf8_and_euc_jp.so utf8_and_euc_jp.o -L../../../../../../src/port
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_euc_jp'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_euc_kr'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../../../../src/include -D_GNU_SOURCE   -c -o utf8_and_euc_kr.o utf8_and_euc_kr.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -shared -o utf8_and_euc_kr.so utf8_and_euc_kr.o -L../../../../../../src/port
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_euc_kr'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_euc_tw'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../../../../src/include -D_GNU_SOURCE   -c -o utf8_and_euc_tw.o utf8_and_euc_tw.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -shared -o utf8_and_euc_tw.so utf8_and_euc_tw.o -L../../../../../../src/port
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_euc_tw'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_gb18030'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../../../../src/include -D_GNU_SOURCE   -c -o utf8_and_gb18030.o utf8_and_gb18030.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -shared -o utf8_and_gb18030.so utf8_and_gb18030.o -L../../../../../../src/port
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_gb18030'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_gbk'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../../../../src/include -D_GNU_SOURCE   -c -o utf8_and_gbk.o utf8_and_gbk.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -shared -o utf8_and_gbk.so utf8_and_gbk.o -L../../../../../../src/port
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_gbk'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_iso8859'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../../../../src/include -D_GNU_SOURCE   -c -o utf8_and_iso8859.o utf8_and_iso8859.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -shared -o utf8_and_iso8859.so utf8_and_iso8859.o -L../../../../../../src/port
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_iso8859'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_iso8859_1'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../../../../src/include -D_GNU_SOURCE   -c -o utf8_and_iso8859_1.o utf8_and_iso8859_1.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -shared -o utf8_and_iso8859_1.so utf8_and_iso8859_1.o -L../../../../../../src/port
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_iso8859_1'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_johab'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../../../../src/include -D_GNU_SOURCE   -c -o utf8_and_johab.o utf8_and_johab.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -shared -o utf8_and_johab.so utf8_and_johab.o -L../../../../../../src/port
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_johab'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_sjis'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../../../../src/include -D_GNU_SOURCE   -c -o utf8_and_sjis.o utf8_and_sjis.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -shared -o utf8_and_sjis.so utf8_and_sjis.o -L../../../../../../src/port
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_sjis'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_win'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../../../../src/include -D_GNU_SOURCE   -c -o utf8_and_win.o utf8_and_win.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -shared -o utf8_and_win.so utf8_and_win.o -L../../../../../../src/port
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_win'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_uhc'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../../../../src/include -D_GNU_SOURCE   -c -o utf8_and_uhc.o utf8_and_uhc.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -shared -o utf8_and_uhc.so utf8_and_uhc.o -L../../../../../../src/port
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_uhc'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_euc2004'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../../../../src/include -D_GNU_SOURCE   -c -o utf8_and_euc2004.o utf8_and_euc2004.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -shared -o utf8_and_euc2004.so utf8_and_euc2004.o -L../../../../../../src/port
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_euc2004'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_sjis2004'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../../../../src/include -D_GNU_SOURCE   -c -o utf8_and_sjis2004.o utf8_and_sjis2004.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -shared -o utf8_and_sjis2004.so utf8_and_sjis2004.o -L../../../../../../src/port
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_sjis2004'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/euc2004_sjis2004'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../../../../src/include -D_GNU_SOURCE   -c -o euc2004_sjis2004.o euc2004_sjis2004.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -shared -o euc2004_sjis2004.so euc2004_sjis2004.o -L../../../../../../src/port
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/euc2004_sjis2004'
make[2]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs'
make -C backend/snowball all
make[2]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/snowball'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o dict_snowball.o dict_snowball.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o api.o ./libstemmer/api.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o utilities.o ./libstemmer/utilities.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o stem_ISO_8859_1_danish.o ./libstemmer/stem_ISO_8859_1_danish.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o stem_ISO_8859_1_dutch.o ./libstemmer/stem_ISO_8859_1_dutch.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o stem_ISO_8859_1_english.o ./libstemmer/stem_ISO_8859_1_english.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o stem_ISO_8859_1_finnish.o ./libstemmer/stem_ISO_8859_1_finnish.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o stem_ISO_8859_1_french.o ./libstemmer/stem_ISO_8859_1_french.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o stem_ISO_8859_1_german.o ./libstemmer/stem_ISO_8859_1_german.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o stem_ISO_8859_1_hungarian.o ./libstemmer/stem_ISO_8859_1_hungarian.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o stem_ISO_8859_1_italian.o ./libstemmer/stem_ISO_8859_1_italian.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o stem_ISO_8859_1_norwegian.o ./libstemmer/stem_ISO_8859_1_norwegian.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o stem_ISO_8859_1_porter.o ./libstemmer/stem_ISO_8859_1_porter.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o stem_ISO_8859_1_portuguese.o ./libstemmer/stem_ISO_8859_1_portuguese.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o stem_ISO_8859_1_spanish.o ./libstemmer/stem_ISO_8859_1_spanish.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o stem_ISO_8859_1_swedish.o ./libstemmer/stem_ISO_8859_1_swedish.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o stem_ISO_8859_2_romanian.o ./libstemmer/stem_ISO_8859_2_romanian.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o stem_KOI8_R_russian.o ./libstemmer/stem_KOI8_R_russian.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o stem_UTF_8_danish.o ./libstemmer/stem_UTF_8_danish.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o stem_UTF_8_dutch.o ./libstemmer/stem_UTF_8_dutch.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o stem_UTF_8_english.o ./libstemmer/stem_UTF_8_english.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o stem_UTF_8_finnish.o ./libstemmer/stem_UTF_8_finnish.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o stem_UTF_8_french.o ./libstemmer/stem_UTF_8_french.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o stem_UTF_8_german.o ./libstemmer/stem_UTF_8_german.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o stem_UTF_8_hungarian.o ./libstemmer/stem_UTF_8_hungarian.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o stem_UTF_8_italian.o ./libstemmer/stem_UTF_8_italian.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o stem_UTF_8_norwegian.o ./libstemmer/stem_UTF_8_norwegian.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o stem_UTF_8_porter.o ./libstemmer/stem_UTF_8_porter.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o stem_UTF_8_portuguese.o ./libstemmer/stem_UTF_8_portuguese.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o stem_UTF_8_romanian.o ./libstemmer/stem_UTF_8_romanian.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o stem_UTF_8_russian.o ./libstemmer/stem_UTF_8_russian.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o stem_UTF_8_spanish.o ./libstemmer/stem_UTF_8_spanish.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o stem_UTF_8_swedish.o ./libstemmer/stem_UTF_8_swedish.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include/snowball -I../../../src/include/snowball/libstemmer -I../../../src/include -D_GNU_SOURCE   -c -o stem_UTF_8_turkish.o ./libstemmer/stem_UTF_8_turkish.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -shared -o dict_snowball.so dict_snowball.o api.o utilities.o stem_ISO_8859_1_danish.o stem_ISO_8859_1_dutch.o stem_ISO_8859_1_english.o stem_ISO_8859_1_finnish.o stem_ISO_8859_1_french.o stem_ISO_8859_1_german.o stem_ISO_8859_1_hungarian.o stem_ISO_8859_1_italian.o stem_ISO_8859_1_norwegian.o stem_ISO_8859_1_porter.o stem_ISO_8859_1_portuguese.o stem_ISO_8859_1_spanish.o stem_ISO_8859_1_swedish.o stem_ISO_8859_2_romanian.o stem_KOI8_R_russian.o stem_UTF_8_danish.o stem_UTF_8_dutch.o stem_UTF_8_english.o stem_UTF_8_finnish.o stem_UTF_8_french.o stem_UTF_8_german.o stem_UTF_8_hungarian.o stem_UTF_8_italian.o stem_UTF_8_norwegian.o stem_UTF_8_porter.o stem_UTF_8_portuguese.o stem_UTF_8_romanian.o stem_UTF_8_russian.o stem_UTF_8_spanish.o stem_UTF_8_swedish.o stem_UTF_8_turkish.o -L../../../src/port
echo '-- Language-specific snowball dictionaries' > snowball_create.sql
cat ./snowball_func.sql.in >> snowball_create.sql
make[2]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/snowball'
make -C include all
make[2]: Entering directory `/usr/local/src/postgresql-9.0.2/src/include'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/include'
make -C interfaces all
make[2]: Entering directory `/usr/local/src/postgresql-9.0.2/src/interfaces'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/interfaces/libpq'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -D_GNU_SOURCE  -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5  -c -o fe-auth.o fe-auth.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -D_GNU_SOURCE  -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5  -c -o fe-connect.o fe-connect.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -D_GNU_SOURCE  -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5  -c -o fe-exec.o fe-exec.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -D_GNU_SOURCE  -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5  -c -o fe-misc.o fe-misc.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -D_GNU_SOURCE  -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5  -c -o fe-print.o fe-print.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -D_GNU_SOURCE  -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5  -c -o fe-lobj.o fe-lobj.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -D_GNU_SOURCE  -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5  -c -o fe-protocol2.o fe-protocol2.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -D_GNU_SOURCE  -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5  -c -o fe-protocol3.o fe-protocol3.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -D_GNU_SOURCE  -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5  -c -o pqexpbuffer.o pqexpbuffer.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -D_GNU_SOURCE  -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5  -c -o pqsignal.o pqsignal.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -D_GNU_SOURCE  -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5  -c -o fe-secure.o fe-secure.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -D_GNU_SOURCE  -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5  -c -o libpq-events.o libpq-events.c
rm -f md5.c && ln -s ../../../src/backend/libpq/md5.c .
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -D_GNU_SOURCE  -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5  -c -o md5.o md5.c
rm -f ip.c && ln -s ../../../src/backend/libpq/ip.c .
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -D_GNU_SOURCE  -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5  -c -o ip.o ip.c
rm -f wchar.c && ln -s ../../../src/backend/utils/mb/wchar.c .
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -D_GNU_SOURCE  -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5  -c -o wchar.o wchar.c
rm -f encnames.c && ln -s ../../../src/backend/utils/mb/encnames.c .
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -D_GNU_SOURCE  -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5  -c -o encnames.o encnames.c
rm -f noblock.c && ln -s ../../../src/port/noblock.c .
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -D_GNU_SOURCE  -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5  -c -o noblock.o noblock.c
rm -f pgstrcasecmp.c && ln -s ../../../src/port/pgstrcasecmp.c .
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -D_GNU_SOURCE  -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5  -c -o pgstrcasecmp.o pgstrcasecmp.c
rm -f thread.c && ln -s ../../../src/port/thread.c .
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -D_GNU_SOURCE  -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5  -c -o thread.o thread.c
rm -f strlcpy.c && ln -s ../../../src/port/strlcpy.c .
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -DFRONTEND -DUNSAFE_STAT_OK -I. -I../../../src/include -D_GNU_SOURCE  -I../../../src/port -I../../../src/port -DSO_MAJOR_VERSION=5  -c -o strlcpy.o strlcpy.c
( echo '{ global:'; gawk '/^[^#]/ {printf "%s;\n",$1}' exports.txt; echo ' local: *; };' ) >exports.list
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -shared -Wl,-soname,libpq.so.5 -Wl,--version-script=exports.list -o libpq.so.5.3 fe-auth.o fe-connect.o fe-exec.o fe-misc.o fe-print.o fe-lobj.o fe-protocol2.o fe-protocol3.o pqexpbuffer.o pqsignal.o fe-secure.o libpq-events.o md5.o ip.o wchar.o encnames.o noblock.o pgstrcasecmp.o thread.o strlcpy.o -L../../../src/port  -Wl,-rpath,'/usr/local/postgresql-9.0.2/lib',--enable-new-dtags  -lcrypt  -lpthread
rm -f libpq.so.5
ln -s libpq.so.5.3 libpq.so.5
rm -f libpq.so
ln -s libpq.so.5.3 libpq.so
ar crs libpq.a fe-auth.o fe-connect.o fe-exec.o fe-misc.o fe-print.o fe-lobj.o fe-protocol2.o fe-protocol3.o pqexpbuffer.o pqsignal.o fe-secure.o libpq-events.o md5.o ip.o wchar.o encnames.o noblock.o pgstrcasecmp.o thread.o strlcpy.o
ranlib libpq.a
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/interfaces/libpq'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/interfaces/ecpg'
make -C include all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/interfaces/ecpg/include'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/interfaces/ecpg/include'
make -C pgtypeslib all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/interfaces/ecpg/pgtypeslib'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -I../include -I../../../../src/interfaces/ecpg/include -I../../../../src/include/utils -I../../../../src/interfaces/libpq -I../../../../src/include -D_GNU_SOURCE  -DSO_MAJOR_VERSION=3  -c -o numeric.o numeric.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -I../include -I../../../../src/interfaces/ecpg/include -I../../../../src/include/utils -I../../../../src/interfaces/libpq -I../../../../src/include -D_GNU_SOURCE  -DSO_MAJOR_VERSION=3  -c -o datetime.o datetime.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -I../include -I../../../../src/interfaces/ecpg/include -I../../../../src/include/utils -I../../../../src/interfaces/libpq -I../../../../src/include -D_GNU_SOURCE  -DSO_MAJOR_VERSION=3  -c -o common.o common.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -I../include -I../../../../src/interfaces/ecpg/include -I../../../../src/include/utils -I../../../../src/interfaces/libpq -I../../../../src/include -D_GNU_SOURCE  -DSO_MAJOR_VERSION=3  -c -o dt_common.o dt_common.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -I../include -I../../../../src/interfaces/ecpg/include -I../../../../src/include/utils -I../../../../src/interfaces/libpq -I../../../../src/include -D_GNU_SOURCE  -DSO_MAJOR_VERSION=3  -c -o timestamp.o timestamp.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -I../include -I../../../../src/interfaces/ecpg/include -I../../../../src/include/utils -I../../../../src/interfaces/libpq -I../../../../src/include -D_GNU_SOURCE  -DSO_MAJOR_VERSION=3  -c -o interval.o interval.c
rm -f pgstrcasecmp.c && ln -s ../../../../src/port/pgstrcasecmp.c .
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -I../include -I../../../../src/interfaces/ecpg/include -I../../../../src/include/utils -I../../../../src/interfaces/libpq -I../../../../src/include -D_GNU_SOURCE  -DSO_MAJOR_VERSION=3  -c -o pgstrcasecmp.o pgstrcasecmp.c
( echo '{ global:'; gawk '/^[^#]/ {printf "%s;\n",$1}' exports.txt; echo ' local: *; };' ) >exports.list
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -shared -Wl,-soname,libpgtypes.so.3 -Wl,--version-script=exports.list -o libpgtypes.so.3.1 numeric.o datetime.o common.o dt_common.o timestamp.o interval.o pgstrcasecmp.o  -L../../../../src/port  -Wl,-rpath,'/usr/local/postgresql-9.0.2/lib',--enable-new-dtags  -lm
rm -f libpgtypes.so.3
ln -s libpgtypes.so.3.1 libpgtypes.so.3
rm -f libpgtypes.so
ln -s libpgtypes.so.3.1 libpgtypes.so
ar crs libpgtypes.a numeric.o datetime.o common.o dt_common.o timestamp.o interval.o pgstrcasecmp.o
ranlib libpgtypes.a
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/interfaces/ecpg/pgtypeslib'
make -C ecpglib all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/interfaces/ecpg/ecpglib'
make -C ../../../../src/interfaces/libpq all
make[5]: Entering directory `/usr/local/src/postgresql-9.0.2/src/interfaces/libpq'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/interfaces/libpq'
make -C ../../../../src/interfaces/ecpg/pgtypeslib all
make[5]: Entering directory `/usr/local/src/postgresql-9.0.2/src/interfaces/ecpg/pgtypeslib'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/interfaces/ecpg/pgtypeslib'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -I../include -I../../../../src/interfaces/ecpg/include -I../../../../src/interfaces/libpq -I../../../../src/port -I../../../../src/include -D_GNU_SOURCE  -DSO_MAJOR_VERSION=6  -c -o execute.o execute.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -I../include -I../../../../src/interfaces/ecpg/include -I../../../../src/interfaces/libpq -I../../../../src/port -I../../../../src/include -D_GNU_SOURCE  -DSO_MAJOR_VERSION=6  -c -o typename.o typename.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -I../include -I../../../../src/interfaces/ecpg/include -I../../../../src/interfaces/libpq -I../../../../src/port -I../../../../src/include -D_GNU_SOURCE  -DSO_MAJOR_VERSION=6  -c -o descriptor.o descriptor.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -I../include -I../../../../src/interfaces/ecpg/include -I../../../../src/interfaces/libpq -I../../../../src/port -I../../../../src/include -D_GNU_SOURCE  -DSO_MAJOR_VERSION=6  -c -o sqlda.o sqlda.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -I../include -I../../../../src/interfaces/ecpg/include -I../../../../src/interfaces/libpq -I../../../../src/port -I../../../../src/include -D_GNU_SOURCE  -DSO_MAJOR_VERSION=6  -c -o data.o data.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -I../include -I../../../../src/interfaces/ecpg/include -I../../../../src/interfaces/libpq -I../../../../src/port -I../../../../src/include -D_GNU_SOURCE  -DSO_MAJOR_VERSION=6  -c -o error.o error.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -I../include -I../../../../src/interfaces/ecpg/include -I../../../../src/interfaces/libpq -I../../../../src/port -I../../../../src/include -D_GNU_SOURCE  -DSO_MAJOR_VERSION=6  -c -o prepare.o prepare.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -I../include -I../../../../src/interfaces/ecpg/include -I../../../../src/interfaces/libpq -I../../../../src/port -I../../../../src/include -D_GNU_SOURCE  -DSO_MAJOR_VERSION=6  -c -o memory.o memory.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -I../include -I../../../../src/interfaces/ecpg/include -I../../../../src/interfaces/libpq -I../../../../src/port -I../../../../src/include -D_GNU_SOURCE  -DSO_MAJOR_VERSION=6  -c -o connect.o connect.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -I../include -I../../../../src/interfaces/ecpg/include -I../../../../src/interfaces/libpq -I../../../../src/port -I../../../../src/include -D_GNU_SOURCE  -DSO_MAJOR_VERSION=6  -c -o misc.o misc.c
rm -f path.c && ln -s ../../../../src/port/path.c .
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -I../include -I../../../../src/interfaces/ecpg/include -I../../../../src/interfaces/libpq -I../../../../src/port -I../../../../src/include -D_GNU_SOURCE  -DSO_MAJOR_VERSION=6  -c -o path.o path.c
rm -f pgstrcasecmp.c && ln -s ../../../../src/port/pgstrcasecmp.c .
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -I../include -I../../../../src/interfaces/ecpg/include -I../../../../src/interfaces/libpq -I../../../../src/port -I../../../../src/include -D_GNU_SOURCE  -DSO_MAJOR_VERSION=6  -c -o pgstrcasecmp.o pgstrcasecmp.c
rm -f strlcpy.c && ln -s ../../../../src/port/strlcpy.c .
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -I../include -I../../../../src/interfaces/ecpg/include -I../../../../src/interfaces/libpq -I../../../../src/port -I../../../../src/include -D_GNU_SOURCE  -DSO_MAJOR_VERSION=6  -c -o strlcpy.o strlcpy.c
rm -f thread.c && ln -s ../../../../src/port/thread.c .
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -I../include -I../../../../src/interfaces/ecpg/include -I../../../../src/interfaces/libpq -I../../../../src/port -I../../../../src/include -D_GNU_SOURCE  -DSO_MAJOR_VERSION=6  -c -o thread.o thread.c
( echo '{ global:'; gawk '/^[^#]/ {printf "%s;\n",$1}' exports.txt; echo ' local: *; };' ) >exports.list
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -shared -Wl,-soname,libecpg.so.6 -Wl,--version-script=exports.list -o libecpg.so.6.2 execute.o typename.o descriptor.o sqlda.o data.o error.o prepare.o memory.o connect.o misc.o path.o pgstrcasecmp.o strlcpy.o thread.o -L../../../../src/port  -Wl,-rpath,'/usr/local/postgresql-9.0.2/lib',--enable-new-dtags  -L../pgtypeslib -lpgtypes -L../../../../src/interfaces/libpq -lpq -lm -lpthread
rm -f libecpg.so.6
ln -s libecpg.so.6.2 libecpg.so.6
rm -f libecpg.so
ln -s libecpg.so.6.2 libecpg.so
ar crs libecpg.a execute.o typename.o descriptor.o sqlda.o data.o error.o prepare.o memory.o connect.o misc.o path.o pgstrcasecmp.o strlcpy.o thread.o
ranlib libecpg.a
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/interfaces/ecpg/ecpglib'
make -C compatlib all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/interfaces/ecpg/compatlib'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -I../include -I../../../../src/interfaces/ecpg/include -I../../../../src/interfaces/libpq -I../../../../src/include/utils -I../../../../src/include -D_GNU_SOURCE  -DSO_MAJOR_VERSION=3  -c -o informix.o informix.c
( echo '{ global:'; gawk '/^[^#]/ {printf "%s;\n",$1}' exports.txt; echo ' local: *; };' ) >exports.list
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -fpic -shared -Wl,-soname,libecpg_compat.so.3 -Wl,--version-script=exports.list -o libecpg_compat.so.3.2 informix.o  -L../../../../src/port  -Wl,-rpath,'/usr/local/postgresql-9.0.2/lib',--enable-new-dtags  -L../ecpglib -lecpg -L../pgtypeslib -lpgtypes -L../../../../src/interfaces/libpq -lpq -lm -lpthread
rm -f libecpg_compat.so.3
ln -s libecpg_compat.so.3.2 libecpg_compat.so.3
rm -f libecpg_compat.so
ln -s libecpg_compat.so.3.2 libecpg_compat.so
ar crs libecpg_compat.a informix.o
ranlib libecpg_compat.a
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/interfaces/ecpg/compatlib'
make -C preproc all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/interfaces/ecpg/preproc'
make -C ../../../../src/port all
make[5]: Entering directory `/usr/local/src/postgresql-9.0.2/src/port'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/port'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -DECPG_COMPILE -I../include -I../../../../src/interfaces/ecpg/include -I. -I. -DMAJOR_VERSION=4 -DMINOR_VERSION=6 -DPATCHLEVEL=0 -I../../../../src/include -D_GNU_SOURCE   -c -o preproc.o preproc.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -DECPG_COMPILE -I../include -I../../../../src/interfaces/ecpg/include -I. -I. -DMAJOR_VERSION=4 -DMINOR_VERSION=6 -DPATCHLEVEL=0 -I../../../../src/include -D_GNU_SOURCE   -c -o type.o type.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -DECPG_COMPILE -I../include -I../../../../src/interfaces/ecpg/include -I. -I. -DMAJOR_VERSION=4 -DMINOR_VERSION=6 -DPATCHLEVEL=0 -I../../../../src/include -D_GNU_SOURCE   -c -o ecpg.o ecpg.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -DECPG_COMPILE -I../include -I../../../../src/interfaces/ecpg/include -I. -I. -DMAJOR_VERSION=4 -DMINOR_VERSION=6 -DPATCHLEVEL=0 -I../../../../src/include -D_GNU_SOURCE   -c -o output.o output.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -DECPG_COMPILE -I../include -I../../../../src/interfaces/ecpg/include -I. -I. -DMAJOR_VERSION=4 -DMINOR_VERSION=6 -DPATCHLEVEL=0 -I../../../../src/include -D_GNU_SOURCE   -c -o parser.o parser.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -DECPG_COMPILE -I../include -I../../../../src/interfaces/ecpg/include -I. -I. -DMAJOR_VERSION=4 -DMINOR_VERSION=6 -DPATCHLEVEL=0 -I../../../../src/include -D_GNU_SOURCE   -c -o keywords.o keywords.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -DECPG_COMPILE -I../include -I../../../../src/interfaces/ecpg/include -I. -I. -DMAJOR_VERSION=4 -DMINOR_VERSION=6 -DPATCHLEVEL=0 -I../../../../src/include -D_GNU_SOURCE   -c -o c_keywords.o c_keywords.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -DECPG_COMPILE -I../include -I../../../../src/interfaces/ecpg/include -I. -I. -DMAJOR_VERSION=4 -DMINOR_VERSION=6 -DPATCHLEVEL=0 -I../../../../src/include -D_GNU_SOURCE   -c -o ecpg_keywords.o ecpg_keywords.c
rm -f kwlookup.c && ln -s ../../../../src/backend/parser/kwlookup.c .
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -DECPG_COMPILE -I../include -I../../../../src/interfaces/ecpg/include -I. -I. -DMAJOR_VERSION=4 -DMINOR_VERSION=6 -DPATCHLEVEL=0 -I../../../../src/include -D_GNU_SOURCE   -c -o kwlookup.o kwlookup.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -DECPG_COMPILE -I../include -I../../../../src/interfaces/ecpg/include -I. -I. -DMAJOR_VERSION=4 -DMINOR_VERSION=6 -DPATCHLEVEL=0 -I../../../../src/include -D_GNU_SOURCE   -c -o descriptor.o descriptor.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -DECPG_COMPILE -I../include -I../../../../src/interfaces/ecpg/include -I. -I. -DMAJOR_VERSION=4 -DMINOR_VERSION=6 -DPATCHLEVEL=0 -I../../../../src/include -D_GNU_SOURCE   -c -o variable.o variable.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -pthread  -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS -DECPG_COMPILE -L../../../../src/port  -Wl,-rpath,'/usr/local/postgresql-9.0.2/lib',--enable-new-dtags  preproc.o type.o ecpg.o output.o parser.o keywords.o c_keywords.o ecpg_keywords.o kwlookup.o ../ecpglib/typename.o descriptor.o variable.o -lpgport -lz -lreadline -ltermcap -lcrypt -ldl -lm  -lpthread    -o ecpg
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/interfaces/ecpg/preproc'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/interfaces/ecpg'
make[2]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/interfaces'
make -C backend/replication/libpqwalreceiver all
make[2]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/replication/libpqwalreceiver'
make -C ../../../../src/interfaces/libpq all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/interfaces/libpq'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/interfaces/libpq'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I../../../../src/interfaces/libpq -I../../../../src/include -D_GNU_SOURCE   -c -o libpqwalreceiver.o libpqwalreceiver.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -shared -o libpqwalreceiver.so libpqwalreceiver.o -L../../../../src/port  -Wl,-rpath,'/usr/local/postgresql-9.0.2/lib',--enable-new-dtags  -L../../../../src/interfaces/libpq -lpq
make[2]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/replication/libpqwalreceiver'
make -C bin all
make[2]: Entering directory `/usr/local/src/postgresql-9.0.2/src/bin'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/bin/initdb'
make -C ../../../src/port all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/port'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/port'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -DFRONTEND -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o initdb.o initdb.c
rm -f encnames.c && ln -s ../../../src/backend/utils/mb/encnames.c .
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -DFRONTEND -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o encnames.o encnames.c
rm -f pqsignal.c && ln -s ../../../src/interfaces/libpq/pqsignal.c .
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -DFRONTEND -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o pqsignal.o pqsignal.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv initdb.o encnames.o pqsignal.o  -L../../../src/port  -Wl,-rpath,'/usr/local/postgresql-9.0.2/lib',--enable-new-dtags  -lpgport -lz -lreadline -ltermcap -lcrypt -ldl -lm  -o initdb
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/bin/initdb'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/bin/pg_ctl'
make -C ../../../src/interfaces/libpq all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/interfaces/libpq'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/interfaces/libpq'
make -C ../../../src/port all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/port'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/port'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -DDEF_PGPORT=5432 -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o pg_ctl.o pg_ctl.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv pg_ctl.o  -L../../../src/port -lpgport -L../../../src/interfaces/libpq -lpq -L../../../src/port  -Wl,-rpath,'/usr/local/postgresql-9.0.2/lib',--enable-new-dtags  -lpgport -lz -lreadline -ltermcap -lcrypt -ldl -lm  -o pg_ctl
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/bin/pg_ctl'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/bin/pg_dump'
make -C ../../../src/interfaces/libpq all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/interfaces/libpq'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/interfaces/libpq'
make -C ../../../src/port all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/port'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/port'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o pg_dump.o pg_dump.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o common.o common.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o pg_dump_sort.o pg_dump_sort.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o pg_backup_archiver.o pg_backup_archiver.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o pg_backup_db.o pg_backup_db.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o pg_backup_custom.o pg_backup_custom.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o pg_backup_files.o pg_backup_files.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o pg_backup_null.o pg_backup_null.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o pg_backup_tar.o pg_backup_tar.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o dumputils.o dumputils.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o keywords.o keywords.c
rm -f kwlookup.c && ln -s ../../../src/backend/parser/kwlookup.c .
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o kwlookup.o kwlookup.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv pg_dump.o common.o pg_dump_sort.o keywords.o kwlookup.o pg_backup_archiver.o pg_backup_db.o pg_backup_custom.o pg_backup_files.o pg_backup_null.o pg_backup_tar.o dumputils.o  -L../../../src/port -lpgport -L../../../src/interfaces/libpq -lpq -L../../../src/port  -Wl,-rpath,'/usr/local/postgresql-9.0.2/lib',--enable-new-dtags  -lpgport -lz -lreadline -ltermcap -lcrypt -ldl -lm  -o pg_dump
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o pg_restore.o pg_restore.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv pg_restore.o keywords.o kwlookup.o pg_backup_archiver.o pg_backup_db.o pg_backup_custom.o pg_backup_files.o pg_backup_null.o pg_backup_tar.o dumputils.o  -L../../../src/port -lpgport -L../../../src/interfaces/libpq -lpq -L../../../src/port  -Wl,-rpath,'/usr/local/postgresql-9.0.2/lib',--enable-new-dtags  -lpgport -lz -lreadline -ltermcap -lcrypt -ldl -lm  -o pg_restore
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o pg_dumpall.o pg_dumpall.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv pg_dumpall.o dumputils.o keywords.o kwlookup.o  -L../../../src/port -lpgport -L../../../src/interfaces/libpq -lpq -L../../../src/port  -Wl,-rpath,'/usr/local/postgresql-9.0.2/lib',--enable-new-dtags  -lpgport -lz -lreadline -ltermcap -lcrypt -ldl -lm  -o pg_dumpall
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/bin/pg_dump'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/bin/psql'
make -C ../../../src/interfaces/libpq all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/interfaces/libpq'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/interfaces/libpq'
make -C ../../../src/port all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/port'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/port'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/interfaces/libpq -I../../../src/bin/pg_dump -I../../../src/include -D_GNU_SOURCE   -c -o command.o command.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/interfaces/libpq -I../../../src/bin/pg_dump -I../../../src/include -D_GNU_SOURCE   -c -o common.o common.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/interfaces/libpq -I../../../src/bin/pg_dump -I../../../src/include -D_GNU_SOURCE   -c -o help.o help.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/interfaces/libpq -I../../../src/bin/pg_dump -I../../../src/include -D_GNU_SOURCE   -c -o input.o input.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/interfaces/libpq -I../../../src/bin/pg_dump -I../../../src/include -D_GNU_SOURCE   -c -o stringutils.o stringutils.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/interfaces/libpq -I../../../src/bin/pg_dump -I../../../src/include -D_GNU_SOURCE   -c -o mainloop.o mainloop.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/interfaces/libpq -I../../../src/bin/pg_dump -I../../../src/include -D_GNU_SOURCE   -c -o copy.o copy.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/interfaces/libpq -I../../../src/bin/pg_dump -I../../../src/include -D_GNU_SOURCE   -c -o startup.o startup.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/interfaces/libpq -I../../../src/bin/pg_dump -I../../../src/include -D_GNU_SOURCE   -c -o prompt.o prompt.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/interfaces/libpq -I../../../src/bin/pg_dump -I../../../src/include -D_GNU_SOURCE   -c -o variables.o variables.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/interfaces/libpq -I../../../src/bin/pg_dump -I../../../src/include -D_GNU_SOURCE   -c -o large_obj.o large_obj.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/interfaces/libpq -I../../../src/bin/pg_dump -I../../../src/include -D_GNU_SOURCE   -c -o print.o print.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/interfaces/libpq -I../../../src/bin/pg_dump -I../../../src/include -D_GNU_SOURCE   -c -o describe.o describe.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/interfaces/libpq -I../../../src/bin/pg_dump -I../../../src/include -D_GNU_SOURCE   -c -o tab-complete.o tab-complete.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/interfaces/libpq -I../../../src/bin/pg_dump -I../../../src/include -D_GNU_SOURCE   -c -o mbprint.o mbprint.c
rm -f dumputils.c && ln -s ../../../src/bin/pg_dump/dumputils.c .
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/interfaces/libpq -I../../../src/bin/pg_dump -I../../../src/include -D_GNU_SOURCE   -c -o dumputils.o dumputils.c
rm -f keywords.c && ln -s ../../../src/bin/pg_dump/keywords.c .
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/interfaces/libpq -I../../../src/bin/pg_dump -I../../../src/include -D_GNU_SOURCE   -c -o keywords.o keywords.c
rm -f kwlookup.c && ln -s ../../../src/backend/parser/kwlookup.c .
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/interfaces/libpq -I../../../src/bin/pg_dump -I../../../src/include -D_GNU_SOURCE   -c -o kwlookup.o kwlookup.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I. -I. -I../../../src/interfaces/libpq -I../../../src/bin/pg_dump -I../../../src/include -D_GNU_SOURCE   -c -o sql_help.o sql_help.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv command.o common.o help.o input.o stringutils.o mainloop.o copy.o startup.o prompt.o variables.o large_obj.o print.o describe.o tab-complete.o mbprint.o dumputils.o keywords.o kwlookup.o sql_help.o  -L../../../src/port -lpgport -L../../../src/interfaces/libpq -lpq -L../../../src/port  -Wl,-rpath,'/usr/local/postgresql-9.0.2/lib',--enable-new-dtags  -lpgport -lz -lreadline -ltermcap -lcrypt -ldl -lm  -o psql
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/bin/psql'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/bin/scripts'
make -C ../../../src/interfaces/libpq all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/interfaces/libpq'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/interfaces/libpq'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/bin/pg_dump -I../../../src/bin/psql -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o createdb.o createdb.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/bin/pg_dump -I../../../src/bin/psql -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o common.o common.c
rm -f dumputils.c && ln -s ../../../src/bin/pg_dump/dumputils.c .
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/bin/pg_dump -I../../../src/bin/psql -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o dumputils.o dumputils.c
rm -f kwlookup.c && ln -s ../../../src/backend/parser/kwlookup.c .
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/bin/pg_dump -I../../../src/bin/psql -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o kwlookup.o kwlookup.c
rm -f keywords.c && ln -s ../../../src/bin/pg_dump/keywords.c .
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/bin/pg_dump -I../../../src/bin/psql -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o keywords.o keywords.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv createdb.o common.o dumputils.o kwlookup.o keywords.o -L../../../src/port -lpgport -L../../../src/interfaces/libpq -lpq -L../../../src/port  -Wl,-rpath,'/usr/local/postgresql-9.0.2/lib',--enable-new-dtags  -lpgport -lz -lreadline -ltermcap -lcrypt -ldl -lm  -o createdb
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/bin/pg_dump -I../../../src/bin/psql -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o createlang.o createlang.c
rm -f print.c && ln -s ../../../src/bin/psql/print.c .
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/bin/pg_dump -I../../../src/bin/psql -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o print.o print.c
rm -f mbprint.c && ln -s ../../../src/bin/psql/mbprint.c .
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/bin/pg_dump -I../../../src/bin/psql -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o mbprint.o mbprint.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv createlang.o common.o print.o mbprint.o -L../../../src/port -lpgport -L../../../src/interfaces/libpq -lpq -L../../../src/port  -Wl,-rpath,'/usr/local/postgresql-9.0.2/lib',--enable-new-dtags  -lpgport -lz -lreadline -ltermcap -lcrypt -ldl -lm  -o createlang
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/bin/pg_dump -I../../../src/bin/psql -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o createuser.o createuser.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv createuser.o common.o dumputils.o kwlookup.o keywords.o -L../../../src/port -lpgport -L../../../src/interfaces/libpq -lpq -L../../../src/port  -Wl,-rpath,'/usr/local/postgresql-9.0.2/lib',--enable-new-dtags  -lpgport -lz -lreadline -ltermcap -lcrypt -ldl -lm  -o createuser
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/bin/pg_dump -I../../../src/bin/psql -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o dropdb.o dropdb.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv dropdb.o common.o dumputils.o kwlookup.o keywords.o -L../../../src/port -lpgport -L../../../src/interfaces/libpq -lpq -L../../../src/port  -Wl,-rpath,'/usr/local/postgresql-9.0.2/lib',--enable-new-dtags  -lpgport -lz -lreadline -ltermcap -lcrypt -ldl -lm  -o dropdb
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/bin/pg_dump -I../../../src/bin/psql -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o droplang.o droplang.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv droplang.o common.o print.o mbprint.o -L../../../src/port -lpgport -L../../../src/interfaces/libpq -lpq -L../../../src/port  -Wl,-rpath,'/usr/local/postgresql-9.0.2/lib',--enable-new-dtags  -lpgport -lz -lreadline -ltermcap -lcrypt -ldl -lm  -o droplang
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/bin/pg_dump -I../../../src/bin/psql -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o dropuser.o dropuser.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv dropuser.o common.o dumputils.o kwlookup.o keywords.o -L../../../src/port -lpgport -L../../../src/interfaces/libpq -lpq -L../../../src/port  -Wl,-rpath,'/usr/local/postgresql-9.0.2/lib',--enable-new-dtags  -lpgport -lz -lreadline -ltermcap -lcrypt -ldl -lm  -o dropuser
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/bin/pg_dump -I../../../src/bin/psql -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o clusterdb.o clusterdb.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv clusterdb.o common.o dumputils.o kwlookup.o keywords.o -L../../../src/port -lpgport -L../../../src/interfaces/libpq -lpq -L../../../src/port  -Wl,-rpath,'/usr/local/postgresql-9.0.2/lib',--enable-new-dtags  -lpgport -lz -lreadline -ltermcap -lcrypt -ldl -lm  -o clusterdb
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/bin/pg_dump -I../../../src/bin/psql -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o vacuumdb.o vacuumdb.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv vacuumdb.o common.o -L../../../src/port -lpgport -L../../../src/interfaces/libpq -lpq -L../../../src/port  -Wl,-rpath,'/usr/local/postgresql-9.0.2/lib',--enable-new-dtags  -lpgport -lz -lreadline -ltermcap -lcrypt -ldl -lm  -o vacuumdb
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/bin/pg_dump -I../../../src/bin/psql -I../../../src/interfaces/libpq -I../../../src/include -D_GNU_SOURCE   -c -o reindexdb.o reindexdb.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv reindexdb.o common.o dumputils.o kwlookup.o keywords.o -L../../../src/port -lpgport -L../../../src/interfaces/libpq -lpq -L../../../src/port  -Wl,-rpath,'/usr/local/postgresql-9.0.2/lib',--enable-new-dtags  -lpgport -lz -lreadline -ltermcap -lcrypt -ldl -lm  -o reindexdb
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/bin/scripts'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/bin/pg_config'
make -C ../../../src/port all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/port'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/port'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE  -DVAL_CONFIGURE="\"'--prefix=/usr/local/postgresql-9.0.2'\"" -DVAL_CC="\"gcc\"" -DVAL_CPPFLAGS="\"-D_GNU_SOURCE\"" -DVAL_CFLAGS="\"-O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv\"" -DVAL_CFLAGS_SL="\"-fpic\"" -DVAL_LDFLAGS="\"-Wl,-rpath,'/usr/local/postgresql-9.0.2/lib',--enable-new-dtags\"" -DVAL_LDFLAGS_EX="\"\"" -DVAL_LDFLAGS_SL="\"\"" -DVAL_LIBS="\"-lpgport -lz -lreadline -ltermcap -lcrypt -ldl -lm \""  -c -o pg_config.o pg_config.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv pg_config.o  -L../../../src/port  -Wl,-rpath,'/usr/local/postgresql-9.0.2/lib',--enable-new-dtags  -lpgport -lz -lreadline -ltermcap -lcrypt -ldl -lm  -o pg_config
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/bin/pg_config'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/bin/pg_controldata'
make -C ../../../src/port all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/port'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/port'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o pg_controldata.o pg_controldata.c
rm -f pg_crc.c && ln -s ../../../src/backend/utils/hash/pg_crc.c .
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o pg_crc.o pg_crc.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv pg_controldata.o pg_crc.o -L../../../src/port  -Wl,-rpath,'/usr/local/postgresql-9.0.2/lib',--enable-new-dtags  -lpgport -lz -lreadline -ltermcap -lcrypt -ldl -lm  -o pg_controldata
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/bin/pg_controldata'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/bin/pg_resetxlog'
make -C ../../../src/port all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/port'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/port'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o pg_resetxlog.o pg_resetxlog.c
rm -f pg_crc.c && ln -s ../../../src/backend/utils/hash/pg_crc.c .
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -I../../../src/include -D_GNU_SOURCE   -c -o pg_crc.o pg_crc.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv pg_resetxlog.o pg_crc.o -L../../../src/port  -Wl,-rpath,'/usr/local/postgresql-9.0.2/lib',--enable-new-dtags  -lpgport -lz -lreadline -ltermcap -lcrypt -ldl -lm  -o pg_resetxlog
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/bin/pg_resetxlog'
make[2]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/bin'
make -C pl all
make[2]: Entering directory `/usr/local/src/postgresql-9.0.2/src/pl'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/pl/plpgsql'
make -C src all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/pl/plpgsql/src'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I../../../../src/include -D_GNU_SOURCE   -c -o pl_gram.o pl_gram.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I../../../../src/include -D_GNU_SOURCE   -c -o pl_handler.o pl_handler.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I../../../../src/include -D_GNU_SOURCE   -c -o pl_comp.o pl_comp.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I../../../../src/include -D_GNU_SOURCE   -c -o pl_exec.o pl_exec.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I../../../../src/include -D_GNU_SOURCE   -c -o pl_funcs.o pl_funcs.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I. -I. -I../../../../src/include -D_GNU_SOURCE   -c -o pl_scanner.o pl_scanner.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -shared -o plpgsql.so pl_gram.o pl_handler.o pl_comp.o pl_exec.o pl_funcs.o pl_scanner.o -L../../../../src/port
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/pl/plpgsql/src'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/pl/plpgsql'
make[2]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/pl'
make -C makefiles all
make[2]: Entering directory `/usr/local/src/postgresql-9.0.2/src/makefiles'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/makefiles'
make -C test/regress all
make[2]: Entering directory `/usr/local/src/postgresql-9.0.2/src/test/regress'
make -C ../../../src/port all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/port'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/port'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include -D_GNU_SOURCE  -I../../../src/port '-DHOST_TUPLE="x86_64-unknown-linux-gnu"' '-DMAKEPROG="make"' '-DSHELLPROG="/bin/sh"' '-DDLSUFFIX=".so"' -c -o pg_regress.o pg_regress.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include -D_GNU_SOURCE   -c -o pg_regress_main.o pg_regress_main.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic pg_regress.o pg_regress_main.o -L../../../src/port  -Wl,-rpath,'/usr/local/postgresql-9.0.2/lib',--enable-new-dtags  -lpgport -lz -lreadline -ltermcap -lcrypt -ldl -lm  -o pg_regress
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -I../../../src/include -D_GNU_SOURCE   -c -o regress.o regress.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -shared -o regress.so regress.o -L../../../src/port  -Wl,-rpath,'/usr/local/postgresql-9.0.2/lib',--enable-new-dtags
make -C ../../../contrib/spi refint.so
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/contrib/spi'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -DREFINT_VERBOSE -I. -I. -I../../src/include -D_GNU_SOURCE   -c -o refint.o refint.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -L../../src/port  -Wl,-rpath,'/usr/local/postgresql-9.0.2/lib',--enable-new-dtags -L../../src/port -lpgport  -shared -o refint.so refint.o
rm refint.o
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/contrib/spi'
cp ../../../contrib/spi/refint.so refint.so
make -C ../../../contrib/spi autoinc.so
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/contrib/spi'
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -DREFINT_VERBOSE -I. -I. -I../../src/include -D_GNU_SOURCE   -c -o autoinc.o autoinc.c
gcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -fno-strict-aliasing -fwrapv -fpic -L../../src/port  -Wl,-rpath,'/usr/local/postgresql-9.0.2/lib',--enable-new-dtags -L../../src/port -lpgport  -shared -o autoinc.so autoinc.o
rm autoinc.o
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/contrib/spi'
cp ../../../contrib/spi/autoinc.so autoinc.so
rm -rf ./testtablespace
mkdir ./testtablespace
make[2]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/test/regress'
make[1]: Leaving directory `/usr/local/src/postgresql-9.0.2/src'
make -C config all
make[1]: Entering directory `/usr/local/src/postgresql-9.0.2/config'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/usr/local/src/postgresql-9.0.2/config'
All of PostgreSQL successfully made. Ready to install.
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]# su
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]# make install
make -C src install
make[1]: Entering directory `/usr/local/src/postgresql-9.0.2/src'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib/pgxs/src'
/bin/sh ../config/install-sh -c -m 644 Makefile.global '/usr/local/postgresql-9.0.2/lib/pgxs/src/Makefile.global'
/bin/sh ../config/install-sh -c -m 644 Makefile.port '/usr/local/postgresql-9.0.2/lib/pgxs/src/Makefile.port'
/bin/sh ../config/install-sh -c -m 644 ./Makefile.shlib '/usr/local/postgresql-9.0.2/lib/pgxs/src/Makefile.shlib'
/bin/sh ../config/install-sh -c -m 644 ./nls-global.mk '/usr/local/postgresql-9.0.2/lib/pgxs/src/nls-global.mk'
make -C port install
make[2]: Entering directory `/usr/local/src/postgresql-9.0.2/src/port'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../config/install-sh -c -m 644  libpgport.a '/usr/local/postgresql-9.0.2/lib/libpgport.a'
make[2]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/port'
make -C timezone install
make[2]: Entering directory `/usr/local/src/postgresql-9.0.2/src/timezone'
make -C ../../src/port all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/port'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/port'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/share'
./zic -d '/usr/local/postgresql-9.0.2/share/timezone' -p 'US/Eastern' ./data/africa ./data/antarctica ./data/asia ./data/australasia ./data/europe ./data/northamerica ./data/southamerica ./data/pacificnew ./data/etcetera ./data/factory ./data/backward ./data/systemv ./data/solar87 ./data/solar88 ./data/solar89
make -C tznames install
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/timezone/tznames'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/share/timezonesets'
/bin/sh ../../../config/install-sh -c -m 644 ./Africa.txt ./America.txt ./Antarctica.txt ./Asia.txt ./Atlantic.txt ./Australia.txt ./Etc.txt ./Europe.txt ./Indian.txt ./Pacific.txt '/usr/local/postgresql-9.0.2/share/timezonesets'
/bin/sh ../../../config/install-sh -c -m 644 ./Default ./Australia ./India '/usr/local/postgresql-9.0.2/share/timezonesets'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/timezone/tznames'
make[2]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/timezone'
make -C backend install
make[2]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend'
make -C ../../src/port all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/port'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/port'
make -C catalog schemapg.h
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/catalog'
make[3]: `schemapg.h' is up to date.
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/catalog'
make -C access all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/access'
make -C common all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/access/common'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/access/common'
make -C gist all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/access/gist'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/access/gist'
make -C hash all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/access/hash'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/access/hash'
make -C heap all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/access/heap'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/access/heap'
make -C index all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/access/index'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/access/index'
make -C nbtree all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/access/nbtree'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/access/nbtree'
make -C transam all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/access/transam'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/access/transam'
make -C gin all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/access/gin'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/access/gin'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/access'
make -C bootstrap all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/bootstrap'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/bootstrap'
make -C catalog all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/catalog'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/catalog'
make -C parser all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/parser'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/parser'
make -C commands all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/commands'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/commands'
make -C executor all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/executor'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/executor'
make -C foreign all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/foreign'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/foreign'
make -C lib all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/lib'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/lib'
make -C libpq all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/libpq'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/libpq'
make -C main all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/main'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/main'
make -C nodes all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/nodes'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/nodes'
make -C optimizer all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/optimizer'
make -C geqo all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/optimizer/geqo'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/optimizer/geqo'
make -C path all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/optimizer/path'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/optimizer/path'
make -C plan all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/optimizer/plan'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/optimizer/plan'
make -C prep all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/optimizer/prep'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/optimizer/prep'
make -C util all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/optimizer/util'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/optimizer/util'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/optimizer'
make -C port all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/port'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/port'
make -C postmaster all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/postmaster'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/postmaster'
make -C regex all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/regex'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/regex'
make -C replication all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/replication'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/replication'
make -C rewrite all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/rewrite'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/rewrite'
make -C storage all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/storage'
make -C buffer all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/storage/buffer'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/storage/buffer'
make -C file all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/storage/file'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/storage/file'
make -C freespace all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/storage/freespace'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/storage/freespace'
make -C ipc all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/storage/ipc'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/storage/ipc'
make -C large_object all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/storage/large_object'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/storage/large_object'
make -C lmgr all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/storage/lmgr'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/storage/lmgr'
make -C page all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/storage/page'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/storage/page'
make -C smgr all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/storage/smgr'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/storage/smgr'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/storage'
make -C tcop all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/tcop'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/tcop'
make -C tsearch all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/tsearch'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/tsearch'
make -C utils all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils'
make -C adt all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/adt'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/adt'
make -C cache all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/cache'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/cache'
make -C error all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/error'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/error'
make -C fmgr all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/fmgr'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/fmgr'
make -C hash all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/hash'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/hash'
make -C init all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/init'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/init'
make -C mb all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb'
make -C misc all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/misc'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/misc'
make -C mmgr all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mmgr'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mmgr'
make -C resowner all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/resowner'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/resowner'
make -C sort all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/sort'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/sort'
make -C time all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/time'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/time'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils'
make -C ../../src/timezone all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/timezone'
make -C ../../src/port all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/port'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/port'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/timezone'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/bin' '/usr/local/postgresql-9.0.2/share'
/bin/sh ../../config/install-sh -c  postgres '/usr/local/postgresql-9.0.2/bin/postgres'
ln -s postgres '/usr/local/postgresql-9.0.2/bin/postmaster'
make -C catalog install-data
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/catalog'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/share'
/bin/sh ../../../config/install-sh -c -m 644 `for f in ./postgres.bki; do test -r $f && echo $f && break; done` '/usr/local/postgresql-9.0.2/share/postgres.bki'
/bin/sh ../../../config/install-sh -c -m 644 `for f in ./postgres.description; do test -r $f && echo $f && break; done` '/usr/local/postgresql-9.0.2/share/postgres.description'
/bin/sh ../../../config/install-sh -c -m 644 `for f in ./postgres.shdescription; do test -r $f && echo $f && break; done` '/usr/local/postgresql-9.0.2/share/postgres.shdescription'
/bin/sh ../../../config/install-sh -c -m 644 ./system_views.sql '/usr/local/postgresql-9.0.2/share/system_views.sql'
/bin/sh ../../../config/install-sh -c -m 644 ./information_schema.sql '/usr/local/postgresql-9.0.2/share/information_schema.sql'
/bin/sh ../../../config/install-sh -c -m 644 ./sql_features.txt '/usr/local/postgresql-9.0.2/share/sql_features.txt'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/catalog'
make -C tsearch install-data
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/tsearch'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/share' '/usr/local/postgresql-9.0.2/share/tsearch_data'
/bin/sh ../../../config/install-sh -c -m 644 ./synonym_sample.syn ./thesaurus_sample.ths ./hunspell_sample.affix ./ispell_sample.affix ./ispell_sample.dict '/usr/local/postgresql-9.0.2/share/tsearch_data/'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/tsearch'
/bin/sh ../../config/install-sh -c -m 644 ./libpq/pg_hba.conf.sample '/usr/local/postgresql-9.0.2/share/pg_hba.conf.sample'
/bin/sh ../../config/install-sh -c -m 644 ./libpq/pg_ident.conf.sample '/usr/local/postgresql-9.0.2/share/pg_ident.conf.sample'
/bin/sh ../../config/install-sh -c -m 644 ./utils/misc/postgresql.conf.sample '/usr/local/postgresql-9.0.2/share/postgresql.conf.sample'
/bin/sh ../../config/install-sh -c -m 644 ./access/transam/recovery.conf.sample '/usr/local/postgresql-9.0.2/share/recovery.conf.sample'
make[2]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend'
make -C backend/utils/mb/conversion_procs install
make[2]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/share' '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../../../../config/install-sh -c -m 644 conversion_create.sql '/usr/local/postgresql-9.0.2/share'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/ascii_and_mic'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../../../../../config/install-sh -c -m 755  ascii_and_mic.so '/usr/local/postgresql-9.0.2/lib/ascii_and_mic.so'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/ascii_and_mic'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/cyrillic_and_mic'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../../../../../config/install-sh -c -m 755  cyrillic_and_mic.so '/usr/local/postgresql-9.0.2/lib/cyrillic_and_mic.so'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/cyrillic_and_mic'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/euc_cn_and_mic'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../../../../../config/install-sh -c -m 755  euc_cn_and_mic.so '/usr/local/postgresql-9.0.2/lib/euc_cn_and_mic.so'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/euc_cn_and_mic'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/euc_jp_and_sjis'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../../../../../config/install-sh -c -m 755  euc_jp_and_sjis.so '/usr/local/postgresql-9.0.2/lib/euc_jp_and_sjis.so'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/euc_jp_and_sjis'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/euc_kr_and_mic'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../../../../../config/install-sh -c -m 755  euc_kr_and_mic.so '/usr/local/postgresql-9.0.2/lib/euc_kr_and_mic.so'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/euc_kr_and_mic'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/euc_tw_and_big5'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../../../../../config/install-sh -c -m 755  euc_tw_and_big5.so '/usr/local/postgresql-9.0.2/lib/euc_tw_and_big5.so'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/euc_tw_and_big5'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/latin2_and_win1250'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../../../../../config/install-sh -c -m 755  latin2_and_win1250.so '/usr/local/postgresql-9.0.2/lib/latin2_and_win1250.so'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/latin2_and_win1250'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/latin_and_mic'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../../../../../config/install-sh -c -m 755  latin_and_mic.so '/usr/local/postgresql-9.0.2/lib/latin_and_mic.so'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/latin_and_mic'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_ascii'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../../../../../config/install-sh -c -m 755  utf8_and_ascii.so '/usr/local/postgresql-9.0.2/lib/utf8_and_ascii.so'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_ascii'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_big5'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../../../../../config/install-sh -c -m 755  utf8_and_big5.so '/usr/local/postgresql-9.0.2/lib/utf8_and_big5.so'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_big5'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_cyrillic'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../../../../../config/install-sh -c -m 755  utf8_and_cyrillic.so '/usr/local/postgresql-9.0.2/lib/utf8_and_cyrillic.so'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_cyrillic'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_euc_cn'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../../../../../config/install-sh -c -m 755  utf8_and_euc_cn.so '/usr/local/postgresql-9.0.2/lib/utf8_and_euc_cn.so'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_euc_cn'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_euc_jp'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../../../../../config/install-sh -c -m 755  utf8_and_euc_jp.so '/usr/local/postgresql-9.0.2/lib/utf8_and_euc_jp.so'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_euc_jp'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_euc_kr'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../../../../../config/install-sh -c -m 755  utf8_and_euc_kr.so '/usr/local/postgresql-9.0.2/lib/utf8_and_euc_kr.so'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_euc_kr'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_euc_tw'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../../../../../config/install-sh -c -m 755  utf8_and_euc_tw.so '/usr/local/postgresql-9.0.2/lib/utf8_and_euc_tw.so'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_euc_tw'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_gb18030'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../../../../../config/install-sh -c -m 755  utf8_and_gb18030.so '/usr/local/postgresql-9.0.2/lib/utf8_and_gb18030.so'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_gb18030'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_gbk'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../../../../../config/install-sh -c -m 755  utf8_and_gbk.so '/usr/local/postgresql-9.0.2/lib/utf8_and_gbk.so'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_gbk'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_iso8859'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../../../../../config/install-sh -c -m 755  utf8_and_iso8859.so '/usr/local/postgresql-9.0.2/lib/utf8_and_iso8859.so'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_iso8859'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_iso8859_1'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../../../../../config/install-sh -c -m 755  utf8_and_iso8859_1.so '/usr/local/postgresql-9.0.2/lib/utf8_and_iso8859_1.so'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_iso8859_1'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_johab'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../../../../../config/install-sh -c -m 755  utf8_and_johab.so '/usr/local/postgresql-9.0.2/lib/utf8_and_johab.so'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_johab'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_sjis'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../../../../../config/install-sh -c -m 755  utf8_and_sjis.so '/usr/local/postgresql-9.0.2/lib/utf8_and_sjis.so'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_sjis'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_win'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../../../../../config/install-sh -c -m 755  utf8_and_win.so '/usr/local/postgresql-9.0.2/lib/utf8_and_win.so'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_win'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_uhc'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../../../../../config/install-sh -c -m 755  utf8_and_uhc.so '/usr/local/postgresql-9.0.2/lib/utf8_and_uhc.so'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_uhc'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_euc2004'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../../../../../config/install-sh -c -m 755  utf8_and_euc2004.so '/usr/local/postgresql-9.0.2/lib/utf8_and_euc2004.so'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_euc2004'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_sjis2004'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../../../../../config/install-sh -c -m 755  utf8_and_sjis2004.so '/usr/local/postgresql-9.0.2/lib/utf8_and_sjis2004.so'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/utf8_and_sjis2004'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/euc2004_sjis2004'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../../../../../config/install-sh -c -m 755  euc2004_sjis2004.so '/usr/local/postgresql-9.0.2/lib/euc2004_sjis2004.so'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs/euc2004_sjis2004'
make[2]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/utils/mb/conversion_procs'
make -C backend/snowball install
make[2]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/snowball'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/share' '/usr/local/postgresql-9.0.2/share/tsearch_data'
/bin/sh ../../../config/install-sh -c -m 755  dict_snowball.so '/usr/local/postgresql-9.0.2/lib/dict_snowball.so'
/bin/sh ../../../config/install-sh -c -m 644 snowball_create.sql '/usr/local/postgresql-9.0.2/share'
make[2]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/snowball'
make -C include install
make[2]: Entering directory `/usr/local/src/postgresql-9.0.2/src/include'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/include/libpq' '/usr/local/postgresql-9.0.2/include/internal/libpq'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/include/server'/access '/usr/local/postgresql-9.0.2/include/server'/bootstrap '/usr/local/postgresql-9.0.2/include/server'/catalog '/usr/local/postgresql-9.0.2/include/server'/commands '/usr/local/postgresql-9.0.2/include/server'/executor '/usr/local/postgresql-9.0.2/include/server'/foreign '/usr/local/postgresql-9.0.2/include/server'/lib '/usr/local/postgresql-9.0.2/include/server'/libpq '/usr/local/postgresql-9.0.2/include/server'/mb '/usr/local/postgresql-9.0.2/include/server'/nodes '/usr/local/postgresql-9.0.2/include/server'/optimizer '/usr/local/postgresql-9.0.2/include/server'/parser '/usr/local/postgresql-9.0.2/include/server'/postmaster '/usr/local/postgresql-9.0.2/include/server'/regex '/usr/local/postgresql-9.0.2/include/server'/replication '/usr/local/postgresql-9.0.2/include/server'/rewrite '/usr/local/postgresql-9.0.2/include/server'/storage '/usr/local/postgresql-9.0.2/include/server'/tcop '/usr/local/postgresql-9.0.2/include/server'/snowball '/usr/local/postgresql-9.0.2/include/server'/snowball/libstemmer '/usr/local/postgresql-9.0.2/include/server'/tsearch '/usr/local/postgresql-9.0.2/include/server'/tsearch/dicts '/usr/local/postgresql-9.0.2/include/server'/utils '/usr/local/postgresql-9.0.2/include/server'/port '/usr/local/postgresql-9.0.2/include/server'/port/win32 '/usr/local/postgresql-9.0.2/include/server'/port/win32_msvc '/usr/local/postgresql-9.0.2/include/server'/port/win32_msvc/sys '/usr/local/postgresql-9.0.2/include/server'/port/win32/arpa '/usr/local/postgresql-9.0.2/include/server'/port/win32/netinet '/usr/local/postgresql-9.0.2/include/server'/port/win32/sys '/usr/local/postgresql-9.0.2/include/server'/portability
/bin/sh ../../config/install-sh -c -m 644 ./postgres_ext.h   '/usr/local/postgresql-9.0.2/include'
/bin/sh ../../config/install-sh -c -m 644 ./libpq/libpq-fs.h '/usr/local/postgresql-9.0.2/include/libpq'
/bin/sh ../../config/install-sh -c -m 644 pg_config.h    '/usr/local/postgresql-9.0.2/include'
/bin/sh ../../config/install-sh -c -m 644 pg_config_os.h '/usr/local/postgresql-9.0.2/include'
/bin/sh ../../config/install-sh -c -m 644 ./pg_config_manual.h '/usr/local/postgresql-9.0.2/include'
/bin/sh ../../config/install-sh -c -m 644 ./c.h            '/usr/local/postgresql-9.0.2/include/internal'
/bin/sh ../../config/install-sh -c -m 644 ./port.h         '/usr/local/postgresql-9.0.2/include/internal'
/bin/sh ../../config/install-sh -c -m 644 ./postgres_fe.h  '/usr/local/postgresql-9.0.2/include/internal'
/bin/sh ../../config/install-sh -c -m 644 ./libpq/pqcomm.h '/usr/local/postgresql-9.0.2/include/internal/libpq'
/bin/sh ../../config/install-sh -c -m 644 pg_config.h    '/usr/local/postgresql-9.0.2/include/server'
/bin/sh ../../config/install-sh -c -m 644 pg_config_os.h '/usr/local/postgresql-9.0.2/include/server'
/bin/sh ../../config/install-sh -c -m 644 utils/fmgroids.h '/usr/local/postgresql-9.0.2/include/server/utils'
cp ./*.h '/usr/local/postgresql-9.0.2/include/server'/ || exit; \
        chmod 644 '/usr/local/postgresql-9.0.2/include/server'/*.h  || exit; \
        for dir in access bootstrap catalog commands executor foreign lib libpq mb nodes optimizer parser postmaster regex replication rewrite storage tcop snowball snowball/libstemmer tsearch tsearch/dicts utils port port/win32 port/win32_msvc port/win32_msvc/sys port/win32/arpa port/win32/netinet port/win32/sys portability; do \
          cp ./$dir/*.h '/usr/local/postgresql-9.0.2/include/server'/$dir/ || exit; \
          chmod 644 '/usr/local/postgresql-9.0.2/include/server'/$dir/*.h  || exit; \
        done
make[2]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/include'
make -C interfaces install
make[2]: Entering directory `/usr/local/src/postgresql-9.0.2/src/interfaces'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/interfaces/libpq'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/include' '/usr/local/postgresql-9.0.2/include/internal'
/bin/sh ../../../config/install-sh -c -m 755  libpq.so.5.3 '/usr/local/postgresql-9.0.2/lib/libpq.so.5.3'
cd '/usr/local/postgresql-9.0.2/lib' && \
        rm -f libpq.so.5 && \
        ln -s libpq.so.5.3 libpq.so.5
cd '/usr/local/postgresql-9.0.2/lib' && \
        rm -f libpq.so && \
        ln -s libpq.so.5.3 libpq.so
/bin/sh ../../../config/install-sh -c -m 644  libpq.a '/usr/local/postgresql-9.0.2/lib/libpq.a'
/bin/sh ../../../config/install-sh -c -m 644 ./libpq-fe.h '/usr/local/postgresql-9.0.2/include'
/bin/sh ../../../config/install-sh -c -m 644 ./libpq-events.h '/usr/local/postgresql-9.0.2/include'
/bin/sh ../../../config/install-sh -c -m 644 ./libpq-int.h '/usr/local/postgresql-9.0.2/include/internal'
/bin/sh ../../../config/install-sh -c -m 644 ./pqexpbuffer.h '/usr/local/postgresql-9.0.2/include/internal'
/bin/sh ../../../config/install-sh -c -m 644 ./pg_service.conf.sample '/usr/local/postgresql-9.0.2/share/pg_service.conf.sample'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/interfaces/libpq'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/interfaces/ecpg'
make -C include install
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/interfaces/ecpg/include'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/include' '/usr/local/postgresql-9.0.2/include/informix/esql'
/bin/sh ../../../../config/install-sh -c -m 644 ./ecpgerrno.h ./ecpglib.h ./ecpgtype.h ./sqlca.h ./sql3types.h ./ecpg_informix.h ./pgtypes_error.h ./pgtypes_numeric.h ./pgtypes_timestamp.h ./pgtypes_date.h ./pgtypes_interval.h ./sqlda.h ./sqlda-compat.h ./sqlda-native.h '/usr/local/postgresql-9.0.2/include/'
/bin/sh ../../../../config/install-sh -c -m 644 ./datetime.h ./decimal.h ./sqltypes.h '/usr/local/postgresql-9.0.2/include/informix/esql/'
/bin/sh ../../../../config/install-sh -c -m 644 ../../../../src/interfaces/ecpg/include/ecpg_config.h '/usr/local/postgresql-9.0.2/include'
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/interfaces/ecpg/include'
make -C pgtypeslib install
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/interfaces/ecpg/pgtypeslib'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../../../config/install-sh -c -m 755  libpgtypes.so.3.1 '/usr/local/postgresql-9.0.2/lib/libpgtypes.so.3.1'
cd '/usr/local/postgresql-9.0.2/lib' && \
        rm -f libpgtypes.so.3 && \
        ln -s libpgtypes.so.3.1 libpgtypes.so.3
cd '/usr/local/postgresql-9.0.2/lib' && \
        rm -f libpgtypes.so && \
        ln -s libpgtypes.so.3.1 libpgtypes.so
/bin/sh ../../../../config/install-sh -c -m 644  libpgtypes.a '/usr/local/postgresql-9.0.2/lib/libpgtypes.a'
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/interfaces/ecpg/pgtypeslib'
make -C ecpglib install
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/interfaces/ecpg/ecpglib'
make -C ../../../../src/interfaces/libpq all
make[5]: Entering directory `/usr/local/src/postgresql-9.0.2/src/interfaces/libpq'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/interfaces/libpq'
make -C ../../../../src/interfaces/ecpg/pgtypeslib all
make[5]: Entering directory `/usr/local/src/postgresql-9.0.2/src/interfaces/ecpg/pgtypeslib'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/interfaces/ecpg/pgtypeslib'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../../../config/install-sh -c -m 755  libecpg.so.6.2 '/usr/local/postgresql-9.0.2/lib/libecpg.so.6.2'
cd '/usr/local/postgresql-9.0.2/lib' && \
        rm -f libecpg.so.6 && \
        ln -s libecpg.so.6.2 libecpg.so.6
cd '/usr/local/postgresql-9.0.2/lib' && \
        rm -f libecpg.so && \
        ln -s libecpg.so.6.2 libecpg.so
/bin/sh ../../../../config/install-sh -c -m 644  libecpg.a '/usr/local/postgresql-9.0.2/lib/libecpg.a'
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/interfaces/ecpg/ecpglib'
make -C compatlib install
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/interfaces/ecpg/compatlib'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../../../config/install-sh -c -m 755  libecpg_compat.so.3.2 '/usr/local/postgresql-9.0.2/lib/libecpg_compat.so.3.2'
cd '/usr/local/postgresql-9.0.2/lib' && \
        rm -f libecpg_compat.so.3 && \
        ln -s libecpg_compat.so.3.2 libecpg_compat.so.3
cd '/usr/local/postgresql-9.0.2/lib' && \
        rm -f libecpg_compat.so && \
        ln -s libecpg_compat.so.3.2 libecpg_compat.so
/bin/sh ../../../../config/install-sh -c -m 644  libecpg_compat.a '/usr/local/postgresql-9.0.2/lib/libecpg_compat.a'
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/interfaces/ecpg/compatlib'
make -C preproc install
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/interfaces/ecpg/preproc'
make -C ../../../../src/port all
make[5]: Entering directory `/usr/local/src/postgresql-9.0.2/src/port'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/port'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/bin'
/bin/sh ../../../../config/install-sh -c  ecpg '/usr/local/postgresql-9.0.2/bin'
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/interfaces/ecpg/preproc'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/interfaces/ecpg'
make[2]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/interfaces'
make -C backend/replication/libpqwalreceiver install
make[2]: Entering directory `/usr/local/src/postgresql-9.0.2/src/backend/replication/libpqwalreceiver'
make -C ../../../../src/interfaces/libpq all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/interfaces/libpq'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/interfaces/libpq'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../../../config/install-sh -c -m 755  libpqwalreceiver.so '/usr/local/postgresql-9.0.2/lib/libpqwalreceiver.so'
make[2]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/backend/replication/libpqwalreceiver'
make -C bin install
make[2]: Entering directory `/usr/local/src/postgresql-9.0.2/src/bin'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/bin/initdb'
make -C ../../../src/port all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/port'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/port'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/bin'
/bin/sh ../../../config/install-sh -c  initdb '/usr/local/postgresql-9.0.2/bin/initdb'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/bin/initdb'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/bin/pg_ctl'
make -C ../../../src/interfaces/libpq all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/interfaces/libpq'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/interfaces/libpq'
make -C ../../../src/port all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/port'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/port'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/bin'
/bin/sh ../../../config/install-sh -c  pg_ctl '/usr/local/postgresql-9.0.2/bin/pg_ctl'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/bin/pg_ctl'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/bin/pg_dump'
make -C ../../../src/interfaces/libpq all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/interfaces/libpq'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/interfaces/libpq'
make -C ../../../src/port all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/port'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/port'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/bin'
/bin/sh ../../../config/install-sh -c  pg_dump '/usr/local/postgresql-9.0.2/bin'/pg_dump
/bin/sh ../../../config/install-sh -c  pg_restore '/usr/local/postgresql-9.0.2/bin'/pg_restore
/bin/sh ../../../config/install-sh -c  pg_dumpall '/usr/local/postgresql-9.0.2/bin'/pg_dumpall
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/bin/pg_dump'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/bin/psql'
make -C ../../../src/interfaces/libpq all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/interfaces/libpq'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/interfaces/libpq'
make -C ../../../src/port all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/port'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/port'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/bin'
/bin/sh ../../../config/install-sh -c  psql '/usr/local/postgresql-9.0.2/bin/psql'
/bin/sh ../../../config/install-sh -c -m 644 ./psqlrc.sample '/usr/local/postgresql-9.0.2/share/psqlrc.sample'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/bin/psql'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/bin/scripts'
make -C ../../../src/interfaces/libpq all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/interfaces/libpq'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/interfaces/libpq'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/bin'
/bin/sh ../../../config/install-sh -c  createdb   '/usr/local/postgresql-9.0.2/bin'/createdb
/bin/sh ../../../config/install-sh -c  dropdb     '/usr/local/postgresql-9.0.2/bin'/dropdb
/bin/sh ../../../config/install-sh -c  createlang '/usr/local/postgresql-9.0.2/bin'/createlang
/bin/sh ../../../config/install-sh -c  droplang   '/usr/local/postgresql-9.0.2/bin'/droplang
/bin/sh ../../../config/install-sh -c  createuser '/usr/local/postgresql-9.0.2/bin'/createuser
/bin/sh ../../../config/install-sh -c  dropuser   '/usr/local/postgresql-9.0.2/bin'/dropuser
/bin/sh ../../../config/install-sh -c  clusterdb  '/usr/local/postgresql-9.0.2/bin'/clusterdb
/bin/sh ../../../config/install-sh -c  vacuumdb   '/usr/local/postgresql-9.0.2/bin'/vacuumdb
/bin/sh ../../../config/install-sh -c  reindexdb  '/usr/local/postgresql-9.0.2/bin'/reindexdb
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/bin/scripts'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/bin/pg_config'
make -C ../../../src/port all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/port'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/port'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/bin'
/bin/sh ../../../config/install-sh -c -m 755 pg_config '/usr/local/postgresql-9.0.2/bin/pg_config'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/bin/pg_config'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/bin/pg_controldata'
make -C ../../../src/port all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/port'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/port'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/bin'
/bin/sh ../../../config/install-sh -c  pg_controldata '/usr/local/postgresql-9.0.2/bin/pg_controldata'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/bin/pg_controldata'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/bin/pg_resetxlog'
make -C ../../../src/port all
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/port'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/port'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/bin'
/bin/sh ../../../config/install-sh -c  pg_resetxlog '/usr/local/postgresql-9.0.2/bin/pg_resetxlog'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/bin/pg_resetxlog'
make[2]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/bin'
make -C pl install
make[2]: Entering directory `/usr/local/src/postgresql-9.0.2/src/pl'
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/pl/plpgsql'
make -C src install
make[4]: Entering directory `/usr/local/src/postgresql-9.0.2/src/pl/plpgsql/src'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib'
/bin/sh ../../../../config/install-sh -c -m 755  plpgsql.so '/usr/local/postgresql-9.0.2/lib/plpgsql.so'
make[4]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/pl/plpgsql/src'
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/pl/plpgsql'
make[2]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/pl'
make -C makefiles install
make[2]: Entering directory `/usr/local/src/postgresql-9.0.2/src/makefiles'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib/pgxs/src/makefiles'
/bin/sh ../../config/install-sh -c -m 644 ./pgxs.mk '/usr/local/postgresql-9.0.2/lib/pgxs/src/makefiles/'
make[2]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/makefiles'
make -C test/regress install
make[2]: Entering directory `/usr/local/src/postgresql-9.0.2/src/test/regress'
make -C ../../../src/port all
make[3]: Entering directory `/usr/local/src/postgresql-9.0.2/src/port'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/port'
rm -rf ./testtablespace
mkdir ./testtablespace
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib/pgxs/src/test/regress'
/bin/sh ../../../config/install-sh -c  pg_regress '/usr/local/postgresql-9.0.2/lib/pgxs/src/test/regress/pg_regress'
make[2]: Leaving directory `/usr/local/src/postgresql-9.0.2/src/test/regress'
make[1]: Leaving directory `/usr/local/src/postgresql-9.0.2/src'
make -C config install
make[1]: Entering directory `/usr/local/src/postgresql-9.0.2/config'
/bin/mkdir -p '/usr/local/postgresql-9.0.2/lib/pgxs/config'
/bin/sh ../config/install-sh -c -m 755 ./install-sh '/usr/local/postgresql-9.0.2/lib/pgxs/config/install-sh'
make[1]: Leaving directory `/usr/local/src/postgresql-9.0.2/config'
PostgreSQL installation complete.
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]# history | more
    1  vi /etc/sysconfig/network
    2  shutdown -r now
    3  vi /etc/modprobe.conf
    4  cd /etc/sysconfig/network-scripts/
    5  ls
    6  vi ifcfg-bond0
    7  clear
    8  vi ifcfg-bond0
    9  ls
   10  vi ifcfg-eth0
   11  vi ifcfg-eth1
   12  system-config-network
   13  ethtool eth0
   14  ethtool eth0
   15  ethtool eth0
   16  ethtool eth0
   17  ethtool eth0
   18  ethtool eth2
   19  ethtool eth1
   20  ethtool eth1
   21  ethtool eth0
   22  ethtool eth0
   23  ethtool eth0
   24  ethtool eth0
   25  ethtool eth1
   26  ethtool eth2
   27  ethtool eth2
   28  ethtool eth2
   29  ethtool eth0
   30  ethtool eth0
   31  ethtool eth2
   32  ethtool eth1
   33  ethtool eth0
   34  service network restart
   35  ethtool eth0
   36  ethtool eth1
   37  ethtool eth2
   38  ethtool eth2
   39  ethtool eth1
   40  ethtool eth1
   41  ethtool eth1
   42  ethtool eth1
   43  ethtool eth2
   44  ethtool eth2
   45  ethtool eth2
   46  ethtool eth1
   47  ethtool eth0
   48  ethtool eth2
   49  ethtool eth2
   50  ethtool eth2
   51  ethtool eth2
   52  ethtool eth2
   53  ethtool eth2
   54  ethtool eth2
   55  ethtool eth2
   56  ethtool eth0
   57  ethtool eth1
   58  ethtool eth2
   59  service restart network
   60  service network restart
   61  ethtool eth2
   62  ping 172.29.1.101
   63  ping 172.29.2.101
   64  ping 172.29.2.113
   65  vi ifcfg-eth2
   66  service network restart
   67  ethtool eth2
   68  ping 172.29.2.113
   69  ping 172.29.2.101
   70  exit
   71  ping 172.29.2.113
   72  cd /usr/loca
   73  cd /usr/local
   74  ls -la
   75  exit
   76  exit
   77  service sendmail stop
   78  chkconfig sendmail off
   79  service atd stop
   80  chkconfig atd off
   81  service portmap stop
   82  chkconfig portmap off
   83  service nfslock stop
   84  chkconfig nfslock off
   85  service cups stop
   86  chkconfig cups off
   87  service avahi-daemon stop
   88  chkconfig avahi-daemon off
   89  service rpcidmapd stop
   90  chkconfig rpcidmapd off
   91  service bluetooth stop
   92  chkconfig bluetooth off
   93  service pcscd stop
   94  chkconfig pcscd off
   95  service hidd stop
   96  chkconfig hidd off
   97  export http_proxy=http://172.29.1.142:80/
   98  export ftp_proxy =http://172.29.1.142:80/
   99  export HTTP_PROXY=http://172.29.1.142:80/
  100  export FTP_PROXY =http://172.29.1.142:80/
  101  yum checkconfig
  102  man yum
  103  yum check-update
  104  exit
  105  make install
  106  history | more
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]# su
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]# /usr/sbin/groupadd -g 5432 postgres
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]# /usr/sbin/useradd -g 5432 -u 5432 -c 'DBAdmin' -d /home/postgres -m -s /bin/bash postgres
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]# chown -R postgres.postgres postgresql-9.0.2
chown: cannot access `postgresql-9.0.2': No such file or directory
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]# cd /usr/local
[root@tmc_db02 local]# ls -la
total 100
drwxr-xr-x 13 root     root     4096 Mar 25 08:58 .
drwxr-xr-x 14 root     root     4096 Mar 23 21:47 ..
drwxr-xr-x  2 root     root     4096 Mar 11  2009 bin
drwxr-xr-x  2 root     root     4096 Mar 11  2009 etc
drwxr-xr-x  2 root     root     4096 Mar 11  2009 games
drwxr-xr-x  2 root     root     4096 Mar 11  2009 include
drwxr-xr-x  2 root     root     4096 Mar 11  2009 lib
drwxr-xr-x  2 root     root     4096 Mar 11  2009 lib64
drwxr-xr-x  2 root     root     4096 Mar 11  2009 libexec
drwxr-xr-x  6 root     root     4096 Mar 25 08:58 postgresql-9.0.2
drwxr-xr-x  2 root     root     4096 Mar 11  2009 sbin
drwxr-xr-x  4 root     root     4096 Mar 23 21:46 share
drwxr-xr-x  4 interdev interdev 4096 Mar 25 08:52 src
[root@tmc_db02 local]# chown -R postgres.postgres postgresql-9.0.2
[root@tmc_db02 local]#
[root@tmc_db02 local]#
[root@tmc_db02 local]# ls -la
total 100
drwxr-xr-x 13 root     root     4096 Mar 25 08:58 .
drwxr-xr-x 14 root     root     4096 Mar 23 21:47 ..
drwxr-xr-x  2 root     root     4096 Mar 11  2009 bin
drwxr-xr-x  2 root     root     4096 Mar 11  2009 etc
drwxr-xr-x  2 root     root     4096 Mar 11  2009 games
drwxr-xr-x  2 root     root     4096 Mar 11  2009 include
drwxr-xr-x  2 root     root     4096 Mar 11  2009 lib
drwxr-xr-x  2 root     root     4096 Mar 11  2009 lib64
drwxr-xr-x  2 root     root     4096 Mar 11  2009 libexec
drwxr-xr-x  6 postgres postgres 4096 Mar 25 08:58 postgresql-9.0.2
drwxr-xr-x  2 root     root     4096 Mar 11  2009 sbin
drwxr-xr-x  4 root     root     4096 Mar 23 21:46 share
drwxr-xr-x  4 interdev interdev 4096 Mar 25 08:52 src
[root@tmc_db02 local]#
[root@tmc_db02 local]#
[root@tmc_db02 local]#
[root@tmc_db02 local]# cd /etc/rc.d/init.d
[root@tmc_db02 init.d]# ls -la
total 580
drwxr-xr-x  2 root root  4096 Mar 25 08:49 .
drwxr-xr-x 10 root root  4096 Mar 23 21:48 ..
-rwxr-xr-x  1 root root  1566 Sep  9  2009 acpid
-rwxr-xr-x  1 root root  1441 Mar 27  2007 anacron
-rwxr-xr-x  1 root root  1176 Jan  5  2007 atd
-rwxr-xr-x  1 root root  3328 Sep  3  2009 auditd
-rwxr-xr-x  1 root root  3059 Sep  3  2009 autofs
-rwxr-xr-x  1 root root  1848 Sep 19  2009 avahi-daemon
-rwxr-xr-x  1 root root  1789 Sep 19  2009 avahi-dnsconfd
-rwxr-xr-x  1 root root  1477 Jul 14  2008 bluetooth
-rwxr-xr-x  1 root root  1470 Nov 11  2007 conman
-rwxr-xr-x  1 root root  8824 Sep 26  2009 cpuspeed
-rwxr-xr-x  1 root root  1904 Mar 11  2009 crond
-rwxr-xr-x  1 root root  1942 Sep  3  2009 cups
-rwxr-xr-x  1 root root  1407 Mar 11  2009 dnsmasq
-rwxr-xr-x  1 root root   996 Jul 14  2008 dund
-rwxr-xr-x  1 root root  1965 Mar 11  2009 firstboot
-rwxr-xr-x  1 root root 14000 Jul  4  2009 functions
-rwxr-xr-x  1 root root  1778 Jan  6  2007 gpm
-rwxr-xr-x  1 root root  1486 Sep  3  2009 haldaemon
-rwxr-xr-x  1 root root  5725 Jul  4  2009 halt
-rwxr-xr-x  1 root root   966 Jul 14  2008 hidd
-rwxr-xr-x  1 root root  7543 Sep  3  2009 ip6tables
-rwxr-xr-x  1 root root  7460 Sep  3  2009 iptables
-rwxr-xr-x  1 root root  1624 Jan  6  2007 irda
-rwxr-xr-x  1 root root  2193 Sep  3  2009 irqbalance
-rwxr-xr-x  1 root root   652 Jul  4  2009 killall
-rwxr-xr-x  1 root root  1331 Nov  9  2007 krb524
-rwxr-xr-x  1 root root  1406 Jan 22  2009 kudzu
-rwxr-xr-x  1 root root  1932 Sep  4  2009 lvm2-monitor
-rwxr-xr-x  1 root root  1914 Jan 20  2009 mcstrans
-rwxr-xr-x  1 root root  2125 Sep  3  2009 mdmonitor
-rwxr-xr-x  1 root root  1613 Sep  3  2009 mdmpd
-rwxr-xr-x  1 root root  1819 Jan 21  2009 messagebus
-rwxr-xr-x  1 root root  1926 Sep  3  2009 microcode_ctl
-rwxr-xr-x  1 root root  2156 Sep  3  2009 multipathd
-rwxr-xr-x  1 root root  2994 Jul  4  2009 netconsole
-rwxr-xr-x  1 root root  5849 Jul  4  2009 netfs
-rwxr-xr-x  1 root root  1258 May 24  2008 netplugd
-rwxr-xr-x  1 root root  8257 Jul  4  2009 network
-rwxr-xr-x  1 root root  1897 Sep  3  2009 NetworkManager
-rwxr-xr-x  1 root root  4668 Sep  3  2009 nfs
-rwxr-xr-x  1 root root  3302 Sep  3  2009 nfslock
-rwxr-xr-x  1 root root  2517 Oct 25 13:17 nscd
-rwxr-xr-x  1 root root  1790 May 24  2008 oddjobd
-rwxr-xr-x  1 root root  1203 Jul 14  2008 pand
-rwxr-xr-x  1 root root  2020 May 24  2008 pcscd
-rwxr-xr-x  1 root root  1877 Jan  6  2007 portmap
-rwxr-xr-x  1 root root  1030 Mar 11  2009 psacct
-rwxr-xr-x  1 root root  2245 Jul  4  2009 rawdevices
-rwxr-xr-x  1 root root  1387 Sep 26  2009 rdisc
-rwxr-xr-x  1 root root   931 Mar 14  2007 readahead_early
-rwxr-xr-x  1 root root   930 Mar 14  2007 readahead_later
-rwxr-xr-x  1 root root  1793 Sep  3  2009 restorecond
-rwxr-xr-x  1 root root  2557 Sep  3  2009 rpcgssd
-rwxr-xr-x  1 root root  2072 Sep  3  2009 rpcidmapd
-rwxr-xr-x  1 root root  2482 Sep  3  2009 rpcsvcgssd
-rwxr-xr-x  1 root root  1676 Sep  3  2009 saslauthd
-rwxr-xr-x  1 root root  3349 Mar 14  2007 sendmail
-rwxr-xr-x  1 root root   647 Jul  4  2009 single
-rwxr-xr-x  1 root root  2740 Jan 21  2009 smartd
-rwxr-xr-x  1 root root  3362 Sep  3  2009 sshd
-rwxr-xr-x  1 root root  2043 May 24  2008 syslog
-rwxr-xr-x  1 root root  2174 May 24  2008 tcsd
-rwxr-xr-x  1 root root  1634 Jan 21  2009 wpa_supplicant
-rwxr-xr-x  1 root root  3518 Sep 21  2009 ypbind
-rwxr-xr-x  1 root root  1498 May 24  2008 yum-updatesd
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]# vi gp_postgres

























        stop
        ;;
  restart)
        restart
        ;;
  reload)
        reload
        ;;
  status)
        if [ -f $lockfile ]; then
                echo $"PostgreSQL is Started."
                RETVAL=0
        else
                echo $"PostgreSQL is Stoped."
                RETVAL=3
        fi
        ;;
  *)
        echo $"Usage: $0 {start|stop|status|restart|reload}"
        exit 1
esac

exit $RETVAL
"gp_postgres" [New] 76L, 1447C written

-rwxr-xr-x  1 root root  1877 Jan  6  2007 portmap
-rwxr-xr-x  1 root root  1030 Mar 11  2009 psacct
-rwxr-xr-x  1 root root  2245 Jul  4  2009 rawdevices
-rwxr-xr-x  1 root root  1387 Sep 26  2009 rdisc
-rwxr-xr-x  1 root root   931 Mar 14  2007 readahead_early
-rwxr-xr-x  1 root root   930 Mar 14  2007 readahead_later
-rwxr-xr-x  1 root root  1793 Sep  3  2009 restorecond
-rwxr-xr-x  1 root root  2557 Sep  3  2009 rpcgssd
-rwxr-xr-x  1 root root  2072 Sep  3  2009 rpcidmapd
-rwxr-xr-x  1 root root  2482 Sep  3  2009 rpcsvcgssd
-rwxr-xr-x  1 root root  1676 Sep  3  2009 saslauthd
-rwxr-xr-x  1 root root  3349 Mar 14  2007 sendmail
-rwxr-xr-x  1 root root   647 Jul  4  2009 single
-rwxr-xr-x  1 root root  2740 Jan 21  2009 smartd
-rwxr-xr-x  1 root root  3362 Sep  3  2009 sshd
-rwxr-xr-x  1 root root  2043 May 24  2008 syslog
-rwxr-xr-x  1 root root  2174 May 24  2008 tcsd
-rwxr-xr-x  1 root root  1634 Jan 21  2009 wpa_supplicant
-rwxr-xr-x  1 root root  3518 Sep 21  2009 ypbind
-rwxr-xr-x  1 root root  1498 May 24  2008 yum-updatesd
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]# vi gp_postgres
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]# ls -la
total 584
drwxr-xr-x  2 root root  4096 Mar 25 09:04 .
drwxr-xr-x 10 root root  4096 Mar 23 21:48 ..
-rwxr-xr-x  1 root root  1566 Sep  9  2009 acpid
-rwxr-xr-x  1 root root  1441 Mar 27  2007 anacron
-rwxr-xr-x  1 root root  1176 Jan  5  2007 atd
-rwxr-xr-x  1 root root  3328 Sep  3  2009 auditd
-rwxr-xr-x  1 root root  3059 Sep  3  2009 autofs
-rwxr-xr-x  1 root root  1848 Sep 19  2009 avahi-daemon
-rwxr-xr-x  1 root root  1789 Sep 19  2009 avahi-dnsconfd
-rwxr-xr-x  1 root root  1477 Jul 14  2008 bluetooth
-rwxr-xr-x  1 root root  1470 Nov 11  2007 conman
-rwxr-xr-x  1 root root  8824 Sep 26  2009 cpuspeed
-rwxr-xr-x  1 root root  1904 Mar 11  2009 crond
-rwxr-xr-x  1 root root  1942 Sep  3  2009 cups
-rwxr-xr-x  1 root root  1407 Mar 11  2009 dnsmasq
-rwxr-xr-x  1 root root   996 Jul 14  2008 dund
-rwxr-xr-x  1 root root  1965 Mar 11  2009 firstboot
-rwxr-xr-x  1 root root 14000 Jul  4  2009 functions
-rwxr-xr-x  1 root root  1778 Jan  6  2007 gpm
-rw-r--r--  1 root root  1447 Mar 25 09:04 gp_postgres
-rwxr-xr-x  1 root root  1486 Sep  3  2009 haldaemon
-rwxr-xr-x  1 root root  5725 Jul  4  2009 halt
-rwxr-xr-x  1 root root   966 Jul 14  2008 hidd
-rwxr-xr-x  1 root root  7543 Sep  3  2009 ip6tables
-rwxr-xr-x  1 root root  7460 Sep  3  2009 iptables
-rwxr-xr-x  1 root root  1624 Jan  6  2007 irda
-rwxr-xr-x  1 root root  2193 Sep  3  2009 irqbalance
-rwxr-xr-x  1 root root   652 Jul  4  2009 killall
-rwxr-xr-x  1 root root  1331 Nov  9  2007 krb524
-rwxr-xr-x  1 root root  1406 Jan 22  2009 kudzu
-rwxr-xr-x  1 root root  1932 Sep  4  2009 lvm2-monitor
-rwxr-xr-x  1 root root  1914 Jan 20  2009 mcstrans
-rwxr-xr-x  1 root root  2125 Sep  3  2009 mdmonitor
-rwxr-xr-x  1 root root  1613 Sep  3  2009 mdmpd
-rwxr-xr-x  1 root root  1819 Jan 21  2009 messagebus
-rwxr-xr-x  1 root root  1926 Sep  3  2009 microcode_ctl
-rwxr-xr-x  1 root root  2156 Sep  3  2009 multipathd
-rwxr-xr-x  1 root root  2994 Jul  4  2009 netconsole
-rwxr-xr-x  1 root root  5849 Jul  4  2009 netfs
-rwxr-xr-x  1 root root  1258 May 24  2008 netplugd
-rwxr-xr-x  1 root root  8257 Jul  4  2009 network
-rwxr-xr-x  1 root root  1897 Sep  3  2009 NetworkManager
-rwxr-xr-x  1 root root  4668 Sep  3  2009 nfs
-rwxr-xr-x  1 root root  3302 Sep  3  2009 nfslock
-rwxr-xr-x  1 root root  2517 Oct 25 13:17 nscd
-rwxr-xr-x  1 root root  1790 May 24  2008 oddjobd
-rwxr-xr-x  1 root root  1203 Jul 14  2008 pand
-rwxr-xr-x  1 root root  2020 May 24  2008 pcscd
-rwxr-xr-x  1 root root  1877 Jan  6  2007 portmap
-rwxr-xr-x  1 root root  1030 Mar 11  2009 psacct
-rwxr-xr-x  1 root root  2245 Jul  4  2009 rawdevices
-rwxr-xr-x  1 root root  1387 Sep 26  2009 rdisc
-rwxr-xr-x  1 root root   931 Mar 14  2007 readahead_early
-rwxr-xr-x  1 root root   930 Mar 14  2007 readahead_later
-rwxr-xr-x  1 root root  1793 Sep  3  2009 restorecond
-rwxr-xr-x  1 root root  2557 Sep  3  2009 rpcgssd
-rwxr-xr-x  1 root root  2072 Sep  3  2009 rpcidmapd
-rwxr-xr-x  1 root root  2482 Sep  3  2009 rpcsvcgssd
-rwxr-xr-x  1 root root  1676 Sep  3  2009 saslauthd
-rwxr-xr-x  1 root root  3349 Mar 14  2007 sendmail
-rwxr-xr-x  1 root root   647 Jul  4  2009 single
-rwxr-xr-x  1 root root  2740 Jan 21  2009 smartd
-rwxr-xr-x  1 root root  3362 Sep  3  2009 sshd
-rwxr-xr-x  1 root root  2043 May 24  2008 syslog
-rwxr-xr-x  1 root root  2174 May 24  2008 tcsd
-rwxr-xr-x  1 root root  1634 Jan 21  2009 wpa_supplicant
-rwxr-xr-x  1 root root  3518 Sep 21  2009 ypbind
-rwxr-xr-x  1 root root  1498 May 24  2008 yum-updatesd
[root@tmc_db02 init.d]# vi gp_postgres9

























# source function library
#!bin/bash
        stop
        ;;
  restart)
        restart
        ;;
  reload)
        reload
        ;;
  status)
        if [ -f $lockfile ]; then
                echo $"PostgreSQL9 is Started."
                RETVAL=0
        else
                echo $"PostgreSQL9 is Stoped."
                RETVAL=3
        fi
        ;;
  *)
        echo $"Usage: $0 {start|stop|status|restart|reload}"
        exit 1
esac

exit $RETVAL
"gp_postgres9" [New] 76L, 1489C written

-rwxr-xr-x  1 root root  1203 Jul 14  2008 pand
-rwxr-xr-x  1 root root  2020 May 24  2008 pcscd
-rwxr-xr-x  1 root root  1877 Jan  6  2007 portmap
-rwxr-xr-x  1 root root  1030 Mar 11  2009 psacct
-rwxr-xr-x  1 root root  2245 Jul  4  2009 rawdevices
-rwxr-xr-x  1 root root  1387 Sep 26  2009 rdisc
-rwxr-xr-x  1 root root   931 Mar 14  2007 readahead_early
-rwxr-xr-x  1 root root   930 Mar 14  2007 readahead_later
-rwxr-xr-x  1 root root  1793 Sep  3  2009 restorecond
-rwxr-xr-x  1 root root  2557 Sep  3  2009 rpcgssd
-rwxr-xr-x  1 root root  2072 Sep  3  2009 rpcidmapd
-rwxr-xr-x  1 root root  2482 Sep  3  2009 rpcsvcgssd
-rwxr-xr-x  1 root root  1676 Sep  3  2009 saslauthd
-rwxr-xr-x  1 root root  3349 Mar 14  2007 sendmail
-rwxr-xr-x  1 root root   647 Jul  4  2009 single
-rwxr-xr-x  1 root root  2740 Jan 21  2009 smartd
-rwxr-xr-x  1 root root  3362 Sep  3  2009 sshd
-rwxr-xr-x  1 root root  2043 May 24  2008 syslog
-rwxr-xr-x  1 root root  2174 May 24  2008 tcsd
-rwxr-xr-x  1 root root  1634 Jan 21  2009 wpa_supplicant
-rwxr-xr-x  1 root root  3518 Sep 21  2009 ypbind
-rwxr-xr-x  1 root root  1498 May 24  2008 yum-updatesd
[root@tmc_db02 init.d]# vi gp_postgres9
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]# ls -la
total 588
drwxr-xr-x  2 root root  4096 Mar 25 09:05 .
drwxr-xr-x 10 root root  4096 Mar 23 21:48 ..
-rwxr-xr-x  1 root root  1566 Sep  9  2009 acpid
-rwxr-xr-x  1 root root  1441 Mar 27  2007 anacron
-rwxr-xr-x  1 root root  1176 Jan  5  2007 atd
-rwxr-xr-x  1 root root  3328 Sep  3  2009 auditd
-rwxr-xr-x  1 root root  3059 Sep  3  2009 autofs
-rwxr-xr-x  1 root root  1848 Sep 19  2009 avahi-daemon
-rwxr-xr-x  1 root root  1789 Sep 19  2009 avahi-dnsconfd
-rwxr-xr-x  1 root root  1477 Jul 14  2008 bluetooth
-rwxr-xr-x  1 root root  1470 Nov 11  2007 conman
-rwxr-xr-x  1 root root  8824 Sep 26  2009 cpuspeed
-rwxr-xr-x  1 root root  1904 Mar 11  2009 crond
-rwxr-xr-x  1 root root  1942 Sep  3  2009 cups
-rwxr-xr-x  1 root root  1407 Mar 11  2009 dnsmasq
-rwxr-xr-x  1 root root   996 Jul 14  2008 dund
-rwxr-xr-x  1 root root  1965 Mar 11  2009 firstboot
-rwxr-xr-x  1 root root 14000 Jul  4  2009 functions
-rwxr-xr-x  1 root root  1778 Jan  6  2007 gpm
-rw-r--r--  1 root root  1447 Mar 25 09:04 gp_postgres
-rw-r--r--  1 root root  1489 Mar 25 09:05 gp_postgres9
-rwxr-xr-x  1 root root  1486 Sep  3  2009 haldaemon
-rwxr-xr-x  1 root root  5725 Jul  4  2009 halt
-rwxr-xr-x  1 root root   966 Jul 14  2008 hidd
-rwxr-xr-x  1 root root  7543 Sep  3  2009 ip6tables
-rwxr-xr-x  1 root root  7460 Sep  3  2009 iptables
-rwxr-xr-x  1 root root  1624 Jan  6  2007 irda
-rwxr-xr-x  1 root root  2193 Sep  3  2009 irqbalance
-rwxr-xr-x  1 root root   652 Jul  4  2009 killall
-rwxr-xr-x  1 root root  1331 Nov  9  2007 krb524
-rwxr-xr-x  1 root root  1406 Jan 22  2009 kudzu
-rwxr-xr-x  1 root root  1932 Sep  4  2009 lvm2-monitor
-rwxr-xr-x  1 root root  1914 Jan 20  2009 mcstrans
-rwxr-xr-x  1 root root  2125 Sep  3  2009 mdmonitor
-rwxr-xr-x  1 root root  1613 Sep  3  2009 mdmpd
-rwxr-xr-x  1 root root  1819 Jan 21  2009 messagebus
-rwxr-xr-x  1 root root  1926 Sep  3  2009 microcode_ctl
-rwxr-xr-x  1 root root  2156 Sep  3  2009 multipathd
-rwxr-xr-x  1 root root  2994 Jul  4  2009 netconsole
-rwxr-xr-x  1 root root  5849 Jul  4  2009 netfs
-rwxr-xr-x  1 root root  1258 May 24  2008 netplugd
-rwxr-xr-x  1 root root  8257 Jul  4  2009 network
-rwxr-xr-x  1 root root  1897 Sep  3  2009 NetworkManager
-rwxr-xr-x  1 root root  4668 Sep  3  2009 nfs
-rwxr-xr-x  1 root root  3302 Sep  3  2009 nfslock
-rwxr-xr-x  1 root root  2517 Oct 25 13:17 nscd
-rwxr-xr-x  1 root root  1790 May 24  2008 oddjobd
-rwxr-xr-x  1 root root  1203 Jul 14  2008 pand
-rwxr-xr-x  1 root root  2020 May 24  2008 pcscd
-rwxr-xr-x  1 root root  1877 Jan  6  2007 portmap
-rwxr-xr-x  1 root root  1030 Mar 11  2009 psacct
-rwxr-xr-x  1 root root  2245 Jul  4  2009 rawdevices
-rwxr-xr-x  1 root root  1387 Sep 26  2009 rdisc
-rwxr-xr-x  1 root root   931 Mar 14  2007 readahead_early
-rwxr-xr-x  1 root root   930 Mar 14  2007 readahead_later
-rwxr-xr-x  1 root root  1793 Sep  3  2009 restorecond
-rwxr-xr-x  1 root root  2557 Sep  3  2009 rpcgssd
-rwxr-xr-x  1 root root  2072 Sep  3  2009 rpcidmapd
-rwxr-xr-x  1 root root  2482 Sep  3  2009 rpcsvcgssd
-rwxr-xr-x  1 root root  1676 Sep  3  2009 saslauthd
-rwxr-xr-x  1 root root  3349 Mar 14  2007 sendmail
-rwxr-xr-x  1 root root   647 Jul  4  2009 single
-rwxr-xr-x  1 root root  2740 Jan 21  2009 smartd
-rwxr-xr-x  1 root root  3362 Sep  3  2009 sshd
-rwxr-xr-x  1 root root  2043 May 24  2008 syslog
-rwxr-xr-x  1 root root  2174 May 24  2008 tcsd
-rwxr-xr-x  1 root root  1634 Jan 21  2009 wpa_supplicant
-rwxr-xr-x  1 root root  3518 Sep 21  2009 ypbind
-rwxr-xr-x  1 root root  1498 May 24  2008 yum-updatesd
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]# mkdir -p /var/log/pgsql9
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]# chown postgres.postgres /var/log/pgsql9
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]# su - postgres
[postgres@tmc_db02 ~]$
[postgres@tmc_db02 ~]$
[postgres@tmc_db02 ~]$ /usr/local/postgresql-9.0.2/bin/initdb --pgdata=/usr/local/postgresql-9.0.2/data
The files belonging to this database system will be owned by user "postgres".
This user must also own the server process.

The database cluster will be initialized with locale en_US.UTF-8.
The default database encoding has accordingly been set to UTF8.
The default text search configuration will be set to "english".

creating directory /usr/local/postgresql-9.0.2/data ... ok
creating subdirectories ... ok
selecting default max_connections ... 100
selecting default shared_buffers ... 32MB
creating configuration files ... ok
creating template1 database in /usr/local/postgresql-9.0.2/data/base/1 ... ok
initializing pg_authid ... ok
initializing dependencies ... ok
creating system views ... ok
loading system objects' descriptions ... ok
creating conversions ... ok
creating dictionaries ... ok
setting privileges on built-in objects ... ok
creating information schema ... ok
loading PL/pgSQL server-side language ... ok
vacuuming database template1 ... ok
copying template1 to template0 ... ok
copying template1 to postgres ... ok

WARNING: enabling "trust" authentication for local connections
You can change this by editing pg_hba.conf or using the -A option the
next time you run initdb.

Success. You can now start the database server using:

    /usr/local/postgresql-9.0.2/bin/postgres -D /usr/local/postgresql-9.0.2/data
or
    /usr/local/postgresql-9.0.2/bin/pg_ctl -D /usr/local/postgresql-9.0.2/data -l logfile start

[postgres@tmc_db02 ~]$
[postgres@tmc_db02 ~]$
[postgres@tmc_db02 ~]$
[postgres@tmc_db02 ~]$
[postgres@tmc_db02 ~]$
[postgres@tmc_db02 ~]$
[postgres@tmc_db02 ~]$ cd /usr/local/postgresql/data
-bash: cd: /usr/local/postgresql/data: No such file or directory
[postgres@tmc_db02 ~]$
[postgres@tmc_db02 ~]$
[postgres@tmc_db02 ~]$
[postgres@tmc_db02 ~]$ cd /usr/local/postgresql-9.0.2
[postgres@tmc_db02 postgresql-9.0.2]$ ls -la
total 32
drwxr-xr-x  7 postgres postgres 4096 Mar 25 09:09 .
drwxr-xr-x 13 root     root     4096 Mar 25 08:58 ..
drwxr-xr-x  2 postgres postgres 4096 Mar 25 08:58 bin
drwx------ 12 postgres postgres 4096 Mar 25 09:09 data
drwxr-xr-x  6 postgres postgres 4096 Mar 25 08:58 include
drwxr-xr-x  3 postgres postgres 4096 Mar 25 08:58 lib
drwxr-xr-x  5 postgres postgres 4096 Mar 25 08:58 share
[postgres@tmc_db02 postgresql-9.0.2]$ cd data
[postgres@tmc_db02 data]$ ls -la
total 80
drwx------ 12 postgres postgres  4096 Mar 25 09:09 .
drwxr-xr-x  7 postgres postgres  4096 Mar 25 09:09 ..
drwx------  5 postgres postgres  4096 Mar 25 09:09 base
drwx------  2 postgres postgres  4096 Mar 25 09:09 global
drwx------  2 postgres postgres  4096 Mar 25 09:09 pg_clog
-rw-------  1 postgres postgres  3939 Mar 25 09:09 pg_hba.conf
-rw-------  1 postgres postgres  1636 Mar 25 09:09 pg_ident.conf
drwx------  4 postgres postgres  4096 Mar 25 09:09 pg_multixact
drwx------  2 postgres postgres  4096 Mar 25 09:09 pg_notify
drwx------  2 postgres postgres  4096 Mar 25 09:09 pg_stat_tmp
drwx------  2 postgres postgres  4096 Mar 25 09:09 pg_subtrans
drwx------  2 postgres postgres  4096 Mar 25 09:09 pg_tblspc
drwx------  2 postgres postgres  4096 Mar 25 09:09 pg_twophase
-rw-------  1 postgres postgres     4 Mar 25 09:09 PG_VERSION
drwx------  3 postgres postgres  4096 Mar 25 09:09 pg_xlog
-rw-------  1 postgres postgres 17975 Mar 25 09:09 postgresql.conf
[postgres@tmc_db02 data]$
[postgres@tmc_db02 data]$
[postgres@tmc_db02 data]$
[postgres@tmc_db02 data]$ cp -p pg_hba.conf     pg_hba.conf.`date +%Y%m%d`.org
[postgres@tmc_db02 data]$ cp -p pg_ident.conf   pg_ident.conf.`date +%Y%m%d`.org
[postgres@tmc_db02 data]$ cp -p postgresql.conf postgresql.conf.`date +%Y%m%d`.org
[postgres@tmc_db02 data]$
[postgres@tmc_db02 data]$
[postgres@tmc_db02 data]$
[postgres@tmc_db02 data]$ ls -la
total 108
drwx------ 12 postgres postgres  4096 Mar 25 09:10 .
drwxr-xr-x  7 postgres postgres  4096 Mar 25 09:09 ..
drwx------  5 postgres postgres  4096 Mar 25 09:09 base
drwx------  2 postgres postgres  4096 Mar 25 09:09 global
drwx------  2 postgres postgres  4096 Mar 25 09:09 pg_clog
-rw-------  1 postgres postgres  3939 Mar 25 09:09 pg_hba.conf
-rw-------  1 postgres postgres  3939 Mar 25 09:09 pg_hba.conf.20110325.org
-rw-------  1 postgres postgres  1636 Mar 25 09:09 pg_ident.conf
-rw-------  1 postgres postgres  1636 Mar 25 09:09 pg_ident.conf.20110325.org
drwx------  4 postgres postgres  4096 Mar 25 09:09 pg_multixact
drwx------  2 postgres postgres  4096 Mar 25 09:09 pg_notify
drwx------  2 postgres postgres  4096 Mar 25 09:09 pg_stat_tmp
drwx------  2 postgres postgres  4096 Mar 25 09:09 pg_subtrans
drwx------  2 postgres postgres  4096 Mar 25 09:09 pg_tblspc
drwx------  2 postgres postgres  4096 Mar 25 09:09 pg_twophase
-rw-------  1 postgres postgres     4 Mar 25 09:09 PG_VERSION
drwx------  3 postgres postgres  4096 Mar 25 09:09 pg_xlog
-rw-------  1 postgres postgres 17975 Mar 25 09:09 postgresql.conf
-rw-------  1 postgres postgres 17975 Mar 25 09:09 postgresql.conf.20110325.org
[postgres@tmc_db02 data]$
[postgres@tmc_db02 data]$
[postgres@tmc_db02 data]$
[postgres@tmc_db02 data]$ su - postgres
Password:

su: incorrect password
[postgres@tmc_db02 data]$
[postgres@tmc_db02 data]$
[postgres@tmc_db02 data]$
[postgres@tmc_db02 data]$
[postgres@tmc_db02 data]$ cd /usr/local/postgresql-9.0.2
[postgres@tmc_db02 postgresql-9.0.2]$ ls -la
total 32
drwxr-xr-x  7 postgres postgres 4096 Mar 25 09:09 .
drwxr-xr-x 13 root     root     4096 Mar 25 08:58 ..
drwxr-xr-x  2 postgres postgres 4096 Mar 25 08:58 bin
drwx------ 12 postgres postgres 4096 Mar 25 09:10 data
drwxr-xr-x  6 postgres postgres 4096 Mar 25 08:58 include
drwxr-xr-x  3 postgres postgres 4096 Mar 25 08:58 lib
drwxr-xr-x  5 postgres postgres 4096 Mar 25 08:58 share
[postgres@tmc_db02 postgresql-9.0.2]$
[postgres@tmc_db02 postgresql-9.0.2]$
[postgres@tmc_db02 postgresql-9.0.2]$ ln -s /mnt/xfs/data data
[postgres@tmc_db02 postgresql-9.0.2]$
[postgres@tmc_db02 postgresql-9.0.2]$
[postgres@tmc_db02 postgresql-9.0.2]$
[postgres@tmc_db02 postgresql-9.0.2]$ cd /usr/local/postgresql/data
-bash: cd: /usr/local/postgresql/data: No such file or directory
[postgres@tmc_db02 postgresql-9.0.2]$ cd /usr/local/postgresql-9.0.2/data
[postgres@tmc_db02 data]$
[postgres@tmc_db02 data]$
[postgres@tmc_db02 data]$
[postgres@tmc_db02 data]$ ln -s /var/log/pgsql9 pg_log
[postgres@tmc_db02 data]$
[postgres@tmc_db02 data]$
[postgres@tmc_db02 data]$
[postgres@tmc_db02 data]$ mkdir -p /var/atgames/db/pg_standby/archive41 /var/atgames/db/pg_standby/archive42
mkdir: cannot create directory `/var/atgames': Permission denied
mkdir: cannot create directory `/var/atgames': Permission denied
[postgres@tmc_db02 data]$ exit
logout

[root@tmc_db02 init.d]# mkdir -p /var/atgames/db/pg_standby/archive41 /var/atgames/db/pg_standby/archive42
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]# chown -R interdev.interdev /var/atgames
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]# chown -R postgres.postgres /var/atgames/db/pg_standby
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]# cd /var/atgames/db
[root@tmc_db02 db]# ls -la
total 12
drwxr-xr-x 3 interdev interdev 4096 Mar 25 09:12 .
drwxr-xr-x 3 interdev interdev 4096 Mar 25 09:12 ..
drwxr-xr-x 4 postgres postgres 4096 Mar 25 09:12 pg_standby
[root@tmc_db02 db]# cd pg_standby
[root@tmc_db02 pg_standby]# ls -la
total 16
drwxr-xr-x 4 postgres postgres 4096 Mar 25 09:12 .
drwxr-xr-x 3 interdev interdev 4096 Mar 25 09:12 ..
drwxr-xr-x 2 postgres postgres 4096 Mar 25 09:12 archive41
drwxr-xr-x 2 postgres postgres 4096 Mar 25 09:12 archive42
[root@tmc_db02 pg_standby]#
[root@tmc_db02 pg_standby]#
[root@tmc_db02 pg_standby]# mv archive41 archive01
[root@tmc_db02 pg_standby]# ls -la
total 16
drwxr-xr-x 4 postgres postgres 4096 Mar 25 09:12 .
drwxr-xr-x 3 interdev interdev 4096 Mar 25 09:12 ..
drwxr-xr-x 2 postgres postgres 4096 Mar 25 09:12 archive01
drwxr-xr-x 2 postgres postgres 4096 Mar 25 09:12 archive42
[root@tmc_db02 pg_standby]#
[root@tmc_db02 pg_standby]#
[root@tmc_db02 pg_standby]# mv archive42 archive02
[root@tmc_db02 pg_standby]#
[root@tmc_db02 pg_standby]#
[root@tmc_db02 pg_standby]#
[root@tmc_db02 pg_standby]# ls -la
total 16
drwxr-xr-x 4 postgres postgres 4096 Mar 25 09:13 .
drwxr-xr-x 3 interdev interdev 4096 Mar 25 09:12 ..
drwxr-xr-x 2 postgres postgres 4096 Mar 25 09:12 archive01
drwxr-xr-x 2 postgres postgres 4096 Mar 25 09:12 archive02
[root@tmc_db02 pg_standby]#
[root@tmc_db02 pg_standby]#
[root@tmc_db02 pg_standby]# exit
exit
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]# ls -la
total 2356
drwxrwxrwx  6      258      258   4096 Mar 25 08:55 .
drwxr-xr-x  4 interdev interdev   4096 Mar 25 08:52 ..
-rw-r--r--  1      258      258    445 Dec 13 18:55 aclocal.m4
drwxrwxrwx  2      258      258   4096 Mar 25 08:41 config
-rw-r--r--  1 root     root     328346 Mar 25 08:55 config.log
-rwxr-xr-x  1 root     root      37575 Mar 25 08:55 config.status
-rwxr-xr-x  1      258      258 844733 Dec 13 18:55 configure
-rw-r--r--  1      258      258  60877 Dec 13 18:55 configure.in
drwxrwxrwx 46      258      258   4096 Mar 25 08:41 contrib
-rw-r--r--  1      258      258   1192 Dec 13 18:55 COPYRIGHT
drwxrwxrwx  3      258      258   4096 Mar 25 08:41 doc
-rw-r--r--  1      258      258    233 Dec 13 18:55 .gitignore
-rw-r--r--  1 root     root       3760 Mar 25 08:55 GNUmakefile
-rw-r--r--  1      258      258   3760 Dec 13 18:55 GNUmakefile.in
-rw-r--r--  1      258      258 968292 Dec 13 19:21 HISTORY
-rw-r--r--  1      258      258  79024 Dec 13 19:21 INSTALL
-rw-r--r--  1      258      258   1477 Dec 13 18:55 Makefile
-rw-r--r--  1      258      258   1287 Dec 13 18:55 README
drwxrwxrwx 14      258      258   4096 Mar 25 08:55 src
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]#
[root@tmc_db02 postgresql-9.0.2]# su - postgres
[postgres@tmc_db02 ~]$
[postgres@tmc_db02 ~]$
[postgres@tmc_db02 ~]$ ls -la
total 28
drwx------ 2 postgres postgres 4096 Mar 25 09:11 .
drwxr-xr-x 4 root     root     4096 Mar 25 09:00 ..
-rw------- 1 postgres postgres  597 Mar 25 09:11 .bash_history
-rw-r--r-- 1 postgres postgres   33 Mar 25 09:00 .bash_logout
-rw-r--r-- 1 postgres postgres  176 Mar 25 09:00 .bash_profile
-rw-r--r-- 1 postgres postgres  124 Mar 25 09:00 .bashrc
[postgres@tmc_db02 ~]$
[postgres@tmc_db02 ~]$
[postgres@tmc_db02 ~]$ cd /usr/local/postgresql-9.0.2/data
[postgres@tmc_db02 data]$ ls -la
total 108
drwx------ 12 postgres postgres  4096 Mar 25 09:11 .
drwxr-xr-x  7 postgres postgres  4096 Mar 25 09:09 ..
drwx------  5 postgres postgres  4096 Mar 25 09:09 base
lrwxrwxrwx  1 postgres postgres    13 Mar 25 09:10 data -> /mnt/xfs/data
drwx------  2 postgres postgres  4096 Mar 25 09:09 global
drwx------  2 postgres postgres  4096 Mar 25 09:09 pg_clog
-rw-------  1 postgres postgres  3939 Mar 25 09:09 pg_hba.conf
-rw-------  1 postgres postgres  3939 Mar 25 09:09 pg_hba.conf.20110325.org
-rw-------  1 postgres postgres  1636 Mar 25 09:09 pg_ident.conf
-rw-------  1 postgres postgres  1636 Mar 25 09:09 pg_ident.conf.20110325.org
lrwxrwxrwx  1 postgres postgres    15 Mar 25 09:11 pg_log -> /var/log/pgsql9
drwx------  4 postgres postgres  4096 Mar 25 09:09 pg_multixact
drwx------  2 postgres postgres  4096 Mar 25 09:09 pg_notify
drwx------  2 postgres postgres  4096 Mar 25 09:09 pg_stat_tmp
drwx------  2 postgres postgres  4096 Mar 25 09:09 pg_subtrans
drwx------  2 postgres postgres  4096 Mar 25 09:09 pg_tblspc
drwx------  2 postgres postgres  4096 Mar 25 09:09 pg_twophase
-rw-------  1 postgres postgres     4 Mar 25 09:09 PG_VERSION
drwx------  3 postgres postgres  4096 Mar 25 09:09 pg_xlog
-rw-------  1 postgres postgres 17975 Mar 25 09:09 postgresql.conf
-rw-------  1 postgres postgres 17975 Mar 25 09:09 postgresql.conf.20110325.org
[postgres@tmc_db02 data]$
[postgres@tmc_db02 data]$
[postgres@tmc_db02 data]$ rm -r data
[postgres@tmc_db02 data]$ ls -la
total 108
drwx------ 12 postgres postgres  4096 Mar 25 09:14 .
drwxr-xr-x  7 postgres postgres  4096 Mar 25 09:09 ..
drwx------  5 postgres postgres  4096 Mar 25 09:09 base
drwx------  2 postgres postgres  4096 Mar 25 09:09 global
drwx------  2 postgres postgres  4096 Mar 25 09:09 pg_clog
-rw-------  1 postgres postgres  3939 Mar 25 09:09 pg_hba.conf
-rw-------  1 postgres postgres  3939 Mar 25 09:09 pg_hba.conf.20110325.org
-rw-------  1 postgres postgres  1636 Mar 25 09:09 pg_ident.conf
-rw-------  1 postgres postgres  1636 Mar 25 09:09 pg_ident.conf.20110325.org
lrwxrwxrwx  1 postgres postgres    15 Mar 25 09:11 pg_log -> /var/log/pgsql9
drwx------  4 postgres postgres  4096 Mar 25 09:09 pg_multixact
drwx------  2 postgres postgres  4096 Mar 25 09:09 pg_notify
drwx------  2 postgres postgres  4096 Mar 25 09:09 pg_stat_tmp
drwx------  2 postgres postgres  4096 Mar 25 09:09 pg_subtrans
drwx------  2 postgres postgres  4096 Mar 25 09:09 pg_tblspc
drwx------  2 postgres postgres  4096 Mar 25 09:09 pg_twophase
-rw-------  1 postgres postgres     4 Mar 25 09:09 PG_VERSION
drwx------  3 postgres postgres  4096 Mar 25 09:09 pg_xlog
-rw-------  1 postgres postgres 17975 Mar 25 09:09 postgresql.conf
-rw-------  1 postgres postgres 17975 Mar 25 09:09 postgresql.conf.20110325.org
[postgres@tmc_db02 data]$
[postgres@tmc_db02 data]$
[postgres@tmc_db02 data]$ cd /usr/local
[postgres@tmc_db02 local]$ ls -la
total 100
drwxr-xr-x 13 root     root     4096 Mar 25 08:58 .
drwxr-xr-x 14 root     root     4096 Mar 23 21:47 ..
drwxr-xr-x  2 root     root     4096 Mar 11  2009 bin
drwxr-xr-x  2 root     root     4096 Mar 11  2009 etc
drwxr-xr-x  2 root     root     4096 Mar 11  2009 games
drwxr-xr-x  2 root     root     4096 Mar 11  2009 include
drwxr-xr-x  2 root     root     4096 Mar 11  2009 lib
drwxr-xr-x  2 root     root     4096 Mar 11  2009 lib64
drwxr-xr-x  2 root     root     4096 Mar 11  2009 libexec
drwxr-xr-x  7 postgres postgres 4096 Mar 25 09:09 postgresql-9.0.2
drwxr-xr-x  2 root     root     4096 Mar 11  2009 sbin
drwxr-xr-x  4 root     root     4096 Mar 23 21:46 share
drwxr-xr-x  4 interdev interdev 4096 Mar 25 08:52 src
[postgres@tmc_db02 local]$ cd postgresql-9.0.2
[postgres@tmc_db02 postgresql-9.0.2]$ ls -la
total 32
drwxr-xr-x  7 postgres postgres 4096 Mar 25 09:09 .
drwxr-xr-x 13 root     root     4096 Mar 25 08:58 ..
drwxr-xr-x  2 postgres postgres 4096 Mar 25 08:58 bin
drwx------ 12 postgres postgres 4096 Mar 25 09:14 data
drwxr-xr-x  6 postgres postgres 4096 Mar 25 08:58 include
drwxr-xr-x  3 postgres postgres 4096 Mar 25 08:58 lib
drwxr-xr-x  5 postgres postgres 4096 Mar 25 08:58 share
[postgres@tmc_db02 postgresql-9.0.2]$ cd data
[postgres@tmc_db02 data]$ ls -la
total 108
drwx------ 12 postgres postgres  4096 Mar 25 09:14 .
drwxr-xr-x  7 postgres postgres  4096 Mar 25 09:09 ..
drwx------  5 postgres postgres  4096 Mar 25 09:09 base
drwx------  2 postgres postgres  4096 Mar 25 09:09 global
drwx------  2 postgres postgres  4096 Mar 25 09:09 pg_clog
-rw-------  1 postgres postgres  3939 Mar 25 09:09 pg_hba.conf
-rw-------  1 postgres postgres  3939 Mar 25 09:09 pg_hba.conf.20110325.org
-rw-------  1 postgres postgres  1636 Mar 25 09:09 pg_ident.conf
-rw-------  1 postgres postgres  1636 Mar 25 09:09 pg_ident.conf.20110325.org
lrwxrwxrwx  1 postgres postgres    15 Mar 25 09:11 pg_log -> /var/log/pgsql9
drwx------  4 postgres postgres  4096 Mar 25 09:09 pg_multixact
drwx------  2 postgres postgres  4096 Mar 25 09:09 pg_notify
drwx------  2 postgres postgres  4096 Mar 25 09:09 pg_stat_tmp
drwx------  2 postgres postgres  4096 Mar 25 09:09 pg_subtrans
drwx------  2 postgres postgres  4096 Mar 25 09:09 pg_tblspc
drwx------  2 postgres postgres  4096 Mar 25 09:09 pg_twophase
-rw-------  1 postgres postgres     4 Mar 25 09:09 PG_VERSION
drwx------  3 postgres postgres  4096 Mar 25 09:09 pg_xlog
-rw-------  1 postgres postgres 17975 Mar 25 09:09 postgresql.conf
-rw-------  1 postgres postgres 17975 Mar 25 09:09 postgresql.conf.20110325.org
[postgres@tmc_db02 data]$
[postgres@tmc_db02 data]$
[postgres@tmc_db02 data]$
[postgres@tmc_db02 data]$ cd /etc/rc.d/init.d
[postgres@tmc_db02 init.d]$ ls -la
total 588
drwxr-xr-x  2 root root  4096 Mar 25 09:05 .
drwxr-xr-x 10 root root  4096 Mar 23 21:48 ..
-rwxr-xr-x  1 root root  1566 Sep  9  2009 acpid
-rwxr-xr-x  1 root root  1441 Mar 27  2007 anacron
-rwxr-xr-x  1 root root  1176 Jan  5  2007 atd
-rwxr-xr-x  1 root root  3328 Sep  3  2009 auditd
-rwxr-xr-x  1 root root  3059 Sep  3  2009 autofs
-rwxr-xr-x  1 root root  1848 Sep 19  2009 avahi-daemon
-rwxr-xr-x  1 root root  1789 Sep 19  2009 avahi-dnsconfd
-rwxr-xr-x  1 root root  1477 Jul 14  2008 bluetooth
-rwxr-xr-x  1 root root  1470 Nov 11  2007 conman
-rwxr-xr-x  1 root root  8824 Sep 26  2009 cpuspeed
-rwxr-xr-x  1 root root  1904 Mar 11  2009 crond
-rwxr-xr-x  1 root root  1942 Sep  3  2009 cups
-rwxr-xr-x  1 root root  1407 Mar 11  2009 dnsmasq
-rwxr-xr-x  1 root root   996 Jul 14  2008 dund
-rwxr-xr-x  1 root root  1965 Mar 11  2009 firstboot
-rwxr-xr-x  1 root root 14000 Jul  4  2009 functions
-rwxr-xr-x  1 root root  1778 Jan  6  2007 gpm
-rw-r--r--  1 root root  1447 Mar 25 09:04 gp_postgres
-rw-r--r--  1 root root  1489 Mar 25 09:05 gp_postgres9
-rwxr-xr-x  1 root root  1486 Sep  3  2009 haldaemon
-rwxr-xr-x  1 root root  5725 Jul  4  2009 halt
-rwxr-xr-x  1 root root   966 Jul 14  2008 hidd
-rwxr-xr-x  1 root root  7543 Sep  3  2009 ip6tables
-rwxr-xr-x  1 root root  7460 Sep  3  2009 iptables
-rwxr-xr-x  1 root root  1624 Jan  6  2007 irda
-rwxr-xr-x  1 root root  2193 Sep  3  2009 irqbalance
-rwxr-xr-x  1 root root   652 Jul  4  2009 killall
-rwxr-xr-x  1 root root  1331 Nov  9  2007 krb524
-rwxr-xr-x  1 root root  1406 Jan 22  2009 kudzu
-rwxr-xr-x  1 root root  1932 Sep  4  2009 lvm2-monitor
-rwxr-xr-x  1 root root  1914 Jan 20  2009 mcstrans
-rwxr-xr-x  1 root root  2125 Sep  3  2009 mdmonitor
-rwxr-xr-x  1 root root  1613 Sep  3  2009 mdmpd
-rwxr-xr-x  1 root root  1819 Jan 21  2009 messagebus
-rwxr-xr-x  1 root root  1926 Sep  3  2009 microcode_ctl
-rwxr-xr-x  1 root root  2156 Sep  3  2009 multipathd
-rwxr-xr-x  1 root root  2994 Jul  4  2009 netconsole
-rwxr-xr-x  1 root root  5849 Jul  4  2009 netfs
-rwxr-xr-x  1 root root  1258 May 24  2008 netplugd
-rwxr-xr-x  1 root root  8257 Jul  4  2009 network
-rwxr-xr-x  1 root root  1897 Sep  3  2009 NetworkManager
-rwxr-xr-x  1 root root  4668 Sep  3  2009 nfs
-rwxr-xr-x  1 root root  3302 Sep  3  2009 nfslock
-rwxr-xr-x  1 root root  2517 Oct 25 13:17 nscd
-rwxr-xr-x  1 root root  1790 May 24  2008 oddjobd
-rwxr-xr-x  1 root root  1203 Jul 14  2008 pand
-rwxr-xr-x  1 root root  2020 May 24  2008 pcscd
-rwxr-xr-x  1 root root  1877 Jan  6  2007 portmap
-rwxr-xr-x  1 root root  1030 Mar 11  2009 psacct
-rwxr-xr-x  1 root root  2245 Jul  4  2009 rawdevices
-rwxr-xr-x  1 root root  1387 Sep 26  2009 rdisc
-rwxr-xr-x  1 root root   931 Mar 14  2007 readahead_early
-rwxr-xr-x  1 root root   930 Mar 14  2007 readahead_later
-rwxr-xr-x  1 root root  1793 Sep  3  2009 restorecond
-rwxr-xr-x  1 root root  2557 Sep  3  2009 rpcgssd
-rwxr-xr-x  1 root root  2072 Sep  3  2009 rpcidmapd
-rwxr-xr-x  1 root root  2482 Sep  3  2009 rpcsvcgssd
-rwxr-xr-x  1 root root  1676 Sep  3  2009 saslauthd
-rwxr-xr-x  1 root root  3349 Mar 14  2007 sendmail
-rwxr-xr-x  1 root root   647 Jul  4  2009 single
-rwxr-xr-x  1 root root  2740 Jan 21  2009 smartd
-rwxr-xr-x  1 root root  3362 Sep  3  2009 sshd
-rwxr-xr-x  1 root root  2043 May 24  2008 syslog
-rwxr-xr-x  1 root root  2174 May 24  2008 tcsd
-rwxr-xr-x  1 root root  1634 Jan 21  2009 wpa_supplicant
-rwxr-xr-x  1 root root  3518 Sep 21  2009 ypbind
-rwxr-xr-x  1 root root  1498 May 24  2008 yum-updatesd
[postgres@tmc_db02 init.d]$ chmod 755 gp_postgres gp_postgres9
chmod: changing permissions of `gp_postgres': Operation not permitted
chmod: changing permissions of `gp_postgres9': Operation not permitted
[postgres@tmc_db02 init.d]$ exit
logout

[root@tmc_db02 postgresql-9.0.2]# pwd
/usr/local/src/postgresql-9.0.2
[root@tmc_db02 postgresql-9.0.2]# cd /etc/rc.d/inir.d
bash: cd: /etc/rc.d/inir.d: No such file or directory
[root@tmc_db02 postgresql-9.0.2]# cd /etc/rc.d/init.d
[root@tmc_db02 init.d]# ls -la
total 588
drwxr-xr-x  2 root root  4096 Mar 25 09:05 .
drwxr-xr-x 10 root root  4096 Mar 23 21:48 ..
-rwxr-xr-x  1 root root  1566 Sep  9  2009 acpid
-rwxr-xr-x  1 root root  1441 Mar 27  2007 anacron
-rwxr-xr-x  1 root root  1176 Jan  5  2007 atd
-rwxr-xr-x  1 root root  3328 Sep  3  2009 auditd
-rwxr-xr-x  1 root root  3059 Sep  3  2009 autofs
-rwxr-xr-x  1 root root  1848 Sep 19  2009 avahi-daemon
-rwxr-xr-x  1 root root  1789 Sep 19  2009 avahi-dnsconfd
-rwxr-xr-x  1 root root  1477 Jul 14  2008 bluetooth
-rwxr-xr-x  1 root root  1470 Nov 11  2007 conman
-rwxr-xr-x  1 root root  8824 Sep 26  2009 cpuspeed
-rwxr-xr-x  1 root root  1904 Mar 11  2009 crond
-rwxr-xr-x  1 root root  1942 Sep  3  2009 cups
-rwxr-xr-x  1 root root  1407 Mar 11  2009 dnsmasq
-rwxr-xr-x  1 root root   996 Jul 14  2008 dund
-rwxr-xr-x  1 root root  1965 Mar 11  2009 firstboot
-rwxr-xr-x  1 root root 14000 Jul  4  2009 functions
-rwxr-xr-x  1 root root  1778 Jan  6  2007 gpm
-rw-r--r--  1 root root  1447 Mar 25 09:04 gp_postgres
-rw-r--r--  1 root root  1489 Mar 25 09:05 gp_postgres9
-rwxr-xr-x  1 root root  1486 Sep  3  2009 haldaemon
-rwxr-xr-x  1 root root  5725 Jul  4  2009 halt
-rwxr-xr-x  1 root root   966 Jul 14  2008 hidd
-rwxr-xr-x  1 root root  7543 Sep  3  2009 ip6tables
-rwxr-xr-x  1 root root  7460 Sep  3  2009 iptables
-rwxr-xr-x  1 root root  1624 Jan  6  2007 irda
-rwxr-xr-x  1 root root  2193 Sep  3  2009 irqbalance
-rwxr-xr-x  1 root root   652 Jul  4  2009 killall
-rwxr-xr-x  1 root root  1331 Nov  9  2007 krb524
-rwxr-xr-x  1 root root  1406 Jan 22  2009 kudzu
-rwxr-xr-x  1 root root  1932 Sep  4  2009 lvm2-monitor
-rwxr-xr-x  1 root root  1914 Jan 20  2009 mcstrans
-rwxr-xr-x  1 root root  2125 Sep  3  2009 mdmonitor
-rwxr-xr-x  1 root root  1613 Sep  3  2009 mdmpd
-rwxr-xr-x  1 root root  1819 Jan 21  2009 messagebus
-rwxr-xr-x  1 root root  1926 Sep  3  2009 microcode_ctl
-rwxr-xr-x  1 root root  2156 Sep  3  2009 multipathd
-rwxr-xr-x  1 root root  2994 Jul  4  2009 netconsole
-rwxr-xr-x  1 root root  5849 Jul  4  2009 netfs
-rwxr-xr-x  1 root root  1258 May 24  2008 netplugd
-rwxr-xr-x  1 root root  8257 Jul  4  2009 network
-rwxr-xr-x  1 root root  1897 Sep  3  2009 NetworkManager
-rwxr-xr-x  1 root root  4668 Sep  3  2009 nfs
-rwxr-xr-x  1 root root  3302 Sep  3  2009 nfslock
-rwxr-xr-x  1 root root  2517 Oct 25 13:17 nscd
-rwxr-xr-x  1 root root  1790 May 24  2008 oddjobd
-rwxr-xr-x  1 root root  1203 Jul 14  2008 pand
-rwxr-xr-x  1 root root  2020 May 24  2008 pcscd
-rwxr-xr-x  1 root root  1877 Jan  6  2007 portmap
-rwxr-xr-x  1 root root  1030 Mar 11  2009 psacct
-rwxr-xr-x  1 root root  2245 Jul  4  2009 rawdevices
-rwxr-xr-x  1 root root  1387 Sep 26  2009 rdisc
-rwxr-xr-x  1 root root   931 Mar 14  2007 readahead_early
-rwxr-xr-x  1 root root   930 Mar 14  2007 readahead_later
-rwxr-xr-x  1 root root  1793 Sep  3  2009 restorecond
-rwxr-xr-x  1 root root  2557 Sep  3  2009 rpcgssd
-rwxr-xr-x  1 root root  2072 Sep  3  2009 rpcidmapd
-rwxr-xr-x  1 root root  2482 Sep  3  2009 rpcsvcgssd
-rwxr-xr-x  1 root root  1676 Sep  3  2009 saslauthd
-rwxr-xr-x  1 root root  3349 Mar 14  2007 sendmail
-rwxr-xr-x  1 root root   647 Jul  4  2009 single
-rwxr-xr-x  1 root root  2740 Jan 21  2009 smartd
-rwxr-xr-x  1 root root  3362 Sep  3  2009 sshd
-rwxr-xr-x  1 root root  2043 May 24  2008 syslog
-rwxr-xr-x  1 root root  2174 May 24  2008 tcsd
-rwxr-xr-x  1 root root  1634 Jan 21  2009 wpa_supplicant
-rwxr-xr-x  1 root root  3518 Sep 21  2009 ypbind
-rwxr-xr-x  1 root root  1498 May 24  2008 yum-updatesd
[root@tmc_db02 init.d]# chmod 755 gp_postgres gp_postgres9
[root@tmc_db02 init.d]# ls -la
total 588
drwxr-xr-x  2 root root  4096 Mar 25 09:05 .
drwxr-xr-x 10 root root  4096 Mar 23 21:48 ..
-rwxr-xr-x  1 root root  1566 Sep  9  2009 acpid
-rwxr-xr-x  1 root root  1441 Mar 27  2007 anacron
-rwxr-xr-x  1 root root  1176 Jan  5  2007 atd
-rwxr-xr-x  1 root root  3328 Sep  3  2009 auditd
-rwxr-xr-x  1 root root  3059 Sep  3  2009 autofs
-rwxr-xr-x  1 root root  1848 Sep 19  2009 avahi-daemon
-rwxr-xr-x  1 root root  1789 Sep 19  2009 avahi-dnsconfd
-rwxr-xr-x  1 root root  1477 Jul 14  2008 bluetooth
-rwxr-xr-x  1 root root  1470 Nov 11  2007 conman
-rwxr-xr-x  1 root root  8824 Sep 26  2009 cpuspeed
-rwxr-xr-x  1 root root  1904 Mar 11  2009 crond
-rwxr-xr-x  1 root root  1942 Sep  3  2009 cups
-rwxr-xr-x  1 root root  1407 Mar 11  2009 dnsmasq
-rwxr-xr-x  1 root root   996 Jul 14  2008 dund
-rwxr-xr-x  1 root root  1965 Mar 11  2009 firstboot
-rwxr-xr-x  1 root root 14000 Jul  4  2009 functions
-rwxr-xr-x  1 root root  1778 Jan  6  2007 gpm
-rwxr-xr-x  1 root root  1447 Mar 25 09:04 gp_postgres
-rwxr-xr-x  1 root root  1489 Mar 25 09:05 gp_postgres9
-rwxr-xr-x  1 root root  1486 Sep  3  2009 haldaemon
-rwxr-xr-x  1 root root  5725 Jul  4  2009 halt
-rwxr-xr-x  1 root root   966 Jul 14  2008 hidd
-rwxr-xr-x  1 root root  7543 Sep  3  2009 ip6tables
-rwxr-xr-x  1 root root  7460 Sep  3  2009 iptables
-rwxr-xr-x  1 root root  1624 Jan  6  2007 irda
-rwxr-xr-x  1 root root  2193 Sep  3  2009 irqbalance
-rwxr-xr-x  1 root root   652 Jul  4  2009 killall
-rwxr-xr-x  1 root root  1331 Nov  9  2007 krb524
-rwxr-xr-x  1 root root  1406 Jan 22  2009 kudzu
-rwxr-xr-x  1 root root  1932 Sep  4  2009 lvm2-monitor
-rwxr-xr-x  1 root root  1914 Jan 20  2009 mcstrans
-rwxr-xr-x  1 root root  2125 Sep  3  2009 mdmonitor
-rwxr-xr-x  1 root root  1613 Sep  3  2009 mdmpd
-rwxr-xr-x  1 root root  1819 Jan 21  2009 messagebus
-rwxr-xr-x  1 root root  1926 Sep  3  2009 microcode_ctl
-rwxr-xr-x  1 root root  2156 Sep  3  2009 multipathd
-rwxr-xr-x  1 root root  2994 Jul  4  2009 netconsole
-rwxr-xr-x  1 root root  5849 Jul  4  2009 netfs
-rwxr-xr-x  1 root root  1258 May 24  2008 netplugd
-rwxr-xr-x  1 root root  8257 Jul  4  2009 network
-rwxr-xr-x  1 root root  1897 Sep  3  2009 NetworkManager
-rwxr-xr-x  1 root root  4668 Sep  3  2009 nfs
-rwxr-xr-x  1 root root  3302 Sep  3  2009 nfslock
-rwxr-xr-x  1 root root  2517 Oct 25 13:17 nscd
-rwxr-xr-x  1 root root  1790 May 24  2008 oddjobd
-rwxr-xr-x  1 root root  1203 Jul 14  2008 pand
-rwxr-xr-x  1 root root  2020 May 24  2008 pcscd
-rwxr-xr-x  1 root root  1877 Jan  6  2007 portmap
-rwxr-xr-x  1 root root  1030 Mar 11  2009 psacct
-rwxr-xr-x  1 root root  2245 Jul  4  2009 rawdevices
-rwxr-xr-x  1 root root  1387 Sep 26  2009 rdisc
-rwxr-xr-x  1 root root   931 Mar 14  2007 readahead_early
-rwxr-xr-x  1 root root   930 Mar 14  2007 readahead_later
-rwxr-xr-x  1 root root  1793 Sep  3  2009 restorecond
-rwxr-xr-x  1 root root  2557 Sep  3  2009 rpcgssd
-rwxr-xr-x  1 root root  2072 Sep  3  2009 rpcidmapd
-rwxr-xr-x  1 root root  2482 Sep  3  2009 rpcsvcgssd
-rwxr-xr-x  1 root root  1676 Sep  3  2009 saslauthd
-rwxr-xr-x  1 root root  3349 Mar 14  2007 sendmail
-rwxr-xr-x  1 root root   647 Jul  4  2009 single
-rwxr-xr-x  1 root root  2740 Jan 21  2009 smartd
-rwxr-xr-x  1 root root  3362 Sep  3  2009 sshd
-rwxr-xr-x  1 root root  2043 May 24  2008 syslog
-rwxr-xr-x  1 root root  2174 May 24  2008 tcsd
-rwxr-xr-x  1 root root  1634 Jan 21  2009 wpa_supplicant
-rwxr-xr-x  1 root root  3518 Sep 21  2009 ypbind
-rwxr-xr-x  1 root root  1498 May 24  2008 yum-updatesd
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]# /etc/rc.d/init.d
bash: /etc/rc.d/init.d: is a directory
[root@tmc_db02 init.d]# /etc/rc.d/init.d/gp_postgresql9
bash: /etc/rc.d/init.d/gp_postgresql9: No such file or directory
[root@tmc_db02 init.d]# /etc/rc.d/init.d/gp_postgres9
bash: /etc/rc.d/init.d/gp_postgres9: bin/bash: bad interpreter: No such file or directory
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]# /etc/rc.d/init.d
bash: /etc/rc.d/init.d: is a directory
[root@tmc_db02 init.d]# /etc/rc.d/init.d/gp_postgres9
bash: /etc/rc.d/init.d/gp_postgres9: bin/bash: bad interpreter: No such file or directory
[root@tmc_db02 init.d]# ls -la
total 588
drwxr-xr-x  2 root root  4096 Mar 25 09:05 .
drwxr-xr-x 10 root root  4096 Mar 23 21:48 ..
-rwxr-xr-x  1 root root  1566 Sep  9  2009 acpid
-rwxr-xr-x  1 root root  1441 Mar 27  2007 anacron
-rwxr-xr-x  1 root root  1176 Jan  5  2007 atd
-rwxr-xr-x  1 root root  3328 Sep  3  2009 auditd
-rwxr-xr-x  1 root root  3059 Sep  3  2009 autofs
-rwxr-xr-x  1 root root  1848 Sep 19  2009 avahi-daemon
-rwxr-xr-x  1 root root  1789 Sep 19  2009 avahi-dnsconfd
-rwxr-xr-x  1 root root  1477 Jul 14  2008 bluetooth
-rwxr-xr-x  1 root root  1470 Nov 11  2007 conman
-rwxr-xr-x  1 root root  8824 Sep 26  2009 cpuspeed
-rwxr-xr-x  1 root root  1904 Mar 11  2009 crond
-rwxr-xr-x  1 root root  1942 Sep  3  2009 cups
-rwxr-xr-x  1 root root  1407 Mar 11  2009 dnsmasq
-rwxr-xr-x  1 root root   996 Jul 14  2008 dund
-rwxr-xr-x  1 root root  1965 Mar 11  2009 firstboot
-rwxr-xr-x  1 root root 14000 Jul  4  2009 functions
-rwxr-xr-x  1 root root  1778 Jan  6  2007 gpm
-rwxr-xr-x  1 root root  1447 Mar 25 09:04 gp_postgres
-rwxr-xr-x  1 root root  1489 Mar 25 09:05 gp_postgres9
-rwxr-xr-x  1 root root  1486 Sep  3  2009 haldaemon
-rwxr-xr-x  1 root root  5725 Jul  4  2009 halt
-rwxr-xr-x  1 root root   966 Jul 14  2008 hidd
-rwxr-xr-x  1 root root  7543 Sep  3  2009 ip6tables
-rwxr-xr-x  1 root root  7460 Sep  3  2009 iptables
-rwxr-xr-x  1 root root  1624 Jan  6  2007 irda
-rwxr-xr-x  1 root root  2193 Sep  3  2009 irqbalance
-rwxr-xr-x  1 root root   652 Jul  4  2009 killall
-rwxr-xr-x  1 root root  1331 Nov  9  2007 krb524
-rwxr-xr-x  1 root root  1406 Jan 22  2009 kudzu
-rwxr-xr-x  1 root root  1932 Sep  4  2009 lvm2-monitor
-rwxr-xr-x  1 root root  1914 Jan 20  2009 mcstrans
-rwxr-xr-x  1 root root  2125 Sep  3  2009 mdmonitor
-rwxr-xr-x  1 root root  1613 Sep  3  2009 mdmpd
-rwxr-xr-x  1 root root  1819 Jan 21  2009 messagebus
-rwxr-xr-x  1 root root  1926 Sep  3  2009 microcode_ctl
-rwxr-xr-x  1 root root  2156 Sep  3  2009 multipathd
-rwxr-xr-x  1 root root  2994 Jul  4  2009 netconsole
-rwxr-xr-x  1 root root  5849 Jul  4  2009 netfs
-rwxr-xr-x  1 root root  1258 May 24  2008 netplugd
-rwxr-xr-x  1 root root  8257 Jul  4  2009 network
-rwxr-xr-x  1 root root  1897 Sep  3  2009 NetworkManager
-rwxr-xr-x  1 root root  4668 Sep  3  2009 nfs
-rwxr-xr-x  1 root root  3302 Sep  3  2009 nfslock
-rwxr-xr-x  1 root root  2517 Oct 25 13:17 nscd
-rwxr-xr-x  1 root root  1790 May 24  2008 oddjobd
-rwxr-xr-x  1 root root  1203 Jul 14  2008 pand
-rwxr-xr-x  1 root root  2020 May 24  2008 pcscd
-rwxr-xr-x  1 root root  1877 Jan  6  2007 portmap
-rwxr-xr-x  1 root root  1030 Mar 11  2009 psacct
-rwxr-xr-x  1 root root  2245 Jul  4  2009 rawdevices
-rwxr-xr-x  1 root root  1387 Sep 26  2009 rdisc
-rwxr-xr-x  1 root root   931 Mar 14  2007 readahead_early
-rwxr-xr-x  1 root root   930 Mar 14  2007 readahead_later
-rwxr-xr-x  1 root root  1793 Sep  3  2009 restorecond
-rwxr-xr-x  1 root root  2557 Sep  3  2009 rpcgssd
-rwxr-xr-x  1 root root  2072 Sep  3  2009 rpcidmapd
-rwxr-xr-x  1 root root  2482 Sep  3  2009 rpcsvcgssd
-rwxr-xr-x  1 root root  1676 Sep  3  2009 saslauthd
-rwxr-xr-x  1 root root  3349 Mar 14  2007 sendmail
-rwxr-xr-x  1 root root   647 Jul  4  2009 single
-rwxr-xr-x  1 root root  2740 Jan 21  2009 smartd
-rwxr-xr-x  1 root root  3362 Sep  3  2009 sshd
-rwxr-xr-x  1 root root  2043 May 24  2008 syslog
-rwxr-xr-x  1 root root  2174 May 24  2008 tcsd
-rwxr-xr-x  1 root root  1634 Jan 21  2009 wpa_supplicant
-rwxr-xr-x  1 root root  3518 Sep 21  2009 ypbind
-rwxr-xr-x  1 root root  1498 May 24  2008 yum-updatesd
[root@tmc_db02 init.d]# vi gp_postgres9

























#!/bin/bash
# gp_postgres   This shell script enables the automatic use of Postgres.
#
# Author:
#
# chkconfig:    345 70 01
#
# description:  Postgres.
# processname:
# config:
#

# source function library
. /etc/rc.d/init.d/functions

lockfile=/var/lock/subsys/gp_postgres9

RETVAL=0

start() {
        echo -n "PostgreSQL9 start: "
        touch "$lockfile" && success || failure
@
"gp_postgres9" 76L, 1490C written

-rwxr-xr-x  1 root root  1203 Jul 14  2008 pand
-rwxr-xr-x  1 root root  2020 May 24  2008 pcscd
-rwxr-xr-x  1 root root  1877 Jan  6  2007 portmap
-rwxr-xr-x  1 root root  1030 Mar 11  2009 psacct
-rwxr-xr-x  1 root root  2245 Jul  4  2009 rawdevices
-rwxr-xr-x  1 root root  1387 Sep 26  2009 rdisc
-rwxr-xr-x  1 root root   931 Mar 14  2007 readahead_early
-rwxr-xr-x  1 root root   930 Mar 14  2007 readahead_later
-rwxr-xr-x  1 root root  1793 Sep  3  2009 restorecond
-rwxr-xr-x  1 root root  2557 Sep  3  2009 rpcgssd
-rwxr-xr-x  1 root root  2072 Sep  3  2009 rpcidmapd
-rwxr-xr-x  1 root root  2482 Sep  3  2009 rpcsvcgssd
-rwxr-xr-x  1 root root  1676 Sep  3  2009 saslauthd
-rwxr-xr-x  1 root root  3349 Mar 14  2007 sendmail
-rwxr-xr-x  1 root root   647 Jul  4  2009 single
-rwxr-xr-x  1 root root  2740 Jan 21  2009 smartd
-rwxr-xr-x  1 root root  3362 Sep  3  2009 sshd
-rwxr-xr-x  1 root root  2043 May 24  2008 syslog
-rwxr-xr-x  1 root root  2174 May 24  2008 tcsd
-rwxr-xr-x  1 root root  1634 Jan 21  2009 wpa_supplicant
-rwxr-xr-x  1 root root  3518 Sep 21  2009 ypbind
-rwxr-xr-x  1 root root  1498 May 24  2008 yum-updatesd
[root@tmc_db02 init.d]# vi gp_postgres9
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]# /etc/rc.d/init.d/gp_postgres9
Usage: /etc/rc.d/init.d/gp_postgres9 {start|stop|status|restart|reload}
[root@tmc_db02 init.d]# /etc/rc.d/init.d/gp_postgres9 start
server startingrt:                                         [  OK  ]

[root@tmc_db02 init.d]# LOG:  database system was shut down at 2011-03-25 09:09:24 PDT
LOG:  autovacuum launcher started
LOG:  database system is ready to accept connections
ps auxw | grep postgres
postgres 19849  0.5  0.0 110056  4080 ?        S    09:20   0:00 /usr/local/postgresql-9.0.2/bin/postgres -D /usr/local/postgresql-9.0.2/data
postgres 19851  0.0  0.0 110056   980 ?        Ss   09:20   0:00 postgres: writer process
postgres 19852  0.0  0.0 110056   896 ?        Ss   09:20   0:00 postgres: wal writer process
postgres 19853  0.0  0.0 110896  1820 ?        Ss   09:20   0:00 postgres: autovacuum launcher process
postgres 19854  0.0  0.0  72968   792 ?        Ss   09:20   0:00 postgres: stats collector process
root     19856  0.0  0.0  61184   784 pts/0    S+   09:20   0:00 grep postgres
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]#
[root@tmc_db02 init.d]#

반응형

'IT > PostgreSQL' 카테고리의 다른 글

Archive Log의 보존 방법  (0) 2016.05.30
슬레이브에서 마스터로 승격  (0) 2016.05.30
Slave의 설정 및 reprication 동기화  (0) 2016.05.30
DB 작업 메모  (0) 2016.05.30
PostgreSQL9의 Replication  (0) 2016.05.30
Comments