Changeset ac3ee9f8


Ignore:
Timestamp:
06/20/2005 06:02:21 PM (19 years ago)
Author:
David Jensen <djensen@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 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:
454f9ab
Parents:
413bf97
Message:

DB-4.3.27 test/build separation

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

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • introduction/welcome/changelog.xml

    r413bf97 rac3ee9f8  
    2626
    2727    <listitem>
     28      <para>Jun 20th, 2005 [djensen]: Separated the DB-4.3.27 test from
     29      the build, they are not compatible.</para>
     30    </listitem>
     31
     32     <listitem>
    2833      <para>Jun 20th, 2005 [dj]: Added missing required patch to dhcp
    2934      instructions.</para>
    3035    </listitem>
    3136
    32     <listitem>
     37   <listitem>
    3338      <para>June 19th, 2005 [djensen]: Changed links to t1lib-5.1.0 and
    3439          mcript link to mcrypt.sourceforge.net/</para>
  • server/databases/db.xml

    r413bf97 rac3ee9f8  
    6666    <title>Installation of Berkeley DB</title>
    6767
     68    <para>If you wish to test <application>Berkeley DB</application> before
     69    installing, skip ahead to testing, then return here.</para>
     70
    6871    <para>Install <application>Berkeley DB</application> by running the
    6972    following commands:</para>
     
    7578make LIBSO_LIBS="-lpthread" LIBXSO_LIBS="-lpthread"</userinput></screen>
    7679
    77     <para>To test the results, start <command>tclsh</command> and issue:</para>
    78 
    79 <screen><userinput>source ../test/test.tcl
    80 run_parallel run_std</userinput></screen>
    81 
    8280    <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
    8381
     
    8684/usr/lib/libdb* /usr/include/db* &amp;&amp;
    8785chown -R root:root /usr/share/doc/db-&db-version;</userinput></screen>
     86
     87  </sect2>
     88
     89  <sect2 role="testing">
     90    <title>Testing Berkeley DB</title>
     91
     92    <para>If you have already built <application>Berkeley DB</application>,
     93    clean up with the following command:</para>
     94
     95<screen><userinput>make realclean</userinput></screen>
     96
     97    <para>Build for the <application>Berkeley DB</application> test by running
     98    the following commands:</para>
     99
     100<screen><userinput>cd build_unix &amp;&amp;
     101../dist/configure --prefix=/usr \
     102    --enable-test --enable-tcl --with-tcl=/usr/lib &amp;&amp;
     103make LIBSO_LIBS="-lpthread" LIBXSO_LIBS="-lpthread"</userinput></screen>
     104
     105    <para>To test the results, start <command>tclsh</command> and issue the
     106    following, replacing the 4 with the number of parallel processes you wish:</para>
     107
     108<screen><userinput>source ../test/test.tcl
     109run_parallel 4 run_std</userinput></screen>
     110
     111    <para>Clean up with the following command:</para>
     112
     113<screen><userinput>make realclean</userinput></screen>
    88114
    89115  </sect2>
     
    104130    C++ API libraries.</para>
    105131
     132    <para><parameter>--enable-test</parameter>: Enables building the test suite
     133    (requires the two Tcl switches below).</para>
     134
     135    <para><parameter>--enable-tcl --with-tcl=/usr/lib</parameter>:
     136    Enables <application>Tcl</application> support in DB and creates the
     137    <filename class="libraryfile">libdb_tcl</filename> libraries.</para>
     138
     139    <para><parameter>--enable-java</parameter>: Enables
     140    <application>Java</application> support in DB and creates the
     141    <filename class='libraryfile'>libdb_java</filename> libraries.</para>
     142
     143    <para><parameter>--enable-rpc</parameter>: Enables building the
     144    <application>Berkeley DB</application> RPC server.</para>
     145
    106146    <para><command>make LIBSO_LIBS="-lpthread"
    107147    LIBXSO_LIBS="-lpthread"</command>: <command>configure</command>
     
    113153    the correct place.</para>
    114154
    115     <para><option>--enable-test</option>: Enables building the test suite
    116     (requires the two Tcl switches below).</para>
    117 
    118     <para><option>--enable-tcl --with-tcl=/usr/lib</option>:
    119     Enables <application>Tcl</application> support in DB and creates the
    120     <filename class="libraryfile">libdb_tcl</filename> libraries.</para>
    121 
    122     <para><option>--enable-java</option>: Enables
    123     <application>Java</application> support in DB and creates the
    124     <filename class='libraryfile'>libdb_java</filename> libraries.</para>
    125 
    126     <para><option>--enable-rpc</option>: Enables building the
    127     <application>Berkeley DB</application> RPC server.</para>
    128 
    129155  </sect2>
    130156
     
    138164
    139165      <seglistitem>
    140         <seg>berkeley_db_svc, db_archive, db_checkpoint, db_deadlock, db_dump,
    141         db_load, db_printlog, db_recover, db_stat, db_upgrade and db_verify</seg>
     166        <seg>db_archive, db_checkpoint, db_deadlock, db_dump, db_load,
     167        db_printlog, db_recover, db_stat, db_upgrade, db_verify and
     168        berkeley_db_svc if enabled</seg>
    142169        <seg>libdb.[so,a], libdb_cxx.[so,a], libdb_java.[so,a] and
    143170        libdb_tcl.[so,a]</seg>
Note: See TracChangeset for help on using the changeset viewer.