summaryrefslogtreecommitdiff
path: root/pkg.m4.in
Commit message (Collapse)AuthorAgeFilesLines
* Spelling and grammar in pkg.m4Tollef Fog Heen2020-04-211-2/+2
| | | | Fixes: #27
* pkg.m4: Bump the serial number for releaseDan Nicholson2017-03-201-1/+1
| | | | | There aren't any significant changes here, but this will cause aclocal to get the latest version.
* m4: Fix indentationPeter Eisentraut2017-03-191-3/+3
| | | | | | | | | The pkg-config source code is full of weird whitespace, the sort that git diff --check would complain about. Attached is a small patch that cleans this up in pkg.m4 so that it doesn't propagate into other packages. https://bugs.freedesktop.org/show_bug.cgi?id=99522
* Make PKG_CHECK_MODULES report the module name instead of the variable prefixRuss Allbery2017-03-191-1/+1
| | | | | | | | | | | | | | | | | | | | | In Autoconf output from PKG_CHECK_MODULES in pkg.m4, the "checking for" message refers to the first argument of PKG_CHECK_MODULES, the variable prefix, instead of the second argument, the module being checked for. This results in strange output (like ALL CAPS module names) in various packages. And when probing for modules, one can't always use a variable prefix that matches the module name (since ‘-’ and other characters aren't allowed in variable names), so the Autoconf output is going to refer to something odd. The status output should reference the module name being probed for, both because it looks nicer and because, when debugging problems, this references the actual thing being probed for on the system, rather than an internal implementation detail. Signed-off-by: Guillem Jover <guillem@hadrons.org> https://bugs.freedesktop.org/show_bug.cgi?id=98334
* pkg.m4.in: use correct comments for aclocal serialRoss Burton2016-09-061-3/+3
| | | | | | | aclocal requires that serial numbers are on a line commented out with hashes not dnl, so change the commenting style on the first two lines. https://bugs.freedesktop.org/show_bug.cgi?id=97615
* m4: Change all comment markers to dnlDan Nicholson2015-09-261-118/+122
| | | | | | Using # leaves the comments within the generated configure file, which is just unnecessary bloat since no one would read the generated configure file for the documentation of the macros.
* m4: Add Since releases and cleanup commentsDan Nicholson2015-09-261-12/+29
| | | | | Note which release each macro was added in and cleanup the comments to be more consistent between them.
* m4: Update serial to 11Dan Nicholson2015-09-261-1/+1
| | | | | | This was determined by counting the number of changes to pkg.m4 since the initial serial number was added. The trailing comment is also updated to have the version number substituted.
* m4: Add PKG_PREREQ version checking macroDan Nicholson2015-09-261-0/+21
| | | | | | | | | | While PKG_PROG_PKG_CONFIG checks the version of pkg-config available at build time, it doesn't check the version of the pkg-config macros being used. PKG_PREREQ (like AC_PREREQ or LT_PREREQ) can be used to check the version of the macros in use when configure is being generated by the developer. https://bugs.freedesktop.org/show_bug.cgi?id=89267
* m4: Process pkg.m4 through AC_CONFIG_FILESDan Nicholson2015-09-261-0/+233
Currently there are no substitutions needed in pkg.m4, but this will allow autoconf values such as the package version to be included.