File tree 2 files changed +14
-2
lines changed
2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
24
24
25
25
AUTOMAKE_OPTIONS = foreign
26
26
27
- SUBDIRS = common decode encode vainfo videoprocess vendor/intel vendor/intel/sfcsample
27
+ SUBDIRS = common decode encode vainfo videoprocess
28
28
29
29
if USE_X11
30
30
SUBDIRS += putsurface
@@ -38,6 +38,11 @@ if ENABLE_TESTS
38
38
SUBDIRS += test
39
39
endif
40
40
41
+ if ENABLE_VENDOR_INTEL
42
+ SUBDIRS += vendor/intel
43
+ SUBDIRS += vendor/intel/sfcsample
44
+ endif
45
+
41
46
# Extra clean files so that maintainer-clean removes *everything*
42
47
MAINTAINERCLEANFILES = \
43
48
aclocal.m4 compile config.guess config.sub \
Original file line number Diff line number Diff line change @@ -97,6 +97,11 @@ AC_ARG_ENABLE([tests],
97
97
[ ] , [ enable_tests="no"] )
98
98
99
99
100
+ AC_ARG_ENABLE ( [ vendor_intel] ,
101
+ [ AC_HELP_STRING ([ --enable-vendor-intel] ,
102
+ [ build intel specific code @<:@ default=yes@:>@ ] )] ,
103
+ [ ] , [ enable_vendor_intel="yes"] )
104
+
100
105
LT_INIT
101
106
AC_DISABLE_STATIC
102
107
AC_PROG_CC
@@ -205,6 +210,7 @@ if test "$USE_DRM:$USE_X11:$USE_WAYLAND" = "no:no:no"; then
205
210
fi
206
211
207
212
AM_CONDITIONAL(ENABLE_TESTS, test "$enable_tests" = "yes")
213
+ AM_CONDITIONAL(ENABLE_VENDOR_INTEL, test "$enable_vendor_intel" = "yes")
208
214
209
215
AC_OUTPUT ([
210
216
Makefile
232
238
echo Libva VA-API version ............. : $LIBVA_API_VERSION
233
239
echo Installation prefix .............. : $prefix
234
240
echo Extra window systems ............. : $BACKENDS
235
- echo Enable Unit-tests .................... : $enable_tests
241
+ echo Enable Unit-tests ................ : $enable_tests
242
+ echo Enable vendor-Intel .............. : $enable_vendor_intel
236
243
echo
You can’t perform that action at this time.
0 commit comments