1 dnl Process this file with autoconf to create configure.
5 dnl Versioning - scrape the version from configs/default
6 m4_define([mesa_version],
7 [m4_esyscmd([${MAKE-make} -s -f bin/version.mk version | tr -d '\n' | tr -d '\r'])])
8 m4_ifval(mesa_version,,
9 [m4_fatal([Failed to get the Mesa version from `make -f bin/version.mk version`])])
11 dnl Tell the user about autoconf.html in the --help output
12 m4_divert_once([HELP_END], [
13 See docs/autoconf.html for more details on the options for Mesa.])
15 AC_INIT([Mesa],[mesa_version],
16 [https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa])
17 AC_CONFIG_AUX_DIR([bin])
19 AM_INIT_AUTOMAKE([foreign -Wall])
21 dnl http://people.gnome.org/~walters/docs/build-api.txt
22 dnl We don't support srcdir != builddir.
23 echo \#buildapi-variable-no-builddir >/dev/null
25 # Support silent build rules, requires at least automake-1.11. Disable
26 # by either passing --disable-silent-rules to configure or passing V=1
28 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
31 LT_INIT([disable-static])
33 dnl Save user CFLAGS and CXXFLAGS so one can override the default ones
35 USER_CXXFLAGS="$CXXFLAGS"
37 dnl Versions for external dependencies
38 LIBDRM_REQUIRED=2.4.24
39 LIBDRM_RADEON_REQUIRED=2.4.31
40 LIBDRM_INTEL_REQUIRED=2.4.32
41 LIBDRM_NVVIEUX_REQUIRED=2.4.33
42 LIBDRM_NOUVEAU_REQUIRED=2.4.33
43 DRI2PROTO_REQUIRED=2.6
44 GLPROTO_REQUIRED=1.4.14
45 LIBDRM_XORG_REQUIRED=2.4.24
46 LIBKMS_XORG_REQUIRED=1.0.0
53 AC_CHECK_PROGS([MAKE], [gmake make])
54 AC_CHECK_PROGS([PYTHON2], [python2 python])
57 AC_PATH_PROG([MKDEP], [makedepend])
59 if test "x$MKDEP" = "x"; then
60 AC_MSG_ERROR([makedepend is required to build Mesa])
64 AC_PATH_PROG([YACC_INST], $YACC)
65 if test ! -f "$srcdir/src/glsl/glcpp/glcpp-parse.y"; then
66 if test -z "$YACC_INST"; then
67 AC_MSG_ERROR([yacc not found - unable to compile glcpp-parse.y])
72 AC_PATH_PROG([PERL], [perl])
74 dnl Our fallback install-sh is a symlink to minstall. Use the existing
75 dnl configuration in that case.
77 test "x$INSTALL" = "x$ac_install_sh" && INSTALL='$(MINSTALL)'
79 dnl We need a POSIX shell for parts of the build. Assume we have one
83 # Solaris /bin/sh is too old/non-POSIX compliant
84 AC_PATH_PROGS(POSIX_SHELL, [ksh93 ksh sh])
89 dnl clang is mostly GCC-compatible, but its version is much lower,
90 dnl so we have to check for it.
91 AC_MSG_CHECKING([if compiling with clang])
94 [AC_LANG_PROGRAM([], [[
99 [acv_mesa_CLANG=yes], [acv_mesa_CLANG=no])
101 AC_MSG_RESULT([$acv_mesa_CLANG])
103 dnl If we're using GCC, make sure that it is at least version 3.3.0. Older
104 dnl versions are explictly not supported.
105 if test "x$GCC" = xyes -a "x$acv_mesa_CLANG" = xno; then
106 AC_MSG_CHECKING([whether gcc version is sufficient])
110 GCC_VERSION=`$CC -dumpversion`
111 if test $? -eq 0; then
112 major=`echo $GCC_VERSION | cut -d. -f1`
113 minor=`echo $GCC_VERSION | cut -d. -f2`
116 if test $major -lt 3 -o $major -eq 3 -a $minor -lt 3 ; then
118 AC_MSG_ERROR([If using GCC, version 3.3.0 or later is required.])
125 MKDEP_OPTIONS=-fdepend
126 dnl Ask gcc where it's keeping its secret headers
127 if test "x$GCC" = xyes; then
128 for dir in include include-fixed; do
129 GCC_INCLUDES=`$CC -print-file-name=$dir`
130 if test "x$GCC_INCLUDES" != x && \
131 test "$GCC_INCLUDES" != "$dir" && \
132 test -d "$GCC_INCLUDES"; then
133 MKDEP_OPTIONS="$MKDEP_OPTIONS -I$GCC_INCLUDES"
137 AC_SUBST([MKDEP_OPTIONS])
139 dnl Make sure the pkg-config macros are defined
140 m4_ifndef([PKG_PROG_PKG_CONFIG],
141 [m4_fatal([Could not locate the pkg-config autoconf macros.
142 These are usually located in /usr/share/aclocal/pkg.m4. If your macros
143 are in a different location, try setting the environment variable
144 ACLOCAL="aclocal -I/other/macro/dir" before running autoreconf.])])
145 PKG_PROG_PKG_CONFIG()
147 dnl LIB_DIR - library basename
148 LIB_DIR=`echo $libdir | $SED 's%.*/%%'`
151 dnl Cache LDFLAGS so we can add EXTRA_LIB_PATH and restore it later
152 _SAVE_LDFLAGS="$LDFLAGS"
153 AC_ARG_VAR([EXTRA_LIB_PATH],[Extra -L paths for the linker])
154 AC_SUBST([EXTRA_LIB_PATH])
156 dnl Cache CPPFLAGS so we can add *_INCLUDES and restore it later
157 _SAVE_CPPFLAGS="$CPPFLAGS"
158 AC_ARG_VAR([X11_INCLUDES],[Extra -I paths for X11 headers])
159 AC_SUBST([X11_INCLUDES])
166 DEFINES="$DEFINES -D_GNU_SOURCE -DPTHREADS"
169 DEFINES="$DEFINES -DPTHREADS -DSVR4"
172 DEFINES="$DEFINES -DPTHREADS"
176 dnl Add flags for gcc and g++
177 if test "x$GCC" = xyes; then
178 CFLAGS="$CFLAGS -Wall -std=c99"
180 # Enable -Werror=implicit-function-declaration and
181 # -Werror=missing-prototypes, if available, or otherwise, just
182 # -Wmissing-prototypes. This is particularly useful to avoid
183 # generating a loadable driver module that has undefined symbols.
184 save_CFLAGS="$CFLAGS"
185 AC_MSG_CHECKING([whether $CC supports -Werror=missing-prototypes])
186 CFLAGS="$CFLAGS -Werror=implicit-function-declaration"
187 CFLAGS="$CFLAGS -Werror=missing-prototypes"
188 AC_LINK_IFELSE([AC_LANG_PROGRAM()],
189 AC_MSG_RESULT([yes]),
190 [CFLAGS="$save_CFLAGS -Wmissing-prototypes";
191 AC_MSG_RESULT([no])]);
193 # Enable -fvisibility=hidden if using a gcc that supports it
194 save_CFLAGS="$CFLAGS"
195 AC_MSG_CHECKING([whether $CC supports -fvisibility=hidden])
196 VISIBILITY_CFLAGS="-fvisibility=hidden"
197 CFLAGS="$CFLAGS $VISIBILITY_CFLAGS"
198 AC_LINK_IFELSE([AC_LANG_PROGRAM()], AC_MSG_RESULT([yes]),
199 [VISIBILITY_CFLAGS=""; AC_MSG_RESULT([no])]);
201 # Restore CFLAGS; VISIBILITY_CFLAGS are added to it where needed.
204 # Work around aliasing bugs - developers should comment this out
205 CFLAGS="$CFLAGS -fno-strict-aliasing"
207 # gcc's builtin memcmp is slower than glibc's
208 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43052
209 CFLAGS="$CFLAGS -fno-builtin-memcmp"
211 if test "x$GXX" = xyes; then
212 CXXFLAGS="$CXXFLAGS -Wall"
214 # Enable -fvisibility=hidden if using a gcc that supports it
215 save_CXXFLAGS="$CXXFLAGS"
216 AC_MSG_CHECKING([whether $CXX supports -fvisibility=hidden])
217 VISIBILITY_CXXFLAGS="-fvisibility=hidden"
218 CXXFLAGS="$CXXFLAGS $VISIBILITY_CXXFLAGS"
220 AC_LINK_IFELSE([AC_LANG_PROGRAM()], AC_MSG_RESULT([yes]),
221 [VISIBILITY_CXXFLAGS="" ; AC_MSG_RESULT([no])]);
224 # Restore CXXFLAGS; VISIBILITY_CXXFLAGS are added to it where needed.
225 CXXFLAGS=$save_CXXFLAGS
227 # Work around aliasing bugs - developers should comment this out
228 CXXFLAGS="$CXXFLAGS -fno-strict-aliasing"
230 # gcc's builtin memcmp is slower than glibc's
231 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43052
232 CXXFLAGS="$CXXFLAGS -fno-builtin-memcmp"
235 dnl even if the compiler appears to support it, using visibility attributes isn't
236 dnl going to do anything useful currently on cygwin apart from emit lots of warnings
240 VISIBILITY_CXXFLAGS=""
244 AC_SUBST([VISIBILITY_CFLAGS])
245 AC_SUBST([VISIBILITY_CXXFLAGS])
247 dnl These should be unnecessary, but let the user set them if they want
248 AC_ARG_VAR([OPT_FLAGS], [Additional optimization flags for the compiler.
249 Default is to use CFLAGS.])
250 AC_ARG_VAR([ARCH_FLAGS], [Additional architecture specific flags for the
251 compiler. Default is to use CFLAGS.])
252 AC_SUBST([OPT_FLAGS])
253 AC_SUBST([ARCH_FLAGS])
256 dnl Hacks to enable 32 or 64 bit build
258 AC_ARG_ENABLE([32-bit],
259 [AS_HELP_STRING([--enable-32-bit],
260 [build 32-bit libraries @<:@default=auto@:>@])],
261 [enable_32bit="$enableval"],
264 if test "x$enable_32bit" = xyes; then
265 if test "x$GCC" = xyes; then
266 CFLAGS="$CFLAGS -m32"
267 ARCH_FLAGS="$ARCH_FLAGS -m32"
269 if test "x$GXX" = xyes; then
270 CXXFLAGS="$CXXFLAGS -m32"
273 AC_ARG_ENABLE([64-bit],
274 [AS_HELP_STRING([--enable-64-bit],
275 [build 64-bit libraries @<:@default=auto@:>@])],
276 [enable_64bit="$enableval"],
279 if test "x$enable_64bit" = xyes; then
280 if test "x$GCC" = xyes; then
281 CFLAGS="$CFLAGS -m64"
283 if test "x$GXX" = xyes; then
284 CXXFLAGS="$CXXFLAGS -m64"
288 dnl Can't have static and shared libraries, default to static if user
289 dnl explicitly requested. If both disabled, set to static since shared
290 dnl was explicitly requested.
291 case "x$enable_static$enable_shared" in
293 AC_MSG_WARN([Can't build static and shared libraries, disabling shared])
297 AC_MSG_WARN([Can't disable both static and shared libraries, enabling static])
305 AC_ARG_VAR([MKLIB_OPTIONS],[Options for the Mesa library script, mklib])
306 if test "$enable_static" = yes; then
307 MKLIB_OPTIONS="$MKLIB_OPTIONS -static"
309 AC_SUBST([MKLIB_OPTIONS])
312 dnl other compiler options
314 AC_ARG_ENABLE([debug],
315 [AS_HELP_STRING([--enable-debug],
316 [use debug compiler flags and macros @<:@default=disabled@:>@])],
317 [enable_debug="$enableval"],
320 if test "x$enable_debug" = xyes; then
321 DEFINES="$DEFINES -DDEBUG"
322 if test "x$GCC" = xyes; then
325 if test "x$GXX" = xyes; then
326 CXXFLAGS="$CXXFLAGS -g"
333 LIB_PREFIX_GLOB='lib'
334 LIB_VERSION_SEPARATOR='.'
335 if test "$enable_static" = yes; then
340 LIB_EXTENSION='dylib' ;;
342 dnl prefix can be 'cyg' or 'lib'
343 LIB_PREFIX_GLOB='???'
344 LIB_VERSION_SEPARATOR='-'
345 LIB_EXTENSION='dll' ;;
349 LIB_EXTENSION='so' ;;
354 dnl Mangled Mesa support
356 AC_ARG_ENABLE([mangling],
357 [AS_HELP_STRING([--enable-mangling],
358 [enable mangled symbols and library name @<:@default=disabled@:>@])],
359 [enable_mangling="${enableval}"],
365 if test "x${enable_mangling}" = "xyes" ; then
366 DEFINES="${DEFINES} -DUSE_MGL_NAMESPACE"
369 OSMESA_LIB="MangledOSMesa"
373 AC_SUBST([OSMESA_LIB])
374 AM_CONDITIONAL(HAVE_MANGLED_GL, test $GL_LIB = MangledGL)
377 dnl potentially-infringing-but-nobody-knows-for-sure stuff
379 AC_ARG_ENABLE([texture-float],
380 [AS_HELP_STRING([--enable-texture-float],
381 [enable floating-point textures and renderbuffers @<:@default=disabled@:>@])],
382 [enable_texture_float="$enableval"],
383 [enable_texture_float=no]
385 if test "x$enable_texture_float" = xyes; then
386 AC_MSG_WARN([Floating-point textures enabled.])
387 AC_MSG_WARN([Please consult docs/patents.txt with your lawyer before building Mesa.])
388 DEFINES="$DEFINES -DTEXTURE_FLOAT_ENABLED"
391 GL_LIB_NAME='lib$(GL_LIB).'${LIB_EXTENSION}
392 GLU_LIB_NAME='lib$(GLU_LIB).'${LIB_EXTENSION}
393 OSMESA_LIB_NAME='lib$(OSMESA_LIB).'${LIB_EXTENSION}
394 EGL_LIB_NAME='lib$(EGL_LIB).'${LIB_EXTENSION}
395 GLESv1_CM_LIB_NAME='lib$(GLESv1_CM_LIB).'${LIB_EXTENSION}
396 GLESv2_LIB_NAME='lib$(GLESv2_LIB).'${LIB_EXTENSION}
397 VG_LIB_NAME='lib$(VG_LIB).'${LIB_EXTENSION}
398 GLAPI_LIB_NAME='lib$(GLAPI_LIB).'${LIB_EXTENSION}
400 GL_LIB_GLOB=${LIB_PREFIX_GLOB}'$(GL_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
401 GLU_LIB_GLOB=${LIB_PREFIX_GLOB}'$(GLU_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
402 OSMESA_LIB_GLOB=${LIB_PREFIX_GLOB}'$(OSMESA_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
403 EGL_LIB_GLOB=${LIB_PREFIX_GLOB}'$(EGL_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
404 EGL_LIB_GLOB=${LIB_PREFIX_GLOB}'$(EGL_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
405 GLESv1_CM_LIB_GLOB=${LIB_PREFIX_GLOB}'$(GLESv1_CM_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
406 GLESv2_LIB_GLOB=${LIB_PREFIX_GLOB}'$(GLESv2_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
407 VG_LIB_GLOB=${LIB_PREFIX_GLOB}'$(VG_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
408 GLAPI_LIB_GLOB=${LIB_PREFIX_GLOB}'$(GLAPI_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
410 AC_SUBST([GL_LIB_NAME])
411 AC_SUBST([GLU_LIB_NAME])
412 AC_SUBST([OSMESA_LIB_NAME])
413 AC_SUBST([EGL_LIB_NAME])
414 AC_SUBST([GLESv1_CM_LIB_NAME])
415 AC_SUBST([GLESv2_LIB_NAME])
416 AC_SUBST([VG_LIB_NAME])
417 AC_SUBST([GLAPI_LIB_NAME])
419 AC_SUBST([GL_LIB_GLOB])
420 AC_SUBST([GLU_LIB_GLOB])
421 AC_SUBST([OSMESA_LIB_GLOB])
422 AC_SUBST([EGL_LIB_GLOB])
423 AC_SUBST([GLESv1_CM_LIB_GLOB])
424 AC_SUBST([GLESv2_LIB_GLOB])
425 AC_SUBST([VG_LIB_GLOB])
426 AC_SUBST([GLAPI_LIB_GLOB])
429 dnl Arch/platform-specific settings
432 [AS_HELP_STRING([--disable-asm],
433 [disable assembly usage @<:@default=enabled on supported plaforms@:>@])],
434 [enable_asm="$enableval"],
441 AC_MSG_CHECKING([whether to enable assembly])
442 test "x$enable_asm" = xno && AC_MSG_RESULT([no])
443 # disable if cross compiling on x86/x86_64 since we must run gen_matypes
444 if test "x$enable_asm" = xyes && test "x$cross_compiling" = xyes; then
448 AC_MSG_RESULT([no, cross compiling])
452 # check for supported arches
453 if test "x$enable_asm" = xyes; then
457 linux* | *freebsd* | dragonfly* | *netbsd*)
458 test "x$enable_64bit" = xyes && asm_arch=x86_64 || asm_arch=x86
464 linux* | *freebsd* | dragonfly* | *netbsd*)
465 test "x$enable_32bit" = xyes && asm_arch=x86 || asm_arch=x86_64
487 ASM_FLAGS="-DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_3DNOW_ASM -DUSE_SSE_ASM"
488 MESA_ASM_SOURCES='$(X86_SOURCES)'
489 GLAPI_ASM_SOURCES='$(X86_API)'
490 AC_MSG_RESULT([yes, x86])
493 ASM_FLAGS="-DUSE_X86_64_ASM"
494 MESA_ASM_SOURCES='$(X86-64_SOURCES)'
495 GLAPI_ASM_SOURCES='$(X86-64_API)'
496 AC_MSG_RESULT([yes, x86_64])
499 ASM_FLAGS="-DUSE_SPARC_ASM"
500 MESA_ASM_SOURCES='$(SPARC_SOURCES)'
501 GLAPI_ASM_SOURCES='$(SPARC_API)'
502 AC_MSG_RESULT([yes, sparc])
505 AC_MSG_RESULT([no, platform not supported])
509 AC_SUBST([ASM_FLAGS])
510 AC_SUBST([MESA_ASM_SOURCES])
511 AC_SUBST([GLAPI_ASM_SOURCES])
516 dnl Check to see if dlopen is in default libraries (like Solaris, which
517 dnl has it in libc), or if libdl is needed to get it.
518 AC_CHECK_FUNC([dlopen], [],
519 [AC_CHECK_LIB([dl], [dlopen], [DLOPEN_LIBS="-ldl"])])
520 AC_SUBST([DLOPEN_LIBS])
522 dnl See if posix_memalign is available
523 AC_CHECK_FUNC([posix_memalign], [DEFINES="$DEFINES -DHAVE_POSIX_MEMALIGN"])
525 dnl SELinux awareness.
526 AC_ARG_ENABLE([selinux],
527 [AS_HELP_STRING([--enable-selinux],
528 [Build SELinux-aware Mesa @<:@default=disabled@:>@])],
529 [MESA_SELINUX="$enableval"],
531 if test "x$enable_selinux" = "xyes"; then
532 AC_CHECK_HEADER([selinux/selinux.h],[],
533 [AC_MSG_ERROR([SELinux headers not found])])
534 AC_CHECK_LIB([selinux],[is_selinux_enabled],[],
535 [AC_MSG_ERROR([SELinux library not found])])
536 SELINUX_LIBS="-lselinux"
537 DEFINES="$DEFINES -DMESA_SELINUX"
541 AC_ARG_ENABLE([opengl],
542 [AS_HELP_STRING([--disable-opengl],
543 [disable support for standard OpenGL API @<:@default=no@:>@])],
544 [enable_opengl="$enableval"],
546 AC_ARG_ENABLE([gles1],
547 [AS_HELP_STRING([--enable-gles1],
548 [enable support for OpenGL ES 1.x API @<:@default=no@:>@])],
549 [enable_gles1="$enableval"],
551 AC_ARG_ENABLE([gles2],
552 [AS_HELP_STRING([--enable-gles2],
553 [enable support for OpenGL ES 2.x API @<:@default=no@:>@])],
554 [enable_gles2="$enableval"],
556 AC_ARG_ENABLE([openvg],
557 [AS_HELP_STRING([--enable-openvg],
558 [enable support for OpenVG API @<:@default=no@:>@])],
559 [enable_openvg="$enableval"],
563 [AS_HELP_STRING([--enable-dri],
564 [enable DRI modules @<:@default=auto@:>@])],
565 [enable_dri="$enableval"],
568 [AS_HELP_STRING([--enable-glx],
569 [enable GLX library @<:@default=auto@:>@])],
570 [enable_glx="$enableval"],
572 AC_ARG_ENABLE([osmesa],
573 [AS_HELP_STRING([--enable-osmesa],
574 [enable OSMesa library @<:@default=auto@:>@])],
575 [enable_osmesa="$enableval"],
576 [enable_osmesa=auto])
578 [AS_HELP_STRING([--disable-egl],
579 [disable EGL library @<:@default=enabled@:>@])],
580 [enable_egl="$enableval"],
583 AC_ARG_ENABLE([xorg],
584 [AS_HELP_STRING([--enable-xorg],
585 [enable support for X.Org DDX API @<:@default=no@:>@])],
586 [enable_xorg="$enableval"],
589 [AS_HELP_STRING([--enable-xa],
590 [enable build of the XA X Acceleration API @<:@default=no@:>@])],
591 [enable_xa="$enableval"],
593 AC_ARG_ENABLE([d3d1x],
594 [AS_HELP_STRING([--enable-d3d1x],
595 [enable support for Direct3D 10 & 11 low-level API @<:@default=no@:>@])],
596 [enable_d3d1x="$enableval"],
599 [AS_HELP_STRING([--enable-gbm],
600 [enable gbm library @<:@default=auto@:>@])],
601 [enable_gbm="$enableval"],
604 AC_ARG_ENABLE([xvmc],
605 [AS_HELP_STRING([--enable-xvmc],
606 [enable xvmc library @<:@default=auto@:>@])],
607 [enable_xvmc="$enableval"],
609 AC_ARG_ENABLE([vdpau],
610 [AS_HELP_STRING([--enable-vdpau],
611 [enable vdpau library @<:@default=auto@:>@])],
612 [enable_vdpau="$enableval"],
615 [AS_HELP_STRING([--enable-va],
616 [enable va library @<:@default=auto@:>@])],
617 [enable_va="$enableval"],
620 AC_ARG_ENABLE([xlib_glx],
621 [AS_HELP_STRING([--enable-xlib-glx],
622 [make GLX library Xlib-based instead of DRI-based @<:@default=disable@:>@])],
623 [enable_xlib_glx="$enableval"],
624 [enable_xlib_glx=auto])
625 AC_ARG_ENABLE([gallium_egl],
626 [AS_HELP_STRING([--enable-gallium-egl],
627 [enable optional EGL state tracker (not required
628 for EGL support in Gallium with OpenGL and OpenGL ES)
629 @<:@default=disable@:>@])],
630 [enable_gallium_egl="$enableval"],
631 [enable_gallium_egl=no])
632 AC_ARG_ENABLE([gallium_gbm],
633 [AS_HELP_STRING([--enable-gallium-gbm],
634 [enable optional gbm state tracker (not required for
635 gbm support in Gallium)
636 @<:@default=auto@:>@])],
637 [enable_gallium_gbm="$enableval"],
638 [enable_gallium_gbm=auto])
640 AC_ARG_ENABLE([r600-llvm-compiler],
641 [AS_HELP_STRING([--enable-r600-llvm-compilerl],
642 [Enable experimental LLVM backend for graphics shaders @<:default=disable@:>@])],
643 [enable_r600_llvm="$enableval"],
644 [enable_r600_llvm=no])
646 AC_ARG_ENABLE([gallium_tests],
647 [AS_HELP_STRING([--enable-gallium-tests],
648 [Enable optional Gallium tests) @<:@default=disable@:>@])],
649 [enable_gallium_tests="$enableval"],
650 [enable_gallium_tests=no])
652 # Option for Gallium drivers
653 GALLIUM_DRIVERS_DEFAULT="r300,r600,svga,swrast"
655 AC_ARG_WITH([gallium-drivers],
656 [AS_HELP_STRING([--with-gallium-drivers@<:@=DIRS...@:>@],
657 [comma delimited Gallium drivers list, e.g.
658 "i915,nouveau,r300,r600,svga,swrast"
659 @<:@default=r300,r600,swrast@:>@])],
660 [with_gallium_drivers="$withval"],
661 [with_gallium_drivers="$GALLIUM_DRIVERS_DEFAULT"])
663 # Doing '--without-gallium-drivers' will set this variable to 'no'. Clear it
664 # here so that the script doesn't choke on an unknown driver name later.
665 case "$with_gallium_drivers" in
666 yes) with_gallium_drivers="$GALLIUM_DRIVERS_DEFAULT" ;;
667 no) with_gallium_drivers='' ;;
670 if test "x$enable_opengl" = xno -a \
671 "x$enable_gles1" = xno -a \
672 "x$enable_gles2" = xno -a \
673 "x$enable_openvg" = xno -a \
674 "x$enable_xorg" = xno -a \
675 "x$enable_xa" = xno -a \
676 "x$enable_d3d1x" = xno -a \
677 "x$enable_xvmc" = xno -a \
678 "x$enable_vdpau" = xno -a \
679 "x$enable_va" = xno; then
680 AC_MSG_ERROR([at least one API should be enabled])
684 if test "x$enable_opengl" = xno; then
685 API_DEFINES="$API_DEFINES -DFEATURE_GL=0"
687 API_DEFINES="$API_DEFINES -DFEATURE_GL=1"
689 if test "x$enable_gles1" = xyes; then
690 API_DEFINES="$API_DEFINES -DFEATURE_ES1=1"
692 if test "x$enable_gles2" = xyes; then
693 API_DEFINES="$API_DEFINES -DFEATURE_ES2=1"
695 AC_SUBST([API_DEFINES])
697 AC_ARG_ENABLE([shared-glapi],
698 [AS_HELP_STRING([--enable-shared-glapi],
699 [EXPERIMENTAL. Enable shared glapi for OpenGL @<:@default=no@:>@])],
700 [enable_shared_glapi="$enableval"],
701 [enable_shared_glapi=no])
704 if test "x$enable_shared_glapi" = xyes; then
706 # libGL will use libglapi for function lookups (IN_DRI_DRIVER means to use
708 DEFINES="$DEFINES -DIN_DRI_DRIVER"
709 SRC_DIRS="$SRC_DIRS mapi/shared-glapi"
711 AC_SUBST([SHARED_GLAPI])
712 AM_CONDITIONAL(HAVE_SHARED_GLAPI, test $SHARED_GLAPI = 1)
715 dnl Driver configuration. Options are xlib, dri and osmesa right now.
716 dnl More later: fbdev, ...
718 default_driver="xlib"
723 i*86|x86_64|powerpc*|sparc*|ia64*) default_driver="dri";;
726 *freebsd* | dragonfly* | *netbsd*)
728 i*86|x86_64|powerpc*|sparc*) default_driver="dri";;
733 if test "x$enable_opengl" = xno; then
737 AC_ARG_WITH([driver],
738 [AS_HELP_STRING([--with-driver=DRIVER], [DEPRECATED])],
739 [mesa_driver="$withval"],
741 dnl Check for valid option
742 case "x$mesa_driver" in
743 xxlib|xdri|xosmesa|xno)
744 if test "x$enable_dri" != xauto -o \
745 "x$enable_glx" != xauto -o \
746 "x$enable_osmesa" != xauto -o \
747 "x$enable_xlib_glx" != xauto; then
748 AC_MSG_ERROR([--with-driver=$mesa_driver is deprecated])
752 mesa_driver="$default_driver"
755 AC_MSG_ERROR([Driver '$mesa_driver' is not a valid option])
759 # map $mesa_driver to APIs
760 if test "x$enable_dri" = xauto; then
761 case "x$mesa_driver" in
762 xdri) enable_dri=yes ;;
767 if test "x$enable_glx" = xauto; then
768 case "x$mesa_driver" in
769 xdri|xxlib) enable_glx=yes ;;
774 if test "x$enable_osmesa" = xauto; then
775 case "x$mesa_driver" in
776 xxlib|xosmesa) enable_osmesa=yes ;;
777 *) enable_osmesa=no ;;
781 if test "x$enable_xlib_glx" = xauto; then
782 case "x$mesa_driver" in
783 xxlib) enable_xlib_glx=yes ;;
784 *) enable_xlib_glx=no ;;
788 if test "x$enable_glx" = xno; then
792 AM_CONDITIONAL(HAVE_DRI, test x"$enable_dri" = xyes)
795 dnl Driver specific build directories
798 dnl this variable will be prepended to SRC_DIRS and is not exported
803 GALLIUM_DIRS="auxiliary drivers state_trackers"
804 GALLIUM_TARGET_DIRS=""
805 GALLIUM_WINSYS_DIRS="sw"
806 GALLIUM_DRIVERS_DIRS="galahad trace rbug noop identity"
807 GALLIUM_STATE_TRACKERS_DIRS=""
809 # build shared-glapi if enabled for OpenGL or if OpenGL ES is enabled
810 case "x$enable_shared_glapi$enable_gles1$enable_gles2" in
812 CORE_DIRS="$CORE_DIRS mapi/shared-glapi"
816 # build glapi if OpenGL is enabled
817 if test "x$enable_opengl" = xyes; then
818 CORE_DIRS="$CORE_DIRS mapi/glapi"
821 # build es1api if OpenGL ES 1.x is enabled
822 if test "x$enable_gles1" = xyes; then
823 CORE_DIRS="$CORE_DIRS mapi/es1api"
826 # build es2api if OpenGL ES 2.x is enabled
827 if test "x$enable_gles2" = xyes; then
828 CORE_DIRS="$CORE_DIRS mapi/es2api"
831 # build glsl and mesa if OpenGL or OpenGL ES is enabled
832 case "x$enable_opengl$enable_gles1$enable_gles2" in
834 CORE_DIRS="$CORE_DIRS glsl mesa"
838 case "x$enable_glx$enable_xlib_glx" in
840 DRIVER_DIRS="$DRIVER_DIRS x11"
841 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/xlib"
842 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS libgl-xlib"
843 GALLIUM_STATE_TRACKERS_DIRS="glx $GALLIUM_STATE_TRACKERS_DIRS"
844 HAVE_WINSYS_XLIB="yes"
848 SRC_DIRS="$SRC_DIRS glx"
852 if test "x$enable_dri" = xyes; then
853 DRIVER_DIRS="$DRIVER_DIRS dri"
855 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/dri"
856 GALLIUM_STATE_TRACKERS_DIRS="dri $GALLIUM_STATE_TRACKERS_DIRS"
860 if test "x$enable_osmesa" = xyes; then
861 # the empty space matters for osmesa... (see src/mesa/Makefile)
862 if test -n "$DRIVER_DIRS"; then
863 DRIVER_DIRS="$DRIVER_DIRS osmesa"
871 AC_SUBST([DRIVER_DIRS])
872 AC_SUBST([GALLIUM_DIRS])
873 AC_SUBST([GALLIUM_TARGET_DIRS])
874 AC_SUBST([GALLIUM_WINSYS_DIRS])
875 AC_SUBST([GALLIUM_DRIVERS_DIRS])
876 AC_SUBST([GALLIUM_STATE_TRACKERS_DIRS])
877 AC_SUBST([MESA_LLVM])
880 PKG_CHECK_MODULES([LIBDRM], [libdrm >= $LIBDRM_REQUIRED],
881 [have_libdrm=yes], [have_libdrm=no])
883 if test "x$enable_dri" = xyes; then
884 # DRI must be shared, I think
885 if test "$enable_static" = yes; then
886 AC_MSG_ERROR([Can't use static libraries for DRI drivers])
889 # not a hard requirement as swrast does not depend on it
890 if test "x$have_libdrm" = xyes; then
891 DRI_PC_REQ_PRIV="libdrm >= $LIBDRM_REQUIRED"
896 dnl Find out if X is available. The variable have_x is set if libX11 is
897 dnl found to mimic AC_PATH_XTRA.
899 if test -n "$PKG_CONFIG"; then
900 AC_MSG_CHECKING([pkg-config files for X11 are available])
901 PKG_CHECK_EXISTS([x11],[
907 AC_MSG_RESULT([$x11_pkgconfig])
911 dnl Use the autoconf macro if no pkg-config files
912 if test "$x11_pkgconfig" = yes; then
913 PKG_CHECK_MODULES([X11], [x11])
916 test -z "$X11_CFLAGS" && X11_CFLAGS="$X_CFLAGS"
917 test -z "$X11_LIBS" && X11_LIBS="$X_LIBS -lX11"
918 AC_SUBST([X11_CFLAGS])
922 dnl Try to tell the user that the --x-* options are only used when
923 dnl pkg-config is not available. This must be right after AC_PATH_XTRA.
924 m4_divert_once([HELP_BEGIN],
925 [These options are only used when the X libraries cannot be found by the
926 pkg-config utility.])
928 dnl We need X for xlib and dri, so bomb now if it's not found
929 if test "x$enable_glx" = xyes -a "x$no_x" = xyes; then
930 AC_MSG_ERROR([X11 development libraries needed for GLX])
933 if test "x$enable_glx" = xyes; then
934 DEFINES="$DEFINES -DUSE_XCB"
937 dnl Direct rendering or just indirect rendering
940 dnl Disable by default on GNU/Hurd
941 driglx_direct_default="no"
944 dnl Disable by default on cygwin
945 driglx_direct_default="no"
948 driglx_direct_default="yes"
951 AC_ARG_ENABLE([driglx-direct],
952 [AS_HELP_STRING([--disable-driglx-direct],
953 [enable direct rendering in GLX and EGL for DRI \
954 @<:@default=auto@:>@])],
955 [driglx_direct="$enableval"],
956 [driglx_direct="$driglx_direct_default"])
959 dnl libGL configuration per driver
961 case "x$enable_glx$enable_xlib_glx" in
964 if test "$x11_pkgconfig" = yes; then
965 PKG_CHECK_MODULES([XLIBGL], [x11 xext])
966 GL_PC_REQ_PRIV="x11 xext"
967 X11_INCLUDES="$X11_INCLUDES $XLIBGL_CFLAGS"
968 GL_LIB_DEPS="$XLIBGL_LIBS"
970 # should check these...
971 X11_INCLUDES="$X11_INCLUDES $X_CFLAGS"
972 GL_LIB_DEPS="$X_LIBS -lX11 -lXext"
973 GL_PC_LIB_PRIV="$GL_LIB_DEPS"
974 GL_PC_CFLAGS="$X11_INCLUDES"
976 GL_LIB_DEPS="$GL_LIB_DEPS $SELINUX_LIBS -lm -lpthread $DLOPEN_LIBS"
977 GL_PC_LIB_PRIV="$GL_PC_LIB_PRIV $SELINUX_LIBS -lm -lpthread"
981 PKG_CHECK_MODULES([GLPROTO], [glproto >= $GLPROTO_REQUIRED])
982 GL_PC_REQ_PRIV="glproto >= $GLPROTO_REQUIRED"
983 if test x"$driglx_direct" = xyes; then
984 if test "x$have_libdrm" != xyes; then
985 AC_MSG_ERROR([Direct rendering requires libdrm >= $LIBDRM_REQUIRED])
987 PKG_CHECK_MODULES([DRI2PROTO], [dri2proto >= $DRI2PROTO_REQUIRED])
988 GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV libdrm >= $LIBDRM_REQUIRED dri2proto >= $DRI2PROTO_REQUIRED"
991 # find the DRI deps for libGL
992 if test "$x11_pkgconfig" = yes; then
993 dri_modules="x11 xext xdamage xfixes x11-xcb xcb-glx"
995 # add xf86vidmode if available
996 PKG_CHECK_MODULES([XF86VIDMODE], [xxf86vm], HAVE_XF86VIDMODE=yes, HAVE_XF86VIDMODE=no)
997 if test "$HAVE_XF86VIDMODE" = yes ; then
998 dri_modules="$dri_modules xxf86vm"
1001 PKG_CHECK_MODULES([DRIGL], [$dri_modules])
1002 GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV $dri_modules"
1003 X11_INCLUDES="$X11_INCLUDES $DRIGL_CFLAGS"
1004 GL_LIB_DEPS="$DRIGL_LIBS"
1006 # should check these...
1007 X11_INCLUDES="$X11_INCLUDES $X_CFLAGS"
1008 if test "x$HAVE_XF86VIDMODE" == xyes; then
1009 GL_LIB_DEPS="$X_LIBS -lX11 -lXext -lXxf86vm -lXdamage -lXfixes"
1011 GL_LIB_DEPS="$X_LIBS -lX11 -lXext -lXdamage -lXfixes"
1013 GL_PC_LIB_PRIV="$GL_LIB_DEPS"
1014 GL_PC_CFLAGS="$X11_INCLUDES"
1016 # XCB can only be used from pkg-config
1017 PKG_CHECK_MODULES([XCB],[x11-xcb xcb-glx])
1018 GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV x11-xcb xcb-glx"
1019 X11_INCLUDES="$X11_INCLUDES $XCB_CFLAGS"
1020 GL_LIB_DEPS="$GL_LIB_DEPS $XCB_LIBS"
1023 # Check to see if the xcb-glx library is new enough to support
1024 # GLX_ARB_create_context. This bit of hackery is necessary until XCB 1.8
1026 save_CPPFLAGS="$CPPFLAGS"
1027 save_LDFLAGS="$LDFLAGS"
1028 CPPFLAGS="$CPPFLAGS $X11_INCLUDES"
1029 LDFLAGS="$LDFLAGS $GL_LIB_DEPS"
1030 AC_CHECK_LIB(xcb-glx, xcb_glx_create_context_attribs_arb_checked,
1031 [HAVE_XCB_GLX_CREATE_CONTEXT=yes],
1032 [HAVE_XCB_GLX_CREATE_CONTEXT=no])
1033 CPPFLAGS="$save_CPPFLAGS"
1034 LDFLAGS="$save_LDFLAGS"
1036 if test x$HAVE_XCB_GLX_CREATE_CONTEXT = xyes; then
1037 X11_INCLUDES="$X11_INCLUDES -DHAVE_XCB_GLX_CREATE_CONTEXT"
1040 # need DRM libs, -lpthread, etc.
1041 GL_LIB_DEPS="$GL_LIB_DEPS $LIBDRM_LIBS -lm -lpthread $DLOPEN_LIBS"
1042 GL_PC_LIB_PRIV="-lm -lpthread $DLOPEN_LIBS"
1046 # This is outside the case (above) so that it is invoked even for non-GLX
1048 AM_CONDITIONAL(HAVE_XCB_GLX_CREATE_CONTEXT,
1049 test x$HAVE_XCB_GLX_CREATE_CONTEXT = xyes)
1050 AM_CONDITIONAL(HAVE_XF86VIDMODE, test "x$HAVE_XF86VIDMODE" = xyes)
1052 GLESv1_CM_LIB_DEPS="$LIBDRM_LIBS -lm -lpthread $DLOPEN_LIBS"
1053 GLESv1_CM_PC_LIB_PRIV="-lm -lpthread $DLOPEN_LIBS"
1054 GLESv2_LIB_DEPS="$LIBDRM_LIBS -lm -lpthread $DLOPEN_LIBS"
1055 GLESv2_PC_LIB_PRIV="-lm -lpthread $DLOPEN_LIBS"
1057 AC_SUBST([GL_LIB_DEPS])
1058 AC_SUBST([GL_PC_REQ_PRIV])
1059 AC_SUBST([GL_PC_LIB_PRIV])
1060 AC_SUBST([GL_PC_CFLAGS])
1061 AC_SUBST([DRI_PC_REQ_PRIV])
1062 AC_SUBST([GLESv1_CM_LIB_DEPS])
1063 AC_SUBST([GLESv1_CM_PC_LIB_PRIV])
1064 AC_SUBST([GLESv2_LIB_DEPS])
1065 AC_SUBST([GLESv2_PC_LIB_PRIV])
1067 GLAPI_LIB_DEPS="-lpthread $SELINUX_LIBS"
1068 AC_SUBST([GLAPI_LIB_DEPS])
1071 dnl Setup default DRI CFLAGS
1072 DRI_CFLAGS='$(CFLAGS)'
1073 DRI_CXXFLAGS='$(CXXFLAGS)'
1074 DRI_LIB_DEPS='$(TOP)/src/mesa/libmesa.a'
1075 MESA_MODULES='$(TOP)/src/mesa/libmesa.a'
1077 if test "x$enable_dri" = xyes && test "x$driglx_direct" = xyes ; then
1078 DRICORE_GLSL_LIBS='$(TOP)/$(LIB_DIR)/libglsl.so'
1079 DRICORE_LIBS='$(TOP)/$(LIB_DIR)/libdricore.so'
1080 DRICORE_LIB_DEPS='-L$(TOP)/$(LIB_DIR) -Wl,-R$(DRI_DRIVER_INSTALL_DIR) -lglsl'
1081 DRI_LIB_DEPS='-L$(TOP)/$(LIB_DIR) -Wl,-R$(DRI_DRIVER_INSTALL_DIR) -ldricore -lglsl'
1082 DRI_CFLAGS='$(CFLAGS_NOVISIBILITY) -DUSE_DRICORE'
1083 DRI_CXXFLAGS='$(CXXFLAGS_NOVISIBILITY) -DUSE_DRICORE'
1084 MESA_MODULES='$(DRICORE_LIBS) $(DRICORE_GLSL_LIBS)'
1086 AC_SUBST([DRICORE_LIBS])
1087 AC_SUBST([DRICORE_GLSL_LIBS])
1088 AC_SUBST([DRICORE_LIB_DEPS])
1089 AC_SUBST([DRI_CXXFLAGS])
1090 AC_SUBST([DRI_CFLAGS])
1091 AC_SUBST([MESA_MODULES])
1093 AC_SUBST([HAVE_XF86VIDMODE])
1098 case "x$enable_glx$enable_xlib_glx" in
1100 DEFINES="$DEFINES -DUSE_XSHM"
1103 DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING"
1104 if test "x$driglx_direct" = xyes; then
1105 DEFINES="$DEFINES -DGLX_DIRECT_RENDERING"
1114 AC_ARG_ENABLE([glx-tls],
1115 [AS_HELP_STRING([--enable-glx-tls],
1116 [enable TLS support in GLX @<:@default=disabled@:>@])],
1117 [GLX_USE_TLS="$enableval"],
1119 AC_SUBST(GLX_TLS, ${GLX_USE_TLS})
1121 AS_IF([test "x$GLX_USE_TLS" = xyes],
1122 [DEFINES="${DEFINES} -DGLX_USE_TLS -DPTHREADS"])
1127 dnl Directory for DRI drivers
1128 AC_ARG_WITH([dri-driverdir],
1129 [AS_HELP_STRING([--with-dri-driverdir=DIR],
1130 [directory for the DRI drivers @<:@${libdir}/dri@:>@])],
1131 [DRI_DRIVER_INSTALL_DIR="$withval"],
1132 [DRI_DRIVER_INSTALL_DIR='${libdir}/dri'])
1133 AC_SUBST([DRI_DRIVER_INSTALL_DIR])
1134 dnl Extra search path for DRI drivers
1135 AC_ARG_WITH([dri-searchpath],
1136 [AS_HELP_STRING([--with-dri-searchpath=DIRS...],
1137 [semicolon delimited DRI driver search directories @<:@${libdir}/dri@:>@])],
1138 [DRI_DRIVER_SEARCH_DIR="$withval"],
1139 [DRI_DRIVER_SEARCH_DIR='${DRI_DRIVER_INSTALL_DIR}'])
1140 AC_SUBST([DRI_DRIVER_SEARCH_DIR])
1141 dnl Which drivers to build - default is chosen by platform
1142 AC_ARG_WITH([dri-drivers],
1143 [AS_HELP_STRING([--with-dri-drivers@<:@=DIRS...@:>@],
1144 [comma delimited DRI drivers list, e.g.
1145 "swrast,i965,radeon" @<:@default=auto@:>@])],
1146 [with_dri_drivers="$withval"],
1147 [with_dri_drivers=yes])
1148 if test "x$with_dri_drivers" = x; then
1152 dnl If $with_dri_drivers is yes, directories will be added through
1155 case "$with_dri_drivers" in
1158 # classic DRI drivers require FEATURE_GL to build
1159 if test "x$enable_opengl" = xyes; then
1164 # verify the requested driver directories exist
1165 dri_drivers=`IFS=', '; echo $with_dri_drivers`
1166 for driver in $dri_drivers; do
1167 test -d "$srcdir/src/mesa/drivers/dri/$driver" || \
1168 AC_MSG_ERROR([DRI driver directory '$driver' doesn't exist])
1170 DRI_DIRS="$dri_drivers"
1171 if test -n "$DRI_DIRS" -a "x$enable_opengl" != xyes; then
1172 AC_MSG_ERROR([--with-dri-drivers requires OpenGL])
1177 dnl Set DRI_DIRS, DEFINES and LIB_DEPS
1178 if test "x$enable_dri" = xyes; then
1179 # Platform specific settings and drivers to build
1182 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
1183 DEFINES="$DEFINES -DHAVE_ALIAS"
1187 if test "x$DRI_DIRS" = "xyes"; then
1188 DRI_DIRS="i915 i965 nouveau r200 radeon swrast"
1192 # Build only the drivers for cards that exist on PowerPC.
1193 if test "x$DRI_DIRS" = "xyes"; then
1194 DRI_DIRS="r200 radeon swrast"
1198 # Build only the drivers for cards that exist on sparc
1199 if test "x$DRI_DIRS" = "xyes"; then
1200 DRI_DIRS="r200 radeon swrast"
1205 freebsd* | dragonfly* | *netbsd*)
1206 DEFINES="$DEFINES -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1"
1207 DEFINES="$DEFINES -DIN_DRI_DRIVER -DHAVE_ALIAS"
1209 if test "x$DRI_DIRS" = "xyes"; then
1210 DRI_DIRS="i915 i965 nouveau r200 radeon swrast"
1214 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
1215 DEFINES="$DEFINES -DHAVE_ALIAS"
1218 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
1221 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
1222 if test "x$DRI_DIRS" = "xyes"; then
1229 if test "x$DRI_DIRS" = "xyes"; then
1230 DRI_DIRS="i915 i965 nouveau r200 radeon swrast"
1233 DRI_DIRS=`echo "$DRI_DIRS" | $SED 's/ */ /g'`
1236 if test "x$enable_dri" = xyes; then
1239 AC_ARG_WITH([expat],
1240 [AS_HELP_STRING([--with-expat=DIR],
1241 [expat install directory])],[
1242 EXPAT_INCLUDES="-I$withval/include"
1243 CPPFLAGS="$CPPFLAGS $EXPAT_INCLUDES"
1244 LDFLAGS="$LDFLAGS -L$withval/$LIB_DIR"
1245 EXPAT_LIB="-L$withval/$LIB_DIR -lexpat"
1247 AC_CHECK_HEADER([expat.h],[],[AC_MSG_ERROR([Expat required for DRI.])])
1249 AC_CHECK_LIB([expat],[XML_ParserCreate],[],
1250 [AC_MSG_ERROR([Expat required for DRI.])])
1254 # if we are building any dri driver other than swrast ...
1255 if test -n "$DRI_DIRS" -a x"$DRI_DIRS" != xswrast; then
1256 # ... libdrm is required
1257 if test "x$have_libdrm" != xyes; then
1258 AC_MSG_ERROR([DRI drivers requires libdrm >= $LIBDRM_REQUIRED])
1260 # ... and build dricommon
1264 # put all the necessary libs together
1265 DRI_LIB_DEPS="$DRI_LIB_DEPS $SELINUX_LIBS $LIBDRM_LIBS $EXPAT_LIB -lm -lpthread $DLOPEN_LIBS"
1267 AC_SUBST([DRI_DIRS])
1268 AC_SUBST([EXPAT_INCLUDES])
1269 AC_SUBST([DRI_LIB_DEPS])
1273 PKG_CHECK_MODULES([INTEL], [libdrm_intel >= $LIBDRM_INTEL_REQUIRED])
1275 for d in $(echo $DRI_DIRS | sed 's/,/ /g'); do
1291 PKG_CHECK_MODULES([NOUVEAU], [libdrm_nouveau >= $LIBDRM_NVVIEUX_REQUIRED])
1292 HAVE_NOUVEAU_DRI=yes;
1298 PKG_CHECK_MODULES([RADEON], [libdrm_radeon >= $LIBDRM_RADEON_REQUIRED])
1300 for d in $(echo $DRI_DIRS | sed 's/,/ /g'); do
1303 HAVE_RADEON_DRI=yes;
1316 HAVE_SWRAST_DRI=yes;
1320 AM_CONDITIONAL(HAVE_I915_DRI, test x$HAVE_I915_DRI = xyes)
1321 AM_CONDITIONAL(HAVE_I965_DRI, test x$HAVE_I965_DRI = xyes)
1322 AM_CONDITIONAL(HAVE_NOUVEAU_DRI, test x$HAVE_NOUVEAU_DRI = xyes)
1323 AM_CONDITIONAL(HAVE_R200_DRI, test x$HAVE_R200_DRI = xyes)
1324 AM_CONDITIONAL(HAVE_RADEON_DRI, test x$HAVE_RADEON_DRI = xyes)
1325 AM_CONDITIONAL(HAVE_SWRAST_DRI, test x$HAVE_SWRAST_DRI = xyes)
1326 AM_CONDITIONAL(HAVE_COMMON_DRI, test x$HAVE_COMMON_DRI = xyes)
1329 dnl OSMesa configuration
1332 dnl Configure the channel bits for OSMesa (libOSMesa, libOSMesa16, ...)
1333 AC_ARG_WITH([osmesa-bits],
1334 [AS_HELP_STRING([--with-osmesa-bits=BITS],
1335 [OSMesa channel bits and library name: 8, 16, 32 @<:@default=8@:>@])],
1336 [osmesa_bits="$withval"],
1338 if test "x$osmesa_bits" != x8; then
1339 if test "x$enable_dri" = xyes -o "x$enable_glx" = xyes; then
1340 AC_MSG_WARN([Ignoring OSMesa channel bits because of non-OSMesa driver])
1344 case "x$osmesa_bits" in
1346 OSMESA_LIB="${OSMESA_LIB}"
1349 OSMESA_LIB="${OSMESA_LIB}$osmesa_bits"
1350 DEFINES="$DEFINES -DCHAN_BITS=$osmesa_bits -DDEFAULT_SOFTWARE_DEPTH_BITS=31"
1353 AC_MSG_ERROR([OSMesa bits '$osmesa_bits' is not a valid option])
1357 if test "x$enable_osmesa" = xyes; then
1358 # only link libraries with osmesa if shared
1359 if test "$enable_static" = no; then
1360 OSMESA_LIB_DEPS="-lm -lpthread $SELINUX_LIBS $DLOPEN_LIBS"
1365 OSMESA_PC_LIB_PRIV="-lm -lpthread $SELINUX_LIBS $DLOPEN_LIBS"
1367 AC_SUBST([OSMESA_LIB_DEPS])
1368 AC_SUBST([OSMESA_MESA_DEPS])
1369 AC_SUBST([OSMESA_PC_REQ])
1370 AC_SUBST([OSMESA_PC_LIB_PRIV])
1373 dnl gbm configuration
1375 if test "x$enable_gbm" = xauto; then
1376 case "$with_egl_platforms" in
1383 if test "x$enable_gbm" = xyes; then
1384 SRC_DIRS="$SRC_DIRS gbm"
1386 PKG_CHECK_MODULES([LIBUDEV], [libudev], [],
1387 AC_MSG_ERROR([gbm needs udev]))
1389 if test "x$enable_dri" = xyes; then
1390 GBM_BACKEND_DIRS="$GBM_BACKEND_DIRS dri"
1391 if test "$SHARED_GLAPI" -eq 0; then
1392 AC_MSG_ERROR([gbm_dri requires --enable-shared-glapi])
1396 GBM_PC_REQ_PRIV="libudev"
1397 GBM_PC_LIB_PRIV="$DLOPEN_LIBS"
1398 AC_SUBST([GBM_PC_REQ_PRIV])
1399 AC_SUBST([GBM_PC_LIB_PRIV])
1402 dnl EGL configuration
1406 if test "x$enable_egl" = xyes; then
1407 SRC_DIRS="$SRC_DIRS egl"
1408 EGL_LIB_DEPS="$DLOPEN_LIBS $SELINUX_LIBS -lpthread"
1410 AC_CHECK_FUNC(mincore, [DEFINES="$DEFINES -DHAVE_MINCORE"])
1412 if test "$enable_static" != yes; then
1413 # build egl_glx when libGL is built
1414 if test "x$enable_glx" = xyes; then
1415 HAVE_EGL_DRIVER_GLX=1
1418 PKG_CHECK_MODULES([LIBUDEV], [libudev > 150],
1419 [have_libudev=yes],[have_libudev=no])
1420 if test "$have_libudev" = yes; then
1421 DEFINES="$DEFINES -DHAVE_LIBUDEV"
1423 if test "x$enable_dri" = xyes; then
1424 # build egl_dri2 when xcb-dri2 is available
1425 PKG_CHECK_MODULES([XCB_DRI2], [x11-xcb xcb-dri2 xcb-xfixes],
1426 [have_xcb_dri2=yes],[have_xcb_dri2=no])
1427 if test "$have_xcb_dri2" = yes; then
1428 HAVE_EGL_DRIVER_DRI2=1
1429 # workaround a bug in xcb-dri2 generated by xcb-proto 1.6
1431 AC_CHECK_LIB(xcb-dri2, xcb_dri2_connect_alignment_pad, [],
1432 [DEFINES="$DEFINES -DXCB_DRI2_CONNECT_DEVICE_NAME_BROKEN"])
1439 AC_SUBST([EGL_LIB_DEPS])
1442 dnl EGL Gallium configuration
1444 if test "x$enable_gallium_egl" = xyes; then
1445 if test "x$with_gallium_drivers" = x; then
1446 AC_MSG_ERROR([cannot enable egl_gallium without Gallium])
1448 if test "x$enable_egl" = xno; then
1449 AC_MSG_ERROR([cannot enable egl_gallium without EGL])
1451 if test "x$have_libdrm" != xyes; then
1452 AC_MSG_ERROR([egl_gallium requires libdrm >= $LIBDRM_REQUIRED])
1455 GALLIUM_STATE_TRACKERS_DIRS="egl $GALLIUM_STATE_TRACKERS_DIRS"
1456 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS egl-static"
1461 dnl gbm Gallium configuration
1463 if test "x$enable_gallium_gbm" = xauto; then
1464 case "$enable_gbm$HAVE_ST_EGL$enable_dri$with_egl_platforms" in
1466 enable_gallium_gbm=yes ;;
1468 enable_gallium_gbm=no ;;
1471 if test "x$enable_gallium_gbm" = xyes; then
1472 if test "x$with_gallium_drivers" = x; then
1473 AC_MSG_ERROR([cannot enable gbm_gallium without Gallium])
1475 if test "x$enable_gbm" = xno; then
1476 AC_MSG_ERROR([cannot enable gbm_gallium without gbm])
1478 # gbm_gallium abuses DRI_LIB_DEPS to link. Make sure it is set.
1479 if test "x$enable_dri" = xno; then
1480 AC_MSG_ERROR([gbm_gallium requires --enable-dri to build])
1483 GALLIUM_STATE_TRACKERS_DIRS="gbm $GALLIUM_STATE_TRACKERS_DIRS"
1484 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS gbm"
1486 enable_gallium_loader=yes
1490 dnl X.Org DDX configuration
1492 if test "x$enable_xorg" = xyes; then
1493 PKG_CHECK_MODULES([XORG], [xorg-server >= 1.6.0])
1494 PKG_CHECK_MODULES([LIBDRM_XORG], [libdrm >= $LIBDRM_XORG_REQUIRED])
1495 PKG_CHECK_MODULES([LIBKMS_XORG], [libkms >= $LIBKMS_XORG_REQUIRED])
1496 PKG_CHECK_MODULES(XEXT, [xextproto >= 7.0.99.1],
1497 HAVE_XEXTPROTO_71="yes"; DEFINES="$DEFINES -DHAVE_XEXTPROTO_71",
1498 HAVE_XEXTPROTO_71="no")
1499 GALLIUM_STATE_TRACKERS_DIRS="xorg $GALLIUM_STATE_TRACKERS_DIRS"
1504 dnl XA configuration
1506 if test "x$enable_xa" = xyes; then
1509 AC_CHECK_PROG(NM, nm, "nm")
1510 if test "x$AWK" = x || test "x$GREP" = x || test "x$NM" = x; then
1511 AC_MSG_WARN([Missing one of nm, grep or awk. Disabling xa.])
1515 if test "x$enable_xa" = xyes; then
1516 GALLIUM_STATE_TRACKERS_DIRS="xa $GALLIUM_STATE_TRACKERS_DIRS"
1524 dnl OpenVG configuration
1528 if test "x$enable_openvg" = xyes; then
1529 if test "x$enable_egl" = xno; then
1530 AC_MSG_ERROR([cannot enable OpenVG without EGL])
1532 if test "x$with_gallium_drivers" = x; then
1533 AC_MSG_ERROR([cannot enable OpenVG without Gallium])
1535 if test "x$enable_gallium_egl" = xno; then
1536 AC_MSG_ERROR([cannot enable OpenVG without egl_gallium])
1539 EGL_CLIENT_APIS="$EGL_CLIENT_APIS "'$(VG_LIB)'
1540 VG_LIB_DEPS="$VG_LIB_DEPS $SELINUX_LIBS -lpthread"
1541 CORE_DIRS="$CORE_DIRS mapi/vgapi"
1542 GALLIUM_STATE_TRACKERS_DIRS="vega $GALLIUM_STATE_TRACKERS_DIRS"
1547 dnl D3D1X configuration
1550 if test "x$enable_d3d1x" = xyes; then
1551 if test "x$with_gallium_drivers" = x; then
1552 AC_MSG_ERROR([cannot enable D3D1X without Gallium])
1555 GALLIUM_STATE_TRACKERS_DIRS="d3d1x $GALLIUM_STATE_TRACKERS_DIRS"
1560 dnl Gallium G3DVL configuration
1562 AC_ARG_ENABLE([gallium-g3dvl],
1563 [AS_HELP_STRING([--enable-gallium-g3dvl],
1564 [build gallium g3dvl @<:@default=disabled@:>@])],
1565 [enable_gallium_g3dvl="$enableval"],
1566 [enable_gallium_g3dvl=no])
1567 if test "x$enable_gallium_g3dvl" = xyes; then
1568 if test "x$with_gallium_drivers" = x; then
1569 AC_MSG_ERROR([cannot enable G3DVL without Gallium])
1572 if test "x$enable_xvmc" = xauto; then
1573 PKG_CHECK_EXISTS([xvmc], [enable_xvmc=yes], [enable_xvmc=no])
1576 if test "x$enable_vdpau" = xauto; then
1577 PKG_CHECK_EXISTS([vdpau], [enable_vdpau=yes], [enable_vdpau=no])
1580 if test "x$enable_va" = xauto; then
1581 #don't enable vaapi state tracker even if package exists
1582 #PKG_CHECK_EXISTS([libva], [enable_vdpau=yes], [enable_vdpau=no])
1587 if test "x$enable_xvmc" = xyes; then
1588 PKG_CHECK_MODULES([XVMC], [xvmc >= 1.0.6 x11-xcb xcb-dri2 >= 1.8])
1589 GALLIUM_STATE_TRACKERS_DIRS="$GALLIUM_STATE_TRACKERS_DIRS xvmc"
1593 if test "x$enable_vdpau" = xyes; then
1594 PKG_CHECK_MODULES([VDPAU], [vdpau >= 0.4.1 x11-xcb xcb-dri2 >= 1.8])
1595 GALLIUM_STATE_TRACKERS_DIRS="$GALLIUM_STATE_TRACKERS_DIRS vdpau"
1599 if test "x$enable_va" = xyes; then
1600 PKG_CHECK_MODULES([LIBVA], [libva = 0.31.1 x11-xcb xcb-dri2 >= 1.8])
1601 AC_MSG_WARN([vaapi state tracker currently unmaintained])
1602 GALLIUM_STATE_TRACKERS_DIRS="$GALLIUM_STATE_TRACKERS_DIRS va"
1607 dnl GLU configuration
1609 AC_ARG_ENABLE([glu],
1610 [AS_HELP_STRING([--disable-glu],
1611 [enable OpenGL Utility library @<:@default=enabled@:>@])],
1612 [enable_glu="$enableval"],
1615 if test "x$enable_glu" = xyes; then
1616 if test "x$enable_glx" = xno -a "x$enable_osmesa" = xno; then
1617 AC_MSG_NOTICE([Disabling GLU since there is no OpenGL driver])
1622 if test "x$enable_glu" = xyes; then
1623 SRC_DIRS="$SRC_DIRS glu"
1625 if test "x$enable_glx" = xno; then
1626 # Link libGLU to libOSMesa instead of libGL
1629 if test "$enable_static" = no; then
1630 GLU_MESA_DEPS='-l$(OSMESA_LIB)'
1635 # If static, empty GLU_LIB_DEPS and add libs for programs to link
1637 GLU_PC_LIB_PRIV="-lm"
1638 if test "$enable_static" = no; then
1640 GLU_MESA_DEPS='-l$(GL_LIB)'
1647 if test "$enable_static" = no; then
1648 GLU_LIB_DEPS="$GLU_LIB_DEPS $OS_CPLUSPLUS_LIBS"
1650 GLU_PC_LIB_PRIV="$GLU_PC_LIB_PRIV $OS_CPLUSPLUS_LIBS"
1651 AC_SUBST([GLU_LIB_DEPS])
1652 AC_SUBST([GLU_MESA_DEPS])
1653 AC_SUBST([GLU_PC_REQ])
1654 AC_SUBST([GLU_PC_REQ_PRIV])
1655 AC_SUBST([GLU_PC_LIB_PRIV])
1656 AC_SUBST([GLU_PC_CFLAGS])
1658 AC_SUBST([PROGRAM_DIRS])
1661 dnl Gallium configuration
1663 if test "x$with_gallium_drivers" != x; then
1664 SRC_DIRS="$SRC_DIRS gallium gallium/winsys gallium/targets"
1667 AC_SUBST([LLVM_BINDIR])
1668 AC_SUBST([LLVM_CFLAGS])
1669 AC_SUBST([LLVM_CXXFLAGS])
1670 AC_SUBST([LLVM_LIBS])
1671 AC_SUBST([LLVM_LDFLAGS])
1672 AC_SUBST([LLVM_INCLUDEDIR])
1673 AC_SUBST([LLVM_VERSION])
1675 case "x$enable_opengl$enable_gles1$enable_gles2" in
1677 EGL_CLIENT_APIS="$EGL_CLIENT_APIS "'$(GL_LIB)'
1681 AC_SUBST([VG_LIB_DEPS])
1682 AC_SUBST([EGL_CLIENT_APIS])
1684 AC_ARG_WITH([egl-platforms],
1685 [AS_HELP_STRING([--with-egl-platforms@<:@=DIRS...@:>@],
1686 [comma delimited native platforms libEGL supports, e.g.
1687 "x11,drm" @<:@default=auto@:>@])],
1688 [with_egl_platforms="$withval"],
1689 [if test "x$enable_egl" = xyes; then
1690 with_egl_platforms="x11"
1692 with_egl_platforms=""
1697 if test "x$with_egl_platforms" != "x" -a "x$enable_egl" != xyes; then
1698 AC_MSG_ERROR([cannot build egl state tracker without EGL library])
1701 # verify the requested driver directories exist
1702 egl_platforms=`IFS=', '; echo $with_egl_platforms`
1703 for plat in $egl_platforms; do
1704 test -d "$srcdir/src/gallium/state_trackers/egl/$plat" || \
1705 AC_MSG_ERROR([EGL platform '$plat' does not exist])
1706 if test "$plat" = "fbdev"; then
1707 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/fbdev"
1709 if test "$plat" = "null"; then
1710 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/null"
1712 if test "$plat" = "wayland"; then
1713 PKG_CHECK_MODULES([WAYLAND], [wayland-client wayland-server],, \
1714 [AC_MSG_ERROR([cannot find libwayland-client])])
1715 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/wayland"
1717 m4_ifdef([WAYLAND_SCANNER_RULES],
1718 [WAYLAND_SCANNER_RULES(['$(top_srcdir)/src/egl/wayland/wayland-drm/protocol'])])
1720 if test "$plat" = "drm" && test "x$enable_gbm" = "xno"; then
1721 AC_MSG_ERROR([EGL platform drm needs gbm])
1723 case "$plat$have_libudev" in
1725 AC_MSG_ERROR([cannot build $plat platfrom without udev]) ;;
1729 # libEGL wants to default to the first platform specified in
1730 # ./configure. parse that here.
1731 if test "x$egl_platforms" != "x"; then
1732 FIRST_PLATFORM_CAPS=`echo $egl_platforms | sed 's| .*||' | tr 'a-z' 'A-Z'`
1733 EGL_NATIVE_PLATFORM="_EGL_PLATFORM_$FIRST_PLATFORM_CAPS"
1735 EGL_NATIVE_PLATFORM="_EGL_INVALID_PLATFORM"
1738 EGL_PLATFORMS="$egl_platforms"
1740 AM_CONDITIONAL(HAVE_EGL_PLATFORM_X11, echo "$egl_platforms" | grep 'x11' >/dev/null 2>&1)
1741 AM_CONDITIONAL(HAVE_EGL_PLATFORM_WAYLAND, echo "$egl_platforms" | grep 'wayland' >/dev/null 2>&1)
1742 AM_CONDITIONAL(HAVE_EGL_PLATFORM_DRM, echo "$egl_platforms" | grep 'drm' >/dev/null 2>&1)
1743 AM_CONDITIONAL(HAVE_EGL_PLATFORM_FBDEV, echo "$egl_platforms" | grep 'fbdev' >/dev/null 2>&1)
1744 AM_CONDITIONAL(HAVE_EGL_PLATFORM_NULL, echo "$egl_platforms" | grep 'null' >/dev/null 2>&1)
1746 AM_CONDITIONAL(HAVE_EGL_DRIVER_DRI2, test "x$HAVE_EGL_DRIVER_DRI2" != "x")
1747 AM_CONDITIONAL(HAVE_EGL_DRIVER_GLX, test "x$HAVE_EGL_DRIVER_GLX" != "x")
1749 AC_SUBST([EGL_NATIVE_PLATFORM])
1750 AC_SUBST([EGL_PLATFORMS])
1751 AC_SUBST([EGL_CFLAGS])
1753 AC_ARG_WITH([egl-driver-dir],
1754 [AS_HELP_STRING([--with-egl-driver-dir=DIR],
1755 [directory for EGL drivers [[default=${libdir}/egl]]])],
1756 [EGL_DRIVER_INSTALL_DIR="$withval"],
1757 [EGL_DRIVER_INSTALL_DIR='${libdir}/egl'])
1758 AC_SUBST([EGL_DRIVER_INSTALL_DIR])
1760 AC_ARG_WITH([xorg-driver-dir],
1761 [AS_HELP_STRING([--with-xorg-driver-dir=DIR],
1762 [Default xorg driver directory[[default=${libdir}/xorg/modules/drivers]]])],
1763 [XORG_DRIVER_INSTALL_DIR="$withval"],
1764 [XORG_DRIVER_INSTALL_DIR="${libdir}/xorg/modules/drivers"])
1765 AC_SUBST([XORG_DRIVER_INSTALL_DIR])
1767 AC_ARG_WITH([max-width],
1768 [AS_HELP_STRING([--with-max-width=N],
1769 [Maximum framebuffer width (4096)])],
1770 [DEFINES="${DEFINES} -DMAX_WIDTH=${withval}";
1771 AS_IF([test "${withval}" -gt "4096"],
1772 [AC_MSG_WARN([Large framebuffer: see s_tritemp.h comments.])])]
1774 AC_ARG_WITH([max-height],
1775 [AS_HELP_STRING([--with-max-height=N],
1776 [Maximum framebuffer height (4096)])],
1777 [DEFINES="${DEFINES} -DMAX_HEIGHT=${withval}";
1778 AS_IF([test "${withval}" -gt "4096"],
1779 [AC_MSG_WARN([Large framebuffer: see s_tritemp.h comments.])])]
1785 AC_ARG_ENABLE([gallium-llvm],
1786 [AS_HELP_STRING([--enable-gallium-llvm],
1787 [build gallium LLVM support @<:@default=enabled on x86/x86_64@:>@])],
1788 [enable_gallium_llvm="$enableval"],
1789 [enable_gallium_llvm=auto])
1791 AC_ARG_WITH([llvm-shared-libs],
1792 [AS_HELP_STRING([--with-llvm-shared-libs],
1793 [link with LLVM shared libraries @<:@default=disabled@:>@])],
1794 [with_llvm_shared_libs=yes],
1795 [with_llvm_shared_libs=no])
1797 if test "x$with_gallium_drivers" = x; then
1798 enable_gallium_llvm=no
1800 if test "x$enable_gallium_llvm" = xauto; then
1802 i*86|x86_64) enable_gallium_llvm=yes;;
1805 if test "x$enable_gallium_llvm" = xyes; then
1806 AC_PATH_PROG([LLVM_CONFIG], [llvm-config], [no])
1808 if test "x$LLVM_CONFIG" != xno; then
1809 LLVM_VERSION=`$LLVM_CONFIG --version | sed 's/svn.*//g'`
1810 LLVM_CFLAGS=`$LLVM_CONFIG --cppflags|sed -e 's/-DNDEBUG\>//g' -e 's/-pedantic//g'`
1811 if test "x$with_llvm_shared_libs" = xyes; then
1812 dnl We can't use $LLVM_VERSION because it has 'svn' stripped out,
1813 LLVM_LIBS="-lLLVM-`$LLVM_CONFIG --version`"
1815 LLVM_LIBS="`$LLVM_CONFIG --libs engine bitwriter`"
1817 LLVM_LDFLAGS=`$LLVM_CONFIG --ldflags`
1818 LLVM_BINDIR=`$LLVM_CONFIG --bindir`
1819 LLVM_CXXFLAGS=`$LLVM_CONFIG --cxxflags`
1820 LLVM_INCLUDEDIR=`$LLVM_CONFIG --includedir`
1821 DEFINES="${DEFINES} -DHAVE_LLVM=`echo $LLVM_VERSION | sed -e 's/\([[0-9]]\)\.\([[0-9]]\)/0x0\10\2/g'`"
1830 dnl Directory for XVMC libs
1831 AC_ARG_WITH([xvmc-libdir],
1832 [AS_HELP_STRING([--with-xvmc-libdir=DIR],
1833 [directory for the XVMC libraries @<:@default=${libdir}@:>@])],
1834 [XVMC_LIB_INSTALL_DIR="$withval"],
1835 [XVMC_LIB_INSTALL_DIR='${libdir}'])
1836 AC_SUBST([XVMC_LIB_INSTALL_DIR])
1838 dnl Directory for VDPAU libs
1839 AC_ARG_WITH([vdpau-libdir],
1840 [AS_HELP_STRING([--with-vdpau-libdir=DIR],
1841 [directory for the VDPAU libraries @<:@default=${libdir}/vdpau@:>@])],
1842 [VDPAU_LIB_INSTALL_DIR="$withval"],
1843 [VDPAU_LIB_INSTALL_DIR='${libdir}/vdpau'])
1844 AC_SUBST([VDPAU_LIB_INSTALL_DIR])
1846 dnl Directory for VA libs
1847 AC_ARG_WITH([va-libdir],
1848 [AS_HELP_STRING([--with-va-libdir=DIR],
1849 [directory for the VA libraries @<:@default=${libdir}/va@:>@])],
1850 [VA_LIB_INSTALL_DIR="$withval"],
1851 [VA_LIB_INSTALL_DIR='${libdir}/va'])
1852 AC_SUBST([VA_LIB_INSTALL_DIR])
1855 dnl Gallium helper functions
1857 gallium_check_st() {
1858 if test "x$HAVE_ST_DRI" = xyes || test "x$HAVE_ST_XORG" = xyes ||
1859 test "x$HAVE_ST_XA" = xyes || test "x$HAVE_ST_XVMC" = xyes ||
1860 test "x$HAVE_ST_VDPAU" = xyes || test "x$HAVE_ST_VA" = xyes; then
1861 if test "x$have_libdrm" != xyes; then
1862 AC_MSG_ERROR([DRI or Xorg DDX requires libdrm >= $LIBDRM_REQUIRED])
1864 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS $1"
1866 if test "x$HAVE_ST_DRI" = xyes && test "x$2" != x; then
1867 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $2"
1869 if test "x$HAVE_ST_XORG" = xyes && test "x$3" != x; then
1870 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $3"
1872 if test "x$HAVE_ST_XA" = xyes && test "x$4" != x; then
1873 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $4"
1875 if test "x$HAVE_ST_XVMC" = xyes && test "x$5" != x; then
1876 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $5"
1878 if test "x$HAVE_ST_VDPAU" = xyes && test "x$6" != x; then
1879 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $6"
1881 if test "x$HAVE_ST_VA" = xyes && test "x$7" != x; then
1882 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $7"
1886 gallium_require_llvm() {
1887 if test "x$MESA_LLVM" = x0; then
1889 i*86|x86_64) AC_MSG_ERROR([LLVM is required to build $1 on x86 and x86_64]);;
1895 dnl Duplicates in GALLIUM_DRIVERS_DIRS are removed by sorting it after this block
1896 if test "x$with_gallium_drivers" != x; then
1897 gallium_drivers=`IFS=', '; echo $with_gallium_drivers`
1898 for driver in $gallium_drivers; do
1901 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS svga softpipe"
1902 gallium_check_st "svga/drm" "dri-vmwgfx" "" "xa-vmwgfx"
1905 PKG_CHECK_MODULES([INTEL], [libdrm_intel >= $LIBDRM_INTEL_REQUIRED])
1906 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS i915 softpipe"
1907 if test "x$MESA_LLVM" = x1; then
1908 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS llvmpipe"
1910 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS i915/sw"
1911 gallium_check_st "i915/drm" "dri-i915" "xorg-i915"
1914 PKG_CHECK_MODULES([RADEON], [libdrm_radeon >= $LIBDRM_RADEON_REQUIRED])
1915 gallium_require_llvm "Gallium R300"
1916 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS r300"
1917 gallium_check_st "radeon/drm" "dri-r300" "xorg-r300" "" "xvmc-r300" "vdpau-r300" "va-r300"
1920 PKG_CHECK_MODULES([RADEON], [libdrm_radeon >= $LIBDRM_RADEON_REQUIRED])
1921 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS r600"
1922 if test "x$enable_r600_llvm" = xyes; then
1923 if test "x$LLVM_VERSION" != "x3.1"; then
1924 AC_MSG_ERROR([LLVM 3.1 is required for the r600 llvm compiler.])
1926 NEED_RADEON_GALLIUM=yes;
1927 USE_R600_LLVM_COMPILER=yes;
1929 gallium_check_st "radeon/drm" "dri-r600" "xorg-r600" "" "xvmc-r600" "vdpau-r600" "va-r600"
1932 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS radeonsi"
1933 if test "x$LLVM_VERSION" != "x3.1"; then
1934 AC_MSG_ERROR([LLVM 3.1 is required to build the radeonsi driver.])
1936 NEED_RADEON_GALLIUM=yes;
1937 gallium_check_st "radeon/drm" "dri-radeonsi" "xorg-radeonsi"
1940 PKG_CHECK_MODULES([NOUVEAU], [libdrm_nouveau >= $LIBDRM_NOUVEAU_REQUIRED])
1941 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS nouveau nv30 nv50 nvc0"
1942 gallium_check_st "nouveau/drm" "dri-nouveau" "xorg-nouveau" "" "xvmc-nouveau" "vdpau-nouveau"
1945 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS softpipe"
1946 if test "x$MESA_LLVM" = x1; then
1947 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS llvmpipe"
1950 if test "x$HAVE_ST_DRI" = xyes; then
1951 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS dri-swrast"
1953 if test "x$HAVE_ST_VDPAU" = xyes; then
1954 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS vdpau-softpipe"
1956 if test "x$HAVE_ST_XVMC" = xyes; then
1957 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS xvmc-softpipe"
1959 if test "x$HAVE_ST_VA" = xyes; then
1960 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS va-softpipe"
1962 if test "x$HAVE_ST_VDPAU" = xyes ||
1963 test "x$HAVE_ST_XVMC" = xyes ||
1964 test "x$HAVE_ST_VA" = xyes; then
1965 if test "x$HAVE_WINSYS_XLIB" != xyes; then
1966 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/xlib"
1971 AC_MSG_ERROR([Unknown Gallium driver: $driver])
1977 if test "x$enable_gallium_tests" = xyes; then
1978 SRC_DIRS="$SRC_DIRS gallium/tests/trivial"
1979 enable_gallium_loader=yes
1982 if test "x$enable_gallium_loader" = xyes; then
1983 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/null"
1984 GALLIUM_PIPE_LOADER_DEFINES="-DHAVE_PIPE_LOADER_SW"
1985 GALLIUM_PIPE_LOADER_LIBS="\$(TOP)/src/gallium/auxiliary/pipe-loader/libpipe_loader.a"
1986 GALLIUM_PIPE_LOADER_LIBS="$GALLIUM_PIPE_LOADER_LIBS \$(TOP)/src/gallium/winsys/sw/null/libws_null.a"
1988 if test "x$HAVE_WINSYS_XLIB" = xyes; then
1989 GALLIUM_PIPE_LOADER_DEFINES="$GALLIUM_PIPE_LOADER_DEFINES -DHAVE_PIPE_LOADER_XLIB"
1990 GALLIUM_PIPE_LOADER_LIBS="$GALLIUM_PIPE_LOADER_LIBS \$(TOP)/src/gallium/winsys/sw/xlib/libws_xlib.a"
1993 if test "x$enable_gallium_drm_loader" = xyes; then
1994 GALLIUM_PIPE_LOADER_DEFINES="$GALLIUM_PIPE_LOADER_DEFINES -DHAVE_PIPE_LOADER_DRM"
1997 AC_SUBST([GALLIUM_PIPE_LOADER_DEFINES])
1998 AC_SUBST([GALLIUM_PIPE_LOADER_LIBS])
2001 dnl Tell Automake which drivers to build
2002 for driver in $GALLIUM_DRIVERS_DIRS; do
2005 HAVE_GALAHAD_GALLIUM=yes;
2008 HAVE_IDENTITY_GALLIUM=yes;
2011 HAVE_NOOP_GALLIUM=yes;
2014 GALLIUM_MAKE_DIRS="$GALLIUM_MAKE_DIRS $driver"
2019 AM_CONDITIONAL(HAVE_GALAHAD_GALLIUM, test x$HAVE_GALAHAD_GALLIUM = xyes)
2020 AM_CONDITIONAL(HAVE_IDENTITY_GALLIUM, test x$HAVE_IDENTITY_GALLIUM = xyes)
2021 AM_CONDITIONAL(HAVE_NOOP_GALLIUM, test x$HAVE_NOOP_GALLIUM = xyes)
2022 AM_CONDITIONAL(NEED_RADEON_GALLIUM, test x$NEED_RADEON_GALLIUM = xyes)
2023 AM_CONDITIONAL(USE_R600_LLVM_COMPILER, test x$USE_R600_LLVM_COMPILER = xyes)
2024 AM_CONDITIONAL(HAVE_LOADER_GALLIUM, test x$enable_gallium_loader = xyes)
2025 AM_CONDITIONAL(HAVE_DRM_LOADER_GALLIUM, test x$enable_gallium_drm_loader = xyes)
2026 AC_SUBST([GALLIUM_MAKE_DIRS])
2028 dnl prepend CORE_DIRS to SRC_DIRS
2029 SRC_DIRS="$CORE_DIRS $SRC_DIRS"
2031 dnl Restore LDFLAGS and CPPFLAGS
2032 LDFLAGS="$_SAVE_LDFLAGS"
2033 CPPFLAGS="$_SAVE_CPPFLAGS"
2035 dnl Add user CFLAGS and CXXFLAGS
2036 CFLAGS="$CFLAGS $USER_CFLAGS"
2037 CXXFLAGS="$CXXFLAGS $USER_CXXFLAGS"
2039 dnl Substitute the config
2040 AC_CONFIG_FILES([configs/autoconf
2041 src/gallium/auxiliary/pipe-loader/Makefile
2042 src/gallium/drivers/Makefile
2043 src/gallium/drivers/r300/Makefile
2044 src/gallium/drivers/r600/Makefile
2047 src/egl/drivers/Makefile
2048 src/egl/drivers/dri2/Makefile
2049 src/egl/drivers/glx/Makefile
2050 src/egl/main/Makefile
2052 src/egl/wayland/Makefile
2053 src/egl/wayland/wayland-egl/Makefile
2054 src/egl/wayland/wayland-egl/wayland-egl.pc
2055 src/egl/wayland/wayland-drm/Makefile
2056 src/glsl/tests/Makefile
2058 src/mapi/shared-glapi/Makefile
2060 src/mesa/drivers/dri/dri.pc
2061 src/mesa/drivers/dri/Makefile
2062 src/mesa/drivers/dri/common/Makefile
2063 src/mesa/drivers/dri/i915/Makefile
2064 src/mesa/drivers/dri/i965/Makefile
2065 src/mesa/drivers/dri/nouveau/Makefile
2066 src/mesa/drivers/dri/r200/Makefile
2067 src/mesa/drivers/dri/radeon/Makefile
2068 src/mesa/drivers/dri/swrast/Makefile
2070 tests/glx/Makefile])
2072 dnl Replace the configs/current symlink
2073 AC_CONFIG_COMMANDS([configs],[
2074 if test -f configs/current || test -L configs/current; then
2075 rm -f configs/current
2077 ln -s autoconf configs/current
2080 dnl Sort the dirs alphabetically
2081 GALLIUM_TARGET_DIRS=`echo $GALLIUM_TARGET_DIRS|tr " " "\n"|sort -u|tr "\n" " "`
2082 GALLIUM_WINSYS_DIRS=`echo $GALLIUM_WINSYS_DIRS|tr " " "\n"|sort -u|tr "\n" " "`
2083 GALLIUM_DRIVERS_DIRS=`echo $GALLIUM_DRIVERS_DIRS|tr " " "\n"|sort -u|tr "\n" " "`
2084 GALLIUM_MAKE_DIRS=`echo $GALLIUM_MAKE_DIRS|tr " " "\n"|sort -u|tr "\n" " "`
2085 GALLIUM_STATE_TRACKERS_DIRS=`echo $GALLIUM_STATE_TRACKERS_DIRS|tr " " "\n"|sort -u|tr "\n" " "`
2090 dnl Output some configuration info for the user
2093 echo " prefix: $prefix"
2094 echo " exec_prefix: $exec_prefix"
2095 echo " libdir: $libdir"
2096 echo " includedir: $includedir"
2100 echo " OpenGL: $enable_opengl (ES1: $enable_gles1 ES2: $enable_gles2)"
2101 echo " OpenVG: $enable_openvg"
2105 if test "x$enable_osmesa" != xno; then
2106 echo " OSMesa: lib$OSMESA_LIB"
2111 if test "x$enable_dri" != xno; then
2112 # cleanup the drivers var
2113 dri_dirs=`echo $DRI_DIRS | $SED 's/^ *//;s/ */ /;s/ *$//'`
2114 if test "x$DRI_DIRS" = x; then
2115 echo " DRI drivers: no"
2117 echo " DRI drivers: $dri_dirs"
2119 echo " DRI driver dir: $DRI_DRIVER_INSTALL_DIR"
2122 case "x$enable_glx$enable_xlib_glx" in
2124 echo " GLX: Xlib-based"
2127 echo " GLX: DRI-based"
2130 echo " GLX: $enable_glx"
2135 echo " GLU: $enable_glu"
2139 echo " EGL: $enable_egl"
2140 if test "$enable_egl" = yes; then
2141 echo " EGL platforms: $EGL_PLATFORMS"
2144 if test "x$HAVE_EGL_DRIVER_GLX" != "x"; then
2145 egl_drivers="$egl_drivers builtin:egl_glx"
2147 if test "x$HAVE_EGL_DRIVER_DRI2" != "x"; then
2148 egl_drivers="$egl_drivers builtin:egl_dri2"
2151 if test "x$HAVE_ST_EGL" = xyes; then
2152 echo " EGL drivers: ${egl_drivers} egl_gallium"
2153 echo " EGL Gallium STs:$EGL_CLIENT_APIS"
2155 echo " EGL drivers: $egl_drivers"
2160 if test "x$MESA_LLVM" = x1; then
2162 echo " llvm-config: $LLVM_CONFIG"
2163 echo " llvm-version: $LLVM_VERSION"
2169 if echo "$SRC_DIRS" | grep 'gallium' >/dev/null 2>&1; then
2170 echo " Gallium: yes"
2171 echo " Gallium dirs: $GALLIUM_DIRS"
2172 echo " Target dirs: $GALLIUM_TARGET_DIRS"
2173 echo " Winsys dirs: $GALLIUM_WINSYS_DIRS"
2174 echo " Driver dirs: $GALLIUM_DRIVERS_DIRS"
2175 echo " Trackers dirs: $GALLIUM_STATE_TRACKERS_DIRS"
2183 echo " Shared libs: $enable_shared"
2184 echo " Static libs: $enable_static"
2186 dnl Compiler options
2187 # cleanup the CFLAGS/CXXFLAGS/DEFINES vars
2188 cflags=`echo $CFLAGS $OPT_FLAGS $PIC_FLAGS $ARCH_FLAGS | \
2189 $SED 's/^ *//;s/ */ /;s/ *$//'`
2190 cxxflags=`echo $CXXFLAGS $OPT_FLAGS $PIC_FLAGS $ARCH_FLAGS | \
2191 $SED 's/^ *//;s/ */ /;s/ *$//'`
2192 defines=`echo $DEFINES $ASM_FLAGS | $SED 's/^ *//;s/ */ /;s/ *$//'`
2194 echo " CFLAGS: $cflags"
2195 echo " CXXFLAGS: $cxxflags"
2196 echo " Macros: $defines"
2198 echo " PYTHON2: $PYTHON2"
2201 echo " Run '${MAKE-make}' to build Mesa"