Bump minimum version of libdnf in CMake and Meson

This was supposed to be done in 1a11b81885,
but it was missed by accident.
This commit is contained in:
Neal Gompa 2020-11-13 10:33:57 -05:00 committed by Neal Gompa (ニール・ゴンパ)
parent 0d353c9c05
commit d796e26008
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ find_package (PkgConfig REQUIRED)
pkg_check_modules (GLIB REQUIRED glib-2.0>=2.44.0)
pkg_check_modules (GOBJECT REQUIRED gobject-2.0>=2.44.0)
pkg_check_modules (PEAS REQUIRED libpeas-1.0>=1.20.0)
pkg_check_modules (LIBDNF REQUIRED libdnf>=0.7.0)
pkg_check_modules (LIBDNF REQUIRED libdnf>=0.55.0)
pkg_check_modules (SCOLS REQUIRED smartcols)
set (PKG_LIBDIR ${CMAKE_INSTALL_FULL_LIBDIR}/dnf)

View File

@ -32,7 +32,7 @@ gnome = import('gnome')
glib = dependency('glib-2.0', version : '>=2.44.0')
gobject = dependency('gobject-2.0', version : '>=2.44.0')
libpeas = dependency('libpeas-1.0', version : '>=1.20.0')
libdnf = dependency('libdnf', version : '>=0.7.0')
libdnf = dependency('libdnf', version : '>=0.55.0')
scols = dependency('smartcols')
pkg_libdir = join_paths(get_option('prefix'), get_option('libdir'), 'dnf')