diff options
author | Simon Ser <contact@emersion.fr> | 2022-11-25 18:15:31 +0100 |
---|---|---|
committer | Alexander Orzechowski <alex@ozal.ski> | 2022-12-06 22:39:45 +0000 |
commit | 86fc2199f85ac0e1089bb7fd5a0b5cbc432bdb67 (patch) | |
tree | 3b97acbbdd4d2bf3b956d2e2594bd5b79958dfee /backend/libinput/pointer.c | |
parent | a4a40618adb287d6ebebf099ca4d64f39b7f7770 (diff) |
build: unify naming for HAVE_* defines
We sometimes used HAS_, sometimes polluted the LIBINPUT_ namespace,
etc.
Diffstat (limited to 'backend/libinput/pointer.c')
-rw-r--r-- | backend/libinput/pointer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/libinput/pointer.c b/backend/libinput/pointer.c index 48f8ae12..a1d5ff9f 100644 --- a/backend/libinput/pointer.c +++ b/backend/libinput/pointer.c @@ -124,7 +124,7 @@ void handle_pointer_axis(struct libinput_event *event, wl_signal_emit_mutable(&pointer->events.frame, pointer); } -#if LIBINPUT_HAS_SCROLL_VALUE120 +#if HAVE_LIBINPUT_SCROLL_VALUE120 void handle_pointer_axis_value120(struct libinput_event *event, struct wlr_pointer *pointer, enum wlr_axis_source source) { struct libinput_event_pointer *pevent = |