mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-10-29 05:40:16 -04:00
If wayland-scanner.pc can't be found the variables end up being set irrespectively, leaving the user with odd compiler errors about missing headers, etc.
13 lines
418 B
Text
13 lines
418 B
Text
AC_DEFUN([WAYLAND_SCANNER_RULES], [
|
|
PKG_PROG_PKG_CONFIG
|
|
|
|
PKG_CHECK_MODULES([WAYLAND_SCANNER], [wayland-scanner])
|
|
|
|
wayland_scanner=`$PKG_CONFIG --variable=wayland_scanner wayland-scanner`
|
|
AC_SUBST([wayland_scanner])
|
|
|
|
wayland_scanner_rules=`$PKG_CONFIG --variable=pkgdatadir wayland-scanner`/wayland-scanner.mk
|
|
AC_SUBST_FILE([wayland_scanner_rules])
|
|
|
|
AC_SUBST([wayland_protocoldir], [$1])
|
|
])
|