diff options
author | Adam Jackson <ajax@redhat.com> | 2018-04-05 13:24:13 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2018-04-05 15:50:02 -0400 |
commit | 74aef564a7faea4410e92fa606216ab877b0d452 (patch) | |
tree | 19e739187bcc19a5086a50fa5106f6778f29cd07 /configure.ac | |
parent | 6f0903ddc905f44272b85942323a467d82fef644 (diff) |
xwayland: Silence a build warning if we can
[735/786] Generating 'hw/xwayland/Xwayland@exe/relative-pointer-unstable-v1-protocol.c'.
Using "code" is deprecated - use private-code or public-code.
See the help page for details.
Use private-code if wayland-scanner is new enough.
Signed-off-by: Adam Jackson <ajax@redhat.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 290721891..d8d88e2b1 100644 --- a/configure.ac +++ b/configure.ac @@ -2391,6 +2391,10 @@ if test "x$XWAYLAND" = xyes; then AC_PATH_PROG([WAYLAND_SCANNER], [wayland-scanner],, [${WAYLAND_PREFIX}/bin$PATH_SEPARATOR$PATH]) + PKG_CHECK_MODULES(WAYLAND_SCANNER, [wayland-scanner >= 1.14.91], + AC_SUBST(SCANNER_ARG, 'private-code'), + AC_SUBST(SCANNER_ARG, 'code')) + AC_SUBST(WAYLAND_PROTOCOLS_DATADIR, `$PKG_CONFIG --variable=pkgdatadir wayland-protocols`) fi |