Changeset 7d09fcb9 for xsoft


Ignore:
Timestamp:
01/07/2017 05:29:31 PM (7 years ago)
Author:
Pierre Labastie <pieere@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 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, 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:
69c0160
Parents:
ba27af98
Message:

Fix ECDSA code in mozilla apps,
so that more web sites are accessible. From upstream, thanks to DJ Lucas.

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

Location:
xsoft
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • xsoft/graphweb/firefox.xml

    rba27af98 r7d09fcb9  
    295295export CXXFLAGS+=" -fno-delete-null-pointer-checks -fno-lifetime-dse -fno-schedule-insns2" &amp;&amp;
    296296-->
    297 <screen><userinput>make -f client.mk</userinput></screen>
     297<screen><userinput>sed -e 's/256/224/'                           \
     298    -i netwerk/protocol/http/Http2Session.cpp &amp;&amp;
     299make -f client.mk</userinput></screen>
    298300
    299301    <para>
     
    324326  <sect2 role="commands">
    325327    <title>Command Explanations</title>
    326 <!--
    327     <para>
    328       <command>CFLAGS= ... CXXFLAGS= ...</command>: These settings work around
    329       code which gcc6 would otherwise regard as out-of-specification and allow
    330       it to produce a working program.
    331     </para>
    332 -->
     328
     329    <para>
     330      <command>sed -e 's/256/224/' ...</command>: Make the required key
     331      length for ECDSA encryption compatible with RFC7540 9.2.1. Otherwise
     332      some web sites cannot be accessed.
     333    </para>
     334
    333335    <para>
    334336      <command>make -f client.mk ...</command>: Mozilla products are packaged to
  • xsoft/graphweb/seamonkey.xml

    rba27af98 r7d09fcb9  
    272272unset EXTRA_FLAGS             &amp;&amp;
    273273
     274sed -e 's/256/224/'                                   \
     275    -i mozilla/netwerk/protocol/http/Http2Session.cpp &amp;&amp;
    274276make -f client.mk</userinput></screen>
    275277
     
    324326      settings work around code which gcc6 would otherwise regard as
    325327      out-of-specification and allow it to produce a working program.
     328    </para>
     329
     330    <para>
     331      <command>sed -e 's/256/224/' ...</command>: Make the required key
     332      length for ECDSA encryption compatible with RFC7540 9.2.1. Otherwise
     333      some web sites cannot be accessed.
    326334    </para>
    327335
  • xsoft/other/thunderbird.xml

    rba27af98 r7d09fcb9  
    266266    -i mozilla/nsprpub/config/make-system-wrappers.pl &amp;&amp;
    267267
     268sed -e 's/256/224/'                                   \
     269    -i mozilla/netwerk/protocol/http/Http2Session.cpp &amp;&amp;
    268270
    269271make -f client.mk</userinput></screen>
     
    308310      <command>sed ...</command>: These commands correct the source to be
    309311      compatible with gcc6 by preventing c++ scope errors.
     312    </para>
     313
     314    <para>
     315      <command>sed -e 's/256/224/' ...</command>: Make the required key
     316      length for ECDSA encryption compatible with RFC7540 9.2.1. Otherwise
     317      some web sites cannot be accessed.
    310318    </para>
    311319
Note: See TracChangeset for help on using the changeset viewer.