1 dnl Process this file with autoconf to create configure.
5 dnl Tell the user about autoconf.html in the --help output
6 m4_divert_once([HELP_END], [
7 See docs/autoconf.html for more details on the options for Mesa.])
9 AC_INIT([Mesa], [9.0.3],
10 [https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa])
11 AC_CONFIG_AUX_DIR([bin])
12 AC_CONFIG_MACRO_DIR([m4])
14 AM_INIT_AUTOMAKE([foreign])
16 dnl http://people.gnome.org/~walters/docs/build-api.txt
17 dnl We don't support srcdir != builddir.
18 echo \#buildapi-variable-no-builddir >/dev/null
20 # Support silent build rules, requires at least automake-1.11. Disable
21 # by either passing --disable-silent-rules to configure or passing V=1
23 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
25 m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
28 LT_INIT([disable-static])
30 dnl Set internal versions
32 AC_SUBST([OSMESA_VERSION])
34 dnl Versions for external dependencies
35 LIBDRM_REQUIRED=2.4.24
36 LIBDRM_RADEON_REQUIRED=2.4.39
37 LIBDRM_INTEL_REQUIRED=2.4.38
38 LIBDRM_NVVIEUX_REQUIRED=2.4.33
39 LIBDRM_NOUVEAU_REQUIRED=2.4.33
40 DRI2PROTO_REQUIRED=2.6
41 GLPROTO_REQUIRED=1.4.14
42 LIBDRM_XORG_REQUIRED=2.4.24
43 LIBKMS_XORG_REQUIRED=1.0.0
51 AC_CHECK_PROGS([MAKE], [gmake make])
52 AC_CHECK_PROGS([PYTHON2], [python2 python])
53 AX_PYTHON_MODULE([libxml2], [needed])
56 AC_PATH_PROG([MKDEP], [makedepend])
58 if test "x$MKDEP" = "x"; then
59 AC_MSG_ERROR([makedepend is required to build Mesa])
63 AC_PATH_PROG([YACC_INST], $YACC)
64 if test ! -f "$srcdir/src/glsl/glcpp/glcpp-parse.c"; then
65 if test -z "$YACC_INST"; then
66 AC_MSG_ERROR([yacc not found - unable to compile glcpp-parse.y])
71 AC_PATH_PROG([PERL], [perl])
73 AC_CHECK_PROG(INDENT, indent, indent, cat)
74 if test "x$INDENT" != "xcat"; then
75 AC_SUBST(INDENT_FLAGS, '-i4 -nut -br -brs -npcs -ce -T GLubyte -T GLbyte -T Bool')
78 dnl Our fallback install-sh is a symlink to minstall. Use the existing
79 dnl configuration in that case.
81 test "x$INSTALL" = "x$ac_install_sh" && INSTALL='$(MINSTALL)'
83 dnl We need a POSIX shell for parts of the build. Assume we have one
87 # Solaris /bin/sh is too old/non-POSIX compliant
88 AC_PATH_PROGS(POSIX_SHELL, [ksh93 ksh sh])
93 dnl clang is mostly GCC-compatible, but its version is much lower,
94 dnl so we have to check for it.
95 AC_MSG_CHECKING([if compiling with clang])
98 [AC_LANG_PROGRAM([], [[
103 [acv_mesa_CLANG=yes], [acv_mesa_CLANG=no])
105 AC_MSG_RESULT([$acv_mesa_CLANG])
107 dnl If we're using GCC, make sure that it is at least version 3.3.0. Older
108 dnl versions are explictly not supported.
109 if test "x$GCC" = xyes -a "x$acv_mesa_CLANG" = xno; then
110 AC_MSG_CHECKING([whether gcc version is sufficient])
114 GCC_VERSION=`$CC -dumpversion`
115 if test $? -eq 0; then
116 GCC_VERSION_MAJOR=`echo $GCC_VERSION | cut -d. -f1`
117 GCC_VERSION_MINOR=`echo $GCC_VERSION | cut -d. -f2`
120 if test $GCC_VERSION_MAJOR -lt 3 -o $GCC_VERSION_MAJOR -eq 3 -a $GCC_VERSION_MINOR -lt 3 ; then
122 AC_MSG_ERROR([If using GCC, version 3.3.0 or later is required.])
129 MKDEP_OPTIONS=-fdepend
130 dnl Ask gcc where it's keeping its secret headers
131 if test "x$GCC" = xyes; then
132 for dir in include include-fixed; do
133 GCC_INCLUDES=`$CC -print-file-name=$dir`
134 if test "x$GCC_INCLUDES" != x && \
135 test "$GCC_INCLUDES" != "$dir" && \
136 test -d "$GCC_INCLUDES"; then
137 MKDEP_OPTIONS="$MKDEP_OPTIONS -I$GCC_INCLUDES"
141 AC_SUBST([MKDEP_OPTIONS])
143 dnl Make sure the pkg-config macros are defined
144 m4_ifndef([PKG_PROG_PKG_CONFIG],
145 [m4_fatal([Could not locate the pkg-config autoconf macros.
146 These are usually located in /usr/share/aclocal/pkg.m4. If your macros
147 are in a different location, try setting the environment variable
148 ACLOCAL="aclocal -I/other/macro/dir" before running autoreconf.])])
149 PKG_PROG_PKG_CONFIG()
151 dnl LIB_DIR - library basename
152 LIB_DIR=`echo $libdir | $SED 's%.*/%%'`
155 dnl Cache LDFLAGS and CPPFLAGS so we can add to them and restore later
156 _SAVE_LDFLAGS="$LDFLAGS"
157 _SAVE_CPPFLAGS="$CPPFLAGS"
164 DEFINES="$DEFINES -D_GNU_SOURCE -DHAVE_PTHREAD"
167 DEFINES="$DEFINES -DHAVE_PTHREAD -DSVR4"
170 DEFINES="$DEFINES -DHAVE_PTHREAD"
174 dnl Add flags for gcc and g++
175 if test "x$GCC" = xyes; then
176 CFLAGS="$CFLAGS -Wall -std=c99"
178 # Enable -Werror=implicit-function-declaration and
179 # -Werror=missing-prototypes, if available, or otherwise, just
180 # -Wmissing-prototypes. This is particularly useful to avoid
181 # generating a loadable driver module that has undefined symbols.
182 save_CFLAGS="$CFLAGS"
183 AC_MSG_CHECKING([whether $CC supports -Werror=missing-prototypes])
184 CFLAGS="$CFLAGS -Werror=implicit-function-declaration"
185 CFLAGS="$CFLAGS -Werror=missing-prototypes"
186 AC_LINK_IFELSE([AC_LANG_PROGRAM()],
187 AC_MSG_RESULT([yes]),
188 [CFLAGS="$save_CFLAGS -Wmissing-prototypes";
189 AC_MSG_RESULT([no])]);
191 # Enable -fvisibility=hidden if using a gcc that supports it
192 save_CFLAGS="$CFLAGS"
193 AC_MSG_CHECKING([whether $CC supports -fvisibility=hidden])
194 VISIBILITY_CFLAGS="-fvisibility=hidden"
195 CFLAGS="$CFLAGS $VISIBILITY_CFLAGS"
196 AC_LINK_IFELSE([AC_LANG_PROGRAM()], AC_MSG_RESULT([yes]),
197 [VISIBILITY_CFLAGS=""; AC_MSG_RESULT([no])]);
199 # Restore CFLAGS; VISIBILITY_CFLAGS are added to it where needed.
202 # Work around aliasing bugs - developers should comment this out
203 CFLAGS="$CFLAGS -fno-strict-aliasing"
205 # gcc's builtin memcmp is slower than glibc's
206 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43052
207 CFLAGS="$CFLAGS -fno-builtin-memcmp"
209 if test "x$GXX" = xyes; then
210 CXXFLAGS="$CXXFLAGS -Wall"
212 # Enable -fvisibility=hidden if using a gcc that supports it
213 save_CXXFLAGS="$CXXFLAGS"
214 AC_MSG_CHECKING([whether $CXX supports -fvisibility=hidden])
215 VISIBILITY_CXXFLAGS="-fvisibility=hidden"
216 CXXFLAGS="$CXXFLAGS $VISIBILITY_CXXFLAGS"
218 AC_LINK_IFELSE([AC_LANG_PROGRAM()], AC_MSG_RESULT([yes]),
219 [VISIBILITY_CXXFLAGS="" ; AC_MSG_RESULT([no])]);
222 # Restore CXXFLAGS; VISIBILITY_CXXFLAGS are added to it where needed.
223 CXXFLAGS=$save_CXXFLAGS
225 # Work around aliasing bugs - developers should comment this out
226 CXXFLAGS="$CXXFLAGS -fno-strict-aliasing"
228 # gcc's builtin memcmp is slower than glibc's
229 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43052
230 CXXFLAGS="$CXXFLAGS -fno-builtin-memcmp"
233 dnl even if the compiler appears to support it, using visibility attributes isn't
234 dnl going to do anything useful currently on cygwin apart from emit lots of warnings
238 VISIBILITY_CXXFLAGS=""
242 AC_SUBST([VISIBILITY_CFLAGS])
243 AC_SUBST([VISIBILITY_CXXFLAGS])
246 dnl Hacks to enable 32 or 64 bit build
248 AC_ARG_ENABLE([32-bit],
249 [AS_HELP_STRING([--enable-32-bit],
250 [build 32-bit libraries @<:@default=auto@:>@])],
251 [enable_32bit="$enableval"],
254 if test "x$enable_32bit" = xyes; then
255 if test "x$GCC" = xyes; then
256 CFLAGS="$CFLAGS -m32"
257 CCASFLAGS="$CCASFLAGS -m32"
259 if test "x$GXX" = xyes; then
260 CXXFLAGS="$CXXFLAGS -m32"
263 AC_ARG_ENABLE([64-bit],
264 [AS_HELP_STRING([--enable-64-bit],
265 [build 64-bit libraries @<:@default=auto@:>@])],
266 [enable_64bit="$enableval"],
269 if test "x$enable_64bit" = xyes; then
270 if test "x$GCC" = xyes; then
271 CFLAGS="$CFLAGS -m64"
273 if test "x$GXX" = xyes; then
274 CXXFLAGS="$CXXFLAGS -m64"
278 dnl Can't have static and shared libraries, default to static if user
279 dnl explicitly requested. If both disabled, set to static since shared
280 dnl was explicitly requested.
281 case "x$enable_static$enable_shared" in
283 AC_MSG_WARN([Cannot build static and shared libraries, disabling shared])
287 AC_MSG_WARN([Cannot disable both static and shared libraries, enabling static])
292 AM_CONDITIONAL(BUILD_SHARED, test "x$enable_shared" = xyes)
297 AC_ARG_VAR([MKLIB_OPTIONS],[Options for the Mesa library script, mklib])
298 if test "$enable_static" = yes; then
299 MKLIB_OPTIONS="$MKLIB_OPTIONS -static"
301 AC_SUBST([MKLIB_OPTIONS])
304 dnl other compiler options
306 AC_ARG_ENABLE([debug],
307 [AS_HELP_STRING([--enable-debug],
308 [use debug compiler flags and macros @<:@default=disabled@:>@])],
309 [enable_debug="$enableval"],
312 if test "x$enable_debug" = xyes; then
313 DEFINES="$DEFINES -DDEBUG"
314 if test "x$GCC" = xyes; then
317 if test "x$GXX" = xyes; then
318 CXXFLAGS="$CXXFLAGS -g"
325 LIB_PREFIX_GLOB='lib'
326 LIB_VERSION_SEPARATOR='.'
327 if test "$enable_static" = yes; then
332 LIB_EXTENSION='dylib' ;;
334 dnl prefix can be 'cyg' or 'lib'
335 LIB_PREFIX_GLOB='???'
336 LIB_VERSION_SEPARATOR='-'
337 LIB_EXTENSION='dll' ;;
341 LIB_EXTENSION='so' ;;
344 AC_ARG_WITH([gl-lib-name],
345 [AS_HELP_STRING([--with-gl-lib-name@<:@=NAME@:>@],
346 [specify GL library name @<:@default=GL@:>@])],
349 AC_ARG_WITH([osmesa-lib-name],
350 [AS_HELP_STRING([--with-osmesa-lib-name@<:@=NAME@:>@],
351 [specify OSMesa library name @<:@default=OSMesa@:>@])],
352 [OSMESA_LIB=$withval],
354 AS_IF([test "x$GL_LIB" = xyes], [GL_LIB=GL])
355 AS_IF([test "x$OSMESA_LIB" = xyes], [OSMESA_LIB=OSMesa])
358 dnl Mangled Mesa support
360 AC_ARG_ENABLE([mangling],
361 [AS_HELP_STRING([--enable-mangling],
362 [enable mangled symbols and library name @<:@default=disabled@:>@])],
363 [enable_mangling="${enableval}"],
366 if test "x${enable_mangling}" = "xyes" ; then
367 DEFINES="${DEFINES} -DUSE_MGL_NAMESPACE"
368 GL_LIB="Mangled${GL_LIB}"
369 OSMESA_LIB="Mangled${OSMESA_LIB}"
372 AC_SUBST([OSMESA_LIB])
375 dnl potentially-infringing-but-nobody-knows-for-sure stuff
377 AC_ARG_ENABLE([texture-float],
378 [AS_HELP_STRING([--enable-texture-float],
379 [enable floating-point textures and renderbuffers @<:@default=disabled@:>@])],
380 [enable_texture_float="$enableval"],
381 [enable_texture_float=no]
383 if test "x$enable_texture_float" = xyes; then
384 AC_MSG_WARN([Floating-point textures enabled.])
385 AC_MSG_WARN([Please consult docs/patents.txt with your lawyer before building Mesa.])
386 DEFINES="$DEFINES -DTEXTURE_FLOAT_ENABLED"
389 GL_LIB_NAME='lib$(GL_LIB).'${LIB_EXTENSION}
390 OSMESA_LIB_NAME='lib$(OSMESA_LIB).'${LIB_EXTENSION}
391 EGL_LIB_NAME='lib$(EGL_LIB).'${LIB_EXTENSION}
392 GLESv1_CM_LIB_NAME='lib$(GLESv1_CM_LIB).'${LIB_EXTENSION}
393 GLESv2_LIB_NAME='lib$(GLESv2_LIB).'${LIB_EXTENSION}
394 VG_LIB_NAME='lib$(VG_LIB).'${LIB_EXTENSION}
395 GLAPI_LIB_NAME='lib$(GLAPI_LIB).'${LIB_EXTENSION}
397 GL_LIB_GLOB=${LIB_PREFIX_GLOB}'$(GL_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
398 EGL_LIB_GLOB=${LIB_PREFIX_GLOB}'$(EGL_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
399 EGL_LIB_GLOB=${LIB_PREFIX_GLOB}'$(EGL_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
400 GLESv1_CM_LIB_GLOB=${LIB_PREFIX_GLOB}'$(GLESv1_CM_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
401 GLESv2_LIB_GLOB=${LIB_PREFIX_GLOB}'$(GLESv2_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
402 VG_LIB_GLOB=${LIB_PREFIX_GLOB}'$(VG_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
403 GLAPI_LIB_GLOB=${LIB_PREFIX_GLOB}'$(GLAPI_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
405 AC_SUBST([GL_LIB_NAME])
406 AC_SUBST([OSMESA_LIB_NAME])
407 AC_SUBST([EGL_LIB_NAME])
408 AC_SUBST([GLESv1_CM_LIB_NAME])
409 AC_SUBST([GLESv2_LIB_NAME])
410 AC_SUBST([VG_LIB_NAME])
411 AC_SUBST([GLAPI_LIB_NAME])
413 AC_SUBST([GL_LIB_GLOB])
414 AC_SUBST([EGL_LIB_GLOB])
415 AC_SUBST([GLESv1_CM_LIB_GLOB])
416 AC_SUBST([GLESv2_LIB_GLOB])
417 AC_SUBST([VG_LIB_GLOB])
418 AC_SUBST([GLAPI_LIB_GLOB])
421 dnl Arch/platform-specific settings
424 [AS_HELP_STRING([--disable-asm],
425 [disable assembly usage @<:@default=enabled on supported plaforms@:>@])],
426 [enable_asm="$enableval"],
431 AC_MSG_CHECKING([whether to enable assembly])
432 test "x$enable_asm" = xno && AC_MSG_RESULT([no])
433 # disable if cross compiling on x86/x86_64 since we must run gen_matypes
434 if test "x$enable_asm" = xyes && test "x$cross_compiling" = xyes; then
438 AC_MSG_RESULT([no, cross compiling])
442 # check for supported arches
443 if test "x$enable_asm" = xyes; then
447 linux* | *freebsd* | dragonfly* | *netbsd*)
448 test "x$enable_64bit" = xyes && asm_arch=x86_64 || asm_arch=x86
454 linux* | *freebsd* | dragonfly* | *netbsd*)
455 test "x$enable_32bit" = xyes && asm_arch=x86 || asm_arch=x86_64
470 DEFINES="$DEFINES -DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_3DNOW_ASM -DUSE_SSE_ASM"
471 MESA_ASM_FILES='$(X86_FILES)'
472 AC_MSG_RESULT([yes, x86])
475 DEFINES="$DEFINES -DUSE_X86_64_ASM"
476 MESA_ASM_FILES='$(X86_64_FILES)'
477 AC_MSG_RESULT([yes, x86_64])
480 DEFINES="$DEFINES -DUSE_SPARC_ASM"
481 MESA_ASM_FILES='$(SPARC_FILES)'
482 AC_MSG_RESULT([yes, sparc])
485 AC_MSG_RESULT([no, platform not supported])
489 AC_SUBST([MESA_ASM_FILES])
494 dnl Check to see if dlopen is in default libraries (like Solaris, which
495 dnl has it in libc), or if libdl is needed to get it.
496 AC_CHECK_FUNC([dlopen], [DEFINES="$DEFINES -DHAVE_DLOPEN"],
497 [AC_CHECK_LIB([dl], [dlopen],
498 [DEFINES="$DEFINES -DHAVE_DLOPEN"; DLOPEN_LIBS="-ldl"])])
499 AC_SUBST([DLOPEN_LIBS])
501 dnl See if posix_memalign is available
502 AC_CHECK_FUNC([posix_memalign], [DEFINES="$DEFINES -DHAVE_POSIX_MEMALIGN"])
504 dnl Check for pthreads
506 dnl AX_PTHREADS leaves PTHREAD_LIBS empty for gcc and sets PTHREAD_CFLAGS
507 dnl to -pthread, which causes problems if we need -lpthread to appear in
509 test -z "$PTHREAD_LIBS" && PTHREAD_LIBS="-lpthread"
511 dnl SELinux awareness.
512 AC_ARG_ENABLE([selinux],
513 [AS_HELP_STRING([--enable-selinux],
514 [Build SELinux-aware Mesa @<:@default=disabled@:>@])],
515 [MESA_SELINUX="$enableval"],
517 if test "x$enable_selinux" = "xyes"; then
518 AC_CHECK_HEADER([selinux/selinux.h],[],
519 [AC_MSG_ERROR([SELinux headers not found])])
520 AC_CHECK_LIB([selinux],[is_selinux_enabled],[],
521 [AC_MSG_ERROR([SELinux library not found])])
522 SELINUX_LIBS="-lselinux"
523 DEFINES="$DEFINES -DMESA_SELINUX"
525 AC_SUBST([SELINUX_LIBS])
528 AC_ARG_ENABLE([opengl],
529 [AS_HELP_STRING([--disable-opengl],
530 [disable support for standard OpenGL API @<:@default=no@:>@])],
531 [enable_opengl="$enableval"],
533 AC_ARG_ENABLE([gles1],
534 [AS_HELP_STRING([--enable-gles1],
535 [enable support for OpenGL ES 1.x API @<:@default=no@:>@])],
536 [enable_gles1="$enableval"],
538 AC_ARG_ENABLE([gles2],
539 [AS_HELP_STRING([--enable-gles2],
540 [enable support for OpenGL ES 2.x API @<:@default=no@:>@])],
541 [enable_gles2="$enableval"],
543 AC_ARG_ENABLE([openvg],
544 [AS_HELP_STRING([--enable-openvg],
545 [enable support for OpenVG API @<:@default=no@:>@])],
546 [enable_openvg="$enableval"],
550 [AS_HELP_STRING([--enable-dri],
551 [enable DRI modules @<:@default=enabled@:>@])],
552 [enable_dri="$enableval"],
555 [AS_HELP_STRING([--enable-glx],
556 [enable GLX library @<:@default=enabled@:>@])],
557 [enable_glx="$enableval"],
559 AC_ARG_ENABLE([osmesa],
560 [AS_HELP_STRING([--enable-osmesa],
561 [enable OSMesa library @<:@default=disabled@:>@])],
562 [enable_osmesa="$enableval"],
565 [AS_HELP_STRING([--disable-egl],
566 [disable EGL library @<:@default=enabled@:>@])],
567 [enable_egl="$enableval"],
570 AC_ARG_ENABLE([xorg],
571 [AS_HELP_STRING([--enable-xorg],
572 [enable support for X.Org DDX API @<:@default=no@:>@])],
573 [enable_xorg="$enableval"],
576 [AS_HELP_STRING([--enable-xa],
577 [enable build of the XA X Acceleration API @<:@default=no@:>@])],
578 [enable_xa="$enableval"],
580 AC_ARG_ENABLE([d3d1x],
581 [AS_HELP_STRING([--enable-d3d1x],
582 [enable support for Direct3D 10 & 11 low-level API @<:@default=no@:>@])],
583 [enable_d3d1x="$enableval"],
586 [AS_HELP_STRING([--enable-gbm],
587 [enable gbm library @<:@default=auto@:>@])],
588 [enable_gbm="$enableval"],
591 AC_ARG_ENABLE([xvmc],
592 [AS_HELP_STRING([--enable-xvmc],
593 [enable xvmc library @<:@default=auto@:>@])],
594 [enable_xvmc="$enableval"],
596 AC_ARG_ENABLE([vdpau],
597 [AS_HELP_STRING([--enable-vdpau],
598 [enable vdpau library @<:@default=auto@:>@])],
599 [enable_vdpau="$enableval"],
602 [AS_HELP_STRING([--enable-va],
603 [enable va library @<:@default=auto@:>@])],
604 [enable_va="$enableval"],
606 AC_ARG_ENABLE([opencl],
607 [AS_HELP_STRING([--enable-opencl],
608 [enable OpenCL library @<:@default=no@:>@])],
609 [enable_opencl="$enableval"],
611 AC_ARG_ENABLE([xlib_glx],
612 [AS_HELP_STRING([--enable-xlib-glx],
613 [make GLX library Xlib-based instead of DRI-based @<:@default=disabled@:>@])],
614 [enable_xlib_glx="$enableval"],
615 [enable_xlib_glx=no])
616 AC_ARG_ENABLE([gallium_egl],
617 [AS_HELP_STRING([--enable-gallium-egl],
618 [enable optional EGL state tracker (not required
619 for EGL support in Gallium with OpenGL and OpenGL ES)
620 @<:@default=disable@:>@])],
621 [enable_gallium_egl="$enableval"],
622 [enable_gallium_egl=no])
623 AC_ARG_ENABLE([gallium_gbm],
624 [AS_HELP_STRING([--enable-gallium-gbm],
625 [enable optional gbm state tracker (not required for
626 gbm support in Gallium)
627 @<:@default=auto@:>@])],
628 [enable_gallium_gbm="$enableval"],
629 [enable_gallium_gbm=auto])
631 AC_ARG_ENABLE([r600-llvm-compiler],
632 [AS_HELP_STRING([--enable-r600-llvm-compiler],
633 [Enable experimental LLVM backend for graphics shaders @<:@default=disable@:>@])],
634 [enable_r600_llvm="$enableval"],
635 [enable_r600_llvm=no])
637 AC_ARG_ENABLE([gallium_tests],
638 [AS_HELP_STRING([--enable-gallium-tests],
639 [Enable optional Gallium tests) @<:@default=disable@:>@])],
640 [enable_gallium_tests="$enableval"],
641 [enable_gallium_tests=no])
643 # Option for Gallium drivers
644 GALLIUM_DRIVERS_DEFAULT="r300,r600,svga,swrast"
646 AC_ARG_WITH([gallium-drivers],
647 [AS_HELP_STRING([--with-gallium-drivers@<:@=DIRS...@:>@],
648 [comma delimited Gallium drivers list, e.g.
649 "i915,nouveau,r300,r600,radeonsi,svga,swrast"
650 @<:@default=r300,r600,swrast@:>@])],
651 [with_gallium_drivers="$withval"],
652 [with_gallium_drivers="$GALLIUM_DRIVERS_DEFAULT"])
654 # Doing '--without-gallium-drivers' will set this variable to 'no'. Clear it
655 # here so that the script doesn't choke on an unknown driver name later.
656 case "$with_gallium_drivers" in
657 yes) with_gallium_drivers="$GALLIUM_DRIVERS_DEFAULT" ;;
658 no) with_gallium_drivers='' ;;
661 if test "x$enable_opengl" = xno -a \
662 "x$enable_gles1" = xno -a \
663 "x$enable_gles2" = xno -a \
664 "x$enable_openvg" = xno -a \
665 "x$enable_xorg" = xno -a \
666 "x$enable_xa" = xno -a \
667 "x$enable_d3d1x" = xno -a \
668 "x$enable_xvmc" = xno -a \
669 "x$enable_vdpau" = xno -a \
670 "x$enable_va" = xno -a \
671 "x$enable_opencl" = xno; then
672 AC_MSG_ERROR([at least one API should be enabled])
675 # Building OpenGL ES1 and/or ES2 without OpenGL is not supported on mesa 9.0.x
676 if test "x$enable_opengl" = xno -a \
677 "x$enable_gles1" = xyes; then
678 AC_MSG_ERROR([Building OpenGL ES1 without OpenGL is not supported])
681 if test "x$enable_opengl" = xno -a \
682 "x$enable_gles2" = xyes; then
683 AC_MSG_ERROR([Building OpenGL ES2 without OpenGL is not supported])
687 if test "x$enable_opengl" = xno; then
688 API_DEFINES="$API_DEFINES -DFEATURE_GL=0"
690 API_DEFINES="$API_DEFINES -DFEATURE_GL=1"
692 if test "x$enable_gles1" = xyes; then
693 API_DEFINES="$API_DEFINES -DFEATURE_ES1=1"
695 if test "x$enable_gles2" = xyes; then
696 API_DEFINES="$API_DEFINES -DFEATURE_ES2=1"
698 AC_SUBST([API_DEFINES])
700 if test "x$enable_glx" = xno; then
701 AC_MSG_WARN([GLX disabled, disabling Xlib-GLX])
705 if test "x$enable_dri$enable_xlib_glx" = xyesyes; then
706 AC_MSG_ERROR([DRI and Xlib-GLX cannot be built together])
709 if test "x$enable_opengl$enable_xlib_glx" = xnoyes; then
710 AC_MSG_ERROR([Xlib-GLX cannot be built without OpenGL])
713 # Disable GLX if OpenGL is not enabled
714 if test "x$enable_glx$enable_opengl" = xyesno; then
715 AC_MSG_WARN([OpenGL not enabled, disabling GLX])
719 # Disable GLX if DRI and Xlib-GLX are not enabled
720 if test "x$enable_glx" = xyes -a \
721 "x$enable_dri" = xno -a \
722 "x$enable_xlib_glx" = xno; then
723 AC_MSG_WARN([Neither DRI nor Xlib-GLX enabled, disabling GLX])
727 AM_CONDITIONAL(HAVE_DRI, test "x$enable_dri" = xyes)
728 AM_CONDITIONAL(NEED_LIBMESA, test "x$enable_xlib_glx" = xyes -o \
729 "x$enable_osmesa" = xyes)
731 AC_ARG_ENABLE([shared-glapi],
732 [AS_HELP_STRING([--enable-shared-glapi],
733 [Enable shared glapi for OpenGL @<:@default=yes@:>@])],
734 [enable_shared_glapi="$enableval"],
735 [enable_shared_glapi="$enable_dri"])
737 # Shared GLAPI is only useful for DRI
738 if test "x$enable_dri" = xno; then
739 AC_MSG_NOTICE([Shared GLAPI is only useful for DRI, disabling])
740 enable_shared_glapi=no
743 # TODO: Get rid of SHARED_GLAPI variable
745 if test "x$enable_shared_glapi" = xyes; then
747 # libGL will use libglapi for function lookups (IN_DRI_DRIVER means to use
749 DEFINES="$DEFINES -DIN_DRI_DRIVER"
750 CORE_DIRS="mapi/shared-glapi"
752 AC_SUBST([SHARED_GLAPI])
753 AM_CONDITIONAL(HAVE_SHARED_GLAPI, test "x$enable_shared_glapi" = xyes)
756 dnl Driver specific build directories
759 GALLIUM_DIRS="auxiliary drivers state_trackers"
760 GALLIUM_TARGET_DIRS=""
761 GALLIUM_WINSYS_DIRS="sw"
762 GALLIUM_DRIVERS_DIRS="galahad trace rbug noop identity"
763 GALLIUM_STATE_TRACKERS_DIRS=""
765 # build glapi if OpenGL is enabled
766 if test "x$enable_opengl" = xyes; then
767 CORE_DIRS="$CORE_DIRS mapi/glapi"
770 # build es1api if OpenGL ES 1.x is enabled
771 if test "x$enable_gles1" = xyes; then
772 CORE_DIRS="$CORE_DIRS mapi/es1api"
775 # build es2api if OpenGL ES 2.x is enabled
776 if test "x$enable_gles2" = xyes; then
777 CORE_DIRS="$CORE_DIRS mapi/es2api"
780 # build glsl and mesa if OpenGL or OpenGL ES is enabled
781 case "x$enable_opengl$enable_gles1$enable_gles2" in
783 CORE_DIRS="mapi/glapi/gen $CORE_DIRS glsl mesa"
787 case "x$enable_glx$enable_xlib_glx" in
789 DRIVER_DIRS="$DRIVER_DIRS x11"
790 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/xlib"
791 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS libgl-xlib"
792 GALLIUM_STATE_TRACKERS_DIRS="glx $GALLIUM_STATE_TRACKERS_DIRS"
793 HAVE_WINSYS_XLIB="yes"
797 SRC_DIRS="$SRC_DIRS glx"
801 if test "x$enable_dri" = xyes; then
802 DRIVER_DIRS="$DRIVER_DIRS dri"
804 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/dri"
805 GALLIUM_STATE_TRACKERS_DIRS="dri $GALLIUM_STATE_TRACKERS_DIRS"
809 if test "x$enable_osmesa" = xyes; then
810 DRIVER_DIRS="$DRIVER_DIRS osmesa"
814 AC_SUBST([DRIVER_DIRS])
815 AC_SUBST([GALLIUM_DIRS])
816 AC_SUBST([GALLIUM_TARGET_DIRS])
817 AC_SUBST([GALLIUM_WINSYS_DIRS])
818 AC_SUBST([GALLIUM_DRIVERS_DIRS])
819 AC_SUBST([GALLIUM_STATE_TRACKERS_DIRS])
820 AC_SUBST([MESA_LLVM])
823 PKG_CHECK_MODULES([LIBDRM], [libdrm >= $LIBDRM_REQUIRED],
824 [have_libdrm=yes], [have_libdrm=no])
826 if test "x$enable_dri" = xyes; then
827 # DRI must be shared, I think
828 if test "$enable_static" = yes; then
829 AC_MSG_ERROR([Cannot use static libraries for DRI drivers])
832 # not a hard requirement as swrast does not depend on it
833 if test "x$have_libdrm" = xyes; then
834 DRI_PC_REQ_PRIV="libdrm >= $LIBDRM_REQUIRED"
838 dnl Find out if X is available.
839 PKG_CHECK_MODULES([X11], [x11])
841 dnl Try to tell the user that the --x-* options are only used when
842 dnl pkg-config is not available. This must be right after AC_PATH_XTRA.
843 m4_divert_once([HELP_BEGIN],
844 [These options are only used when the X libraries cannot be found by the
845 pkg-config utility.])
847 dnl We need X for xlib and dri, so bomb now if it's not found
848 if test "x$enable_glx" = xyes -a "x$no_x" = xyes; then
849 AC_MSG_ERROR([X11 development libraries needed for GLX])
852 if test "x$enable_glx" = xyes; then
853 DEFINES="$DEFINES -DUSE_XCB"
856 dnl Direct rendering or just indirect rendering
859 dnl Disable by default on GNU/Hurd
860 driglx_direct_default="no"
863 dnl Disable by default on cygwin
864 driglx_direct_default="no"
867 driglx_direct_default="yes"
870 AC_ARG_ENABLE([driglx-direct],
871 [AS_HELP_STRING([--disable-driglx-direct],
872 [enable direct rendering in GLX and EGL for DRI \
873 @<:@default=auto@:>@])],
874 [driglx_direct="$enableval"],
875 [driglx_direct="$driglx_direct_default"])
878 dnl libGL configuration per driver
880 case "x$enable_glx$enable_xlib_glx" in
883 PKG_CHECK_MODULES([XLIBGL], [x11 xext])
884 GL_PC_REQ_PRIV="x11 xext"
885 X11_INCLUDES="$X11_INCLUDES $XLIBGL_CFLAGS"
886 GL_LIB_DEPS="$XLIBGL_LIBS"
887 GL_LIB_DEPS="$GL_LIB_DEPS $SELINUX_LIBS -lm $PTHREAD_LIBS $DLOPEN_LIBS"
888 GL_PC_LIB_PRIV="$GL_PC_LIB_PRIV $SELINUX_LIBS -lm $PTHREAD_LIBS"
892 PKG_CHECK_MODULES([GLPROTO], [glproto >= $GLPROTO_REQUIRED])
893 if test x"$driglx_direct" = xyes; then
894 if test "x$have_libdrm" != xyes; then
895 AC_MSG_ERROR([Direct rendering requires libdrm >= $LIBDRM_REQUIRED])
897 PKG_CHECK_MODULES([DRI2PROTO], [dri2proto >= $DRI2PROTO_REQUIRED])
898 GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV libdrm >= $LIBDRM_REQUIRED"
901 # find the DRI deps for libGL
902 dri_modules="x11 xext xdamage xfixes x11-xcb xcb-glx >= 1.8.1"
904 # add xf86vidmode if available
905 PKG_CHECK_MODULES([XF86VIDMODE], [xxf86vm], HAVE_XF86VIDMODE=yes, HAVE_XF86VIDMODE=no)
906 if test "$HAVE_XF86VIDMODE" = yes ; then
907 dri_modules="$dri_modules xxf86vm"
910 PKG_CHECK_MODULES([DRIGL], [$dri_modules])
911 GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV $dri_modules"
912 X11_INCLUDES="$X11_INCLUDES $DRIGL_CFLAGS"
913 GL_LIB_DEPS="$DRIGL_LIBS"
915 # need DRM libs, $PTHREAD_LIBS, etc.
916 GL_LIB_DEPS="$GL_LIB_DEPS $LIBDRM_LIBS -lm $PTHREAD_LIBS $DLOPEN_LIBS"
917 GL_PC_LIB_PRIV="-lm $PTHREAD_LIBS $DLOPEN_LIBS"
921 # This is outside the case (above) so that it is invoked even for non-GLX
923 AM_CONDITIONAL(HAVE_XF86VIDMODE, test "x$HAVE_XF86VIDMODE" = xyes)
925 GLESv1_CM_LIB_DEPS="$LIBDRM_LIBS -lm $PTHREAD_LIBS $DLOPEN_LIBS"
926 GLESv1_CM_PC_LIB_PRIV="-lm $PTHREAD_LIBS $DLOPEN_LIBS"
927 GLESv2_LIB_DEPS="$LIBDRM_LIBS -lm $PTHREAD_LIBS $DLOPEN_LIBS"
928 GLESv2_PC_LIB_PRIV="-lm $PTHREAD_LIBS $DLOPEN_LIBS"
930 AC_SUBST([GL_LIB_DEPS])
931 AC_SUBST([GL_PC_REQ_PRIV])
932 AC_SUBST([GL_PC_LIB_PRIV])
933 AC_SUBST([GL_PC_CFLAGS])
934 AC_SUBST([DRI_PC_REQ_PRIV])
935 AC_SUBST([GLESv1_CM_LIB_DEPS])
936 AC_SUBST([GLESv1_CM_PC_LIB_PRIV])
937 AC_SUBST([GLESv2_LIB_DEPS])
938 AC_SUBST([GLESv2_PC_LIB_PRIV])
940 DRI_LIB_DEPS="\$(top_builddir)/src/mesa/libdricore/libdricore${VERSION}.la"
942 AC_SUBST([HAVE_XF86VIDMODE])
947 case "x$enable_glx$enable_xlib_glx" in
949 DEFINES="$DEFINES -DUSE_XSHM"
952 DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING"
953 if test "x$driglx_direct" = xyes; then
954 DEFINES="$DEFINES -DGLX_DIRECT_RENDERING"
963 AC_ARG_ENABLE([glx-tls],
964 [AS_HELP_STRING([--enable-glx-tls],
965 [enable TLS support in GLX @<:@default=disabled@:>@])],
966 [GLX_USE_TLS="$enableval"],
968 AC_SUBST(GLX_TLS, ${GLX_USE_TLS})
970 AS_IF([test "x$GLX_USE_TLS" = xyes -a "x$ax_pthread_ok" = xyes],
971 [DEFINES="${DEFINES} -DGLX_USE_TLS -DHAVE_PTHREAD"])
976 dnl Directory for DRI drivers
977 AC_ARG_WITH([dri-driverdir],
978 [AS_HELP_STRING([--with-dri-driverdir=DIR],
979 [directory for the DRI drivers @<:@${libdir}/dri@:>@])],
980 [DRI_DRIVER_INSTALL_DIR="$withval"],
981 [DRI_DRIVER_INSTALL_DIR='${libdir}/dri'])
982 AC_SUBST([DRI_DRIVER_INSTALL_DIR])
983 dnl Extra search path for DRI drivers
984 AC_ARG_WITH([dri-searchpath],
985 [AS_HELP_STRING([--with-dri-searchpath=DIRS...],
986 [semicolon delimited DRI driver search directories @<:@${libdir}/dri@:>@])],
987 [DRI_DRIVER_SEARCH_DIR="$withval"],
988 [DRI_DRIVER_SEARCH_DIR='${DRI_DRIVER_INSTALL_DIR}'])
989 AC_SUBST([DRI_DRIVER_SEARCH_DIR])
990 dnl Which drivers to build - default is chosen by platform
991 AC_ARG_WITH([dri-drivers],
992 [AS_HELP_STRING([--with-dri-drivers@<:@=DIRS...@:>@],
993 [comma delimited DRI drivers list, e.g.
994 "swrast,i965,radeon" @<:@default=auto@:>@])],
995 [with_dri_drivers="$withval"],
996 [with_dri_drivers=yes])
997 if test "x$with_dri_drivers" = x; then
1001 dnl If $with_dri_drivers is yes, directories will be added through
1004 case "$with_dri_drivers" in
1007 # classic DRI drivers require FEATURE_GL to build
1008 if test "x$enable_opengl" = xyes; then
1013 # verify the requested driver directories exist
1014 dri_drivers=`IFS=', '; echo $with_dri_drivers`
1015 for driver in $dri_drivers; do
1016 test -d "$srcdir/src/mesa/drivers/dri/$driver" || \
1017 AC_MSG_ERROR([DRI driver directory '$driver' does not exist])
1019 DRI_DIRS="$dri_drivers"
1020 if test -n "$DRI_DIRS" -a "x$enable_opengl" != xyes; then
1021 AC_MSG_ERROR([--with-dri-drivers requires OpenGL])
1026 dnl Set DRI_DIRS, DEFINES and LIB_DEPS
1027 if test "x$enable_dri" = xyes; then
1028 # Platform specific settings and drivers to build
1031 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
1032 DEFINES="$DEFINES -DHAVE_ALIAS"
1036 if test "x$DRI_DIRS" = "xyes"; then
1037 DRI_DIRS="i915 i965 nouveau r200 radeon swrast"
1041 # Build only the drivers for cards that exist on PowerPC.
1042 if test "x$DRI_DIRS" = "xyes"; then
1043 DRI_DIRS="r200 radeon swrast"
1047 # Build only the drivers for cards that exist on sparc
1048 if test "x$DRI_DIRS" = "xyes"; then
1049 DRI_DIRS="r200 radeon swrast"
1054 freebsd* | dragonfly* | *netbsd*)
1055 DEFINES="$DEFINES -DHAVE_PTHREAD -DUSE_EXTERNAL_DXTN_LIB=1"
1056 DEFINES="$DEFINES -DIN_DRI_DRIVER -DHAVE_ALIAS"
1058 if test "x$DRI_DIRS" = "xyes"; then
1059 DRI_DIRS="i915 i965 nouveau r200 radeon swrast"
1063 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
1064 DEFINES="$DEFINES -DHAVE_ALIAS"
1067 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
1070 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
1071 if test "x$DRI_DIRS" = "xyes"; then
1078 if test "x$DRI_DIRS" = "xyes"; then
1079 DRI_DIRS="i915 i965 nouveau r200 radeon swrast"
1082 DRI_DIRS=`echo "$DRI_DIRS" | $SED 's/ */ /g'`
1085 if test "x$enable_dri" = xyes; then
1088 AC_ARG_WITH([expat],
1089 [AS_HELP_STRING([--with-expat=DIR],
1090 [expat install directory])],[
1091 EXPAT_INCLUDES="-I$withval/include"
1092 CPPFLAGS="$CPPFLAGS $EXPAT_INCLUDES"
1093 LDFLAGS="$LDFLAGS -L$withval/$LIB_DIR"
1094 EXPAT_LIB="-L$withval/$LIB_DIR -lexpat"
1096 AC_CHECK_HEADER([expat.h],[],[AC_MSG_ERROR([Expat required for DRI.])])
1098 AC_CHECK_LIB([expat],[XML_ParserCreate],[],
1099 [AC_MSG_ERROR([Expat required for DRI.])])
1103 # if we are building any dri driver other than swrast ...
1104 if test -n "$DRI_DIRS" -a x"$DRI_DIRS" != xswrast; then
1105 # ... libdrm is required
1106 if test "x$have_libdrm" != xyes; then
1107 AC_MSG_ERROR([DRI drivers requires libdrm >= $LIBDRM_REQUIRED])
1109 # ... and build dricommon
1113 # put all the necessary libs together
1114 DRI_LIB_DEPS="$DRI_LIB_DEPS $SELINUX_LIBS $LIBDRM_LIBS $EXPAT_LIB -lm $PTHREAD_LIBS $DLOPEN_LIBS"
1115 GALLIUM_DRI_LIB_DEPS="$GALLIUM_DRI_LIB_DEPS $SELINUX_LIBS $LIBDRM_LIBS $EXPAT_LIB -lm $PTHREAD_LIBS $DLOPEN_LIBS"
1117 AM_CONDITIONAL(NEED_LIBDRICORE, test -n "$DRI_DIRS")
1118 AC_SUBST([DRI_DIRS])
1119 AC_SUBST([EXPAT_INCLUDES])
1120 AC_SUBST([DRI_LIB_DEPS])
1121 AC_SUBST([GALLIUM_DRI_LIB_DEPS])
1125 PKG_CHECK_MODULES([INTEL], [libdrm_intel >= $LIBDRM_INTEL_REQUIRED])
1127 for d in $(echo $DRI_DIRS | sed 's/,/ /g'); do
1143 PKG_CHECK_MODULES([NOUVEAU], [libdrm_nouveau >= $LIBDRM_NVVIEUX_REQUIRED])
1144 HAVE_NOUVEAU_DRI=yes;
1150 PKG_CHECK_MODULES([RADEON], [libdrm_radeon >= $LIBDRM_RADEON_REQUIRED])
1152 for d in $(echo $DRI_DIRS | sed 's/,/ /g'); do
1155 HAVE_RADEON_DRI=yes;
1168 HAVE_SWRAST_DRI=yes;
1172 AM_CONDITIONAL(HAVE_I915_DRI, test x$HAVE_I915_DRI = xyes)
1173 AM_CONDITIONAL(HAVE_I965_DRI, test x$HAVE_I965_DRI = xyes)
1174 AM_CONDITIONAL(HAVE_NOUVEAU_DRI, test x$HAVE_NOUVEAU_DRI = xyes)
1175 AM_CONDITIONAL(HAVE_R200_DRI, test x$HAVE_R200_DRI = xyes)
1176 AM_CONDITIONAL(HAVE_RADEON_DRI, test x$HAVE_RADEON_DRI = xyes)
1177 AM_CONDITIONAL(HAVE_SWRAST_DRI, test x$HAVE_SWRAST_DRI = xyes)
1178 AM_CONDITIONAL(HAVE_COMMON_DRI, test x$HAVE_COMMON_DRI = xyes)
1181 dnl OSMesa configuration
1184 dnl Configure the channel bits for OSMesa (libOSMesa, libOSMesa16, ...)
1185 AC_ARG_WITH([osmesa-bits],
1186 [AS_HELP_STRING([--with-osmesa-bits=BITS],
1187 [OSMesa channel bits and library name: 8, 16, 32 @<:@default=8@:>@])],
1188 [osmesa_bits="$withval"],
1190 if test "x$osmesa_bits" != x8; then
1191 if test "x$enable_dri" = xyes -o "x$enable_glx" = xyes; then
1192 AC_MSG_WARN([Ignoring OSMesa channel bits because of non-OSMesa driver])
1196 case "x$osmesa_bits" in
1198 OSMESA_LIB="${OSMESA_LIB}"
1201 OSMESA_LIB="${OSMESA_LIB}$osmesa_bits"
1202 DEFINES="$DEFINES -DCHAN_BITS=$osmesa_bits -DDEFAULT_SOFTWARE_DEPTH_BITS=31"
1205 AC_MSG_ERROR([OSMesa bits '$osmesa_bits' is not a valid option])
1209 if test "x$enable_osmesa" = xyes; then
1210 # only link libraries with osmesa if shared
1211 if test "$enable_static" = no; then
1212 OSMESA_LIB_DEPS="-lm $PTHREAD_LIBS $SELINUX_LIBS $DLOPEN_LIBS"
1217 OSMESA_PC_LIB_PRIV="-lm $PTHREAD_LIBS $SELINUX_LIBS $DLOPEN_LIBS"
1220 AC_SUBST([OSMESA_LIB_DEPS])
1221 AC_SUBST([OSMESA_MESA_DEPS])
1222 AC_SUBST([OSMESA_PC_REQ])
1223 AC_SUBST([OSMESA_PC_LIB_PRIV])
1226 dnl gbm configuration
1228 if test "x$enable_gbm" = xauto; then
1229 case "$with_egl_platforms" in
1236 if test "x$enable_gbm" = xyes; then
1237 SRC_DIRS="$SRC_DIRS gbm"
1239 PKG_CHECK_MODULES([LIBUDEV], [libudev], [],
1240 AC_MSG_ERROR([gbm needs udev]))
1242 if test "x$enable_dri" = xyes; then
1243 GBM_BACKEND_DIRS="$GBM_BACKEND_DIRS dri"
1244 if test "x$enable_shared_glapi" = xno; then
1245 AC_MSG_ERROR([gbm_dri requires --enable-shared-glapi])
1249 GBM_PC_REQ_PRIV="libudev"
1250 GBM_PC_LIB_PRIV="$DLOPEN_LIBS"
1251 AC_SUBST([GBM_PC_REQ_PRIV])
1252 AC_SUBST([GBM_PC_LIB_PRIV])
1255 dnl EGL configuration
1259 if test "x$enable_egl" = xyes; then
1260 SRC_DIRS="$SRC_DIRS egl"
1261 EGL_LIB_DEPS="$DLOPEN_LIBS $SELINUX_LIBS $PTHREAD_LIBS"
1263 AC_CHECK_FUNC(mincore, [DEFINES="$DEFINES -DHAVE_MINCORE"])
1265 if test "$enable_static" != yes; then
1266 # build egl_glx when libGL is built
1267 if test "x$enable_glx" = xyes; then
1268 HAVE_EGL_DRIVER_GLX=1
1271 PKG_CHECK_MODULES([LIBUDEV], [libudev > 150],
1272 [have_libudev=yes],[have_libudev=no])
1273 if test "$have_libudev" = yes; then
1274 DEFINES="$DEFINES -DHAVE_LIBUDEV"
1277 if test "x$enable_dri" = xyes; then
1278 HAVE_EGL_DRIVER_DRI2=1
1283 AC_SUBST([EGL_LIB_DEPS])
1286 dnl EGL Gallium configuration
1288 if test "x$enable_gallium_egl" = xyes; then
1289 if test "x$with_gallium_drivers" = x; then
1290 AC_MSG_ERROR([cannot enable egl_gallium without Gallium])
1292 if test "x$enable_egl" = xno; then
1293 AC_MSG_ERROR([cannot enable egl_gallium without EGL])
1295 if test "x$have_libdrm" != xyes; then
1296 AC_MSG_ERROR([egl_gallium requires libdrm >= $LIBDRM_REQUIRED])
1299 GALLIUM_STATE_TRACKERS_DIRS="egl $GALLIUM_STATE_TRACKERS_DIRS"
1300 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS egl-static"
1305 dnl gbm Gallium configuration
1307 if test "x$enable_gallium_gbm" = xauto; then
1308 case "$enable_gbm$HAVE_ST_EGL$enable_dri$with_egl_platforms" in
1310 enable_gallium_gbm=yes ;;
1312 enable_gallium_gbm=no ;;
1315 if test "x$enable_gallium_gbm" = xyes; then
1316 if test "x$with_gallium_drivers" = x; then
1317 AC_MSG_ERROR([cannot enable gbm_gallium without Gallium])
1319 if test "x$enable_gbm" = xno; then
1320 AC_MSG_ERROR([cannot enable gbm_gallium without gbm])
1322 # gbm_gallium abuses DRI_LIB_DEPS to link. Make sure it is set.
1323 if test "x$enable_dri" = xno; then
1324 AC_MSG_ERROR([gbm_gallium requires --enable-dri to build])
1327 GALLIUM_STATE_TRACKERS_DIRS="gbm $GALLIUM_STATE_TRACKERS_DIRS"
1328 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS gbm"
1330 enable_gallium_loader=yes
1334 dnl X.Org DDX configuration
1336 if test "x$enable_xorg" = xyes; then
1337 PKG_CHECK_MODULES([XORG], [xorg-server >= 1.6.0])
1338 PKG_CHECK_MODULES([LIBDRM_XORG], [libdrm >= $LIBDRM_XORG_REQUIRED])
1339 PKG_CHECK_MODULES([LIBKMS_XORG], [libkms >= $LIBKMS_XORG_REQUIRED])
1340 PKG_CHECK_MODULES(XEXT, [xextproto >= 7.0.99.1],
1341 HAVE_XEXTPROTO_71="yes"; DEFINES="$DEFINES -DHAVE_XEXTPROTO_71",
1342 HAVE_XEXTPROTO_71="no")
1343 GALLIUM_STATE_TRACKERS_DIRS="xorg $GALLIUM_STATE_TRACKERS_DIRS"
1348 dnl XA configuration
1350 if test "x$enable_xa" = xyes; then
1353 AC_CHECK_PROG(NM, nm, "nm")
1354 if test "x$AWK" = x || test "x$GREP" = x || test "x$NM" = x; then
1355 AC_MSG_WARN([Missing one of nm, grep or awk. Disabling xa.])
1359 if test "x$enable_xa" = xyes; then
1360 GALLIUM_STATE_TRACKERS_DIRS="xa $GALLIUM_STATE_TRACKERS_DIRS"
1368 dnl OpenVG configuration
1372 if test "x$enable_openvg" = xyes; then
1373 if test "x$enable_egl" = xno; then
1374 AC_MSG_ERROR([cannot enable OpenVG without EGL])
1376 if test "x$with_gallium_drivers" = x; then
1377 AC_MSG_ERROR([cannot enable OpenVG without Gallium])
1379 if test "x$enable_gallium_egl" = xno; then
1380 AC_MSG_ERROR([cannot enable OpenVG without egl_gallium])
1383 EGL_CLIENT_APIS="$EGL_CLIENT_APIS "'$(VG_LIB)'
1384 VG_LIB_DEPS="$VG_LIB_DEPS $SELINUX_LIBS $PTHREAD_LIBS"
1385 CORE_DIRS="$CORE_DIRS mapi/vgapi"
1386 GALLIUM_STATE_TRACKERS_DIRS="vega $GALLIUM_STATE_TRACKERS_DIRS"
1388 VG_PC_LIB_PRIV="-lm $PTHREAD_LIBS $DLOPEN_LIBS"
1389 AC_SUBST([VG_PC_LIB_PRIV])
1393 dnl D3D1X configuration
1396 if test "x$enable_d3d1x" = xyes; then
1397 if test "x$with_gallium_drivers" = x; then
1398 AC_MSG_ERROR([cannot enable D3D1X without Gallium])
1401 GALLIUM_STATE_TRACKERS_DIRS="d3d1x $GALLIUM_STATE_TRACKERS_DIRS"
1406 dnl Gallium G3DVL configuration
1408 AC_ARG_ENABLE([gallium-g3dvl],
1409 [AS_HELP_STRING([--enable-gallium-g3dvl],
1410 [build gallium g3dvl @<:@default=disabled@:>@])],
1411 [enable_gallium_g3dvl="$enableval"],
1412 [enable_gallium_g3dvl=no])
1413 if test "x$enable_gallium_g3dvl" = xyes; then
1414 if test "x$with_gallium_drivers" = x; then
1415 AC_MSG_ERROR([cannot enable G3DVL without Gallium])
1418 if test "x$enable_xvmc" = xauto; then
1419 PKG_CHECK_EXISTS([xvmc], [enable_xvmc=yes], [enable_xvmc=no])
1422 if test "x$enable_vdpau" = xauto; then
1423 PKG_CHECK_EXISTS([vdpau], [enable_vdpau=yes], [enable_vdpau=no])
1426 if test "x$enable_va" = xauto; then
1427 #don't enable vaapi state tracker even if package exists
1428 #PKG_CHECK_EXISTS([libva], [enable_vdpau=yes], [enable_vdpau=no])
1433 if test "x$enable_xvmc" = xyes; then
1434 PKG_CHECK_MODULES([XVMC], [xvmc >= 1.0.6 x11-xcb xcb-dri2 >= 1.8])
1435 GALLIUM_STATE_TRACKERS_DIRS="$GALLIUM_STATE_TRACKERS_DIRS xvmc"
1439 if test "x$enable_vdpau" = xyes; then
1440 PKG_CHECK_MODULES([VDPAU], [vdpau >= 0.4.1 x11-xcb xcb-dri2 >= 1.8])
1441 GALLIUM_STATE_TRACKERS_DIRS="$GALLIUM_STATE_TRACKERS_DIRS vdpau"
1445 if test "x$enable_va" = xyes; then
1446 PKG_CHECK_MODULES([LIBVA], [libva = 0.31.1 x11-xcb xcb-dri2 >= 1.8])
1447 AC_MSG_WARN([vaapi state tracker currently unmaintained])
1448 GALLIUM_STATE_TRACKERS_DIRS="$GALLIUM_STATE_TRACKERS_DIRS va"
1453 dnl OpenCL configuration
1456 AC_ARG_WITH([libclc-path],
1457 [AS_HELP_STRING([--with-libclc-path],
1458 [DEPRECATED: See http://dri.freedesktop.org/wiki/GalliumCompute#How_to_Install])],
1459 [LIBCLC_PATH="$withval"],
1462 if test "x$LIBCLC_PATH" != x; then
1463 AC_MSG_ERROR([The --with-libclc-path option has been deprecated.
1464 Please review the updated build instructions for clover:
1465 http://dri.freedesktop.org/wiki/GalliumCompute])
1469 AC_ARG_WITH([clang-libdir],
1470 [AS_HELP_STRING([--with-clang-libdir],
1471 [Path to Clang libraries @<:@default=llvm-config --libdir@:>@])],
1472 [CLANG_LIBDIR="$withval"],
1475 LIBCLC_INCLUDEDIR=`pkg-config --variable=includedir libclc`
1476 LIBCLC_LIBEXECDIR=`pkg-config --variable=libexecdir libclc`
1477 AC_SUBST([LIBCLC_INCLUDEDIR])
1478 AC_SUBST([LIBCLC_LIBEXECDIR])
1480 if test "x$enable_opencl" = xyes; then
1481 if test "x$with_gallium_drivers" = x; then
1482 AC_MSG_ERROR([cannot enable OpenCL without Gallium])
1485 if test $GCC_VERSION_MAJOR -lt 4 -o $GCC_VERSION_MAJOR -eq 4 -a $GCC_VERSION_MINOR -lt 6; then
1486 AC_MSG_ERROR([gcc >= 4.6 is required to build clover])
1489 if test "x$LIBCLC_INCLUDEDIR" == x || test "x$LIBCLC_LIBEXECDIR" == x; then
1490 AC_MSG_ERROR([pkg-config cannot use libclc.pc which is required to build clover])
1493 GALLIUM_STATE_TRACKERS_DIRS="$GALLIUM_STATE_TRACKERS_DIRS clover"
1494 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS opencl"
1495 enable_gallium_loader=yes
1499 dnl Gallium configuration
1501 if test "x$with_gallium_drivers" != x; then
1502 SRC_DIRS="$SRC_DIRS gallium gallium/winsys gallium/targets"
1504 AM_CONDITIONAL(HAVE_GALLIUM, test "x$with_gallium_drivers" != x)
1506 AC_SUBST([LLVM_BINDIR])
1507 AC_SUBST([LLVM_CFLAGS])
1508 AC_SUBST([LLVM_CPPFLAGS])
1509 AC_SUBST([LLVM_CXXFLAGS])
1510 AC_SUBST([LLVM_LIBDIR])
1511 AC_SUBST([LLVM_LIBS])
1512 AC_SUBST([LLVM_LDFLAGS])
1513 AC_SUBST([LLVM_INCLUDEDIR])
1514 AC_SUBST([LLVM_VERSION])
1515 AC_SUBST([CLANG_RESOURCE_DIR])
1517 case "x$enable_opengl$enable_gles1$enable_gles2" in
1519 EGL_CLIENT_APIS="$EGL_CLIENT_APIS "'$(GL_LIB)'
1523 AC_SUBST([VG_LIB_DEPS])
1524 AC_SUBST([EGL_CLIENT_APIS])
1527 dnl EGL Platforms configuration
1529 AC_ARG_WITH([egl-platforms],
1530 [AS_HELP_STRING([--with-egl-platforms@<:@=DIRS...@:>@],
1531 [comma delimited native platforms libEGL supports, e.g.
1532 "x11,drm" @<:@default=auto@:>@])],
1533 [with_egl_platforms="$withval"],
1534 [if test "x$enable_egl" = xyes; then
1535 with_egl_platforms="x11"
1537 with_egl_platforms=""
1542 if test "x$with_egl_platforms" != "x" -a "x$enable_egl" != xyes; then
1543 AC_MSG_ERROR([cannot build egl state tracker without EGL library])
1546 # Do per-EGL platform setups and checks
1547 egl_platforms=`IFS=', '; echo $with_egl_platforms`
1548 for plat in $egl_platforms; do
1551 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/$plat"
1555 PKG_CHECK_MODULES([WAYLAND], [wayland-client >= 1.0.2 wayland-server >= 1.0.2])
1556 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/wayland"
1558 WAYLAND_PREFIX=`$PKG_CONFIG --variable=prefix wayland-client`
1559 AC_PATH_PROG([WAYLAND_SCANNER], [wayland-scanner],,
1560 [${WAYLAND_PREFIX}/bin$PATH_SEPARATOR$PATH])
1564 PKG_CHECK_MODULES([XCB_DRI2], [x11-xcb xcb-dri2 xcb-xfixes])
1565 # workaround a bug in xcb-dri2 generated by xcb-proto 1.6
1567 AC_CHECK_LIB(xcb-dri2, xcb_dri2_connect_alignment_pad, [],
1568 [DEFINES="$DEFINES -DXCB_DRI2_CONNECT_DEVICE_NAME_BROKEN"])
1573 test "x$enable_gbm" = "xno" &&
1574 AC_MSG_ERROR([EGL platform drm needs gbm])
1581 AC_MSG_ERROR([EGL platform '$plat' does not exist])
1585 case "$plat$have_libudev" in
1587 AC_MSG_ERROR([cannot build $plat platfrom without udev]) ;;
1591 # libEGL wants to default to the first platform specified in
1592 # ./configure. parse that here.
1593 if test "x$egl_platforms" != "x"; then
1594 FIRST_PLATFORM_CAPS=`echo $egl_platforms | sed 's| .*||' | tr 'a-z' 'A-Z'`
1595 EGL_NATIVE_PLATFORM="_EGL_PLATFORM_$FIRST_PLATFORM_CAPS"
1597 EGL_NATIVE_PLATFORM="_EGL_INVALID_PLATFORM"
1600 EGL_PLATFORMS="$egl_platforms"
1602 AM_CONDITIONAL(HAVE_EGL_PLATFORM_X11, echo "$egl_platforms" | grep 'x11' >/dev/null 2>&1)
1603 AM_CONDITIONAL(HAVE_EGL_PLATFORM_WAYLAND, echo "$egl_platforms" | grep 'wayland' >/dev/null 2>&1)
1604 AM_CONDITIONAL(HAVE_EGL_PLATFORM_DRM, echo "$egl_platforms" | grep 'drm' >/dev/null 2>&1)
1605 AM_CONDITIONAL(HAVE_EGL_PLATFORM_FBDEV, echo "$egl_platforms" | grep 'fbdev' >/dev/null 2>&1)
1606 AM_CONDITIONAL(HAVE_EGL_PLATFORM_NULL, echo "$egl_platforms" | grep 'null' >/dev/null 2>&1)
1608 AM_CONDITIONAL(HAVE_EGL_DRIVER_DRI2, test "x$HAVE_EGL_DRIVER_DRI2" != "x")
1609 AM_CONDITIONAL(HAVE_EGL_DRIVER_GLX, test "x$HAVE_EGL_DRIVER_GLX" != "x")
1611 AC_SUBST([EGL_NATIVE_PLATFORM])
1612 AC_SUBST([EGL_PLATFORMS])
1613 AC_SUBST([EGL_CFLAGS])
1615 AC_ARG_WITH([egl-driver-dir],
1616 [AS_HELP_STRING([--with-egl-driver-dir=DIR],
1617 [directory for EGL drivers [[default=${libdir}/egl]]])],
1618 [EGL_DRIVER_INSTALL_DIR="$withval"],
1619 [EGL_DRIVER_INSTALL_DIR='${libdir}/egl'])
1620 AC_SUBST([EGL_DRIVER_INSTALL_DIR])
1622 AC_ARG_WITH([xorg-driver-dir],
1623 [AS_HELP_STRING([--with-xorg-driver-dir=DIR],
1624 [Default xorg driver directory[[default=${libdir}/xorg/modules/drivers]]])],
1625 [XORG_DRIVER_INSTALL_DIR="$withval"],
1626 [XORG_DRIVER_INSTALL_DIR="${libdir}/xorg/modules/drivers"])
1627 AC_SUBST([XORG_DRIVER_INSTALL_DIR])
1629 AC_ARG_WITH([max-width],
1630 [AS_HELP_STRING([--with-max-width=N],
1631 [Maximum framebuffer width (4096)])],
1632 [DEFINES="${DEFINES} -DMAX_WIDTH=${withval}";
1633 AS_IF([test "${withval}" -gt "4096"],
1634 [AC_MSG_WARN([Large framebuffer: see s_tritemp.h comments.])])]
1636 AC_ARG_WITH([max-height],
1637 [AS_HELP_STRING([--with-max-height=N],
1638 [Maximum framebuffer height (4096)])],
1639 [DEFINES="${DEFINES} -DMAX_HEIGHT=${withval}";
1640 AS_IF([test "${withval}" -gt "4096"],
1641 [AC_MSG_WARN([Large framebuffer: see s_tritemp.h comments.])])]
1647 AC_ARG_ENABLE([gallium-llvm],
1648 [AS_HELP_STRING([--enable-gallium-llvm],
1649 [build gallium LLVM support @<:@default=enabled on x86/x86_64@:>@])],
1650 [enable_gallium_llvm="$enableval"],
1651 [enable_gallium_llvm=auto])
1653 AC_ARG_WITH([llvm-shared-libs],
1654 [AS_HELP_STRING([--with-llvm-shared-libs],
1655 [link with LLVM shared libraries @<:@default=disabled@:>@])],
1656 [with_llvm_shared_libs=yes],
1657 [with_llvm_shared_libs=no])
1659 AC_ARG_WITH([llvm-prefix],
1660 [AS_HELP_STRING([--with-llvm-prefix],
1661 [Prefix for LLVM installations in non-standard locations])],
1662 [llvm_prefix="$withval"],
1666 if test "x$with_gallium_drivers" = x; then
1667 enable_gallium_llvm=no
1669 if test "x$enable_gallium_llvm" = xauto; then
1671 i*86|x86_64) enable_gallium_llvm=yes;;
1674 if test "x$enable_gallium_llvm" = xyes; then
1675 if test "x$llvm_prefix" != x; then
1676 AC_PATH_PROG([LLVM_CONFIG], [llvm-config], [no], ["$llvm_prefix/bin"])
1678 AC_PATH_PROG([LLVM_CONFIG], [llvm-config], [no])
1681 if test "x$LLVM_CONFIG" != xno; then
1682 LLVM_VERSION=`$LLVM_CONFIG --version | sed 's/svn.*//g'`
1683 LLVM_CFLAGS=`$LLVM_CONFIG --cppflags|sed -e 's/-DNDEBUG\>//g' -e 's/-pedantic//g' -e 's/-Wcovered-switch-default//g'`
1684 if test "x$with_llvm_shared_libs" = xyes; then
1685 dnl We can't use $LLVM_VERSION because it has 'svn' stripped out,
1686 LLVM_LIBS="-lLLVM-`$LLVM_CONFIG --version`"
1688 LLVM_COMPONENTS="engine bitwriter"
1689 if $LLVM_CONFIG --components | grep -q '\<mcjit\>'; then
1690 LLVM_COMPONENTS="${LLVM_COMPONENTS} mcjit"
1692 if test "x$enable_opencl" = xyes; then
1693 LLVM_COMPONENTS="${LLVM_COMPONENTS} ipo linker instrumentation"
1695 LLVM_LIBS="`$LLVM_CONFIG --libs ${LLVM_COMPONENTS}`"
1697 LLVM_LDFLAGS=`$LLVM_CONFIG --ldflags`
1698 LLVM_BINDIR=`$LLVM_CONFIG --bindir`
1699 LLVM_CXXFLAGS=`$LLVM_CONFIG --cxxflags|sed -e 's/-DNDEBUG\>//g' -e 's/-pedantic//g' -e 's/-Wcovered-switch-default//g'`
1700 LLVM_CPPFLAGS=`$LLVM_CONFIG --cppflags|sed -e 's/-DNDEBUG\>//g' -e 's/-pedantic//g' -e 's/-Wcovered-switch-default//g'`
1701 LLVM_INCLUDEDIR=`$LLVM_CONFIG --includedir`
1702 LLVM_LIBDIR=`$LLVM_CONFIG --libdir`
1703 DEFINES="${DEFINES} -DHAVE_LLVM=`echo $LLVM_VERSION | sed -e 's/\([[0-9]]\)\.\([[0-9]]\)/0x0\10\2/g'`"
1706 dnl Check for Clang interanl headers
1707 if test "x$enable_opencl" = xyes; then
1708 if test "x$CLANG_LIBDIR" = x; then
1709 CLANG_LIBDIR=${LLVM_LIBDIR}
1711 CLANG_RESOURCE_DIR=$CLANG_LIBDIR/clang/${LLVM_VERSION}
1712 AC_CHECK_FILE("$CLANG_RESOURCE_DIR/include/stddef.h",,
1713 AC_MSG_ERROR([Could not find clang internal header stddef.h in $CLANG_RESOURCE_DIR Use --with-clang-libdir to specify the correct path to the clang libraries.]))
1722 dnl Directory for XVMC libs
1723 AC_ARG_WITH([xvmc-libdir],
1724 [AS_HELP_STRING([--with-xvmc-libdir=DIR],
1725 [directory for the XVMC libraries @<:@default=${libdir}@:>@])],
1726 [XVMC_LIB_INSTALL_DIR="$withval"],
1727 [XVMC_LIB_INSTALL_DIR='${libdir}'])
1728 AC_SUBST([XVMC_LIB_INSTALL_DIR])
1733 if test "x$enable_gallium_tests" = xyes; then
1734 SRC_DIRS="$SRC_DIRS gallium/tests/trivial"
1735 enable_gallium_loader=yes
1738 dnl Directory for VDPAU libs
1739 AC_ARG_WITH([vdpau-libdir],
1740 [AS_HELP_STRING([--with-vdpau-libdir=DIR],
1741 [directory for the VDPAU libraries @<:@default=${libdir}/vdpau@:>@])],
1742 [VDPAU_LIB_INSTALL_DIR="$withval"],
1743 [VDPAU_LIB_INSTALL_DIR='${libdir}/vdpau'])
1744 AC_SUBST([VDPAU_LIB_INSTALL_DIR])
1746 dnl Directory for VA libs
1747 AC_ARG_WITH([va-libdir],
1748 [AS_HELP_STRING([--with-va-libdir=DIR],
1749 [directory for the VA libraries @<:@default=${libdir}/va@:>@])],
1750 [VA_LIB_INSTALL_DIR="$withval"],
1751 [VA_LIB_INSTALL_DIR='${libdir}/va'])
1752 AC_SUBST([VA_LIB_INSTALL_DIR])
1754 dnl Directory for OpenCL libs
1755 AC_ARG_WITH([opencl-libdir],
1756 [AS_HELP_STRING([--with-opencl-libdir=DIR],
1757 [directory for the OpenCL libraries @<:@default=${libdir}/opencl@:>@])],
1758 [OPENCL_LIB_INSTALL_DIR="$withval"],
1759 [OPENCL_LIB_INSTALL_DIR='${libdir}/opencl'])
1760 AC_SUBST([OPENCL_LIB_INSTALL_DIR])
1763 dnl Gallium helper functions
1765 gallium_check_st() {
1766 if test "x$HAVE_ST_DRI" = xyes || test "x$HAVE_ST_XORG" = xyes ||
1767 test "x$HAVE_ST_XA" = xyes || test "x$HAVE_ST_XVMC" = xyes ||
1768 test "x$HAVE_ST_VDPAU" = xyes || test "x$HAVE_ST_VA" = xyes; then
1769 if test "x$have_libdrm" != xyes; then
1770 AC_MSG_ERROR([DRI or Xorg DDX requires libdrm >= $LIBDRM_REQUIRED])
1772 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS $1"
1774 if test "x$HAVE_ST_DRI" = xyes && test "x$2" != x; then
1775 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $2"
1777 if test "x$HAVE_ST_XORG" = xyes && test "x$3" != x; then
1778 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $3"
1780 if test "x$HAVE_ST_XA" = xyes && test "x$4" != x; then
1781 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $4"
1783 if test "x$HAVE_ST_XVMC" = xyes && test "x$5" != x; then
1784 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $5"
1786 if test "x$HAVE_ST_VDPAU" = xyes && test "x$6" != x; then
1787 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $6"
1789 if test "x$HAVE_ST_VA" = xyes && test "x$7" != x; then
1790 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $7"
1794 gallium_require_llvm() {
1795 if test "x$MESA_LLVM" = x0; then
1797 i*86|x86_64) AC_MSG_ERROR([LLVM is required to build $1 on x86 and x86_64]);;
1802 gallium_require_drm_loader() {
1803 if test "x$enable_gallium_loader" = xyes; then
1804 PKG_CHECK_MODULES([LIBUDEV], [libudev], [],
1805 AC_MSG_ERROR([Gallium drm loader requrires libudev]))
1806 if test "x$have_libdrm" != xyes; then
1807 AC_MSG_ERROR([Gallium drm loader requires libdrm >= $LIBDRM_REQUIRED])
1809 enable_gallium_drm_loader=yes
1814 dnl Duplicates in GALLIUM_DRIVERS_DIRS are removed by sorting it after this block
1815 if test "x$with_gallium_drivers" != x; then
1816 gallium_drivers=`IFS=', '; echo $with_gallium_drivers`
1817 for driver in $gallium_drivers; do
1820 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS svga softpipe"
1821 gallium_check_st "svga/drm" "dri-vmwgfx" "" "xa-vmwgfx"
1824 PKG_CHECK_MODULES([INTEL], [libdrm_intel >= $LIBDRM_INTEL_REQUIRED])
1825 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS i915 softpipe"
1826 if test "x$MESA_LLVM" = x1; then
1827 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS llvmpipe"
1829 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS i915/sw"
1830 gallium_check_st "i915/drm" "dri-i915" "xorg-i915"
1833 PKG_CHECK_MODULES([RADEON], [libdrm_radeon >= $LIBDRM_RADEON_REQUIRED])
1834 gallium_require_llvm "Gallium R300"
1835 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS r300"
1836 gallium_check_st "radeon/drm" "dri-r300" "xorg-r300" "" "xvmc-r300" "vdpau-r300" "va-r300"
1839 PKG_CHECK_MODULES([RADEON], [libdrm_radeon >= $LIBDRM_RADEON_REQUIRED])
1840 gallium_require_drm_loader
1841 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS r600"
1842 if test "x$enable_r600_llvm" = xyes -o "x$enable_opencl" = xyes; then
1843 if test "x$LLVM_VERSION" != "x3.1"; then
1844 AC_MSG_ERROR([LLVM 3.1 is required for the r600 llvm compiler.])
1846 NEED_RADEON_GALLIUM=yes;
1848 if test "x$enable_r600_llvm" = xyes; then
1849 USE_R600_LLVM_COMPILER=yes;
1851 if test "x$enable_opencl" = xyes -a "x$with_llvm_shared_libs" = xno; then
1852 LLVM_LIBS="${LLVM_LIBS} `$LLVM_CONFIG --libs bitreader asmparser`"
1854 gallium_check_st "radeon/drm" "dri-r600" "xorg-r600" "" "xvmc-r600" "vdpau-r600" "va-r600"
1857 PKG_CHECK_MODULES([RADEON], [libdrm_radeon >= $LIBDRM_RADEON_REQUIRED])
1858 gallium_require_drm_loader
1859 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS radeonsi"
1860 if test "x$LLVM_VERSION" != "x3.1"; then
1861 AC_MSG_ERROR([LLVM 3.1 is required to build the radeonsi driver.])
1863 NEED_RADEON_GALLIUM=yes;
1864 gallium_check_st "radeon/drm" "dri-radeonsi" "xorg-radeonsi" "" "" "vdpau-radeonsi" ""
1867 PKG_CHECK_MODULES([NOUVEAU], [libdrm_nouveau >= $LIBDRM_NOUVEAU_REQUIRED])
1868 gallium_require_drm_loader
1869 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS nouveau nv30 nv50 nvc0"
1870 gallium_check_st "nouveau/drm" "dri-nouveau" "xorg-nouveau" "" "xvmc-nouveau" "vdpau-nouveau"
1873 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS softpipe"
1874 if test "x$MESA_LLVM" = x1; then
1875 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS llvmpipe"
1878 if test "x$HAVE_ST_DRI" = xyes; then
1879 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS dri-swrast"
1881 if test "x$HAVE_ST_VDPAU" = xyes; then
1882 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS vdpau-softpipe"
1884 if test "x$HAVE_ST_XVMC" = xyes; then
1885 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS xvmc-softpipe"
1887 if test "x$HAVE_ST_VA" = xyes; then
1888 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS va-softpipe"
1890 if test "x$HAVE_ST_VDPAU" = xyes ||
1891 test "x$HAVE_ST_XVMC" = xyes ||
1892 test "x$HAVE_ST_VA" = xyes; then
1893 if test "x$HAVE_WINSYS_XLIB" != xyes; then
1894 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/xlib"
1899 AC_MSG_ERROR([Unknown Gallium driver: $driver])
1905 if test "x$enable_gallium_loader" = xyes; then
1906 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/null"
1907 GALLIUM_PIPE_LOADER_DEFINES="-DHAVE_PIPE_LOADER_SW"
1908 GALLIUM_PIPE_LOADER_LIBS="\$(TOP)/src/gallium/auxiliary/pipe-loader/libpipe_loader.a"
1909 GALLIUM_PIPE_LOADER_LIBS="$GALLIUM_PIPE_LOADER_LIBS \$(TOP)/src/gallium/winsys/sw/null/libws_null.a"
1911 if test "x$HAVE_WINSYS_XLIB" = xyes; then
1912 GALLIUM_PIPE_LOADER_DEFINES="$GALLIUM_PIPE_LOADER_DEFINES -DHAVE_PIPE_LOADER_XLIB"
1913 GALLIUM_PIPE_LOADER_LIBS="$GALLIUM_PIPE_LOADER_LIBS \$(TOP)/src/gallium/winsys/sw/xlib/libws_xlib.a"
1916 if test "x$enable_gallium_drm_loader" = xyes; then
1917 GALLIUM_PIPE_LOADER_DEFINES="$GALLIUM_PIPE_LOADER_DEFINES -DHAVE_PIPE_LOADER_DRM"
1918 PKG_CHECK_MODULES([GALLIUM_PIPE_LOADER_XCB], [xcb xcb-dri2],
1919 pipe_loader_have_xcb=yes, pipe_loader_have_xcb=no)
1920 if test "x$pipe_loader_have_xcb" = xyes; then
1921 GALLIUM_PIPE_LOADER_DEFINES="$GALLIUM_PIPE_LOADER_DEFINES -DPIPE_LOADER_HAVE_XCB"
1922 GALLIUM_PIPE_LOADER_LIBS="$GALLIUM_PIPE_LOADER_LIBS $GALLIUM_PIPE_LOADER_XCB_LIBS $LIBDRM_LIBS"
1926 AC_SUBST([GALLIUM_PIPE_LOADER_DEFINES])
1927 AC_SUBST([GALLIUM_PIPE_LOADER_LIBS])
1930 dnl Tell Automake which drivers to build
1931 for driver in $GALLIUM_DRIVERS_DIRS; do
1934 HAVE_GALAHAD_GALLIUM=yes;
1937 HAVE_IDENTITY_GALLIUM=yes;
1940 HAVE_NOOP_GALLIUM=yes;
1943 GALLIUM_MAKE_DIRS="$GALLIUM_MAKE_DIRS $driver"
1948 AM_CONDITIONAL(HAVE_GALAHAD_GALLIUM, test x$HAVE_GALAHAD_GALLIUM = xyes)
1949 AM_CONDITIONAL(HAVE_IDENTITY_GALLIUM, test x$HAVE_IDENTITY_GALLIUM = xyes)
1950 AM_CONDITIONAL(HAVE_NOOP_GALLIUM, test x$HAVE_NOOP_GALLIUM = xyes)
1951 AM_CONDITIONAL(NEED_RADEON_GALLIUM, test x$NEED_RADEON_GALLIUM = xyes)
1952 AM_CONDITIONAL(USE_R600_LLVM_COMPILER, test x$USE_R600_LLVM_COMPILER = xyes)
1953 AM_CONDITIONAL(HAVE_LOADER_GALLIUM, test x$enable_gallium_loader = xyes)
1954 AM_CONDITIONAL(HAVE_DRM_LOADER_GALLIUM, test x$enable_gallium_drm_loader = xyes)
1955 AM_CONDITIONAL(HAVE_GALLIUM_COMPUTE, test x$enable_opencl = xyes)
1956 AC_SUBST([GALLIUM_MAKE_DIRS])
1958 AM_CONDITIONAL(HAVE_X11_DRIVER, echo "$DRIVER_DIRS" | grep 'x11' >/dev/null 2>&1)
1960 AM_CONDITIONAL(HAVE_X86_ASM, echo "$DEFINES" | grep 'X86_ASM' >/dev/null 2>&1)
1961 AM_CONDITIONAL(HAVE_X86_64_ASM, echo "$DEFINES" | grep 'X86_64_ASM' >/dev/null 2>&1)
1962 AM_CONDITIONAL(HAVE_SPARC_ASM, echo "$DEFINES" | grep 'SPARC_ASM' >/dev/null 2>&1)
1964 dnl prepend CORE_DIRS to SRC_DIRS
1965 SRC_DIRS="$CORE_DIRS $SRC_DIRS"
1967 dnl Restore LDFLAGS and CPPFLAGS
1968 LDFLAGS="$_SAVE_LDFLAGS"
1969 CPPFLAGS="$_SAVE_CPPFLAGS"
1971 dnl Add user CFLAGS and CXXFLAGS
1972 CFLAGS="$CFLAGS $USER_CFLAGS"
1973 CXXFLAGS="$CXXFLAGS $USER_CXXFLAGS"
1975 dnl Substitute the config
1976 AC_CONFIG_FILES([configs/current
1979 src/egl/drivers/Makefile
1980 src/egl/drivers/dri2/Makefile
1981 src/egl/drivers/glx/Makefile
1982 src/egl/main/Makefile
1984 src/egl/wayland/Makefile
1985 src/egl/wayland/wayland-drm/Makefile
1986 src/egl/wayland/wayland-egl/Makefile
1987 src/egl/wayland/wayland-egl/wayland-egl.pc
1988 src/gallium/Makefile
1989 src/gallium/auxiliary/pipe-loader/Makefile
1990 src/gallium/drivers/Makefile
1991 src/gallium/drivers/r300/Makefile
1992 src/gallium/drivers/r600/Makefile
1993 src/gallium/state_trackers/clover/Makefile
1994 src/gallium/targets/opencl/Makefile
1998 src/glsl/glcpp/Makefile
1999 src/glsl/tests/Makefile
2001 src/glx/tests/Makefile
2004 src/mapi/es1api/Makefile
2005 src/mapi/es1api/glesv1_cm.pc
2006 src/mapi/es2api/Makefile
2007 src/mapi/es2api/glesv2.pc
2008 src/mapi/glapi/Makefile
2009 src/mapi/glapi/gen/Makefile
2010 src/mapi/glapi/tests/Makefile
2011 src/mapi/shared-glapi/Makefile
2012 src/mapi/shared-glapi/tests/Makefile
2013 src/mapi/vgapi/Makefile
2014 src/mapi/vgapi/vg.pc
2017 src/mesa/drivers/Makefile
2018 src/mesa/drivers/dri/dri.pc
2019 src/mesa/drivers/dri/common/Makefile
2020 src/mesa/drivers/dri/i915/Makefile
2021 src/mesa/drivers/dri/i965/Makefile
2022 src/mesa/drivers/dri/Makefile
2023 src/mesa/drivers/dri/nouveau/Makefile
2024 src/mesa/drivers/dri/r200/Makefile
2025 src/mesa/drivers/dri/radeon/Makefile
2026 src/mesa/drivers/dri/swrast/Makefile
2027 src/mesa/drivers/osmesa/Makefile
2028 src/mesa/drivers/osmesa/osmesa.pc
2029 src/mesa/drivers/x11/Makefile
2030 src/mesa/libdricore/Makefile
2031 src/mesa/main/tests/Makefile
2032 src/mesa/x86-64/Makefile
2033 src/mesa/x86/Makefile])
2035 dnl Sort the dirs alphabetically
2036 GALLIUM_TARGET_DIRS=`echo $GALLIUM_TARGET_DIRS|tr " " "\n"|sort -u|tr "\n" " "`
2037 GALLIUM_WINSYS_DIRS=`echo $GALLIUM_WINSYS_DIRS|tr " " "\n"|sort -u|tr "\n" " "`
2038 GALLIUM_DRIVERS_DIRS=`echo $GALLIUM_DRIVERS_DIRS|tr " " "\n"|sort -u|tr "\n" " "`
2039 GALLIUM_MAKE_DIRS=`echo $GALLIUM_MAKE_DIRS|tr " " "\n"|sort -u|tr "\n" " "`
2040 GALLIUM_STATE_TRACKERS_DIRS=`echo $GALLIUM_STATE_TRACKERS_DIRS|tr " " "\n"|sort -u|tr "\n" " "`
2045 dnl Output some configuration info for the user
2048 echo " prefix: $prefix"
2049 echo " exec_prefix: $exec_prefix"
2050 echo " libdir: $libdir"
2051 echo " includedir: $includedir"
2055 echo " OpenGL: $enable_opengl (ES1: $enable_gles1 ES2: $enable_gles2)"
2056 echo " OpenVG: $enable_openvg"
2060 if test "x$enable_osmesa" != xno; then
2061 echo " OSMesa: lib$OSMESA_LIB"
2066 if test "x$enable_dri" != xno; then
2067 # cleanup the drivers var
2068 dri_dirs=`echo $DRI_DIRS | $SED 's/^ *//;s/ */ /;s/ *$//'`
2069 if test "x$DRI_DIRS" = x; then
2070 echo " DRI drivers: no"
2072 echo " DRI drivers: $dri_dirs"
2074 echo " DRI driver dir: $DRI_DRIVER_INSTALL_DIR"
2077 case "x$enable_glx$enable_xlib_glx" in
2079 echo " GLX: Xlib-based"
2082 echo " GLX: DRI-based"
2085 echo " GLX: $enable_glx"
2091 echo " EGL: $enable_egl"
2092 if test "$enable_egl" = yes; then
2093 echo " EGL platforms: $EGL_PLATFORMS"
2096 if test "x$HAVE_EGL_DRIVER_GLX" != "x"; then
2097 egl_drivers="$egl_drivers builtin:egl_glx"
2099 if test "x$HAVE_EGL_DRIVER_DRI2" != "x"; then
2100 egl_drivers="$egl_drivers builtin:egl_dri2"
2103 if test "x$HAVE_ST_EGL" = xyes; then
2104 echo " EGL drivers: ${egl_drivers} egl_gallium"
2105 echo " EGL Gallium STs:$EGL_CLIENT_APIS"
2107 echo " EGL drivers: $egl_drivers"
2112 if test "x$MESA_LLVM" = x1; then
2114 echo " llvm-config: $LLVM_CONFIG"
2115 echo " llvm-version: $LLVM_VERSION"
2121 if echo "$SRC_DIRS" | grep 'gallium' >/dev/null 2>&1; then
2122 echo " Gallium: yes"
2123 echo " Gallium dirs: $GALLIUM_DIRS"
2124 echo " Target dirs: $GALLIUM_TARGET_DIRS"
2125 echo " Winsys dirs: $GALLIUM_WINSYS_DIRS"
2126 echo " Driver dirs: $GALLIUM_DRIVERS_DIRS"
2127 echo " Trackers dirs: $GALLIUM_STATE_TRACKERS_DIRS"
2135 echo " Shared libs: $enable_shared"
2136 echo " Static libs: $enable_static"
2137 echo " Shared-glapi: $enable_shared_glapi"
2139 dnl Compiler options
2140 # cleanup the CFLAGS/CXXFLAGS/DEFINES vars
2141 cflags=`echo $CFLAGS $PIC_FLAGS | \
2142 $SED 's/^ *//;s/ */ /;s/ *$//'`
2143 cxxflags=`echo $CXXFLAGS $PIC_FLAGS | \
2144 $SED 's/^ *//;s/ */ /;s/ *$//'`
2145 defines=`echo $DEFINES | $SED 's/^ *//;s/ */ /;s/ *$//'`
2147 echo " CFLAGS: $cflags"
2148 echo " CXXFLAGS: $cxxflags"
2149 echo " Macros: $defines"
2151 echo " PYTHON2: $PYTHON2"
2154 echo " Run '${MAKE-make}' to build Mesa"