Skip to content

Commit 9340e97

Browse files
committed
Enable tablet support.
Muffin now handles most of what csd-wacom did.
1 parent 603dba8 commit 9340e97

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

Diff for: debian/control

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ Build-Depends:
3737
libsm-dev,
3838
libstartup-notification0-dev (>= 0.7),
3939
libsystemd-dev (>= 212) [linux-any],
40+
libwacom-dev (>= 0.13) [linux-any],
4041
libxau-dev,
4142
libx11-dev,
4243
libx11-xcb-dev,

Diff for: meson.build

+1-2
Original file line numberDiff line numberDiff line change
@@ -232,8 +232,7 @@ if have_sm
232232
sm_dep = dependency('sm')
233233
endif
234234

235-
#have_libwacom = get_option('libwacom')
236-
have_libwacom = false
235+
have_libwacom = get_option('libwacom')
237236

238237
if have_libwacom
239238
libwacom_dep = dependency('libwacom', version: libwacom_req)

Diff for: meson_options.txt

+6
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,12 @@ option('udev',
4545
description: 'Enable udev support when using the X11 backend'
4646
)
4747

48+
option('libwacom',
49+
type: 'boolean',
50+
value: true,
51+
description: 'Enable libwacom support'
52+
)
53+
4854
option('pango_ft2',
4955
type: 'boolean',
5056
value: true,

0 commit comments

Comments
 (0)