Changeset 7948e10


Ignore:
Timestamp:
05/23/2006 11:57:03 PM (18 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
a0b3f1a8
Parents:
d912bc2c
Message:

Modified the configure script in the libfame instructions using a sed so that the -fstrict-aliasing flag is properly passed along to the Makefiles

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    rd912bc2c r7948e10  
    1 <!ENTITY day          "23">                   <!-- Always 2 digits -->
     1<!ENTITY day          "24">                   <!-- Always 2 digits -->
    22<!ENTITY month        "05">                   <!-- Always 2 digits -->
    33<!ENTITY year         "2006">
    44<!ENTITY version      "svn-&year;&month;&day;">
    5 <!ENTITY releasedate  "May &day;rd, &year;">
     5<!ENTITY releasedate  "May &day;th, &year;">
    66<!ENTITY pubdate      "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
    77<!ENTITY blfs-version "svn">                  <!-- svn|[release #] -->
  • introduction/welcome/changelog.xml

    rd912bc2c r7948e10  
    4343
    4444    <listitem>
     45      <para>May 24th, 2006</para>
     46      <itemizedlist>
     47        <listitem>
     48          <para>[randy] - Modified the configure script in the libfame
     49          instructions using a sed so that the -fstrict-aliasing flag is
     50          properly passed along to the Makefiles.</para>
     51        </listitem>
     52      </itemizedlist>
     53    </listitem>
     54
     55    <listitem>
    4556      <para>May 23rd, 2006</para>
    4657      <itemizedlist>
  • multimedia/libdriv/libfame.xml

    rd912bc2c r7948e10  
    7979
    8080<screen><userinput>patch -Np1 -i ../libfame-&libfame-version;-gcc34-1.patch &amp;&amp;
     81sed -i 's/$CC --version/$CC -dumpversion/' configure &amp;&amp;
    8182./configure --prefix=/usr &amp;&amp;
    8283make</userinput></screen>
     
    9192  <sect2 role="commands">
    9293    <title>Command Explanations</title>
     94
     95    <para><command>sed -i 's/$CC --version/$CC -dumpversion/'
     96    configure</command>: This command causes the <command>configure</command>
     97    script to use a different command to find out the version of the compiler.
     98    Without this command, the -fstrict-aliasing flag is not added to the
     99    <envar>CFLAGS</envar> variable in the various
     100    <filename>Makefile</filename>s.</para>
    93101
    94102    <para><option>--enable-sse</option>: This option is off by default and
Note: See TracChangeset for help on using the changeset viewer.