forked from ariadne/pkgconf
parent
9315ee9ee6
commit
e2fdd6f470
|
@ -12,7 +12,7 @@ PROJECT(pkgconf C)
|
||||||
|
|
||||||
SET(PACKAGE_BUGREPORT http://github.com/pkgconf/pkgconf/issues)
|
SET(PACKAGE_BUGREPORT http://github.com/pkgconf/pkgconf/issues)
|
||||||
SET(PACKAGE_NAME pkgconf)
|
SET(PACKAGE_NAME pkgconf)
|
||||||
SET(PACKAGE_VERSION 1.3.7)
|
SET(PACKAGE_VERSION 1.6.0)
|
||||||
SET(LIBPKGCONF_VERSION "3.0.0")
|
SET(LIBPKGCONF_VERSION "3.0.0")
|
||||||
SET(LIBPKGCONF_SOVERSION 3)
|
SET(LIBPKGCONF_SOVERSION 3)
|
||||||
|
|
||||||
|
|
15
NEWS
15
NEWS
|
@ -1,6 +1,21 @@
|
||||||
Changes from previous version of pkgconf
|
Changes from previous version of pkgconf
|
||||||
========================================
|
========================================
|
||||||
|
|
||||||
|
Changes from 1.5.4 to 1.6.0:
|
||||||
|
----------------------------
|
||||||
|
|
||||||
|
* Bug fixes:
|
||||||
|
- Fixed issue where packages which referenced missing packages in
|
||||||
|
Requires.private may have crashed due to memory corruption issues
|
||||||
|
in some circumstances.
|
||||||
|
- Fixed warnings reported by GCC 8 diagnostics.
|
||||||
|
|
||||||
|
* Enhancements:
|
||||||
|
- Add LIBPKGCONF_VERSION and LIBPKGCONF_VERSION_STR macros for
|
||||||
|
determining libpkgconf version.
|
||||||
|
- Add pkgconf_fragment_copy_list() to copy a fragment list to
|
||||||
|
another fragment list.
|
||||||
|
|
||||||
Changes from 1.5.3 to 1.5.4:
|
Changes from 1.5.3 to 1.5.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.68])
|
AC_PREREQ([2.68])
|
||||||
AC_INIT([pkgconf], [1.5.4], [http://github.com/pkgconf/pkgconf/issues])
|
AC_INIT([pkgconf], [1.6.0], [http://github.com/pkgconf/pkgconf/issues])
|
||||||
AC_CONFIG_SRCDIR([cli/main.c])
|
AC_CONFIG_SRCDIR([cli/main.c])
|
||||||
AC_CONFIG_MACRO_DIRS([m4])
|
AC_CONFIG_MACRO_DIRS([m4])
|
||||||
AX_CHECK_COMPILE_FLAG([-Wall], [CFLAGS="$CFLAGS -Wall"])
|
AX_CHECK_COMPILE_FLAG([-Wall], [CFLAGS="$CFLAGS -Wall"])
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
project('pkgconf', 'c',
|
project('pkgconf', 'c',
|
||||||
version : '1.4.0',
|
version : '1.6.0',
|
||||||
license : 'ISC',
|
license : 'ISC',
|
||||||
meson_version : '>=0.40')
|
meson_version : '>=0.40')
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue