blob: 01fb71913bb9207457d07cfb26bb3676fd6297fc [file] [log] [blame]
Brad Bishop19323692019-04-05 15:28:33 -04001From 8fc14e4bc81885b80c3072e549c2e6f59533d7ef Mon Sep 17 00:00:00 2001
2From: Anuj Mittal <anuj.mittal@intel.com>
3Date: Fri, 8 Feb 2019 11:45:55 +0800
4Subject: [PATCH] Build sfcsample only when X11 backend is enabled
5
6See: https://github.com/intel/libva-utils/pull/149, and
7https://github.com/intel/libva-utils/issues/150
8
9Upstream-Status: Submitted
10
11Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
12---
13 Makefile.am | 3 ++-
14 1 file changed, 2 insertions(+), 1 deletion(-)
15
16diff --git a/Makefile.am b/Makefile.am
17index d28175a..e294e25 100644
18--- a/Makefile.am
19+++ b/Makefile.am
20@@ -24,10 +24,11 @@ ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
21
22 AUTOMAKE_OPTIONS = foreign
23
24-SUBDIRS = common decode encode vainfo videoprocess vendor/intel vendor/intel/sfcsample
25+SUBDIRS = common decode encode vainfo videoprocess vendor/intel
26
27 if USE_X11
28 SUBDIRS += putsurface
29+SUBDIRS += vendor/intel/sfcsample
30 else
31 if USE_WAYLAND
32 SUBDIRS += putsurface
33--
342.17.1
35