Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1 | From 8fc14e4bc81885b80c3072e549c2e6f59533d7ef Mon Sep 17 00:00:00 2001 |
| 2 | From: Anuj Mittal <anuj.mittal@intel.com> |
| 3 | Date: Fri, 8 Feb 2019 11:45:55 +0800 |
| 4 | Subject: [PATCH] Build sfcsample only when X11 backend is enabled |
| 5 | |
| 6 | See: https://github.com/intel/libva-utils/pull/149, and |
| 7 | https://github.com/intel/libva-utils/issues/150 |
| 8 | |
| 9 | Upstream-Status: Submitted |
| 10 | |
| 11 | Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> |
| 12 | --- |
| 13 | Makefile.am | 3 ++- |
| 14 | 1 file changed, 2 insertions(+), 1 deletion(-) |
| 15 | |
| 16 | diff --git a/Makefile.am b/Makefile.am |
| 17 | index 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 | -- |
| 34 | 2.17.1 |
| 35 | |