Skip to content

Commit

Permalink
build: Fix build with fwupd 2.0.0 (#169)
Browse files Browse the repository at this point in the history
Based on https://gitlab.archlinux.org/archlinux/packaging/packages/pantheon-settings-daemon/-/commit/e1f48299fdc39d3825fa65cfbcce54678e34a823.

Fixes:

../src/Application.vala:140.39-140.65: error: The name `DEVICE_FLAG_UPDATABLE' does not exist in the context of `Fwupd' (fwupd)
  140 |                 if (!device.has_flag (Fwupd.DEVICE_FLAG_UPDATABLE)) {
      |                                       ^~~~~~~~~~~~~~~~~~~~~~~~~~~
  • Loading branch information
bobby285271 authored Nov 7, 2024
1 parent 9e01c46 commit f9f9e6c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ pk_dep = dependency('packagekit-glib2')
i18n = import('i18n')
gettext_name = meson.project_name()

if fwupd_dep.version().version_compare('>=2.0.0')
add_project_arguments('--define', 'HAS_FWUPD_2_0', language: 'vala')
endif

add_project_arguments(
'-DGETTEXT_PACKAGE="@0@"'.format(gettext_name),
language:'c'
Expand Down
4 changes: 4 additions & 0 deletions src/Application.vala
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,11 @@ public sealed class SettingsDaemon.Application : Gtk.Application {
var devices = client.get_devices ();

foreach (unowned var device in devices) {
#if HAS_FWUPD_2_0
if (!device.has_flag (Fwupd.DeviceFlags.UPDATABLE)) {
#else
if (!device.has_flag (Fwupd.DEVICE_FLAG_UPDATABLE)) {
#endif
continue;
}

Expand Down

0 comments on commit f9f9e6c

Please sign in to comment.