Changeset a0d558d
- Timestamp:
- 11/14/2017 03:35:19 AM (7 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 12.2, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gimp3, 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/for-12.3, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/spidermonkey128, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- 55781c2
- Parents:
- edcd6a6
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
general.ent
redcd6a6 ra0d558d 1 1 <!-- $LastChangedBy$ $Date$ --> 2 2 3 <!ENTITY day "1 1"> <!-- Always 2 digits -->3 <!ENTITY day "13"> <!-- Always 2 digits --> 4 4 <!ENTITY month "11"> <!-- Always 2 digits --> 5 5 <!ENTITY year "2017"> … … 7 7 <!ENTITY copyholder "The BLFS Development Team"> 8 8 <!ENTITY version "&year;-&month;-&day;"> 9 <!ENTITY releasedate "November 1 1th, &year;">9 <!ENTITY releasedate "November 13th, &year;"> 10 10 <!ENTITY pubdate "&year;-&month;-&day;"> <!-- metadata req. by TLDP --> 11 11 <!ENTITY blfs-version "svn"> <!-- svn|[release #] --> -
introduction/welcome/changelog.xml
redcd6a6 ra0d558d 43 43 --> 44 44 <listitem> 45 <para>November 13th, 2017</para> 46 <itemizedlist> 47 <listitem> 48 <para>[ken] - Update to firefox-57.0. Fixes 49 <ulink url="&blfs-ticket-root;10026">#10026</ulink>.</para> 50 </listitem> 51 </itemizedlist> 52 </listitem> 53 54 <listitem> 45 55 <para>November 11th, 2017</para> 46 56 <itemizedlist> -
packages.ent
redcd6a6 ra0d558d 721 721 <!ENTITY chromium-version "61.0.3163.100"> 722 722 <!ENTITY epiphany-version "3.26.1"> 723 <!ENTITY firefox-version "5 6.0.2">723 <!ENTITY firefox-version "57.0"> 724 724 <!ENTITY flashplayer-version "26.0.0.151"> 725 725 <!ENTITY qupzilla-version "2.2.1"> -
xsoft/graphweb/firefox.xml
redcd6a6 ra0d558d 7 7 <!ENTITY firefox-download-http "&mozilla-http;/firefox/releases/&firefox-version;/source/firefox-&firefox-version;.source.tar.xz"> 8 8 <!ENTITY firefox-download-ftp " "> 9 <!ENTITY firefox-md5sum " 4b6ab0f71a6163f962f83c31d8f8cb73">10 <!ENTITY firefox-size "24 4MB">11 <!ENTITY firefox-buildsize " 6.3 GB (139MB installed) without tests">12 <!ENTITY firefox-time " 18SBU (with parallelism=4) without tests">9 <!ENTITY firefox-md5sum "da93272486c69105dad663aafe29568c"> 10 <!ENTITY firefox-size "240 MB"> 11 <!ENTITY firefox-buildsize "7.2 GB (148 MB installed) without tests"> 12 <!ENTITY firefox-time "typically 18-22 SBU (with parallelism=4) without tests"> 13 13 ]> 14 14 … … 70 70 </listitem> 71 71 </itemizedlist> 72 73 <note> 74 <para> 75 The build times for this version of firefox (using stylo, the new CSS 76 rendering code) seem to vary widely between different machines. On one 77 old Intel i3 the build took 33 SBU. The reason for this is not understood. 78 A build with stylo disabled is typically 1 or 2 SBU quicker and needs 79 0.8GB less disk space. 80 </para> 81 </note> 72 82 73 83 <bridgehead renderas="sect3">Additional Downloads</bridgehead> … … 124 134 </para> 125 135 126 <note>127 <para>128 The firefox developers wish to enable Stylo (replacement code to handle129 Cascading Style Sheets) by default. At the moment that code cannot build130 with system versions of nspr and pixman (it fails to find their headers)131 so the BLFS editors have chosen to disable it. If you choose to enable132 it, you <emphasis>must</emphasis> add <package>clang</package> from133 <xref linkend="llvm"/> to the Required dependencies.134 </para>135 </note>136 137 136 <bridgehead renderas="sect4">Recommended</bridgehead> 138 137 <para role="recommended"> 139 138 <xref linkend="icu"/>, 140 139 <xref linkend="libevent"/>, 141 <xref linkend="libvpx"/>, and 140 <xref linkend="libvpx"/>, 141 <package>clang</package> from <xref linkend="llvm"/> (for stylo), and 142 142 <xref linkend="sqlite"/> 143 143 </para> … … 202 202 configuration options. A default <filename>mozconfig</filename> is 203 203 created below. To see the entire list of available configuration options 204 (and an abbreviated description of each one), issue <command>./configure204 (and an abbreviated description of some of them), issue <command>./configure 205 205 --help</command>. You may also wish to review the entire file and 206 206 uncomment any other desired options. Create the file by issuing the … … 210 210 <screen><userinput>cat > mozconfig << "EOF" 211 211 <literal># If you have a multicore machine, all cores will be used by default. 212 # If desired, you can reduce the number of cores used, e.g. to 1, by 213 # uncommenting the next line and setting a valid number of CPU cores. 212 # You can change the number of non-rust jobs by setting a valid number 213 # of cores in this option, but when rust crates are being compiled 214 # jobs will be scheduled for all the online CPU cores. 214 215 #mk_add_options MOZ_MAKE_FLAGS="-j1" 215 216 … … 243 244 244 245 # Stylo is the new CSS code, including the rust 'style' 245 # package. It is enabled by default, but cannot find the 246 # headers for system nspr, pixman. If you enable stylo you 247 # must comment out system-nspr system-pixman and 248 # system-cairo, and you must also have installed clang. 249 ac_add_options --disable-stylo 246 # package. It is enabled by default but requires clang. 247 # Uncomment this if you do not wish to use stylo. 248 #ac_add_options --disable-stylo 250 249 251 250 # Comment out following options if you have not installed … … 282 281 283 282 ac_add_options --enable-official-branding 284 ac_add_options --enable-safe-browsing285 ac_add_options --enable-url-classifier286 283 287 284 # From firefox-40, using system cairo caused firefox to crash … … 345 342 </para></note> 346 343 347 <screen><userinput>make -f client.mk</userinput></screen> 344 <!-- the BINDGEN_CFLAGS are to work around 345 https://bugzilla.mozilla.org/show_bug.cgi?id=1341234 346 which is reported to be fixed in ff58 --> 347 <screen><userinput>export BINDGEN_CFLAGS=$(pkg-config --cflags nspr pixman-1) && 348 make -f client.mk && 349 unset BINDGEN_CFLAGS</userinput></screen> 348 350 349 351 <para> … … 381 383 <sect2 role="commands"> 382 384 <title>Command Explanations</title> 385 386 <para> 387 <command>export BINDGEN_CFLAGS=$(pkg-config --cflags nspr pixman-1)</command>: 388 This works around a bug in the style rust package to allow it to find the 389 system headers for <package>nspr</package> and <package>pixman</package>. 390 </para> 383 391 384 392 <para>
Note:
See TracChangeset
for help on using the changeset viewer.