build: unify naming for HAVE_* defines

We sometimes used HAS_, sometimes polluted the LIBINPUT_ namespace,
etc.
This commit is contained in:
Simon Ser 2022-11-25 18:15:31 +01:00 committed by Alexander Orzechowski
parent a4a40618ad
commit 86fc2199f8
11 changed files with 22 additions and 22 deletions

View file

@ -8,7 +8,7 @@
#include "config.h"
#include "xwayland/selection.h"
#if HAS_XCB_ERRORS
#if HAVE_XCB_ERRORS
#include <xcb/xcb_errors.h>
#endif
@ -126,7 +126,7 @@ struct wlr_xwm {
const xcb_query_extension_reply_t *xfixes;
const xcb_query_extension_reply_t *xres;
uint32_t xfixes_major_version;
#if HAS_XCB_ERRORS
#if HAVE_XCB_ERRORS
xcb_errors_context_t *errors_context;
#endif
unsigned int last_focus_seq;