parent
5f3aa3a8d2
commit
c862e030cf
|
@ -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"])
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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())
|
||||
|
||||
|
|
Loading…
Reference in New Issue