aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06/ncurses-inst.xml
blob: f84e20a34079108ba5db3b88e187030c50480ba2 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
<sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>

<sect2>
<title>Installation of Ncurses</title>

<para><screen><userinput>patch -Np1 -i ../ncurses-&ncurses-version;-etip-2.patch
patch -Np1 -i ../ncurses-&ncurses-version;-vsscanf.patch</userinput></screen></para>

<para>Prepare Ncurses to be compiled:</para>

<para><screen><userinput>./configure --prefix=/usr --with-shared \
&nbsp;&nbsp;&nbsp;&nbsp;--without-debug</userinput></screen></para>

<para>Continue with compiling the package:</para>

<para><screen><userinput>make</userinput></screen></para>

<para>Install the package:</para>

<para><screen><userinput>make install</userinput></screen></para>

<para>Give the ncurses libraries executable permission:</para>

<para><screen><userinput>chmod 755 /usr/lib/*.&ncurses-version;</userinput></screen></para>

<para>And fix up a library that shouldn't be executable at all:</para>

<para><screen><userinput>chmod 644 /usr/lib/libncurses++.a</userinput></screen></para>

<para>Move the libraries to the <filename>/lib</filename> directory,
where they're expected to reside:</para>

<para><screen><userinput>mv /usr/lib/libncurses.so.5* /lib</userinput></screen></para>

<para>Since the libraries have been moved to
<filename>/lib</filename>, a few symlinks are currently pointing
towards non-existing files. Recreate those symlinks:</para>

<para><screen><userinput>ln -sf ../../lib/libncurses.so.5 /usr/lib/libncurses.so
ln -sf libncurses.so /usr/lib/libcurses.so</userinput></screen></para>
</sect2>