2001-04-17 02:55:34 +02:00
|
|
|
Simple install procedure
|
|
|
|
========================
|
|
|
|
|
|
|
|
% gzip -cd glib-@GLIB_VERSION@.tar.gz | tar xvf - # unpack the sources
|
|
|
|
% cd glib-@GLIB_VERSION@ # change to the toplevel directory
|
|
|
|
% ./configure # run the `configure' script
|
|
|
|
% make # build GLIB
|
|
|
|
|
|
|
|
[ Become root if necessary ]
|
|
|
|
% rm -rf /install-prefix/include/glib.h /install-prefix/include/gmodule.h
|
|
|
|
% make install # install GLIB
|
|
|
|
|
|
|
|
Requirements
|
|
|
|
============
|
|
|
|
|
2002-03-08 06:48:03 +01:00
|
|
|
GLib-2.0 requires pkg-config, which is tool for tracking the
|
|
|
|
compilation flags needed for libraries. (For each library, a small .pc
|
|
|
|
text file is installed in a standard location that contains the
|
|
|
|
compilation flags needed for that library along with version number
|
|
|
|
information.) Information about pkg-config can be found at:
|
|
|
|
|
|
|
|
http://www.freedesktop.org/software/pkgconfig/
|
|
|
|
|
|
|
|
GNU make (http://www.gnu.org/software/make) is also recommended.
|
|
|
|
|
2001-04-17 02:55:34 +02:00
|
|
|
In order to implement conversions between character sets,
|
|
|
|
GLib requires an implementation of the standard iconv() routine.
|
|
|
|
Most modern systems will have a suitable implementation, however
|
2009-04-03 05:57:59 +02:00
|
|
|
many older systems lack an iconv() implementation. On such systems,
|
2001-04-17 02:55:34 +02:00
|
|
|
you must install the libiconv library. This can be found at:
|
|
|
|
|
2002-03-08 06:48:03 +01:00
|
|
|
http://www.gnu.org/software/libiconv/
|
2001-04-17 02:55:34 +02:00
|
|
|
|
|
|
|
If your system has an iconv implementation but you want to use
|
|
|
|
libiconv instead, you can pass the --with-libiconv option to
|
2009-04-03 05:57:59 +02:00
|
|
|
configure. This forces libiconv to be used.
|
2001-04-17 02:55:34 +02:00
|
|
|
|
|
|
|
Note that if you have libiconv installed in your default include
|
|
|
|
search path (for instance, in /usr/local/), but don't enable
|
2003-04-09 20:49:48 +02:00
|
|
|
it, you will get an error while compiling GLib because the
|
2001-04-17 02:55:34 +02:00
|
|
|
iconv.h that libiconv installs hides the system iconv.
|
|
|
|
|
2002-05-22 21:52:41 +02:00
|
|
|
If you are using the native iconv implementation on Solaris
|
2009-04-03 05:57:59 +02:00
|
|
|
instead of libiconv, you'll need to make sure that you have
|
2002-05-22 21:52:41 +02:00
|
|
|
the converters between locale encodings and UTF-8 installed.
|
|
|
|
At a minimum you'll need the SUNWuiu8 package. You probably
|
|
|
|
should also install the SUNWciu8, SUNWhiu8, SUNWjiu8, and
|
|
|
|
SUNWkiu8 packages.
|
|
|
|
|
2002-06-13 22:00:58 +02:00
|
|
|
The native iconv on Compaq Tru64 doesn't contain support for
|
|
|
|
UTF-8, so you'll need to use GNU libiconv instead. (When
|
2003-04-09 20:49:48 +02:00
|
|
|
using GNU libiconv for GLib, you'll need to use GNU libiconv
|
2002-06-13 22:00:58 +02:00
|
|
|
for GNU gettext as well.) This probably applies to related
|
|
|
|
operating systems as well.
|
|
|
|
|
2003-04-09 20:49:48 +02:00
|
|
|
Finally, for message catalog handling, GLib requires an implementation
|
2002-03-08 06:48:03 +01:00
|
|
|
of gettext(). If your system doesn't provide this functionality,
|
|
|
|
you should use the libintl library from the GNU gettext package,
|
|
|
|
available from:
|
|
|
|
|
|
|
|
http://www.gnu.org/software/gettext/
|
|
|
|
|
2008-01-06 18:48:41 +01:00
|
|
|
|
|
|
|
Support for extended attributes and SELinux in GIO requires
|
2009-04-03 05:57:59 +02:00
|
|
|
libattr and libselinux.
|
|
|
|
|
|
|
|
Some of the mimetype-related functionality in GIO requires the
|
|
|
|
update-mime-database and update-desktop-database utilities, which
|
|
|
|
are part of shared-mime-info and desktop-file-utils, respectively.
|
2008-01-06 18:48:41 +01:00
|
|
|
|
2011-08-08 23:16:07 +02:00
|
|
|
GObject uses libffi to implement generic marshalling functionality.
|
2008-01-06 18:48:41 +01:00
|
|
|
|
2001-04-17 02:55:34 +02:00
|
|
|
The Nitty-Gritty
|
|
|
|
================
|
|
|
|
|
2009-04-03 05:57:59 +02:00
|
|
|
Complete information about installing GLib can be found
|
2003-04-09 20:49:48 +02:00
|
|
|
in the file:
|
2009-04-03 05:57:59 +02:00
|
|
|
|
2003-04-09 20:49:48 +02:00
|
|
|
docs/reference/glib/html/glib-building.html
|
2009-04-03 05:57:59 +02:00
|
|
|
|
2003-04-09 20:49:48 +02:00
|
|
|
Or online at:
|
2009-04-03 05:57:59 +02:00
|
|
|
|
2010-11-14 02:08:51 +01:00
|
|
|
http://library.gnome.org/devel/glib/stable/glib-building.html
|
2001-04-17 02:55:34 +02:00
|
|
|
|
|
|
|
|
|
|
|
Installation directories
|
|
|
|
========================
|
|
|
|
|
|
|
|
The location of the installed files is determined by the --prefix
|
|
|
|
and --exec-prefix options given to configure. There are also more
|
|
|
|
detailed flags to control individual directories. However, the
|
|
|
|
use of these flags is not tested.
|
|
|
|
|
|
|
|
One particular detail to note, is that the architecture-dependent
|
|
|
|
include file glibconfig.h is installed in:
|
|
|
|
|
2002-03-08 06:48:03 +01:00
|
|
|
$exec_prefix/lib/glib/include/
|
2001-04-17 02:55:34 +02:00
|
|
|
|
|
|
|
if you have a version in $prefix/include, this is out of date
|
|
|
|
and should be deleted.
|
|
|
|
|
2009-04-03 05:57:59 +02:00
|
|
|
.pc files for the various libraries are installed in
|
2002-03-08 06:48:03 +01:00
|
|
|
$exec_prefix/lib/pkgconfig to provide information when compiling
|
2003-04-09 20:49:48 +02:00
|
|
|
other packages that depend on GLib. If you set PKG_CONFIG_PATH
|
2009-04-03 05:57:59 +02:00
|
|
|
so that it points to this directory, then you can get the
|
2002-03-08 06:48:03 +01:00
|
|
|
correct include flags and library flags for compiling a GLib
|
|
|
|
application with:
|
|
|
|
|
|
|
|
pkg-config --cflags glib-2.0
|
|
|
|
pkg-config --libs glib-2.0
|
2001-04-17 02:55:34 +02:00
|
|
|
|
2002-12-20 16:23:12 +01:00
|
|
|
|
|
|
|
Cross-compiling GLib
|
|
|
|
====================
|
|
|
|
|
2009-04-03 05:57:59 +02:00
|
|
|
Information about cross-compilation of GLib can be found
|
2003-04-09 20:49:48 +02:00
|
|
|
in the file:
|
2009-04-03 05:57:59 +02:00
|
|
|
|
2003-04-09 20:49:48 +02:00
|
|
|
docs/reference/glib/html/glib-cross-compiling.html
|
2009-04-03 05:57:59 +02:00
|
|
|
|
2003-04-09 20:49:48 +02:00
|
|
|
Or online at:
|
2009-04-03 05:57:59 +02:00
|
|
|
|
|
|
|
http://library.gnome.org/devel/glib/stable/glib-cross-compiling.html
|