Skip to content

Commit

Permalink
Ensure our requirement bumps for GNOME 3.36 stack is consistent.
Browse files Browse the repository at this point in the history
Too many of the requirements were based on the GTK version rather than the actual stack release. Went through and updated accordingly.
  • Loading branch information
JoshStrobl committed Dec 2, 2020
1 parent cd87145 commit b47ad8c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ am_cflags = [
add_global_arguments(am_cflags, language: 'c')
meson.add_install_script('meson_post_install.sh')

# Budgie needs a minimum 3.24 GNOME stack
gnome_minimum_version = '>= 3.24.0'
# Budgie needs a minimum 3.36 GNOME stack with GTK 3.24+
gnome_minimum_version = '>= 3.36.0'

dep_gtk3 = dependency('gtk+-3.0', version: gnome_minimum_version)
dep_gtk3 = dependency('gtk+-3.0', version: '>= 3.24.0')
dep_glib = dependency('glib-2.0', version: '>= 2.64.0')
dep_giounix = dependency('gio-unix-2.0', version: '>= 2.64.0')
dep_peas = dependency('libpeas-1.0', version: '>= 1.26.0')
dep_gdkx11 = dependency('gdk-x11-3.0', version: gnome_minimum_version)
dep_gdkx11 = dependency('gdk-x11-3.0', version: '>= 3.24.0')
dep_libuuid = dependency('uuid')
dep_vala = dependency('vapigen', version: '>= 0.48.0')

Expand Down
2 changes: 1 addition & 1 deletion src/applets/status/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ applet_status_deps = [
dep_gtk3,
dep_peas,
dep_accountsservice,
dependency('gnome-bluetooth-1.0', version: gnome_minimum_version),
dependency('gnome-bluetooth-1.0', version: '>= 3.34.0'),
dependency('upower-glib', version: '>= 0.99.0'),
link_libplugin,
gvc.get_variable('libgvc_dep'),
Expand Down

0 comments on commit b47ad8c

Please sign in to comment.