Changeset 341921f


Ignore:
Timestamp:
09/13/2015 08:18:47 PM (9 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
46db8b5
Parents:
7c12cab
Message:

Add a sed to fix a bug in libxml2

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@16405 af4574ff-66df-0310-9fd7-8a98e5e911e0

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • general/genlib/libxml2.xml

    r7c12cab r341921f  
    111111
    112112    <para>
    113        Apply two upstream fixes, which correct bugs in
    114        <command>xmlcatalog</command> and in the entity substitution
    115        mechanism:
    116     </para>
    117 
    118 <screen><userinput>sed \
    119   -e /xmlInitializeCatalog/d \
    120   -e 's/((ent->checked =.*&amp;&amp;/(((ent->checked == 0) ||\
    121           ((ent->children == NULL) \&amp;\&amp; (ctxt->options \&amp; XML_PARSE_NOENT))) \&amp;\&amp;/' \
    122   -i parser.c</userinput></screen>
     113       Apply three upstream fixes, which correct bugs in
     114       <command>xmlcatalog</command>, in the entity substitution
     115       mechanism, and in entity checking:
     116    </para>
     117
     118<screen><userinput>sed -e /xmlInitializeCatalog/d \
     119    -e 's/((ent->checked =.*&amp;&amp;/(((ent->checked == 0) ||\
     120            ((ent->children == NULL) \&amp;\&amp; (ctxt->options \&amp; XML_PARSE_NOENT))) \&amp;\&amp;/' \
     121    -i parser.c &amp;&amp;
     122
     123sed -e  "/The id is/{N;
     124                     a if (ctxt != NULL)
     125                    }" \
     126    -i valid.c</userinput></screen>
     127
    123128
    124129    <para>
  • introduction/welcome/changelog.xml

    r7c12cab r341921f  
    4949      <itemizedlist>
    5050        <listitem>
    51           <para>[ken] - remove obsolete Berkeley-DB dependency from
     51          <para>[bdubbs] - Add a sed to fix a bug in libxml2.</para>
     52        </listitem>
     53        <listitem>
     54          <para>[ken] - Remove obsolete Berkeley-DB dependency from
    5255          Python2 - thanks to Sylvain Etienne for noticing.</para>
    5356        </listitem>
Note: See TracChangeset for help on using the changeset viewer.