Changeset 44884ae


Ignore:
Timestamp:
12/01/2015 05:27:08 PM (8 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 7.9, 8.0, 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, nosym, 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:
52e175b
Parents:
c8229af
Message:

Update to lmdb-0.9.7

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • introduction/welcome/changelog.xml

    rc8229af r44884ae  
    4848      <para>December 1st, 2015</para>
    4949      <itemizedlist>
     50       <listitem>
     51         <para>[bdubbs] - Update to lmdb-0.9.7.  Fixes
     52         <ulink url="&blfs-ticket-root;7195">#7195</ulink>.</para>
     53        </listitem>
    5054       <listitem>
    5155         <para>[fernando] - Update to lua-5.3.2. Added optional "Basic tests".
  • packages.ent

    rc8229af r44884ae  
    426426<!-- Chapter 22 -->
    427427<!ENTITY db-version                   "6.1.26">
    428 <!ENTITY lmdb-version                 "0.9.16">
     428<!ENTITY lmdb-version                 "0.9.17">
    429429<!ENTITY mariadb-version              "10.1.9">
    430430<!ENTITY postgresql-version           "9.4.5">
  • server/databases/lmdb.xml

    rc8229af r44884ae  
    77  <!ENTITY lmdb-download-http "https://github.com/LMDB/lmdb/archive/LMDB_&lmdb-version;.tar.gz">
    88  <!ENTITY lmdb-download-ftp  " ">
    9   <!ENTITY lmdb-md5sum        "0de89730b8f3f5711c2b3a4ba517b648">
    10   <!ENTITY lmdb-size          "128 KB">
    11   <!ENTITY lmdb-buildsize     "5.4 MB">
     9  <!ENTITY lmdb-md5sum        "8a5501c8b8535ddd6de67e95a8633aff">
     10  <!ENTITY lmdb-size          "136 KB">
     11  <!ENTITY lmdb-buildsize     "7.2 MB">
    1212  <!ENTITY lmdb-time          "less than 0.1 SBU">
    1313]>
     
    8282    <title>Installation of lmdb</title>
    8383
    84     <note><para>This package extracts to lmdb-LMDB_0.9.16.</para></note>
     84    <note><para>This package extracts to lmdb-LMDB_&lmdb-version;.</para></note>
    8585
    8686    <para>
     
    8989    </para>
    9090
    91 <screen><userinput>cd libraries/liblmdb               &amp;&amp;
    92 sed -i 's|/man/|/share&amp;|' Makefile &amp;&amp;
    93 
    94 make</userinput></screen>
     91<screen><userinput>cd libraries/liblmdb                     &amp;&amp;
     92sed -i 's|prefix)/man|mandir)|' Makefile &amp;&amp;
     93make                                     &amp;&amp;
     94sed -i 's| liblmdb.a||'         Makefile</userinput></screen>
    9595
    9696    <para>
     
    102102    </para>
    103103
    104 <screen role="root"><userinput>make prefix=/usr install</userinput></screen>
     104<screen role="root"><userinput>make prefix=/usr mandir=/usr/share/man install</userinput></screen>
    105105
    106106  </sect2>
     107
     108  <sect2 role="commands">
     109    <title>Command Explanations</title>
     110
     111    <para>
     112      <command>sed ... prefix ... Makefile</command>: The Makefile creates the
     113      man pages directory during install if it is not present. 
     114      This fixes the directory location.
     115    </para>
     116
     117    <para>
     118      <command>sed ... liblmdb.a ... Makefile</command>: The package executables
     119      use a static library so it must be created.  This command suppresses installation
     120      of the static library.
     121    </para>
     122
     123  </sect2> 
    107124
    108125  <sect2 role="content">
Note: See TracChangeset for help on using the changeset viewer.