Changeset 08d802f


Ignore:
Timestamp:
09/18/2015 01:54:38 AM (9 years ago)
Author:
Bruce Dubbs <bdubbs@…>
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, 7.8, 7.9, 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:
4936776
Parents:
9c718597
Message:

Provide non-wide-character ncurses instructions that are complient with version
5 of ncurses.

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    r9c718597 r08d802f  
    3838
    3939    <listitem>
     40      <para>2015-09-17</para>
     41      <itemizedlist>
     42        <listitem>
     43          <para>[bdubbs] - Provide non-wide-character ncurses
     44          instructions that are complient with version 5 of ncurses.</para>
     45        </listitem>
     46      </itemizedlist>
     47    </listitem>
     48
     49    <listitem>
    4050      <para>2015-09-16</para>
    4151      <itemizedlist>
  • chapter06/ncurses.xml

    r9c718597 r08d802f  
    140140
    141141    <note>
     142
    142143      <para>The instructions above don't create non-wide-character Ncurses
    143       libraries since no package installed by compiling from sources would
    144       link against them at runtime. If you must have such libraries because
    145       of some binary-only application or to be compliant with LSB, build
    146       the package again with the following commands:</para>
     144      libraries since no package installed by compiling from sources would link
     145      against them at runtime. Currently, the only known binary-only
     146      applications that link against non-wide-character Ncurses require version
     147      5.  If you must have such libraries because of some binary-only
     148      application or to be compliant with LSB, build the package again with the
     149      following commands:</para>
    147150
    148151<screen role="nodump"><userinput>make distclean
     
    151154            --without-normal \
    152155            --without-debug  \
    153             --without-cxx-binding
     156            --without-cxx-binding \
     157            --with-abi-version=5
    154158make sources libs
    155 cp -av lib/lib*.so.6* /usr/lib</userinput></screen>
     159cp -av lib/lib*.so.5* /usr/lib</userinput></screen>
    156160    </note>
    157161
  • general.ent

    r9c718597 r08d802f  
    1 <!ENTITY version         "SVN-20150916">
     1<!ENTITY version         "SVN-20150917">
    22<!ENTITY short-version   "svn">  <!-- Used below in &blfs-book;. Change to x.y for release
    33                                      but not -rc releases -->
    4 <!ENTITY releasedate     "September 16, 2015">
     4<!ENTITY releasedate     "September 17, 2015">
    55<!ENTITY copyrightdate   "1999-2015"><!-- jhalfs needs a literal dash, not &ndash; -->
    66<!ENTITY milestone       "7.8">
Note: See TracChangeset for help on using the changeset viewer.