GDL: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
No edit summary |
||
| Line 89: | Line 89: | ||
|The library containing the development tools. | |The library containing the development tools. | ||
|} | |} | ||
[[Category:Programming]] | |||
Latest revision as of 15:57, 19 March 2009
| Download Source: | http://ftp.gnome.org/pub/GNOME/sources/gdl/2.28/gdl-2.28.2.tar.bz2 |
|---|
Introduction to GDL
This GDL is the GNOME DevTools Library.
Project Homepage: http://www.gnome.org
Dependencies
Required
Non-Multilib
Compile the package:
./configure --prefix=/usr && make
Install the package:
make install
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" USE_ARCH=32 \
PKG_CONFIG_PATH=$PKG_CONFIG_PATH32 \
./configure --prefix=/usr &&
make
Install the package:
make install
N32
Compile the package:
CC="gcc ${BUILDN32}" USE_ARCH=n32 \
PKG_CONFIG_PATH=$PKG_CONFIG_PATHN32 \
./configure --prefix=/usr --libdir=/usr/lib32 &&
make
Install the package:
make install
64Bit
Compile the package:
CC="gcc ${BUILD64}" USE_ARCH=64 \
PKG_CONFIG_PATH=$PKG_CONFIG_PATH64 \
./configure --prefix=/usr --libdir=/usr/lib64 &&
make
Install the package:
make install
Contents
| Installed Directories: | /usr/include/libgdl-1.0/gdl, /usr/share/gdl/glade |
|---|---|
| Installed Libraries: | libgdl-1.{a,so} libgdl-gnome-1.{a,so} |
Short Descriptions
| libgdl-1: | The library containing the development tools. |
|---|