diff options
author | Xiang, Haihao <haihao.xiang@intel.com> | 2015-12-11 02:58:59 +0800 |
---|---|---|
committer | Xiang, Haihao <haihao.xiang@intel.com> | 2015-12-11 16:23:05 +0800 |
commit | 4630b11e768f555aa67bd5a78e7d20fc4713d2d9 (patch) | |
tree | baf94417716f036f56fbd51e775acec74e4af813 | |
parent | d0f0344d30bfa977fa0655ebb81e37578becbd2a (diff) |
Fix error caused by 'make distclean' with wayland disabled
This is based on Mesa's 426a23af147720ae3b89995ffee792a29e8ae2db.
v2: cleanup va/wayland/Makefile.am and nuke va/wayland/protocol/Makefile.am (Emil)
Cc: Emil Velikov <emil.l.velikov@gmail.com>
Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com>
(cherry picked from commit d6d1e231ebd76e5ee353f460b01ceda43f13e155)
-rw-r--r-- | configure.ac | 8 | ||||
-rw-r--r-- | va/wayland/Makefile.am | 9 | ||||
-rw-r--r-- | va/wayland/protocol/Makefile.am | 28 | ||||
-rw-r--r-- | va/wayland/wayland-drm.xml (renamed from va/wayland/protocol/wayland-drm.xml) | 0 |
4 files changed, 10 insertions, 35 deletions
diff --git a/configure.ac b/configure.ac index cff7334..0709509 100644 --- a/configure.ac +++ b/configure.ac @@ -273,9 +273,10 @@ if test "$enable_wayland" = "yes"; then PKG_CHECK_MODULES([WAYLAND], [wayland-client >= wayland_api_version], [USE_WAYLAND="yes"], [:]) if test "$USE_WAYLAND" = "yes"; then - m4_ifdef([WAYLAND_SCANNER_RULES], - [WAYLAND_SCANNER_RULES(['$(top_builddir)/va/wayland/protocol'])], - [wayland_scanner_rules=""; AC_SUBST(wayland_scanner_rules)]) + + WAYLAND_PREFIX=`$PKG_CONFIG --variable=prefix wayland-client` + AC_PATH_PROG([WAYLAND_SCANNER], [wayland-scanner],, + [${WAYLAND_PREFIX}/bin$PATH_SEPARATOR$PATH]) AC_DEFINE([HAVE_VA_WAYLAND], [1], [Defined to 1 if VA/Wayland API is built]) @@ -337,7 +338,6 @@ debian.upstream/libva-x11.install.in va/glx/Makefile va/va_version.h va/wayland/Makefile - va/wayland/protocol/Makefile va/x11/Makefile ]) diff --git a/va/wayland/Makefile.am b/va/wayland/Makefile.am index ca6c594..4f8262c 100644 --- a/va/wayland/Makefile.am +++ b/va/wayland/Makefile.am @@ -20,8 +20,6 @@ # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -SUBDIRS = protocol - AM_CPPFLAGS = \ -DLINUX \ -I$(top_srcdir) \ @@ -60,7 +58,12 @@ noinst_HEADERS = $(source_h_priv) # Wayland protocol va_wayland_drm.c: $(protocol_source_h) -@wayland_scanner_rules@ +%-client-protocol.h : %.xml + $(AM_V_GEN)$(WAYLAND_SCANNER) client-header < $< > $@ + +EXTRA_DIST = \ + wayland-drm.xml \ + $(NULL) # Extra clean files so that maintainer-clean removes *everything* MAINTAINERCLEANFILES = Makefile.in diff --git a/va/wayland/protocol/Makefile.am b/va/wayland/protocol/Makefile.am deleted file mode 100644 index 614d8a4..0000000 --- a/va/wayland/protocol/Makefile.am +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright (C) 2012 Intel Corporation. All Rights Reserved. -# -# Permission is hereby granted, free of charge, to any person obtaining a -# copy of this software and associated documentation files (the -# "Software"), to deal in the Software without restriction, including -# without limitation the rights to use, copy, modify, merge, publish, -# distribute, sub license, and/or sell copies of the Software, and to -# permit persons to whom the Software is furnished to do so, subject to -# the following conditions: -# -# The above copyright notice and this permission notice (including the -# next paragraph) shall be included in all copies or substantial portions -# of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. -# IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR -# ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -EXTRA_DIST = \ - wayland-drm.xml \ - $(NULL) - -# Extra clean files so that maintainer-clean removes *everything* -MAINTAINERCLEANFILES = Makefile.in diff --git a/va/wayland/protocol/wayland-drm.xml b/va/wayland/wayland-drm.xml index 265d4f8..265d4f8 100644 --- a/va/wayland/protocol/wayland-drm.xml +++ b/va/wayland/wayland-drm.xml |