anv/image: Add support for the VkImageViewUsageCreateInfoKHR struct
[mesa.git] / configure.ac
1 dnl Copyright © 2011-2014 Intel Corporation
2 dnl Copyright © 2011-2014 Emil Velikov <emil.l.velikov@gmail.com>
3 dnl Copyright © 2007-2010 Dan Nicholson
4 dnl Copyright © 2010-2014 Marek Olšák <maraeo@gmail.com>
5 dnl Copyright © 2010-2014 Christian König
6 dnl Copyright © 2012-2014 Tom Stellard <tstellar@gmail.com>
7 dnl Copyright © 2009-2012 Jakob Bornecrantz
8 dnl Copyright © 2009-2014 Jon TURNEY
9 dnl Copyright © 2011-2012 Benjamin Franzke
10 dnl Copyright © 2008-2014 David Airlie
11 dnl Copyright © 2009-2013 Brian Paul
12 dnl
13 dnl Permission is hereby granted, free of charge, to any person obtaining a
14 dnl copy of this software and associated documentation files (the "Software"),
15 dnl to deal in the Software without restriction, including without limitation
16 dnl the rights to use, copy, modify, merge, publish, distribute, sublicense,
17 dnl and/or sell copies of the Software, and to permit persons to whom the
18 dnl Software is furnished to do so, subject to the following conditions:
19 dnl
20 dnl The above copyright notice and this permission notice (including the next
21 dnl paragraph) shall be included in all copies or substantial portions of the
22 dnl Software.
23 dnl
24 dnl THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25 dnl IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26 dnl FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
27 dnl THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28 dnl LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
29 dnl FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
30 dnl DEALINGS IN THE SOFTWARE.
31 dnl
32 dnl Process this file with autoconf to create configure.
33
34 AC_PREREQ([2.60])
35
36 dnl Tell the user about autoconf.html in the --help output
37 m4_divert_once([HELP_END], [
38 See docs/autoconf.html for more details on the options for Mesa.])
39
40 m4_define(MESA_VERSION, m4_normalize(m4_include(VERSION)))
41 AC_INIT([Mesa], [MESA_VERSION],
42 [https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa])
43 AC_CONFIG_AUX_DIR([bin])
44 AC_CONFIG_MACRO_DIR([m4])
45 AC_CANONICAL_SYSTEM
46 AM_INIT_AUTOMAKE([foreign tar-ustar dist-xz subdir-objects])
47
48 dnl We only support native Windows builds (MinGW/MSVC) through SCons.
49 case "$host_os" in
50 mingw*)
51 AC_MSG_ERROR([MinGW build not supported through autoconf/automake, use SCons instead])
52 ;;
53 esac
54
55 # Support silent build rules, requires at least automake-1.11. Disable
56 # by either passing --disable-silent-rules to configure or passing V=1
57 # to make
58 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])],
59 [AC_SUBST([AM_DEFAULT_VERBOSITY], [1])])
60
61 m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
62
63 dnl Set internal versions
64 OSMESA_VERSION=8
65 AC_SUBST([OSMESA_VERSION])
66 OPENCL_VERSION=1
67 AC_SUBST([OPENCL_VERSION])
68
69 # The idea is that libdrm is distributed as one cohesive package, even
70 # though it is composed of multiple libraries. However some drivers
71 # may have different version requirements than others. This list
72 # codifies which drivers need which version of libdrm. Any libdrm
73 # version dependencies in non-driver-specific code should be reflected
74 # in the first entry.
75 LIBDRM_REQUIRED=2.4.75
76 LIBDRM_RADEON_REQUIRED=2.4.71
77 LIBDRM_AMDGPU_REQUIRED=2.4.82
78 LIBDRM_INTEL_REQUIRED=2.4.75
79 LIBDRM_NVVIEUX_REQUIRED=2.4.66
80 LIBDRM_NOUVEAU_REQUIRED=2.4.66
81 LIBDRM_FREEDRENO_REQUIRED=2.4.74
82 LIBDRM_ETNAVIV_REQUIRED=2.4.82
83
84 dnl Versions for external dependencies
85 DRI2PROTO_REQUIRED=2.8
86 GLPROTO_REQUIRED=1.4.14
87 LIBOMXIL_BELLAGIO_REQUIRED=0.0
88 LIBVA_REQUIRED=0.38.0
89 VDPAU_REQUIRED=1.1
90 WAYLAND_REQUIRED=1.11
91 WAYLAND_PROTOCOLS_REQUIRED=1.8
92 XCB_REQUIRED=1.9.3
93 XCBDRI2_REQUIRED=1.8
94 XCBGLX_REQUIRED=1.8.1
95 XDAMAGE_REQUIRED=1.1
96 XSHMFENCE_REQUIRED=1.1
97 XVMC_REQUIRED=1.0.6
98 PYTHON_MAKO_REQUIRED=0.8.0
99 LIBSENSORS_REQUIRED=4.0.0
100 ZLIB_REQUIRED=1.2.3
101
102 dnl LLVM versions
103 LLVM_REQUIRED_GALLIUM=3.3.0
104 LLVM_REQUIRED_OPENCL=3.6.0
105 LLVM_REQUIRED_R600=3.9.0
106 LLVM_REQUIRED_RADEONSI=3.9.0
107 LLVM_REQUIRED_RADV=3.9.0
108 LLVM_REQUIRED_SWR=3.9.0
109
110 dnl Check for progs
111 AC_PROG_CPP
112 AC_PROG_CC
113 AC_PROG_CXX
114 AM_PROG_CC_C_O
115 AM_PROG_AS
116 AX_CHECK_GNU_MAKE
117 AC_CHECK_PROGS([PYTHON2], [python2.7 python2 python])
118 AC_PROG_SED
119 AC_PROG_MKDIR_P
120
121 AC_SYS_LARGEFILE
122
123 LT_PREREQ([2.2])
124 LT_INIT([disable-static])
125
126 AC_CHECK_PROG(RM, rm, [rm -f])
127
128 AX_PROG_BISON([],
129 AS_IF([test ! -f "$srcdir/src/compiler/glsl/glcpp/glcpp-parse.c"],
130 [AC_MSG_ERROR([bison not found - unable to compile glcpp-parse.y])]))
131 AX_PROG_FLEX([],
132 AS_IF([test ! -f "$srcdir/src/compiler/glsl/glcpp/glcpp-lex.c"],
133 [AC_MSG_ERROR([flex not found - unable to compile glcpp-lex.l])]))
134
135 AC_CHECK_PROG(INDENT, indent, indent, cat)
136 if test "x$INDENT" != "xcat"; then
137 # Only GNU indent is supported
138 INDENT_VERSION=`indent --version | grep GNU`
139 if test $? -eq 0; then
140 AC_SUBST(INDENT_FLAGS, '-i4 -nut -br -brs -npcs -ce -TGLubyte -TGLbyte -TBool')
141 else
142 INDENT="cat"
143 fi
144 fi
145
146 AX_CHECK_PYTHON_MAKO_MODULE($PYTHON_MAKO_REQUIRED)
147
148 if test -z "$PYTHON2"; then
149 if test ! -f "$srcdir/src/util/format_srgb.c"; then
150 AC_MSG_ERROR([Python not found - unable to generate sources])
151 fi
152 else
153 if test "x$acv_mako_found" = xno; then
154 if test ! -f "$srcdir/src/mesa/main/format_unpack.c"; then
155 AC_MSG_ERROR([Python mako module v$PYTHON_MAKO_REQUIRED or higher not found])
156 fi
157 fi
158 fi
159
160 AC_PROG_INSTALL
161
162 dnl We need a POSIX shell for parts of the build. Assume we have one
163 dnl in most cases.
164 case "$host_os" in
165 solaris*)
166 # Solaris /bin/sh is too old/non-POSIX compliant
167 AC_PATH_PROGS(POSIX_SHELL, [ksh93 ksh sh])
168 SHELL="$POSIX_SHELL"
169 ;;
170 esac
171
172 dnl clang is mostly GCC-compatible, but its version is much lower,
173 dnl so we have to check for it.
174 AC_MSG_CHECKING([if compiling with clang])
175
176 AC_COMPILE_IFELSE(
177 [AC_LANG_PROGRAM([], [[
178 #ifndef __clang__
179 not clang
180 #endif
181 ]])],
182 [acv_mesa_CLANG=yes], [acv_mesa_CLANG=no])
183
184 AC_MSG_RESULT([$acv_mesa_CLANG])
185
186 dnl If we're using GCC, make sure that it is at least version 4.2.0. Older
187 dnl versions are explictly not supported.
188 GEN_ASM_OFFSETS=no
189 USE_GNU99=no
190 if test "x$GCC" = xyes -a "x$acv_mesa_CLANG" = xno; then
191 AC_MSG_CHECKING([whether gcc version is sufficient])
192 major=0
193 minor=0
194
195 GCC_VERSION=`$CC -dumpversion`
196 if test $? -eq 0; then
197 GCC_VERSION_MAJOR=`echo $GCC_VERSION | cut -d. -f1`
198 GCC_VERSION_MINOR=`echo $GCC_VERSION | cut -d. -f2`
199 fi
200
201 if test $GCC_VERSION_MAJOR -lt 4 -o $GCC_VERSION_MAJOR -eq 4 -a $GCC_VERSION_MINOR -lt 2 ; then
202 AC_MSG_RESULT([no])
203 AC_MSG_ERROR([If using GCC, version 4.2.0 or later is required.])
204 else
205 AC_MSG_RESULT([yes])
206 fi
207
208 if test $GCC_VERSION_MAJOR -lt 4 -o $GCC_VERSION_MAJOR -eq 4 -a $GCC_VERSION_MINOR -lt 6 ; then
209 USE_GNU99=yes
210 fi
211 if test "x$cross_compiling" = xyes; then
212 GEN_ASM_OFFSETS=yes
213 fi
214 fi
215
216 dnl We don't support building Mesa with Sun C compiler
217 dnl https://bugs.freedesktop.org/show_bug.cgi?id=93189
218 AC_CHECK_DECL([__SUNPRO_C], [SUNCC=yes], [SUNCC=no])
219 if test "x$SUNCC" = xyes; then
220 AC_MSG_ERROR([Building with Sun C compiler is not supported, use GCC instead.])
221 fi
222
223 dnl Check for compiler builtins
224 AX_GCC_BUILTIN([__builtin_bswap32])
225 AX_GCC_BUILTIN([__builtin_bswap64])
226 AX_GCC_BUILTIN([__builtin_clz])
227 AX_GCC_BUILTIN([__builtin_clzll])
228 AX_GCC_BUILTIN([__builtin_ctz])
229 AX_GCC_BUILTIN([__builtin_expect])
230 AX_GCC_BUILTIN([__builtin_ffs])
231 AX_GCC_BUILTIN([__builtin_ffsll])
232 AX_GCC_BUILTIN([__builtin_popcount])
233 AX_GCC_BUILTIN([__builtin_popcountll])
234 AX_GCC_BUILTIN([__builtin_unreachable])
235
236 AX_GCC_FUNC_ATTRIBUTE([const])
237 AX_GCC_FUNC_ATTRIBUTE([flatten])
238 AX_GCC_FUNC_ATTRIBUTE([format])
239 AX_GCC_FUNC_ATTRIBUTE([malloc])
240 AX_GCC_FUNC_ATTRIBUTE([packed])
241 AX_GCC_FUNC_ATTRIBUTE([pure])
242 AX_GCC_FUNC_ATTRIBUTE([returns_nonnull])
243 AX_GCC_FUNC_ATTRIBUTE([unused])
244 AX_GCC_FUNC_ATTRIBUTE([visibility])
245 AX_GCC_FUNC_ATTRIBUTE([warn_unused_result])
246 AX_GCC_FUNC_ATTRIBUTE([weak])
247 AX_GCC_FUNC_ATTRIBUTE([alias])
248
249 AM_CONDITIONAL([GEN_ASM_OFFSETS], test "x$GEN_ASM_OFFSETS" = xyes)
250
251 dnl Make sure the pkg-config macros are defined
252 m4_ifndef([PKG_PROG_PKG_CONFIG],
253 [m4_fatal([Could not locate the pkg-config autoconf macros.
254 These are usually located in /usr/share/aclocal/pkg.m4. If your macros
255 are in a different location, try setting the environment variable
256 ACLOCAL="aclocal -I/other/macro/dir" before running autoreconf.])])
257 PKG_PROG_PKG_CONFIG()
258
259 dnl LIB_DIR - library basename
260 LIB_DIR=`echo $libdir | $SED 's%.*/%%'`
261 AC_SUBST([LIB_DIR])
262
263 dnl Cache LDFLAGS and CPPFLAGS so we can add to them and restore later
264 _SAVE_LDFLAGS="$LDFLAGS"
265 _SAVE_CPPFLAGS="$CPPFLAGS"
266
267 dnl Compiler macros
268 DEFINES="-D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS"
269 AC_SUBST([DEFINES])
270 android=no
271 case "$host_os" in
272 *-android*)
273 android=yes
274 ;;
275 linux*|*-gnu*|gnu*|cygwin*)
276 DEFINES="$DEFINES -D_GNU_SOURCE"
277 ;;
278 solaris*)
279 DEFINES="$DEFINES -DSVR4"
280 ;;
281 esac
282
283 AM_CONDITIONAL(HAVE_ANDROID, test "x$android" = xyes)
284
285 dnl
286 dnl Check compiler flags
287 dnl
288 AX_CHECK_COMPILE_FLAG([-Wall], [CFLAGS="$CFLAGS -Wall"])
289 AX_CHECK_COMPILE_FLAG([-Werror=implicit-function-declaration], [CFLAGS="$CFLAGS -Werror=implicit-function-declaration"])
290 AX_CHECK_COMPILE_FLAG([-Werror=missing-prototypes], [CFLAGS="$CFLAGS -Werror=missing-prototypes"])
291 AX_CHECK_COMPILE_FLAG([-Wmissing-prototypes], [CFLAGS="$CFLAGS -Wmissing-prototypes"])
292 AX_CHECK_COMPILE_FLAG([-fno-math-errno], [CFLAGS="$CFLAGS -fno-math-errno"])
293 AX_CHECK_COMPILE_FLAG([-fno-trapping-math], [CFLAGS="$CFLAGS -fno-trapping-math"])
294 AX_CHECK_COMPILE_FLAG([-fvisibility=hidden], [VISIBILITY_CFLAGS="-fvisibility=hidden"])
295
296 dnl
297 dnl Check C++ compiler flags
298 dnl
299 AC_LANG_PUSH([C++])
300 AX_CHECK_COMPILE_FLAG([-Wall], [CXXFLAGS="$CXXFLAGS -Wall"])
301 AX_CHECK_COMPILE_FLAG([-fno-math-errno], [CXXFLAGS="$CXXFLAGS -fno-math-errno"])
302 AX_CHECK_COMPILE_FLAG([-fno-trapping-math], [CXXFLAGS="$CXXFLAGS -fno-trapping-math"])
303 AX_CHECK_COMPILE_FLAG([-fvisibility=hidden], [VISIBILITY_CXXFLAGS="-fvisibility=hidden"])
304 AC_LANG_POP([C++])
305
306 # Flags to help ensure that certain portions of the code -- and only those
307 # portions -- can be built with MSVC:
308 # - src/util, src/gallium/auxiliary, rc/gallium/drivers/llvmpipe, and
309 # - non-Linux/Posix OpenGL portions needs to build on MSVC 2013 (which
310 # supports most of C99)
311 # - the rest has no compiler compiler restrictions
312 AX_CHECK_COMPILE_FLAG([-Werror=pointer-arith], [MSVC2013_COMPAT_CFLAGS="-Werror=pointer-arith"])
313 AX_CHECK_COMPILE_FLAG([-Werror=vla], [MSVC2013_COMPAT_CFLAGS="-Werror=vla"])
314 AC_LANG_PUSH([C++])
315 AX_CHECK_COMPILE_FLAG([-Werror=pointer-arith], [MSVC2013_COMPAT_CXXFLAGS="-Werror=pointer-arith"])
316 AX_CHECK_COMPILE_FLAG([-Werror=vla], [MSVC2013_COMPAT_CXXFLAGS="-Werror=vla"])
317 AC_LANG_POP([C++])
318
319 AC_SUBST([MSVC2013_COMPAT_CFLAGS])
320 AC_SUBST([MSVC2013_COMPAT_CXXFLAGS])
321
322 if test "x$GCC" = xyes; then
323 if test "x$USE_GNU99" = xyes; then
324 CFLAGS="$CFLAGS -std=gnu99"
325 else
326 CFLAGS="$CFLAGS -std=c99"
327 fi
328 fi
329
330 dnl even if the compiler appears to support it, using visibility attributes isn't
331 dnl going to do anything useful currently on cygwin apart from emit lots of warnings
332 case "$host_os" in
333 cygwin*)
334 VISIBILITY_CFLAGS=""
335 VISIBILITY_CXXFLAGS=""
336 ;;
337 esac
338
339 AC_SUBST([VISIBILITY_CFLAGS])
340 AC_SUBST([VISIBILITY_CXXFLAGS])
341
342 AX_CHECK_COMPILE_FLAG([-Wno-override-init], [WNO_OVERRIDE_INIT="-Wno-override-init"]) # gcc
343 AX_CHECK_COMPILE_FLAG([-Wno-initializer-overrides], [WNO_OVERRIDE_INIT="-Wno-initializer-overrides"]) # clang
344 AC_SUBST([WNO_OVERRIDE_INIT])
345
346 dnl
347 dnl Optional flags, check for compiler support
348 dnl
349 SSE41_CFLAGS="-msse4.1"
350 dnl Code compiled by GCC with -msse* assumes a 16 byte aligned
351 dnl stack, but on x86-32 such alignment is not guaranteed.
352 case "$target_cpu" in
353 i?86)
354 SSE41_CFLAGS="$SSE41_CFLAGS -mstackrealign"
355 ;;
356 esac
357 save_CFLAGS="$CFLAGS"
358 CFLAGS="$SSE41_CFLAGS $CFLAGS"
359 AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
360 #include <smmintrin.h>
361 int param;
362 int main () {
363 __m128i a = _mm_set1_epi32 (param), b = _mm_set1_epi32 (param + 1), c;
364 c = _mm_max_epu32(a, b);
365 return _mm_cvtsi128_si32(c);
366 }]])], SSE41_SUPPORTED=1)
367 CFLAGS="$save_CFLAGS"
368 if test "x$SSE41_SUPPORTED" = x1; then
369 DEFINES="$DEFINES -DUSE_SSE41"
370 fi
371 AM_CONDITIONAL([SSE41_SUPPORTED], [test x$SSE41_SUPPORTED = x1])
372 AC_SUBST([SSE41_CFLAGS], $SSE41_CFLAGS)
373
374 dnl Check for new-style atomic builtins
375 AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
376 int main() {
377 int n;
378 return __atomic_load_n(&n, __ATOMIC_ACQUIRE);
379 }]])], GCC_ATOMIC_BUILTINS_SUPPORTED=1)
380 if test "x$GCC_ATOMIC_BUILTINS_SUPPORTED" = x1; then
381 DEFINES="$DEFINES -DUSE_GCC_ATOMIC_BUILTINS"
382 fi
383 AM_CONDITIONAL([GCC_ATOMIC_BUILTINS_SUPPORTED], [test x$GCC_ATOMIC_BUILTINS_SUPPORTED = x1])
384
385 dnl Check if host supports 64-bit atomics
386 dnl note that lack of support usually results in link (not compile) error
387 AC_MSG_CHECKING(whether __sync_add_and_fetch_8 is supported)
388 AC_LINK_IFELSE([AC_LANG_SOURCE([[
389 #include <stdint.h>
390 uint64_t v;
391 int main() {
392 return __sync_add_and_fetch(&v, (uint64_t)1);
393 }]])], GCC_64BIT_ATOMICS_SUPPORTED=yes, GCC_64BIT_ATOMICS_SUPPORTED=no)
394 if test "x$GCC_64BIT_ATOMICS_SUPPORTED" != xyes; then
395 DEFINES="$DEFINES -DMISSING_64BIT_ATOMICS"
396 fi
397 AC_MSG_RESULT($GCC_64BIT_ATOMICS_SUPPORTED)
398
399 dnl Check for Endianness
400 AC_C_BIGENDIAN(
401 little_endian=no,
402 little_endian=yes,
403 little_endian=no,
404 little_endian=no
405 )
406
407 dnl Check for POWER8 Architecture
408 PWR8_CFLAGS="-mpower8-vector"
409 have_pwr8_intrinsics=no
410 AC_MSG_CHECKING(whether gcc supports -mpower8-vector)
411 save_CFLAGS=$CFLAGS
412 CFLAGS="$PWR8_CFLAGS $CFLAGS"
413 AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
414 #if defined(__GNUC__) && (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 8))
415 #error "Need GCC >= 4.8 for sane POWER8 support"
416 #endif
417 #include <altivec.h>
418 int main () {
419 vector unsigned char r;
420 vector unsigned int v = vec_splat_u32 (1);
421 r = __builtin_vec_vgbbd ((vector unsigned char) v);
422 return 0;
423 }]])], have_pwr8_intrinsics=yes)
424 CFLAGS=$save_CFLAGS
425
426 AC_ARG_ENABLE(pwr8,
427 [AS_HELP_STRING([--disable-pwr8],
428 [disable POWER8-specific instructions])],
429 [enable_pwr8=$enableval], [enable_pwr8=auto])
430
431 if test "x$enable_pwr8" = xno ; then
432 have_pwr8_intrinsics=disabled
433 fi
434
435 if test $have_pwr8_intrinsics = yes && test $little_endian = yes ; then
436 DEFINES="$DEFINES -D_ARCH_PWR8"
437 CXXFLAGS="$CXXFLAGS $PWR8_CFLAGS"
438 CFLAGS="$CFLAGS $PWR8_CFLAGS"
439 else
440 PWR8_CFLAGS=
441 fi
442
443 AC_MSG_RESULT($have_pwr8_intrinsics)
444 if test "x$enable_pwr8" = xyes && test $have_pwr8_intrinsics = no ; then
445 AC_MSG_ERROR([POWER8 compiler support not detected])
446 fi
447
448 if test $have_pwr8_intrinsics = yes && test $little_endian = no ; then
449 AC_MSG_WARN([POWER8 optimization is enabled only on POWER8 Little-Endian])
450 fi
451
452 AC_SUBST([PWR8_CFLAGS], $PWR8_CFLAGS)
453
454 dnl Can't have static and shared libraries, default to static if user
455 dnl explicitly requested. If both disabled, set to static since shared
456 dnl was explicitly requested.
457 case "x$enable_static$enable_shared" in
458 xyesyes)
459 AC_MSG_ERROR([Cannot enable both static and shared. Building using --enable-shared is strongly recommended])
460 ;;
461 xnono)
462 AC_MSG_ERROR([Cannot disable both static and shared. Building using --enable-shared is strongly recommended])
463 ;;
464 esac
465
466 AM_CONDITIONAL(BUILD_SHARED, test "x$enable_shared" = xyes)
467
468 dnl
469 dnl other compiler options
470 dnl
471 AC_ARG_ENABLE([debug],
472 [AS_HELP_STRING([--enable-debug],
473 [use debug compiler flags and macros @<:@default=disabled@:>@])],
474 [enable_debug="$enableval"],
475 [enable_debug=no]
476 )
477
478 AC_ARG_ENABLE([profile],
479 [AS_HELP_STRING([--enable-profile],
480 [enable profiling of code @<:@default=disabled@:>@])],
481 [enable_profile="$enableval"],
482 [enable_profile=no]
483 )
484
485 AC_ARG_ENABLE([sanitize],
486 [AS_HELP_STRING([--enable-sanitize@<:@=address|undefined@:>@],
487 [enable code sanitizer @<:@default=disabled@:>@])],
488 [enable_sanitize="$enableval"],
489 [enable_sanitize=no])
490
491 if test "x$enable_profile" = xyes; then
492 DEFINES="$DEFINES -DPROFILE"
493 if test "x$GCC" = xyes; then
494 CFLAGS="$CFLAGS -fno-omit-frame-pointer"
495 fi
496 if test "x$GXX" = xyes; then
497 CXXFLAGS="$CXXFLAGS -fno-omit-frame-pointer"
498 fi
499 fi
500
501 if test "x$enable_debug" = xyes; then
502 DEFINES="$DEFINES -DDEBUG"
503 if test "x$enable_profile" = xyes; then
504 AC_MSG_WARN([Debug and Profile are enabled at the same time])
505 fi
506 if test "x$GCC" = xyes; then
507 if ! echo "$CFLAGS" | grep -q -e '-g'; then
508 CFLAGS="$CFLAGS -g"
509 fi
510 if ! echo "$CFLAGS" | grep -q -e '-O'; then
511 CFLAGS="$CFLAGS -O0"
512 fi
513 fi
514 if test "x$GXX" = xyes; then
515 if ! echo "$CXXFLAGS" | grep -q -e '-g'; then
516 CXXFLAGS="$CXXFLAGS -g"
517 fi
518 if ! echo "$CXXFLAGS" | grep -q -e '-O'; then
519 CXXFLAGS="$CXXFLAGS -O0"
520 fi
521 fi
522 else
523 DEFINES="$DEFINES -DNDEBUG"
524 fi
525
526 if test "x$enable_sanitize" != xno; then
527 if test "x$enable_profile" = xyes; then
528 AC_MSG_WARN([Sanitize and Profile are enabled at the same time])
529 fi
530
531 CFLAGS="$CFLAGS -fsanitize=$enable_sanitize"
532 CXXFLAGS="$CXXFLAGS -fsanitize=$enable_sanitize"
533 LDFLAGS="$LDFLAGS -fsanitize=$enable_sanitize"
534
535 AC_LINK_IFELSE(
536 [AC_LANG_SOURCE([int main(){return 0;}])],
537 [],
538 [AC_MSG_FAILURE([sanitize flags '$enable_sanitize' not supported])])
539 fi
540
541 dnl
542 dnl Check if linker supports -Bsymbolic
543 dnl
544 save_LDFLAGS=$LDFLAGS
545 LDFLAGS="$LDFLAGS -Wl,-Bsymbolic"
546 AC_MSG_CHECKING([if ld supports -Bsymbolic])
547 AC_LINK_IFELSE(
548 [AC_LANG_SOURCE([int main() { return 0;}])],
549 [AC_MSG_RESULT([yes])
550 BSYMBOLIC="-Wl,-Bsymbolic";],
551 [AC_MSG_RESULT([no])
552 BSYMBOLIC="";])
553 LDFLAGS=$save_LDFLAGS
554
555 AC_SUBST([BSYMBOLIC])
556
557 dnl
558 dnl Check if linker supports garbage collection
559 dnl
560 save_LDFLAGS=$LDFLAGS
561 LDFLAGS="$LDFLAGS -Wl,--gc-sections"
562 AC_MSG_CHECKING([whether ld supports --gc-sections])
563 AC_LINK_IFELSE(
564 [AC_LANG_SOURCE([static char UnusedFunc() { return 5; } int main() { return 0;}])],
565 [AC_MSG_RESULT([yes])
566 GC_SECTIONS="-Wl,--gc-sections";],
567 [AC_MSG_RESULT([no])
568 GC_SECTIONS="";])
569 LDFLAGS=$save_LDFLAGS
570
571 AC_SUBST([GC_SECTIONS])
572
573 dnl
574 dnl OpenBSD does not have DT_NEEDED entries for libc by design
575 dnl so when these flags are passed to ld via libtool the checks will fail
576 dnl
577 case "$host_os" in
578 openbsd* | darwin* )
579 LD_NO_UNDEFINED="" ;;
580 *)
581 if test "x$enable_sanitize" = xno; then
582 LD_NO_UNDEFINED="-Wl,--no-undefined"
583 else
584 LD_NO_UNDEFINED=""
585 fi
586 ;;
587 esac
588
589 AC_SUBST([LD_NO_UNDEFINED])
590
591 dnl
592 dnl Check if linker supports version scripts
593 dnl
594 AC_MSG_CHECKING([if the linker supports version-scripts])
595 save_LDFLAGS=$LDFLAGS
596 LDFLAGS="$LDFLAGS -Wl,--version-script=conftest.map"
597 cat > conftest.map <<EOF
598 VERSION_1 {
599 global:
600 main;
601
602 local:
603 *;
604 };
605 EOF
606 AC_LINK_IFELSE(
607 [AC_LANG_SOURCE([int main() { return 0;}])],
608 [have_ld_version_script=yes;AC_MSG_RESULT(yes)],
609 [have_ld_version_script=no; AC_MSG_RESULT(no)])
610 LDFLAGS=$save_LDFLAGS
611 AM_CONDITIONAL(HAVE_LD_VERSION_SCRIPT, test "$have_ld_version_script" = "yes")
612
613 dnl
614 dnl Check if linker supports dynamic list files
615 dnl
616 AC_MSG_CHECKING([if the linker supports --dynamic-list])
617 save_LDFLAGS=$LDFLAGS
618 LDFLAGS="$LDFLAGS -Wl,--dynamic-list=conftest.dyn"
619 cat > conftest.dyn <<EOF
620 {
621 radeon_drm_winsys_create;
622 };
623 EOF
624 AC_LINK_IFELSE(
625 [AC_LANG_SOURCE([int main() { return 0;}])],
626 [have_ld_dynamic_list=yes;AC_MSG_RESULT(yes)],
627 [have_ld_dynamic_list=no; AC_MSG_RESULT(no)])
628 LDFLAGS=$save_LDFLAGS
629 AM_CONDITIONAL(HAVE_LD_DYNAMIC_LIST, test "$have_ld_dynamic_list" = "yes")
630
631 dnl
632 dnl compatibility symlinks
633 dnl
634 case "$host_os" in
635 linux* )
636 HAVE_COMPAT_SYMLINKS=yes ;;
637 * )
638 HAVE_COMPAT_SYMLINKS=no ;;
639 esac
640
641 AM_CONDITIONAL(HAVE_COMPAT_SYMLINKS, test "x$HAVE_COMPAT_SYMLINKS" = xyes)
642
643 dnl
644 dnl library names
645 dnl
646 dnl Unfortunately we need to do a few things that libtool can't help us with,
647 dnl so we need some knowledge of shared library filenames:
648 dnl
649 dnl LIB_EXT is the extension used when creating symlinks for alternate
650 dnl filenames for a shared library which will be dynamically loaded
651 dnl
652 dnl IMP_LIB_EXT is the extension used when checking for the presence of a
653 dnl the file for a shared library we wish to link with
654 dnl
655 case "$host_os" in
656 darwin* )
657 LIB_EXT='dylib'
658 IMP_LIB_EXT=$LIB_EXT
659 ;;
660 cygwin* )
661 LIB_EXT='dll'
662 IMP_LIB_EXT='dll.a'
663 ;;
664 aix* )
665 LIB_EXT='a'
666 IMP_LIB_EXT=$LIB_EXT
667 ;;
668 * )
669 LIB_EXT='so'
670 IMP_LIB_EXT=$LIB_EXT
671 ;;
672 esac
673
674 AC_SUBST([LIB_EXT])
675
676 dnl
677 dnl potentially-infringing-but-nobody-knows-for-sure stuff
678 dnl
679 AC_ARG_ENABLE([texture-float],
680 [AS_HELP_STRING([--enable-texture-float],
681 [enable floating-point textures and renderbuffers @<:@default=disabled@:>@])],
682 [enable_texture_float="$enableval"],
683 [enable_texture_float=no]
684 )
685 if test "x$enable_texture_float" = xyes; then
686 AC_MSG_WARN([Floating-point textures enabled.])
687 AC_MSG_WARN([Please consult docs/patents.txt with your lawyer before building Mesa.])
688 DEFINES="$DEFINES -DTEXTURE_FLOAT_ENABLED"
689 fi
690
691 dnl
692 dnl Arch/platform-specific settings
693 dnl
694 AC_ARG_ENABLE([asm],
695 [AS_HELP_STRING([--disable-asm],
696 [disable assembly usage @<:@default=enabled on supported platforms@:>@])],
697 [enable_asm="$enableval"],
698 [enable_asm=yes]
699 )
700 asm_arch=""
701 AC_MSG_CHECKING([whether to enable assembly])
702 test "x$enable_asm" = xno && AC_MSG_RESULT([no])
703 # disable if cross compiling on x86/x86_64 since we must run gen_matypes
704 if test "x$enable_asm" = xyes -a "x$cross_compiling" = xyes; then
705 case "$host_cpu" in
706 i?86 | x86_64 | amd64)
707 if test "x$host_cpu" != "x$target_cpu"; then
708 enable_asm=no
709 AC_MSG_RESULT([no, cross compiling])
710 fi
711 ;;
712 esac
713 fi
714 # check for supported arches
715 if test "x$enable_asm" = xyes; then
716 case "$host_cpu" in
717 i?86)
718 case "$host_os" in
719 linux* | *freebsd* | dragonfly* | *netbsd* | openbsd* | gnu*)
720 asm_arch=x86
721 ;;
722 esac
723 ;;
724 x86_64|amd64)
725 case "$host_os" in
726 linux* | *freebsd* | dragonfly* | *netbsd* | openbsd*)
727 asm_arch=x86_64
728 ;;
729 esac
730 ;;
731 sparc*)
732 case "$host_os" in
733 linux*)
734 asm_arch=sparc
735 ;;
736 esac
737 ;;
738 powerpc64le)
739 case "$host_os" in
740 linux*)
741 asm_arch=ppc64le
742 ;;
743 esac
744 ;;
745 aarch64)
746 case "$host_os" in
747 linux*)
748 asm_arch=aarch64
749 ;;
750 esac
751 ;;
752 arm)
753 case "$host_os" in
754 linux*)
755 asm_arch=arm
756 ;;
757 esac
758 ;;
759 esac
760
761 case "$asm_arch" in
762 x86)
763 DEFINES="$DEFINES -DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_3DNOW_ASM -DUSE_SSE_ASM"
764 AC_MSG_RESULT([yes, x86])
765 ;;
766 x86_64|amd64)
767 DEFINES="$DEFINES -DUSE_X86_64_ASM"
768 AC_MSG_RESULT([yes, x86_64])
769 ;;
770 sparc)
771 DEFINES="$DEFINES -DUSE_SPARC_ASM"
772 AC_MSG_RESULT([yes, sparc])
773 ;;
774 ppc64le)
775 DEFINES="$DEFINES -DUSE_PPC64LE_ASM"
776 AC_MSG_RESULT([yes, ppc64le])
777 ;;
778 aarch64)
779 DEFINES="$DEFINES -DUSE_AARCH64_ASM"
780 AC_MSG_RESULT([yes, aarch64])
781 ;;
782 arm)
783 DEFINES="$DEFINES -DUSE_ARM_ASM"
784 AC_MSG_RESULT([yes, arm])
785 ;;
786 *)
787 AC_MSG_RESULT([no, platform not supported])
788 ;;
789 esac
790 fi
791
792 AC_HEADER_MAJOR
793 AC_CHECK_HEADER([xlocale.h], [DEFINES="$DEFINES -DHAVE_XLOCALE_H"])
794 AC_CHECK_HEADER([sys/sysctl.h], [DEFINES="$DEFINES -DHAVE_SYS_SYSCTL_H"])
795 AC_CHECK_FUNC([strtof], [DEFINES="$DEFINES -DHAVE_STRTOF"])
796 AC_CHECK_FUNC([mkostemp], [DEFINES="$DEFINES -DHAVE_MKOSTEMP"])
797
798 AC_MSG_CHECKING([whether strtod has locale support])
799 AC_LINK_IFELSE([AC_LANG_SOURCE([[
800 #define _GNU_SOURCE
801 #include <stdlib.h>
802 #include <locale.h>
803 #ifdef HAVE_XLOCALE_H
804 #include <xlocale.h>
805 #endif
806 int main() {
807 locale_t loc = newlocale(LC_CTYPE_MASK, "C", NULL);
808 const char *s = "1.0";
809 char *end;
810 double d = strtod_l(s, end, loc);
811 float f = strtof_l(s, end, loc);
812 freelocale(loc);
813 return 0;
814 }]])],
815 [DEFINES="$DEFINES -DHAVE_STRTOD_L"];
816 AC_MSG_RESULT([yes]),
817 AC_MSG_RESULT([no]))
818
819 dnl Check to see if dlopen is in default libraries (like Solaris, which
820 dnl has it in libc), or if libdl is needed to get it.
821 AC_CHECK_FUNC([dlopen], [DEFINES="$DEFINES -DHAVE_DLOPEN"],
822 [AC_CHECK_LIB([dl], [dlopen],
823 [DEFINES="$DEFINES -DHAVE_DLOPEN"; DLOPEN_LIBS="-ldl"])])
824 AC_SUBST([DLOPEN_LIBS])
825
826 dnl Check if that library also has dladdr
827 save_LIBS="$LIBS"
828 LIBS="$LIBS $DLOPEN_LIBS"
829 AC_CHECK_FUNCS([dladdr])
830 LIBS="$save_LIBS"
831
832 AC_CHECK_FUNC([dl_iterate_phdr], [DEFINES="$DEFINES -DHAVE_DL_ITERATE_PHDR"])
833
834 case "$host_os" in
835 darwin*)
836 ;;
837 *)
838 AC_CHECK_FUNCS([clock_gettime], [CLOCK_LIB=],
839 [AC_CHECK_LIB([rt], [clock_gettime], [CLOCK_LIB=-lrt],
840 [AC_MSG_ERROR([Could not find clock_gettime])])])
841 AC_SUBST([CLOCK_LIB])
842 ;;
843 esac
844
845 dnl See if posix_memalign is available
846 AC_CHECK_FUNC([posix_memalign], [DEFINES="$DEFINES -DHAVE_POSIX_MEMALIGN"])
847
848 dnl Check for zlib
849 PKG_CHECK_MODULES([ZLIB], [zlib >= $ZLIB_REQUIRED])
850
851 dnl Check for pthreads
852 AX_PTHREAD
853 if test "x$ax_pthread_ok" = xno; then
854 AC_MSG_ERROR([Building mesa on this platform requires pthreads])
855 fi
856 dnl AX_PTHREADS leaves PTHREAD_LIBS empty for gcc and sets PTHREAD_CFLAGS
857 dnl to -pthread, which causes problems if we need -lpthread to appear in
858 dnl pkgconfig files. Since Android doesn't have a pthread lib, this check
859 dnl is not valid for that platform.
860 if test "x$android" = xno; then
861 test -z "$PTHREAD_LIBS" && PTHREAD_LIBS="-lpthread"
862 fi
863 dnl According to the manual when using pthreads, one should add -pthread to
864 dnl both compile and link-time arguments.
865 dnl In practise that should be sufficient for all platforms, since any
866 dnl platforms build with GCC and Clang support the flag.
867 PTHREAD_LIBS="$PTHREAD_LIBS -pthread"
868
869 dnl pthread-stubs is mandatory on BSD platforms, due to the nature of the
870 dnl project. Even then there's a notable issue as described in the project README
871 case "$host_os" in
872 linux* | cygwin* | darwin* | solaris* | *-gnu* | gnu*)
873 pthread_stubs_possible="no"
874 ;;
875 * )
876 pthread_stubs_possible="yes"
877 ;;
878 esac
879
880 if test "x$pthread_stubs_possible" = xyes; then
881 PKG_CHECK_MODULES(PTHREADSTUBS, pthread-stubs >= 0.4)
882 fi
883
884 dnl SELinux awareness.
885 AC_ARG_ENABLE([selinux],
886 [AS_HELP_STRING([--enable-selinux],
887 [Build SELinux-aware Mesa @<:@default=disabled@:>@])],
888 [MESA_SELINUX="$enableval"],
889 [MESA_SELINUX=no])
890 if test "x$enable_selinux" = "xyes"; then
891 PKG_CHECK_MODULES([SELINUX], [libselinux], [],
892 [AC_CHECK_HEADER([selinux/selinux.h],[],
893 [AC_MSG_ERROR([SELinux headers not found])])
894 AC_CHECK_LIB([selinux],[is_selinux_enabled],[],
895 [AC_MSG_ERROR([SELinux library not found])])
896 SELINUX_LIBS="-lselinux"])
897 DEFINES="$DEFINES -DMESA_SELINUX"
898 fi
899 AC_SUBST([SELINUX_CFLAGS])
900 AC_SUBST([SELINUX_LIBS])
901
902 dnl
903 dnl LLVM
904 dnl
905 AC_ARG_ENABLE([llvm-shared-libs],
906 [AS_HELP_STRING([--enable-llvm-shared-libs],
907 [link with LLVM shared libraries @<:@default=enabled@:>@])],
908 [enable_llvm_shared_libs="$enableval"],
909 [enable_llvm_shared_libs=yes])
910
911 AC_ARG_WITH([llvm-prefix],
912 [AS_HELP_STRING([--with-llvm-prefix],
913 [Prefix for LLVM installations in non-standard locations])],
914 [llvm_prefix="$withval"],
915 [llvm_prefix=''])
916
917 PKG_CHECK_MODULES([LIBELF], [libelf], [have_libelf=yes], [have_libelf=no])
918 if test "x$have_libelf" = xno; then
919 LIBELF_LIBS=''
920 LIBELF_CFLAGS=''
921 AC_CHECK_LIB([elf], [elf_memory], [have_libelf=yes;LIBELF_LIBS=-lelf], [have_libelf=no])
922 AC_SUBST([LIBELF_LIBS])
923 AC_SUBST([LIBELF_CFLAGS])
924 fi
925
926 if test -z "$LLVM_CONFIG"; then
927 if test -n "$llvm_prefix"; then
928 AC_PATH_TOOL([LLVM_CONFIG], [llvm-config], [no], ["$llvm_prefix/bin"])
929 else
930 AC_PATH_TOOL([LLVM_CONFIG], [llvm-config], [no])
931 fi
932 fi
933
934 llvm_add_component() {
935 new_llvm_component=$1
936 driver_name=$2
937
938 if $LLVM_CONFIG --components | grep -iqw $new_llvm_component ; then
939 LLVM_COMPONENTS="${LLVM_COMPONENTS} ${new_llvm_component}"
940 else
941 AC_MSG_ERROR([LLVM component '$new_llvm_component' not enabled in your LLVM build. Required by $driver_name.])
942 fi
943 }
944
945 llvm_add_default_components() {
946 driver_name=$1
947
948 # Required default components
949 llvm_add_component "bitwriter" $driver_name
950 llvm_add_component "engine" $driver_name
951 llvm_add_component "mcdisassembler" $driver_name
952 llvm_add_component "mcjit" $driver_name
953
954 # Optional default components
955 if $LLVM_CONFIG --components | grep -iqw inteljitevents ; then
956 LLVM_COMPONENTS="$LLVM_COMPONENTS inteljitevents"
957 fi
958 }
959
960 llvm_add_target() {
961 new_llvm_target=$1
962 driver_name=$2
963
964 if $LLVM_CONFIG --targets-built | grep -iqw $new_llvm_target ; then
965 llvm_add_component $new_llvm_target $driver_name
966 else
967 AC_MSG_ERROR([LLVM target '$new_llvm_target' not enabled in your LLVM build. Required by $driver_name.])
968 fi
969 }
970
971 # Call this inside ` ` to get the return value.
972 # $1 is the llvm-config command with arguments.
973 strip_unwanted_llvm_flags() {
974 echo " `$1` " | sed -E \
975 -e 's/[[[:space:]]]+-m[[^[:space:]]]*//g' \
976 -e 's/[[[:space:]]]+-DNDEBUG[[[:space:]]]/ /g' \
977 -e 's/[[[:space:]]]+-D_GNU_SOURCE[[[:space:]]]/ /g' \
978 -e 's/[[[:space:]]]+-pedantic[[[:space:]]]/ /g' \
979 -e 's/[[[:space:]]]+-W[[^[:space:]]]*//g' \
980 -e 's/[[[:space:]]]+-O[[^[:space:]]]*//g' \
981 -e 's/[[[:space:]]]+-g[[^[:space:]]]*//g' \
982 -e 's/-fno-rtti[[[:space:]]]/-Fno-rtti /g' \
983 -e 's/[[[:space:]]]+-f[[^[:space:]]]*//g' \
984 -e 's/-Fno-rtti[[[:space:]]]/-fno-rtti /g' \
985 -e 's/^[[[:space:]]]//' \
986 -e 's/[[[:space:]]]$//'
987 }
988
989 llvm_set_environment_variables() {
990 if test "x$LLVM_CONFIG" != xno; then
991 LLVM_VERSION=`$LLVM_CONFIG --version | egrep -o '^[[0-9.]]+'`
992 LLVM_CPPFLAGS=`strip_unwanted_llvm_flags "$LLVM_CONFIG --cppflags"`
993 LLVM_INCLUDEDIR=`$LLVM_CONFIG --includedir`
994 LLVM_LIBDIR=`$LLVM_CONFIG --libdir`
995
996 # We need to respect LLVM_CPPFLAGS when compiling LLVM headers.
997 save_CFLAGS="$CFLAGS"
998 CFLAGS="$CFLAGS $LLVM_CPPFLAGS"
999
1000 AC_COMPUTE_INT([LLVM_VERSION_MAJOR], [LLVM_VERSION_MAJOR],
1001 [#include "${LLVM_INCLUDEDIR}/llvm/Config/llvm-config.h"])
1002 AC_COMPUTE_INT([LLVM_VERSION_MINOR], [LLVM_VERSION_MINOR],
1003 [#include "${LLVM_INCLUDEDIR}/llvm/Config/llvm-config.h"])
1004 AC_COMPUTE_INT([LLVM_VERSION_PATCH], [LLVM_VERSION_PATCH],
1005 [#include "${LLVM_INCLUDEDIR}/llvm/Config/llvm-config.h"])
1006
1007 CFLAGS="$save_CFLAGS"
1008
1009 # Only needed for LLVM < 3.6.0
1010 if test -z "$LLVM_VERSION_PATCH"; then
1011 LLVM_VERSION_PATCH=0
1012 fi
1013
1014 LLVM_VERSION_INT="${LLVM_VERSION_MAJOR}0${LLVM_VERSION_MINOR}"
1015
1016 FOUND_LLVM=yes
1017 else
1018 FOUND_LLVM=no
1019 LLVM_VERSION_INT=0
1020 fi
1021 }
1022
1023 require_llvm() {
1024 if test "x$enable_llvm" != "xyes"; then
1025 AC_MSG_ERROR([--enable-llvm is required when building $1])
1026 fi
1027 }
1028
1029 llvm_require_version() {
1030 require_llvm $2
1031
1032 llvm_target_version_major=`echo $1 | cut -d. -f1 | egrep -o '^[[0-9]]+'`
1033 llvm_target_version_minor=`echo $1 | cut -d. -f2 | egrep -o '^[[0-9]]+'`
1034 llvm_target_version_patch=`echo $1 | cut -d. -f3 | egrep -o '^[[0-9]]+'`
1035
1036 if test "$LLVM_VERSION_MAJOR" -gt "$llvm_target_version_major"; then
1037 # major > required major
1038 # --> OK
1039 return
1040 fi
1041
1042 if test "$LLVM_VERSION_MAJOR" -eq "$llvm_target_version_major"; then
1043 if test "$LLVM_VERSION_MINOR" -gt "$llvm_target_version_minor"; then
1044 # major = required major and
1045 # minor > required minor
1046 # --> OK
1047 return
1048 else
1049 if test "$LLVM_VERSION_MINOR" -eq "$llvm_target_version_minor"; then
1050 if test "$LLVM_VERSION_PATCH" -ge "$llvm_target_version_patch"; then
1051 # major = required major and
1052 # minor = required minor and
1053 # patch >= required patch
1054 # --> OK
1055 return
1056 fi
1057 fi
1058 fi
1059 fi
1060
1061 AC_MSG_ERROR([LLVM $1 or newer is required for $2])
1062 }
1063
1064 radeon_llvm_check() {
1065 if test ${LLVM_VERSION_INT} -lt 307; then
1066 amdgpu_llvm_target_name='r600'
1067 else
1068 amdgpu_llvm_target_name='amdgpu'
1069 fi
1070
1071 llvm_require_version $*
1072
1073 llvm_add_target $amdgpu_llvm_target_name $2
1074
1075 llvm_add_default_components $2
1076 llvm_add_component "bitreader" $2
1077 llvm_add_component "ipo" $2
1078
1079 if test "x$have_libelf" != xyes; then
1080 AC_MSG_ERROR([$2 requires libelf when using llvm])
1081 fi
1082 }
1083
1084 llvm_set_environment_variables
1085
1086 AC_SUBST([LLVM_CFLAGS])
1087 AC_SUBST([LLVM_CXXFLAGS])
1088 AC_SUBST([LLVM_LIBS])
1089 AC_SUBST([LLVM_LDFLAGS])
1090 AC_SUBST([LLVM_INCLUDEDIR])
1091
1092 dnl
1093 dnl libunwind
1094 dnl
1095 PKG_CHECK_EXISTS(libunwind, [HAVE_LIBUNWIND=yes], [HAVE_LIBUNWIND=no])
1096 AC_ARG_ENABLE([libunwind],
1097 [AS_HELP_STRING([--enable-libunwind],
1098 [Use libunwind for backtracing (default: auto)])],
1099 [LIBUNWIND="$enableval"],
1100 [LIBUNWIND="$HAVE_LIBUNWIND"])
1101
1102 if test "x$LIBUNWIND" = "xyes"; then
1103 PKG_CHECK_MODULES(LIBUNWIND, libunwind)
1104 AC_DEFINE(HAVE_LIBUNWIND, 1, [Have libunwind support])
1105 fi
1106
1107
1108 dnl Options for APIs
1109 AC_ARG_ENABLE([opengl],
1110 [AS_HELP_STRING([--disable-opengl],
1111 [disable support for standard OpenGL API @<:@default=enabled@:>@])],
1112 [enable_opengl="$enableval"],
1113 [enable_opengl=yes])
1114 AC_ARG_ENABLE([gles1],
1115 [AS_HELP_STRING([--disable-gles1],
1116 [disable support for OpenGL ES 1.x API @<:@default=enabled@:>@])],
1117 [enable_gles1="$enableval"],
1118 [enable_gles1=yes])
1119 AC_ARG_ENABLE([gles2],
1120 [AS_HELP_STRING([--disable-gles2],
1121 [disable support for OpenGL ES 2.x API @<:@default=enabled@:>@])],
1122 [enable_gles2="$enableval"],
1123 [enable_gles2=yes])
1124
1125 AC_ARG_ENABLE([dri],
1126 [AS_HELP_STRING([--enable-dri],
1127 [enable DRI modules @<:@default=enabled@:>@])],
1128 [enable_dri="$enableval"],
1129 [enable_dri=yes])
1130
1131 AC_ARG_ENABLE([gallium-extra-hud],
1132 [AS_HELP_STRING([--enable-gallium-extra-hud],
1133 [enable HUD block/NIC I/O HUD stats support @<:@default=disabled@:>@])],
1134 [enable_gallium_extra_hud="$enableval"],
1135 [enable_gallium_extra_hud=no])
1136 AM_CONDITIONAL(HAVE_GALLIUM_EXTRA_HUD, test "x$enable_gallium_extra_hud" = xyes)
1137 if test "x$enable_gallium_extra_hud" = xyes ; then
1138 DEFINES="${DEFINES} -DHAVE_GALLIUM_EXTRA_HUD=1"
1139 fi
1140
1141 #TODO: no pkgconfig .pc available for libsensors.
1142 #PKG_CHECK_MODULES([LIBSENSORS], [libsensors >= $LIBSENSORS_REQUIRED], [enable_lmsensors=yes], [enable_lmsensors=no])
1143 AC_ARG_ENABLE([lmsensors],
1144 [AS_HELP_STRING([--enable-lmsensors],
1145 [enable HUD lmsensor support @<:@default=disabled@:>@])],
1146 [enable_lmsensors="$enableval"],
1147 [enable_lmsensors=no])
1148 AM_CONDITIONAL(HAVE_LIBSENSORS, test "x$enable_lmsensors" = xyes)
1149 if test "x$enable_lmsensors" = xyes ; then
1150 DEFINES="${DEFINES} -DHAVE_LIBSENSORS=1"
1151 LIBSENSORS_LIBS="-lsensors"
1152 else
1153 LIBSENSORS_LIBS=""
1154 fi
1155 AC_SUBST(LIBSENSORS_LIBS)
1156
1157 case "$host_os" in
1158 linux*)
1159 dri3_default=yes
1160 ;;
1161 *)
1162 dri3_default=no
1163 ;;
1164 esac
1165
1166 if test "x$enable_dri" = xno; then
1167 dri3_default=no
1168 fi
1169
1170 AC_ARG_ENABLE([dri3],
1171 [AS_HELP_STRING([--enable-dri3],
1172 [enable DRI3 @<:@default=auto@:>@])],
1173 [enable_dri3="$enableval"],
1174 [enable_dri3="$dri3_default"])
1175 AC_ARG_ENABLE([glx],
1176 [AS_HELP_STRING([--enable-glx@<:@=dri|xlib|gallium-xlib@:>@],
1177 [enable the GLX library and choose an implementation @<:@default=auto@:>@])],
1178 [enable_glx="$enableval"],
1179 [enable_glx=yes])
1180 AC_ARG_ENABLE([osmesa],
1181 [AS_HELP_STRING([--enable-osmesa],
1182 [enable OSMesa library @<:@default=disabled@:>@])],
1183 [enable_osmesa="$enableval"],
1184 [enable_osmesa=no])
1185 AC_ARG_ENABLE([gallium-osmesa],
1186 [AS_HELP_STRING([--enable-gallium-osmesa],
1187 [enable Gallium implementation of the OSMesa library @<:@default=disabled@:>@])],
1188 [enable_gallium_osmesa="$enableval"],
1189 [enable_gallium_osmesa=no])
1190 AC_ARG_ENABLE([egl],
1191 [AS_HELP_STRING([--disable-egl],
1192 [disable EGL library @<:@default=enabled@:>@])],
1193 [enable_egl="$enableval"],
1194 [enable_egl=yes])
1195
1196 AC_ARG_ENABLE([xa],
1197 [AS_HELP_STRING([--enable-xa],
1198 [enable build of the XA X Acceleration API @<:@default=disabled@:>@])],
1199 [enable_xa="$enableval"],
1200 [enable_xa=no])
1201 AC_ARG_ENABLE([gbm],
1202 [AS_HELP_STRING([--enable-gbm],
1203 [enable gbm library @<:@default=yes except cygwin@:>@])],
1204 [enable_gbm="$enableval"],
1205 [case "$host_os" in
1206 cygwin*)
1207 enable_gbm=no
1208 ;;
1209 *)
1210 enable_gbm=yes
1211 ;;
1212 esac])
1213 AC_ARG_ENABLE([nine],
1214 [AS_HELP_STRING([--enable-nine],
1215 [enable build of the nine Direct3D9 API @<:@default=no@:>@])],
1216 [enable_nine="$enableval"],
1217 [enable_nine=no])
1218
1219 AC_ARG_ENABLE([xvmc],
1220 [AS_HELP_STRING([--enable-xvmc],
1221 [enable xvmc library @<:@default=auto@:>@])],
1222 [enable_xvmc="$enableval"],
1223 [enable_xvmc=auto])
1224 AC_ARG_ENABLE([vdpau],
1225 [AS_HELP_STRING([--enable-vdpau],
1226 [enable vdpau library @<:@default=auto@:>@])],
1227 [enable_vdpau="$enableval"],
1228 [enable_vdpau=auto])
1229 AC_ARG_ENABLE([omx],
1230 [AS_HELP_STRING([--enable-omx],
1231 [DEPRECATED: Use --enable-omx-bellagio instead @<:@default=auto@:>@])],
1232 [AC_MSG_ERROR([--enable-omx is deprecated. Use --enable-omx-bellagio instead.])],
1233 [])
1234 AC_ARG_ENABLE([omx-bellagio],
1235 [AS_HELP_STRING([--enable-omx-bellagio],
1236 [enable OpenMAX Bellagio library @<:@default=disabled@:>@])],
1237 [enable_omx_bellagio="$enableval"],
1238 [enable_omx_bellagio=no])
1239 AC_ARG_ENABLE([va],
1240 [AS_HELP_STRING([--enable-va],
1241 [enable va library @<:@default=auto@:>@])],
1242 [enable_va="$enableval"],
1243 [enable_va=auto])
1244 AC_ARG_ENABLE([opencl],
1245 [AS_HELP_STRING([--enable-opencl],
1246 [enable OpenCL library @<:@default=disabled@:>@])],
1247 [enable_opencl="$enableval"],
1248 [enable_opencl=no])
1249 AC_ARG_ENABLE([opencl_icd],
1250 [AS_HELP_STRING([--enable-opencl-icd],
1251 [Build an OpenCL ICD library to be loaded by an ICD implementation
1252 @<:@default=disabled@:>@])],
1253 [enable_opencl_icd="$enableval"],
1254 [enable_opencl_icd=no])
1255
1256 AC_ARG_ENABLE([gallium-tests],
1257 [AS_HELP_STRING([--enable-gallium-tests],
1258 [Enable optional Gallium tests) @<:@default=disabled@:>@])],
1259 [enable_gallium_tests="$enableval"],
1260 [enable_gallium_tests=no])
1261
1262 # Option for Gallium drivers
1263
1264 # Keep this in sync with the --with-gallium-drivers help string default value
1265 GALLIUM_DRIVERS_DEFAULT="r300,r600,svga,swrast"
1266
1267 AC_ARG_WITH([gallium-drivers],
1268 [AS_HELP_STRING([--with-gallium-drivers@<:@=DIRS...@:>@],
1269 [comma delimited Gallium drivers list, e.g.
1270 "i915,nouveau,r300,r600,radeonsi,freedreno,pl111,svga,swrast,swr,vc4,virgl,etnaviv,imx"
1271 @<:@default=r300,r600,svga,swrast@:>@])],
1272 [with_gallium_drivers="$withval"],
1273 [with_gallium_drivers="$GALLIUM_DRIVERS_DEFAULT"])
1274
1275 # Doing '--without-gallium-drivers' will set this variable to 'no'. Clear it
1276 # here so that the script doesn't choke on an unknown driver name later.
1277 case "$with_gallium_drivers" in
1278 yes) with_gallium_drivers="$GALLIUM_DRIVERS_DEFAULT" ;;
1279 no) with_gallium_drivers='' ;;
1280 esac
1281
1282 if test "x$enable_opengl" = xno -a \
1283 "x$enable_gles1" = xno -a \
1284 "x$enable_gles2" = xno -a \
1285 "x$enable_nine" = xno -a \
1286 "x$enable_xa" = xno -a \
1287 "x$enable_xvmc" = xno -a \
1288 "x$enable_vdpau" = xno -a \
1289 "x$enable_omx_bellagio" = xno -a \
1290 "x$enable_va" = xno -a \
1291 "x$enable_opencl" = xno; then
1292 AC_MSG_ERROR([at least one API should be enabled])
1293 fi
1294
1295 # Building OpenGL ES1 and/or ES2 without OpenGL is not supported on mesa 9.0.x
1296 if test "x$enable_opengl" = xno -a \
1297 "x$enable_gles1" = xyes; then
1298 AC_MSG_ERROR([Building OpenGL ES1 without OpenGL is not supported])
1299 fi
1300
1301 if test "x$enable_opengl" = xno -a \
1302 "x$enable_gles2" = xyes; then
1303 AC_MSG_ERROR([Building OpenGL ES2 without OpenGL is not supported])
1304 fi
1305
1306 AM_CONDITIONAL(HAVE_OPENGL, test "x$enable_opengl" = xyes)
1307 AM_CONDITIONAL(HAVE_OPENGL_ES1, test "x$enable_gles1" = xyes)
1308 AM_CONDITIONAL(HAVE_OPENGL_ES2, test "x$enable_gles2" = xyes)
1309 AM_CONDITIONAL(NEED_OPENGL_COMMON, test "x$enable_opengl" = xyes -o \
1310 "x$enable_gles1" = xyes -o \
1311 "x$enable_gles2" = xyes)
1312 AM_CONDITIONAL(NEED_KHRPLATFORM, test "x$enable_egl" = xyes -o \
1313 "x$enable_gles1" = xyes -o \
1314 "x$enable_gles2" = xyes)
1315
1316 # Validate GLX options
1317 if test "x$enable_glx" = xyes; then
1318 if test "x$enable_dri" = xyes; then
1319 enable_glx=dri
1320 elif test -n "$with_gallium_drivers"; then
1321 enable_glx=gallium-xlib
1322 else
1323 enable_glx=xlib
1324 fi
1325 fi
1326 case "x$enable_glx" in
1327 xdri | xxlib | xgallium-xlib)
1328 # GLX requires OpenGL
1329 if test "x$enable_opengl" = xno; then
1330 AC_MSG_ERROR([GLX cannot be built without OpenGL])
1331 fi
1332
1333 # Check individual dependencies
1334 case "x$enable_glx" in
1335 xdri)
1336 if test "x$enable_dri" = xno; then
1337 AC_MSG_ERROR([DRI-based GLX requires DRI to be enabled])
1338 fi
1339 ;;
1340 xxlib)
1341 if test "x$enable_dri" = xyes; then
1342 AC_MSG_ERROR([Xlib-based GLX cannot be built with DRI enabled])
1343 fi
1344 ;;
1345 xgallium-xlib )
1346 if test "x$enable_dri" = xyes; then
1347 AC_MSG_ERROR([Xlib-based (Gallium) GLX cannot be built with DRI enabled])
1348 fi
1349 if test -z "$with_gallium_drivers"; then
1350 AC_MSG_ERROR([Xlib-based (Gallium) GLX cannot be built without Gallium enabled])
1351 fi
1352 ;;
1353 esac
1354 ;;
1355 xno)
1356 ;;
1357 *)
1358 AC_MSG_ERROR([Illegal value for --enable-glx: $enable_glx])
1359 ;;
1360 esac
1361
1362 AM_CONDITIONAL(HAVE_GLX, test "x$enable_glx" != xno)
1363 AM_CONDITIONAL(HAVE_DRI_GLX, test "x$enable_glx" = xdri)
1364 AM_CONDITIONAL(HAVE_XLIB_GLX, test "x$enable_glx" = xxlib)
1365 AM_CONDITIONAL(HAVE_GALLIUM_XLIB_GLX, test "x$enable_glx" = xgallium-xlib)
1366
1367 DEFAULT_GL_LIB_NAME=GL
1368
1369 dnl
1370 dnl Libglvnd configuration
1371 dnl
1372 AC_ARG_ENABLE([libglvnd],
1373 [AS_HELP_STRING([--enable-libglvnd],
1374 [Build GLX and EGL for libglvnd @<:@default=disabled@:>@])],
1375 [enable_libglvnd="$enableval"],
1376 [enable_libglvnd=no])
1377 AM_CONDITIONAL(USE_LIBGLVND, test "x$enable_libglvnd" = xyes)
1378
1379 if test "x$enable_libglvnd" = xyes ; then
1380 dnl XXX: update once we can handle more than libGL/glx.
1381 dnl Namely: we should error out if neither of the glvnd enabled libraries
1382 dnl are built
1383 case "x$enable_glx" in
1384 xno)
1385 AC_MSG_ERROR([cannot build libglvnd without GLX])
1386 ;;
1387 xxlib | xgallium-xlib )
1388 AC_MSG_ERROR([cannot build libgvnd when Xlib-GLX or Gallium-Xlib-GLX is enabled])
1389 ;;
1390 xdri)
1391 ;;
1392 esac
1393
1394 PKG_CHECK_MODULES([GLVND], libglvnd >= 0.2.0)
1395 LIBGLVND_DATADIR=`$PKG_CONFIG --variable=datadir libglvnd`
1396 AC_SUBST([LIBGLVND_DATADIR])
1397
1398 DEFINES="${DEFINES} -DUSE_LIBGLVND=1"
1399 DEFAULT_GL_LIB_NAME=GLX_mesa
1400 fi
1401
1402 AC_ARG_WITH([gl-lib-name],
1403 [AS_HELP_STRING([--with-gl-lib-name@<:@=NAME@:>@],
1404 [specify GL library name @<:@default=GL@:>@])],
1405 [GL_LIB=$withval],
1406 [GL_LIB="$DEFAULT_GL_LIB_NAME"])
1407 AC_ARG_WITH([osmesa-lib-name],
1408 [AS_HELP_STRING([--with-osmesa-lib-name@<:@=NAME@:>@],
1409 [specify OSMesa library name @<:@default=OSMesa@:>@])],
1410 [OSMESA_LIB=$withval],
1411 [OSMESA_LIB=OSMesa])
1412 AS_IF([test "x$GL_LIB" = xyes], [GL_LIB="$DEFAULT_GL_LIB_NAME"])
1413 AS_IF([test "x$OSMESA_LIB" = xyes], [OSMESA_LIB=OSMesa])
1414
1415 dnl
1416 dnl Mangled Mesa support
1417 dnl
1418 AC_ARG_ENABLE([mangling],
1419 [AS_HELP_STRING([--enable-mangling],
1420 [enable mangled symbols and library name @<:@default=disabled@:>@])],
1421 [enable_mangling="${enableval}"],
1422 [enable_mangling=no]
1423 )
1424 if test "x${enable_mangling}" = "xyes" ; then
1425 DEFINES="${DEFINES} -DUSE_MGL_NAMESPACE"
1426 GL_LIB="Mangled${GL_LIB}"
1427 OSMESA_LIB="Mangled${OSMESA_LIB}"
1428 fi
1429 AC_SUBST([GL_LIB])
1430 AC_SUBST([OSMESA_LIB])
1431
1432 # Check for libdrm
1433 PKG_CHECK_MODULES([LIBDRM], [libdrm >= $LIBDRM_REQUIRED],
1434 [have_libdrm=yes], [have_libdrm=no])
1435 if test "x$have_libdrm" = xyes; then
1436 DEFINES="$DEFINES -DHAVE_LIBDRM"
1437 fi
1438
1439 require_libdrm() {
1440 if test "x$have_libdrm" != xyes; then
1441 AC_MSG_ERROR([$1 requires libdrm >= $LIBDRM_REQUIRED])
1442 fi
1443 }
1444
1445
1446 # Select which platform-dependent DRI code gets built
1447 case "$host_os" in
1448 darwin*)
1449 dri_platform='apple' ;;
1450 cygwin*)
1451 dri_platform='windows' ;;
1452 gnu*)
1453 dri_platform='none' ;;
1454 *)
1455 dri_platform='drm' ;;
1456 esac
1457
1458 if test "x$enable_dri" = xyes -a "x$dri_platform" = xdrm -a "x$have_libdrm" = xyes; then
1459 have_drisw_kms='yes'
1460 fi
1461
1462 AM_CONDITIONAL(HAVE_DRICOMMON, test "x$enable_dri" = xyes )
1463 AM_CONDITIONAL(HAVE_DRISW, test "x$enable_dri" = xyes )
1464 AM_CONDITIONAL(HAVE_DRISW_KMS, test "x$have_drisw_kms" = xyes )
1465 AM_CONDITIONAL(HAVE_DRI2, test "x$enable_dri" = xyes -a "x$dri_platform" = xdrm -a "x$have_libdrm" = xyes )
1466 AM_CONDITIONAL(HAVE_DRI3, test "x$enable_dri3" = xyes -a "x$dri_platform" = xdrm -a "x$have_libdrm" = xyes )
1467 AM_CONDITIONAL(HAVE_APPLEDRI, test "x$enable_dri" = xyes -a "x$dri_platform" = xapple )
1468 AM_CONDITIONAL(HAVE_LMSENSORS, test "x$enable_lmsensors" = xyes )
1469 AM_CONDITIONAL(HAVE_GALLIUM_EXTRA_HUD, test "x$enable_gallium_extra_hud" = xyes )
1470 AM_CONDITIONAL(HAVE_WINDOWSDRI, test "x$enable_dri" = xyes -a "x$dri_platform" = xwindows )
1471
1472 AC_ARG_ENABLE([shared-glapi],
1473 [AS_HELP_STRING([--enable-shared-glapi],
1474 [Enable shared glapi for OpenGL @<:@default=enabled@:>@])],
1475 [enable_shared_glapi="$enableval"],
1476 [enable_shared_glapi=yes])
1477
1478 case "x$enable_opengl$enable_gles1$enable_gles2" in
1479 x*yes*yes*)
1480 if test "x$enable_shared_glapi" = xno; then
1481 AC_MSG_ERROR([shared GLAPI required when building two or more of
1482 the following APIs - opengl, gles1 gles2])
1483 fi
1484 ;;
1485 esac
1486
1487 AM_CONDITIONAL(HAVE_SHARED_GLAPI, test "x$enable_shared_glapi" = xyes)
1488
1489 # Build the pipe-drivers as separate libraries/modules.
1490 # Do not touch this unless you know what you are doing.
1491 # XXX: Expose via configure option ?
1492 enable_shared_pipe_drivers=no
1493
1494 dnl
1495 dnl Driver specific build directories
1496 dnl
1497
1498 if test "x$enable_gallium_osmesa" = xyes; then
1499 if ! echo "$with_gallium_drivers" | grep -q 'swrast'; then
1500 AC_MSG_ERROR([gallium_osmesa requires the gallium swrast driver])
1501 fi
1502 if test "x$enable_osmesa" = xyes; then
1503 AC_MSG_ERROR([Cannot enable both classic and Gallium OSMesa implementations])
1504 fi
1505 fi
1506
1507 require_dri_shared_libs_and_glapi() {
1508 if test "x$enable_static" = xyes; then
1509 AC_MSG_ERROR([$1 cannot be build as static library])
1510 fi
1511
1512 if test "x$enable_dri" != xyes; then
1513 # There is only a single backend which won't be build/used otherwise.
1514 # XXX: Revisit this as the egl/haiku is a thing.
1515 AC_MSG_ERROR([$1 requires --enable-dri])
1516 fi
1517
1518 if test "x$enable_shared_glapi" != xyes; then
1519 AC_MSG_ERROR([$1 requires --enable-shared-glapi])
1520 fi
1521 }
1522
1523 if test "x$enable_dri" = xyes; then
1524 require_dri_shared_libs_and_glapi "DRI"
1525
1526 # not a hard requirement as swrast does not depend on it
1527 if test "x$have_libdrm" = xyes; then
1528 DRI_PC_REQ_PRIV="libdrm >= $LIBDRM_REQUIRED"
1529 fi
1530 fi
1531
1532 AC_ARG_ENABLE([driglx-direct],
1533 [AS_HELP_STRING([--disable-driglx-direct],
1534 [disable direct rendering in GLX and EGL for DRI \
1535 @<:@default=auto@:>@])],
1536 [driglx_direct="$enableval"],
1537 [driglx_direct="yes"])
1538
1539 dnl
1540 dnl libGL configuration per driver
1541 dnl
1542 if test "x$enable_glx" != xno; then
1543 PKG_CHECK_MODULES([GLPROTO], [glproto >= $GLPROTO_REQUIRED])
1544 fi
1545 case "x$enable_glx" in
1546 xxlib | xgallium-xlib)
1547 # Xlib-based GLX
1548 dri_modules="x11 xext xcb"
1549 PKG_CHECK_MODULES([XLIBGL], [$dri_modules])
1550 GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV $dri_modules"
1551 X11_INCLUDES="$X11_INCLUDES $XLIBGL_CFLAGS"
1552 GL_LIB_DEPS="$XLIBGL_LIBS"
1553 GL_LIB_DEPS="$GL_LIB_DEPS $SELINUX_LIBS -lm $PTHREAD_LIBS $DLOPEN_LIBS"
1554 GL_PC_LIB_PRIV="$GL_PC_LIB_PRIV $SELINUX_LIBS -lm $PTHREAD_LIBS"
1555 ;;
1556 xdri)
1557 # DRI-based GLX
1558
1559 # find the DRI deps for libGL
1560 dri_modules="x11 xext xdamage >= $XDAMAGE_REQUIRED xfixes x11-xcb xcb xcb-glx >= $XCBGLX_REQUIRED"
1561
1562 if test x"$driglx_direct" = xyes; then
1563 if test x"$dri_platform" = xdrm ; then
1564 DEFINES="$DEFINES -DGLX_USE_DRM"
1565 require_libdrm "Direct rendering"
1566
1567 PKG_CHECK_MODULES([DRI2PROTO], [dri2proto >= $DRI2PROTO_REQUIRED])
1568 GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV libdrm >= $LIBDRM_REQUIRED"
1569
1570 if test x"$enable_dri" = xyes; then
1571 dri_modules="$dri_modules xcb-dri2 >= $XCBDRI2_REQUIRED"
1572 fi
1573 fi
1574 if test x"$dri_platform" = xapple ; then
1575 DEFINES="$DEFINES -DGLX_USE_APPLEGL"
1576 fi
1577 if test x"$dri_platform" = xwindows ; then
1578 DEFINES="$DEFINES -DGLX_USE_WINDOWSGL"
1579 fi
1580 fi
1581
1582 # add xf86vidmode if available
1583 PKG_CHECK_MODULES([XF86VIDMODE], [xxf86vm], HAVE_XF86VIDMODE=yes, HAVE_XF86VIDMODE=no)
1584 if test "$HAVE_XF86VIDMODE" = yes ; then
1585 dri_modules="$dri_modules xxf86vm"
1586 fi
1587
1588 PKG_CHECK_MODULES([DRIGL], [$dri_modules])
1589 GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV $dri_modules"
1590 X11_INCLUDES="$X11_INCLUDES $DRIGL_CFLAGS"
1591 GL_LIB_DEPS="$DRIGL_LIBS"
1592
1593 # need DRM libs, $PTHREAD_LIBS, etc.
1594 GL_LIB_DEPS="$GL_LIB_DEPS $LIBDRM_LIBS -lm $PTHREAD_LIBS $DLOPEN_LIBS"
1595 GL_PC_LIB_PRIV="-lm $PTHREAD_LIBS $DLOPEN_LIBS"
1596 ;;
1597 esac
1598
1599 # This is outside the case (above) so that it is invoked even for non-GLX
1600 # builds.
1601 AM_CONDITIONAL(HAVE_XF86VIDMODE, test "x$HAVE_XF86VIDMODE" = xyes)
1602
1603 GLESv1_CM_LIB_DEPS="$LIBDRM_LIBS -lm $PTHREAD_LIBS $DLOPEN_LIBS"
1604 GLESv1_CM_PC_LIB_PRIV="-lm $PTHREAD_LIBS $DLOPEN_LIBS"
1605 GLESv2_LIB_DEPS="$LIBDRM_LIBS -lm $PTHREAD_LIBS $DLOPEN_LIBS"
1606 GLESv2_PC_LIB_PRIV="-lm $PTHREAD_LIBS $DLOPEN_LIBS"
1607
1608 AC_SUBST([X11_INCLUDES])
1609 AC_SUBST([GL_LIB_DEPS])
1610 AC_SUBST([GL_PC_REQ_PRIV])
1611 AC_SUBST([GL_PC_LIB_PRIV])
1612 AC_SUBST([GL_PC_CFLAGS])
1613 AC_SUBST([DRI_PC_REQ_PRIV])
1614 AC_SUBST([GLESv1_CM_LIB_DEPS])
1615 AC_SUBST([GLESv1_CM_PC_LIB_PRIV])
1616 AC_SUBST([GLESv2_LIB_DEPS])
1617 AC_SUBST([GLESv2_PC_LIB_PRIV])
1618
1619 AC_SUBST([HAVE_XF86VIDMODE])
1620
1621 dnl
1622 dnl More GLX setup
1623 dnl
1624 case "x$enable_glx" in
1625 xxlib | xgallium-xlib)
1626 DEFINES="$DEFINES -DUSE_XSHM"
1627 ;;
1628 xdri)
1629 DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING"
1630 if test "x$driglx_direct" = xyes; then
1631 DEFINES="$DEFINES -DGLX_DIRECT_RENDERING"
1632 fi
1633 ;;
1634 esac
1635
1636 dnl
1637 dnl TLS detection
1638 dnl
1639
1640 AC_ARG_ENABLE([glx-tls],
1641 [AS_HELP_STRING([--enable-glx-tls],
1642 [enable TLS support in GLX @<:@default=enabled@:>@])],
1643 [GLX_USE_TLS="$enableval"],
1644 [GLX_USE_TLS=yes])
1645 AC_SUBST(GLX_TLS, ${GLX_USE_TLS})
1646
1647 if test "x$GLX_USE_TLS" = xyes; then
1648 DEFINES="$DEFINES -DGLX_USE_TLS"
1649 fi
1650
1651 dnl Read-only text section on x86 hardened platforms
1652 AC_ARG_ENABLE([glx-read-only-text],
1653 [AS_HELP_STRING([--enable-glx-read-only-text],
1654 [Disable writable .text section on x86 (decreases performance) @<:@default=disabled@:>@])],
1655 [enable_glx_read_only_text="$enableval"],
1656 [enable_glx_read_only_text=no])
1657 if test "x$enable_glx_read_only_text" = xyes; then
1658 DEFINES="$DEFINES -DGLX_X86_READONLY_TEXT"
1659 fi
1660
1661 dnl
1662 dnl DEPRECATED: EGL Platforms configuration
1663 dnl
1664 AC_ARG_WITH([egl-platforms],
1665 [AS_HELP_STRING([--with-egl-platforms@<:@=DIRS...@:>@],
1666 [DEPRECATED: use --with-platforms instead@<:@default=auto@:>@])],
1667 [with_egl_platforms="$withval"],
1668 [with_egl_platforms=auto])
1669
1670 if test "x$with_egl_platforms" = xauto; then
1671 with_egl_platforms="x11,surfaceless"
1672 if test "x$enable_gbm" = xyes; then
1673 with_egl_platforms="$with_egl_platforms,drm"
1674 fi
1675 else
1676 AC_MSG_WARN([--with-egl-platforms is deprecated. Use --with-platforms instead.])
1677 fi
1678
1679 dnl
1680 dnl Platforms configuration
1681 dnl
1682 AC_ARG_WITH([platforms],
1683 [AS_HELP_STRING([--with-platforms@<:@=DIRS...@:>@],
1684 [comma delimited native platforms libEGL/Vulkan/other supports, e.g.
1685 "x11,drm,wayland,surfaceless..." @<:@default=auto@:>@])],
1686 [with_platforms="$withval"],
1687 [with_platforms=auto])
1688
1689 # Reuse the autodetection rather than duplicating it.
1690 if test "x$with_platforms" = xauto; then
1691 with_platforms=$with_egl_platforms
1692 fi
1693
1694 PKG_CHECK_MODULES([WAYLAND_SCANNER], [wayland-scanner],
1695 WAYLAND_SCANNER=`$PKG_CONFIG --variable=wayland_scanner wayland-scanner`,
1696 WAYLAND_SCANNER='')
1697 if test "x$WAYLAND_SCANNER" = x; then
1698 AC_PATH_PROG([WAYLAND_SCANNER], [wayland-scanner], [:])
1699 fi
1700
1701 PKG_CHECK_EXISTS([wayland-protocols >= $WAYLAND_PROTOCOLS_REQUIRED], [have_wayland_protocols=yes], [have_wayland_protocols=no])
1702 if test "x$have_wayland_protocols" = xyes; then
1703 ac_wayland_protocols_pkgdatadir=`$PKG_CONFIG --variable=pkgdatadir wayland-protocols`
1704 fi
1705 AC_SUBST(WAYLAND_PROTOCOLS_DATADIR, $ac_wayland_protocols_pkgdatadir)
1706
1707 # Do per platform setups and checks
1708 platforms=`IFS=', '; echo $with_platforms`
1709 for plat in $platforms; do
1710 case "$plat" in
1711 wayland)
1712
1713 PKG_CHECK_MODULES([WAYLAND_CLIENT], [wayland-client >= $WAYLAND_REQUIRED])
1714 PKG_CHECK_MODULES([WAYLAND_SERVER], [wayland-server >= $WAYLAND_REQUIRED])
1715
1716 if test "x$WAYLAND_SCANNER" = "x:"; then
1717 AC_MSG_ERROR([wayland-scanner is needed to compile the wayland platform])
1718 fi
1719 if test "x$have_wayland_protocols" = xno; then
1720 AC_MSG_ERROR([wayland-protocols >= $WAYLAND_PROTOCOLS_REQUIRED is needed to compile the wayland platform])
1721 fi
1722 DEFINES="$DEFINES -DHAVE_WAYLAND_PLATFORM -DWL_HIDE_DEPRECATED"
1723 ;;
1724
1725 x11)
1726 PKG_CHECK_MODULES([XCB_DRI2], [x11-xcb xcb xcb-dri2 >= $XCBDRI2_REQUIRED xcb-xfixes])
1727 DEFINES="$DEFINES -DHAVE_X11_PLATFORM"
1728 ;;
1729
1730 drm)
1731 test "x$enable_gbm" = "xno" &&
1732 AC_MSG_ERROR([EGL platform drm needs gbm])
1733 DEFINES="$DEFINES -DHAVE_DRM_PLATFORM"
1734 ;;
1735
1736 surfaceless)
1737 DEFINES="$DEFINES -DHAVE_SURFACELESS_PLATFORM"
1738 ;;
1739
1740 android)
1741 PKG_CHECK_MODULES([ANDROID], [cutils hardware sync])
1742 DEFINES="$DEFINES -DHAVE_ANDROID_PLATFORM"
1743 ;;
1744
1745 *)
1746 AC_MSG_ERROR([platform '$plat' does not exist])
1747 ;;
1748 esac
1749
1750 case "$plat" in
1751 wayland|drm|surfaceless)
1752 require_libdrm "Platform $plat"
1753 ;;
1754 esac
1755 done
1756
1757 if test "x$enable_glx" != xno; then
1758 if ! echo "$platforms" | grep -q 'x11'; then
1759 AC_MSG_ERROR([Building GLX without the x11 platform is not supported])
1760 fi
1761 fi
1762
1763 if test x"$enable_dri3" = xyes; then
1764 DEFINES="$DEFINES -DHAVE_DRI3"
1765
1766 dri3_modules="x11-xcb xcb >= $XCB_REQUIRED xcb-dri3 xcb-xfixes xcb-present xcb-sync xshmfence >= $XSHMFENCE_REQUIRED"
1767 PKG_CHECK_MODULES([XCB_DRI3], [$dri3_modules])
1768 fi
1769
1770 AM_CONDITIONAL(HAVE_PLATFORM_X11, echo "$platforms" | grep -q 'x11')
1771 AM_CONDITIONAL(HAVE_PLATFORM_WAYLAND, echo "$platforms" | grep -q 'wayland')
1772 AM_CONDITIONAL(HAVE_PLATFORM_DRM, echo "$platforms" | grep -q 'drm')
1773 AM_CONDITIONAL(HAVE_PLATFORM_SURFACELESS, echo "$platforms" | grep -q 'surfaceless')
1774 AM_CONDITIONAL(HAVE_PLATFORM_ANDROID, echo "$platforms" | grep -q 'android')
1775
1776 dnl
1777 dnl More DRI setup
1778 dnl
1779 dnl Directory for DRI drivers
1780 AC_ARG_WITH([dri-driverdir],
1781 [AS_HELP_STRING([--with-dri-driverdir=DIR],
1782 [directory for the DRI drivers @<:@${libdir}/dri@:>@])],
1783 [DRI_DRIVER_INSTALL_DIR="$withval"],
1784 [DRI_DRIVER_INSTALL_DIR='${libdir}/dri'])
1785 AC_SUBST([DRI_DRIVER_INSTALL_DIR])
1786 dnl Extra search path for DRI drivers
1787 AC_ARG_WITH([dri-searchpath],
1788 [AS_HELP_STRING([--with-dri-searchpath=DIRS...],
1789 [semicolon delimited DRI driver search directories @<:@${libdir}/dri@:>@])],
1790 [DRI_DRIVER_SEARCH_DIR="$withval"],
1791 [DRI_DRIVER_SEARCH_DIR='${DRI_DRIVER_INSTALL_DIR}'])
1792 AC_SUBST([DRI_DRIVER_SEARCH_DIR])
1793 dnl Which drivers to build - default is chosen by platform
1794 AC_ARG_WITH([dri-drivers],
1795 [AS_HELP_STRING([--with-dri-drivers@<:@=DIRS...@:>@],
1796 [comma delimited classic DRI drivers list, e.g.
1797 "i915,i965,nouveau,radeon,r200,swrast" @<:@default=auto@:>@])],
1798 [with_dri_drivers="$withval"],
1799 [with_dri_drivers=auto])
1800
1801 if test "x$with_dri_drivers" = xauto; then
1802 if test "x$enable_opengl" = xyes -a "x$enable_dri" = xyes; then
1803 with_dri_drivers="yes"
1804 else
1805 with_dri_drivers="no"
1806 fi
1807 fi
1808 if test "x$with_dri_drivers" = xno; then
1809 with_dri_drivers=''
1810 fi
1811
1812 # Check for expat
1813 PKG_CHECK_MODULES([EXPAT], [expat],,
1814 [PKG_CHECK_MODULES([EXPAT], [expat21])]
1815 )
1816
1817 dnl If $with_dri_drivers is yes, drivers will be added through
1818 dnl platform checks. Set DEFINES and LIB_DEPS
1819 if test "x$enable_dri" = xyes; then
1820 # Platform specific settings and drivers to build
1821 case "$host_os" in
1822 linux*)
1823 case "$host_cpu" in
1824 powerpc* | sparc*)
1825 # Build only the drivers for cards that exist on PowerPC/sparc
1826 if test "x$with_dri_drivers" = "xyes"; then
1827 with_dri_drivers="r200 radeon swrast"
1828 fi
1829 ;;
1830 esac
1831 ;;
1832 cygwin*)
1833 if test "x$with_dri_drivers" = "xyes"; then
1834 with_dri_drivers="swrast"
1835 fi
1836 ;;
1837 darwin*)
1838 DEFINES="$DEFINES -DBUILDING_MESA"
1839 if test "x$with_dri_drivers" = "xyes"; then
1840 with_dri_drivers="swrast"
1841 fi
1842 ;;
1843 esac
1844
1845 # default drivers
1846 if test "x$with_dri_drivers" = "xyes"; then
1847 with_dri_drivers="i915 i965 nouveau r200 radeon swrast"
1848 fi
1849
1850 # put all the necessary libs together
1851 DRI_LIB_DEPS="$DRI_LIB_DEPS $SELINUX_LIBS $LIBDRM_LIBS $EXPAT_LIBS -lm $PTHREAD_LIBS $DLOPEN_LIBS"
1852 fi
1853
1854 AC_SUBST([DRI_LIB_DEPS])
1855
1856 DRI_DIRS=''
1857 dnl Duplicates in DRI_DIRS are removed by sorting it at the end of this block
1858 if test -n "$with_dri_drivers"; then
1859 if test "x$enable_opengl" != xyes; then
1860 AC_MSG_ERROR([--with-dri-drivers requires OpenGL])
1861 fi
1862
1863 dri_drivers=`IFS=', '; echo $with_dri_drivers`
1864 for driver in $dri_drivers; do
1865 DRI_DIRS="$DRI_DIRS $driver"
1866 case "x$driver" in
1867 xi915)
1868 require_libdrm "i915"
1869 HAVE_I915_DRI=yes
1870 PKG_CHECK_MODULES([I915], [libdrm >= $LIBDRM_INTEL_REQUIRED libdrm_intel >= $LIBDRM_INTEL_REQUIRED])
1871 ;;
1872 xi965)
1873 require_libdrm "i965"
1874 HAVE_I965_DRI=yes
1875 ;;
1876 xnouveau)
1877 require_libdrm "nouveau"
1878 HAVE_NOUVEAU_DRI=yes
1879 PKG_CHECK_MODULES([NVVIEUX], [libdrm >= $LIBDRM_NVVIEUX_REQUIRED libdrm_nouveau >= $LIBDRM_NVVIEUX_REQUIRED])
1880 ;;
1881 xradeon)
1882 require_libdrm "radeon"
1883 HAVE_RADEON_DRI=yes;
1884 PKG_CHECK_MODULES([RADEON], [libdrm >= $LIBDRM_RADEON_REQUIRED libdrm_radeon >= $LIBDRM_RADEON_REQUIRED])
1885 ;;
1886 xr200)
1887 require_libdrm "r200"
1888 HAVE_R200_DRI=yes
1889 PKG_CHECK_MODULES([RADEON], [libdrm >= $LIBDRM_RADEON_REQUIRED libdrm_radeon >= $LIBDRM_RADEON_REQUIRED])
1890 ;;
1891 xswrast)
1892 HAVE_SWRAST_DRI=yes
1893 ;;
1894 *)
1895 AC_MSG_ERROR([classic DRI driver '$driver' does not exist])
1896 ;;
1897 esac
1898 done
1899 DRI_DIRS=`echo $DRI_DIRS|tr " " "\n"|sort -u|tr "\n" " "`
1900 fi
1901
1902
1903 dnl
1904 dnl Gallium LLVM
1905 dnl Deprecated: kept for backwards compatibility
1906 dnl
1907 AC_ARG_ENABLE([gallium-llvm],
1908 [AS_HELP_STRING([--enable-gallium-llvm],
1909 [DEPRECATED: use --enable-llvm instead])],
1910 [enable_gallium_llvm="$enableval"],
1911 [enable_gallium_llvm=auto])
1912
1913 if test "x$enable_gallium_llvm" != xauto; then
1914 AC_MSG_WARN([The --enable-gallium-llvm option has been deprecated. Use --enable-llvm instead.])
1915 enable_llvm=$enable_gallium_llvm
1916 fi
1917
1918 dnl
1919 dnl LLVM
1920 dnl
1921 AC_ARG_ENABLE([llvm],
1922 [AS_HELP_STRING([--enable-llvm],
1923 [build with LLVM support @<:@default=enabled on x86/x86_64@:>@])],
1924 [enable_llvm="$enableval"],
1925 [enable_llvm=auto])
1926
1927 if test "x$enable_llvm" = xauto -a "x$FOUND_LLVM" = xyes; then
1928 if test "x$FOUND_LLVM" = xyes; then
1929 case "$host_cpu" in
1930 i*86|x86_64|amd64) enable_llvm=yes;;
1931 *) enable_llvm=no;;
1932 esac
1933 else
1934 enable_llvm=no
1935 fi
1936 fi
1937
1938 if test "x$enable_llvm" = xyes -a "x$FOUND_LLVM" = xno; then
1939 AC_MSG_ERROR([--enable-llvm selected but llvm-config is not found])
1940 fi
1941
1942 #
1943 # Vulkan driver configuration
1944 #
1945
1946 AC_ARG_WITH([vulkan-drivers],
1947 [AS_HELP_STRING([--with-vulkan-drivers@<:@=DIRS...@:>@],
1948 [comma delimited Vulkan drivers list, e.g.
1949 "intel,radeon"
1950 @<:@default=no@:>@])],
1951 [with_vulkan_drivers="$withval"],
1952 [with_vulkan_drivers="no"])
1953
1954 # Doing '--without-vulkan-drivers' will set this variable to 'no'. Clear it
1955 # here so that the script doesn't choke on an unknown driver name later.
1956 case "x$with_vulkan_drivers" in
1957 xyes) with_vulkan_drivers="$VULKAN_DRIVERS_DEFAULT" ;;
1958 xno) with_vulkan_drivers='' ;;
1959 esac
1960
1961 AC_ARG_WITH([vulkan-icddir],
1962 [AS_HELP_STRING([--with-vulkan-icddir=DIR],
1963 [directory for the Vulkan driver icd files @<:@${datarootdir}/vulkan/icd.d@:>@])],
1964 [VULKAN_ICD_INSTALL_DIR="$withval"],
1965 [VULKAN_ICD_INSTALL_DIR='${datarootdir}/vulkan/icd.d'])
1966 AC_SUBST([VULKAN_ICD_INSTALL_DIR])
1967
1968 require_x11_dri3() {
1969 if echo "$platforms" | grep -q 'x11'; then
1970 if test "x$enable_dri3" != xyes; then
1971 AC_MSG_ERROR([$1 Vulkan driver requires DRI3 when built with X11])
1972 fi
1973 fi
1974 }
1975
1976 if test -n "$with_vulkan_drivers"; then
1977 if test "x$ac_cv_func_dl_iterate_phdr" = xno; then
1978 AC_MSG_ERROR([Vulkan drivers require the dl_iterate_phdr function])
1979 fi
1980
1981 VULKAN_DRIVERS=`IFS=', '; echo $with_vulkan_drivers`
1982 for driver in $VULKAN_DRIVERS; do
1983 case "x$driver" in
1984 xintel)
1985 require_libdrm "ANV"
1986 require_x11_dri3 "ANV"
1987 HAVE_INTEL_VULKAN=yes
1988 ;;
1989 xradeon)
1990 require_libdrm "radv"
1991 PKG_CHECK_MODULES([AMDGPU], [libdrm >= $LIBDRM_AMDGPU_REQUIRED libdrm_amdgpu >= $LIBDRM_AMDGPU_REQUIRED])
1992 radeon_llvm_check $LLVM_REQUIRED_RADV "radv"
1993 require_x11_dri3 "radv"
1994 HAVE_RADEON_VULKAN=yes
1995 ;;
1996 *)
1997 AC_MSG_ERROR([Vulkan driver '$driver' does not exist])
1998 ;;
1999 esac
2000 done
2001 VULKAN_DRIVERS=`echo $VULKAN_DRIVERS|tr " " "\n"|sort -u|tr "\n" " "`
2002 fi
2003
2004
2005 DEFINES="$DEFINES -DENABLE_SHADER_CACHE"
2006 AM_CONDITIONAL(NEED_MEGADRIVER, test -n "$DRI_DIRS")
2007 AM_CONDITIONAL(NEED_LIBMESA, test "x$enable_glx" = xxlib -o \
2008 "x$enable_osmesa" = xyes -o \
2009 -n "$DRI_DIRS")
2010
2011 dnl
2012 dnl OSMesa configuration
2013 dnl
2014
2015 dnl Configure the channel bits for OSMesa (libOSMesa, libOSMesa16, ...)
2016 AC_ARG_WITH([osmesa-bits],
2017 [AS_HELP_STRING([--with-osmesa-bits=BITS],
2018 [OSMesa channel bits and library name: 8, 16, 32 @<:@default=8@:>@])],
2019 [osmesa_bits="$withval"],
2020 [osmesa_bits=8])
2021 if test "x$osmesa_bits" != x8; then
2022 if test "x$enable_dri" = xyes -o "x$enable_glx" != xno; then
2023 AC_MSG_WARN([Ignoring OSMesa channel bits because of non-OSMesa driver])
2024 osmesa_bits=8
2025 fi
2026 fi
2027 case "x$osmesa_bits" in
2028 x8)
2029 OSMESA_LIB="${OSMESA_LIB}"
2030 ;;
2031 x16|x32)
2032 OSMESA_LIB="${OSMESA_LIB}$osmesa_bits"
2033 DEFINES="$DEFINES -DCHAN_BITS=$osmesa_bits -DDEFAULT_SOFTWARE_DEPTH_BITS=31"
2034 ;;
2035 *)
2036 AC_MSG_ERROR([OSMesa bits '$osmesa_bits' is not a valid option])
2037 ;;
2038 esac
2039
2040 if test "x$enable_osmesa" = xyes -o "x$enable_gallium_osmesa" = xyes; then
2041 # only link libraries with osmesa if shared
2042 if test "$enable_static" = no; then
2043 OSMESA_LIB_DEPS="-lm $PTHREAD_LIBS $SELINUX_LIBS $DLOPEN_LIBS"
2044 else
2045 OSMESA_LIB_DEPS=""
2046 fi
2047 OSMESA_PC_LIB_PRIV="-lm $PTHREAD_LIBS $SELINUX_LIBS $DLOPEN_LIBS"
2048 fi
2049
2050 AC_SUBST([OSMESA_LIB_DEPS])
2051 AC_SUBST([OSMESA_PC_REQ])
2052 AC_SUBST([OSMESA_PC_LIB_PRIV])
2053
2054 dnl
2055 dnl gbm configuration
2056 dnl
2057 if test "x$enable_gbm" = xyes; then
2058 require_dri_shared_libs_and_glapi "gbm"
2059 fi
2060 AM_CONDITIONAL(HAVE_GBM, test "x$enable_gbm" = xyes)
2061 # FINISHME: GBM has a number of dependencies which we should add below
2062 GBM_PC_REQ_PRIV=""
2063 GBM_PC_LIB_PRIV="$DLOPEN_LIBS"
2064 AC_SUBST([GBM_PC_REQ_PRIV])
2065 AC_SUBST([GBM_PC_LIB_PRIV])
2066
2067 dnl
2068 dnl EGL configuration
2069 dnl
2070
2071 if test "x$enable_egl" = xyes; then
2072 EGL_LIB_DEPS="$DLOPEN_LIBS $SELINUX_LIBS $PTHREAD_LIBS"
2073
2074 AC_CHECK_FUNC(mincore, [DEFINES="$DEFINES -DHAVE_MINCORE"])
2075
2076 require_dri_shared_libs_and_glapi "egl"
2077 fi
2078 AM_CONDITIONAL(HAVE_EGL, test "x$enable_egl" = xyes)
2079 AC_SUBST([EGL_LIB_DEPS])
2080
2081 gallium_st="mesa"
2082
2083 dnl
2084 dnl XA configuration
2085 dnl
2086 if test "x$enable_xa" = xyes; then
2087 if test "x$with_gallium_drivers" = xswrast; then
2088 AC_MSG_ERROR([
2089 Building xa requires at least one non swrast gallium driver.
2090 If you are looking to use libxatracker.so with the VMware driver,
2091 make sure to include svga in the gallium drivers list, apart from
2092 enabling XA.
2093 Example: ./configure --enable-xa --with-gallium-drivers=svga...])
2094 fi
2095 gallium_st="$gallium_st xa"
2096 fi
2097 AM_CONDITIONAL(HAVE_ST_XA, test "x$enable_xa" = xyes)
2098
2099 if echo $platforms | grep -q "x11"; then
2100 have_xvmc_platform=yes
2101 else
2102 have_xvmc_platform=no
2103 fi
2104
2105 if echo $platforms | grep -q "x11"; then
2106 have_vdpau_platform=yes
2107 else
2108 have_vdpau_platform=no
2109 fi
2110
2111 if echo $platforms | grep -q "x11\|drm"; then
2112 have_omx_platform=yes
2113 else
2114 have_omx_platform=no
2115 fi
2116
2117 if echo $platforms | grep -q "x11\|drm\|wayland"; then
2118 have_va_platform=yes
2119 else
2120 have_va_platform=no
2121 fi
2122
2123 dnl
2124 dnl Gallium G3DVL configuration
2125 dnl
2126 if test -n "$with_gallium_drivers" -a "x$with_gallium_drivers" != xswrast; then
2127 if test "x$enable_xvmc" = xauto -a "x$have_xvmc_platform" = xyes; then
2128 PKG_CHECK_EXISTS([xvmc >= $XVMC_REQUIRED], [enable_xvmc=yes], [enable_xvmc=no])
2129 fi
2130
2131 if test "x$enable_vdpau" = xauto -a "x$have_vdpau_platform" = xyes; then
2132 PKG_CHECK_EXISTS([vdpau >= $VDPAU_REQUIRED], [enable_vdpau=yes], [enable_vdpau=no])
2133 fi
2134
2135 if test "x$enable_omx_bellagio" = xauto -a "x$have_omx_platform" = xyes; then
2136 PKG_CHECK_EXISTS([libomxil-bellagio >= $LIBOMXIL_BELLAGIO_REQUIRED], [enable_omx_bellagio=yes], [enable_omx_bellagio=no])
2137 fi
2138
2139 if test "x$enable_va" = xauto -a "x$have_va_platform" = xyes; then
2140 PKG_CHECK_EXISTS([libva >= $LIBVA_REQUIRED], [enable_va=yes], [enable_va=no])
2141 fi
2142 fi
2143
2144 if test "x$enable_dri" = xyes -o \
2145 "x$enable_xvmc" = xyes -o \
2146 "x$enable_vdpau" = xyes -o \
2147 "x$enable_omx_bellagio" = xyes -o \
2148 "x$enable_va" = xyes; then
2149 need_gallium_vl=yes
2150 fi
2151 AM_CONDITIONAL(NEED_GALLIUM_VL, test "x$need_gallium_vl" = xyes)
2152
2153 if test "x$enable_xvmc" = xyes -o \
2154 "x$enable_vdpau" = xyes -o \
2155 "x$enable_omx_bellagio" = xyes -o \
2156 "x$enable_va" = xyes; then
2157 PKG_CHECK_MODULES([VL], [x11-xcb xcb xcb-dri2 >= $XCBDRI2_REQUIRED])
2158 need_gallium_vl_winsys=yes
2159 fi
2160 AM_CONDITIONAL(NEED_GALLIUM_VL_WINSYS, test "x$need_gallium_vl_winsys" = xyes)
2161
2162 if test "x$enable_xvmc" = xyes; then
2163 if test "x$have_xvmc_platform" != xyes; then
2164 AC_MSG_ERROR([XVMC requires the x11 platforms])
2165 fi
2166 PKG_CHECK_MODULES([XVMC], [xvmc >= $XVMC_REQUIRED])
2167 gallium_st="$gallium_st xvmc"
2168 fi
2169 AM_CONDITIONAL(HAVE_ST_XVMC, test "x$enable_xvmc" = xyes)
2170
2171 if test "x$enable_vdpau" = xyes; then
2172 if test "x$have_vdpau_platform" != xyes; then
2173 AC_MSG_ERROR([VDPAU requires the x11 platforms])
2174 fi
2175 PKG_CHECK_MODULES([VDPAU], [vdpau >= $VDPAU_REQUIRED])
2176 gallium_st="$gallium_st vdpau"
2177 DEFINES="$DEFINES -DHAVE_ST_VDPAU"
2178 fi
2179 AM_CONDITIONAL(HAVE_ST_VDPAU, test "x$enable_vdpau" = xyes)
2180
2181 if test "x$enable_omx_bellagio" = xyes; then
2182 if test "x$have_omx_platform" != xyes; then
2183 AC_MSG_ERROR([OMX requires at least one of the x11 or drm platforms])
2184 fi
2185 PKG_CHECK_MODULES([OMX_BELLAGIO], [libomxil-bellagio >= $LIBOMXIL_BELLAGIO_REQUIRED])
2186 gallium_st="$gallium_st omx_bellagio"
2187 fi
2188 AM_CONDITIONAL(HAVE_ST_OMX_BELLAGIO, test "x$enable_omx_bellagio" = xyes)
2189
2190 if test "x$enable_va" = xyes; then
2191 if test "x$have_va_platform" != xyes; then
2192 AC_MSG_ERROR([VA requires at least one of the x11 drm or wayland platforms])
2193 fi
2194 PKG_CHECK_MODULES([VA], [libva >= $LIBVA_REQUIRED])
2195 gallium_st="$gallium_st va"
2196 fi
2197 AM_CONDITIONAL(HAVE_ST_VA, test "x$enable_va" = xyes)
2198
2199 dnl
2200 dnl Nine Direct3D9 configuration
2201 dnl
2202 if test "x$enable_nine" = xyes; then
2203 if ! echo "$with_gallium_drivers" | grep -q 'swrast'; then
2204 AC_MSG_ERROR([nine requires the gallium swrast driver])
2205 fi
2206 if test "x$with_gallium_drivers" = xswrast; then
2207 AC_MSG_ERROR([nine requires at least one non-swrast gallium driver])
2208 fi
2209 if test $GCC_VERSION_MAJOR -lt 4 -o $GCC_VERSION_MAJOR -eq 4 -a $GCC_VERSION_MINOR -lt 6; then
2210 AC_MSG_ERROR([gcc >= 4.6 is required to build nine])
2211 fi
2212
2213 if test "x$enable_dri3" = xno; then
2214 AC_MSG_WARN([using nine together with wine requires DRI3 enabled system])
2215 fi
2216
2217 gallium_st="$gallium_st nine"
2218 fi
2219 AM_CONDITIONAL(HAVE_ST_NINE, test "x$enable_nine" = xyes)
2220
2221 dnl
2222 dnl OpenCL configuration
2223 dnl
2224
2225 AC_ARG_WITH([clang-libdir],
2226 [AS_HELP_STRING([--with-clang-libdir],
2227 [Path to Clang libraries @<:@default=llvm-config --libdir@:>@])],
2228 [CLANG_LIBDIR="$withval"],
2229 [CLANG_LIBDIR=''])
2230
2231 PKG_CHECK_EXISTS([libclc], [have_libclc=yes], [have_libclc=no])
2232
2233 if test "x$enable_opencl" = xyes; then
2234 if test -z "$with_gallium_drivers"; then
2235 AC_MSG_ERROR([cannot enable OpenCL without Gallium])
2236 fi
2237
2238 if test $GCC_VERSION_MAJOR -lt 4 -o $GCC_VERSION_MAJOR -eq 4 -a $GCC_VERSION_MINOR -lt 7; then
2239 AC_MSG_ERROR([gcc >= 4.7 is required to build clover])
2240 fi
2241
2242 if test "x$have_libclc" = xno; then
2243 AC_MSG_ERROR([pkg-config cannot find libclc.pc which is required to build clover.
2244 Make sure the directory containing libclc.pc is specified in your
2245 PKG_CONFIG_PATH environment variable.
2246 By default libclc.pc is installed to /usr/local/share/pkgconfig/])
2247 else
2248 LIBCLC_INCLUDEDIR=`$PKG_CONFIG --variable=includedir libclc`
2249 LIBCLC_LIBEXECDIR=`$PKG_CONFIG --variable=libexecdir libclc`
2250 AC_SUBST([LIBCLC_INCLUDEDIR])
2251 AC_SUBST([LIBCLC_LIBEXECDIR])
2252 fi
2253
2254 gallium_st="$gallium_st clover"
2255
2256 if test "x$enable_opencl_icd" = xyes; then
2257 OPENCL_LIBNAME="MesaOpenCL"
2258 else
2259 OPENCL_LIBNAME="OpenCL"
2260 fi
2261
2262 if test "x$have_libelf" != xyes; then
2263 AC_MSG_ERROR([Clover requires libelf])
2264 fi
2265
2266 if test "x${ac_cv_cxx_compiler_gnu}" = xyes; then
2267 altivec_enabled=no
2268 AC_COMPILE_IFELSE([AC_LANG_SOURCE([
2269 #if !defined(__VEC__) || !defined(__ALTIVEC__)
2270 #error "AltiVec not enabled"
2271 #endif
2272 ])], altivec_enabled=yes)
2273
2274 if test "$altivec_enabled" = yes; then
2275 CLOVER_STD_OVERRIDE="-std=gnu++11"
2276 fi
2277 AC_SUBST([CLOVER_STD_OVERRIDE])
2278 fi
2279
2280 llvm_require_version $LLVM_REQUIRED_OPENCL "opencl"
2281
2282 llvm_add_default_components "opencl"
2283 llvm_add_component "all-targets" "opencl"
2284 llvm_add_component "linker" "opencl"
2285 llvm_add_component "instrumentation" "opencl"
2286 llvm_add_component "ipo" "opencl"
2287 llvm_add_component "irreader" "opencl"
2288 llvm_add_component "option" "opencl"
2289 llvm_add_component "objcarcopts" "opencl"
2290 llvm_add_component "profiledata" "opencl"
2291
2292 dnl Check for Clang internal headers
2293 if test -z "$CLANG_LIBDIR"; then
2294 CLANG_LIBDIR=${LLVM_LIBDIR}
2295 fi
2296 CLANG_RESOURCE_DIR=$CLANG_LIBDIR/clang/${LLVM_VERSION}
2297 AS_IF([test ! -f "$CLANG_RESOURCE_DIR/include/stddef.h"],
2298 [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.])])
2299 fi
2300 AM_CONDITIONAL(HAVE_CLOVER, test "x$enable_opencl" = xyes)
2301 AM_CONDITIONAL(HAVE_CLOVER_ICD, test "x$enable_opencl_icd" = xyes)
2302 AC_SUBST([OPENCL_LIBNAME])
2303 AC_SUBST([CLANG_RESOURCE_DIR])
2304
2305 dnl
2306 dnl Gallium configuration
2307 dnl
2308 AM_CONDITIONAL(HAVE_GALLIUM, test -n "$with_gallium_drivers")
2309
2310 # libEGL wants to default to the first platform specified in
2311 # ./configure. parse that here.
2312 if test "x$platforms" != "x"; then
2313 FIRST_PLATFORM_CAPS=`echo $platforms | sed 's| .*||' | tr '[[a-z]]' '[[A-Z]]'`
2314 EGL_NATIVE_PLATFORM="_EGL_PLATFORM_$FIRST_PLATFORM_CAPS"
2315 else
2316 EGL_NATIVE_PLATFORM="_EGL_INVALID_PLATFORM"
2317 fi
2318
2319 AC_SUBST([EGL_NATIVE_PLATFORM])
2320 AC_SUBST([EGL_CFLAGS])
2321
2322 # If we don't have the X11 platform, set this define so we don't try to include
2323 # the X11 headers.
2324 if ! echo "$platforms" | grep -q 'x11'; then
2325 DEFINES="$DEFINES -DMESA_EGL_NO_X11_HEADERS"
2326 GL_PC_CFLAGS="$GL_PC_CFLAGS -DMESA_EGL_NO_X11_HEADERS"
2327 fi
2328
2329 dnl Directory for XVMC libs
2330 AC_ARG_WITH([xvmc-libdir],
2331 [AS_HELP_STRING([--with-xvmc-libdir=DIR],
2332 [directory for the XVMC libraries @<:@default=${libdir}@:>@])],
2333 [XVMC_LIB_INSTALL_DIR="$withval"],
2334 [XVMC_LIB_INSTALL_DIR='${libdir}'])
2335 AC_SUBST([XVMC_LIB_INSTALL_DIR])
2336
2337 dnl
2338 dnl Gallium Tests
2339 dnl
2340 AM_CONDITIONAL(HAVE_GALLIUM_TESTS, test "x$enable_gallium_tests" = xyes)
2341
2342 dnl Directory for VDPAU libs
2343 AC_ARG_WITH([vdpau-libdir],
2344 [AS_HELP_STRING([--with-vdpau-libdir=DIR],
2345 [directory for the VDPAU libraries @<:@default=${libdir}/vdpau@:>@])],
2346 [VDPAU_LIB_INSTALL_DIR="$withval"],
2347 [VDPAU_LIB_INSTALL_DIR='${libdir}/vdpau'])
2348 AC_SUBST([VDPAU_LIB_INSTALL_DIR])
2349
2350 dnl Directory for OMX_BELLAGIO libs
2351
2352 AC_ARG_WITH([omx-bellagio-libdir],
2353 [AS_HELP_STRING([--with-omx-bellagio-libdir=DIR],
2354 [directory for the OMX_BELLAGIO libraries])],
2355 [OMX_BELLAGIO_LIB_INSTALL_DIR="$withval"],
2356 [OMX_BELLAGIO_LIB_INSTALL_DIR=`$PKG_CONFIG --exists libomxil-bellagio && \
2357 $PKG_CONFIG --define-variable=libdir=\$libdir --variable=pluginsdir libomxil-bellagio`])
2358 AC_SUBST([OMX_BELLAGIO_LIB_INSTALL_DIR])
2359
2360 dnl Directory for VA libs
2361
2362 AC_ARG_WITH([va-libdir],
2363 [AS_HELP_STRING([--with-va-libdir=DIR],
2364 [directory for the VA libraries @<:@${libdir}/dri@:>@])],
2365 [VA_LIB_INSTALL_DIR="$withval"],
2366 [VA_LIB_INSTALL_DIR="${libdir}/dri"])
2367 AC_SUBST([VA_LIB_INSTALL_DIR])
2368
2369 AC_ARG_WITH([d3d-libdir],
2370 [AS_HELP_STRING([--with-d3d-libdir=DIR],
2371 [directory for the D3D modules @<:@${libdir}/d3d@:>@])],
2372 [D3D_DRIVER_INSTALL_DIR="$withval"],
2373 [D3D_DRIVER_INSTALL_DIR="${libdir}/d3d"])
2374 AC_SUBST([D3D_DRIVER_INSTALL_DIR])
2375
2376 dnl Architectures to build SWR library for
2377
2378 AC_ARG_WITH([swr-archs],
2379 [AS_HELP_STRING([--with-swr-archs@<:@=DIRS...@:>@],
2380 [comma delimited swr architectures list, e.g.
2381 "avx,avx2,knl,skx" @<:@default="avx,avx2"@:>@])],
2382 [with_swr_archs="$withval"],
2383 [with_swr_archs="avx,avx2"])
2384
2385 dnl
2386 dnl r300 doesn't strictly require LLVM, but for performance reasons we
2387 dnl highly recommend LLVM usage. So require it at least on x86 and x86_64
2388 dnl architectures.
2389 dnl
2390 r300_require_llvm() {
2391 case "$host" in *gnux32) return;; esac
2392 case "$host_cpu" in
2393 i*86|x86_64|amd64) require_llvm $1
2394 ;;
2395 esac
2396 }
2397
2398 dnl
2399 dnl DRM is needed by X, Wayland, and offscreen rendering.
2400 dnl Surfaceless is an alternative for the last one.
2401 dnl
2402 require_basic_egl() {
2403 case "$with_platforms" in
2404 *drm*|*surfaceless*)
2405 ;;
2406 *)
2407 AC_MSG_ERROR([$1 requires one of these:
2408 1) --with-platforms=drm (X, Wayland, offscreen rendering based on DRM)
2409 2) --with-platforms=surfaceless (offscreen only)
2410 Recommended options: drm,x11])
2411 ;;
2412 esac
2413 }
2414
2415 swr_require_cxx_feature_flags() {
2416 feature_name="$1"
2417 preprocessor_test="$2"
2418 option_list="$3"
2419 output_var="$4"
2420
2421 AC_MSG_CHECKING([whether $CXX supports $feature_name])
2422 AC_LANG_PUSH([C++])
2423 save_CXXFLAGS="$CXXFLAGS"
2424 save_IFS="$IFS"
2425 IFS=","
2426 found=0
2427 for opts in $option_list
2428 do
2429 unset IFS
2430 CXXFLAGS="$opts $save_CXXFLAGS"
2431 AC_COMPILE_IFELSE(
2432 [AC_LANG_PROGRAM(
2433 [ #if !($preprocessor_test)
2434 #error
2435 #endif
2436 ])],
2437 [found=1; break],
2438 [])
2439 IFS=","
2440 done
2441 IFS="$save_IFS"
2442 CXXFLAGS="$save_CXXFLAGS"
2443 AC_LANG_POP([C++])
2444 if test $found -eq 1; then
2445 AC_MSG_RESULT([$opts])
2446 eval "$output_var=\$opts"
2447 return 0
2448 fi
2449 AC_MSG_RESULT([no])
2450 AC_MSG_ERROR([swr requires $feature_name support])
2451 return 1
2452 }
2453
2454 dnl Duplicates in GALLIUM_DRIVERS_DIRS are removed by sorting it after this block
2455 if test -n "$with_gallium_drivers"; then
2456 gallium_drivers=`IFS=', '; echo $with_gallium_drivers`
2457 for driver in $gallium_drivers; do
2458 case "x$driver" in
2459 xsvga)
2460 HAVE_GALLIUM_SVGA=yes
2461 require_libdrm "svga"
2462 ;;
2463 xi915)
2464 HAVE_GALLIUM_I915=yes
2465 PKG_CHECK_MODULES([I915], [libdrm >= $LIBDRM_INTEL_REQUIRED libdrm_intel >= $LIBDRM_INTEL_REQUIRED])
2466 require_libdrm "Gallium i915"
2467 ;;
2468 xr300)
2469 HAVE_GALLIUM_R300=yes
2470 PKG_CHECK_MODULES([RADEON], [libdrm >= $LIBDRM_RADEON_REQUIRED libdrm_radeon >= $LIBDRM_RADEON_REQUIRED])
2471 require_libdrm "r300"
2472 r300_require_llvm "r300"
2473 ;;
2474 xr600)
2475 HAVE_GALLIUM_R600=yes
2476 PKG_CHECK_MODULES([RADEON], [libdrm >= $LIBDRM_RADEON_REQUIRED libdrm_radeon >= $LIBDRM_RADEON_REQUIRED])
2477 require_libdrm "r600"
2478 if test "x$enable_llvm" = xyes; then
2479 radeon_llvm_check $LLVM_REQUIRED_R600 "r600"
2480
2481 llvm_add_component "asmparser" "r600"
2482 llvm_add_component "bitreader" "r600"
2483 fi
2484 ;;
2485 xradeonsi)
2486 HAVE_GALLIUM_RADEONSI=yes
2487 PKG_CHECK_MODULES([RADEON], [libdrm >= $LIBDRM_RADEON_REQUIRED libdrm_radeon >= $LIBDRM_RADEON_REQUIRED])
2488 PKG_CHECK_MODULES([AMDGPU], [libdrm >= $LIBDRM_AMDGPU_REQUIRED libdrm_amdgpu >= $LIBDRM_AMDGPU_REQUIRED])
2489 require_libdrm "radeonsi"
2490 radeon_llvm_check $LLVM_REQUIRED_RADEONSI "radeonsi"
2491 if test "x$enable_egl" = xyes; then
2492 require_basic_egl "radeonsi"
2493 fi
2494 ;;
2495 xnouveau)
2496 HAVE_GALLIUM_NOUVEAU=yes
2497 PKG_CHECK_MODULES([NOUVEAU], [libdrm >= $LIBDRM_NOUVEAU_REQUIRED libdrm_nouveau >= $LIBDRM_NOUVEAU_REQUIRED])
2498 require_libdrm "nouveau"
2499 ;;
2500 xfreedreno)
2501 HAVE_GALLIUM_FREEDRENO=yes
2502 PKG_CHECK_MODULES([FREEDRENO], [libdrm >= $LIBDRM_FREEDRENO_REQUIRED libdrm_freedreno >= $LIBDRM_FREEDRENO_REQUIRED])
2503 require_libdrm "freedreno"
2504 ;;
2505 xetnaviv)
2506 HAVE_GALLIUM_ETNAVIV=yes
2507 PKG_CHECK_MODULES([ETNAVIV], [libdrm >= $LIBDRM_ETNAVIV_REQUIRED libdrm_etnaviv >= $LIBDRM_ETNAVIV_REQUIRED])
2508 require_libdrm "etnaviv"
2509 ;;
2510 ximx)
2511 HAVE_GALLIUM_IMX=yes
2512 ;;
2513 xswrast)
2514 HAVE_GALLIUM_SOFTPIPE=yes
2515 if test "x$enable_llvm" = xyes; then
2516 HAVE_GALLIUM_LLVMPIPE=yes
2517 fi
2518 ;;
2519 xswr)
2520 llvm_require_version $LLVM_REQUIRED_SWR "swr"
2521
2522 swr_require_cxx_feature_flags "C++11" "__cplusplus >= 201103L" \
2523 ",-std=c++11" \
2524 SWR_CXX11_CXXFLAGS
2525 AC_SUBST([SWR_CXX11_CXXFLAGS])
2526
2527 swr_require_cxx_feature_flags "AVX" "defined(__AVX__)" \
2528 ",-target-cpu=sandybridge,-mavx,-march=core-avx,-tp=sandybridge" \
2529 SWR_AVX_CXXFLAGS
2530 AC_SUBST([SWR_AVX_CXXFLAGS])
2531
2532 swr_archs=`IFS=', '; echo $with_swr_archs`
2533 for arch in $swr_archs; do
2534 case "x$arch" in
2535 xavx)
2536 HAVE_SWR_AVX=yes
2537 ;;
2538 xavx2)
2539 swr_require_cxx_feature_flags "AVX2" "defined(__AVX2__)" \
2540 ",-target-cpu=haswell,-mavx2 -mfma -mbmi2 -mf16c,-march=core-avx2,-tp=haswell" \
2541 SWR_AVX2_CXXFLAGS
2542 AC_SUBST([SWR_AVX2_CXXFLAGS])
2543 HAVE_SWR_AVX2=yes
2544 ;;
2545 xknl)
2546 swr_require_cxx_feature_flags "KNL" "defined(__AVX512F__) && defined(__AVX512ER__)" \
2547 ",-target-cpu=mic-knl,-march=knl,-xMIC-AVX512" \
2548 SWR_KNL_CXXFLAGS
2549 AC_SUBST([SWR_KNL_CXXFLAGS])
2550 HAVE_SWR_KNL=yes
2551 ;;
2552 xskx)
2553 swr_require_cxx_feature_flags "SKX" "defined(__AVX512F__) && defined(__AVX512BW__)" \
2554 ",-target-cpu=x86-skylake,-march=skylake-avx512,-xCORE-AVX512" \
2555 SWR_SKX_CXXFLAGS
2556 AC_SUBST([SWR_SKX_CXXFLAGS])
2557 HAVE_SWR_SKX=yes
2558 ;;
2559 *)
2560 AC_MSG_ERROR([unknown SWR build architecture '$arch'])
2561 ;;
2562 esac
2563 done
2564
2565 if test "x$HAVE_SWR_AVX" != xyes -a \
2566 "x$HAVE_SWR_AVX2" != xyes -a \
2567 "x$HAVE_SWR_KNL" != xyes -a \
2568 "x$HAVE_SWR_SKX" != xyes; then
2569 AC_MSG_ERROR([swr enabled but no swr architectures selected])
2570 fi
2571
2572 HAVE_GALLIUM_SWR=yes
2573 ;;
2574 xvc4)
2575 HAVE_GALLIUM_VC4=yes
2576 require_libdrm "vc4"
2577
2578 PKG_CHECK_MODULES([SIMPENROSE], [simpenrose],
2579 [USE_VC4_SIMULATOR=yes;
2580 DEFINES="$DEFINES -DUSE_VC4_SIMULATOR"],
2581 [USE_VC4_SIMULATOR=no])
2582 ;;
2583 xpl111)
2584 HAVE_GALLIUM_PL111=yes
2585 ;;
2586 xvirgl)
2587 HAVE_GALLIUM_VIRGL=yes
2588 require_libdrm "virgl"
2589 if test "x$enable_egl" = xyes; then
2590 require_basic_egl "virgl"
2591 fi
2592 ;;
2593 *)
2594 AC_MSG_ERROR([Unknown Gallium driver: $driver])
2595 ;;
2596 esac
2597 done
2598 fi
2599
2600 # XXX: Keep in sync with LLVM_REQUIRED_SWR
2601 AM_CONDITIONAL(SWR_INVALID_LLVM_VERSION, test "x$LLVM_VERSION" != x3.9.0 -a \
2602 "x$LLVM_VERSION" != x3.9.1)
2603
2604 if test "x$enable_llvm" = "xyes" -a "$with_gallium_drivers"; then
2605 llvm_require_version $LLVM_REQUIRED_GALLIUM "gallium"
2606 llvm_add_default_components "gallium"
2607 fi
2608
2609 AM_CONDITIONAL(HAVE_SWR_AVX, test "x$HAVE_SWR_AVX" = xyes)
2610 AM_CONDITIONAL(HAVE_SWR_AVX2, test "x$HAVE_SWR_AVX2" = xyes)
2611 AM_CONDITIONAL(HAVE_SWR_KNL, test "x$HAVE_SWR_KNL" = xyes)
2612 AM_CONDITIONAL(HAVE_SWR_SKX, test "x$HAVE_SWR_SKX" = xyes)
2613
2614 dnl We need to validate some needed dependencies for renderonly drivers.
2615
2616 if test "x$HAVE_GALLIUM_ETNAVIV" != xyes -a "x$HAVE_GALLIUM_IMX" = xyes ; then
2617 AC_MSG_ERROR([Building with imx requires etnaviv])
2618 fi
2619
2620 if test "x$HAVE_GALLIUM_VC4" != xyes -a "x$HAVE_GALLIUM_PL111" = xyes ; then
2621 AC_MSG_ERROR([Building with pl111 requires vc4])
2622 fi
2623
2624 dnl
2625 dnl Set defines and buildtime variables only when using LLVM.
2626 dnl
2627 if test "x$enable_llvm" = xyes; then
2628 DEFINES="${DEFINES} -DHAVE_LLVM=0x0$LLVM_VERSION_INT -DMESA_LLVM_VERSION_PATCH=$LLVM_VERSION_PATCH"
2629
2630 LLVM_LDFLAGS=`$LLVM_CONFIG --ldflags`
2631 LLVM_CFLAGS=$LLVM_CPPFLAGS # CPPFLAGS seem to be sufficient
2632 LLVM_CXXFLAGS=`strip_unwanted_llvm_flags "$LLVM_CONFIG --cxxflags"`
2633
2634 dnl Set LLVM_LIBS - This is done after the driver configuration so
2635 dnl that drivers can add additional components to LLVM_COMPONENTS.
2636 dnl Previously, gallium drivers were updating LLVM_LIBS directly
2637 dnl by calling llvm-config --libs ${DRIVER_LLVM_COMPONENTS}, but
2638 dnl this was causing the same libraries to be appear multiple times
2639 dnl in LLVM_LIBS.
2640
2641 if ! $LLVM_CONFIG --libs ${LLVM_COMPONENTS} >/dev/null; then
2642 AC_MSG_ERROR([Calling ${LLVM_CONFIG} failed])
2643 fi
2644 LLVM_LIBS="`$LLVM_CONFIG --libs ${LLVM_COMPONENTS}`"
2645
2646 if test "x$enable_llvm_shared_libs" = xyes; then
2647 if test $LLVM_VERSION_MAJOR -lt 4 -o "`$LLVM_CONFIG --shared-mode ${LLVM_COMPONENTS}`" = static; then
2648 dnl llvm-config may not give the right answer when llvm is a built as a
2649 dnl single shared library, so we must work the library name out for
2650 dnl ourselves.
2651 dnl (See https://llvm.org/bugs/show_bug.cgi?id=6823)
2652 dnl We can't use $LLVM_VERSION because it has 'svn' stripped out,
2653 LLVM_SO_NAME=LLVM-`$LLVM_CONFIG --version`
2654 AS_IF([test -f "$LLVM_LIBDIR/lib$LLVM_SO_NAME.$IMP_LIB_EXT"], [llvm_have_one_so=yes])
2655
2656 if test "x$llvm_have_one_so" = xyes; then
2657 dnl LLVM was built using auto*, so there is only one shared object.
2658 LLVM_LIBS="-l$LLVM_SO_NAME"
2659 else
2660 dnl If LLVM was built with CMake, there will be one shared object per
2661 dnl component.
2662 AS_IF([test ! -f "$LLVM_LIBDIR/libLLVMTarget.$IMP_LIB_EXT"],
2663 [AC_MSG_ERROR([Could not find llvm shared libraries:
2664 Please make sure you have built llvm with the --enable-shared option
2665 and that your llvm libraries are installed in $LLVM_LIBDIR
2666 If you have installed your llvm libraries to a different directory you
2667 can use the --with-llvm-prefix= configure flag to specify this directory.
2668 NOTE: Mesa is attempting to use llvm shared libraries by default.
2669 If you do not want to build with llvm shared libraries and instead want to
2670 use llvm static libraries then add --disable-llvm-shared-libs to your configure
2671 invocation and rebuild.])])
2672
2673 dnl We don't need to update LLVM_LIBS in this case because the LLVM
2674 dnl install uses a shared object for each component and we have
2675 dnl already added all of these objects to LLVM_LIBS.
2676 fi
2677 fi
2678 else
2679 AC_MSG_WARN([Building mesa with statically linked LLVM may cause compilation issues])
2680 dnl We need to link to llvm system libs when using static libs
2681 dnl However, only llvm 3.5+ provides --system-libs
2682 if test $LLVM_VERSION_MAJOR -ge 4 -o $LLVM_VERSION_MAJOR -eq 3 -a $LLVM_VERSION_MINOR -ge 5; then
2683 LLVM_LIBS="$LLVM_LIBS `$LLVM_CONFIG --system-libs`"
2684 fi
2685 fi
2686 fi
2687
2688 AM_CONDITIONAL(HAVE_GALLIUM_SVGA, test "x$HAVE_GALLIUM_SVGA" = xyes)
2689 AM_CONDITIONAL(HAVE_GALLIUM_I915, test "x$HAVE_GALLIUM_I915" = xyes)
2690 AM_CONDITIONAL(HAVE_GALLIUM_PL111, test "x$HAVE_GALLIUM_PL111" = xyes)
2691 AM_CONDITIONAL(HAVE_GALLIUM_R300, test "x$HAVE_GALLIUM_R300" = xyes)
2692 AM_CONDITIONAL(HAVE_GALLIUM_R600, test "x$HAVE_GALLIUM_R600" = xyes)
2693 AM_CONDITIONAL(HAVE_GALLIUM_RADEONSI, test "x$HAVE_GALLIUM_RADEONSI" = xyes)
2694 AM_CONDITIONAL(HAVE_GALLIUM_RADEON_COMMON, test "x$HAVE_GALLIUM_R600" = xyes -o \
2695 "x$HAVE_GALLIUM_RADEONSI" = xyes)
2696 AM_CONDITIONAL(HAVE_GALLIUM_NOUVEAU, test "x$HAVE_GALLIUM_NOUVEAU" = xyes)
2697 AM_CONDITIONAL(HAVE_GALLIUM_FREEDRENO, test "x$HAVE_GALLIUM_FREEDRENO" = xyes)
2698 AM_CONDITIONAL(HAVE_GALLIUM_ETNAVIV, test "x$HAVE_GALLIUM_ETNAVIV" = xyes)
2699 AM_CONDITIONAL(HAVE_GALLIUM_IMX, test "x$HAVE_GALLIUM_IMX" = xyes)
2700 AM_CONDITIONAL(HAVE_GALLIUM_SOFTPIPE, test "x$HAVE_GALLIUM_SOFTPIPE" = xyes)
2701 AM_CONDITIONAL(HAVE_GALLIUM_LLVMPIPE, test "x$HAVE_GALLIUM_LLVMPIPE" = xyes)
2702 AM_CONDITIONAL(HAVE_GALLIUM_SWR, test "x$HAVE_GALLIUM_SWR" = xyes)
2703 AM_CONDITIONAL(HAVE_GALLIUM_SWRAST, test "x$HAVE_GALLIUM_SOFTPIPE" = xyes -o \
2704 "x$HAVE_GALLIUM_LLVMPIPE" = xyes -o \
2705 "x$HAVE_GALLIUM_SWR" = xyes)
2706 AM_CONDITIONAL(HAVE_GALLIUM_VC4, test "x$HAVE_GALLIUM_VC4" = xyes)
2707 AM_CONDITIONAL(HAVE_GALLIUM_VIRGL, test "x$HAVE_GALLIUM_VIRGL" = xyes)
2708
2709 AM_CONDITIONAL(HAVE_GALLIUM_STATIC_TARGETS, test "x$enable_shared_pipe_drivers" = xno)
2710
2711 if test "x$enable_dri" = xyes; then
2712 GALLIUM_PIPE_LOADER_DEFINES="$GALLIUM_PIPE_LOADER_DEFINES -DHAVE_PIPE_LOADER_DRI"
2713 fi
2714
2715 if test "x$have_drisw_kms" = xyes; then
2716 GALLIUM_PIPE_LOADER_DEFINES="$GALLIUM_PIPE_LOADER_DEFINES -DHAVE_PIPE_LOADER_KMS"
2717 fi
2718 AC_SUBST([GALLIUM_PIPE_LOADER_DEFINES])
2719
2720 AM_CONDITIONAL(HAVE_I915_DRI, test x$HAVE_I915_DRI = xyes)
2721 AM_CONDITIONAL(HAVE_I965_DRI, test x$HAVE_I965_DRI = xyes)
2722 AM_CONDITIONAL(HAVE_NOUVEAU_DRI, test x$HAVE_NOUVEAU_DRI = xyes)
2723 AM_CONDITIONAL(HAVE_R200_DRI, test x$HAVE_R200_DRI = xyes)
2724 AM_CONDITIONAL(HAVE_RADEON_DRI, test x$HAVE_RADEON_DRI = xyes)
2725 AM_CONDITIONAL(HAVE_SWRAST_DRI, test x$HAVE_SWRAST_DRI = xyes)
2726
2727 AM_CONDITIONAL(HAVE_RADEON_VULKAN, test "x$HAVE_RADEON_VULKAN" = xyes)
2728 AM_CONDITIONAL(HAVE_INTEL_VULKAN, test "x$HAVE_INTEL_VULKAN" = xyes)
2729
2730 AM_CONDITIONAL(HAVE_AMD_DRIVERS, test "x$HAVE_GALLIUM_RADEONSI" = xyes -o \
2731 "x$HAVE_RADEON_VULKAN" = xyes)
2732
2733 AM_CONDITIONAL(HAVE_INTEL_DRIVERS, test "x$HAVE_INTEL_VULKAN" = xyes -o \
2734 "x$HAVE_I965_DRI" = xyes)
2735
2736 AM_CONDITIONAL(NEED_RADEON_DRM_WINSYS, test "x$HAVE_GALLIUM_R300" = xyes -o \
2737 "x$HAVE_GALLIUM_R600" = xyes -o \
2738 "x$HAVE_GALLIUM_RADEONSI" = xyes)
2739 AM_CONDITIONAL(NEED_WINSYS_XLIB, test "x$enable_glx" = xgallium-xlib)
2740 AM_CONDITIONAL(HAVE_GALLIUM_COMPUTE, test x$enable_opencl = xyes)
2741 AM_CONDITIONAL(HAVE_GALLIUM_LLVM, test "x$enable_llvm" = xyes)
2742 AM_CONDITIONAL(USE_VC4_SIMULATOR, test x$USE_VC4_SIMULATOR = xyes)
2743
2744 AM_CONDITIONAL(HAVE_LIBDRM, test "x$have_libdrm" = xyes)
2745 AM_CONDITIONAL(HAVE_OSMESA, test "x$enable_osmesa" = xyes)
2746 AM_CONDITIONAL(HAVE_GALLIUM_OSMESA, test "x$enable_gallium_osmesa" = xyes)
2747 AM_CONDITIONAL(HAVE_COMMON_OSMESA, test "x$enable_osmesa" = xyes -o \
2748 "x$enable_gallium_osmesa" = xyes)
2749
2750 AM_CONDITIONAL(HAVE_X86_ASM, test "x$asm_arch" = xx86 -o "x$asm_arch" = xx86_64)
2751 AM_CONDITIONAL(HAVE_X86_64_ASM, test "x$asm_arch" = xx86_64)
2752 AM_CONDITIONAL(HAVE_SPARC_ASM, test "x$asm_arch" = xsparc)
2753 AM_CONDITIONAL(HAVE_PPC64LE_ASM, test "x$asm_arch" = xppc64le)
2754 AM_CONDITIONAL(HAVE_AARCH64_ASM, test "x$asm_arch" = xaarch64)
2755 AM_CONDITIONAL(HAVE_ARM_ASM, test "x$asm_arch" = xarm)
2756
2757 AC_SUBST([NINE_MAJOR], 1)
2758 AC_SUBST([NINE_MINOR], 0)
2759 AC_SUBST([NINE_TINY], 0)
2760 AC_SUBST([NINE_VERSION], "$NINE_MAJOR.$NINE_MINOR.$NINE_TINY")
2761
2762 AC_SUBST([VDPAU_MAJOR], 1)
2763 AC_SUBST([VDPAU_MINOR], 0)
2764
2765 if test "x$enable_va" = xyes; then
2766 VA_MAJOR=`$PKG_CONFIG --modversion libva | $SED -n 's/\([[^\.]]*\)\..*$/\1/p'`
2767 VA_MINOR=`$PKG_CONFIG --modversion libva | $SED -n 's/.*\.\(.*\)\..*$/\1/p'`
2768 fi
2769 AC_SUBST([VA_MAJOR], $VA_MAJOR)
2770 AC_SUBST([VA_MINOR], $VA_MINOR)
2771
2772 AM_CONDITIONAL(HAVE_VULKAN_COMMON, test "x$VULKAN_DRIVERS" != "x")
2773
2774 AC_SUBST([XVMC_MAJOR], 1)
2775 AC_SUBST([XVMC_MINOR], 0)
2776
2777 XA_HEADER="$srcdir/src/gallium/state_trackers/xa/xa_tracker.h"
2778 XA_MAJOR=`grep "#define XA_TRACKER_VERSION_MAJOR" $XA_HEADER | $SED 's/^#define XA_TRACKER_VERSION_MAJOR //'`
2779 XA_MINOR=`grep "#define XA_TRACKER_VERSION_MINOR" $XA_HEADER | $SED 's/^#define XA_TRACKER_VERSION_MINOR //'`
2780 XA_TINY=`grep "#define XA_TRACKER_VERSION_PATCH" $XA_HEADER | $SED 's/^#define XA_TRACKER_VERSION_PATCH //'`
2781
2782 AC_SUBST([XA_MAJOR], $XA_MAJOR)
2783 AC_SUBST([XA_MINOR], $XA_MINOR)
2784 AC_SUBST([XA_TINY], $XA_TINY)
2785 AC_SUBST([XA_VERSION], "$XA_MAJOR.$XA_MINOR.$XA_TINY")
2786
2787 AC_ARG_ENABLE(valgrind,
2788 [AS_HELP_STRING([--enable-valgrind],
2789 [Build mesa with valgrind support (default: auto)])],
2790 [VALGRIND=$enableval], [VALGRIND=auto])
2791 if test "x$VALGRIND" != xno; then
2792 PKG_CHECK_MODULES(VALGRIND, [valgrind], [have_valgrind=yes], [have_valgrind=no])
2793 fi
2794 AC_MSG_CHECKING([whether to enable Valgrind support])
2795 if test "x$VALGRIND" = xauto; then
2796 VALGRIND="$have_valgrind"
2797 fi
2798
2799 if test "x$VALGRIND" = "xyes"; then
2800 if ! test "x$have_valgrind" = xyes; then
2801 AC_MSG_ERROR([Valgrind support required but not present])
2802 fi
2803 AC_DEFINE([HAVE_VALGRIND], 1, [Use valgrind intrinsics to suppress false warnings])
2804 fi
2805
2806 AC_MSG_RESULT([$VALGRIND])
2807
2808 dnl Restore LDFLAGS and CPPFLAGS
2809 LDFLAGS="$_SAVE_LDFLAGS"
2810 CPPFLAGS="$_SAVE_CPPFLAGS"
2811
2812 dnl Suppress clang's warnings about unused CFLAGS and CXXFLAGS
2813 if test "x$acv_mesa_CLANG" = xyes; then
2814 CFLAGS="$CFLAGS -Qunused-arguments"
2815 CXXFLAGS="$CXXFLAGS -Qunused-arguments"
2816 fi
2817
2818 dnl Add user CFLAGS and CXXFLAGS
2819 CFLAGS="$CFLAGS $USER_CFLAGS"
2820 CXXFLAGS="$CXXFLAGS $USER_CXXFLAGS"
2821
2822 dnl Substitute the config
2823 AC_CONFIG_FILES([Makefile
2824 src/Makefile
2825 src/amd/Makefile
2826 src/amd/vulkan/Makefile
2827 src/broadcom/Makefile
2828 src/compiler/Makefile
2829 src/egl/Makefile
2830 src/egl/main/egl.pc
2831 src/egl/wayland/wayland-drm/Makefile
2832 src/egl/wayland/wayland-egl/Makefile
2833 src/egl/wayland/wayland-egl/wayland-egl.pc
2834 src/gallium/Makefile
2835 src/gallium/auxiliary/Makefile
2836 src/gallium/auxiliary/pipe-loader/Makefile
2837 src/gallium/drivers/freedreno/Makefile
2838 src/gallium/drivers/ddebug/Makefile
2839 src/gallium/drivers/i915/Makefile
2840 src/gallium/drivers/llvmpipe/Makefile
2841 src/gallium/drivers/noop/Makefile
2842 src/gallium/drivers/nouveau/Makefile
2843 src/gallium/drivers/pl111/Makefile
2844 src/gallium/drivers/r300/Makefile
2845 src/gallium/drivers/r600/Makefile
2846 src/gallium/drivers/radeon/Makefile
2847 src/gallium/drivers/radeonsi/Makefile
2848 src/gallium/drivers/rbug/Makefile
2849 src/gallium/drivers/softpipe/Makefile
2850 src/gallium/drivers/svga/Makefile
2851 src/gallium/drivers/swr/Makefile
2852 src/gallium/drivers/trace/Makefile
2853 src/gallium/drivers/etnaviv/Makefile
2854 src/gallium/drivers/imx/Makefile
2855 src/gallium/drivers/vc4/Makefile
2856 src/gallium/drivers/virgl/Makefile
2857 src/gallium/state_trackers/clover/Makefile
2858 src/gallium/state_trackers/dri/Makefile
2859 src/gallium/state_trackers/glx/xlib/Makefile
2860 src/gallium/state_trackers/nine/Makefile
2861 src/gallium/state_trackers/omx_bellagio/Makefile
2862 src/gallium/state_trackers/osmesa/Makefile
2863 src/gallium/state_trackers/va/Makefile
2864 src/gallium/state_trackers/vdpau/Makefile
2865 src/gallium/state_trackers/xa/Makefile
2866 src/gallium/state_trackers/xvmc/Makefile
2867 src/gallium/targets/d3dadapter9/Makefile
2868 src/gallium/targets/d3dadapter9/d3d.pc
2869 src/gallium/targets/dri/Makefile
2870 src/gallium/targets/libgl-xlib/Makefile
2871 src/gallium/targets/omx-bellagio/Makefile
2872 src/gallium/targets/opencl/Makefile
2873 src/gallium/targets/opencl/mesa.icd
2874 src/gallium/targets/osmesa/Makefile
2875 src/gallium/targets/osmesa/osmesa.pc
2876 src/gallium/targets/pipe-loader/Makefile
2877 src/gallium/targets/va/Makefile
2878 src/gallium/targets/vdpau/Makefile
2879 src/gallium/targets/xa/Makefile
2880 src/gallium/targets/xa/xatracker.pc
2881 src/gallium/targets/xvmc/Makefile
2882 src/gallium/tests/trivial/Makefile
2883 src/gallium/tests/unit/Makefile
2884 src/gallium/winsys/etnaviv/drm/Makefile
2885 src/gallium/winsys/imx/drm/Makefile
2886 src/gallium/winsys/freedreno/drm/Makefile
2887 src/gallium/winsys/i915/drm/Makefile
2888 src/gallium/winsys/nouveau/drm/Makefile
2889 src/gallium/winsys/pl111/drm/Makefile
2890 src/gallium/winsys/radeon/drm/Makefile
2891 src/gallium/winsys/amdgpu/drm/Makefile
2892 src/gallium/winsys/svga/drm/Makefile
2893 src/gallium/winsys/sw/dri/Makefile
2894 src/gallium/winsys/sw/kms-dri/Makefile
2895 src/gallium/winsys/sw/null/Makefile
2896 src/gallium/winsys/sw/wrapper/Makefile
2897 src/gallium/winsys/sw/xlib/Makefile
2898 src/gallium/winsys/vc4/drm/Makefile
2899 src/gallium/winsys/virgl/drm/Makefile
2900 src/gallium/winsys/virgl/vtest/Makefile
2901 src/gbm/Makefile
2902 src/gbm/main/gbm.pc
2903 src/glx/Makefile
2904 src/glx/apple/Makefile
2905 src/glx/tests/Makefile
2906 src/glx/windows/Makefile
2907 src/glx/windows/windowsdriproto.pc
2908 src/gtest/Makefile
2909 src/intel/Makefile
2910 src/loader/Makefile
2911 src/mapi/Makefile
2912 src/mapi/es1api/glesv1_cm.pc
2913 src/mapi/es2api/glesv2.pc
2914 src/mapi/glapi/gen/Makefile
2915 src/mesa/Makefile
2916 src/mesa/gl.pc
2917 src/mesa/drivers/dri/dri.pc
2918 src/mesa/drivers/dri/common/Makefile
2919 src/mesa/drivers/dri/i915/Makefile
2920 src/mesa/drivers/dri/i965/Makefile
2921 src/mesa/drivers/dri/Makefile
2922 src/mesa/drivers/dri/nouveau/Makefile
2923 src/mesa/drivers/dri/r200/Makefile
2924 src/mesa/drivers/dri/radeon/Makefile
2925 src/mesa/drivers/dri/swrast/Makefile
2926 src/mesa/drivers/osmesa/Makefile
2927 src/mesa/drivers/osmesa/osmesa.pc
2928 src/mesa/drivers/x11/Makefile
2929 src/mesa/main/tests/Makefile
2930 src/mesa/state_tracker/tests/Makefile
2931 src/util/Makefile
2932 src/util/tests/hash_table/Makefile
2933 src/util/xmlpool/Makefile
2934 src/vulkan/Makefile])
2935
2936 AC_OUTPUT
2937
2938 # Fix up dependencies in *.Plo files, where we changed the extension of a
2939 # source file
2940 $SED -i -e 's/brw_blorp.cpp/brw_blorp.c/' src/mesa/drivers/dri/i965/.deps/brw_blorp.Plo
2941
2942 rm -f src/compiler/spirv/spirv_info.lo
2943 echo "# dummy" > src/compiler/spirv/.deps/spirv_info.Plo
2944
2945 dnl
2946 dnl Output some configuration info for the user
2947 dnl
2948 echo ""
2949 echo " prefix: $prefix"
2950 echo " exec_prefix: $exec_prefix"
2951 echo " libdir: $libdir"
2952 echo " includedir: $includedir"
2953
2954 dnl API info
2955 echo ""
2956 echo " OpenGL: $enable_opengl (ES1: $enable_gles1 ES2: $enable_gles2)"
2957
2958 dnl Driver info
2959 echo ""
2960 case "x$enable_osmesa$enable_gallium_osmesa" in
2961 xnoyes)
2962 echo " OSMesa: lib$OSMESA_LIB (Gallium)"
2963 ;;
2964 xyesno)
2965 echo " OSMesa: lib$OSMESA_LIB"
2966 ;;
2967 xnono)
2968 echo " OSMesa: no"
2969 ;;
2970 esac
2971
2972 echo ""
2973 if test "x$enable_dri" != xno; then
2974 echo " DRI platform: $dri_platform"
2975 if test -z "$DRI_DIRS"; then
2976 echo " DRI drivers: no"
2977 else
2978 echo " DRI drivers: $DRI_DIRS"
2979 fi
2980 echo " DRI driver dir: $DRI_DRIVER_INSTALL_DIR"
2981 fi
2982
2983 case "x$enable_glx" in
2984 xdri)
2985 echo " GLX: DRI-based"
2986 ;;
2987 xxlib)
2988 echo " GLX: Xlib-based"
2989 ;;
2990 xgallium-xlib)
2991 echo " GLX: Xlib-based (Gallium)"
2992 ;;
2993 *)
2994 echo " GLX: $enable_glx"
2995 ;;
2996 esac
2997
2998 dnl EGL
2999 echo ""
3000 echo " EGL: $enable_egl"
3001 if test "$enable_egl" = yes; then
3002
3003 egl_drivers=""
3004 if test "x$enable_dri" != "xno"; then
3005 egl_drivers="$egl_drivers builtin:egl_dri2"
3006 fi
3007 if test "x$enable_dri3" != "xno"; then
3008 egl_drivers="$egl_drivers builtin:egl_dri3"
3009 fi
3010
3011 echo " EGL drivers: $egl_drivers"
3012 fi
3013 if test "x$enable_gbm" = xyes; then
3014 echo " GBM: yes"
3015 else
3016 echo " GBM: no"
3017 fi
3018
3019 echo " EGL/Vulkan/VL platforms: $platforms"
3020
3021 # Vulkan
3022 echo ""
3023 if test "x$VULKAN_DRIVERS" != x; then
3024 echo " Vulkan drivers: $VULKAN_DRIVERS"
3025 echo " Vulkan ICD dir: $VULKAN_ICD_INSTALL_DIR"
3026 else
3027 echo " Vulkan drivers: no"
3028 fi
3029
3030 echo ""
3031 if test "x$enable_llvm" = xyes; then
3032 echo " llvm: yes"
3033 echo " llvm-config: $LLVM_CONFIG"
3034 echo " llvm-version: $LLVM_VERSION"
3035 else
3036 echo " llvm: no"
3037 fi
3038
3039 echo ""
3040 if test -n "$with_gallium_drivers"; then
3041 echo " Gallium drivers: $gallium_drivers"
3042 echo " Gallium st: $gallium_st"
3043 else
3044 echo " Gallium: no"
3045 fi
3046
3047 echo ""
3048 if test "x$enable_gallium_extra_hud" != xyes; then
3049 echo " HUD extra stats: no"
3050 else
3051 echo " HUD extra stats: yes"
3052 fi
3053
3054 if test "x$enable_lmsensors" != xyes; then
3055 echo " HUD lmsensors: no"
3056 else
3057 echo " HUD lmsensors: yes"
3058 fi
3059
3060 echo ""
3061 if test "x$HAVE_GALLIUM_SWR" != x; then
3062 echo " SWR archs: $swr_archs"
3063 fi
3064
3065 dnl Libraries
3066 echo ""
3067 echo " Shared libs: $enable_shared"
3068 echo " Static libs: $enable_static"
3069 echo " Shared-glapi: $enable_shared_glapi"
3070
3071 dnl Compiler options
3072 # cleanup the CFLAGS/CXXFLAGS/LDFLAGS/DEFINES vars
3073 cflags=`echo $CFLAGS | \
3074 $SED 's/^ *//;s/ */ /;s/ *$//'`
3075 cxxflags=`echo $CXXFLAGS | \
3076 $SED 's/^ *//;s/ */ /;s/ *$//'`
3077 ldflags=`echo $LDFLAGS | $SED 's/^ *//;s/ */ /;s/ *$//'`
3078 defines=`echo $DEFINES | $SED 's/^ *//;s/ */ /;s/ *$//'`
3079 echo ""
3080 echo " CFLAGS: $cflags"
3081 echo " CXXFLAGS: $cxxflags"
3082 echo " LDFLAGS: $ldflags"
3083 echo " Macros: $defines"
3084 echo ""
3085 if test "x$enable_llvm" = xyes; then
3086 echo " LLVM_CFLAGS: $LLVM_CFLAGS"
3087 echo " LLVM_CXXFLAGS: $LLVM_CXXFLAGS"
3088 echo " LLVM_CPPFLAGS: $LLVM_CPPFLAGS"
3089 echo " LLVM_LDFLAGS: $LLVM_LDFLAGS"
3090 echo ""
3091 fi
3092 echo " PYTHON2: $PYTHON2"
3093
3094 echo ""
3095 echo " Run '${MAKE-make}' to build Mesa"
3096 echo ""