1 # Copyright (c) 2007 Intel Corporation. All Rights Reserved.
3 # Permission is hereby granted, free of charge, to any person obtaining a
4 # copy of this software and associated documentation files (the
5 # "Software"), to deal in the Software without restriction, including
6 # without limitation the rights to use, copy, modify, merge, publish,
7 # distribute, sub license, and/or sell copies of the Software, and to
8 # permit persons to whom the Software is furnished to do so, subject to
9 # the following conditions:
11 # The above copyright notice and this permission notice (including the
12 # next paragraph) shall be included in all copies or substantial portions
15 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
16 # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
18 # IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
19 # ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
20 # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
21 # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 # libva package version number, (as distinct from shared library version)
24 m4_define([libva_major_version], [0])
25 m4_define([libva_minor_version], [32])
26 m4_define([libva_micro_version], [0])
28 m4_define([libva_version],
29 [libva_major_version.libva_minor_version.libva_micro_version])
31 # if the library source code has changed, increment revision
32 m4_define([libva_lt_revision], [8])
33 # if any interface was added/removed/changed, then inc current, reset revision
34 m4_define([libva_lt_current], [1])
35 # if any interface was added since last public release, then increment age
36 # if any interface was removed since last public release, then set age to 0
37 m4_define([libva_lt_age], [0])
40 AC_INIT([libva], [libva_version], [waldo.bastian@intel.com], libva)
41 AC_CONFIG_SRCDIR([Makefile.am])
42 AM_INIT_AUTOMAKE([dist-bzip2])
44 AM_CONFIG_HEADER([config.h])
45 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
47 LIBVA_MAJOR_VERSION=libva_major_version
48 LIBVA_MINOR_VERSION=libva_minor_version
49 LIBVA_MICRO_VERSION=libva_micro_version
50 LIBVA_VERSION=libva_version
51 AC_SUBST(LIBVA_MAJOR_VERSION)
52 AC_SUBST(LIBVA_MINOR_VERSION)
53 AC_SUBST(LIBVA_MICRO_VERSION)
54 AC_SUBST(LIBVA_VERSION)
56 LIBVA_LT_CURRENT=libva_lt_current
57 LIBVA_LT_REV=libva_lt_revision
58 LIBVA_LT_AGE=libva_lt_age
59 LIBVA_LT_VERSION="$LIBVA_LT_CURRENT:$LIBVA_LT_REV:$LIBVA_LT_AGE"
60 LIBVA_LT_LDFLAGS="-version-info $LIBVA_LT_VERSION"
61 AC_SUBST(LIBVA_LT_VERSION)
62 AC_SUBST(LIBVA_LT_LDFLAGS)
65 [AC_HELP_STRING([--enable-glx],
66 [build with OpenGL for X11 support])],
69 AC_ARG_ENABLE(dummy-driver,
70 [AC_HELP_STRING([--enable-dummy-driver],
71 [build dummy video driver])],
72 [], [enable_dummy_driver=yes])
73 AM_CONDITIONAL(BUILD_DUMMY_DRIVER, test x$enable_dummy_driver = xyes)
75 AC_ARG_ENABLE(dummy-backend,
76 [AC_HELP_STRING([--enable-dummy-backend],
77 [build dummy libva backend])],
78 [], [enable_dummy_backend=no])
80 AC_ARG_ENABLE(i965-driver,
81 [AC_HELP_STRING([--enable-i965-driver],
82 [build i965 video driver])],
83 [], [enable_i965_driver=no])
85 AC_ARG_WITH(drivers-path,
86 [AC_HELP_STRING([--with-drivers-path=[[path]]], [drivers path])],,
87 [with_drivers_path="$libdir/dri"])
89 LIBVA_DRIVERS_PATH="$with_drivers_path"
90 AC_SUBST(LIBVA_DRIVERS_PATH)
99 PKG_CHECK_MODULES([X11], [x11])
100 PKG_CHECK_MODULES([XEXT],[xext])
101 PKG_CHECK_MODULES([XFIXES], [xfixes])
102 PKG_CHECK_MODULES([DRM], [libdrm])
104 PKG_CHECK_MODULES(GEN4ASM, [intel-gen4asm >= 1.1], [gen4asm=yes], [gen4asm=no])
105 AM_CONDITIONAL(HAVE_GEN4ASM, test x$gen4asm = xyes)
107 # Check for libdrm >= 2.4.23 (needed for i965_drv_video.so)
108 if test x$enable_i965_driver = xyes && ! $PKG_CONFIG --atleast-version=2.4.23 libdrm; then
109 AC_MSG_WARN([libdrm < 2.4.23 found, disabling build of i965 video driver])
110 enable_i965_driver=no
112 AM_CONDITIONAL(BUILD_I965_DRIVER, test x$enable_i965_driver = xyes)
114 if test x$enable_dummy_backend = xyes; then
115 PKG_CHECK_MODULES([UDEV], [libudev], [libudev=yes], [libudev=no])
117 if test x$libudev = xno; then
118 enable_dummy_backend=no
120 AM_CONDITIONAL(BUILD_DUMMY_BACKEND, test x$enable_dummy_backend = xyes)
122 # Check for OpenGL (X11)
126 if test x$enable_glx = xyes; then
127 AC_CHECK_HEADERS([GL/gl.h])
128 AC_CHECK_HEADERS([GL/glx.h])
129 AC_CHECK_LIB(GL, glXCreateContext, [
131 GL_DEPS_LIBS="-lX11 -lGL"
134 AC_SUBST(GL_DEPS_CFLAGS)
135 AC_SUBST(GL_DEPS_LIBS)
136 AM_CONDITIONAL(USE_GLX, test "$USE_GLX" = "yes")
138 # Make sure drivers use the correctly versioned __vaDriverInit*() function name
139 VA_DRIVER_INIT_FUNC="__vaDriverInit_${LIBVA_MAJOR_VERSION}_${LIBVA_MINOR_VERSION}"
140 AC_DEFINE_UNQUOTED([VA_DRIVER_INIT_FUNC], [$VA_DRIVER_INIT_FUNC],
141 [Defined to the versioned __vaDriverInit function name])
142 AC_DEFINE_UNQUOTED([VA_DRIVER_INIT_FUNC_S], ["$VA_DRIVER_INIT_FUNC"],
143 [Defined to the versioned __vaDriverInit function name (in string form)])
145 # We only need the headers, we don't link against the DRM libraries
146 LIBVA_CFLAGS="$DRM_CFLAGS"
147 AC_SUBST(LIBVA_CFLAGS)
150 pkgconfigdir=${libdir}/pkgconfig
151 AC_SUBST(pkgconfigdir)
154 libvacorelib=libva.la
155 libvabackendlib=libva-$LIBVA_DISPLAY.la
156 AC_SUBST([libvacorelib])
157 AC_SUBST([libvabackendlib])
166 dummy_drv_video/Makefile
167 i965_drv_video/Makefile
168 i965_drv_video/shaders/Makefile
169 i965_drv_video/shaders/h264/Makefile
170 i965_drv_video/shaders/h264/mc/Makefile
171 i965_drv_video/shaders/mpeg2/Makefile
172 i965_drv_video/shaders/mpeg2/vld/Makefile
173 i965_drv_video/shaders/render/Makefile
174 i965_drv_video/shaders/post_processing/Makefile
178 test/putsurface/Makefile
187 # Print a small summary
190 echo "libva - ${LIBVA_VERSION}"
194 echo " Prefix: ${prefix}"
197 AS_IF([test x$enable_i965_driver = xyes], [DRIVERS="i965 $DRIVERS"])
198 AS_IF([test x$enable_dummy_driver = xyes], [DRIVERS="dummy $DRIVERS"])
200 echo "
\95 Drivers: ${DRIVERS}"
202 AS_IF([test x$USE_GLX = xyes], [BACKENDS="glx $BACKENDS"])
203 BACKENDS="x11 $BACKENDS"
204 AS_IF([test x$enable_dummy_backend = xyes], [BACKENDS="dummy
207 echo "
\95 Winsys : ${BACKENDS}"