Fix postfix to build against db-18, works for me in my local usage but might break for others. Will suggest reverting to db-5.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@20268 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
Ken Moffat 2018-08-03 17:23:16 +00:00
parent aadf6b2fdb
commit ffdbde9c2b
3 changed files with 23 additions and 2 deletions

View File

@ -1,12 +1,12 @@
<!-- $LastChangedBy$ $Date$ -->
<!ENTITY day "02"> <!-- Always 2 digits -->
<!ENTITY day "03"> <!-- Always 2 digits -->
<!ENTITY month "08"> <!-- Always 2 digits -->
<!ENTITY year "2018">
<!ENTITY copyrightdate "2001-&year;">
<!ENTITY copyholder "The BLFS Development Team">
<!ENTITY version "&year;-&month;-&day;">
<!ENTITY releasedate "August 2nd, &year;">
<!ENTITY releasedate "August 3rd, &year;">
<!ENTITY pubdate "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
<!ENTITY blfs-version "svn"> <!-- svn|[release #] -->
<!ENTITY lfs-version "development"> <!-- x.y|development -->

View File

@ -41,6 +41,18 @@
</itemizedlist>
</listitem>
-->
<listitem>
<para>August 3rd, 2018</para>
<itemizedlist>
<listitem>
<para>[ken] - Fix postfix to build against Berkeley DB-18. Minimally
tested, but without grokking what changed from DB-6 to DB-18 there
may possibly be breakage for some usage.
Addresses <ulink url="&blfs-ticket-root;10984">#10984</ulink>.</para>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<para>August 2nd, 2018</para>
<itemizedlist>

View File

@ -153,6 +153,15 @@ chown -v postfix:postfix /var/mail</userinput></screen>
For more details read the readme files.
</para>
<para>
The current version of <xref linkend="db"/> is not recognised by a
hard-coded test for known versions. To build with this version use the
following sed:
</para>
<screen><userinput>sed -i 's/DB_VERSION_MAJOR == 6 .*||/DB_VERSION_MAJOR &gt; 4 ||/' \
src/util/dict_db.c</userinput></screen>
<sect4>
<title>Cyrus-SASL</title>