The libglade package contains
libglade
libraries. These are useful
for loading Glade interface files in a program at runtime.
This package is known to build and work properly using an LFS-7.5 platform.
Download (HTTP): http://ftp.gnome.org/pub/gnome/sources/libglade/2.6/libglade-2.6.4.tar.bz2
Download (FTP): ftp://ftp.gnome.org/pub/gnome/sources/libglade/2.6/libglade-2.6.4.tar.bz2
Download MD5 sum: d1776b40f4e166b5e9c107f1c8fe4139
Download size: 348 KB
Estimated disk space required: 5 MB
Estimated build time: 0.1 SBU
libxml2-2.9.1 and GTK+-2.24.22
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/libglade
Install libglade by running the following commands:
sed -i '/DG_DISABLE_DEPRECATED/d' glade/Makefile.in && ./configure --prefix=/usr --disable-static && make
To test the results, issue: make check. One of the tests, test-convert, is known to fail.
Now, as the root
user:
make install
sed -i '/DG_DISABLE_DEPRECATED/d': Some of the glib functions that libglade uses were declared deprecated in glib-2.30. This sed removes the G_DISABLE_DEPRECATED CFLAG.
--disable-static
: This
switch prevents installation of static versions of the libraries.
--enable-gtk-doc
: Use this parameter if
GTK-Doc is installed and you wish
to rebuild and install the API documentation.
Last updated on 2014-02-24 08:02:37 -0800