Changeset 44884ae
- Timestamp:
- 12/01/2015 05:27:08 PM (7 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 7.10, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, ken/inkscape-core-mods, lazarus, nosym, perl-modules, plabs/python-mods, qt5new, trunk, upgradedb, xry111/intltool, xry111/soup3, xry111/test-20220226
- Children:
- 52e175b
- Parents:
- c8229af
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
introduction/welcome/changelog.xml
rc8229af r44884ae 48 48 <para>December 1st, 2015</para> 49 49 <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> 50 54 <listitem> 51 55 <para>[fernando] - Update to lua-5.3.2. Added optional "Basic tests". -
packages.ent
rc8229af r44884ae 426 426 <!-- Chapter 22 --> 427 427 <!ENTITY db-version "6.1.26"> 428 <!ENTITY lmdb-version "0.9.1 6">428 <!ENTITY lmdb-version "0.9.17"> 429 429 <!ENTITY mariadb-version "10.1.9"> 430 430 <!ENTITY postgresql-version "9.4.5"> -
server/databases/lmdb.xml
rc8229af r44884ae 7 7 <!ENTITY lmdb-download-http "https://github.com/LMDB/lmdb/archive/LMDB_&lmdb-version;.tar.gz"> 8 8 <!ENTITY lmdb-download-ftp " "> 9 <!ENTITY lmdb-md5sum " 0de89730b8f3f5711c2b3a4ba517b648">10 <!ENTITY lmdb-size "1 28KB">11 <!ENTITY lmdb-buildsize " 5.4MB">9 <!ENTITY lmdb-md5sum "8a5501c8b8535ddd6de67e95a8633aff"> 10 <!ENTITY lmdb-size "136 KB"> 11 <!ENTITY lmdb-buildsize "7.2 MB"> 12 12 <!ENTITY lmdb-time "less than 0.1 SBU"> 13 13 ]> … … 82 82 <title>Installation of lmdb</title> 83 83 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> 85 85 86 86 <para> … … 89 89 </para> 90 90 91 <screen><userinput>cd libraries/liblmdb &&92 sed -i 's| /man/|/share&|' Makefile &&93 94 make</userinput></screen>91 <screen><userinput>cd libraries/liblmdb && 92 sed -i 's|prefix)/man|mandir)|' Makefile && 93 make && 94 sed -i 's| liblmdb.a||' Makefile</userinput></screen> 95 95 96 96 <para> … … 102 102 </para> 103 103 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> 105 105 106 106 </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> 107 124 108 125 <sect2 role="content">
Note:
See TracChangeset
for help on using the changeset viewer.