Changeset a3f2e9cc


Ignore:
Timestamp:
02/14/2018 05:23:49 PM (6 years ago)
Author:
Pierre Labastie <pieere@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.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:
3b988672
Parents:
b7a66395
Message:

Patch pulseaudio for building with glibc-2.27

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    rb7a66395 ra3f2e9cc  
    11<!-- $LastChangedBy$ $Date$ -->
    22
    3 <!ENTITY day          "13">                   <!-- Always 2 digits -->
     3<!ENTITY day          "14">                   <!-- Always 2 digits -->
    44<!ENTITY month        "02">                   <!-- Always 2 digits -->
    55<!ENTITY year         "2018">
     
    77<!ENTITY copyholder   "The BLFS Development Team">
    88<!ENTITY version      "&year;-&month;-&day;">
    9 <!ENTITY releasedate  "February 13th, &year;">
     9<!ENTITY releasedate  "February 14th, &year;">
    1010<!ENTITY pubdate      "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
    1111<!ENTITY blfs-version "svn">                  <!-- svn|[release #] -->
  • introduction/welcome/changelog.xml

    rb7a66395 ra3f2e9cc  
    4242    </listitem>
    4343-->
     44    <listitem>
     45      <para>February 14th, 2018</para>
     46      <itemizedlist>
     47        <listitem>
     48          <para>[pierre] - Add a patch to pulseaudio-11.1, to allow building
     49          with glibc-2.27. Fixes
     50          <ulink url="&blfs-ticket-root;10366">#10366</ulink>.</para>
     51        </listitem>
     52      </itemizedlist>
     53    </listitem>
     54
    4455    <listitem>
    4556      <para>February 13th, 2018</para>
  • multimedia/libdriv/pulseaudio.xml

    rb7a66395 ra3f2e9cc  
    7272        <para>
    7373          Estimated build time: &pulseaudio-time;
     74        </para>
     75      </listitem>
     76    </itemizedlist>
     77
     78    <bridgehead renderas="sect3">Additional Downloads</bridgehead>
     79    <itemizedlist spacing="compact">
     80      <listitem>
     81        <para>
     82          Required patch if using glibc-2.27:
     83          <ulink url="&patch-root;/pulseaudio-&pulseaudio-version;-glibc_2.27_fix-1.patch"/>
    7484        </para>
    7585      </listitem>
     
    128138    </para>
    129139
    130 <screen><userinput>./configure --prefix=/usr        \
     140    <screen><userinput>patch -Np1 -i ../pulseaudio-&pulseaudio-version;-glibc_2.27_fix-1.patch &amp;&amp;
     141
     142AUTOPOINT='intltoolize --automake --copy' autoreconf -fiv &amp;&amp;
     143
     144./configure --prefix=/usr        \
    131145            --sysconfdir=/etc    \
    132146            --localstatedir=/var \
     
    160174  <sect2 role="commands">
    161175    <title>Command Explanations</title>
     176
     177    <para>
     178      <command>patch -Np1 -i ...</command>: This patch fixes a name conflict
     179      with glibc-2.27. It is usable with previous versions of glibc.
     180    </para>
     181
     182    <para>
     183      <command>AUTOPOINT='intltoolize ...</command>:
     184      <command>autoreconf</command> needs ot be run after applying the
     185      patch. Running <command>intltoolize</command> instead of
     186      <command>autopoint</command> prevents an error when running
     187      <command>configure</command> afterwards.
     188    </para>
    162189
    163190    <para>
Note: See TracChangeset for help on using the changeset viewer.