Skip to content

Commit

Permalink
meson: add check for xtrans
Browse files Browse the repository at this point in the history
It seems some linux packagers treat xtrans as separate from X11.  Not
all do though.

It's a required dependency -- so we should check for it.
  • Loading branch information
ThomasAdam committed Nov 30, 2024
1 parent 3f39eb3 commit 8cd67e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ all_found_deps = []

# Required dependencies, we can easily iterate over these.
summary_depvals = {}
all_req_deps = ['fontconfig', 'ice', 'libevent', 'x11', 'xft', 'xrandr', 'xt']
all_req_deps = ['fontconfig', 'ice', 'libevent', 'x11', 'xft', 'xrandr', 'xt', 'xtrans']
foreach rd : all_req_deps
this_dep = dependency(rd, required: true)
summary_depvals += {rd: this_dep}
Expand Down

0 comments on commit 8cd67e3

Please sign in to comment.