Changeset d044f84


Ignore:
Timestamp:
01/02/2005 11:03:12 PM (19 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.0, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 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:
0eb92388
Parents:
33f8c3b3
Message:

Added parameters to the make command in the DB-3 instructions to properly link the pthread library

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

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • content/databases/db-3.3.xml

    r33f8c3b3 rd044f84  
    99  <!ENTITY db-3.3-size          "2.3 MB">
    1010  <!ENTITY db-3.3-buildsize     "27.5 MB">
    11   <!ENTITY db-3.3-time          "0.80 SBU">
     11  <!ENTITY db-3.3-time          "0.63 SBU">
    1212]>
    1313
     
    2121
    2222<sect2>
    23 <title>Introduction to <application>Berkeley DB</application>-&db-3.3-version;</title>
     23<title>Introduction to
     24<application>Berkeley DB</application>-&db-3.3-version;</title>
    2425
    2526<para>The <application>Berkeley DB</application> package contains version
     
    3334url="&db-3.3-download-ftp;"/></para></listitem>
    3435<listitem><para>Download size: &db-3.3-size;</para></listitem>
    35 <listitem><para>Estimated Disk space required:
     36<listitem><para>Estimated disk space required:
    3637&db-3.3-buildsize;</para></listitem>
    3738<listitem><para>Estimated build time:
     
    4243<itemizedlist spacing='compact'>
    4344<listitem><para>Required Patch: <ulink
    44 url="http://www.sleepycat.com/update/&db-3.3-version;/patch.&db-3.3-version;.1"/></para></listitem>
     45url="http://www.sleepycat.com/update/&db-3.3-version;/patch.&db-3.3-version;.1"/>
     46</para></listitem>
    4547<listitem><para>Recommended Patch: <ulink
    46 url="http://www.sleepycat.com/update/&db-3.3-version;/patch.&db-3.3-version;.2"/></para></listitem>
    47 </itemizedlist></sect3>
     48url="http://www.sleepycat.com/update/&db-3.3-version;/patch.&db-3.3-version;.2"/>
     49</para></listitem>
     50</itemizedlist>
     51</sect3>
    4852
    4953</sect2>
     
    5256<title>Installation of <application>Berkeley DB</application></title>
    5357
    54 <para>Install <application>Berkeley DB</application> by running the following commands:
    55 </para>
     58<para>Install <application>Berkeley DB</application> by running the following
     59commands:</para>
    5660
    5761<screen><userinput><command>patch -Np0 -i ../patch.&db-3.3-version;.1 &amp;&amp;
     
    5963cd build_unix &amp;&amp;
    6064../dist/configure --prefix=/opt/db-3.3 --enable-compat185 &amp;&amp;
    61 make &amp;&amp;
     65make LIBSO_LIBS="-lpthread" LIBXSO_LIBS="-lpthread" &amp;&amp;
    6266make docdir=/opt/db-3.3/doc/Berkeley-DB install &amp;&amp;
    6367cd /opt/db-3.3/lib/ &amp;&amp;
     
    6872sed -i 's/^DB185/DB/' db_185.h &amp;&amp;
    6973ln -nsf /opt/db-3.3/include /usr/include/db3 &amp;&amp;
    70 chown -R root:root /opt/db-3.3/doc</command></userinput></screen>
     74chmod 755 /usr/lib/libdb-3.3.so &amp;&amp;
     75chown -R root:root /opt/db-3.3/{bin,include,doc}</command></userinput></screen>
    7176
    7277</sect2>
     
    9196database pointer to DB.</para>
    9297
    93 <para><command>chown -R root:root /opt/db-3.3/doc</command>: This command
    94 corrects the improper ownership of documentation files.</para>
     98<para><command>chown -R root:root /opt/db-3.3/{bin,include,doc}</command>:
     99This command corrects the improper ownership of installed files.</para>
    95100
    96101</sect2>
  • introduction/welcome/changelog.xml

    r33f8c3b3 rd044f84  
    2525<listitem><para>January 2nd, 2005 [randy]: Added commands to Imlib2
    2626instructions to install documentation, suggested by David
    27 Jensen; updated GNOME Print-0.37 instructions.</para></listitem>
     27Jensen; updated GNOME Print-0.37 instructions; added parameters to the
     28make command in the DB-3 instructions to properly link the
     29pthread library.</para></listitem>
    2830
    2931<listitem><para>January 1st, 2005 [randy]: Added LWP, Date::Manip and
Note: See TracChangeset for help on using the changeset viewer.