-
Notifications
You must be signed in to change notification settings - Fork 165
/
Copy pathconfigure.ac
394 lines (346 loc) · 13.9 KB
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
# Copyright (c) 2007 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.
# libva-utils package version number
# package version number follows libva package version number to
# comply with the same version used for released
#
# - major version is libva_major_version
# - minor version is libva_minor_version
# - micro version is libva_micro_version
# - pre version is libva_pre_version, usually development version
m4_define([libva_utils_major_version], [2])
m4_define([libva_utils_minor_version], [22])
m4_define([libva_utils_micro_version], [0])
m4_define([libva_utils_pre_version], [1])
m4_define([libva_utils_version],
[libva_utils_major_version.libva_utils_minor_version.libva_utils_micro_version])
m4_if(libva_utils_pre_version, [0], [], [
m4_append([libva_utils_version], libva_utils_pre_version, [.pre])
])
# libva minimum version requirement, at this released version
# libva-utils was created
m4_define([libva_api_min_version], [1.1.0])
# Wayland minimum version number
m4_define([wayland_api_version], [1.0.0])
AC_PREREQ(2.57)
AC_INIT([libva_utils],
[libva_utils_version],
[https://github.com/intel/libva-utils/issues/new],
[libva-utils],
[https://github.com/intel/libva-utils])
AC_CONFIG_SRCDIR([Makefile.am])
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([dist-bzip2])
AC_CONFIG_HEADERS([config.h])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
TODAY="`LC_ALL=C date +'%a, %d %b %Y %X %z'`"
AC_SUBST(TODAY)
LIBVA_UTILS_MAJOR_VERSION=libva_utils_major_version
LIBVA_UTILS_MINOR_VERSION=libva_utils_minor_version
LIBVA_UTILS_MICRO_VERSION=libva_utils_micro_version
LIBVA_UTILS_VERSION=libva_utils_version
AC_SUBST(LIBVA_UTILS_MAJOR_VERSION)
AC_SUBST(LIBVA_UTILS_MINOR_VERSION)
AC_SUBST(LIBVA_UTILS_MICRO_VERSION)
AC_SUBST(LIBVA_UTILS_VERSION)
AC_ARG_ENABLE(drm,
[AC_HELP_STRING([--enable-drm],
[build with VA/DRM API support @<:@default=yes@:>@])],
[], [enable_drm="yes"])
AC_ARG_ENABLE(x11,
[AC_HELP_STRING([--enable-x11],
[build with VA/X11 API support @<:@default=auto@:>@])],
[enable_x11="$enableval"],
[enable_x11="auto"])
AC_ARG_ENABLE([wayland],
[AC_HELP_STRING([--enable-wayland],
[build with VA/Wayland API support @<:@default=auto@:>@])],
[enable_wayland="$enableval"],
[enable_wayland="auto"])
AC_ARG_ENABLE([tests],
[AC_HELP_STRING([--enable-tests],
[build unit tests @<:@default=no@:>@])],
[], [enable_tests="no"])
AC_ARG_ENABLE(mebo,
[AC_HELP_STRING([--enable-mebo],
[Enable LibMebo Support @<:@default=yes@:>@])],
[], [enable_mebo="yes"])
AC_ARG_ENABLE(aom_av1_rc,
[AC_HELP_STRING([--enable-aom_av1_rc],
[Enable AOM AV1 RC Support @<:@default=yes@:>@])],
[], [enable_aom_av1_rc="yes"])
AC_ARG_ENABLE(brc,
[AC_HELP_STRING([--enable-brc],
[Enable Bitrate RC for VP9,VP8 Support
@<:@default=yes@:>@])],
[], [enable_brc="yes"])
AC_ARG_ENABLE(brc_controller,
[AC_HELP_STRING([--enable-brc_controller],
[Enable Bitrate RC_controller
to support libmebo @<:@default=yes@:>@])],
[], [enable_brc_controller="yes"])
#check for LibMebo library
MEBO_LIBDIR=""
abs_srcdir="$(cd "$srcdir" && pwd)"
if test "x$enable_mebo" != "xno" ; then
#local path
if test -f "$srcdir/encode/libmebo/libs/libmebo.so"; then
MEBO_LIBDIR="${abs_srcdir}/encode/libmebo/libs"
AC_DEFINE([HAVE_MEBO], [1], [Define if MEBO is available])
AC_MSG_NOTICE([MEBO LIB INSTALLED in local path])
else
AC_MSG_NOTICE([Mebo LIB NOT INSTALLED in local path])
#system path
if test -f "/usr/local/lib/x86_64-linux-gnu/libmebo.so" ; then
MEBO_LIBDIR="/usr/local/lib/x86_64-linux-gnu"
AC_DEFINE([HAVE_MEBO], [1], [Define if MEBO is available])
AC_MSG_NOTICE([MEBO LIB INSTALLED in SYSTEM path])
else
AC_MSG_NOTICE([Mebo LIB NOT INSTALLED in system path])
if test "x$enable_mebo"="xyes"; then
AC_MSG_ERROR(
[LibMebo NOT installed in local path nor in system paths])
fi
fi
fi
fi
AC_SUBST([MEBO_LIBDIR])
#CHECK FOR AOM AV1 RC library
AOM_AV1_RC_LIBDIR=""
if test "x$enable_aom_av1_rc" != "xno" ; then
#local path
if test -f "$srcdir/encode/libmebo/libs/aom_libs/libaom_av1_rc.so"; then
AOM_AV1_RC_LIBDIR="${abs_srcdir}/encode/libmebo/libs/aom_libs/"
AC_DEFINE([HAVE_AOM_AV1_RC], [1], [Define if AOM AV1 RC is available])
AC_MSG_NOTICE([AOM AV1 RC LIB INSTALLED in local path])
else
AC_MSG_NOTICE([AOM AV1 RC LIB NOT INSTALLED in local path])
#system path
if test -f "/usr/local/lib/x86_64-linux-gnu/libaom_av1_rc.so" ; then
AOM_AV1_RC_LIBDIR="/usr/local/lib/x86_64-linux-gnu"
AC_DEFINE([HAVE_AOM_AV1_RC], [1], [Define if AOM AV1 RC
is available])
AC_MSG_NOTICE([AOM AV1 RC LIB INSTALLED in SYSTEM path])
else
AC_MSG_NOTICE([AOM AV1 RC LIB NOT INSTALLED in system path])
if test "x$enable_aom_av1_rc"="xyes"; then
AC_MSG_ERROR(
[AOM AV1 RC NOT installed in local path nor in system paths])
fi
fi
fi
fi
AC_SUBST([AOM_AV1_RC_LIBDIR])
#Check for brc library
BRC_LIBDIR=""
if test "x$enable_brc" != "xno" ; then
#local path
if test -f "$srcdir/encode/libmebo/libs/libbrc.so"; then
BRC_LIBDIR="${abs_srcdir}/encode/libmebo/libs"
AC_DEFINE([HAVE_BRC], [1], [Define if BRC is available])
AC_MSG_NOTICE([BRC LIB INSTALLED in local path])
else
AC_MSG_NOTICE([BRC LIB NOT INSTALLED in local path])
#system path
if test -f "/usr/local/lib/x86_64-linux-gnu/libbrc.so" ; then
BRC_LIBDIR="/usr/local/lib/x86_64-linux-gnu"
AC_DEFINE([HAVE_BRC], [1], [Define if BRC is available])
AC_MSG_NOTICE([BRC LIB INSTALLED in SYSTEM path])
else
AC_MSG_NOTICE([BRC LIB NOT INSTALLED in system path])
if test "x$enable_brc"="xyes"; then
AC_MSG_ERROR(
[BRC NOT installed in local path nor in system paths])
fi
fi
fi
fi
AC_SUBST([BRC_LIBDIR])
#Check for brc_controller library
BRC_CONTROLLER_LIBDIR=""
if test "x$enable_brc_controller" != "xno" ; then
#local path
if test -f "$srcdir/encode/libmebo/libs/libbrc_controller.so"; then
BRC_CONTROLLER_LIBDIR="${abs_srcdir}/encode/libmebo/libs"
AC_DEFINE([HAVE_BRC_CONTROLLER], [1], [Define if BRC_CONTROLLER
is available])
AC_MSG_NOTICE([BRC_CONTROLLER LIB INSTALLED in local path])
else
AC_MSG_NOTICE([BRC_CONTROLLER LIB NOT INSTALLED in local path])
#system path
if test -f "/usr/local/lib/x86_64-linux-gnu/libbrc_controller.so" ; then
BRC_CONTROLLER_LIBDIR="/usr/local/lib/x86_64-linux-gnu"
AC_DEFINE([HAVE_BRC_CONTROLLER], [1], [Define if BRC_CONTROLLER
is available])
AC_MSG_NOTICE([BRC_CONTROLLER LIB INSTALLED in SYSTEM path])
else
AC_MSG_NOTICE([BRC LIB NOT INSTALLED in system path])
if test "x$enable_brc_controller"="xyes"; then
AC_MSG_ERROR(
[BRC_CONTROLLER NOT installed in local path nor
in system paths])
fi
fi
fi
fi
AC_SUBST([BRC_CONTROLLER_LIBDIR])
# configure for ldl lib
AC_CHECK_LIB([dl], [dlopen],
[DL_LIBS= "-ldl",
AC_DEFINE([HAVE_DLOPEN], [1], [Define if dlopen is available])],
[AC_MSG_ERROR([Unable to find library support dlopen, dlsym])])
AC_SUBST([DL_LIBS])
#libs path
AC_MSG_NOTICE([LIBRARY PATHS ARE set to])
AC_MSG_NOTICE([MEBO_LIBDIR is set to :${MEBO_LIBDIR}])
AC_MSG_NOTICE([AOM_AV1_RC_LIBDIR is set to :${AOM_AV1_RC_LIBDIR}])
AC_MSG_NOTICE([BRC_LIBDIR is set to :${BRC_LIBDIR}])
AC_MSG_NOTICE([BRC_CONTROLLER is set to :${BRC_CONTROLLER_LIBDIR}])
AM_CONDITIONAL([ENABLE_MEBO], [test "x$MEBO_LIBDIR"!="x"])
AM_CONDITIONAL([ENABLE_AOM_AV1_RC], [test "x$AOM_AV1_RC_LIBDIR"!="x"])
AM_CONDITIONAL([ENABLE_BRC], [test "x$BRC_LIBDIR"!="x"])
AM_CONDITIONAL([ENABLE_BRC_CONTROLLER], [test "x$BRC_CONTROLLER_LIBDIR"!="x"])
LT_INIT
AC_DISABLE_STATIC
AC_PROG_CC
AC_PROG_CXX
AM_PROG_CC_C_O
PKG_PROG_PKG_CONFIG
AC_HEADER_STDC
AC_SYS_LARGEFILE
# Check for __attribute__((visibility()))
AC_CACHE_CHECK([whether __attribute__((visibility())) is supported],
ac_cv_have_gnuc_visibility_attribute,
[cat > conftest.c <<EOF
int foo __attribute__ ((visibility ("hidden"))) = 1;
int bar __attribute__ ((visibility ("protected"))) = 1;
EOF
ac_cv_have_gnuc_visibility_attribute="no"
if ${CC-cc} -Werror -S conftest.c -o conftest.s >/dev/null 2>&1; then
if grep '\.hidden.*foo' conftest.s >/dev/null; then
if grep '\.protected.*bar' conftest.s >/dev/null; then
ac_cv_have_gnuc_visibility_attribute="yes"
fi
fi
fi
rm -f conftest.[cs]
])
if test "$ac_cv_have_gnuc_visibility_attribute" = "yes"; then
AC_DEFINE([HAVE_GNUC_VISIBILITY_ATTRIBUTE], [1],
[Defined to 1 if GCC visibility attribute is supported])
fi
# Check for -fstack-protector
ssp_cc=yes
if test "X$CC-cc" != "X"; then
AC_MSG_CHECKING([whether ${CC-cc} accepts -fstack-protector])
ssp_old_cflags="$CFLAGS"
CFLAGS="$CFLAGS -fstack-protector"
AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[alloca(100);]])], [], [ssp_cc=no])
AC_MSG_RESULT([$ssp_cc])
if test "X$ssp_cc" = "Xno"; then
CFLAGS="$ssp_old_cflags"
else
AC_DEFINE([ENABLE_SSP_CC], 1, [Define if SSP C support is enabled.])
fi
fi
AM_CONDITIONAL(USE_SSP, test "$ssp_cc" = "yes")
# Check for libva (for dynamic linking)
LIBVA_API_MIN_VERSION=libva_api_min_version
PKG_CHECK_MODULES([LIBVA], [libva >= $LIBVA_API_MIN_VERSION])
LIBVA_VERSION=`$PKG_CONFIG --variable=libva_version libva`
AC_SUBST(LIBVA_VERSION)
LIBVA_API_VERSION=`$PKG_CONFIG --modversion libva`
VA_MAJOR_VERSION=`echo "$LIBVA_API_VERSION" | cut -d'.' -f1`
VA_MINOR_VERSION=`echo "$LIBVA_API_VERSION" | cut -d'.' -f2`
VA_MICRO_VERSION=`echo "$LIBVA_API_VERSION" | cut -d'.' -f3`
# Check for DRM (mandatory)
PKG_CHECK_MODULES([LIBVA_DRM], [libdrm libva-drm = $LIBVA_API_VERSION])
USE_DRM="no"
if test "$enable_drm" = "yes"; then
USE_DRM="yes"
AC_DEFINE([HAVE_VA_DRM], [1], [Defined to 1 if VA/DRM API is supported])
fi
AM_CONDITIONAL(USE_DRM, test "$USE_DRM" = "yes")
# Check for X11
USE_X11="no"
if test "x$enable_x11" != "xno"; then
PKG_CHECK_MODULES([X11], [x11 libva-x11 = $LIBVA_API_VERSION],
[USE_X11="yes"], [:])
if test "x$USE_X11" = "xno" -a "x$enable_x11" = "xyes"; then
AC_MSG_ERROR([X11 explicitly enabled, but $X11_PKG_ERRORS])
fi
if test "$USE_X11" = "yes"; then
AC_DEFINE([HAVE_VA_X11], [1], [Defined to 1 if VA/X11 API is supported])
fi
fi
AM_CONDITIONAL(USE_X11, test "$USE_X11" = "yes")
dnl Check for Wayland
WAYLAND_API_VERSION=wayland_api_version
AC_SUBST(WAYLAND_API_VERSION)
USE_WAYLAND="no"
if test "x$enable_wayland" != "xno"; then
PKG_CHECK_MODULES([WAYLAND], [wayland-client >= wayland_api_version libva-wayland = $LIBVA_API_VERSION],
[USE_WAYLAND="yes"], [:])
if test "x$USE_WAYLAND" = "xno" -a "x$enable_wayland" = "xyes"; then
AC_MSG_ERROR([wayland explicitly enabled, but $WAYLAND_PKG_ERRORS])
fi
if test "$USE_WAYLAND" = "yes"; then
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 supported])
fi
fi
AM_CONDITIONAL(USE_WAYLAND, test "$USE_WAYLAND" = "yes")
pkgconfigdir=${libdir}/pkgconfig
AC_SUBST(pkgconfigdir)
dnl Check for builds without backend
if test "$USE_DRM:$USE_X11:$USE_WAYLAND" = "no:no:no"; then
AC_MSG_ERROR([Please select at least one backend (DRM, X11, Wayland)])
fi
AM_CONDITIONAL(ENABLE_TESTS, test "$enable_tests" = "yes")
AC_OUTPUT([
Makefile
common/Makefile
test/Makefile
vainfo/Makefile
encode/Makefile
decode/Makefile
putsurface/Makefile
videoprocess/Makefile
vendor/intel/Makefile
vendor/intel/sfcsample/Makefile
])
# Print a small summary
BACKENDS=""
AS_IF([test $USE_DRM = yes], [BACKENDS="$BACKENDS drm"])
AS_IF([test $USE_X11 = yes], [BACKENDS="$BACKENDS x11"])
AS_IF([test $USE_WAYLAND = yes], [BACKENDS="$BACKENDS wayland"])
echo
echo "libva-utils - ${LIBVA_UTILS_VERSION}"
echo
echo Libva VA-API version ............. : $LIBVA_API_VERSION
echo Installation prefix .............. : $prefix
echo Extra window systems ............. : $BACKENDS
echo Enable Unit-tests .................... : $enable_tests
echo