diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2009-07-06 06:54:06 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2009-07-06 06:54:06 +0000 |
commit | d35b7f3cedd4eba67e5c8651ff0fd8de99065381 (patch) | |
tree | 73bcf64522b30e6716c6473c6e78e14c6051961c /chapter06/pkg-config.xml | |
parent | 94e69545480652dc592f78f3fe42142a4699a9a4 (diff) |
Update to sed 4,2,1
Update to Linux 2.6.30.1
Correct GCC to use -fomit-frame-pointer
Add pkg-config
Remove --with-col from Man-DB
Move Util-Linux-NG to before E2fsprogs in Chapter 6
Update to e2fsprogs-1.41.7
Remove E2fsprogs in Chapter 5
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8955 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/pkg-config.xml')
-rw-r--r-- | chapter06/pkg-config.xml | 95 |
1 files changed, 95 insertions, 0 deletions
diff --git a/chapter06/pkg-config.xml b/chapter06/pkg-config.xml new file mode 100644 index 000000000..ceb9581cf --- /dev/null +++ b/chapter06/pkg-config.xml @@ -0,0 +1,95 @@ +<?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; +]> + +<sect1 id="ch-system-pkg-config" role="wrap"> + <?dbhtml filename="pkg-config.html"?> + + <sect1info condition="script"> + <productname>pkg-config</productname> + <productnumber>&pkg-config-version;</productnumber> + <address>&pkg-config-url;</address> + </sect1info> + + <title>Pkg-config-&pkg-config-version;</title> + + <indexterm zone="ch-system-pkg-config"> + <primary sortas="a-Pkg-config">Pkg-config</primary> + </indexterm> + + <sect2 role="package"> + <title/> + + <para>The pkg-config package contains a tool for passing the include path + and/or library paths to build tools during the configure and make file + execution.</para> + + <segmentedlist> + <segtitle>&buildtime;</segtitle> + <segtitle>&diskspace;</segtitle> + + <seglistitem> + <seg>&pkg-config-ch6-sbu;</seg> + <seg>&pkg-config-ch6-du;</seg> + </seglistitem> + </segmentedlist> + + </sect2> + + <sect2 role="installation"> + <title>Installation of Pkg-config</title> + + <para>Prepare Pkg-config for compilation:</para> + +<screen><userinput remap="configure">./configure --prefix=/usr</userinput></screen> + + <para>Compile the package:</para> + +<screen><userinput remap="make">make</userinput></screen> + + <para>To test the results, issue:</para> + +<screen><userinput remap="test">make check</userinput></screen> + + <para>Install the package:</para> + +<screen><userinput remap="install">make install</userinput></screen> + + </sect2> + + + <sect2 id="contents-pkg-config" role="content"> + <title>Contents of Pkg-config</title> + + <segmentedlist> + <segtitle>Installed program</segtitle> + + <seglistitem> + <seg>pkg-config</seg> + </seglistitem> + </segmentedlist> + + <variablelist> + <bridgehead renderas="sect3">Short Descriptions</bridgehead> + <?dbfo list-presentation="list"?> + <?dbhtml list-presentation="table"?> + + <varlistentry id="pkg-config"> + <term><command>pkg-config</command></term> + <listitem> + <para>Returns meta information for the specified library or + package.</para> + <indexterm zone="ch-system-pkg-config pkg-config"> + <primary sortas="b-pkg-config">pkg-config</primary> + </indexterm> + </listitem> + </varlistentry> + + </variablelist> + + </sect2> + +</sect1> |