2001-04-17 02:55:34 +02:00
|
|
|
Simple install procedure
|
|
|
|
========================
|
|
|
|
|
2022-05-11 14:02:05 +02:00
|
|
|
```sh
|
|
|
|
tar xf glib-*.tar.gz # unpack the sources
|
|
|
|
cd glib-* # change to the toplevel directory
|
2022-05-22 18:10:42 +02:00
|
|
|
meson setup _build # configure the build
|
|
|
|
meson compile -C _build # build GLib
|
2001-04-17 02:55:34 +02:00
|
|
|
|
2022-05-11 14:02:05 +02:00
|
|
|
# Become root if necessary
|
|
|
|
|
2022-05-22 18:10:42 +02:00
|
|
|
meson install -C _build # install GLib
|
2022-05-11 14:02:05 +02:00
|
|
|
```
|
2001-04-17 02:55:34 +02:00
|
|
|
|
|
|
|
Requirements
|
|
|
|
============
|
|
|
|
|
2013-11-20 15:41:13 +01:00
|
|
|
GLib requires a C90-compliant (but not necessarily C99-compliant) C
|
|
|
|
compiler and libc. On UNIX-like systems, it also assumes compliance
|
|
|
|
with at least the original 1990 version of POSIX.
|
|
|
|
|
2002-03-08 06:48:03 +01:00
|
|
|
GLib-2.0 requires pkg-config, which is tool for tracking the
|
2022-05-11 14:02:05 +02:00
|
|
|
compilation flags needed for libraries. (For each library, a small `.pc`
|
2002-03-08 06:48:03 +01:00
|
|
|
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/
|
|
|
|
|
2022-05-05 20:08:41 +02:00
|
|
|
Meson (http://mesonbuild.com/) is also required. If your distribution does not
|
|
|
|
package a new enough version of Meson, it can be [installed using
|
|
|
|
`pip`](https://mesonbuild.com/Getting-meson.html#installing-meson-with-pip).
|
2002-03-08 06:48:03 +01:00
|
|
|
|
2001-04-17 02:55:34 +02:00
|
|
|
In order to implement conversions between character sets,
|
2022-05-11 14:02:05 +02:00
|
|
|
GLib requires an implementation of the standard `iconv()` routine.
|
2001-04-17 02:55:34 +02:00
|
|
|
Most modern systems will have a suitable implementation, however
|
2022-05-11 14:02:05 +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
|
2022-05-11 14:02:05 +02:00
|
|
|
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
|
2022-05-11 14:02:05 +02:00
|
|
|
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
|
2022-05-11 14:02:05 +02:00
|
|
|
`iconv.h` that libiconv installs hides the system iconv.
|
2001-04-17 02:55:34 +02:00
|
|
|
|
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.
|
2022-05-11 14:02:05 +02:00
|
|
|
At a minimum you'll need the `SUNWuiu8` package. You probably
|
|
|
|
should also install the `SUNWciu8`, `SUNWhiu8`, `SUNWjiu8`, and
|
|
|
|
`SUNWkiu8` packages.
|
2002-05-22 21:52:41 +02:00
|
|
|
|
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
|
2022-05-11 14:02:05 +02:00
|
|
|
of `gettext()`. If your system doesn't provide this functionality,
|
2002-03-08 06:48:03 +01:00
|
|
|
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
|
2022-05-11 14:02:05 +02:00
|
|
|
`update-mime-database` and `update-desktop-database` utilities, which
|
2009-04-03 05:57:59 +02:00
|
|
|
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
|
|
|
|
2023-01-04 10:52:07 +01:00
|
|
|
https://docs.gtk.org/glib/building.html
|
2001-04-17 02:55:34 +02:00
|
|
|
|
|
|
|
|
|
|
|
Installation directories
|
|
|
|
========================
|
|
|
|
|
2022-05-11 14:02:05 +02:00
|
|
|
The location of the installed files is determined by the `--prefix`
|
|
|
|
and `--exec-prefix` options given to configure. There are also more
|
2001-04-17 02:55:34 +02:00
|
|
|
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
|
2022-05-11 14:02:05 +02:00
|
|
|
include file `glibconfig.h` is installed in `$libdir/glib-2.0/include/`.
|
2001-04-17 02:55:34 +02:00
|
|
|
|
2022-05-11 14:02:05 +02:00
|
|
|
`.pc` files for the various libraries are installed in
|
|
|
|
`$libdir/pkgconfig` to provide information when compiling
|
|
|
|
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:
|
|
|
|
|
2022-05-11 14:02:05 +02:00
|
|
|
```sh
|
|
|
|
pkg-config --cflags glib-2.0
|
|
|
|
pkg-config --libs glib-2.0
|
|
|
|
```
|
2001-04-17 02:55:34 +02:00
|
|
|
|
2022-01-17 17:21:22 +01:00
|
|
|
This is the only supported way of determining the include and library flags
|
|
|
|
for building against GLib.
|
|
|
|
|
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
|
|
|
|
2023-01-04 10:52:07 +01:00
|
|
|
https://docs.gtk.org/glib/cross-compiling.html
|