2021-03-18 12:52:31 +00:00
|
|
|
# pkgconf [![test](https://github.com/pkgconf/pkgconf/actions/workflows/test.yml/badge.svg)](https://github.com/pkgconf/pkgconf/actions/workflows/test.yml)
|
2011-07-25 07:02:08 +00:00
|
|
|
|
2016-07-10 20:34:49 +00:00
|
|
|
`pkgconf` is a program which helps to configure compiler and linker flags for
|
2017-12-06 00:12:47 +00:00
|
|
|
development libraries. It is similar to pkg-config from freedesktop.org.
|
2012-04-30 05:32:49 +00:00
|
|
|
|
2021-12-11 21:56:31 +00:00
|
|
|
`libpkgconf` is a library which provides access to most of `pkgconf`'s functionality,
|
|
|
|
to allow other tooling such as compilers and IDEs to discover and use libraries
|
|
|
|
configured by pkgconf.
|
2011-07-25 07:02:08 +00:00
|
|
|
|
2016-07-10 20:34:49 +00:00
|
|
|
## using `pkgconf` with autotools
|
2011-07-25 07:02:08 +00:00
|
|
|
|
2012-08-31 16:35:26 +00:00
|
|
|
Implementations of pkg-config, such as pkgconf, are typically used with the
|
2014-07-09 07:25:01 +00:00
|
|
|
PKG_CHECK_MODULES autoconf macro. As far as we know, pkgconf is
|
2012-07-27 05:03:49 +00:00
|
|
|
compatible with all known variations of this macro. pkgconf detects at
|
|
|
|
runtime whether or not it was started as 'pkg-config', and if so, attempts
|
2012-08-31 16:35:26 +00:00
|
|
|
to set program options such that its behaviour is similar.
|
2011-07-25 07:02:08 +00:00
|
|
|
|
|
|
|
In terms of the autoconf macro, it is possible to specify the PKG_CONFIG
|
|
|
|
environment variable, so that you can test pkgconf without overwriting your
|
2014-07-09 07:25:01 +00:00
|
|
|
pkg-config binary. Some other build systems may also respect the PKG_CONFIG
|
|
|
|
environment variable.
|
|
|
|
|
2015-09-06 17:04:38 +00:00
|
|
|
To set the environment variable on the bourne shell and clones (i.e. bash), you
|
2014-07-09 07:25:01 +00:00
|
|
|
can run:
|
|
|
|
|
|
|
|
$ export PKG_CONFIG=/usr/bin/pkgconf
|
2011-07-25 07:02:08 +00:00
|
|
|
|
2016-07-10 20:34:49 +00:00
|
|
|
## comparison of `pkgconf` and `pkg-config` dependency resolvers
|
2011-07-25 07:02:08 +00:00
|
|
|
|
|
|
|
pkgconf builds an acyclic directed dependency graph. This allows for the user
|
2016-12-25 05:07:59 +00:00
|
|
|
to more conservatively link their binaries -- which may be helpful in some
|
2011-07-25 07:02:08 +00:00
|
|
|
environments, such as when prelink(1) is being used. As a result of building
|
|
|
|
a directed dependency graph designed for the specific problem domain provided
|
2016-12-25 05:07:59 +00:00
|
|
|
by the user, more accurate dependencies can be determined.
|
|
|
|
|
|
|
|
Current release versions of pkg-config, on the other hand, build a database of all
|
|
|
|
known pkg-config files on the system before attempting to resolve dependencies, which
|
|
|
|
is a considerably slower and less efficient design. Efforts have been made recently
|
|
|
|
to improve this behaviour.
|
|
|
|
|
|
|
|
As of the 1.1 series, pkgconf also fully implements support for `Provides` rules,
|
|
|
|
while pkg-config does not. pkg-config only provides the `--print-provides` functionality
|
|
|
|
as a stub. There are other intentional implementation differences in pkgconf's dependency
|
2021-08-30 20:50:32 +00:00
|
|
|
resolver versus pkg-config's dependency resolver in terms of completeness and correctness,
|
2016-12-25 05:07:59 +00:00
|
|
|
such as, for example, how `Conflicts` rules are processed.
|
2011-07-25 07:02:08 +00:00
|
|
|
|
2016-07-10 20:34:49 +00:00
|
|
|
## linker flags optimization
|
2015-07-19 21:26:28 +00:00
|
|
|
|
|
|
|
As previously mentioned, pkgconf makes optimizations to the linker flags in both the
|
|
|
|
case of static and shared linking in order to avoid overlinking binaries and also
|
|
|
|
simplifies the `CFLAGS` and `LIBS` output of the pkgconf tool for improved readability.
|
|
|
|
|
|
|
|
This functionality depends on the pkg-config module properly declaring it's dependency
|
|
|
|
tree instead of using `Libs` and `Cflags` fields to directly link against other modules
|
|
|
|
which have pkg-config metadata files installed.
|
|
|
|
|
|
|
|
Doing so is discouraged by the [freedesktop tutorial][fd-tut] anyway.
|
|
|
|
|
|
|
|
[fd-tut]: http://people.freedesktop.org/~dbn/pkg-config-guide.html
|
|
|
|
|
2016-07-10 20:34:49 +00:00
|
|
|
## compatibility with pkg-config
|
|
|
|
|
2021-07-25 01:37:41 +00:00
|
|
|
I really hate that I have to have this section, I like being a nice person, but we
|
|
|
|
unfortunately have to say this because otherwise we get passive-aggressive people who
|
|
|
|
try to argue with us about what pkg-config compatibility means.
|
|
|
|
|
2016-07-10 20:34:49 +00:00
|
|
|
We do not provide bug-level compatibility with pkg-config.
|
|
|
|
|
|
|
|
What that means is, if you feel that there is a legitimate regression versus pkg-config,
|
|
|
|
do let us know, but also make sure that the .pc files are valid and follow the rules of
|
2016-12-02 07:08:12 +00:00
|
|
|
the [pkg-config tutorial][fd-tut], as most likely fixing them to follow the specified
|
2015-07-19 21:26:28 +00:00
|
|
|
rules will solve the problem.
|
|
|
|
|
2021-12-11 21:56:31 +00:00
|
|
|
Additionally, **we do not consider pkgconf doing what you tell it to do, in cases for
|
|
|
|
which pkg-config fails to do so, to be a bug**.
|
2021-07-25 01:37:41 +00:00
|
|
|
|
|
|
|
If, for example, you use environment variables such as `PKG_CONFIG_SYSTEM_[INCLUDE|LIBRARY]_PATH`
|
|
|
|
and then find yourself surprised that `pkgconf` is stripping `-I` and `-L` flags relating
|
2021-12-11 21:56:31 +00:00
|
|
|
to those paths, it is not a `pkgconf` problem -- `pkgconf` is doing exactly what you told
|
2021-07-25 01:37:41 +00:00
|
|
|
it to do.
|
|
|
|
|
2021-12-11 21:56:31 +00:00
|
|
|
We will reject bugs like this, and if someone insists on fixing such a non-bug, this
|
|
|
|
constitutes a violation of our [Code of Conduct](CODE_OF_CONDUCT.md), which may be
|
|
|
|
addressed by banning from this repository.
|
2021-07-25 01:37:41 +00:00
|
|
|
|
2021-10-26 03:52:52 +00:00
|
|
|
## debug output
|
|
|
|
|
|
|
|
Please use only the stable interfaces to query pkg-config. Do not screen-scrape the
|
|
|
|
output from `--debug`: this is sent to `stderr` for a reason, it is not intended to be
|
|
|
|
scraped. The `--debug` output is **not** a stable interface, and should **never** be
|
|
|
|
depended on as a source of information. If you need a stable interface to query pkg-config
|
|
|
|
which is not covered, please get in touch.
|
|
|
|
|
2017-06-17 02:15:23 +00:00
|
|
|
## compiling `pkgconf` and `libpkgconf` on UNIX
|
2011-07-25 07:02:08 +00:00
|
|
|
|
2012-04-30 05:32:49 +00:00
|
|
|
pkgconf is basically compiled the same way any other autotools-based project is
|
|
|
|
compiled:
|
2011-07-25 07:02:08 +00:00
|
|
|
|
2012-04-30 05:32:49 +00:00
|
|
|
$ ./configure
|
|
|
|
$ make
|
|
|
|
$ sudo make install
|
2011-07-25 07:02:08 +00:00
|
|
|
|
2013-10-06 12:34:09 +00:00
|
|
|
If you are installing pkgconf into a custom prefix, such as `/opt/pkgconf`, you will
|
|
|
|
likely want to define the default system includedir and libdir for your toolchain.
|
|
|
|
To do this, use the `--with-system-includedir` and `--with-system-libdir` configure
|
|
|
|
flags like so:
|
|
|
|
|
|
|
|
$ ./configure \
|
|
|
|
--prefix=/opt/pkgconf \
|
|
|
|
--with-system-libdir=/lib:/usr/lib \
|
|
|
|
--with-system-includedir=/usr/include
|
|
|
|
$ make
|
|
|
|
$ sudo make install
|
|
|
|
|
2021-12-11 13:49:05 +00:00
|
|
|
## compiling `pkgconf` and `libpkgconf` with Meson (usually for Windows)
|
2017-06-17 02:15:23 +00:00
|
|
|
|
|
|
|
|
2021-12-11 13:49:05 +00:00
|
|
|
pkgconf is compiled using [Meson](https://mesonbuild.com) on Windows. In theory, you could also use
|
|
|
|
Meson to build on UNIX, but this is not recommended at this time as it pkgconf is typically built
|
|
|
|
much earlier than Meson.
|
2017-06-17 02:15:23 +00:00
|
|
|
|
2021-12-11 13:49:05 +00:00
|
|
|
$ meson setup build -Dtests=false
|
|
|
|
$ meson compile -C build
|
|
|
|
$ meson install -C build
|
2017-06-17 02:15:23 +00:00
|
|
|
|
|
|
|
There are a few defines such as SYSTEM_LIBDIR, PKGCONFIGDIR and SYSTEM_INCLUDEDIR.
|
|
|
|
However, on Windows, the default PKGCONFIGDIR value is usually overridden at runtime based
|
|
|
|
on path relocation.
|
|
|
|
|
|
|
|
## pkg-config symlink
|
|
|
|
|
2013-10-06 12:34:09 +00:00
|
|
|
If you want pkgconf to be used when you invoke `pkg-config`, you should install a
|
|
|
|
symlink for this. We do not do this for you, as we believe it is better for vendors
|
|
|
|
to make this determination themselves.
|
|
|
|
|
2017-12-19 23:48:44 +00:00
|
|
|
$ ln -sf pkgconf /usr/bin/pkg-config
|
2013-10-06 12:34:09 +00:00
|
|
|
|
2012-06-06 21:25:29 +00:00
|
|
|
## release tarballs
|
|
|
|
|
2016-09-19 03:12:25 +00:00
|
|
|
Release tarballs are available at <https://distfiles.dereferenced.org/pkgconf/>.
|
2018-06-04 18:13:42 +00:00
|
|
|
Please only use the tarballs from distfiles.dereferenced.org.
|
2016-07-10 20:34:49 +00:00
|
|
|
|
2019-07-12 10:56:35 +00:00
|
|
|
## contacts
|
|
|
|
|
2021-05-19 10:52:27 +00:00
|
|
|
You can report bugs at <https://github.com/pkgconf/pkgconf/issues>.
|
2011-07-25 07:02:08 +00:00
|
|
|
|
2019-07-12 10:56:35 +00:00
|
|
|
There is a mailing list at <https://lists.sr.ht/~kaniini/pkgconf>.
|
2015-04-20 14:44:41 +00:00
|
|
|
|
2021-05-19 10:52:27 +00:00
|
|
|
You can contact us via IRC at `#pkgconf` at `irc.oftc.net`.
|