2001-04-29 13:23:21 +02:00
|
|
|
The pkg-config program is used to retrieve information about installed
|
|
|
|
libraries in the system. It is typically used to compile and link against one
|
2005-11-05 05:53:48 +01:00
|
|
|
or more libraries. It's more useful to the compilation process than to
|
|
|
|
the end-user.
|
2001-04-29 13:23:21 +02:00
|
|
|
|
|
|
|
pkg-config retrieves information about packages from special metadata files.
|
|
|
|
These files are named after the package, with the extension .pc. By default,
|
2005-11-05 05:53:48 +01:00
|
|
|
pkg-config looks for these files in the following directories:
|
2006-05-01 02:11:20 +02:00
|
|
|
${PREFIX}/libdata/pkgconfig, ${PREFIX}/lib/pkgconfig,
|
2007-07-04 16:27:39 +02:00
|
|
|
${LOCALBASE}/libdata/pkgconfig, and ${LOCALBASE}/lib/pkgconfig; it will also
|
|
|
|
look in the list of directories specified by the PKG_CONFIG_PATH environment
|
2006-05-01 02:11:20 +02:00
|
|
|
variable.
|
2001-04-29 13:23:21 +02:00
|
|
|
|
2005-11-05 05:53:48 +01:00
|
|
|
WWW: http://pkgconfig.freedesktop.org/wiki/
|