meson.build, sanity.c, gui.c: update and sync some dependency versions

This commit is contained in:
Michael Natterer 2023-05-21 10:33:17 +02:00
parent 7de9c347b6
commit 0c41856393
3 changed files with 11 additions and 11 deletions

View File

@ -366,8 +366,8 @@ static gchar *
gui_sanity_check (void)
{
#define GTK_REQUIRED_MAJOR 3
#define GTK_REQUIRED_MINOR 22
#define GTK_REQUIRED_MICRO 29
#define GTK_REQUIRED_MINOR 24
#define GTK_REQUIRED_MICRO 0
const gchar *mismatch = gtk_check_version (GTK_REQUIRED_MAJOR,
GTK_REQUIRED_MINOR,

View File

@ -171,8 +171,8 @@ static gchar *
sanity_check_glib (void)
{
#define GLIB_REQUIRED_MAJOR 2
#define GLIB_REQUIRED_MINOR 56
#define GLIB_REQUIRED_MICRO 2
#define GLIB_REQUIRED_MINOR 70
#define GLIB_REQUIRED_MICRO 0
const gchar *mismatch = glib_check_version (GLIB_REQUIRED_MAJOR,
GLIB_REQUIRED_MINOR,
@ -234,7 +234,7 @@ static gchar *
sanity_check_pango (void)
{
#define PANGO_REQUIRED_MAJOR 1
#define PANGO_REQUIRED_MINOR 42
#define PANGO_REQUIRED_MINOR 44
#define PANGO_REQUIRED_MICRO 0
const gchar *mismatch = pango_version_check (PANGO_REQUIRED_MAJOR,
@ -273,8 +273,8 @@ sanity_check_fontconfig (void)
const gint fc_version = FcGetVersion ();
#define FC_REQUIRED_MAJOR 2
#define FC_REQUIRED_MINOR 2
#define FC_REQUIRED_MICRO 0
#define FC_REQUIRED_MINOR 12
#define FC_REQUIRED_MICRO 4
if (fc_version < ((FC_REQUIRED_MAJOR * 10000) +
(FC_REQUIRED_MINOR * 100) +
@ -421,8 +421,8 @@ sanity_check_gexiv2 (void)
#ifdef GEXIV2_MAJOR_VERSION
#define GEXIV2_REQUIRED_MAJOR 0
#define GEXIV2_REQUIRED_MINOR 10
#define GEXIV2_REQUIRED_MICRO 6
#define GEXIV2_REQUIRED_MINOR 14
#define GEXIV2_REQUIRED_MICRO 0
gint gexiv2_version = gexiv2_get_version ();

View File

@ -351,7 +351,7 @@ if not babl.found()
# because it would be a newer version.
babl = dependency('babl', version: '>='+babl_minver)
endif
cairo_minver = '1.12.2'
cairo_minver = '1.14.0'
cairo = dependency('cairo', version: '>='+cairo_minver)
# fontconfig_name = platform_windows ? 'fontconfig_win32' : 'fontconfig'
@ -381,7 +381,7 @@ conf.set('G_DISABLE_DEPRECATED', glib.version().version_compare('>=2.57'))
gobject = dependency('gobject-2.0', version: '>='+glib_minver)
gmodule = dependency('gmodule-no-export-2.0')
gtk3_minver = '3.16.10'
gtk3_minver = '3.24.0'
gtk3 = dependency('gtk+-3.0', version: '>='+gtk3_minver)
harfbuzz_minver = '1.0.5'
harfbuzz = dependency('harfbuzz', version: '>='+harfbuzz_minver)