File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -47,8 +47,8 @@ Vim は標準的な configure/make 手法を用いてコンパイルすること
47
47
48
48
Haiku は端末ライブラリとして "ncurses6" を利用しており、そのため Haiku でビル
49
49
ドにあたってのコンフィグのために "ncurses6_devel" を HaikuDepot からインストー
50
- ルする必要があります。それには ./configure コマンドに "--with-tlib=ncurses6"
51
- を追加するだけです 。
50
+ ルする必要があります。それには ./configure コマンドに "--with-tlib=ncurses" を
51
+ 追加するだけです 。
52
52
53
53
"make" で Vim をコンパイルでき、次いで "install" でインストールすることができ
54
54
ます。GUI 版で追加的に GUI レスの vim バイナリもインストールされ、Haiku にシー
@@ -57,12 +57,14 @@ Haiku は端末ライブラリとして "ncurses6" を利用しており、そ
57
57
./configure --prefix=`finddir B_SYSTEM_NONPACKAGED_DIRECTORY` \
58
58
--datarootdir=`finddir B_SYSTEM_NONPACKAGED_DATA_DIRECTORY` \
59
59
--mandir=`finddir B_SYSTEM_NONPACKAGED_DIRECTORY`/documentation/man \
60
+ --with-tlib=ncurses
60
61
make clean
61
62
make install
62
63
63
64
./configure --prefix=`finddir B_SYSTEM_NONPACKAGED_DIRECTORY` \
64
65
--datarootdir=`finddir B_SYSTEM_NONPACKAGED_DATA_DIRECTORY` \
65
66
--mandir=`finddir B_SYSTEM_NONPACKAGED_DIRECTORY`/documentation/man \
67
+ --with-tlib=ncurses \
66
68
--disable-gui
67
69
make clean
68
70
make install
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ features you can enable/disable.
47
47
48
48
Haiku uses "ncurses6" as its terminal library, therefore you need to have
49
49
"ncurses6_devel" package installed from HaikuDepot in order to configure
50
- the Haiku build. Just append "--with-tlib=ncurses6 " to ./configure command
50
+ the Haiku build. Just append "--with-tlib=ncurses " to ./configure command.
51
51
52
52
Now you should use "make" to compile Vim, then "make install" to install it.
53
53
For seamless integration into Haiku, the GUI-less vim binary should be
@@ -56,12 +56,14 @@ additionally installed over the GUI version. Typical build commands are:
56
56
./configure --prefix=`finddir B_SYSTEM_NONPACKAGED_DIRECTORY` \
57
57
--datarootdir=`finddir B_SYSTEM_NONPACKAGED_DATA_DIRECTORY` \
58
58
--mandir=`finddir B_SYSTEM_NONPACKAGED_DIRECTORY`/documentation/man \
59
+ --with-tlib=ncurses \
59
60
make clean
60
61
make install
61
62
62
63
./configure --prefix=`finddir B_SYSTEM_NONPACKAGED_DIRECTORY` \
63
64
--datarootdir=`finddir B_SYSTEM_NONPACKAGED_DATA_DIRECTORY` \
64
65
--mandir=`finddir B_SYSTEM_NONPACKAGED_DIRECTORY`/documentation/man \
66
+ --with-tlib=ncurses \
65
67
--disable-gui
66
68
make clean
67
69
make install
You can’t perform that action at this time.
0 commit comments