package compiler and linker metadata toolkit
 
 
 
 
 
Go to file
William Pitcock dc61404a79 pkgconf 0.8.1. 2012-07-20 22:38:02 -05:00
m4 Initial commit. 2011-07-24 21:03:17 -05:00
scripts Add makerelease. 2011-07-25 17:06:11 -05:00
tests tests: add a test for malformed pkg_t entities 2012-07-20 19:55:06 -05:00
.gitattributes Add .gitattributes file to force dos-lineendings.pc to match CRLF style always 2012-05-04 03:15:07 +00:00
.gitignore pkgconf 0.8.1. 2012-07-20 22:38:02 -05:00
AUTHORS AUTHORS: add mgorny 2012-05-07 04:01:40 -05:00
COPYING COPYING: more friendly warranty disclaimer text 2012-07-20 14:30:40 -05:00
Makefile parse: remove remaining function (pkg_t constructor) to pkg.c 2012-05-06 23:00:06 -05:00
README.md Update README. 2012-07-20 20:35:47 -05:00
argvsplit.c everything: more friendly warranty disclaimer 2012-07-20 14:29:58 -05:00
autogen.sh Initial commit. 2011-07-24 21:03:17 -05:00
bsdstubs.c everything: more friendly warranty disclaimer 2012-07-20 14:29:58 -05:00
bsdstubs.h everything: more friendly warranty disclaimer 2012-07-20 14:29:58 -05:00
buildsys.mk.in Update buildsys to my forked version. 2012-04-30 06:01:11 +00:00
config.guess Add config.sub and config.guess. 2011-07-24 23:26:24 -05:00
config.sub Add config.sub and config.guess. 2011-07-24 23:26:24 -05:00
configure.ac pkgconf 0.8.1. 2012-07-20 22:38:02 -05:00
dependency.c everything: more friendly warranty disclaimer 2012-07-20 14:29:58 -05:00
fileio.c everything: more friendly warranty disclaimer 2012-07-20 14:29:58 -05:00
fragment.c everything: more friendly warranty disclaimer 2012-07-20 14:29:58 -05:00
getopt_long.c getopt_long: use stdinc.h 2012-07-20 16:35:53 -05:00
getopt_long.h getopt_long: more fixing 2012-07-20 16:37:26 -05:00
install-sh add install-sh 2011-07-24 23:24:10 -05:00
main.c main: bail if the entire depgraph cannot be built 2012-07-20 20:04:11 -05:00
pkg.c everything: more friendly warranty disclaimer 2012-07-20 14:29:58 -05:00
pkg.h everything: more friendly warranty disclaimer 2012-07-20 14:29:58 -05:00
pkg.m4 m4: provide additional pkg-config macros 2012-05-03 20:59:22 +00:00
stdinc.h everything: more friendly warranty disclaimer 2012-07-20 14:29:58 -05:00
tuple.c everything: more friendly warranty disclaimer 2012-07-20 14:29:58 -05:00

README.md

pkgconf

pkgconf provides compiler and linker configuration for development frameworks.

general summary

pkgconf is a program which helps to configure compiler and linker flags for development frameworks. It is similar to pkg-config, but was written from scratch in Summer of 2011 to replace pkg-config, which now needs itself to build itself (or you can set a bunch of environment variables, both are pretty ugly.)

Implementations of pkg-config, such as pkgconf are typically used with the PKG_CHECK_MODULES autoconf macro. As far as I (nenolod) know, pkgconf is compatible with all known variations of this macro. However, I have not extensively tested yet for compatibility. pkgconf detects at runtime whether or not it was started as 'pkg-config', and if so, attempts to set program options in a way where it's behaviour should be similar.

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 pkg-config binary. (hint: export PKG_CONFIG=/usr/bin/pkgconf) However, if you do this, it will be running in native mode, so you may have some very strange results as the dependency graph is compiled differently in native mode.

technical design (why pkgconf is better for distros)

pkgconf builds an acyclic directed dependency graph. This allows for the user to more conservatively link their binaries -- which may be helpful in some 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 by the user, more accurate dependencies can be determined. pkg-config, on the other hand builds 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.

pkgconf also does not bundle any third-party libraries or depend on any third-party libraries, making it a great tool for embedded systems and distributions with security concerns.

compiling

pkgconf is basically compiled the same way any other autotools-based project is compiled:

$ ./configure
$ make
$ sudo make install

release tarballs

Release tarballs are available at http://nenolod.net/~nenolod/distfiles.

reporting bugs

See https://github.com/nenolod/pkgconf/issues.