readline.xml 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
  4. <!ENTITY % general-entities SYSTEM "../general.ent">
  5. %general-entities;
  6. ]>
  7. <sect1 id="ch-system-readline" role="wrap">
  8. <?dbhtml filename="readline.html"?>
  9. <sect1info condition="script">
  10. <productname>readline</productname>
  11. <productnumber>&readline-version;</productnumber>
  12. <address>&readline-url;</address>
  13. </sect1info>
  14. <title>Readline-&readline-version;</title>
  15. <indexterm zone="ch-system-readline">
  16. <primary sortas="a-Readline">Readline</primary>
  17. </indexterm>
  18. <sect2 role="package">
  19. <title/>
  20. <para>The Readline package is a set of libraries that offers command-line
  21. editing and history capabilities.</para>
  22. <segmentedlist>
  23. <segtitle>&buildtime;</segtitle>
  24. <segtitle>&diskspace;</segtitle>
  25. <seglistitem>
  26. <seg>&readline-fin-sbu;</seg>
  27. <seg>&readline-fin-du;</seg>
  28. </seglistitem>
  29. </segmentedlist>
  30. </sect2>
  31. <sect2 role="installation">
  32. <title>Installation of Readline</title>
  33. <para>Reinstalling Readline will cause the old libraries to be moved to
  34. &lt;libraryname&gt;.old. While this is normally not a problem, in some cases
  35. it can trigger a linking bug in <command>ldconfig</command>. This can be
  36. avoided by issuing the following two seds:</para>
  37. <screen><userinput remap="pre">sed -i '/MV.*old/d' Makefile.in
  38. sed -i '/{OLDSUFF}/c:' support/shlib-install</userinput></screen>
  39. <para>Prepare Readline for compilation:</para>
  40. <screen><userinput remap="configure">./configure --prefix=/usr \
  41. --disable-static \
  42. --with-curses \
  43. --docdir=/usr/share/doc/readline-&readline-version;</userinput></screen>
  44. <variablelist>
  45. <title>The meaning of the configure option:</title>
  46. <varlistentry>
  47. <term><parameter>--with-curses</parameter></term>
  48. <listitem>
  49. <para>This option tells Readline that it can find the termcap
  50. library functions in the curses library, rather than a separate
  51. termcap library. It allows generating a correct
  52. <filename>readline.pc</filename> file.</para>
  53. </listitem>
  54. </varlistentry>
  55. </variablelist>
  56. <para>Compile the package:</para>
  57. <screen><userinput remap="make">make SHLIB_LIBS="-lncursesw"</userinput></screen>
  58. <variablelist>
  59. <title>The meaning of the make option:</title>
  60. <varlistentry>
  61. <term><parameter>SHLIB_LIBS="-lncursesw"</parameter></term>
  62. <listitem>
  63. <para>This option forces Readline to link against the
  64. <filename class="libraryfile">libncursesw</filename> library.</para>
  65. </listitem>
  66. </varlistentry>
  67. </variablelist>
  68. <para>This package does not come with a test suite.</para>
  69. <para>Install the package:</para>
  70. <screen><userinput remap="install">make SHLIB_LIBS="-lncursesw" install</userinput></screen>
  71. <para>Now move the dynamic libraries to a more appropriate location
  72. and fix up symbolic links:</para>
  73. <screen><userinput remap="install">mv -v /usr/lib/lib{readline,history}.so.* /lib
  74. ln -sfv ../../lib/$(readlink /usr/lib/libreadline.so) /usr/lib/libreadline.so
  75. ln -sfv ../../lib/$(readlink /usr/lib/libhistory.so ) /usr/lib/libhistory.so</userinput></screen>
  76. <para>If desired, install the documentation:</para>
  77. <screen><userinput remap="install">install -v -m644 doc/*.{ps,pdf,html,dvi} /usr/share/doc/readline-&readline-version;</userinput></screen>
  78. </sect2>
  79. <!-- - - - - - - - - - -->
  80. <!-- Multilib - 32bit -->
  81. <!-- - - - - - - - - - -->
  82. <sect2 arch="ml_32,ml_all" role="installation">
  83. <title>Installation of Readline - 32bit</title>
  84. <para>Clean previous build:</para>
  85. <screen><userinput remap="pre">make distclean</userinput></screen>
  86. <para>Prepare Readline for compilation:</para>
  87. <screen><userinput remap="configure">CC="gcc -m32" ./configure \
  88. --prefix=/usr \
  89. --libdir=&usr-lib-m32; \
  90. --disable-static \
  91. --host=i686-pc-linux-gnu</userinput></screen>
  92. <para>Compile the package:</para>
  93. <screen><userinput remap="make">make</userinput></screen>
  94. <para>Install the package:</para>
  95. <screen><userinput remap="install">make DESTDIR=$PWD/DESTDIR install
  96. cp -Rv DESTDIR&usr-lib-m32;/* &usr-lib-m32;
  97. rm -rf DESTDIR</userinput></screen>
  98. </sect2><!-- m32 -->
  99. <!-- - - - - - - - - - -->
  100. <!-- Multilib - x32bit -->
  101. <!-- - - - - - - - - - -->
  102. <sect2 arch="ml_x32,ml_all" role="installation">
  103. <title>Installation of Readline - x32bit</title>
  104. <para>Clean previous build:</para>
  105. <screen><userinput remap="pre">make distclean</userinput></screen>
  106. <para>Prepare Readline for compilation:</para>
  107. <screen><userinput remap="configure">CC="gcc -mx32" ./configure \
  108. --prefix=/usr \
  109. --libdir=&usr-lib-mx32; \
  110. --disable-static \
  111. --host=x86_64-pc-linux-gnux32</userinput></screen>
  112. <para>Compile the package:</para>
  113. <screen><userinput remap="make">make</userinput></screen>
  114. <para>Install the package:</para>
  115. <screen><userinput remap="install">make DESTDIR=$PWD/DESTDIR install
  116. cp -Rv DESTDIR&usr-lib-mx32;/* &usr-lib-mx32;
  117. rm -rf DESTDIR</userinput></screen>
  118. </sect2><!-- mx32 -->
  119. <sect2 id="contents-readline" role="content">
  120. <title>Contents of Readline</title>
  121. <segmentedlist>
  122. <segtitle>Installed libraries</segtitle>
  123. <segtitle>Installed directories</segtitle>
  124. <seglistitem>
  125. <seg>libhistory.so and libreadline.so</seg>
  126. <seg>/usr/include/readline and
  127. /usr/share/doc/readline-&readline-version;</seg>
  128. </seglistitem>
  129. </segmentedlist>
  130. <variablelist>
  131. <bridgehead renderas="sect3">Short Descriptions</bridgehead>
  132. <?dbfo list-presentation="list"?>
  133. <?dbhtml list-presentation="table"?>
  134. <varlistentry id="libhistory">
  135. <term><filename class="libraryfile">libhistory</filename></term>
  136. <listitem>
  137. <para>Provides a consistent user interface for recalling lines
  138. of history</para>
  139. <indexterm zone="ch-system-readline libhistory">
  140. <primary sortas="c-libhistory">libhistory</primary>
  141. </indexterm>
  142. </listitem>
  143. </varlistentry>
  144. <varlistentry id="libreadline">
  145. <term><filename class="libraryfile">libreadline</filename></term>
  146. <listitem>
  147. <para>Provides a set of commands for manipulating text entered in an
  148. interactive session of a program</para>
  149. <indexterm zone="ch-system-readline libreadline">
  150. <primary sortas="c-libreadline">libreadline</primary>
  151. </indexterm>
  152. </listitem>
  153. </varlistentry>
  154. </variablelist>
  155. </sect2>
  156. </sect1>