Changeset 7d564a1 for server/databases


Ignore:
Timestamp:
10/23/2010 05:28:28 PM (14 years ago)
Author:
Ken Moffat <ken@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 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:
15114f7
Parents:
31784c8
Message:

Security updates for poppler, firefox, webkitgtk. Update sqlite to suit, and pick up the outstanding poppler-data update.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/databases/sqlite.xml

    r31784c8 r7d564a1  
    77  <!ENTITY sqlite-download-http "http://sqlite.org/sqlite-amalgamation-&sqlite-version;.tar.gz">
    88  <!ENTITY sqlite-download-ftp  " ">
    9   <!ENTITY sqlite-md5sum        "8f1e86b3909a27f8122b0981afd16fcd">
    10   <!ENTITY sqlite-size          "1.4 MB">
     9  <!ENTITY sqlite-md5sum        "74fe78b264f1c434c4b159d45b78e9b7">
     10  <!ENTITY sqlite-size          "1.5 MB">
    1111  <!ENTITY sqlite-buildsize     "30 MB (includes optional documentation)">
    12   <!ENTITY sqlite-time          "0.5 SBU">
     12  <!ENTITY sqlite-time          "0.4 SBU">
    1313
    14   <!ENTITY sqlite-docs-version  "3_6_23">
    15   <!ENTITY sqlite-docs-md5sum   "4e724623aa011b1cadcf80e0b84d8895">
    16   <!ENTITY sqlite-docs-size     "2.7 MB">
     14  <!ENTITY sqlite-docs-version  "3_7_3">
     15  <!ENTITY sqlite-docs-md5sum   "ed6f040910936cf57ad55045fa3bcb1d">
     16  <!ENTITY sqlite-docs-size     "3.2 MB">
    1717  <!ENTITY sqlite-docs-download "http://sqlite.org/sqlite_docs_&sqlite-docs-version;.zip">
    1818]>
     
    3939    zero-configuration, transactional SQL database engine.</para>
    4040
    41     &lfs65_checked;
     41    &lfs67_checked;
    4242
    4343    <bridgehead renderas="sect3">Package Information</bridgehead>
     
    101101    commands:</para>
    102102
    103 <screen><userinput>./configure --prefix=/usr \
     103<screen><userinput>CFLAGS="-g -O2 -DSQLITE_SECURE_DELETE -DSQLITE_ENABLE_UNLOCK_NOTIFY=1" \
     104            ./configure --prefix=/usr \
    104105            --enable-threadsafe \
    105106            --enable-readline \
     
    125126  <sect2 role="commands">
    126127    <title>Command Explanations</title>
     128
     129    <para><parameter>CFLAGS="-g -O2 -DSQLITE_SECURE_DELETE -DSQLITE_ENABLE_UNLOCK_NOTIFY=1"
     130    </parameter>: Applications such as <application>firefox</application> require
     131    secure delete and enable unlock notify to be turned on.  The only way to do
     132    this is to include them in the CFLAGS.  By default, these are set to
     133    <literal>"-g -O2"</literal> so we specify that to preserve those settings.
     134    You may, of course, wish to omit the <literal>'-g'</literal> if you do not
     135    wish to create debugging information.  For further information on what can
     136    be specified see <ulink url="http://www.sqlite.org/compile.html"/>.</para>
    127137
    128138    <para><parameter>--enable-threadsafe</parameter>: Though the documentation
Note: See TracChangeset for help on using the changeset viewer.