summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* pkg-config.morph: pass options to autogen.sh because --no-configure does not ↵Richard Maw2012-01-311-2/+1
| | | | work
* pkg-config.morph: set --no-configureRichard Maw2012-01-311-1/+1
| | | | we run ./configure ourselves so we have more control over the options
* autogen.sh: force remove glib directoryRichard Maw2012-01-301-1/+1
| | | | | set -e caused it to stop there because it did not already have glib extracted adding -f should make it return success if it does nothing
* autogen.sh: set -eRichard Maw2012-01-301-0/+1
| | | | see if this catches any failure
* use autoreconf in glibRichard Maw2012-01-171-1/+1
|
* add morphRichard Maw2012-01-171-0/+14
|
* Bump version number to 0.25pkg-config-0.25Tollef Fog Heen2010-05-281-1/+1
|
* Document 0.25 changesTollef Fog Heen2010-05-281-0/+13
|
* Make sure to distribute the blank fields .pc file tooTollef Fog Heen2010-05-281-1/+2
|
* Document pc_path a bitTollef Fog Heen2010-05-271-1/+10
|
* Add test case for empty fieldsTollef Fog Heen2010-05-273-0/+18
| | | | Make sure we don't run into the bug fixed by 6a27c57 again.
* Handle empty valued fields with newer external poptDan Nicholson2010-05-271-21/+31
| | | | | | | The bundled popt handled the case of Cflags or Libs with no value, but newer popt linked through --with-installed-popt chokes parsing it into a vector. This is arguably a popt bug in poptParseArgvString, but I guess they expect you not to ask it to split an empty string.
* Fix up test framework to better report errors when pkg-config exits non-zeroTollef Fog Heen2010-05-271-1/+3
|
* Allow : and = unescaped in output tooTollef Fog Heen2010-05-273-5/+6
|
* Add COPYING files to give general licensing termsDan Nicholson2010-05-274-1/+363
| | | | | | | | | In order to avoid having the COPYING file from automake included in the distribution, add a copy of the GPLv2 for pkg-config. This matches the source files, which all specify GPLv2+. The COPYING file from upstream popt has also been added for the bundled popt sources.
* Fix typo in man pageTollef Fog Heen2010-05-241-1/+1
|
* Distcheck fixespkg-config-0.24Tollef Fog Heen2010-05-235-7/+7
| | | | Various small fixes to make distcheck pass
* Bump version number in configure.acTollef Fog Heen2010-05-231-1/+1
|
* Write NEWS for 0.24Tollef Fog Heen2010-05-231-0/+21
|
* Make it possible to escape paths containing special shell charactersTollef Fog Heen2010-05-234-51/+78
| | | | | | | | Allow paths and other components to contain shell metacharacters, but escape them on output. White space has to be escaped in the input files using quotes or backslashes Freedesktop.org #3571
* Add --print-provides and --print-requires-private to the manual pageJohannes Schmid2010-05-101-0/+10
|
* Add --print-provides and --print-requires(-private) optionsJohannes Schmid2010-05-101-1/+79
| | | | | These are useful for applications that need to query the pkg-config database, e.g. managers or IDEs.
* Quote the deplibs_check method a bit harderDaniel Richard G2010-05-091-1/+1
| | | | This makes compiling on HP-UX work.
* Optionally use an external popt libraryDan Nicholson2010-05-092-1/+24
| | | | | | | The one imported into pkg-config has seen very little maintenance, so let's give users the option to use the upstream version. The default is to use the included sources, but it can search for the system library using --with-installed-popt.
* Move popt to subdirectory and make a convenience library of itDan Nicholson2010-05-0911-12/+17
| | | | | This keeps a cleaner separation of the pkg-config sources and the imported popt sources.
* Fix formatting typo in pkg-config.1Kirill Smelkov2010-05-091-1/+1
| | | | | Without <dot>TP, "Requires" and "Requires.private" are rendered as one paragraph.
* Add listing of variablesJorn Amundsen2010-05-092-1/+35
| | | | Fixes Freedesktop #133
* Handle -idirafter speciallyTollef Fog Heen2010-05-094-9/+38
| | | | | | Don't split -idirafter from its argument. Fixes Freedesktop #23480
* Fix up man pageTollef Fog Heen2010-05-091-41/+55
| | | | | | | Make sure to avoid \ macros at the start of lines, as that makes some man implementations unhappy. Fixes freedesktop #17914
* Make it clearer which directory PKG_CONFIG_LIBDIR refers toTollef Fog Heen2010-05-081-1/+1
| | | | Fixes Freedesktop.org #26879
* Use $() rather than ``Tollef Fog Heen2010-05-081-1/+1
| | | | Fixes Freedesktop.org #27376
* Document --list-all option in man pageDan Nicholson2010-05-081-1/+4
| | | | Present in the --help output, but not the manual...
* Include an introductory guide to pkg-configDan Nicholson2010-05-082-0/+422
| | | | | | The pkg-config(1) manual includes a lot of details behind pkg-config, but not the background and usage patterns. This guide tries to provide users and developers with a starting point for pkg-config.
* Add .gitignore to exclude generated files from trackingDan Nicholson2010-05-081-0/+29
| | | | This was basically generated with "git ls-files -o --directory".
* Mark Changelog as no longer kept up to date.Tollef Fog Heen2010-05-081-0/+6
|
* Update rpmvercmp with bugfixes from RPMTollef Fog Heen2010-05-081-1/+5
| | | | Grab two minor bugfixes from RPM's rpmvercmp.
* Clean up sysroot support a little bitTollef Fog Heen2009-12-061-26/+15
| | | | This should fix bug #16905 properly.
* Print out \r\n on windows, not just \nTollef Fog Heen2009-12-061-0/+4
| | | | This should hopefully fix bug #17053
* Fix up help for --silence-errorsTollef Fog Heen2009-12-061-2/+4
| | | | Bug #8616
* Reduce the width of argumentsTollef Fog Heen2009-12-061-2/+2
| | | | This makes the --help output flow easier and look better.
* Add link to bugs.fd.o in man pageTollef Fog Heen2009-12-061-0/+3
| | | | Bug #4793
* Constify a variableTollef Fog Heen2009-12-061-1/+1
| | | | | Thanks to J.H.M. Dassen (Ray) Bug #190
* Misc m4 cleanupsTollef Fog Heen2009-12-061-11/+8
| | | | | | | | Whitespace cleanups Use m4_default instead of some ifelses. Thanks to Stepan Kasal for the patch this is based on Bug #13892
* Make sure AC_MSG_RESULT is always calledTollef Fog Heen2009-12-061-4/+4
| | | | | Based on a patch by Peter Breitenlohner, thanks. Bug #9704
* Add serial to pkg.m4Tollef Fog Heen2009-12-061-0/+1
| | | | Bug #22709
* Rephrase comment before PKG_CHECK_EXISTS in pkg.m4Tollef Fog Heen2009-12-061-4/+4
|
* MergeTollef Fog Heen2009-08-157-19/+57
|\
| * Fix include path for check/commonTollef Fog Heen2009-06-301-1/+1
| |
| * 2009-06-12 Tor Lillqvist <tml@iki.fi>Tollef Fog Heen2009-06-305-17/+49
|/ | | | | | | | | | | | | | * parse.c: On Win32, if the value of a a variable other than the "prefix" one starts with the non-overridden value of "prefix", then replace that prefix, too, with the run-time one. To avoid shadowing warnings, rename a 'p' variable to 'q'. * pkg-config.1: Corresponding update. * main.c * pkg.h: Move the Win32 redefinition of PKG_CONFIG_PC_PATH from main.c to pkg.h as it now is needed in pkg.c, too.
* 2009-03-30 Tollef Fog Heen <tfheen@err.no>Tollef Fog Heen2009-03-302-6/+16
| | | | * autogen.sh: Allow not running configure, wanted by cygwin.