1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Part III. GSF: Dependencies</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.73.1">
<link rel="start" href="index.html" title="GSF Reference Manual">
<link rel="up" href="index.html" title="GSF Reference Manual">
<link rel="prev" href="history.html" title="Part II. GSF: History">
<link rel="next" href="gsf-users.html" title="Part IV. Projects using GSF">
<meta name="generator" content="GTK-Doc V1.8 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
<link rel="part" href="intro.html" title="Part I. GSF: Introduction">
<link rel="part" href="history.html" title="Part II. GSF: History">
<link rel="part" href="dependencies.html" title="Part III. GSF: Dependencies">
<link rel="part" href="gsf-users.html" title="Part IV. Projects using GSF">
<link rel="part" href="api.html" title="Part V. API Reference">
<link rel="chapter" href="io.html" title="Basic Input/Output">
<link rel="chapter" href="sources.html" title="Stream Sources">
<link rel="chapter" href="parsers.html" title="Stream Parsers">
<link rel="chapter" href="misc.html" title="Miscellaneous">
<link rel="index" href="gsf-index.html" title="Index">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
<td><a accesskey="p" href="history.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
<td> </td>
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
<th width="100%" align="center">GSF Reference Manual</th>
<td><a accesskey="n" href="gsf-users.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
</tr></table>
<div class="part" lang="en">
<div class="titlepage"><div><div><h1 class="title">
<a name="dependencies"></a>Part III. GSF: Dependencies</h1></div></div></div>
<p>
GSF depends on the following libraries:
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term">GLib</span></p></td>
<td><p>
A general-purpose utility library, not specific to graphical user interfaces.
GLib provides many useful data types, macros, type conversions,
string utilities, file utilities, a main loop abstraction, and so on.
</p></td>
</tr>
<tr>
<td><p><span class="term">Libxml2</span></p></td>
<td><p>
A library that provides a parser and toolkit for XML, the <a class="ulink" href="http://en.wikipedia.org/wiki/XML" target="_top">Extensible Markup Language</a>.
XML is a metalanguage used to define markup languages (text languages where
structure and semantics are added to the content using extra "markup"
information).
</p></td>
</tr>
</tbody>
</table></div>
<p>
The core GSF library can be built to also utilize the following libraries:
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term"><a class="ulink" href="http://en.wikipedia.org/wiki/Zlib" target="_top">zlib</a></span></p></td>
<td><p>
A data
compression library that implements the DEFLATE algorithm used in gzip.
</p></td>
</tr>
<tr>
<td><p><span class="term"><a class="ulink" href="http://en.wikipedia.org/wiki/Bzip2" target="_top">libbz2</a></span></p></td>
<td><p>
A data compression library that implements the algorithm used in bzip2.
</p></td>
</tr>
</tbody>
</table></div>
<p>
A separate GSF library can be built that offers additional functionality for
use in the GNOME desktop environment. That library has the following
additional requirements:
</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td><p><span class="term">libbonobo-2.0</span></p></td>
<td><p>
<a class="ulink" href="http://developer.gnome.org/arch/component/bonobo.html" target="_top">Bonobo</a>
is the GNOME architecture for creating reusable software components and
compound documents.
</p></td>
</tr>
<tr>
<td><p><span class="term">gnome-vfs-2.0</span></p></td>
<td><p>
<a class="ulink" href="http://developer.gnome.org/doc/API/2.0/gnome-vfs-2.0/" target="_top">GnomeVFS</a>
is a filesystem abstraction library that allows applications plugable
transparent access to a variety of "real" filesystems, including networked
filesystems like WebDAV, storage on devices like digital cameras, to the
local filesystem.
</p></td>
</tr>
</tbody>
</table></div>
<p>
</p>
</div>
</body>
</html>
|