Compare commits

..

No commits in common. "094dc384688a506a03f578f35501d4d638c1fad4" and "7bfc2289fd67cc7a6cf8366750f652224442d3c5" have entirely different histories.

4 changed files with 4 additions and 24 deletions

20
NEWS
View File

@ -1,26 +1,6 @@
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:
----------------------------

View File

@ -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.
AC_PREREQ([2.71])
AC_INIT([pkgconf],[1.9.5],[https://github.com/pkgconf/pkgconf/issues/new])
AC_INIT([pkgconf],[1.9.4],[https://github.com/pkgconf/pkgconf/issues/new])
AC_CONFIG_SRCDIR([cli/main.c])
AC_CONFIG_MACRO_DIR([m4])
AX_CHECK_COMPILE_FLAG([-Wall], [CFLAGS="$CFLAGS -Wall"])

View File

@ -79,8 +79,8 @@ typedef struct pkgconf_cross_personality_ pkgconf_cross_personality_t;
#define PKGCONF_FOREACH_LIST_ENTRY_REVERSE(tail, value) \
for ((value) = (tail); (value) != NULL; (value) = (value)->prev)
#define LIBPKGCONF_VERSION 10905
#define LIBPKGCONF_VERSION_STR "1.9.5"
#define LIBPKGCONF_VERSION 10904
#define LIBPKGCONF_VERSION_STR "1.9.4"
struct pkgconf_fragment_ {
pkgconf_node_t iter;

View File

@ -1,5 +1,5 @@
project('pkgconf', 'c',
version : '1.9.5',
version : '1.9.4',
license : 'ISC',
meson_version : '>=0.49',
default_options : ['c_std=c99'],