PostgreSQLのインストールのためにNcursesが必要になるため、インストールします。
下記URLよりダウンロードしてください。
Announcing ncurses 5.7 - GNU Project - Free Software Foundation (FSF)
※ここでダウンロードしたバージョンは、ncurses-5.7.tar.gzです。
Ncursesのインストール
ダウンロードしたNcursesの移動・展開
ダウンロードしたファイルを移動します。
[root@*** ~]# cp /home/backup/ncurses-5.7.tar.gz /usr/local/src/postgresql/
[root@*** ~]# cd /usr/local/src/postgresql/
ダウンロードしたファイルを展開します。
[root@*** postgresql]# tar xzf ncurses-5.7.tar.gz
[root@*** postgresql]# cd ncurses-5.7
Ncursesのコンパイルとインストール
[root@*** ncurses-5.7]# ./configure --prefix=/usr/local/
[root@*** ncurses-5.7]# make
[root@*** ncurses-5.7]# make install



COMMENTS