Changeset c2c2d76


Ignore:
Timestamp:
10/12/2004 07:20:40 PM (20 years ago)
Author:
Igor Živković <igor@…>
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:
922d7eea
Parents:
41605391
Message:

Changed MySQL instructions to compile without NPTL patch.

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • appendices/glossary.xml

    r41605391 rc2c2d76  
    420420<glossdef><para>Network Information Service</para></glossdef></glossentry>
    421421
     422<glossentry id="gNPTL"><glossterm><acronym>NPTL</acronym></glossterm>
     423<glossdef><para>Native Posix Thread Library</para></glossdef></glossentry>
     424
    422425<glossentry id="gNTP"><glossterm><acronym>NTP</acronym></glossterm>
    423426<glossdef><para>Network Time Protocol</para></glossdef></glossentry>
  • content/databases/mysql.xml

    r41605391 rc2c2d76  
    4040</sect3>
    4141
    42 <sect3><title>Additional downloads</title>
    43 <itemizedlist spacing='compact'>
    44 <listitem><para>Required Patch (for building against NPTL): <ulink
    45 url="&patch-root;/mysql-&mysql-version;-nptl-1.patch"/></para></listitem>
    46 </itemizedlist></sect3>
    47 
    4842<sect3><title><application>My<acronym>SQL</acronym></application> dependencies
    4943</title>
     
    6963running the following commands:</para>
    7064
    71 <screen><userinput><command>patch -Np1 -i ../mysql-&mysql-version;-nptl-1.patch &amp;&amp;
    72 ./configure --prefix=/usr --sysconfdir=/etc \
     65<screen><userinput><command>CPPFLAGS="-D_GNU_SOURCE" ./configure --prefix=/usr --sysconfdir=/etc \
    7366    --libexecdir=/usr/sbin --localstatedir=/srv/mysql \
    7467    --enable-thread-safe-client --enable-assembler \
    7568    --without-readline --without-debug \
    76     --enable-local-infile --without-bench &amp;&amp;
     69    --enable-local-infile --without-bench \
     70    --with-named-thread-libs=-lpthread &amp;&amp;
    7771make testdir=/usr/lib/mysql/mysql-test &amp;&amp;
    7872make testdir=/usr/lib/mysql/mysql-test install &amp;&amp;
     
    109103<para><option>--without-bench</option>: This switch skips building the
    110104benchmark suite.</para>
     105
     106<para><parameter>CPPFLAGS="-D_GNU_SOURCE" --with-named-thread-libs=-lpthread</parameter>:
     107This environment variable and configure switch enable building on
     108<acronym>NPTL</acronym> systems.</para>
    111109
    112110<para><command>make testdir=...</command>: This installs the test suite in
  • introduction/welcome/changelog.xml

    r41605391 rc2c2d76  
    2222
    2323<itemizedlist>
     24   
     25<listitem><para>October 12th, 2004 [igor]: Changed MySQL instructions to
     26compile without NPTL patch.</para></listitem>
    2427
    2528<listitem><para>October 12th, 2004 [igor]: Updated mouse configuration
Note: See TracChangeset for help on using the changeset viewer.