blob: e5a926e17092f717d19a7f449c89c36e66b3bfb7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<sect2><title> </title><para> </para></sect2>
<sect2>
<title>Installation of Ncurses</title>
<para>Fix two minor things:</para>
<para><screen><userinput>patch -Np1 -i ../ncurses-&ncurses-version;-etip-2.patch
patch -Np1 -i ../ncurses-&ncurses-version;-vsscanf.patch</userinput></screen></para>
<para>The first patch corrects the <filename>etip.h</filename> header file, and
the second patch prevents some compiler warnings being issued on the use of
deprecated headers.</para>
<para>Now prepare Ncurses to be compiled:</para>
<para><screen><userinput>./configure --prefix=/stage1 --with-shared \
--without-debug --without-ada</userinput></screen></para>
<para>Compile the programs and libraries:</para>
<para><screen><userinput>make </userinput></screen></para>
<para>Then install them and their documentation:</para>
<para><screen><userinput>make install</userinput></screen></para>
</sect2>
|