]> Pileus Git - ~andy/gtk/blob - docs/reference/gtk/building.sgml
Document im_module_file and settings assignments as toplevel statements.
[~andy/gtk] / docs / reference / gtk / building.sgml
1 <refentry id="gtk-building" revision="6 Sept 2001">
2 <refmeta>
3 <refentrytitle>Compiling the GTK+ libraries</refentrytitle>
4 <manvolnum>3</manvolnum>
5 <refmiscinfo>GTK Library</refmiscinfo>
6 </refmeta>
7
8 <refnamediv>
9 <refname>Compiling the GTK+ Libraries</refname>
10 <refpurpose>
11 How to compile GTK+ itself
12 </refpurpose>
13 </refnamediv>
14   <refsect1 id="overview">
15     <title>Building GTK+ on UNIX-like systems</title>
16     <para>
17       This chapter covers building and installing GTK+ on UNIX and
18       UNIX-like systems such as Linux. Compiling GTK+ on Microsoft
19       Windows is different in detail and somewhat more difficult to
20       get going since the necessary tools aren't included with
21       the operating system.
22     </para>
23     <para>
24       Before we get into the details of how to compile GTK+, we should
25       mention that in many cases, binary packages of GTK+ prebuilt for
26       your operating system will be available, either from your
27       operating system vendor or from independent sources. If such a
28       set of packages is available, installing it will get you
29       programming wih GTK+ much faster than building it yourself. In
30       fact, you may well already have GTK+ installed on your system
31       already.
32     </para>
33     <para>
34       On UNIX-like systems GTK+ uses the standard GNU build system,
35       using <application>autoconf</application> for package
36       configuration and resolving portability issues,
37       <application>automake</application> for building makefiles that
38       comply with the GNU Coding Standards, and
39       <application>libtool</application> for building shared libraries
40       on multiple platforms.
41     </para>
42     <para>
43       If you are building GTK+ from the distributed source packages,
44       then won't need these tools installed; the necessary pieces
45       of the tools are already included in the source packages. But
46       it's useful to know a bit about how packages that use these
47       tools work. A source package is distributed as a
48       <literal>tar.gz</literal> file which you unpack into a 
49       directory full of the source files as follows:
50     </para>
51     <programlisting>
52       tar xvfz gtk+-2.0.0.tar.gz
53     </programlisting>
54     <para>
55       In the toplevel of the directory that is created, there will be
56       a shell script called <filename>configure</filename> which
57       you then run to take the template makefiles called
58       <filename>Makefile.in</filename> in the package and create
59       makefiles customized for your operating system. The <filename>configure</filename>
60       script can be passed various command line arguments to determine how
61       the package is built and installed. The most commonly useful
62       argument is the <systemitem>--prefix</systemitem> argument which
63       determines where the package is installed. To install a package
64       in <filename>/opt/gtk</filename> you would run configure as:
65     </para>
66     <programlisting>
67       ./configure --prefix=/opt/gtk
68     </programlisting>
69     <para>
70       A full list of options can be found by running
71       <filename>configure</filename> with the
72       <systemitem>--help</systemitem> argument. In general, the defaults are
73       right and should be trusted. After you've run
74       <filename>configure</filename>, you then run the
75       <command>make</command> command to build the package and install
76       it.
77     </para>
78     <programlisting>
79       make
80       make install
81     </programlisting>
82     <para>
83       If you don't have permission to write to the directory you are
84       installing in, you may have to change to root temporarily before
85       running <literal>make install</literal>. Also, if you are
86       installing in a system directory, on some systems (such as
87       Linux), you will need to run <command>ldconfig</command> after
88       <literal>make install</literal> so that the newly installed
89       libraries will be found.
90     </para>
91     <para>
92       Several environment variables are useful to pass to set before
93       running configure. <envar>CPPFLAGS</envar> contains options to
94       pass to the C compiler, and is used to tell the compiler where
95       to look for include files. The <envar>LDFLAGS</envar> variable
96       is used in a similar fashion for the linker. Finally the
97       <envar>PKG_CONFIG_PATH</envar> environment variable contains
98       a search path that <command>pkg-config</command> (see below)
99       uses when looking for for file describing how to compile
100       programs using different libraries. If you were installing GTK+
101       and it's dependencies into <filename>/opt/gtk</filename>, you might want to set
102       these variables as:
103     </para>
104     <programlisting>
105       CPPFLAGS="-I/opt/gtk/include"
106       LDFLAGS="-L/opt/gtk/lib"
107       PKG_CONFIG_PATH="/opt/gtk/lib/pkgconfig"
108       export CPPFLAGS LDFLAGS PKG_CONFIG_PATH
109     </programlisting>
110     <para>
111       You may also need to set the <envar>LD_LIBRARY_PATH</envar>
112       environment variable so the systems dynamic linker can find
113       the newly installed libraries, and the <envar>PATH</envar>
114       environment program so that utility binaries installed by
115       the various libraries will be found.
116     </para>
117     <programlisting>
118       LD_LIBRARY_PATH="/opt/gtk/lib"
119       PATH="/opt/gtk/bin:$PATH"
120       export LD_LIBRARY_PATH PATH
121     </programlisting>
122   </refsect1>
123   <refsect1 id="dependencies">
124     <title>Dependencies</title>
125     <para>
126       Before you can compile the GTK+ widget toolkit, you need to have
127       various other tools and libraries installed on your
128       system. The two tools needed during the build process (as
129       differentiated from the tools used in when creating GTK+
130       mentioned above such as <application>autoconf</application>)
131       are <command>pkg-config</command> and GNU make.
132     </para>
133     <itemizedlist>
134       <listitem>
135         <para>
136           <ulink
137           url="http://www.freedesktop.org/software/pkgconfig">pkg-config</ulink>
138           is a tool for tracking the compilation flags needed for
139           libraries that are used by the GTK+ libraries. (For each
140           library, a small <literal>.pc</literal> text file is installed in a standard
141           location that contains the compilation flags needed for that
142           library along with version number information.)  The version
143           of <command>pkg-config</command> needed to build GTK+ is
144           mirrored in the <filename>dependencies</filename> directory
145           on the <ulink url="ftp://ftp.gtk.org/pub/gtk/v2.2/">GTK+ FTP
146           site.</ulink>
147         </para>
148       </listitem>
149       <listitem>
150         <para>
151           The GTK+ makefiles will mostly work with different versions
152           of <command>make</command>, however, there tends to be
153           a few incompatibilities, so the GTK+ team recommends
154           installing <ulink url="http://www.gnu.org/software/make">GNU
155             make</ulink> if you don't already have it on your system
156           and using it. (It may be called <command>gmake</command>
157           rather than <command>make</command>.)
158         </para>
159       </listitem>
160     </itemizedlist>
161     <para>
162       Three of the libraries that GTK+ depends on are maintained by
163       by the GTK+ team: GLib, Pango, and ATK. Other libraries are
164       maintained separately.
165     </para>
166     <itemizedlist>
167       <listitem>
168         <para>
169           The GLib library provides core non-graphical functionality
170           such as high level data types, Unicode manipulation, and
171           an object and type system to C programs. It is available
172           from the <ulink url="ftp://ftp.gtk.org/pub/gtk/v2.2/">GTK+
173           FTP site.</ulink>
174         </para>
175       </listitem>
176       <listitem>
177         <para>
178           <ulink url="http://www.pango.org">Pango</ulink> is a library
179           for internationalized text handling. It is available from
180           the <ulink url="ftp://ftp.gtk.org/pub/gtk/v2.2/">GTK+ FTP
181           site.</ulink>. Either Pango-1.0 or Pango-1.2 can be used
182           with GTK+-2.2, though Pango-1.2 is recommended.
183         </para>
184       </listitem>
185       <listitem>
186         <para>
187           ATK is the Accessibility Toolkit. It provides a set of generic
188           interfaces allowing accessibility technologies such as
189           screen readers to interact with a graphical user interface.
190           It is available from the <ulink
191           url="ftp://ftp.gtk.org/pub/gtk/v2.2/">GTK+ FTP site.</ulink>
192         </para>
193       </listitem>
194       <listitem>
195         <para>
196           The <ulink url="http://www.gnu.org/software/libiconv/">GNU
197           libiconv library</ulink> is needed to build GLib if your
198           system doesn't have the <function>iconv()</function>
199           function for doing conversion between character
200           encodings. Most modern systems should have
201           <function>iconv()</function>.
202         </para>
203       </listitem>
204       <listitem>
205         <para>
206           The libintl library from the <ulink
207           url="http://www.gnu.org/software/gettext/">GNU gettext
208           package</ulink> is needed if your system doesn't have the
209           <function>gettext()</function> functionality for handling
210           message translation databases.
211         </para>
212       </listitem>
213       <listitem>
214         <para>
215           The <ulink
216             url="ftp://ftp.uu.net/graphics/jpeg/">JPEG</ulink>,
217           <ulink url="http://www.libpng.org">PNG</ulink>, and
218           <ulink url="http://www.libtiff.org">TIFF</ulink> image loading libraries are needed to
219           compile GTK+. You probably already have these libraries
220           installed, but if not, the versions you need are available in
221           the <filename>dependencies</filename> directory on the the
222           <ulink url="ftp://ftp.gtk.org/pub/gtk/v2.2/dependencies/">GTK+
223             FTP site.</ulink>. (Before installing these libraries
224           from source, you should check if your operating system
225           vendor has prebuilt packages of these libraries that you
226           don't have installed.)
227         </para>
228       </listitem>
229       <listitem>
230         <para>
231           The libraries from the X window system are needed to build
232           Pango and GTK+. You should already have these installed on
233           your system, but it's possible that you'll need to install
234           the development environment for these libraries that your
235           operating system vendor provides.
236         </para>
237       </listitem>
238       <listitem>
239         <para>
240           The <ulink url="http://www.fontconfig.org">fontconfig</ulink>
241           library provides Pango with a standard way of locating
242           fonts and matching them against font names. The Xft2
243           library, distributed with fontconfig, provides support for
244           scalable and antialiased fonts on X. Pango includes two
245           backends that work on top of fontconfig: an Xft2 backend
246           and a backend that uses fontconfig and the underlying
247           <ulink url="http://www.freetype.org">FreeType
248           library</ulink> directly. Neither backend is mandatory, but the
249           Xft2 backend is the preferred backend for X and the FreeType
250           backend is needed by many applications.
251         </para>
252       </listitem>
253     </itemizedlist>
254   </refsect1>
255   <refsect1 id="building">
256     <title>Building and testing GTK+</title>
257     <para>
258       First make sure that you have the necessary external
259       dependencies installed: <command>pkg-config</command>, GNU make,
260       the JPEG, PNG, and TIFF libraries, FreeType, and, if necessary,
261       libiconv and libintl. To get detailed information about building 
262       these packages, see the documentation provided with the
263       individual packages.
264       On a Linux system, it's quite likely you'll have all of these
265       installed already except for <command>pkg-config</command>.
266     </para>
267     <para>
268       Then build and install the GTK+ libraries in the order:
269       GLib, Pango, ATK, then GTK+. For each library, follow the
270       steps of <literal>configure</literal>, <literal>make</literal>,
271       <literal>make install</literal> mentioned above. If you're
272       lucky, this will all go smoothly, and you'll be ready to
273       <link linkend="gtk-compiling">start compiling your own GTK+
274         applications</link>. You can test your GTK+ installation
275       by running the <command>gtk-demo</command> program that
276       GTK+ installs.
277     </para>
278     <para>
279       If one of the <filename>configure</filename> scripts fails or running
280       <command>make</command> fails, look closely at the error
281       messages printed; these will often provide useful information
282       as to what went wrong. When <filename>configure</filename>
283       fails, extra information, such as errors that a test compilation
284       ran into, is found in the file <filename>config.log</filename>.
285       Looking at the last couple of hundred lines in this file will
286       frequently make clear what went wrong. If all else fails, you
287       can ask for help on the gtk-list mailing list.
288       See <xref linkend="gtk-resources"/> for more information.
289     </para>
290   </refsect1>
291       <refsect1 id="extra-configuration-options">
292       <title>Extra Configuration Options</title>
293
294       <para>
295         In addition to the normal options, the
296         <command>configure</command> script for the GTK+ library
297         supports a number of additional arguments. (Command line
298         arguments for the other GTK+ libraries are described in
299         the documentation distributed with the those libraries.)
300
301         <cmdsynopsis>
302           <command>configure</command>
303
304           <group>
305             <arg>--disable-modules</arg>
306             <arg>--enable-modules</arg>
307           </group>
308           <group>
309             <arg>--with-included-loaders==LOADER1,LOADER2,...</arg>
310           </group>
311           <group>
312             <arg>--enable-debug=[no|minimum|yes]</arg>
313           </group>
314           <group>
315             <arg>--disable-visibility</arg>
316             <arg>--enable-visibility</arg>
317           </group>
318           <group>
319             <arg>--disable-shm</arg>
320             <arg>--enable-shm</arg>
321           </group>
322           <group>
323             <arg>--disable-xim</arg>
324             <arg>--enable-xim</arg>
325           </group>
326           <group>
327             <arg>--disable-xim-inst</arg>
328             <arg>--enable-xim-inst</arg>
329           </group>
330           <group>
331             <arg>--disable-xkb</arg>
332             <arg>--enable-xkb</arg>
333           </group>
334           <group>
335             <arg>--disable-gtk-doc</arg>
336             <arg>--enable-gtk-doc</arg>
337           </group>
338           <group>
339             <arg>--with-xinput=[no|yes]</arg>
340           </group>
341           <group>
342             <arg>--with-gdktarget=[x11|linux-fb|win32]</arg>
343           </group>
344           <group>
345             <arg>--disable-shadowfb</arg>
346             <arg>--enable-shadowfb</arg>
347           </group>
348         </cmdsynopsis>
349       </para>
350
351       <formalpara>
352         <title><systemitem>--disable-modules</systemitem> and
353           <systemitem>--enable-modules</systemitem></title>
354
355         <para>
356           Normally GTK+ will try to build the GdkPixbuf image file
357           format loaders as little shared libraries that are loaded on
358           demand.  The <systemitem>--disable-modules</systemitem>
359           argument indicates that they should all be built statically
360           into the GTK+ library instead.  This is useful for
361           people who need to produce statically-linked binaries.  If
362           neither <systemitem>--disable-modules</systemitem> nor
363           <systemitem>--enable-modules</systemitem> is specified, then
364           the <command>configure</command> script will try to
365           auto-detect whether shared modules work on your system.
366         </para>
367       </formalpara>
368
369       <formalpara>
370         <title><systemitem>--with-included-loaders</systemitem></title>
371
372         <para>
373          This option allows you to specify which image loaders you
374          want to include; for example, you might include only the PNG
375          loader to create a smaller GdkPixbuf binary.
376         </para>
377       </formalpara>
378
379       <formalpara>
380         <title><systemitem>--enable-debug</systemitem></title>
381           
382         <para>
383          Turns on various amounts of debugging support. Setting this to 'no' 
384          disables g_assert(), g_return_if_fail(), g_return_val_if_fail() and
385          all cast checks between different object types. Setting it to 'minimum'
386          disables only cast checks. Setting it to 'yes' enables 
387          <link linkend="GTK-Debug-Options">runtime debugging</link>. 
388          The default is 'minimum'.
389          Note that 'no' is fast, but dangerous as it tends to destabilize 
390          even mostly bug-free software by changing the effect of many bugs 
391          from simple warnings into fatal crashes. Thus 
392          <option>--enable-debug=no</option> should <emphasis>not</emphasis> 
393          be used for stable releases of GTK+.
394         </para>
395       </formalpara>
396
397       <formalpara>
398         <title><systemitem>--disable-visibility</systemitem> and
399           <systemitem>--enable-visibility</systemitem></title>
400         <para>
401           The option <systemitem>--disable-visibility</systemitem>
402           turns off the use of ELF visibility attributes for linking
403           optimizations. This makes sense while changing GTK+ itself,
404           since the way in which GTK+ uses visibility attributes 
405           forces a full rebuild of all source files for any header
406           modification.
407         </para>
408       </formalpara>
409
410       <formalpara>
411         <title><systemitem>--enable-explicit-deps</systemitem> and
412           <systemitem>--disable-explicit-deps</systemitem></title>
413         <para>
414           If <systemitem>--enable-explicit-deps</systemitem> is
415           specified then GTK+ will write the full set of libraries
416           that GTK+ depends upon into its <literal>.pc</literal> files to be used when
417           programs depending on GTK+ are linked. Otherwise, GTK+
418           only will include the GTK+ libraries themselves, and
419           will depend on system library dependency facilities to
420           bring in the other libraries.
421           By default GTK+ will disable explicit dependencies unless
422           it detects that they are needed on the system. (If you
423           specify <systemitem>--enable-static</systemitem> to force
424           building of static libraries, then explicit dependencies
425           will be written since library dependencies don't work
426           for static libraries.) Specifying
427           <systemitem>--enable-explicit-deps</systemitem> or
428           <systemitem>--enable-static</systemitem> can cause
429           compatibility
430           problems when libraries that GTK+ depends upon change
431           their versions, and should be avoided if possible.
432         </para>
433       </formalpara>
434
435       <formalpara>
436         <title><systemitem>--disable-shm</systemitem> and
437           <systemitem>--enable-shm</systemitem></title>
438  
439         <para>
440           These options can be used to control whether GTK+ will use shared 
441           memory to communicate with the X server when possible.
442           The default is 'yes'.
443         </para>
444       </formalpara>
445
446       <formalpara>
447         <title><systemitem>--disable-xim</systemitem> and
448           <systemitem>--enable-xim</systemitem></title>
449  
450         <para>
451           These options can be used to control whether GTK+ will 
452           be compiled with support for XIM. (The X Input Method
453           extension, used for Japanese input.) The default is yes.
454         </para>
455       </formalpara>
456
457       <formalpara>
458         <title><systemitem>--disable-xim-inst</systemitem> and
459           <systemitem>--enable-xim-inst</systemitem></title>
460  
461         <para>
462           These options determine whether GTK+ will use the 
463           XIM instantiate callback. 
464           The default is 'yes', unless the host system is Solaris,
465           where <function>XRegisterIMInstantiateCallback()</function>
466           seems to cause a segfault.
467         </para>
468       </formalpara>
469
470       <formalpara>
471         <title><systemitem>--disable-xkb</systemitem> and
472           <systemitem>--enable-xkb</systemitem></title>
473  
474         <para>
475           By default the <command>configure</command> script will try
476           to auto-detect whether the XKB extension is supported by
477           the X libraries GTK+ is linked with.
478           These options can be used to explicitly control whether
479           GTK+ will support the XKB extension. 
480         </para>
481       </formalpara>
482
483       <formalpara>
484         <title><systemitem>--disable-gtk-doc</systemitem> and
485           <systemitem>--enable-gtk-doc</systemitem></title>
486
487         <para>
488           The <application>gtk-doc</application> package is
489           used to generate the reference documentation included
490           with GTK+. By default support for <application>gtk-doc</application> 
491           is disabled because it requires various extra dependencies
492           to be installed. If you have
493           <application>gtk-doc</application> installed and
494           are modifying GTK+, you may want to enable
495           <application>gtk-doc</application> support by passing
496           in <systemitem>--enable-gtk-doc</systemitem>. If not
497           enabled, pre-generated HTML files distributed with GTK+
498           will be installed.
499         </para>
500       </formalpara>
501
502       <formalpara>
503         <title><systemitem>--with-xinput</systemitem></title>
504         <para>
505           Controls whether GTK+ is built with support for the XInput
506           extension. The XInput extension provides an interface
507           to extended input devices such as graphics tablets.
508           When this support is compiled in, specially written
509           GTK+ programs can get access to subpixel positions,
510           multiple simultaneous input devices, and extra "axes"
511           provided by the device such as pressure and tilt
512           information. This is only known to work well on XFree86
513           systems, though other systems do have this extension.
514         </para>
515       </formalpara>
516       <formalpara>
517         <title><systemitem>--with-gdktarget</systemitem></title>
518
519         <para>
520           Toggles between the supported backends for GDK. 
521           The default is x11, unless the platform is Windows, in which
522           case the default is win32.
523         </para>
524       </formalpara>
525
526       <formalpara>
527         <title><systemitem>--disable-shadowfb</systemitem> and
528           <systemitem>--enable-shadowfb</systemitem></title>
529
530         <para>
531          Toggles shadow framebuffer support for the linux-fb target, 
532          if selected.
533         </para>
534       </formalpara>
535
536     </refsect1>
537
538 </refentry>
539
540 <!-- Local Variables: -->
541 <!-- sgml-parent-document: ("gtk-docs.sgml" "chapter" "refentry")  -->
542 <!-- End: -->