pkgconf 1.6.3.

pull/191/head pkgconf-1.6.3
Ariadne Conill 2019-07-12 06:53:37 -05:00
parent 5f3aa3a8d2
commit c862e030cf
3 changed files with 5 additions and 5 deletions

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.68])
AC_INIT([pkgconf], [1.6.2], [http://git.dereferenced.org/pkgconf/pkgconf/issues])
AC_INIT([pkgconf], [1.6.3], [https://todo.sr.ht/~kaniini/pkgconf])
AC_CONFIG_SRCDIR([cli/main.c])
AC_CONFIG_MACRO_DIRS([m4])
AX_CHECK_COMPILE_FLAG([-Wall], [CFLAGS="$CFLAGS -Wall"])

View File

@ -78,8 +78,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 10602
#define LIBPKGCONF_VERSION_STR "1.6.2"
#define LIBPKGCONF_VERSION 10603
#define LIBPKGCONF_VERSION_STR "1.6.3"
struct pkgconf_fragment_ {
pkgconf_node_t iter;

View File

@ -1,5 +1,5 @@
project('pkgconf', 'c',
version : '1.6.2',
version : '1.6.3',
license : 'ISC',
meson_version : '>=0.40')
@ -56,7 +56,7 @@ cdata.set_quoted('PKG_DEFAULT_PATH', ':'.join(default_path))
cdata.set_quoted('PERSONALITY_PATH', ':'.join(personality_path))
cdata.set_quoted('PACKAGE_NAME', meson.project_name())
cdata.set_quoted('PACKAGE_VERSION', meson.project_version())
cdata.set_quoted('PACKAGE_BUGREPORT', 'http://git.dereferenced.org/pkgconf/pkgconf/issues')
cdata.set_quoted('PACKAGE_BUGREPORT', 'https://todo.sr.ht/~kaniini/pkgconf')
cdata.set('abs_top_srcdir', meson.source_root())
cdata.set('abs_top_builddir', meson.build_root())