Changeset 6c4bb8f


Ignore:
Timestamp:
07/03/2016 03:29:08 AM (8 years ago)
Author:
DJ Lucas <dj@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 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:
5246cff
Parents:
68f9243
Message:

Added firefox-47.0.1-gcc6-1.patch to fix issues with GCC-6.1.

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    r68f9243 r6c4bb8f  
    11<!-- $LastChangedBy$ $Date$ -->
    22
    3 <!ENTITY day          "02">                   <!-- Always 2 digits -->
     3<!ENTITY day          "03">                   <!-- Always 2 digits -->
    44<!ENTITY month        "07">                   <!-- Always 2 digits -->
    55<!ENTITY year         "2016">
     
    77<!ENTITY copyholder   "The BLFS Development Team">
    88<!ENTITY version      "&year;-&month;-&day;">
    9 <!ENTITY releasedate  "July 2nd &year;">
     9<!ENTITY releasedate  "July 3rd &year;">
    1010<!ENTITY pubdate      "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
    1111<!ENTITY blfs-version "svn">                  <!-- svn|[release #] -->
  • introduction/welcome/changelog.xml

    r68f9243 r6c4bb8f  
    4545-->
    4646    <listitem>
     47      <para>July 3rd, 2016</para>
     48      <itemizedlist>
     49        <listitem>
     50          <para>[dj] - Added firefox-47.0.1-gcc6-1.patch. Fixes
     51          <ulink url="&blfs-ticket-root;8015">#8015</ulink>.</para>
     52        </listitem>
     53      </itemizedlist>
     54    </listitem>
     55
     56    <listitem>
    4757      <para>July 2nd, 2016</para>
    4858      <itemizedlist>
    4959        <listitem>
    50           <para>[dj] - Update to Firefox-47.0.1. Fixes
    51           <ulink url="&blfs-ticket-root;8015">#8015</ulink>.</para>
     60          <para>[dj] - Update to Firefox-47.0.1.</para>
    5261        </listitem>
    5362        <listitem>
  • xsoft/graphweb/firefox.xml

    r68f9243 r6c4bb8f  
    7373    <bridgehead renderas="sect3">Additional Downloads</bridgehead>
    7474    <itemizedlist spacing="compact">
     75      <listitem>
     76        <para>
     77          Required patch if using gcc-6 or later
     78          <ulink url="&patch-root;/firefox-&firefox-version;-gcc6-1.patch"/>
     79        </para>
     80      </listitem>
    7581      <listitem>
    7682        <para>
     
    277283
    278284    <para>
     285      Fix an issue with GCC-6.0 and higher:
     286    </para>
     287
     288<screen><userinput>patch -Np1 -i ../firefox-&firefox-version;-gcc6-1.patch</userinput></screen>
     289
     290    <para>
    279291      If you are using gtk+-3.20 or later, apply a patch to restore the
    280292      slider on scrollbars:
     
    298310    </para></note>
    299311
    300 <screen><userinput>sed -e '/#include/i\
    301     print OUT "#define _GLIBCXX_INCLUDE_NEXT_C_HEADERS\\n"\;' \
    302     -i nsprpub/config/make-system-wrappers.pl
    303 
    304 sed -e '/#include/a\
    305     print OUT "#undef _GLIBCXX_INCLUDE_NEXT_C_HEADERS\\n"\;' \
    306     -i nsprpub/config/make-system-wrappers.pl
    307 
    308 CFLAGS+=" -fno-delete-null-pointer-checks -fno-lifetime-dse -fno-schedule-insns2"
    309 CXXFLAGS+=" -fno-delete-null-pointer-checks -fno-lifetime-dse -fno-schedule-insns2"
     312<screen><userinput>export CFLAGS_HOLD=$CFLAGS &amp;&amp;
     313export CXXFLAGS_HOLD=$CXXFLAGS &amp;&amp;
     314export CFLAGS+=" -fno-delete-null-pointer-checks -fno-lifetime-dse -fno-schedule-insns2" &amp;&amp;
     315export CXXFLAGS+=" -fno-delete-null-pointer-checks -fno-lifetime-dse -fno-schedule-insns2" &amp;&amp;
    310316
    311317make -f client.mk</userinput></screen>
     
    323329
    324330mkdir -pv    /usr/lib/mozilla/plugins  &amp;&amp;
    325 ln    -sfv   ../../mozilla/plugins /usr/lib/firefox-&firefox-version;/browser</userinput></screen>
     331ln    -sfv   ../../mozilla/plugins /usr/lib/firefox-&firefox-version;/browser &amp;&amp;
     332
     333export CFLAGS=$CFLAGS_HOLD &amp;&amp;
     334export CXXFLAGS=$CXXFLAGS_HOLD &amp;&amp;
     335unset CFLAGS_HOLD CXXFLAGS_HOLD</userinput></screen>
    326336
    327337  </sect2>
Note: See TracChangeset for help on using the changeset viewer.