Compare commits
3 Commits
7bfc2289fd
...
094dc38468
Author | SHA1 | Date |
---|---|---|
Ariadne Conill | 094dc38468 | |
Ariadne Conill | 35b1a62314 | |
Ariadne Conill | 83f412a1fd |
20
NEWS
20
NEWS
|
@ -1,6 +1,26 @@
|
||||||
Changes from previous version of pkgconf
|
Changes from previous version of pkgconf
|
||||||
========================================
|
========================================
|
||||||
|
|
||||||
|
Changes from 1.9.4 to 1.9.5:
|
||||||
|
----------------------------
|
||||||
|
|
||||||
|
* Fix incorrect assumptions involving the use of ctype(3) functions.
|
||||||
|
Patch by Taylor R Campbell.
|
||||||
|
|
||||||
|
* Fix detection of provided functions on autoconf.
|
||||||
|
Patches by Harmen Stoppels.
|
||||||
|
|
||||||
|
* Fix deletion of tests/meson.build by the autoconf build system.
|
||||||
|
Patch by h30032433.
|
||||||
|
|
||||||
|
* Fix quoting rules in argvsplit.c.
|
||||||
|
Patch by huyubiao.
|
||||||
|
|
||||||
|
* Update libpkgconf documentation and documentation building scripts.
|
||||||
|
Patches by Andrew Shadura.
|
||||||
|
|
||||||
|
* Enforce maximum package count correctly for --modversion.
|
||||||
|
|
||||||
Changes from 1.9.3 to 1.9.4:
|
Changes from 1.9.3 to 1.9.4:
|
||||||
----------------------------
|
----------------------------
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@ dnl implied. In no event shall the authors be liable for any damages arising
|
||||||
dnl from the use of this software.
|
dnl from the use of this software.
|
||||||
|
|
||||||
AC_PREREQ([2.71])
|
AC_PREREQ([2.71])
|
||||||
AC_INIT([pkgconf],[1.9.4],[https://github.com/pkgconf/pkgconf/issues/new])
|
AC_INIT([pkgconf],[1.9.5],[https://github.com/pkgconf/pkgconf/issues/new])
|
||||||
AC_CONFIG_SRCDIR([cli/main.c])
|
AC_CONFIG_SRCDIR([cli/main.c])
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
AX_CHECK_COMPILE_FLAG([-Wall], [CFLAGS="$CFLAGS -Wall"])
|
AX_CHECK_COMPILE_FLAG([-Wall], [CFLAGS="$CFLAGS -Wall"])
|
||||||
|
|
|
@ -79,8 +79,8 @@ typedef struct pkgconf_cross_personality_ pkgconf_cross_personality_t;
|
||||||
#define PKGCONF_FOREACH_LIST_ENTRY_REVERSE(tail, value) \
|
#define PKGCONF_FOREACH_LIST_ENTRY_REVERSE(tail, value) \
|
||||||
for ((value) = (tail); (value) != NULL; (value) = (value)->prev)
|
for ((value) = (tail); (value) != NULL; (value) = (value)->prev)
|
||||||
|
|
||||||
#define LIBPKGCONF_VERSION 10904
|
#define LIBPKGCONF_VERSION 10905
|
||||||
#define LIBPKGCONF_VERSION_STR "1.9.4"
|
#define LIBPKGCONF_VERSION_STR "1.9.5"
|
||||||
|
|
||||||
struct pkgconf_fragment_ {
|
struct pkgconf_fragment_ {
|
||||||
pkgconf_node_t iter;
|
pkgconf_node_t iter;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
project('pkgconf', 'c',
|
project('pkgconf', 'c',
|
||||||
version : '1.9.4',
|
version : '1.9.5',
|
||||||
license : 'ISC',
|
license : 'ISC',
|
||||||
meson_version : '>=0.49',
|
meson_version : '>=0.49',
|
||||||
default_options : ['c_std=c99'],
|
default_options : ['c_std=c99'],
|
||||||
|
|
Loading…
Reference in New Issue