Changeset 375113c


Ignore:
Timestamp:
11/16/2023 01:49:15 PM (6 months ago)
Author:
Xi Ruoyao <xry111@…>
Branches:
12.1, ken/TL2024, ken/tuningfonts, lazarus, plabs/newcss, python3.11, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, xry111/llvm18
Children:
540854c
Parents:
b42497a
Message:

bogofilter: Switch to Sqlite from Berkeley DB

Berkeley DB is some deathware (unless we switch to the Oracle
implementation which may have legal issues) and slated for removal in
the next BLFS release.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • general/genutils/bogofilter.xml

    rb42497a r375113c  
    7070    <bridgehead renderas="sect3">Bogofilter Dependencies</bridgehead>
    7171
    72     <bridgehead renderas="sect4">Required</bridgehead>
    73     <para role="required">
    74       <xref linkend="db"/>
    75     </para>
    76 
    7772    <bridgehead renderas="sect4">Recommended</bridgehead>
    7873    <para role="recommended">
    79       <xref linkend="gsl"/> and
    80       <xref linkend="libxml2"/>
     74      <xref linkend="gsl"/>,
     75      <xref linkend="libxml2"/>, and
     76      <!-- 'required' to make this strong to jhalfs -->
     77      <xref role='required' linkend="sqlite"/>
    8178    </para>
    8279
    8380    <bridgehead renderas="sect4">Optional</bridgehead>
    8481    <para role="optional">
     82      <xref linkend="db"/>
    8583      <xref linkend="lmdb"/>,
    86       <xref linkend="sqlite"/>,
    8784      <xref linkend="xmlto"/>,
    8885      <ulink url="https://dbmx.net/qdbm/">QDBM</ulink> and
     
    115112    </para>
    116113
    117 <screen><userinput>./configure --prefix=/usr --sysconfdir=/etc/bogofilter &amp;&amp;
     114<screen><userinput>./configure --prefix=/usr                \
     115            --sysconfdir=/etc/bogofilter \
     116            --with-database=sqlite3      &amp;&amp;
    118117make</userinput></screen>
    119118
     
    134133
    135134    <para>
    136       <option>--with-database=</option>: This switch allows you to change
    137       the default database from db to either qdbm, sqlite3 or tokyocabinet.
     135      <option>--with-database=sqlite3</option>: This switch make Bogofilter
     136      use <xref linkend='sqlite'/> as the database, instead of Berkeley
     137      DB<!-- which is beyond the scope of BLFS (slated for removal)-->.
     138    </para>
     139
     140    <para>
     141      <option>--with-database=</option>: This switch also allows to use
     142      lmdb, qdbm, or tokyocabinet as the database.
    138143    </para>
    139144
Note: See TracChangeset for help on using the changeset viewer.