Author: dj Date: 2011-01-23 15:58:10 -0700 (Sun, 23 Jan 2011) New Revision: 8850
Added: trunk/BOOK/general/genlib/talloc.xml Modified: trunk/BOOK/general.ent trunk/BOOK/general/genlib/genlib.xml trunk/BOOK/introduction/welcome/changelog.xml trunk/BOOK/x/lib/mesalib.xml Log: Added talloc-2.0.1. Modified: trunk/BOOK/general/genlib/genlib.xml =================================================================== --- trunk/BOOK/general/genlib/genlib.xml 2011-01-23 21:12:25 UTC (rev 8849) +++ trunk/BOOK/general/genlib/genlib.xml 2011-01-23 22:58:10 UTC (rev 8850) @@ -97,9 +97,9 @@ <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="libdaemon.xml"/> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="ptlib.xml"/> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="libatasmart.xml"/> + <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="talloc.xml"/> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="telepathy-glib.xml"/> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="wv.xml"/> - <!-- <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="libxml.xml"/> --> <!-- <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="ispell.xml"/> --> <!-- <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="fam.xml"/> --> Added: trunk/BOOK/general/genlib/talloc.xml =================================================================== --- trunk/BOOK/general/genlib/talloc.xml (rev 0) +++ trunk/BOOK/general/genlib/talloc.xml 2011-01-23 22:58:10 UTC (rev 8850) @@ -0,0 +1,113 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" + "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [ + <!ENTITY % general-entities SYSTEM "../../general.ent"> + %general-entities; + + <!ENTITY talloc-download-http "http://samba.org/ftp/talloc/talloc-&talloc-version;.tar.gz"> + <!ENTITY talloc-download-ftp "ftp://samba.org/pub/talloc/talloc-&talloc-version;.tar.gz"> + <!ENTITY talloc-md5sum "c6e736540145ca58cb3dcb42f91cf57b"> + <!ENTITY talloc-size "244 KB"> + <!ENTITY talloc-buildsize "2.2 MB"> + <!ENTITY talloc-time "0.1 SBU"> +]> + +<sect1 id="talloc" xreflabel="talloc-&talloc-version;"> + <?dbhtml filename="talloc.html"?> + + <sect1info> + <othername>$LastChangedBy$</othername> + <date>$Date$</date> + </sect1info> + + <title>talloc-&talloc-version;</title> + + <indexterm zone="talloc"> + <primary sortas="a-talloc">talloc</primary> + </indexterm> + + <sect2 role="package"> + <title>Introduction to talloc</title> + + <para><application>talloc</application> provides a hierarchical, reference + counted memory pool system with destructors. It is the core memory + allocator used in <application>Samba</application> and + <application>MesaLib</application>.</para> + + <bridgehead renderas="sect3">Package Information</bridgehead> + <itemizedlist spacing="compact"> + <listitem> + <para>Download (HTTP): <ulink url="&talloc-download-http;"/></para> + </listitem> + <listitem> + <para>Download (FTP): <ulink url="&talloc-download-ftp;"/></para> + </listitem> + <listitem> + <para>Download MD5 sum: &talloc-md5sum;</para> + </listitem> + <listitem> + <para>Download size: &talloc-size;</para> + </listitem> + <listitem> + <para>Estimated disk space required: &talloc-buildsize;</para> + </listitem> + <listitem> + <para>Estimated build time: &talloc-time;</para> + </listitem> + </itemizedlist> + + </sect2> + + <sect2 role="installation"> + <title>Installation of talloc</title> + + <para>Install <application>talloc</application> by running the following + commands:</para> + +<screen><userinput>./configure --prefix=/usr && +make</userinput></screen> + + <para>To check the results, issue <command>make check</command>.</para> + + <para>Now, as the <systemitem class="username">root</systemitem> user:</para> + +<screen role="root"><userinput>make install</userinput></screen> + + </sect2> + + <sect2 role="content"> + <title>Contents</title> + + <segmentedlist> + <segtitle>Installed Programs</segtitle> + <segtitle>Installed Libraries</segtitle> + <segtitle>Installed Directory</segtitle> + + <seglistitem> + <seg>None</seg> + <seg>libtalloc.{a,so}</seg> + <seg>None</seg> + </seglistitem> + </segmentedlist> + + <variablelist> + <bridgehead renderas="sect3">Short Descriptions</bridgehead> + <?dbfo list-presentation="list"?> + <?dbhtml list-presentation="table"?> + + <varlistentry id="talloc-lib"> + <term><filename class='libraryfile'>libtalloc.{a,so}</filename></term> + <listitem> + <para>contains a replacemnt for the <application>glibc</application> + malloc function.</para> + <indexterm zone="talloc talloc-lib"> + <primary sortas="c-talloc">libtalloc.{a,so}</primary> + </indexterm> + </listitem> + </varlistentry> + + </variablelist> + + </sect2> + +</sect1> Property changes on: trunk/BOOK/general/genlib/talloc.xml ___________________________________________________________________ Added: svn:keywords + LastChangedBy Date Modified: trunk/BOOK/general.ent =================================================================== --- trunk/BOOK/general.ent 2011-01-23 21:12:25 UTC (rev 8849) +++ trunk/BOOK/general.ent 2011-01-23 22:58:10 UTC (rev 8850) @@ -196,6 +196,7 @@ <!ENTITY libdaemon-version "0.14"> <!ENTITY ptlib-version "2.6.7"> <!ENTITY libatasmart-version "0.17"> +<!ENTITY talloc-version "2.0.1"> <!ENTITY telepathy-glib-version "0.9.2"> <!ENTITY wv-version "1.2.9"> Modified: trunk/BOOK/introduction/welcome/changelog.xml =================================================================== --- trunk/BOOK/introduction/welcome/changelog.xml 2011-01-23 21:12:25 UTC (rev 8849) +++ trunk/BOOK/introduction/welcome/changelog.xml 2011-01-23 22:58:10 UTC (rev 8850) @@ -97,6 +97,9 @@ corrected dependencies, and reverted to legacy configuration pages until new page matures.</para> </listitem> + <listitem> + <para>[dj] - Added talloc-2.0.1.</para> + </listitem> </itemizedlist> </listitem> Modified: trunk/BOOK/x/lib/mesalib.xml =================================================================== --- trunk/BOOK/x/lib/mesalib.xml 2011-01-23 21:12:25 UTC (rev 8849) +++ trunk/BOOK/x/lib/mesalib.xml 2011-01-23 22:58:10 UTC (rev 8850) @@ -59,6 +59,15 @@ </listitem> </itemizedlist> + <bridgehead renderas="sect3">Additional Downloads</bridgehead> + <itemizedlist spacing="compact"> + <listitem> + <para>Recommended patch: <ulink + url="&patch-root;/MesaLib-&mesalib-version;-add_xdemos-1.patch"/> + (Needed if testing the Xorg installation per BLFS instructions)</para> + </listitem> + </itemizedlist> + <bridgehead renderas="sect3">MesaLib Dependencies</bridgehead> <bridgehead renderas="sect4">Required</bridgehead> @@ -66,8 +75,7 @@ <xref linkend="xorg7-util"/>, <xref linkend="libdrm"/>, <xref linkend="expat"/>, and - <!-- <xref linkend="talloc"/> --> - <ulink url="http://samba.org/ftp/talloc/">Talloc</ulink></para> + <xref linkend="talloc"/></para> <bridgehead renderas="sect4">Optional</bridgehead> <para role="optional"><xref linkend="lesstif"/> (required to build motif @@ -91,6 +99,7 @@ commands:</para> <screen><userinput>sed 's@FLAGS=\"-g@FLAGS=\"@' -i configure && +patch -Np1 -i ../MesaLib-&mesalib-version;-add_xdemos-1.patch && ./configure $XORG_CONFIG --enable-xcb && make</userinput></screen> -- http://linuxfromscratch.org/mailman/listinfo/blfs-book FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
