Ignore:
Timestamp:
02/06/2006 08:45:42 PM (18 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.5-systemd, 7.6, 7.6-systemd, 7.7, 7.7-systemd, 7.8, 7.8-systemd, 7.9, 7.9-systemd, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
1ca11cd
Parents:
cf7142a
Message:

Indenting chapter 6, part 8

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7358 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter06/ncurses.xml

    rcf7142a r2fa922f  
    11<?xml version="1.0" encoding="ISO-8859-1"?>
    2 <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
     2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
     3  "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
    34  <!ENTITY % general-entities SYSTEM "../general.ent">
    45  %general-entities;
    56]>
     7
    68<sect1 id="ch-system-ncurses" role="wrap">
    7 <title>Ncurses-&ncurses-version;</title>
    8 <?dbhtml filename="ncurses.html"?>
    9 
    10 <indexterm zone="ch-system-ncurses"><primary sortas="a-Ncurses">Ncurses</primary></indexterm>
    11 
    12 <sect2 role="package"><title/>
    13 <para>The Ncurses package contains libraries for terminal-independent
    14 handling of character screens.</para>
    15 
    16 <segmentedlist>
    17 <segtitle>&buildtime;</segtitle>
    18 <segtitle>&diskspace;</segtitle>
    19 <seglistitem><seg>0.6 SBU</seg><seg>18.6 MB</seg></seglistitem>
    20 </segmentedlist>
    21 
    22 <segmentedlist>
    23 <segtitle>&dependencies;</segtitle>
    24 <seglistitem><seg>Bash, Binutils, Coreutils, Diffutils,
    25 Gawk, GCC, Glibc, Grep, Make, and Sed</seg></seglistitem>
    26 </segmentedlist>
    27 </sect2>
    28 
    29 <sect2 role="installation">
    30 <title>Installation of Ncurses</title>
    31 <!-- Uncomment if using a dated ncurses release instead of a numbered one.
    32 
    33 <para>Since the release of Ncurses-&ncurses-version;, some bugs have been fixed
    34 and features added. The most important news are .......
    35 To get these fixes and features, apply the rollup patch:</para>
     9  <?dbhtml filename="ncurses.html"?>
     10
     11  <title>Ncurses-&ncurses-version;</title>
     12
     13  <indexterm zone="ch-system-ncurses">
     14    <primary sortas="a-Ncurses">Ncurses</primary>
     15  </indexterm>
     16
     17  <sect2 role="package">
     18    <title/>
     19
     20    <para>The Ncurses package contains libraries for terminal-independent
     21    handling of character screens.</para>
     22
     23    <segmentedlist>
     24      <segtitle>&buildtime;</segtitle>
     25      <segtitle>&diskspace;</segtitle>
     26
     27      <seglistitem>
     28        <seg>0.6 SBU</seg>
     29        <seg>18.6 MB</seg>
     30      </seglistitem>
     31    </segmentedlist>
     32
     33    <segmentedlist>
     34      <segtitle>&dependencies;</segtitle>
     35
     36      <seglistitem>
     37        <seg>Bash, Binutils, Coreutils, Diffutils, Gawk, GCC, Glibc, Grep,
     38        Make, and Sed</seg>
     39      </seglistitem>
     40    </segmentedlist>
     41
     42  </sect2>
     43
     44  <sect2 role="installation">
     45    <title>Installation of Ncurses</title>
     46    <!-- Uncomment if using a dated ncurses release instead of a numbered one.
     47
     48    <para>Since the release of Ncurses-&ncurses-version;, some bugs have been fixed
     49    and features added. The most important news are .......
     50    To get these fixes and features, apply the rollup patch:</para>
    3651
    3752<screen><userinput>bzcat ../&ncurses-rollup-patch; | patch -Np1</userinput></screen>
    38 -->
    39 
    40 <para>Since the release of Ncurses-&ncurses-version;, a memory leak and some
    41 display bugs were found and fixed upstream. Apply those fixes:</para>
     53    -->
     54
     55    <para>Since the release of Ncurses-&ncurses-version;, a memory leak and some
     56    display bugs were found and fixed upstream. Apply those fixes:</para>
    4257
    4358<screen><userinput>patch -Np1 -i ../&ncurses-fixes-patch;</userinput></screen>
    4459
    45 <para>Prepare Ncurses for compilation:</para>
     60    <para>Prepare Ncurses for compilation:</para>
    4661
    4762<screen><userinput>./configure --prefix=/usr --with-shared --without-debug --enable-widec</userinput></screen>
    4863
    49 <para>The meaning of the configure options:</para>
    50 
    51 <variablelist>
    52 <varlistentry>
    53 <term><parameter>--enable-widec</parameter></term>
    54 <listitem><para>This switch causes wide-character libraries
    55 (e.g., <filename class="libraryfile">libncursesw.so.&ncurses-version;</filename>)
    56 to be built instead of normal ones
    57 (e.g., <filename class="libraryfile">libncurses.so.&ncurses-version;</filename>).
    58 These wide-character libraries are usable in both multibyte and traditional 8-bit
    59 locales, while normal libraries work properly only in 8-bit locales.
    60 Wide-character and normal libraries are source-compatible, but not
    61 binary-compatible.</para>
    62 </listitem>
    63 </varlistentry>
    64 <!--
    65 <varlistentry>
    66 <term><parameter>- -without-cxx-binding</parameter></term>
    67 <listitem><para>This optional switch causes the
    68 <filename class="libraryfile">libncurses++w.a</filename> library
    69 not to be built. Nothing in LFS and BLFS uses this library.</para>
    70 </listitem>
    71 </varlistentry>
    72 -->
    73 </variablelist>
    74 
    75 <para>Compile the package:</para>
     64    <variablelist>
     65      <title>The meaning of the configure option:</title>
     66
     67      <varlistentry>
     68        <term><parameter>--enable-widec</parameter></term>
     69        <listitem>
     70          <para>This switch causes wide-character libraries (e.g., <filename
     71          class="libraryfile">libncursesw.so.&ncurses-version;</filename>)
     72          to be built instead of normal ones (e.g., <filename
     73          class="libraryfile">libncurses.so.&ncurses-version;</filename>).
     74          These wide-character libraries are usable in both multibyte and
     75          traditional 8-bit locales, while normal libraries work properly
     76          only in 8-bit locales. Wide-character and normal libraries are
     77          source-compatible, but not binary-compatible.</para>
     78        </listitem>
     79      </varlistentry>
     80
     81      <!--
     82      <varlistentry>
     83        <term><parameter>- -without-cxx-binding</parameter></term>
     84        <listitem>
     85          <para>This optional switch causes the
     86          <filename class="libraryfile">libncurses++w.a</filename> library
     87          not to be built. Nothing in LFS and BLFS uses this library.</para>
     88        </listitem>
     89      </varlistentry>
     90      -->
     91
     92    </variablelist>
     93
     94    <para>Compile the package:</para>
    7695
    7796<screen><userinput>make</userinput></screen>
    7897
    79 <para>This package does not come with a test suite.</para>
    80 
    81 <para>Install the package:</para>
     98    <para>This package does not come with a test suite.</para>
     99
     100    <para>Install the package:</para>
    82101
    83102<screen><userinput>make install</userinput></screen>
    84103
    85 <para>Give the Ncurses libraries execute permissions:</para>
     104    <para>Give the Ncurses libraries execute permissions:</para>
    86105
    87106<screen><userinput>chmod -v 755 /usr/lib/*.&ncurses-version;</userinput></screen>
    88107
    89 <para>Fix a library that should not be executable:</para>
     108    <para>Fix a library that should not be executable:</para>
    90109
    91110<screen><userinput>chmod -v 644 /usr/lib/libncurses++w.a</userinput></screen>
    92111
    93 <para>Move the libraries to the <filename class="directory">/lib</filename> directory,
    94 where they are expected to reside:</para>
     112    <para>Move the libraries to the <filename class="directory">/lib</filename> directory,
     113    where they are expected to reside:</para>
    95114
    96115<screen><userinput>mv -v /usr/lib/libncursesw.so.5* /lib</userinput></screen>
    97116
    98 <para>Because the libraries have been moved, one symlink points to
    99 a non-existent file. Recreate it:</para>
     117    <para>Because the libraries have been moved, one symlink points to
     118    a non-existent file. Recreate it:</para>
    100119
    101120<screen><userinput>ln -sfv ../../lib/libncursesw.so.5 /usr/lib/libncursesw.so</userinput></screen>
    102121
    103 <para>Many applications still expect the linker to be able to find
    104 non-wide-character Ncurses libraries. Trick such applications into linking with
    105 wide-character libraries by means of symlinks and linker scripts:</para>
     122    <para>Many applications still expect the linker to be able to find
     123    non-wide-character Ncurses libraries. Trick such applications into linking with
     124    wide-character libraries by means of symlinks and linker scripts:</para>
    106125
    107126<screen><userinput>for lib in curses ncurses form panel menu ; do \
    108         rm -vf /usr/lib/lib${lib}.so ; \
    109         echo "INPUT(-l${lib}w)" &gt;/usr/lib/lib${lib}.so ; \
    110         ln -sfv lib${lib}w.a /usr/lib/lib${lib}.a ; \
     127    rm -vf /usr/lib/lib${lib}.so ; \
     128    echo "INPUT(-l${lib}w)" &gt;/usr/lib/lib${lib}.so ; \
     129    ln -sfv lib${lib}w.a /usr/lib/lib${lib}.a ; \
    111130done &amp;&amp;
    112131ln -sfv libncurses++w.a /usr/lib/libncurses++.a</userinput></screen>
    113132
    114 <para>Finally, make sure that old applications that look for
    115 <filename class="libraryfile">-lcurses</filename> at build time are still
    116 buildable:</para>
     133    <para>Finally, make sure that old applications that look for
     134    <filename class="libraryfile">-lcurses</filename> at build time are still
     135    buildable:</para>
    117136
    118137<screen><userinput>echo "INPUT(-lncursesw)" &gt;/usr/lib/libcursesw.so &amp;&amp;
     
    121140ln -sfv libncurses.a /usr/lib/libcurses.a</userinput></screen>
    122141
    123 <note><para>The instructions above don't create non-wide-character Ncurses
    124 libraries since no package installed by compiling from sources would link
    125 against them at runtime.
    126 If you must have such libraries because of some binary-only application,
    127 build them with the following commands:</para>
     142    <note>
     143      <para>The instructions above don't create non-wide-character Ncurses
     144      libraries since no package installed by compiling from sources would
     145      link against them at runtime. If you must have such libraries because
     146      of some binary-only application, build them with the following
     147      commands:</para>
     148
    128149<screen role="nodump"><userinput>make distclean &amp;&amp;
    129150./configure --prefix=/usr --with-shared --without-normal \
    130         --without-debug --without-cxx-binding &amp;&amp;
     151  --without-debug --without-cxx-binding &amp;&amp;
    131152make sources libs &amp;&amp;
    132153cp -av lib/lib*.so.5* /usr/lib</userinput></screen>
    133 </note>
    134 </sect2>
    135 
    136 
    137 <sect2 id="contents-ncurses" role="content"><title>Contents of Ncurses</title>
    138 
    139 <segmentedlist>
    140 <segtitle>Installed programs</segtitle>
    141 <segtitle>Installed libraries</segtitle>
    142 <seglistitem><seg>captoinfo (link to tic), clear, infocmp, infotocap (link to tic),
    143 reset (link to tset), tack, tic, toe, tput, and tset</seg>
    144 <seg>libcursesw.[a,so] (symlink and linker script to libncursesw.[a,so]),
    145 libformw.[a,so], libmenuw.[a,so],
    146 libncurses++w.a, libncursesw.[a,so], libpanelw.[a,so] and their
    147 non-wide-character counterparts without "w" in the library names.</seg></seglistitem>
    148 </segmentedlist>
    149 
    150 <variablelist><bridgehead renderas="sect3">Short Descriptions</bridgehead>
    151 <?dbfo list-presentation="list"?>
    152 <?dbhtml list-presentation="table"?>
    153 
    154 <varlistentry id="captoinfo">
    155 <term><command>captoinfo</command></term>
    156 <listitem>
    157 <para>Converts a termcap description into a terminfo description</para>
    158 <indexterm zone="ch-system-ncurses captoinfo"><primary sortas="b-captoinfo">captoinfo</primary></indexterm>
    159 </listitem>
    160 </varlistentry>
    161 
    162 <varlistentry id="clear">
    163 <term><command>clear</command></term>
    164 <listitem>
    165 <para>Clears the screen, if possible</para>
    166 <indexterm zone="ch-system-ncurses clear"><primary sortas="b-clear">clear</primary></indexterm>
    167 </listitem>
    168 </varlistentry>
    169 
    170 <varlistentry id="infocmp">
    171 <term><command>infocmp</command></term>
    172 <listitem>
    173 <para>Compares or prints out terminfo descriptions</para>
    174 <indexterm zone="ch-system-ncurses infocmp"><primary sortas="b-infocmp">infocmp</primary></indexterm>
    175 </listitem>
    176 </varlistentry>
    177 
    178 <varlistentry id="infotocap">
    179 <term><command>infotocap</command></term>
    180 <listitem>
    181 <para>Converts a terminfo description into a termcap description</para>
    182 <indexterm zone="ch-system-ncurses infotocap"><primary sortas="b-infotocap">infotocap</primary></indexterm>
    183 </listitem>
    184 </varlistentry>
    185 
    186 <varlistentry id="reset">
    187 <term><command>reset</command></term>
    188 <listitem>
    189 <para>Reinitializes a terminal to its default values</para>
    190 <indexterm zone="ch-system-ncurses reset"><primary sortas="b-reset">reset</primary></indexterm>
    191 </listitem>
    192 </varlistentry>
    193 
    194 <varlistentry id="tack">
    195 <term><command>tack</command></term>
    196 <listitem>
    197 <para>The terminfo action checker; it is mainly used to test the
    198 accuracy of an entry in the terminfo database</para>
    199 <indexterm zone="ch-system-ncurses tack"><primary sortas="b-tack">tack</primary></indexterm>
    200 </listitem>
    201 </varlistentry>
    202 
    203 <varlistentry id="tic">
    204 <term><command>tic</command></term>
    205 <listitem>
    206 <para>The terminfo entry-description compiler that translates a
    207 terminfo file from source format into the binary format needed for the
    208 ncurses library routines. A terminfo file contains information on the
    209 capabilities of a certain terminal</para>
    210 <indexterm zone="ch-system-ncurses tic"><primary sortas="b-tic">tic</primary></indexterm>
    211 </listitem>
    212 </varlistentry>
    213 
    214 <varlistentry id="toe">
    215 <term><command>toe</command></term>
    216 <listitem>
    217 <para>Lists all available terminal types, giving the primary name and
    218 description for each</para>
    219 <indexterm zone="ch-system-ncurses toe"><primary sortas="b-toe">toe</primary></indexterm>
    220 </listitem>
    221 </varlistentry>
    222 
    223 <varlistentry id="tput">
    224 <term><command>tput</command></term>
    225 <listitem>
    226 <para>Makes the values of terminal-dependent capabilities available to
    227 the shell; it can also be used to reset or initialize a terminal or
    228 report its long name</para>
    229 <indexterm zone="ch-system-ncurses tput"><primary sortas="b-tput">tput</primary></indexterm>
    230 </listitem>
    231 </varlistentry>
    232 
    233 <varlistentry id="tset">
    234 <term><command>tset</command></term>
    235 <listitem>
    236 <para>Can be used to initialize terminals</para>
    237 <indexterm zone="ch-system-ncurses tset"><primary sortas="b-tset">tset</primary></indexterm>
    238 </listitem>
    239 </varlistentry>
    240 
    241 <varlistentry id="libcurses">
    242 <term><filename class="libraryfile">libcurses</filename></term>
    243 <listitem>
    244 <para>A link to <filename>libncurses</filename></para>
    245 <indexterm zone="ch-system-ncurses libcurses"><primary sortas="c-libcurses">libcurses</primary></indexterm>
    246 </listitem>
    247 </varlistentry>
    248 
    249 <varlistentry id="libncurses">
    250 <term><filename class="libraryfile">libncurses</filename></term>
    251 <listitem>
    252 <para>Contains functions to display text in many complex ways on a
    253 terminal screen; a good example of the use of these functions is the
    254 menu displayed during the kernel's <command>make menuconfig</command></para>
    255 <indexterm zone="ch-system-ncurses libncurses"><primary sortas="c-libncurses">libncurses</primary></indexterm>
    256 </listitem>
    257 </varlistentry>
    258 
    259 <varlistentry id="libform">
    260 <term><filename class="libraryfile">libform</filename></term>
    261 <listitem>
    262 <para>Contains functions to implement forms</para>
    263 <indexterm zone="ch-system-ncurses libform"><primary sortas="c-libform">libform</primary></indexterm>
    264 </listitem>
    265 </varlistentry>
    266 
    267 <varlistentry id="libmenu">
    268 <term><filename class="libraryfile">libmenu</filename></term>
    269 <listitem>
    270 <para>Contains functions to implement menus</para>
    271 <indexterm zone="ch-system-ncurses libmenu"><primary sortas="c-libmenu">libmenu</primary></indexterm>
    272 </listitem>
    273 </varlistentry>
    274 
    275 <varlistentry id="libpanel">
    276 <term><filename class="libraryfile">libpanel</filename></term>
    277 <listitem>
    278 <para>Contains functions to implement panels</para>
    279 <indexterm zone="ch-system-ncurses libpanel"><primary sortas="c-libpanel">libpanel</primary></indexterm>
    280 </listitem>
    281 </varlistentry>
    282 </variablelist>
    283 
    284 </sect2>
     154    </note>
     155
     156  </sect2>
     157
     158  <sect2 id="contents-ncurses" role="content">
     159    <title>Contents of Ncurses</title>
     160
     161    <segmentedlist>
     162      <segtitle>Installed programs</segtitle>
     163      <segtitle>Installed libraries</segtitle>
     164
     165      <seglistitem>
     166        <seg>captoinfo (link to tic), clear, infocmp, infotocap (link to tic),
     167        reset (link to tset), tack, tic, toe, tput, and tset</seg>
     168        <seg>libcursesw.[a,so] (symlink and linker script to libncursesw.[a,so]),
     169        libformw.[a,so], libmenuw.[a,so], libncurses++w.a, libncursesw.[a,so],
     170        libpanelw.[a,so] and their non-wide-character counterparts without "w"
     171        in the library names.</seg>
     172      </seglistitem>
     173    </segmentedlist>
     174
     175    <variablelist>
     176      <bridgehead renderas="sect3">Short Descriptions</bridgehead>
     177      <?dbfo list-presentation="list"?>
     178      <?dbhtml list-presentation="table"?>
     179
     180      <varlistentry id="captoinfo">
     181        <term><command>captoinfo</command></term>
     182        <listitem>
     183          <para>Converts a termcap description into a terminfo description</para>
     184          <indexterm zone="ch-system-ncurses captoinfo">
     185            <primary sortas="b-captoinfo">captoinfo</primary>
     186          </indexterm>
     187        </listitem>
     188      </varlistentry>
     189
     190      <varlistentry id="clear">
     191        <term><command>clear</command></term>
     192        <listitem>
     193          <para>Clears the screen, if possible</para>
     194          <indexterm zone="ch-system-ncurses clear">
     195            <primary sortas="b-clear">clear</primary>
     196          </indexterm>
     197        </listitem>
     198      </varlistentry>
     199
     200      <varlistentry id="infocmp">
     201        <term><command>infocmp</command></term>
     202        <listitem>
     203          <para>Compares or prints out terminfo descriptions</para>
     204          <indexterm zone="ch-system-ncurses infocmp">
     205            <primary sortas="b-infocmp">infocmp</primary>
     206          </indexterm>
     207        </listitem>
     208      </varlistentry>
     209
     210      <varlistentry id="infotocap">
     211        <term><command>infotocap</command></term>
     212        <listitem>
     213          <para>Converts a terminfo description into a termcap description</para>
     214          <indexterm zone="ch-system-ncurses infotocap">
     215            <primary sortas="b-infotocap">infotocap</primary>
     216          </indexterm>
     217        </listitem>
     218      </varlistentry>
     219
     220      <varlistentry id="reset">
     221        <term><command>reset</command></term>
     222        <listitem>
     223          <para>Reinitializes a terminal to its default values</para>
     224          <indexterm zone="ch-system-ncurses reset">
     225            <primary sortas="b-reset">reset</primary>
     226          </indexterm>
     227        </listitem>
     228      </varlistentry>
     229
     230      <varlistentry id="tack">
     231        <term><command>tack</command></term>
     232        <listitem>
     233          <para>The terminfo action checker; it is mainly used to test the
     234          accuracy of an entry in the terminfo database</para>
     235          <indexterm zone="ch-system-ncurses tack">
     236            <primary sortas="b-tack">tack</primary>
     237          </indexterm>
     238        </listitem>
     239      </varlistentry>
     240
     241      <varlistentry id="tic">
     242        <term><command>tic</command></term>
     243        <listitem>
     244          <para>The terminfo entry-description compiler that translates a
     245          terminfo file from source format into the binary format needed for the
     246          ncurses library routines. A terminfo file contains information on the
     247          capabilities of a certain terminal</para>
     248          <indexterm zone="ch-system-ncurses tic">
     249            <primary sortas="b-tic">tic</primary>
     250          </indexterm>
     251        </listitem>
     252      </varlistentry>
     253
     254      <varlistentry id="toe">
     255        <term><command>toe</command></term>
     256        <listitem>
     257          <para>Lists all available terminal types, giving the primary name and
     258          description for each</para>
     259          <indexterm zone="ch-system-ncurses toe">
     260            <primary sortas="b-toe">toe</primary>
     261          </indexterm>
     262        </listitem>
     263      </varlistentry>
     264
     265      <varlistentry id="tput">
     266        <term><command>tput</command></term>
     267        <listitem>
     268          <para>Makes the values of terminal-dependent capabilities available to
     269          the shell; it can also be used to reset or initialize a terminal or
     270          report its long name</para>
     271          <indexterm zone="ch-system-ncurses tput">
     272            <primary sortas="b-tput">tput</primary>
     273          </indexterm>
     274        </listitem>
     275      </varlistentry>
     276
     277      <varlistentry id="tset">
     278        <term><command>tset</command></term>
     279        <listitem>
     280          <para>Can be used to initialize terminals</para>
     281          <indexterm zone="ch-system-ncurses tset">
     282            <primary sortas="b-tset">tset</primary>
     283          </indexterm>
     284        </listitem>
     285      </varlistentry>
     286
     287      <varlistentry id="libcurses">
     288        <term><filename class="libraryfile">libcurses</filename></term>
     289        <listitem>
     290          <para>A link to <filename>libncurses</filename></para>
     291          <indexterm zone="ch-system-ncurses libcurses">
     292            <primary sortas="c-libcurses">libcurses</primary>
     293          </indexterm>
     294        </listitem>
     295      </varlistentry>
     296
     297      <varlistentry id="libncurses">
     298        <term><filename class="libraryfile">libncurses</filename></term>
     299        <listitem>
     300          <para>Contains functions to display text in many complex ways on a
     301          terminal screen; a good example of the use of these functions is the
     302          menu displayed during the kernel's <command>make
     303          menuconfig</command></para>
     304          <indexterm zone="ch-system-ncurses libncurses">
     305            <primary sortas="c-libncurses">libncurses</primary>
     306          </indexterm>
     307        </listitem>
     308      </varlistentry>
     309
     310      <varlistentry id="libform">
     311        <term><filename class="libraryfile">libform</filename></term>
     312        <listitem>
     313          <para>Contains functions to implement forms</para>
     314          <indexterm zone="ch-system-ncurses libform">
     315            <primary sortas="c-libform">libform</primary>
     316          </indexterm>
     317        </listitem>
     318      </varlistentry>
     319
     320      <varlistentry id="libmenu">
     321        <term><filename class="libraryfile">libmenu</filename></term>
     322        <listitem>
     323          <para>Contains functions to implement menus</para>
     324          <indexterm zone="ch-system-ncurses libmenu">
     325            <primary sortas="c-libmenu">libmenu</primary>
     326          </indexterm>
     327        </listitem>
     328      </varlistentry>
     329
     330      <varlistentry id="libpanel">
     331        <term><filename class="libraryfile">libpanel</filename></term>
     332        <listitem>
     333          <para>Contains functions to implement panels</para>
     334          <indexterm zone="ch-system-ncurses libpanel">
     335            <primary sortas="c-libpanel">libpanel</primary>
     336          </indexterm>
     337        </listitem>
     338      </varlistentry>
     339
     340    </variablelist>
     341
     342  </sect2>
    285343
    286344</sect1>
Note: See TracChangeset for help on using the changeset viewer.