Changeset 6c1d0776


Ignore:
Timestamp:
08/26/2017 03:10:51 AM (7 years ago)
Author:
DJ Lucas <dj@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 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:
975f600b
Parents:
00f9a2a1
Message:

Fix build issue for Dovecot.

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    r00f9a2a1 r6c1d0776  
    11<!-- $LastChangedBy$ $Date$ -->
    22
    3 <!ENTITY day          "24">                   <!-- Always 2 digits -->
     3<!ENTITY day          "26">                   <!-- Always 2 digits -->
    44<!ENTITY month        "08">                   <!-- Always 2 digits -->
    55<!ENTITY year         "2017">
     
    77<!ENTITY copyholder   "The BLFS Development Team">
    88<!ENTITY version      "&year;-&month;-&day;">
    9 <!ENTITY releasedate  "August 24th, &year;">
     9<!ENTITY releasedate  "August 26th, &year;">
    1010<!ENTITY pubdate      "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
    1111<!ENTITY blfs-version "svn">                  <!-- svn|[release #] -->
  • introduction/welcome/changelog.xml

    r00f9a2a1 r6c1d0776  
    4242    </listitem>
    4343-->
     44
     45    <listitem>
     46      <para>August 26th, 2017</para>
     47      <itemizedlist>
     48        <listitem>
     49          <para>[dj] - Fixed build issue for Dovecot by explictly
     50          linking to libtirpc.</para>
     51        </listitem>
     52      </itemizedlist>
     53    </listitem>
    4454
    4555    <listitem>
  • server/mail/dovecot.xml

    r00f9a2a1 r6c1d0776  
    3939    </para>
    4040
    41     &lfs80_checked;
     41    &lfs81_checked;
    4242
    4343    <bridgehead renderas="sect3">Package Information</bridgehead>
     
    121121    </para>
    122122
    123 <screen revision="sysv"><userinput>./configure --prefix=/usr                          \
     123<screen revision="sysv"><userinput>CFLAGS+="-I/usr/include/tirpc" \
     124LDFLAGS+="-ltirpc" \
     125./configure --prefix=/usr                          \
    124126            --sysconfdir=/etc                      \
    125127            --localstatedir=/var                   \
     
    128130make</userinput></screen>
    129131
    130 <screen revision="systemd"><userinput>./configure --prefix=/usr                          \
     132<screen revision="systemd"><userinput>CFLAGS+="-I/usr/include/tirpc" \
     133LDFLAGS+="-ltirpc" \
     134./configure --prefix=/usr                          \
    131135            --sysconfdir=/etc                      \
    132136            --localstatedir=/var                   \
     
    155159  <sect2 role="commands">
    156160    <title>Command Explanations</title>
     161
     162    <para><command>CFLAGS+=...LDFLAGS+=...</command>: build with libtirpc
     163    instead of the recently removed RPC code provided by GlibC.</para>
    157164
    158165    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
Note: See TracChangeset for help on using the changeset viewer.