Changeset 9b603d4


Ignore:
Timestamp:
04/27/2006 10:50:10 PM (18 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.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:
4e7b1578
Parents:
7cfb497
Message:

Updated to mysql-5.0.20a. Fixed testsuite failures.

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    r7cfb497 r9b603d4  
    336336<!-- End special note about Heimdal -->
    337337
    338 <!ENTITY mysql-version                "5.0.16">
     338<!ENTITY mysql-version                "5.0.20a">
    339339<!ENTITY postgresql-version           "8.1.3">
    340340
  • introduction/welcome/changelog.xml

    r7cfb497 r9b603d4  
    4646      <itemizedlist>
    4747        <listitem>
     48          <para>[bdubbs] - Updated to mysql-5.0.20a.  Fixed all testsuite failures.</para>
     49        </listitem>
     50        <listitem>
    4851          <para>[dnicholson] - Updated to OpenSSL-0.9.8a. Added patch to
    4952          Cyrus-SASL for compatibility with this version of OpenSSL.</para>
  • server/databases/mysql.xml

    r7cfb497 r9b603d4  
    99  <!ENTITY mysql-download-http " ">
    1010  <!ENTITY mysql-download-ftp  "ftp://mirror.mcs.anl.gov/pub/mysql/Downloads/MySQL-5.0/mysql-&mysql-version;.tar.gz">
    11   <!ENTITY mysql-md5sum        "ecf2ae1d782a8d129af940c15a44f477">
    12   <!ENTITY mysql-size          "19.0 MB">
    13   <!ENTITY mysql-buildsize     "195 MB (additional 180 MB to run the test suite)">
    14   <!ENTITY mysql-time          "3.8 SBU (additional 14.1 SBU to run the test suite)">
     11  <!ENTITY mysql-md5sum        "946867320094875c1a44f305bcdf1665">
     12  <!ENTITY mysql-size          "18.6 MB">
     13  <!ENTITY mysql-buildsize     "241 MB (additional 194 MB to run the test suite)">
     14  <!ENTITY mysql-time          "4.5 SBU (Test suite is an additional 48 minutes, only partially CPU dependent)">
    1515]>
    1616
     
    6565
    6666    <bridgehead renderas="sect4">Optional</bridgehead>
    67     <para role="optional"><xref linkend="openssl"/>,
    68     <xref linkend="tcpwrappers"/> and
     67    <para role="optional"><xref linkend="openssl"/> and
     68    <xref linkend="tcpwrappers"/>.
     69   
     70    <!-- Removing libedit because it causes more problems than it solves.
     71   
    6972    <ulink url="http://sourceforge.net/projects/libedit/">libedit</ulink>
    70     (as an alternative to readline)</para>
     73    (as an alternative to readline)-->
     74   
     75    </para>
    7176
    7277    <!-- These appear to be obsolete now that the docs have been pulled
     
    101106    -->
    102107
    103 <screen><userinput>./configure --prefix=/usr \
     108<screen><userinput>CFLAGS="-O3 -DPIC -fPIC -DUNDEF_HAVE_INITGROUPS -fno-strict-aliasing" \
     109CXXFLAGS="-O3 -fno-strict-aliasing -felide-constructors -fno-exceptions \
     110-fno-rtti -fPIC -DPIC -DUNDEF_HAVE_INITGROUPS" \
     111./configure --prefix=/usr \
    104112            --sysconfdir=/etc \
    105113            --libexecdir=/usr/sbin \
     
    111119            --without-debug \
    112120            --without-bench \
    113             --without-readline &amp;&amp;
     121            --without-readline \
     122            --with-berkeley-db \
     123            --with-extra-charsets=all &amp;&amp;
    114124make testdir=/tmp/mysql</userinput></screen>
    115125
     126<!--
    116127    <para>Some of the tests in the test suite are known to fail and this will
    117128    cause the test suite to abort at that point. Issue the following command
     
    125136done
    126137unset TESTFILE</userinput></screen>
    127 
     138-->
    128139    <para>To test the results, issue: <command>make test</command>.</para>
    129140
     
    150161    <title>Command Explanations</title>
    151162
     163    <para><parameter>CFLAGS=... CXXFLAGS=... </parameter>: These environment
     164    variables adjust the compiler optimization to avoid failures in the
     165    testsuite and other operations.</para>
     166
    152167    <para><parameter>--libexecdir=/usr/sbin</parameter>: This switch installs
    153168    the <command>mysqld</command> daemon and the
     
    169184    the <quote>LOAD DATA INFILE</quote> SQL statement.</para>
    170185
    171     <!-- Removing for now. See explanation above
    172     <para><parameter>CPPFLAGS="-D_GNU_SOURCE"</parameter> and
    173     <parameter>-with-named-thread-libs=-lpthread</parameter>: This environment
    174     variable and <command>configure</command> switch enables building the
    175     package on NPTL systems.</para>
    176     -->
    177 
    178186    <para><parameter>--with-unix-socket-path=/var/run/mysql</parameter>:
    179187    This switch puts the unix-domain socket into the
     
    188196    of the bundled copy.</para>
    189197
     198    <para><parameter>--with-berkeley-db</parameter>: This switch enables
     199    using <application>Berkeley DB</application> tables as a back end.</para>
     200
     201    <para><parameter>--with-extra-charsets=all</parameter>: This switch enables
     202    international character sets within the suite.</para>
     203
    190204    <para><command>make testdir=...</command>: This installs the test suite in
    191205    <filename class='directory'>/tmp/mysql</filename>. The test suite is not
     
    201215
    202216    <para><option>--with-libwrap</option>: This switch adds tcpwrappers
    203     support to <application>MySQL</application>. As of MySQL-&mysql-version;,
    204     this option is known to break the build.</para>
     217    support to <application>MySQL</application>.</para>
    205218
    206219  </sect2>
Note: See TracChangeset for help on using the changeset viewer.