[HOME]
[戻る]
目次
2回目(2004/02/04 06:00)
解説
- 1回目は /usr/local にインストールしたので /usr にインストールをやり直す。
インストール
$ tar zxf ncurses-5.4.tar.gz
$ cd ncurses-5.4
$ ./configure --prefix=/usr --with-shared \
--disable-termcap --without-debug
$ make
$ su
# make install
設定 | 値 | 説明 |
--prefix | /usr | インストール先 |
--with-shared | - | ? |
--disable-termcap | - | ? |
--without-debug | - | ? |
| real | user | sys |
configure | 1m31.384s | 0m46.230s | 0m42.060s |
make | 20m12.456s | 18m11.540s | 1m58.680s |
1回目(2004/02/02 23:30)
解説
- php の configure 時に ncurses が無くてエラーになる。
インストール
$ tar zxf ncurses-5.4.tar.gz
$ cd ncurses-5.4
$ ./configure --prefix=/usr/local --with-shared \
--with-normal --without-ada \
--enable-termcap --enable-getcap --enable-symlinks \
--enable-colorfgbg --enable-hard-tabs --enable-widec
$ make
$ su
# make install
設定 | 値 | 説明 |
--prefix | /usr/local | インストール先 |
--with-shared | - | ? |
--with-normal | - | ? |
--without-ada | - | ? |
--enable-termcap | - | ? |
--enable-getcap | - | ? |
--enable-symlinks | - | ? |
--enable-colorfgbg | - | ? |
--enable-hard-tabs | - | ? |
--enable-widec | - | ? |
2005/02/04
ご意見・ご感想は,こちらの掲示板
まで.