X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=configure.ac;h=6617a0e93d275a533391835059fdbbc937f82731;hb=d0c867c683671b60059175e74a46e00e7c115091;hp=da98f06d8f66fccc86839eac2eaa18beaecffc26;hpb=2703f4144df261be2f93f256d9bc616fb4b617d6;p=android-x86%2Fhardware-intel-common-libva.git diff --git a/configure.ac b/configure.ac index da98f06..6617a0e 100644 --- a/configure.ac +++ b/configure.ac @@ -27,8 +27,8 @@ # - reset micro version to zero when minor version is incremented # - reset minor version to zero when major version is incremented m4_define([va_api_major_version], [0]) -m4_define([va_api_minor_version], [33]) -m4_define([va_api_micro_version], [0]) +m4_define([va_api_minor_version], [39]) +m4_define([va_api_micro_version], [4]) m4_define([va_api_version], [va_api_major_version.va_api_minor_version.va_api_micro_version]) @@ -42,7 +42,7 @@ m4_define([va_api_version], # - reset micro version to zero when VA-API major or minor version is changed m4_define([libva_major_version], [m4_eval(va_api_major_version + 1)]) m4_define([libva_minor_version], [m4_eval(va_api_minor_version - 32)]) -m4_define([libva_micro_version], [0]) +m4_define([libva_micro_version], [4]) m4_define([libva_pre_version], [1]) m4_define([libva_version], @@ -78,7 +78,7 @@ m4_define([libva_lt_age], m4_define([libdrm_version], [2.4]) # Wayland minimum version number -m4_define([wayland_api_version], [0.95.0]) +m4_define([wayland_api_version], [1.0.0]) AC_PREREQ(2.57) AC_INIT([libva], [libva_version], [waldo.bastian@intel.com], libva) @@ -86,7 +86,7 @@ AC_CONFIG_SRCDIR([Makefile.am]) AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([dist-bzip2]) -AM_CONFIG_HEADER([config.h]) +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'`" @@ -174,7 +174,10 @@ AC_SYS_LARGEFILE # Check for Doxygen if test "$enable_docs" = "yes"; then - AC_CHECK_TOOL([DOXYGEN], [doxygen], [enable_docs="no"]) + AC_CHECK_TOOL([DOXYGEN], [doxygen], [no]) + if test "$DOXYGEN" = "no"; then + enable_docs="no" + fi fi AM_CONDITIONAL(ENABLE_DOCS, test "$enable_docs" = "yes") @@ -270,15 +273,17 @@ if test "$enable_wayland" = "yes"; then PKG_CHECK_MODULES([WAYLAND], [wayland-client >= wayland_api_version], [USE_WAYLAND="yes"], [:]) 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 built]) fi fi -AM_CONDITIONAL(USE_WAYLAND, test "$USE_WAYLAND" = "yes") -m4_ifdef([WAYLAND_SCANNER_RULES], - [WAYLAND_SCANNER_RULES(['$(top_srcdir)/va/wayland/protocol'])], - [wayland_scanner_rules=""; AC_SUBST(wayland_scanner_rules)]) +AM_CONDITIONAL(USE_WAYLAND, test "$USE_WAYLAND" = "yes") pkgconfigdir=${libdir}/pkgconfig AC_SUBST(pkgconfigdir) @@ -288,6 +293,11 @@ 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 +# Define __vaDriverInit*() function name for dummy backend +VA_DRIVER_INIT_FUNC="__vaDriverInit_${VA_API_MAJOR_VERSION}_${VA_API_MINOR_VERSION}" +AC_DEFINE_UNQUOTED([VA_DRIVER_INIT_FUNC], [$VA_DRIVER_INIT_FUNC], + [Defined to the versioned __vaDriverInit function name]) + AC_OUTPUT([ Makefile debian.upstream/Makefile @@ -321,9 +331,6 @@ debian.upstream/libva-x11.install.in test/decode/Makefile test/encode/Makefile test/putsurface/Makefile - test/v4l_h264/Makefile - test/v4l_h264/decode/Makefile - test/v4l_h264/encode/Makefile test/vainfo/Makefile va/Makefile va/drm/Makefile @@ -331,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 ])