21a1986b23453273f5c6e062a397c7577dd41309
[mesa.git] / configure.ac
1 dnl Process this file with autoconf to create configure.
2
3 AC_PREREQ([2.60])
4
5 dnl Tell the user about autoconf.html in the --help output
6 m4_divert_once([HELP_END], [
7 See docs/autoconf.html for more details on the options for Mesa.])
8
9 AC_INIT([Mesa], [9.2.0-devel],
10 [https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa])
11 AC_CONFIG_AUX_DIR([bin])
12 AC_CONFIG_MACRO_DIR([m4])
13 AC_CANONICAL_SYSTEM
14 AM_INIT_AUTOMAKE([foreign])
15
16 dnl http://people.gnome.org/~walters/docs/build-api.txt
17 dnl We don't support srcdir != builddir.
18 echo \#buildapi-variable-no-builddir >/dev/null
19
20 # Support silent build rules, requires at least automake-1.11. Disable
21 # by either passing --disable-silent-rules to configure or passing V=1
22 # to make
23 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])],
24 [AC_SUBST([AM_DEFAULT_VERBOSITY], [1])])
25
26 m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
27
28 dnl Set internal versions
29 OSMESA_VERSION=8
30 AC_SUBST([OSMESA_VERSION])
31
32 dnl Versions for external dependencies
33 LIBDRM_REQUIRED=2.4.24
34 LIBDRM_RADEON_REQUIRED=2.4.46
35 LIBDRM_INTEL_REQUIRED=2.4.38
36 LIBDRM_NVVIEUX_REQUIRED=2.4.33
37 LIBDRM_NOUVEAU_REQUIRED="2.4.33 libdrm >= 2.4.41"
38 LIBDRM_FREEDRENO_REQUIRED=2.4.39
39 DRI2PROTO_REQUIRED=2.6
40 GLPROTO_REQUIRED=1.4.14
41 LIBDRM_XORG_REQUIRED=2.4.24
42 LIBKMS_XORG_REQUIRED=1.0.0
43
44 dnl Check for progs
45 AC_PROG_CPP
46 AC_PROG_CC
47 AX_PROG_CC_FOR_BUILD
48 AC_PROG_CXX
49 AX_PROG_CXX_FOR_BUILD
50 AM_PROG_CC_C_O
51 AM_PROG_AS
52 AC_CHECK_PROGS([MAKE], [gmake make])
53 AC_CHECK_PROGS([PYTHON2], [python2 python])
54 AX_PYTHON_MODULE([libxml2], [needed])
55 AC_PROG_SED
56 AC_PROG_MKDIR_P
57
58 LT_PREREQ([2.2])
59 LT_INIT([disable-static])
60
61 AX_PROG_BISON([],
62 AS_IF([test ! -f "$srcdir/src/glsl/glcpp/glcpp-parse.c"],
63 [AC_MSG_ERROR([bison not found - unable to compile glcpp-parse.y])]))
64 AX_PROG_FLEX([],
65 AS_IF([test ! -f "$srcdir/src/glsl/glcpp/glcpp-lex.c"],
66 [AC_MSG_ERROR([flex not found - unable to compile glcpp-lex.l])]))
67
68 AC_PATH_PROG([PERL], [perl])
69
70 AC_CHECK_PROG(INDENT, indent, indent, cat)
71 if test "x$INDENT" != "xcat"; then
72 AC_SUBST(INDENT_FLAGS, '-i4 -nut -br -brs -npcs -ce -TGLubyte -TGLbyte -TBool')
73 fi
74
75 AC_PROG_INSTALL
76
77 dnl We need a POSIX shell for parts of the build. Assume we have one
78 dnl in most cases.
79 case "$host_os" in
80 solaris*)
81 # Solaris /bin/sh is too old/non-POSIX compliant
82 AC_PATH_PROGS(POSIX_SHELL, [ksh93 ksh sh])
83 SHELL="$POSIX_SHELL"
84 ;;
85 esac
86
87 dnl clang is mostly GCC-compatible, but its version is much lower,
88 dnl so we have to check for it.
89 AC_MSG_CHECKING([if compiling with clang])
90
91 AC_COMPILE_IFELSE(
92 [AC_LANG_PROGRAM([], [[
93 #ifndef __clang__
94 not clang
95 #endif
96 ]])],
97 [acv_mesa_CLANG=yes], [acv_mesa_CLANG=no])
98
99 AC_MSG_RESULT([$acv_mesa_CLANG])
100
101 dnl If we're using GCC, make sure that it is at least version 3.3.0. Older
102 dnl versions are explictly not supported.
103 GEN_ASM_OFFSETS=no
104 if test "x$GCC" = xyes -a "x$acv_mesa_CLANG" = xno; then
105 AC_MSG_CHECKING([whether gcc version is sufficient])
106 major=0
107 minor=0
108
109 GCC_VERSION=`$CC -dumpversion`
110 if test $? -eq 0; then
111 GCC_VERSION_MAJOR=`echo $GCC_VERSION | cut -d. -f1`
112 GCC_VERSION_MINOR=`echo $GCC_VERSION | cut -d. -f2`
113 fi
114
115 if test $GCC_VERSION_MAJOR -lt 3 -o $GCC_VERSION_MAJOR -eq 3 -a $GCC_VERSION_MINOR -lt 3 ; then
116 AC_MSG_RESULT([no])
117 AC_MSG_ERROR([If using GCC, version 3.3.0 or later is required.])
118 else
119 AC_MSG_RESULT([yes])
120 fi
121
122 if test "x$cross_compiling" = xyes; then
123 GEN_ASM_OFFSETS=yes
124 fi
125 fi
126 AM_CONDITIONAL([GEN_ASM_OFFSETS], test "x$GEN_ASM_OFFSETS" = xyes)
127
128 dnl Make sure the pkg-config macros are defined
129 m4_ifndef([PKG_PROG_PKG_CONFIG],
130 [m4_fatal([Could not locate the pkg-config autoconf macros.
131 These are usually located in /usr/share/aclocal/pkg.m4. If your macros
132 are in a different location, try setting the environment variable
133 ACLOCAL="aclocal -I/other/macro/dir" before running autoreconf.])])
134 PKG_PROG_PKG_CONFIG()
135
136 dnl LIB_DIR - library basename
137 LIB_DIR=`echo $libdir | $SED 's%.*/%%'`
138 AC_SUBST([LIB_DIR])
139
140 dnl Cache LDFLAGS and CPPFLAGS so we can add to them and restore later
141 _SAVE_LDFLAGS="$LDFLAGS"
142 _SAVE_CPPFLAGS="$CPPFLAGS"
143
144 dnl build host compiler macros
145 DEFINES_FOR_BUILD=""
146 AC_SUBST([DEFINES_FOR_BUILD])
147 case "$build_os" in
148 linux*|*-gnu*|gnu*)
149 DEFINES_FOR_BUILD="$DEFINES_FOR_BUILD -D_GNU_SOURCE"
150 ;;
151 solaris*)
152 DEFINES_FOR_BUILD="$DEFINES_FOR_BUILD -DSVR4"
153 ;;
154 cygwin*)
155 DEFINES_FOR_BUILD="$DEFINES_FOR_BUILD"
156 ;;
157 esac
158
159 dnl Compiler macros
160 DEFINES=""
161 AC_SUBST([DEFINES])
162 case "$host_os" in
163 linux*|*-gnu*|gnu*)
164 DEFINES="$DEFINES -D_GNU_SOURCE -DHAVE_PTHREAD"
165 ;;
166 solaris*)
167 DEFINES="$DEFINES -DHAVE_PTHREAD -DSVR4"
168 ;;
169 cygwin*)
170 DEFINES="$DEFINES -DHAVE_PTHREAD"
171 ;;
172 esac
173
174 dnl Add flags for gcc and g++
175 if test "x$GCC" = xyes; then
176 case "$host_os" in
177 cygwin*)
178 CFLAGS="$CFLAGS -Wall -std=gnu99"
179 ;;
180 *)
181 CFLAGS_FOR_BUILD="$CFLAGS_FOR_BUILD -Wall -std=c99"
182 CFLAGS="$CFLAGS -Wall -std=c99"
183 ;;
184 esac
185
186 # Enable -Werror=implicit-function-declaration and
187 # -Werror=missing-prototypes, if available, or otherwise, just
188 # -Wmissing-prototypes. This is particularly useful to avoid
189 # generating a loadable driver module that has undefined symbols.
190 save_CFLAGS="$CFLAGS"
191 AC_MSG_CHECKING([whether $CC supports -Werror=missing-prototypes])
192 CFLAGS="$CFLAGS -Werror=implicit-function-declaration"
193 CFLAGS="$CFLAGS -Werror=missing-prototypes"
194 AC_LINK_IFELSE([AC_LANG_PROGRAM()],
195 AC_MSG_RESULT([yes]),
196 [CFLAGS="$save_CFLAGS -Wmissing-prototypes";
197 AC_MSG_RESULT([no])]);
198
199 # Enable -fvisibility=hidden if using a gcc that supports it
200 save_CFLAGS="$CFLAGS"
201 AC_MSG_CHECKING([whether $CC supports -fvisibility=hidden])
202 VISIBILITY_CFLAGS="-fvisibility=hidden"
203 CFLAGS="$CFLAGS $VISIBILITY_CFLAGS"
204 AC_LINK_IFELSE([AC_LANG_PROGRAM()], AC_MSG_RESULT([yes]),
205 [VISIBILITY_CFLAGS=""; AC_MSG_RESULT([no])]);
206
207 # Restore CFLAGS; VISIBILITY_CFLAGS are added to it where needed.
208 CFLAGS=$save_CFLAGS
209
210 # Work around aliasing bugs - developers should comment this out
211 CFLAGS_FOR_BUILD="$CFLAGS_FOR_BUILD -fno-strict-aliasing"
212 CFLAGS="$CFLAGS -fno-strict-aliasing"
213
214 # gcc's builtin memcmp is slower than glibc's
215 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43052
216 CFLAGS_FOR_BUILD="$CFLAGS_FOR_BUILD -fno-builtin-memcmp"
217 CFLAGS="$CFLAGS -fno-builtin-memcmp"
218 fi
219 if test "x$GXX" = xyes; then
220 CXXFLAGS_FOR_BUILD="$CXXFLAGS_FOR_BUILD -Wall"
221 CXXFLAGS="$CXXFLAGS -Wall"
222
223 # Enable -fvisibility=hidden if using a gcc that supports it
224 save_CXXFLAGS="$CXXFLAGS"
225 AC_MSG_CHECKING([whether $CXX supports -fvisibility=hidden])
226 VISIBILITY_CXXFLAGS="-fvisibility=hidden"
227 CXXFLAGS="$CXXFLAGS $VISIBILITY_CXXFLAGS"
228 AC_LANG_PUSH([C++])
229 AC_LINK_IFELSE([AC_LANG_PROGRAM()], AC_MSG_RESULT([yes]),
230 [VISIBILITY_CXXFLAGS="" ; AC_MSG_RESULT([no])]);
231 AC_LANG_POP([C++])
232
233 # Restore CXXFLAGS; VISIBILITY_CXXFLAGS are added to it where needed.
234 CXXFLAGS=$save_CXXFLAGS
235
236 # Work around aliasing bugs - developers should comment this out
237 CXXFLAGS_FOR_BUILD="$CXXFLAGS_FOR_BUILD -fno-strict-aliasing"
238 CXXFLAGS="$CXXFLAGS -fno-strict-aliasing"
239
240 # gcc's builtin memcmp is slower than glibc's
241 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43052
242 CXXFLAGS_FOR_BUILD="$CXXFLAGS_FOR_BUILD -fno-builtin-memcmp"
243 CXXFLAGS="$CXXFLAGS -fno-builtin-memcmp"
244 fi
245
246 dnl even if the compiler appears to support it, using visibility attributes isn't
247 dnl going to do anything useful currently on cygwin apart from emit lots of warnings
248 case "$host_os" in
249 cygwin*)
250 VISIBILITY_CFLAGS=""
251 VISIBILITY_CXXFLAGS=""
252 ;;
253 esac
254
255 AC_SUBST([VISIBILITY_CFLAGS])
256 AC_SUBST([VISIBILITY_CXXFLAGS])
257
258 dnl
259 dnl Hacks to enable 32 or 64 bit build
260 dnl
261 AC_ARG_ENABLE([32-bit],
262 [AS_HELP_STRING([--enable-32-bit],
263 [build 32-bit libraries @<:@default=auto@:>@])],
264 [enable_32bit="$enableval"],
265 [enable_32bit=auto]
266 )
267 if test "x$enable_32bit" = xyes; then
268 if test "x$GCC" = xyes; then
269 CFLAGS="$CFLAGS -m32"
270 CCASFLAGS="$CCASFLAGS -m32"
271 fi
272 if test "x$GXX" = xyes; then
273 CXXFLAGS="$CXXFLAGS -m32"
274 fi
275 fi
276 AC_ARG_ENABLE([64-bit],
277 [AS_HELP_STRING([--enable-64-bit],
278 [build 64-bit libraries @<:@default=auto@:>@])],
279 [enable_64bit="$enableval"],
280 [enable_64bit=auto]
281 )
282 if test "x$enable_64bit" = xyes; then
283 if test "x$GCC" = xyes; then
284 CFLAGS="$CFLAGS -m64"
285 fi
286 if test "x$GXX" = xyes; then
287 CXXFLAGS="$CXXFLAGS -m64"
288 fi
289 fi
290
291 dnl Can't have static and shared libraries, default to static if user
292 dnl explicitly requested. If both disabled, set to static since shared
293 dnl was explicitly requested.
294 case "x$enable_static$enable_shared" in
295 xyesyes )
296 AC_MSG_WARN([Cannot build static and shared libraries, disabling shared])
297 enable_shared=no
298 ;;
299 xnono )
300 AC_MSG_WARN([Cannot disable both static and shared libraries, enabling static])
301 enable_static=yes
302 ;;
303 esac
304
305 AM_CONDITIONAL(BUILD_SHARED, test "x$enable_shared" = xyes)
306
307 dnl
308 dnl other compiler options
309 dnl
310 AC_ARG_ENABLE([debug],
311 [AS_HELP_STRING([--enable-debug],
312 [use debug compiler flags and macros @<:@default=disabled@:>@])],
313 [enable_debug="$enableval"],
314 [enable_debug=no]
315 )
316 if test "x$enable_debug" = xyes; then
317 DEFINES_FOR_BUILD="$DEFINES_FOR_BUILD -DDEBUG"
318 if test "x$GCC_FOR_BUILD" = xyes; then
319 CFLAGS_FOR_BUILD="$CFLAGS_FOR_BUILD -g -O0"
320 fi
321 if test "x$GXX_FOR_BUILD" = xyes; then
322 CXXFLAGS_FOR_BUILD="$CXXFLAGS_FOR_BUILD -g -O0"
323 fi
324
325 DEFINES="$DEFINES -DDEBUG"
326 if test "x$GCC" = xyes; then
327 CFLAGS="$CFLAGS -g -O0"
328 fi
329 if test "x$GXX" = xyes; then
330 CXXFLAGS="$CXXFLAGS -g -O0"
331 fi
332 fi
333
334 dnl
335 dnl library names
336 dnl
337 LIB_PREFIX_GLOB='lib'
338 LIB_VERSION_SEPARATOR='.'
339 if test "$enable_static" = yes; then
340 LIB_EXTENSION='a'
341 else
342 case "$host_os" in
343 darwin* )
344 LIB_EXTENSION='dylib' ;;
345 cygwin* )
346 dnl prefix can be 'cyg' or 'lib'
347 LIB_PREFIX_GLOB='???'
348 LIB_VERSION_SEPARATOR='-'
349 LIB_EXTENSION='dll' ;;
350 aix* )
351 LIB_EXTENSION='a' ;;
352 * )
353 LIB_EXTENSION='so' ;;
354 esac
355 fi
356 AC_ARG_WITH([gl-lib-name],
357 [AS_HELP_STRING([--with-gl-lib-name@<:@=NAME@:>@],
358 [specify GL library name @<:@default=GL@:>@])],
359 [GL_LIB=$withval],
360 [GL_LIB=GL])
361 AC_ARG_WITH([osmesa-lib-name],
362 [AS_HELP_STRING([--with-osmesa-lib-name@<:@=NAME@:>@],
363 [specify OSMesa library name @<:@default=OSMesa@:>@])],
364 [OSMESA_LIB=$withval],
365 [OSMESA_LIB=OSMesa])
366 AS_IF([test "x$GL_LIB" = xyes], [GL_LIB=GL])
367 AS_IF([test "x$OSMESA_LIB" = xyes], [OSMESA_LIB=OSMesa])
368
369 dnl
370 dnl Mangled Mesa support
371 dnl
372 AC_ARG_ENABLE([mangling],
373 [AS_HELP_STRING([--enable-mangling],
374 [enable mangled symbols and library name @<:@default=disabled@:>@])],
375 [enable_mangling="${enableval}"],
376 [enable_mangling=no]
377 )
378 if test "x${enable_mangling}" = "xyes" ; then
379 DEFINES="${DEFINES} -DUSE_MGL_NAMESPACE"
380 GL_LIB="Mangled${GL_LIB}"
381 OSMESA_LIB="Mangled${OSMESA_LIB}"
382 fi
383 AC_SUBST([GL_LIB])
384 AC_SUBST([OSMESA_LIB])
385
386 dnl
387 dnl potentially-infringing-but-nobody-knows-for-sure stuff
388 dnl
389 AC_ARG_ENABLE([texture-float],
390 [AS_HELP_STRING([--enable-texture-float],
391 [enable floating-point textures and renderbuffers @<:@default=disabled@:>@])],
392 [enable_texture_float="$enableval"],
393 [enable_texture_float=no]
394 )
395 if test "x$enable_texture_float" = xyes; then
396 AC_MSG_WARN([Floating-point textures enabled.])
397 AC_MSG_WARN([Please consult docs/patents.txt with your lawyer before building Mesa.])
398 DEFINES="$DEFINES -DTEXTURE_FLOAT_ENABLED"
399 fi
400
401 GL_LIB_NAME='lib$(GL_LIB).'${LIB_EXTENSION}
402 OSMESA_LIB_NAME='lib$(OSMESA_LIB).'${LIB_EXTENSION}
403 EGL_LIB_NAME='lib$(EGL_LIB).'${LIB_EXTENSION}
404 GLESv1_CM_LIB_NAME='lib$(GLESv1_CM_LIB).'${LIB_EXTENSION}
405 GLESv2_LIB_NAME='lib$(GLESv2_LIB).'${LIB_EXTENSION}
406 VG_LIB_NAME='lib$(VG_LIB).'${LIB_EXTENSION}
407 GLAPI_LIB_NAME='lib$(GLAPI_LIB).'${LIB_EXTENSION}
408
409 GL_LIB_GLOB=${LIB_PREFIX_GLOB}'$(GL_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
410 EGL_LIB_GLOB=${LIB_PREFIX_GLOB}'$(EGL_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
411 EGL_LIB_GLOB=${LIB_PREFIX_GLOB}'$(EGL_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
412 GLESv1_CM_LIB_GLOB=${LIB_PREFIX_GLOB}'$(GLESv1_CM_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
413 GLESv2_LIB_GLOB=${LIB_PREFIX_GLOB}'$(GLESv2_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
414 VG_LIB_GLOB=${LIB_PREFIX_GLOB}'$(VG_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
415 GLAPI_LIB_GLOB=${LIB_PREFIX_GLOB}'$(GLAPI_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
416
417 AC_SUBST([GL_LIB_NAME])
418 AC_SUBST([OSMESA_LIB_NAME])
419 AC_SUBST([EGL_LIB_NAME])
420 AC_SUBST([GLESv1_CM_LIB_NAME])
421 AC_SUBST([GLESv2_LIB_NAME])
422 AC_SUBST([VG_LIB_NAME])
423 AC_SUBST([GLAPI_LIB_NAME])
424
425 AC_SUBST([GL_LIB_GLOB])
426 AC_SUBST([EGL_LIB_GLOB])
427 AC_SUBST([GLESv1_CM_LIB_GLOB])
428 AC_SUBST([GLESv2_LIB_GLOB])
429 AC_SUBST([VG_LIB_GLOB])
430 AC_SUBST([GLAPI_LIB_GLOB])
431
432 dnl
433 dnl Arch/platform-specific settings
434 dnl
435 AC_ARG_ENABLE([asm],
436 [AS_HELP_STRING([--disable-asm],
437 [disable assembly usage @<:@default=enabled on supported plaforms@:>@])],
438 [enable_asm="$enableval"],
439 [enable_asm=yes]
440 )
441 asm_arch=""
442 AC_MSG_CHECKING([whether to enable assembly])
443 test "x$enable_asm" = xno && AC_MSG_RESULT([no])
444 # disable if cross compiling on x86/x86_64 since we must run gen_matypes
445 if test "x$enable_asm" = xyes && test "x$cross_compiling" = xyes; then
446 case "$host_cpu" in
447 i?86 | x86_64 | amd64)
448 enable_asm=no
449 AC_MSG_RESULT([no, cross compiling])
450 ;;
451 esac
452 fi
453 # check for supported arches
454 if test "x$enable_asm" = xyes; then
455 case "$host_cpu" in
456 i?86)
457 case "$host_os" in
458 linux* | *freebsd* | dragonfly* | *netbsd* | openbsd*)
459 test "x$enable_64bit" = xyes && asm_arch=x86_64 || asm_arch=x86
460 ;;
461 gnu*)
462 asm_arch=x86
463 ;;
464 esac
465 ;;
466 x86_64|amd64)
467 case "$host_os" in
468 linux* | *freebsd* | dragonfly* | *netbsd* | openbsd*)
469 test "x$enable_32bit" = xyes && asm_arch=x86 || asm_arch=x86_64
470 ;;
471 esac
472 ;;
473 sparc*)
474 case "$host_os" in
475 linux*)
476 asm_arch=sparc
477 ;;
478 esac
479 ;;
480 esac
481
482 case "$asm_arch" in
483 x86)
484 DEFINES="$DEFINES -DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_3DNOW_ASM -DUSE_SSE_ASM"
485 AC_MSG_RESULT([yes, x86])
486 ;;
487 x86_64|amd64)
488 DEFINES="$DEFINES -DUSE_X86_64_ASM"
489 AC_MSG_RESULT([yes, x86_64])
490 ;;
491 sparc)
492 DEFINES="$DEFINES -DUSE_SPARC_ASM"
493 AC_MSG_RESULT([yes, sparc])
494 ;;
495 *)
496 AC_MSG_RESULT([no, platform not supported])
497 ;;
498 esac
499 fi
500
501 dnl Check to see if dlopen is in default libraries (like Solaris, which
502 dnl has it in libc), or if libdl is needed to get it.
503 AC_CHECK_FUNC([dlopen], [DEFINES="$DEFINES -DHAVE_DLOPEN"],
504 [AC_CHECK_LIB([dl], [dlopen],
505 [DEFINES="$DEFINES -DHAVE_DLOPEN"; DLOPEN_LIBS="-ldl"])])
506 AC_SUBST([DLOPEN_LIBS])
507
508 case "$host_os" in
509 darwin*|mingw*)
510 ;;
511 *)
512 AC_CHECK_FUNCS([clock_gettime], [CLOCK_LIB=],
513 [AC_CHECK_LIB([rt], [clock_gettime], [CLOCK_LIB=-lrt],
514 [AC_MSG_ERROR([Couldn't find clock_gettime])])])
515 AC_SUBST([CLOCK_LIB])
516 ;;
517 esac
518
519 dnl See if posix_memalign is available
520 AC_CHECK_FUNC([posix_memalign], [DEFINES="$DEFINES -DHAVE_POSIX_MEMALIGN"])
521
522 dnl Check for pthreads
523 AX_PTHREAD
524 dnl AX_PTHREADS leaves PTHREAD_LIBS empty for gcc and sets PTHREAD_CFLAGS
525 dnl to -pthread, which causes problems if we need -lpthread to appear in
526 dnl pkgconfig files.
527 test -z "$PTHREAD_LIBS" && PTHREAD_LIBS="-lpthread"
528
529 dnl SELinux awareness.
530 AC_ARG_ENABLE([selinux],
531 [AS_HELP_STRING([--enable-selinux],
532 [Build SELinux-aware Mesa @<:@default=disabled@:>@])],
533 [MESA_SELINUX="$enableval"],
534 [MESA_SELINUX=no])
535 if test "x$enable_selinux" = "xyes"; then
536 AC_CHECK_HEADER([selinux/selinux.h],[],
537 [AC_MSG_ERROR([SELinux headers not found])])
538 AC_CHECK_LIB([selinux],[is_selinux_enabled],[],
539 [AC_MSG_ERROR([SELinux library not found])])
540 SELINUX_LIBS="-lselinux"
541 DEFINES="$DEFINES -DMESA_SELINUX"
542 fi
543 AC_SUBST([SELINUX_LIBS])
544
545 dnl Options for APIs
546 AC_ARG_ENABLE([opengl],
547 [AS_HELP_STRING([--disable-opengl],
548 [disable support for standard OpenGL API @<:@default=no@:>@])],
549 [enable_opengl="$enableval"],
550 [enable_opengl=yes])
551 AC_ARG_ENABLE([gles1],
552 [AS_HELP_STRING([--enable-gles1],
553 [enable support for OpenGL ES 1.x API @<:@default=no@:>@])],
554 [enable_gles1="$enableval"],
555 [enable_gles1=no])
556 AC_ARG_ENABLE([gles2],
557 [AS_HELP_STRING([--enable-gles2],
558 [enable support for OpenGL ES 2.x API @<:@default=no@:>@])],
559 [enable_gles2="$enableval"],
560 [enable_gles2=no])
561 AC_ARG_ENABLE([openvg],
562 [AS_HELP_STRING([--enable-openvg],
563 [enable support for OpenVG API @<:@default=no@:>@])],
564 [enable_openvg="$enableval"],
565 [enable_openvg=no])
566
567 AC_ARG_ENABLE([dri],
568 [AS_HELP_STRING([--enable-dri],
569 [enable DRI modules @<:@default=enabled@:>@])],
570 [enable_dri="$enableval"],
571 [enable_dri=yes])
572 AC_ARG_ENABLE([glx],
573 [AS_HELP_STRING([--enable-glx],
574 [enable GLX library @<:@default=enabled@:>@])],
575 [enable_glx="$enableval"],
576 [enable_glx=yes])
577 AC_ARG_ENABLE([osmesa],
578 [AS_HELP_STRING([--enable-osmesa],
579 [enable OSMesa library @<:@default=disabled@:>@])],
580 [enable_osmesa="$enableval"],
581 [enable_osmesa=no])
582 AC_ARG_ENABLE([egl],
583 [AS_HELP_STRING([--disable-egl],
584 [disable EGL library @<:@default=enabled@:>@])],
585 [enable_egl="$enableval"],
586 [enable_egl=yes])
587
588 AC_ARG_ENABLE([xorg],
589 [AS_HELP_STRING([--enable-xorg],
590 [enable support for X.Org DDX API @<:@default=no@:>@])],
591 [enable_xorg="$enableval"],
592 [enable_xorg=no])
593 AC_ARG_ENABLE([xa],
594 [AS_HELP_STRING([--enable-xa],
595 [enable build of the XA X Acceleration API @<:@default=no@:>@])],
596 [enable_xa="$enableval"],
597 [enable_xa=no])
598 AC_ARG_ENABLE([gbm],
599 [AS_HELP_STRING([--enable-gbm],
600 [enable gbm library @<:@default=auto@:>@])],
601 [enable_gbm="$enableval"],
602 [enable_gbm=auto])
603
604 AC_ARG_ENABLE([xvmc],
605 [AS_HELP_STRING([--enable-xvmc],
606 [enable xvmc library @<:@default=auto@:>@])],
607 [enable_xvmc="$enableval"],
608 [enable_xvmc=auto])
609 AC_ARG_ENABLE([vdpau],
610 [AS_HELP_STRING([--enable-vdpau],
611 [enable vdpau library @<:@default=auto@:>@])],
612 [enable_vdpau="$enableval"],
613 [enable_vdpau=auto])
614 AC_ARG_ENABLE([opencl],
615 [AS_HELP_STRING([--enable-opencl],
616 [enable OpenCL library NOTE: Enabling this option will also enable
617 --with-llvm-shared-libs
618 @<:@default=no@:>@])],
619 [],
620 [enable_opencl=no])
621 AC_ARG_ENABLE([xlib-glx],
622 [AS_HELP_STRING([--enable-xlib-glx],
623 [make GLX library Xlib-based instead of DRI-based @<:@default=disabled@:>@])],
624 [enable_xlib_glx="$enableval"],
625 [enable_xlib_glx=no])
626 AC_ARG_ENABLE([gallium-egl],
627 [AS_HELP_STRING([--enable-gallium-egl],
628 [enable optional EGL state tracker (not required
629 for EGL support in Gallium with OpenGL and OpenGL ES)
630 @<:@default=disable@:>@])],
631 [enable_gallium_egl="$enableval"],
632 [enable_gallium_egl=no])
633 AC_ARG_ENABLE([gallium-gbm],
634 [AS_HELP_STRING([--enable-gallium-gbm],
635 [enable optional gbm state tracker (not required for
636 gbm support in Gallium)
637 @<:@default=auto@:>@])],
638 [enable_gallium_gbm="$enableval"],
639 [enable_gallium_gbm=auto])
640
641 AC_ARG_ENABLE([r600-llvm-compiler],
642 [AS_HELP_STRING([--enable-r600-llvm-compiler],
643 [Enable experimental LLVM backend for graphics shaders @<:@default=disable@:>@])],
644 [enable_r600_llvm="$enableval"],
645 [enable_r600_llvm=no])
646
647 AC_ARG_ENABLE([gallium-tests],
648 [AS_HELP_STRING([--enable-gallium-tests],
649 [Enable optional Gallium tests) @<:@default=disable@:>@])],
650 [enable_gallium_tests="$enableval"],
651 [enable_gallium_tests=no])
652
653 # Option for Gallium drivers
654
655 # Keep this in sync with the --with-gallium-drivers help string default value
656 GALLIUM_DRIVERS_DEFAULT="r300,r600,svga,swrast"
657
658 AC_ARG_WITH([gallium-drivers],
659 [AS_HELP_STRING([--with-gallium-drivers@<:@=DIRS...@:>@],
660 [comma delimited Gallium drivers list, e.g.
661 "i915,ilo,nouveau,r300,r600,radeonsi,freedreno,svga,swrast"
662 @<:@default=r300,r600,svga,swrast@:>@])],
663 [with_gallium_drivers="$withval"],
664 [with_gallium_drivers="$GALLIUM_DRIVERS_DEFAULT"])
665
666 # Doing '--without-gallium-drivers' will set this variable to 'no'. Clear it
667 # here so that the script doesn't choke on an unknown driver name later.
668 case "$with_gallium_drivers" in
669 yes) with_gallium_drivers="$GALLIUM_DRIVERS_DEFAULT" ;;
670 no) with_gallium_drivers='' ;;
671 esac
672
673 if test "x$enable_opengl" = xno -a \
674 "x$enable_gles1" = xno -a \
675 "x$enable_gles2" = xno -a \
676 "x$enable_openvg" = xno -a \
677 "x$enable_xorg" = xno -a \
678 "x$enable_xa" = xno -a \
679 "x$enable_xvmc" = xno -a \
680 "x$enable_vdpau" = xno -a \
681 "x$enable_opencl" = xno; then
682 AC_MSG_ERROR([at least one API should be enabled])
683 fi
684
685 # Building OpenGL ES1 and/or ES2 without OpenGL is not supported on mesa 9.0.x
686 if test "x$enable_opengl" = xno -a \
687 "x$enable_gles1" = xyes; then
688 AC_MSG_ERROR([Building OpenGL ES1 without OpenGL is not supported])
689 fi
690
691 if test "x$enable_opengl" = xno -a \
692 "x$enable_gles2" = xyes; then
693 AC_MSG_ERROR([Building OpenGL ES2 without OpenGL is not supported])
694 fi
695
696 AM_CONDITIONAL(HAVE_OPENGL, test "x$enable_opengl" = xyes)
697 AM_CONDITIONAL(HAVE_OPENGL_ES1, test "x$enable_gles1" = xyes)
698 AM_CONDITIONAL(HAVE_OPENGL_ES2, test "x$enable_gles2" = xyes)
699 AM_CONDITIONAL(NEED_OPENGL_COMMON, test "x$enable_opengl" = xyes -o \
700 "x$enable_gles1" = xyes -o \
701 "x$enable_gles2" = xyes)
702
703 if test "x$enable_glx" = xno; then
704 AC_MSG_WARN([GLX disabled, disabling Xlib-GLX])
705 enable_xlib_glx=no
706 fi
707
708 if test "x$enable_dri$enable_xlib_glx" = xyesyes; then
709 AC_MSG_ERROR([DRI and Xlib-GLX cannot be built together])
710 fi
711
712 if test "x$enable_opengl$enable_xlib_glx" = xnoyes; then
713 AC_MSG_ERROR([Xlib-GLX cannot be built without OpenGL])
714 fi
715
716 # Disable GLX if OpenGL is not enabled
717 if test "x$enable_glx$enable_opengl" = xyesno; then
718 AC_MSG_WARN([OpenGL not enabled, disabling GLX])
719 enable_glx=no
720 fi
721
722 # Disable GLX if DRI and Xlib-GLX are not enabled
723 if test "x$enable_glx" = xyes -a \
724 "x$enable_dri" = xno -a \
725 "x$enable_xlib_glx" = xno; then
726 AC_MSG_WARN([Neither DRI nor Xlib-GLX enabled, disabling GLX])
727 enable_glx=no
728 fi
729
730 AM_CONDITIONAL(HAVE_DRI_GLX, test "x$enable_glx" = xyes -a \
731 "x$enable_dri" = xyes)
732 AM_CONDITIONAL(HAVE_DRI, test "x$enable_dri" = xyes)
733 AM_CONDITIONAL(NEED_LIBMESA, test "x$enable_xlib_glx" = xyes -o \
734 "x$enable_osmesa" = xyes)
735
736 AC_ARG_ENABLE([shared-glapi],
737 [AS_HELP_STRING([--enable-shared-glapi],
738 [Enable shared glapi for OpenGL @<:@default=yes@:>@])],
739 [enable_shared_glapi="$enableval"],
740 [enable_shared_glapi="$enable_dri"])
741
742 # Shared GLAPI is only useful for DRI
743 if test "x$enable_dri" = xno; then
744 AC_MSG_NOTICE([Shared GLAPI is only useful for DRI, disabling])
745 enable_shared_glapi=no
746 fi
747
748 AM_CONDITIONAL(HAVE_SHARED_GLAPI, test "x$enable_shared_glapi" = xyes)
749
750 dnl
751 dnl Driver specific build directories
752 dnl
753 GALLIUM_TARGET_DIRS=""
754 GALLIUM_WINSYS_DIRS="sw"
755 GALLIUM_DRIVERS_DIRS="galahad trace rbug noop identity"
756 GALLIUM_STATE_TRACKERS_DIRS=""
757
758 case "x$enable_glx$enable_xlib_glx" in
759 xyesyes)
760 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/xlib"
761 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS libgl-xlib"
762 GALLIUM_STATE_TRACKERS_DIRS="glx $GALLIUM_STATE_TRACKERS_DIRS"
763 NEED_WINSYS_XLIB="yes"
764 ;;
765 esac
766
767 if test "x$enable_dri" = xyes; then
768 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/dri"
769 GALLIUM_STATE_TRACKERS_DIRS="dri $GALLIUM_STATE_TRACKERS_DIRS"
770 fi
771
772 if test "x$enable_osmesa" = xyes; then
773 GALLIUM_STATE_TRACKERS_DIRS="osmesa $GALLIUM_STATE_TRACKERS_DIRS"
774 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS osmesa"
775 fi
776
777 AC_SUBST([MESA_LLVM])
778
779 # Check for libdrm
780 PKG_CHECK_MODULES([LIBDRM], [libdrm >= $LIBDRM_REQUIRED],
781 [have_libdrm=yes], [have_libdrm=no])
782
783 if test "x$enable_dri" = xyes; then
784 # DRI must be shared, I think
785 if test "$enable_static" = yes; then
786 AC_MSG_ERROR([Cannot use static libraries for DRI drivers])
787 fi
788
789 # not a hard requirement as swrast does not depend on it
790 if test "x$have_libdrm" = xyes; then
791 DRI_PC_REQ_PRIV="libdrm >= $LIBDRM_REQUIRED"
792 fi
793 fi
794
795 dnl Direct rendering or just indirect rendering
796 case "$host_os" in
797 gnu*)
798 dnl Disable by default on GNU/Hurd
799 driglx_direct_default="no"
800 ;;
801 cygwin*)
802 dnl Disable by default on cygwin
803 driglx_direct_default="no"
804 ;;
805 *)
806 driglx_direct_default="yes"
807 ;;
808 esac
809 AC_ARG_ENABLE([driglx-direct],
810 [AS_HELP_STRING([--disable-driglx-direct],
811 [disable direct rendering in GLX and EGL for DRI \
812 @<:@default=auto@:>@])],
813 [driglx_direct="$enableval"],
814 [driglx_direct="$driglx_direct_default"])
815
816 dnl
817 dnl libGL configuration per driver
818 dnl
819 case "x$enable_glx$enable_xlib_glx" in
820 xyesyes)
821 # Xlib-based GLX
822 PKG_CHECK_MODULES([XLIBGL], [x11 xext])
823 GL_PC_REQ_PRIV="x11 xext"
824 X11_INCLUDES="$X11_INCLUDES $XLIBGL_CFLAGS"
825 GL_LIB_DEPS="$XLIBGL_LIBS"
826 GL_LIB_DEPS="$GL_LIB_DEPS $SELINUX_LIBS -lm $PTHREAD_LIBS $DLOPEN_LIBS"
827 GL_PC_LIB_PRIV="$GL_PC_LIB_PRIV $SELINUX_LIBS -lm $PTHREAD_LIBS"
828 ;;
829 xyesno)
830 # DRI-based GLX
831 PKG_CHECK_MODULES([GLPROTO], [glproto >= $GLPROTO_REQUIRED])
832 if test x"$driglx_direct" = xyes; then
833 if test "x$have_libdrm" != xyes; then
834 AC_MSG_ERROR([Direct rendering requires libdrm >= $LIBDRM_REQUIRED])
835 fi
836 PKG_CHECK_MODULES([DRI2PROTO], [dri2proto >= $DRI2PROTO_REQUIRED])
837 GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV libdrm >= $LIBDRM_REQUIRED"
838 fi
839
840 # find the DRI deps for libGL
841 dri_modules="x11 xext xdamage xfixes x11-xcb xcb-glx >= 1.8.1 xcb-dri2 >= 1.8"
842
843 # add xf86vidmode if available
844 PKG_CHECK_MODULES([XF86VIDMODE], [xxf86vm], HAVE_XF86VIDMODE=yes, HAVE_XF86VIDMODE=no)
845 if test "$HAVE_XF86VIDMODE" = yes ; then
846 dri_modules="$dri_modules xxf86vm"
847 fi
848
849 PKG_CHECK_MODULES([DRIGL], [$dri_modules])
850 GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV $dri_modules"
851 X11_INCLUDES="$X11_INCLUDES $DRIGL_CFLAGS"
852 GL_LIB_DEPS="$DRIGL_LIBS"
853
854 # need DRM libs, $PTHREAD_LIBS, etc.
855 GL_LIB_DEPS="$GL_LIB_DEPS $LIBDRM_LIBS -lm $PTHREAD_LIBS $DLOPEN_LIBS"
856 GL_PC_LIB_PRIV="-lm $PTHREAD_LIBS $DLOPEN_LIBS"
857 ;;
858 esac
859
860 # This is outside the case (above) so that it is invoked even for non-GLX
861 # builds.
862 AM_CONDITIONAL(HAVE_XF86VIDMODE, test "x$HAVE_XF86VIDMODE" = xyes)
863
864 GLESv1_CM_LIB_DEPS="$LIBDRM_LIBS -lm $PTHREAD_LIBS $DLOPEN_LIBS"
865 GLESv1_CM_PC_LIB_PRIV="-lm $PTHREAD_LIBS $DLOPEN_LIBS"
866 GLESv2_LIB_DEPS="$LIBDRM_LIBS -lm $PTHREAD_LIBS $DLOPEN_LIBS"
867 GLESv2_PC_LIB_PRIV="-lm $PTHREAD_LIBS $DLOPEN_LIBS"
868
869 AC_SUBST([X11_INCLUDES])
870 AC_SUBST([GL_LIB_DEPS])
871 AC_SUBST([GL_PC_REQ_PRIV])
872 AC_SUBST([GL_PC_LIB_PRIV])
873 AC_SUBST([GL_PC_CFLAGS])
874 AC_SUBST([DRI_PC_REQ_PRIV])
875 AC_SUBST([GLESv1_CM_LIB_DEPS])
876 AC_SUBST([GLESv1_CM_PC_LIB_PRIV])
877 AC_SUBST([GLESv2_LIB_DEPS])
878 AC_SUBST([GLESv2_PC_LIB_PRIV])
879
880 DRI_LIB_DEPS="\$(top_builddir)/src/mesa/libdricore/libdricore${VERSION}.la"
881
882 AC_SUBST([HAVE_XF86VIDMODE])
883
884 dnl
885 dnl More GLX setup
886 dnl
887 case "x$enable_glx$enable_xlib_glx" in
888 xyesyes)
889 DEFINES="$DEFINES -DUSE_XSHM"
890 ;;
891 xyesno)
892 DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING"
893 if test "x$driglx_direct" = xyes; then
894 DEFINES="$DEFINES -DGLX_DIRECT_RENDERING"
895 fi
896 ;;
897 esac
898
899 dnl
900 dnl TLS detection
901 dnl
902
903 AC_ARG_ENABLE([glx-tls],
904 [AS_HELP_STRING([--enable-glx-tls],
905 [enable TLS support in GLX @<:@default=disabled@:>@])],
906 [GLX_USE_TLS="$enableval"],
907 [GLX_USE_TLS=no])
908 AC_SUBST(GLX_TLS, ${GLX_USE_TLS})
909
910 AS_IF([test "x$GLX_USE_TLS" = xyes -a "x$ax_pthread_ok" = xyes],
911 [DEFINES="${DEFINES} -DGLX_USE_TLS -DHAVE_PTHREAD"])
912
913 dnl
914 dnl More DRI setup
915 dnl
916 dnl Directory for DRI drivers
917 AC_ARG_WITH([dri-driverdir],
918 [AS_HELP_STRING([--with-dri-driverdir=DIR],
919 [directory for the DRI drivers @<:@${libdir}/dri@:>@])],
920 [DRI_DRIVER_INSTALL_DIR="$withval"],
921 [DRI_DRIVER_INSTALL_DIR='${libdir}/dri'])
922 AC_SUBST([DRI_DRIVER_INSTALL_DIR])
923 dnl Extra search path for DRI drivers
924 AC_ARG_WITH([dri-searchpath],
925 [AS_HELP_STRING([--with-dri-searchpath=DIRS...],
926 [semicolon delimited DRI driver search directories @<:@${libdir}/dri@:>@])],
927 [DRI_DRIVER_SEARCH_DIR="$withval"],
928 [DRI_DRIVER_SEARCH_DIR='${DRI_DRIVER_INSTALL_DIR}'])
929 AC_SUBST([DRI_DRIVER_SEARCH_DIR])
930 dnl Which drivers to build - default is chosen by platform
931 AC_ARG_WITH([dri-drivers],
932 [AS_HELP_STRING([--with-dri-drivers@<:@=DIRS...@:>@],
933 [comma delimited DRI drivers list, e.g.
934 "swrast,i965,radeon" @<:@default=auto@:>@])],
935 [with_dri_drivers="$withval"],
936 [with_dri_drivers=yes])
937 if test "x$with_dri_drivers" = x; then
938 with_dri_drivers=no
939 fi
940
941 dnl If $with_dri_drivers is yes, directories will be added through
942 dnl platform checks
943 DRI_DIRS=""
944 case "$with_dri_drivers" in
945 no) ;;
946 yes)
947 # classic DRI drivers
948 if test "x$enable_opengl" = xyes; then
949 DRI_DIRS="yes"
950 fi
951 ;;
952 *)
953 # verify the requested driver directories exist
954 dri_drivers=`IFS=', '; echo $with_dri_drivers`
955 for driver in $dri_drivers; do
956 test -d "$srcdir/src/mesa/drivers/dri/$driver" || \
957 AC_MSG_ERROR([DRI driver directory '$driver' does not exist])
958 done
959 DRI_DIRS="$dri_drivers"
960 if test -n "$DRI_DIRS" -a "x$enable_opengl" != xyes; then
961 AC_MSG_ERROR([--with-dri-drivers requires OpenGL])
962 fi
963 ;;
964 esac
965
966 dnl Set DRI_DIRS, DEFINES and LIB_DEPS
967 if test "x$enable_dri" = xyes; then
968 # Platform specific settings and drivers to build
969 case "$host_os" in
970 linux*)
971 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1"
972 DEFINES="$DEFINES -DHAVE_ALIAS"
973
974 case "$host_cpu" in
975 x86_64|amd64)
976 if test "x$DRI_DIRS" = "xyes"; then
977 DRI_DIRS="i915 i965 nouveau r200 radeon swrast"
978 fi
979 ;;
980 powerpc*)
981 # Build only the drivers for cards that exist on PowerPC.
982 if test "x$DRI_DIRS" = "xyes"; then
983 DRI_DIRS="r200 radeon swrast"
984 fi
985 ;;
986 sparc*)
987 # Build only the drivers for cards that exist on sparc
988 if test "x$DRI_DIRS" = "xyes"; then
989 DRI_DIRS="r200 radeon swrast"
990 fi
991 ;;
992 esac
993 ;;
994 freebsd* | dragonfly* | *netbsd* | openbsd*)
995 DEFINES="$DEFINES -DHAVE_PTHREAD -DUSE_EXTERNAL_DXTN_LIB=1"
996 DEFINES="$DEFINES -DHAVE_ALIAS"
997
998 if test "x$DRI_DIRS" = "xyes"; then
999 DRI_DIRS="i915 i965 nouveau r200 radeon swrast"
1000 fi
1001 ;;
1002 gnu*)
1003 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1"
1004 DEFINES="$DEFINES -DHAVE_ALIAS"
1005 ;;
1006 solaris*)
1007 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1"
1008 ;;
1009 cygwin*)
1010 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1"
1011 if test "x$DRI_DIRS" = "xyes"; then
1012 DRI_DIRS="swrast"
1013 fi
1014 ;;
1015 esac
1016
1017 # default drivers
1018 if test "x$DRI_DIRS" = "xyes"; then
1019 DRI_DIRS="i915 i965 nouveau r200 radeon swrast"
1020 fi
1021
1022 DRI_DIRS=`echo "$DRI_DIRS" | $SED 's/ */ /g'`
1023
1024 # Check for expat
1025 EXPAT_INCLUDES=""
1026 EXPAT_LIB=-lexpat
1027 AC_ARG_WITH([expat],
1028 [AS_HELP_STRING([--with-expat=DIR],
1029 [expat install directory])],[
1030 EXPAT_INCLUDES="-I$withval/include"
1031 CPPFLAGS="$CPPFLAGS $EXPAT_INCLUDES"
1032 LDFLAGS="$LDFLAGS -L$withval/$LIB_DIR"
1033 EXPAT_LIB="-L$withval/$LIB_DIR -lexpat"
1034 ])
1035 AC_CHECK_HEADER([expat.h],[],[AC_MSG_ERROR([Expat required for DRI.])])
1036 save_LIBS="$LIBS"
1037 AC_CHECK_LIB([expat],[XML_ParserCreate],[],
1038 [AC_MSG_ERROR([Expat required for DRI.])])
1039 LIBS="$save_LIBS"
1040
1041 # If we are building any DRI driver other than swrast.
1042 if test -n "$DRI_DIRS" -a x"$DRI_DIRS" != xswrast; then
1043 # ... libdrm is required
1044 if test "x$have_libdrm" != xyes; then
1045 AC_MSG_ERROR([DRI drivers requires libdrm >= $LIBDRM_REQUIRED])
1046 fi
1047 # ... and build dricommon
1048 HAVE_COMMON_DRI=yes
1049 fi
1050
1051 # put all the necessary libs together
1052 DRI_LIB_DEPS="$DRI_LIB_DEPS $SELINUX_LIBS $LIBDRM_LIBS $EXPAT_LIB -lm $PTHREAD_LIBS $DLOPEN_LIBS"
1053 GALLIUM_DRI_LIB_DEPS="$GALLIUM_DRI_LIB_DEPS $SELINUX_LIBS $LIBDRM_LIBS $EXPAT_LIB -lm $CLOCK_LIB $PTHREAD_LIBS $DLOPEN_LIBS"
1054 fi
1055 AM_CONDITIONAL(NEED_LIBDRICORE, test -n "$DRI_DIRS")
1056 AC_SUBST([EXPAT_INCLUDES])
1057 AC_SUBST([DRI_LIB_DEPS])
1058 AC_SUBST([GALLIUM_DRI_LIB_DEPS])
1059
1060 case $DRI_DIRS in
1061 *i915*|*i965*)
1062 PKG_CHECK_MODULES([INTEL], [libdrm_intel >= $LIBDRM_INTEL_REQUIRED])
1063
1064 for d in $(echo $DRI_DIRS | sed 's/,/ /g'); do
1065 case $d in
1066 i915)
1067 HAVE_I915_DRI=yes;
1068 ;;
1069 i965)
1070 HAVE_I965_DRI=yes;
1071 ;;
1072 esac
1073 done
1074
1075 ;;
1076 esac
1077
1078 case $DRI_DIRS in
1079 *nouveau*)
1080 PKG_CHECK_MODULES([NOUVEAU], [libdrm_nouveau >= $LIBDRM_NVVIEUX_REQUIRED])
1081 HAVE_NOUVEAU_DRI=yes;
1082 ;;
1083 esac
1084
1085 case $DRI_DIRS in
1086 *radeon*|*r200*)
1087 PKG_CHECK_MODULES([RADEON], [libdrm_radeon >= $LIBDRM_RADEON_REQUIRED])
1088
1089 for d in $(echo $DRI_DIRS | sed 's/,/ /g'); do
1090 case $d in
1091 radeon)
1092 HAVE_RADEON_DRI=yes;
1093 ;;
1094 r200)
1095 HAVE_R200_DRI=yes;
1096 ;;
1097 esac
1098 done
1099
1100 ;;
1101 esac
1102
1103 case $DRI_DIRS in
1104 *swrast*)
1105 HAVE_SWRAST_DRI=yes;
1106 ;;
1107 esac
1108
1109 dnl
1110 dnl OSMesa configuration
1111 dnl
1112
1113 dnl Configure the channel bits for OSMesa (libOSMesa, libOSMesa16, ...)
1114 AC_ARG_WITH([osmesa-bits],
1115 [AS_HELP_STRING([--with-osmesa-bits=BITS],
1116 [OSMesa channel bits and library name: 8, 16, 32 @<:@default=8@:>@])],
1117 [osmesa_bits="$withval"],
1118 [osmesa_bits=8])
1119 if test "x$osmesa_bits" != x8; then
1120 if test "x$enable_dri" = xyes -o "x$enable_glx" = xyes; then
1121 AC_MSG_WARN([Ignoring OSMesa channel bits because of non-OSMesa driver])
1122 osmesa_bits=8
1123 fi
1124 fi
1125 case "x$osmesa_bits" in
1126 x8)
1127 OSMESA_LIB="${OSMESA_LIB}"
1128 ;;
1129 x16|x32)
1130 OSMESA_LIB="${OSMESA_LIB}$osmesa_bits"
1131 DEFINES="$DEFINES -DCHAN_BITS=$osmesa_bits -DDEFAULT_SOFTWARE_DEPTH_BITS=31"
1132 ;;
1133 *)
1134 AC_MSG_ERROR([OSMesa bits '$osmesa_bits' is not a valid option])
1135 ;;
1136 esac
1137
1138 if test "x$enable_osmesa" = xyes; then
1139 # only link libraries with osmesa if shared
1140 if test "$enable_static" = no; then
1141 OSMESA_LIB_DEPS="-lm $PTHREAD_LIBS $SELINUX_LIBS $DLOPEN_LIBS"
1142 else
1143 OSMESA_LIB_DEPS=""
1144 fi
1145 OSMESA_MESA_DEPS=""
1146 OSMESA_PC_LIB_PRIV="-lm $PTHREAD_LIBS $SELINUX_LIBS $DLOPEN_LIBS"
1147 fi
1148
1149 AC_SUBST([OSMESA_LIB_DEPS])
1150 AC_SUBST([OSMESA_MESA_DEPS])
1151 AC_SUBST([OSMESA_PC_REQ])
1152 AC_SUBST([OSMESA_PC_LIB_PRIV])
1153
1154 dnl
1155 dnl gbm configuration
1156 dnl
1157 if test "x$enable_gbm" = xauto; then
1158 case "$with_egl_platforms" in
1159 *drm*)
1160 enable_gbm=yes ;;
1161 *)
1162 enable_gbm=no ;;
1163 esac
1164 fi
1165 if test "x$enable_gbm" = xyes; then
1166 PKG_CHECK_MODULES([LIBUDEV], [libudev], [],
1167 AC_MSG_ERROR([gbm needs udev]))
1168
1169 if test "x$enable_dri" = xyes; then
1170 GBM_BACKEND_DIRS="$GBM_BACKEND_DIRS dri"
1171 if test "x$enable_shared_glapi" = xno; then
1172 AC_MSG_ERROR([gbm_dri requires --enable-shared-glapi])
1173 fi
1174 fi
1175 fi
1176 AM_CONDITIONAL(HAVE_GBM, test "x$enable_gbm" = xyes)
1177 GBM_PC_REQ_PRIV="libudev"
1178 GBM_PC_LIB_PRIV="$DLOPEN_LIBS"
1179 AC_SUBST([GBM_PC_REQ_PRIV])
1180 AC_SUBST([GBM_PC_LIB_PRIV])
1181
1182 dnl
1183 dnl EGL configuration
1184 dnl
1185 EGL_CLIENT_APIS=""
1186
1187 if test "x$enable_egl" = xyes; then
1188 EGL_LIB_DEPS="$DLOPEN_LIBS $SELINUX_LIBS $PTHREAD_LIBS"
1189
1190 AC_CHECK_FUNC(mincore, [DEFINES="$DEFINES -DHAVE_MINCORE"])
1191
1192 if test "$enable_static" != yes; then
1193 # build egl_glx when libGL is built
1194 PKG_CHECK_MODULES([LIBUDEV], [libudev > 150],
1195 [have_libudev=yes],[have_libudev=no])
1196 if test "$have_libudev" = yes; then
1197 DEFINES="$DEFINES -DHAVE_LIBUDEV"
1198 fi
1199
1200 if test "x$enable_dri" = xyes; then
1201 HAVE_EGL_DRIVER_DRI2=1
1202 fi
1203
1204 fi
1205 fi
1206 AM_CONDITIONAL(HAVE_EGL, test "x$enable_egl" = xyes)
1207 AC_SUBST([EGL_LIB_DEPS])
1208
1209 dnl
1210 dnl EGL Gallium configuration
1211 dnl
1212 if test "x$enable_gallium_egl" = xyes; then
1213 if test "x$with_gallium_drivers" = x; then
1214 AC_MSG_ERROR([cannot enable egl_gallium without Gallium])
1215 fi
1216 if test "x$enable_egl" = xno; then
1217 AC_MSG_ERROR([cannot enable egl_gallium without EGL])
1218 fi
1219 if test "x$have_libdrm" != xyes; then
1220 AC_MSG_ERROR([egl_gallium requires libdrm >= $LIBDRM_REQUIRED])
1221 fi
1222
1223 GALLIUM_STATE_TRACKERS_DIRS="egl $GALLIUM_STATE_TRACKERS_DIRS"
1224 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS egl-static"
1225 fi
1226 AM_CONDITIONAL(HAVE_GALLIUM_EGL, test "x$enable_gallium_egl" = xyes)
1227
1228 dnl
1229 dnl gbm Gallium configuration
1230 dnl
1231 if test "x$enable_gallium_gbm" = xauto; then
1232 case "$enable_gbm$enable_gallium_egl$enable_dri$with_egl_platforms" in
1233 yesyesyes*drm*)
1234 enable_gallium_gbm=yes ;;
1235 *)
1236 enable_gallium_gbm=no ;;
1237 esac
1238 fi
1239 if test "x$enable_gallium_gbm" = xyes; then
1240 if test "x$with_gallium_drivers" = x; then
1241 AC_MSG_ERROR([cannot enable gbm_gallium without Gallium])
1242 fi
1243 if test "x$enable_gbm" = xno; then
1244 AC_MSG_ERROR([cannot enable gbm_gallium without gbm])
1245 fi
1246 # gbm_gallium abuses DRI_LIB_DEPS to link. Make sure it is set.
1247 if test "x$enable_dri" = xno; then
1248 AC_MSG_ERROR([gbm_gallium requires --enable-dri to build])
1249 fi
1250
1251 GALLIUM_STATE_TRACKERS_DIRS="gbm $GALLIUM_STATE_TRACKERS_DIRS"
1252 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS gbm"
1253 enable_gallium_loader=yes
1254 fi
1255 AM_CONDITIONAL(HAVE_GALLIUM_GBM, test "x$enable_gallium_gbm" = xyes)
1256
1257 dnl
1258 dnl X.Org DDX configuration
1259 dnl
1260 if test "x$enable_xorg" = xyes; then
1261 PKG_CHECK_MODULES([XORG], [xorg-server >= 1.6.0])
1262 PKG_CHECK_MODULES([LIBDRM_XORG], [libdrm >= $LIBDRM_XORG_REQUIRED])
1263 PKG_CHECK_MODULES([LIBKMS_XORG], [libkms >= $LIBKMS_XORG_REQUIRED])
1264 PKG_CHECK_MODULES(XEXT, [xextproto >= 7.0.99.1],
1265 HAVE_XEXTPROTO_71="yes"; DEFINES="$DEFINES -DHAVE_XEXTPROTO_71",
1266 HAVE_XEXTPROTO_71="no")
1267 GALLIUM_STATE_TRACKERS_DIRS="xorg $GALLIUM_STATE_TRACKERS_DIRS"
1268 fi
1269 AM_CONDITIONAL(HAVE_ST_XORG, test "x$enable_xorg" = xyes)
1270
1271 dnl
1272 dnl XA configuration
1273 dnl
1274 if test "x$enable_xa" = xyes; then
1275 AC_PROG_AWK
1276 AC_PROG_GREP
1277 AC_CHECK_PROG(NM, nm, "nm")
1278 if test "x$AWK" = x || test "x$GREP" = x || test "x$NM" = x; then
1279 AC_MSG_WARN([Missing one of nm, grep or awk. Disabling xa.])
1280 enable_xa=no
1281 fi
1282 fi
1283 if test "x$enable_xa" = xyes; then
1284 GALLIUM_STATE_TRACKERS_DIRS="xa $GALLIUM_STATE_TRACKERS_DIRS"
1285 AC_SUBST(AWK)
1286 AC_SUBST(GREP)
1287 AC_SUBST(NM)
1288 fi
1289 AM_CONDITIONAL(HAVE_ST_XA, test "x$enable_xa" = xyes)
1290
1291 dnl
1292 dnl OpenVG configuration
1293 dnl
1294 VG_LIB_DEPS=""
1295
1296 if test "x$enable_openvg" = xyes; then
1297 if test "x$enable_egl" = xno; then
1298 AC_MSG_ERROR([cannot enable OpenVG without EGL])
1299 fi
1300 if test "x$with_gallium_drivers" = x; then
1301 AC_MSG_ERROR([cannot enable OpenVG without Gallium])
1302 fi
1303 if test "x$enable_gallium_egl" = xno; then
1304 AC_MSG_ERROR([cannot enable OpenVG without egl_gallium])
1305 fi
1306
1307 EGL_CLIENT_APIS="$EGL_CLIENT_APIS "'$(VG_LIB)'
1308 VG_LIB_DEPS="$VG_LIB_DEPS $SELINUX_LIBS $PTHREAD_LIBS"
1309 GALLIUM_STATE_TRACKERS_DIRS="vega $GALLIUM_STATE_TRACKERS_DIRS"
1310 VG_PC_LIB_PRIV="-lm $CLOCK_LIB $PTHREAD_LIBS $DLOPEN_LIBS"
1311 AC_SUBST([VG_PC_LIB_PRIV])
1312 fi
1313 AM_CONDITIONAL(HAVE_OPENVG, test "x$enable_openvg" = xyes)
1314
1315 dnl
1316 dnl Gallium G3DVL configuration
1317 dnl
1318 if test -n "$with_gallium_drivers"; then
1319 if test "x$enable_xvmc" = xauto; then
1320 PKG_CHECK_EXISTS([xvmc], [enable_xvmc=yes], [enable_xvmc=no])
1321 fi
1322
1323 if test "x$enable_vdpau" = xauto; then
1324 PKG_CHECK_EXISTS([vdpau], [enable_vdpau=yes], [enable_vdpau=no])
1325 fi
1326 fi
1327
1328 if test "x$enable_xvmc" = xyes; then
1329 PKG_CHECK_MODULES([XVMC], [xvmc >= 1.0.6 x11-xcb xcb-dri2 >= 1.8])
1330 GALLIUM_STATE_TRACKERS_DIRS="$GALLIUM_STATE_TRACKERS_DIRS xvmc"
1331 fi
1332 AM_CONDITIONAL(HAVE_ST_XVMC, test "x$enable_xvmc" = xyes)
1333
1334 if test "x$enable_vdpau" = xyes; then
1335 PKG_CHECK_MODULES([VDPAU], [vdpau >= 0.4.1 x11-xcb xcb-dri2 >= 1.8])
1336 GALLIUM_STATE_TRACKERS_DIRS="$GALLIUM_STATE_TRACKERS_DIRS vdpau"
1337 fi
1338 AM_CONDITIONAL(HAVE_ST_VDPAU, test "x$enable_vdpau" = xyes)
1339
1340 dnl
1341 dnl OpenCL configuration
1342 dnl
1343
1344 AC_ARG_WITH([libclc-path],
1345 [AS_HELP_STRING([--with-libclc-path],
1346 [DEPRECATED: See http://dri.freedesktop.org/wiki/GalliumCompute#How_to_Install])],
1347 [LIBCLC_PATH="$withval"],
1348 [LIBCLC_PATH=""])
1349
1350 if test "x$LIBCLC_PATH" != x; then
1351 AC_MSG_ERROR([The --with-libclc-path option has been deprecated.
1352 Please review the updated build instructions for clover:
1353 http://dri.freedesktop.org/wiki/GalliumCompute])
1354 fi
1355
1356
1357 AC_ARG_WITH([clang-libdir],
1358 [AS_HELP_STRING([--with-clang-libdir],
1359 [Path to Clang libraries @<:@default=llvm-config --libdir@:>@])],
1360 [CLANG_LIBDIR="$withval"],
1361 [CLANG_LIBDIR=""])
1362
1363 LIBCLC_INCLUDEDIR=`pkg-config --variable=includedir libclc`
1364 LIBCLC_LIBEXECDIR=`pkg-config --variable=libexecdir libclc`
1365 AC_SUBST([LIBCLC_INCLUDEDIR])
1366 AC_SUBST([LIBCLC_LIBEXECDIR])
1367
1368 if test "x$enable_opencl" = xyes; then
1369 if test "x$with_gallium_drivers" = x; then
1370 AC_MSG_ERROR([cannot enable OpenCL without Gallium])
1371 fi
1372
1373 if test $GCC_VERSION_MAJOR -lt 4 -o $GCC_VERSION_MAJOR -eq 4 -a $GCC_VERSION_MINOR -lt 6; then
1374 AC_MSG_ERROR([gcc >= 4.6 is required to build clover])
1375 fi
1376
1377 if test "x$LIBCLC_INCLUDEDIR" == x || test "x$LIBCLC_LIBEXECDIR" == x; then
1378 AC_MSG_ERROR([pkg-config cannot use libclc.pc which is required to build clover])
1379 fi
1380
1381 GALLIUM_STATE_TRACKERS_DIRS="$GALLIUM_STATE_TRACKERS_DIRS clover"
1382 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS opencl"
1383 enable_gallium_loader=yes
1384 fi
1385 AM_CONDITIONAL(HAVE_CLOVER, test "x$enable_opencl" = xyes)
1386
1387 dnl
1388 dnl Gallium configuration
1389 dnl
1390 AM_CONDITIONAL(HAVE_GALLIUM, test -n "$with_gallium_drivers")
1391
1392 AC_SUBST([LLVM_BINDIR])
1393 AC_SUBST([LLVM_CFLAGS])
1394 AC_SUBST([LLVM_CPPFLAGS])
1395 AC_SUBST([LLVM_CXXFLAGS])
1396 AC_SUBST([LLVM_LIBDIR])
1397 AC_SUBST([LLVM_LIBS])
1398 AC_SUBST([LLVM_LDFLAGS])
1399 AC_SUBST([LLVM_INCLUDEDIR])
1400 AC_SUBST([LLVM_VERSION])
1401 AC_SUBST([CLANG_RESOURCE_DIR])
1402
1403 case "x$enable_opengl$enable_gles1$enable_gles2" in
1404 x*yes*)
1405 EGL_CLIENT_APIS="$EGL_CLIENT_APIS "'$(GL_LIB)'
1406 ;;
1407 esac
1408
1409 AC_SUBST([VG_LIB_DEPS])
1410 AC_SUBST([EGL_CLIENT_APIS])
1411
1412 dnl
1413 dnl EGL Platforms configuration
1414 dnl
1415 AC_ARG_WITH([egl-platforms],
1416 [AS_HELP_STRING([--with-egl-platforms@<:@=DIRS...@:>@],
1417 [comma delimited native platforms libEGL supports, e.g.
1418 "x11,drm" @<:@default=auto@:>@])],
1419 [with_egl_platforms="$withval"],
1420 [if test "x$enable_egl" = xyes; then
1421 with_egl_platforms="x11"
1422 else
1423 with_egl_platforms=""
1424 fi])
1425
1426 if test "x$with_egl_platforms" != "x" -a "x$enable_egl" != xyes; then
1427 AC_MSG_ERROR([cannot build egl state tracker without EGL library])
1428 fi
1429
1430 # Do per-EGL platform setups and checks
1431 egl_platforms=`IFS=', '; echo $with_egl_platforms`
1432 for plat in $egl_platforms; do
1433 case "$plat" in
1434 wayland)
1435 PKG_CHECK_MODULES([WAYLAND], [wayland-client >= 1.0.2 wayland-server >= 1.0.2])
1436 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/wayland"
1437
1438 WAYLAND_PREFIX=`$PKG_CONFIG --variable=prefix wayland-client`
1439 AC_PATH_PROG([WAYLAND_SCANNER], [wayland-scanner],,
1440 [${WAYLAND_PREFIX}/bin$PATH_SEPARATOR$PATH])
1441 ;;
1442
1443 x11)
1444 PKG_CHECK_MODULES([XCB_DRI2], [x11-xcb xcb-dri2 >= 1.8 xcb-xfixes])
1445
1446 if test "x$enable_glx" = xyes; then
1447 HAVE_EGL_DRIVER_GLX=1
1448 fi
1449 ;;
1450
1451 drm)
1452 test "x$enable_gbm" = "xno" &&
1453 AC_MSG_ERROR([EGL platform drm needs gbm])
1454 ;;
1455
1456 android|fbdev|gdi|null)
1457 ;;
1458
1459 *)
1460 AC_MSG_ERROR([EGL platform '$plat' does not exist])
1461 ;;
1462 esac
1463
1464 case "$plat$have_libudev" in
1465 waylandno|drmno)
1466 AC_MSG_ERROR([cannot build $plat platfrom without udev]) ;;
1467 esac
1468 done
1469
1470 # libEGL wants to default to the first platform specified in
1471 # ./configure. parse that here.
1472 if test "x$egl_platforms" != "x"; then
1473 FIRST_PLATFORM_CAPS=`echo $egl_platforms | sed 's| .*||' | tr 'a-z' 'A-Z'`
1474 EGL_NATIVE_PLATFORM="_EGL_PLATFORM_$FIRST_PLATFORM_CAPS"
1475 else
1476 EGL_NATIVE_PLATFORM="_EGL_INVALID_PLATFORM"
1477 fi
1478
1479 if echo "$egl_platforms" | grep 'x11' >/dev/null 2>&1; then
1480 NEED_WINSYS_XLIB=yes
1481 fi
1482 AM_CONDITIONAL(HAVE_EGL_PLATFORM_X11, echo "$egl_platforms" | grep 'x11' >/dev/null 2>&1)
1483 AM_CONDITIONAL(HAVE_EGL_PLATFORM_WAYLAND, echo "$egl_platforms" | grep 'wayland' >/dev/null 2>&1)
1484 AM_CONDITIONAL(HAVE_EGL_PLATFORM_DRM, echo "$egl_platforms" | grep 'drm' >/dev/null 2>&1)
1485 AM_CONDITIONAL(HAVE_EGL_PLATFORM_FBDEV, echo "$egl_platforms" | grep 'fbdev' >/dev/null 2>&1)
1486 AM_CONDITIONAL(HAVE_EGL_PLATFORM_NULL, echo "$egl_platforms" | grep 'null' >/dev/null 2>&1)
1487
1488 AM_CONDITIONAL(HAVE_EGL_DRIVER_DRI2, test "x$HAVE_EGL_DRIVER_DRI2" != "x")
1489 AM_CONDITIONAL(HAVE_EGL_DRIVER_GLX, test "x$HAVE_EGL_DRIVER_GLX" != "x")
1490
1491 AC_SUBST([EGL_NATIVE_PLATFORM])
1492 AC_SUBST([EGL_CFLAGS])
1493
1494 # If we don't have the X11 platform, set this define so we don't try to include
1495 # the X11 headers.
1496 if ! echo "$egl_platforms" | grep -q 'x11'; then
1497 DEFINES="$DEFINES -DMESA_EGL_NO_X11_HEADERS"
1498 GL_PC_CFLAGS="$GL_PC_CFLAGS -DMESA_EGL_NO_X11_HEADERS"
1499 fi
1500
1501 AC_ARG_WITH([egl-driver-dir],
1502 [AS_HELP_STRING([--with-egl-driver-dir=DIR],
1503 [directory for EGL drivers [[default=${libdir}/egl]]])],
1504 [EGL_DRIVER_INSTALL_DIR="$withval"],
1505 [EGL_DRIVER_INSTALL_DIR='${libdir}/egl'])
1506 AC_SUBST([EGL_DRIVER_INSTALL_DIR])
1507
1508 AC_ARG_WITH([xorg-driver-dir],
1509 [AS_HELP_STRING([--with-xorg-driver-dir=DIR],
1510 [Default xorg driver directory[[default=${libdir}/xorg/modules/drivers]]])],
1511 [XORG_DRIVER_INSTALL_DIR="$withval"],
1512 [XORG_DRIVER_INSTALL_DIR="${libdir}/xorg/modules/drivers"])
1513 AC_SUBST([XORG_DRIVER_INSTALL_DIR])
1514
1515 AC_ARG_WITH([max-width],
1516 [AS_HELP_STRING([--with-max-width=N],
1517 [Maximum framebuffer width (4096)])],
1518 [DEFINES="${DEFINES} -DMAX_WIDTH=${withval}";
1519 AS_IF([test "${withval}" -gt "4096"],
1520 [AC_MSG_WARN([Large framebuffer: see s_tritemp.h comments.])])]
1521 )
1522 AC_ARG_WITH([max-height],
1523 [AS_HELP_STRING([--with-max-height=N],
1524 [Maximum framebuffer height (4096)])],
1525 [DEFINES="${DEFINES} -DMAX_HEIGHT=${withval}";
1526 AS_IF([test "${withval}" -gt "4096"],
1527 [AC_MSG_WARN([Large framebuffer: see s_tritemp.h comments.])])]
1528 )
1529
1530 dnl
1531 dnl Gallium LLVM
1532 dnl
1533 AC_ARG_ENABLE([gallium-llvm],
1534 [AS_HELP_STRING([--enable-gallium-llvm],
1535 [build gallium LLVM support @<:@default=enabled on x86/x86_64@:>@])],
1536 [enable_gallium_llvm="$enableval"],
1537 [enable_gallium_llvm=auto])
1538
1539 AC_ARG_WITH([llvm-shared-libs],
1540 [AS_HELP_STRING([--with-llvm-shared-libs],
1541 [link with LLVM shared libraries @<:@default=disabled@:>@])],
1542 [],
1543 [with_llvm_shared_libs=no])
1544 AS_IF([test x$enable_opencl = xyes],
1545 [
1546 AC_MSG_WARN([OpenCL required, forcing LLVM shared libraries])
1547 with_llvm_shared_libs=yes
1548 ])
1549
1550 AC_ARG_WITH([llvm-prefix],
1551 [AS_HELP_STRING([--with-llvm-prefix],
1552 [Prefix for LLVM installations in non-standard locations])],
1553 [llvm_prefix="$withval"],
1554 [llvm_prefix=""])
1555
1556
1557 # Call this inside ` ` to get the return value.
1558 # $1 is the llvm-config command with arguments.
1559 strip_unwanted_llvm_flags() {
1560 # Use \> (marks the end of the word)
1561 echo `$1` | sed \
1562 -e 's/-DNDEBUG\>//g' \
1563 -e 's/-pedantic\>//g' \
1564 -e 's/-Wcovered-switch-default\>//g' \
1565 -e 's/-O.\>//g' \
1566 -e 's/-g\>//g' \
1567 -e 's/-Wall\>//g' \
1568 -e 's/-fomit-frame-pointer\>//g'
1569 }
1570
1571
1572 if test "x$with_gallium_drivers" = x; then
1573 enable_gallium_llvm=no
1574 fi
1575 if test "x$enable_gallium_llvm" = xauto; then
1576 case "$host_cpu" in
1577 i*86|x86_64|amd64) enable_gallium_llvm=yes;;
1578 esac
1579 fi
1580 if test "x$enable_gallium_llvm" = xyes; then
1581 if test "x$llvm_prefix" != x; then
1582 AC_PATH_PROG([LLVM_CONFIG], [llvm-config], [no], ["$llvm_prefix/bin"])
1583 else
1584 AC_PATH_PROG([LLVM_CONFIG], [llvm-config], [no])
1585 fi
1586
1587 if test "x$LLVM_CONFIG" != xno; then
1588 LLVM_VERSION=`$LLVM_CONFIG --version | sed 's/svn.*//g'`
1589 LLVM_LDFLAGS=`$LLVM_CONFIG --ldflags`
1590 LLVM_BINDIR=`$LLVM_CONFIG --bindir`
1591 LLVM_CPPFLAGS=`strip_unwanted_llvm_flags "$LLVM_CONFIG --cppflags"`
1592 LLVM_CFLAGS=$LLVM_CPPFLAGS # CPPFLAGS seem to be sufficient
1593 LLVM_CXXFLAGS=`strip_unwanted_llvm_flags "$LLVM_CONFIG --cxxflags"`
1594 LLVM_INCLUDEDIR=`$LLVM_CONFIG --includedir`
1595 LLVM_LIBDIR=`$LLVM_CONFIG --libdir`
1596
1597 AC_COMPUTE_INT([LLVM_VERSION_MAJOR], [LLVM_VERSION_MAJOR],
1598 [#include "${LLVM_INCLUDEDIR}/llvm/Config/llvm-config.h"])
1599 AC_COMPUTE_INT([LLVM_VERSION_MINOR], [LLVM_VERSION_MINOR],
1600 [#include "${LLVM_INCLUDEDIR}/llvm/Config/llvm-config.h"])
1601
1602 if test "x${LLVM_VERSION_MAJOR}" != x; then
1603 LLVM_VERSION_INT="${LLVM_VERSION_MAJOR}0${LLVM_VERSION_MINOR}"
1604 else
1605 LLVM_VERSION_INT=`echo $LLVM_VERSION | sed -e 's/\([[0-9]]\)\.\([[0-9]]\)/\10\2/g'`
1606 fi
1607
1608 LLVM_COMPONENTS="engine bitwriter"
1609 if $LLVM_CONFIG --components | grep -qw 'mcjit'; then
1610 LLVM_COMPONENTS="${LLVM_COMPONENTS} mcjit"
1611 fi
1612
1613 if test "x$enable_opencl" = xyes; then
1614 LLVM_COMPONENTS="${LLVM_COMPONENTS} ipo linker instrumentation"
1615 # LLVM 3.3 >= 177971 requires IRReader
1616 if $LLVM_CONFIG --components | grep -qw 'irreader'; then
1617 LLVM_COMPONENTS="${LLVM_COMPONENTS} irreader"
1618 fi
1619 fi
1620 DEFINES="${DEFINES} -DHAVE_LLVM=0x0$LLVM_VERSION_INT"
1621 MESA_LLVM=1
1622
1623 dnl Check for Clang internal headers
1624 if test "x$enable_opencl" = xyes; then
1625 if test "x$CLANG_LIBDIR" = x; then
1626 CLANG_LIBDIR=${LLVM_LIBDIR}
1627 fi
1628 CLANG_RESOURCE_DIR=$CLANG_LIBDIR/clang/${LLVM_VERSION}
1629 AS_IF([test ! -f "$CLANG_RESOURCE_DIR/include/stddef.h"],
1630 [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.])])
1631 fi
1632 else
1633 MESA_LLVM=0
1634 LLVM_VERSION_INT=0
1635 fi
1636 else
1637 MESA_LLVM=0
1638 LLVM_VERSION_INT=0
1639 fi
1640
1641 dnl Directory for XVMC libs
1642 AC_ARG_WITH([xvmc-libdir],
1643 [AS_HELP_STRING([--with-xvmc-libdir=DIR],
1644 [directory for the XVMC libraries @<:@default=${libdir}@:>@])],
1645 [XVMC_LIB_INSTALL_DIR="$withval"],
1646 [XVMC_LIB_INSTALL_DIR='${libdir}'])
1647 AC_SUBST([XVMC_LIB_INSTALL_DIR])
1648
1649 dnl
1650 dnl Gallium Tests
1651 dnl
1652 if test "x$enable_gallium_tests" = xyes; then
1653 enable_gallium_loader=yes
1654 fi
1655 AM_CONDITIONAL(HAVE_GALLIUM_TESTS, test "x$enable_gallium_tests" = xyes)
1656
1657 if test "x$enable_gallium_loader" = xyes; then
1658 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS pipe-loader"
1659 fi
1660 AM_CONDITIONAL(NEED_GALLIUM_LOADER, test "x$enable_gallium_loader" = xyes)
1661
1662 dnl Directory for VDPAU libs
1663 AC_ARG_WITH([vdpau-libdir],
1664 [AS_HELP_STRING([--with-vdpau-libdir=DIR],
1665 [directory for the VDPAU libraries @<:@default=${libdir}/vdpau@:>@])],
1666 [VDPAU_LIB_INSTALL_DIR="$withval"],
1667 [VDPAU_LIB_INSTALL_DIR='${libdir}/vdpau'])
1668 AC_SUBST([VDPAU_LIB_INSTALL_DIR])
1669
1670 dnl Directory for OpenCL libs
1671 AC_ARG_WITH([opencl-libdir],
1672 [AS_HELP_STRING([--with-opencl-libdir=DIR],
1673 [directory for auxiliary libraries used by the OpenCL implementation @<:@default=${libdir}/opencl@:>@])],
1674 [OPENCL_LIB_INSTALL_DIR="$withval"],
1675 [OPENCL_LIB_INSTALL_DIR='${libdir}/opencl'])
1676 AC_SUBST([OPENCL_LIB_INSTALL_DIR])
1677
1678 dnl
1679 dnl Gallium helper functions
1680 dnl
1681 gallium_check_st() {
1682 if test "x$NEED_NONNULL_WINSYS" = xyes; then
1683 if test "x$have_libdrm" != xyes; then
1684 AC_MSG_ERROR([DRI or Xorg DDX requires libdrm >= $LIBDRM_REQUIRED])
1685 fi
1686 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS $1"
1687 fi
1688 if test "x$enable_dri" = xyes && test "x$2" != x; then
1689 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $2"
1690 HAVE_COMMON_DRI=yes
1691 fi
1692 if test "x$enable_xorg" = xyes && test "x$3" != x; then
1693 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $3"
1694 fi
1695 if test "x$enable_xa" = xyes && test "x$4" != x; then
1696 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $4"
1697 fi
1698 if test "x$enable_xvmc" = xyes && test "x$5" != x; then
1699 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $5"
1700 fi
1701 if test "x$enable_vdpau" = xyes && test "x$6" != x; then
1702 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $6"
1703 fi
1704 }
1705
1706 gallium_require_llvm() {
1707 if test "x$MESA_LLVM" = x0; then
1708 case "$host_cpu" in
1709 i*86|x86_64|amd64) AC_MSG_ERROR([LLVM is required to build $1 on x86 and x86_64]);;
1710 esac
1711 fi
1712 }
1713
1714 gallium_require_drm_loader() {
1715 if test "x$enable_gallium_loader" = xyes; then
1716 PKG_CHECK_MODULES([LIBUDEV], [libudev], [],
1717 AC_MSG_ERROR([Gallium drm loader requires libudev]))
1718 if test "x$have_libdrm" != xyes; then
1719 AC_MSG_ERROR([Gallium drm loader requires libdrm >= $LIBDRM_REQUIRED])
1720 fi
1721 enable_gallium_drm_loader=yes
1722 fi
1723 }
1724
1725 radeon_llvm_check() {
1726 LLVM_REQUIRED_VERSION_MAJOR="3"
1727 LLVM_REQUIRED_VERSION_MINOR="3"
1728 if test "$LLVM_VERSION_INT" -lt "${LLVM_REQUIRED_VERSION_MAJOR}0${LLVM_REQUIRED_VERSION_MINOR}"; then
1729 AC_MSG_ERROR([LLVM $LLVM_REQUIRED_VERSION_MAJOR.$LLVM_REQUIRED_VERSION_MINOR or newer is required for r600g and radeonsi.])
1730 fi
1731 if test true && $LLVM_CONFIG --targets-built | grep -qvw 'R600' ; then
1732 AC_MSG_ERROR([LLVM R600 Target not enabled. You can enable it when building the LLVM
1733 sources with the --enable-experimental-targets=R600
1734 configure flag])
1735 fi
1736 LLVM_COMPONENTS="${LLVM_COMPONENTS} r600 bitreader ipo"
1737 NEED_RADEON_LLVM=yes
1738 AC_CHECK_LIB([elf], [elf_memory], [ELF_LIB=-lelf],
1739 [AC_MSG_ERROR([radeonsi and r600g require libelf when using LLVM])])
1740 }
1741
1742 dnl Gallium drivers
1743 if test "x$enable_dri" = xyes -o "x$enable_xorg" = xyes -o \
1744 "x$enable_xa" = xyes -o "x$enable_xvmc" = xyes -o \
1745 "x$enable_vdpau" = xyes; then
1746 NEED_NONNULL_WINSYS=yes
1747 fi
1748 AM_CONDITIONAL(NEED_NONNULL_WINSYS, test "x$NEED_NONNULL_WINSYS" = xyes)
1749
1750 dnl Duplicates in GALLIUM_DRIVERS_DIRS are removed by sorting it after this block
1751 if test "x$with_gallium_drivers" != x; then
1752 gallium_drivers=`IFS=', '; echo $with_gallium_drivers`
1753 for driver in $gallium_drivers; do
1754 case "x$driver" in
1755 xsvga)
1756 HAVE_GALLIUM_SVGA=yes
1757 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS svga softpipe"
1758 gallium_check_st "svga/drm" "dri-vmwgfx" "" "xa-vmwgfx"
1759 ;;
1760 xi915)
1761 HAVE_GALLIUM_I915=yes
1762 PKG_CHECK_MODULES([INTEL], [libdrm_intel >= $LIBDRM_INTEL_REQUIRED])
1763 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS i915 softpipe"
1764 if test "x$MESA_LLVM" = x1; then
1765 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS llvmpipe"
1766 fi
1767 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS i915/sw"
1768 gallium_check_st "i915/drm" "dri-i915" "xorg-i915"
1769 ;;
1770 xilo)
1771 HAVE_GALLIUM_ILO=yes
1772 PKG_CHECK_MODULES([INTEL], [libdrm_intel >= $LIBDRM_INTEL_REQUIRED])
1773 gallium_require_drm_loader
1774 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS ilo"
1775 gallium_check_st "intel/drm" "dri-ilo"
1776 ;;
1777 xr300)
1778 HAVE_GALLIUM_R300=yes
1779 PKG_CHECK_MODULES([RADEON], [libdrm_radeon >= $LIBDRM_RADEON_REQUIRED])
1780 gallium_require_llvm "Gallium R300"
1781 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS r300"
1782 gallium_check_st "radeon/drm" "dri-r300" "" "" "xvmc-r300" "vdpau-r300"
1783 ;;
1784 xr600)
1785 HAVE_GALLIUM_R600=yes
1786 PKG_CHECK_MODULES([RADEON], [libdrm_radeon >= $LIBDRM_RADEON_REQUIRED])
1787 gallium_require_drm_loader
1788 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS r600"
1789 if test "x$enable_r600_llvm" = xyes -o "x$enable_opencl" = xyes; then
1790 radeon_llvm_check
1791 R600_NEED_RADEON_GALLIUM=yes;
1792 LLVM_COMPONENTS="${LLVM_COMPONENTS} bitreader asmparser"
1793 fi
1794 if test "x$enable_r600_llvm" = xyes; then
1795 USE_R600_LLVM_COMPILER=yes;
1796 fi
1797 if test "x$enable_opencl" = xyes; then
1798 LLVM_COMPONENTS="${LLVM_COMPONENTS} bitreader asmparser"
1799 fi
1800 gallium_check_st "radeon/drm" "dri-r600" "xorg-r600" "" "xvmc-r600" "vdpau-r600"
1801 ;;
1802 xradeonsi)
1803 HAVE_GALLIUM_RADEONSI=yes
1804 PKG_CHECK_MODULES([RADEON], [libdrm_radeon >= $LIBDRM_RADEON_REQUIRED])
1805 gallium_require_drm_loader
1806 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS radeonsi"
1807 radeon_llvm_check
1808 gallium_check_st "radeon/drm" "dri-radeonsi" "xorg-radeonsi" "" "" "vdpau-radeonsi" ""
1809 ;;
1810 xnouveau)
1811 HAVE_GALLIUM_NOUVEAU=yes
1812 PKG_CHECK_MODULES([NOUVEAU], [libdrm_nouveau >= $LIBDRM_NOUVEAU_REQUIRED])
1813 gallium_require_drm_loader
1814 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS nouveau nv30 nv50 nvc0"
1815 gallium_check_st "nouveau/drm" "dri-nouveau" "xorg-nouveau" "" "xvmc-nouveau" "vdpau-nouveau"
1816 ;;
1817 xfreedreno)
1818 HAVE_GALLIUM_FREEDRENO=yes
1819 PKG_CHECK_MODULES([FREEDRENO], [libdrm_freedreno >= $LIBDRM_FREEDRENO_REQUIRED])
1820 gallium_require_drm_loader
1821 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS freedreno"
1822 gallium_check_st "freedreno/drm" "dri-freedreno" "" "" "" ""
1823 ;;
1824 xswrast)
1825 HAVE_GALLIUM_SOFTPIPE=yes
1826 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS softpipe"
1827 if test "x$MESA_LLVM" = x1; then
1828 HAVE_GALLIUM_LLVMPIPE=yes
1829 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS llvmpipe"
1830 fi
1831
1832 if test "x$enable_dri" = xyes; then
1833 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS dri-swrast"
1834 HAVE_COMMON_DRI=yes
1835 fi
1836 if test "x$enable_vdpau" = xyes; then
1837 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS vdpau-softpipe"
1838 fi
1839 if test "x$enable_xvmc" = xyes; then
1840 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS xvmc-softpipe"
1841 fi
1842 if test "x$enable_vdpau" = xyes -o "x$enable_xvmc" = xyes; then
1843 NEED_WINSYS_XLIB=yes
1844 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/xlib"
1845 fi
1846 ;;
1847 *)
1848 AC_MSG_ERROR([Unknown Gallium driver: $driver])
1849 ;;
1850 esac
1851 done
1852 fi
1853
1854 dnl Set LLVM_LIBS - This is done after the driver configuration so
1855 dnl that drivers can add additonal components to LLVM_COMPONENTS.
1856 dnl Previously, gallium drivers were updating LLVM_LIBS directly
1857 dnl by calling llvm-config --libs ${DRIVER_LLVM_COMPONENTS}, but
1858 dnl this was causing the same libraries to be appear multiple times
1859 dnl in LLVM_LIBS.
1860
1861 if test "x$MESA_LLVM" != x0; then
1862
1863 LLVM_LIBS="`$LLVM_CONFIG --libs ${LLVM_COMPONENTS}`"
1864
1865 if test "x$with_llvm_shared_libs" = xyes; then
1866 dnl We can't use $LLVM_VERSION because it has 'svn' stripped out,
1867 LLVM_SO_NAME=LLVM-`$LLVM_CONFIG --version`
1868 AS_IF([test -f "$LLVM_LIBDIR/lib$LLVM_SO_NAME.so"], [llvm_have_one_so=yes])
1869
1870 if test "x$llvm_have_one_so" = xyes; then
1871 dnl LLVM was built using auto*, so there is only one shared object.
1872 LLVM_LIBS="-l$LLVM_SO_NAME"
1873 else
1874 dnl If LLVM was built with CMake, there will be one shared object per
1875 dnl component.
1876 AS_IF([test ! -f "$LLVM_LIBDIR/libLLVMTarget.so"],
1877 [AC_MSG_ERROR([Could not find llvm shared libraries:
1878 Please make sure you have built llvm with the --enable-shared option
1879 and that your llvm libraries are installed in $LLVM_LIBDIR
1880 If you have installed your llvm libraries to a different directory you
1881 can use the --with-llvm-prefix= configure flag to specify this directory.
1882 NOTE: Mesa is attempting to use llvm shared libraries because you have
1883 passed one of the following options to configure:
1884 --with-llvm-shared-libs
1885 --enable-opencl
1886 If you do not want to build with llvm shared libraries and instead want to
1887 use llvm static libraries then remove these options from your configure
1888 invocation and reconfigure.])])
1889
1890 dnl We don't need to update LLVM_LIBS in this case because the LLVM
1891 dnl install uses a shared object for each compoenent and we have
1892 dnl already added all of these objects to LLVM_LIBS.
1893 fi
1894 fi
1895 fi
1896
1897 AM_CONDITIONAL(HAVE_GALLIUM_SVGA, test "x$HAVE_GALLIUM_SVGA" = xyes)
1898 AM_CONDITIONAL(HAVE_GALLIUM_I915, test "x$HAVE_GALLIUM_I915" = xyes)
1899 AM_CONDITIONAL(HAVE_GALLIUM_ILO, test "x$HAVE_GALLIUM_ILO" = xyes)
1900 AM_CONDITIONAL(HAVE_GALLIUM_R300, test "x$HAVE_GALLIUM_R300" = xyes)
1901 AM_CONDITIONAL(HAVE_GALLIUM_R600, test "x$HAVE_GALLIUM_R600" = xyes)
1902 AM_CONDITIONAL(HAVE_GALLIUM_RADEONSI, test "x$HAVE_GALLIUM_RADEONSI" = xyes)
1903 AM_CONDITIONAL(HAVE_GALLIUM_NOUVEAU, test "x$HAVE_GALLIUM_NOUVEAU" = xyes)
1904 AM_CONDITIONAL(HAVE_GALLIUM_FREEDRENO, test "x$HAVE_GALLIUM_FREEDRENO" = xyes)
1905 AM_CONDITIONAL(HAVE_GALLIUM_SOFTPIPE, test "x$HAVE_GALLIUM_SOFTPIPE" = xyes)
1906 AM_CONDITIONAL(HAVE_GALLIUM_LLVMPIPE, test "x$HAVE_GALLIUM_LLVMPIPE" = xyes)
1907
1908 AM_CONDITIONAL(NEED_GALLIUM_SOFTPIPE_DRIVER, test "x$HAVE_GALLIUM_SVGA" = xyes -o \
1909 "x$HAVE_GALLIUM_I915" = xyes -o \
1910 "x$HAVE_GALLIUM_SOFTPIPE" = xyes)
1911 AM_CONDITIONAL(NEED_GALLIUM_LLVMPIPE_DRIVER, test "x$HAVE_GALLIUM_I915" = xyes -o \
1912 "x$HAVE_GALLIUM_SOFTPIPE" = xyes -a \
1913 "x$MESA_LLVM" = x1)
1914
1915 if test "x$enable_gallium_loader" = xyes; then
1916 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/null"
1917
1918 if test "x$enable_gallium_drm_loader" = xyes; then
1919 GALLIUM_PIPE_LOADER_DEFINES="$GALLIUM_PIPE_LOADER_DEFINES -DHAVE_PIPE_LOADER_DRM"
1920 PKG_CHECK_MODULES([GALLIUM_PIPE_LOADER_XCB], [xcb xcb-dri2],
1921 pipe_loader_have_xcb=yes, pipe_loader_have_xcb=no)
1922 if test "x$pipe_loader_have_xcb" = xyes; then
1923 GALLIUM_PIPE_LOADER_DEFINES="$GALLIUM_PIPE_LOADER_DEFINES -DHAVE_PIPE_LOADER_XCB"
1924 GALLIUM_PIPE_LOADER_LIBS="$GALLIUM_PIPE_LOADER_LIBS $GALLIUM_PIPE_LOADER_XCB_LIBS $LIBDRM_LIBS"
1925 fi
1926 fi
1927
1928 AC_SUBST([GALLIUM_PIPE_LOADER_DEFINES])
1929 AC_SUBST([GALLIUM_PIPE_LOADER_LIBS])
1930 fi
1931
1932 AM_CONDITIONAL(HAVE_I915_DRI, test x$HAVE_I915_DRI = xyes)
1933 AM_CONDITIONAL(HAVE_I965_DRI, test x$HAVE_I965_DRI = xyes)
1934 AM_CONDITIONAL(HAVE_NOUVEAU_DRI, test x$HAVE_NOUVEAU_DRI = xyes)
1935 AM_CONDITIONAL(HAVE_R200_DRI, test x$HAVE_R200_DRI = xyes)
1936 AM_CONDITIONAL(HAVE_RADEON_DRI, test x$HAVE_RADEON_DRI = xyes)
1937 AM_CONDITIONAL(HAVE_SWRAST_DRI, test x$HAVE_SWRAST_DRI = xyes)
1938 AM_CONDITIONAL(HAVE_COMMON_DRI, test x$HAVE_COMMON_DRI = xyes)
1939
1940 AM_CONDITIONAL(NEED_RADEON_DRM_WINSYS, test "x$NEED_NONNULL_WINSYS" = xyes -a \
1941 "x$HAVE_GALLIUM_R300" = xyes -o \
1942 "x$HAVE_GALLIUM_R600" = xyes -o \
1943 "x$HAVE_GALLIUM_RADEONSI" = xyes)
1944 AM_CONDITIONAL(NEED_WINSYS_WRAPPER, test "x$HAVE_GALLIUM_I915" = xyes -o \
1945 "x$HAVE_GALLIUM_SVGA" = xyes)
1946 AM_CONDITIONAL(NEED_WINSYS_XLIB, test "x$NEED_WINSYS_XLIB" = xyes)
1947 AM_CONDITIONAL(NEED_RADEON_LLVM, test x$NEED_RADEON_LLVM = xyes)
1948 AM_CONDITIONAL(R600_NEED_RADEON_GALLIUM, test x$R600_NEED_RADEON_GALLIUM = xyes)
1949 AM_CONDITIONAL(USE_R600_LLVM_COMPILER, test x$USE_R600_LLVM_COMPILER = xyes)
1950 AM_CONDITIONAL(HAVE_LOADER_GALLIUM, test x$enable_gallium_loader = xyes)
1951 AM_CONDITIONAL(HAVE_DRM_LOADER_GALLIUM, test x$enable_gallium_drm_loader = xyes)
1952 AM_CONDITIONAL(HAVE_GALLIUM_COMPUTE, test x$enable_opencl = xyes)
1953 AM_CONDITIONAL(HAVE_MESA_LLVM, test x$MESA_LLVM = x1)
1954 AM_CONDITIONAL(LLVM_NEEDS_FNORTTI, test $LLVM_VERSION_INT -ge 302)
1955
1956 AC_SUBST([ELF_LIB])
1957
1958 AM_CONDITIONAL(NEED_LIBPROGRAM, test "x$with_gallium_drivers" != x -o \
1959 "x$enable_xlib_glx" = xyes -o \
1960 "x$enable_osmesa" = xyes)
1961 AM_CONDITIONAL(HAVE_X11_DRIVER, test "x$enable_xlib_glx" = xyes)
1962 AM_CONDITIONAL(HAVE_OSMESA, test "x$enable_osmesa" = xyes)
1963
1964 AM_CONDITIONAL(HAVE_X86_ASM, echo "$DEFINES" | grep 'X86_ASM' >/dev/null 2>&1)
1965 AM_CONDITIONAL(HAVE_X86_64_ASM, echo "$DEFINES" | grep 'X86_64_ASM' >/dev/null 2>&1)
1966 AM_CONDITIONAL(HAVE_SPARC_ASM, echo "$DEFINES" | grep 'SPARC_ASM' >/dev/null 2>&1)
1967
1968 AM_CONDITIONAL(CROSS_COMPILING, test "x$cross_compiling" = xyes)
1969
1970 AC_SUBST([VDPAU_MAJOR], 1)
1971 AC_SUBST([VDPAU_MINOR], 0)
1972
1973 AC_SUBST([XVMC_MAJOR], 1)
1974 AC_SUBST([XVMC_MINOR], 0)
1975
1976 AC_SUBST([XA_MAJOR], 1)
1977 AC_SUBST([XA_MINOR], 0)
1978 AC_SUBST([XA_TINY], 0)
1979 AC_SUBST([XA_VERSION], "$XA_MAJOR.$XA_MINOR.$XA_TINY")
1980
1981 dnl Restore LDFLAGS and CPPFLAGS
1982 LDFLAGS="$_SAVE_LDFLAGS"
1983 CPPFLAGS="$_SAVE_CPPFLAGS"
1984
1985 dnl Add user CFLAGS and CXXFLAGS
1986 CFLAGS="$CFLAGS $USER_CFLAGS"
1987 CXXFLAGS="$CXXFLAGS $USER_CXXFLAGS"
1988
1989 dnl Substitute the config
1990 AC_CONFIG_FILES([Makefile
1991 src/Makefile
1992 src/egl/Makefile
1993 src/egl/drivers/Makefile
1994 src/egl/drivers/dri2/Makefile
1995 src/egl/drivers/glx/Makefile
1996 src/egl/main/Makefile
1997 src/egl/main/egl.pc
1998 src/egl/wayland/Makefile
1999 src/egl/wayland/wayland-drm/Makefile
2000 src/egl/wayland/wayland-egl/Makefile
2001 src/egl/wayland/wayland-egl/wayland-egl.pc
2002 src/gallium/auxiliary/Makefile
2003 src/gallium/auxiliary/pipe-loader/Makefile
2004 src/gallium/drivers/Makefile
2005 src/gallium/drivers/freedreno/Makefile
2006 src/gallium/drivers/freedreno/a2xx/Makefile
2007 src/gallium/drivers/freedreno/a3xx/Makefile
2008 src/gallium/drivers/i915/Makefile
2009 src/gallium/drivers/ilo/Makefile
2010 src/gallium/drivers/llvmpipe/Makefile
2011 src/gallium/drivers/nouveau/Makefile
2012 src/gallium/drivers/nv30/Makefile
2013 src/gallium/drivers/nv50/Makefile
2014 src/gallium/drivers/nvc0/Makefile
2015 src/gallium/drivers/r300/Makefile
2016 src/gallium/drivers/r600/Makefile
2017 src/gallium/drivers/radeon/Makefile
2018 src/gallium/drivers/radeonsi/Makefile
2019 src/gallium/drivers/rbug/Makefile
2020 src/gallium/drivers/softpipe/Makefile
2021 src/gallium/drivers/svga/Makefile
2022 src/gallium/drivers/trace/Makefile
2023 src/gallium/state_trackers/Makefile
2024 src/gallium/state_trackers/clover/Makefile
2025 src/gallium/state_trackers/dri/Makefile
2026 src/gallium/state_trackers/dri/drm/Makefile
2027 src/gallium/state_trackers/dri/sw/Makefile
2028 src/gallium/state_trackers/egl/Makefile
2029 src/gallium/state_trackers/gbm/Makefile
2030 src/gallium/state_trackers/glx/Makefile
2031 src/gallium/state_trackers/osmesa/Makefile
2032 src/gallium/state_trackers/vdpau/Makefile
2033 src/gallium/state_trackers/vega/Makefile
2034 src/gallium/state_trackers/xa/Makefile
2035 src/gallium/state_trackers/xorg/Makefile
2036 src/gallium/state_trackers/xvmc/Makefile
2037 src/gallium/targets/Makefile
2038 src/gallium/targets/dri-freedreno/Makefile
2039 src/gallium/targets/dri-i915/Makefile
2040 src/gallium/targets/dri-ilo/Makefile
2041 src/gallium/targets/dri-nouveau/Makefile
2042 src/gallium/targets/dri-r300/Makefile
2043 src/gallium/targets/dri-r600/Makefile
2044 src/gallium/targets/dri-radeonsi/Makefile
2045 src/gallium/targets/dri-swrast/Makefile
2046 src/gallium/targets/dri-vmwgfx/Makefile
2047 src/gallium/targets/egl-static/Makefile
2048 src/gallium/targets/gbm/Makefile
2049 src/gallium/targets/opencl/Makefile
2050 src/gallium/targets/osmesa/Makefile
2051 src/gallium/targets/pipe-loader/Makefile
2052 src/gallium/targets/libgl-xlib/Makefile
2053 src/gallium/targets/vdpau-nouveau/Makefile
2054 src/gallium/targets/vdpau-r300/Makefile
2055 src/gallium/targets/vdpau-r600/Makefile
2056 src/gallium/targets/vdpau-radeonsi/Makefile
2057 src/gallium/targets/vdpau-softpipe/Makefile
2058 src/gallium/targets/xa-vmwgfx/Makefile
2059 src/gallium/targets/xa-vmwgfx/xatracker.pc
2060 src/gallium/targets/xorg-i915/Makefile
2061 src/gallium/targets/xorg-nouveau/Makefile
2062 src/gallium/targets/xorg-r600/Makefile
2063 src/gallium/targets/xorg-radeonsi/Makefile
2064 src/gallium/targets/xvmc-nouveau/Makefile
2065 src/gallium/targets/xvmc-r300/Makefile
2066 src/gallium/targets/xvmc-r600/Makefile
2067 src/gallium/targets/xvmc-softpipe/Makefile
2068 src/gallium/tests/trivial/Makefile
2069 src/gallium/tests/unit/Makefile
2070 src/gallium/winsys/Makefile
2071 src/gallium/winsys/freedreno/drm/Makefile
2072 src/gallium/winsys/i915/drm/Makefile
2073 src/gallium/winsys/i915/sw/Makefile
2074 src/gallium/winsys/intel/drm/Makefile
2075 src/gallium/winsys/nouveau/drm/Makefile
2076 src/gallium/winsys/radeon/drm/Makefile
2077 src/gallium/winsys/svga/drm/Makefile
2078 src/gallium/winsys/sw/dri/Makefile
2079 src/gallium/winsys/sw/fbdev/Makefile
2080 src/gallium/winsys/sw/null/Makefile
2081 src/gallium/winsys/sw/wayland/Makefile
2082 src/gallium/winsys/sw/wrapper/Makefile
2083 src/gallium/winsys/sw/xlib/Makefile
2084 src/gbm/Makefile
2085 src/gbm/main/gbm.pc
2086 src/glsl/Makefile
2087 src/glsl/builtin_compiler/Makefile
2088 src/glx/Makefile
2089 src/glx/tests/Makefile
2090 src/gtest/Makefile
2091 src/mapi/Makefile
2092 src/mapi/es1api/Makefile
2093 src/mapi/es1api/glesv1_cm.pc
2094 src/mapi/es2api/Makefile
2095 src/mapi/es2api/glesv2.pc
2096 src/mapi/glapi/Makefile
2097 src/mapi/glapi/gen/Makefile
2098 src/mapi/glapi/tests/Makefile
2099 src/mapi/shared-glapi/Makefile
2100 src/mapi/shared-glapi/tests/Makefile
2101 src/mapi/vgapi/Makefile
2102 src/mapi/vgapi/vg.pc
2103 src/mesa/Makefile
2104 src/mesa/gl.pc
2105 src/mesa/drivers/dri/dri.pc
2106 src/mesa/drivers/dri/common/Makefile
2107 src/mesa/drivers/dri/common/xmlpool/Makefile
2108 src/mesa/drivers/dri/i915/Makefile
2109 src/mesa/drivers/dri/i965/Makefile
2110 src/mesa/drivers/dri/Makefile
2111 src/mesa/drivers/dri/nouveau/Makefile
2112 src/mesa/drivers/dri/r200/Makefile
2113 src/mesa/drivers/dri/radeon/Makefile
2114 src/mesa/drivers/dri/swrast/Makefile
2115 src/mesa/drivers/osmesa/Makefile
2116 src/mesa/drivers/osmesa/osmesa.pc
2117 src/mesa/drivers/x11/Makefile
2118 src/mesa/libdricore/Makefile
2119 src/mesa/main/tests/Makefile
2120 src/mesa/main/tests/hash_table/Makefile
2121 src/mesa/program/Makefile
2122 src/mesa/x86-64/Makefile
2123 src/mesa/x86/Makefile])
2124
2125 dnl Sort the dirs alphabetically
2126 GALLIUM_TARGET_DIRS=`echo $GALLIUM_TARGET_DIRS|tr " " "\n"|sort -u|tr "\n" " "`
2127 GALLIUM_WINSYS_DIRS=`echo $GALLIUM_WINSYS_DIRS|tr " " "\n"|sort -u|tr "\n" " "`
2128 GALLIUM_DRIVERS_DIRS=`echo $GALLIUM_DRIVERS_DIRS|tr " " "\n"|sort -u|tr "\n" " "`
2129 GALLIUM_STATE_TRACKERS_DIRS=`echo $GALLIUM_STATE_TRACKERS_DIRS|tr " " "\n"|sort -u|tr "\n" " "`
2130
2131 AC_OUTPUT
2132
2133 dnl
2134 dnl Output some configuration info for the user
2135 dnl
2136 echo ""
2137 echo " prefix: $prefix"
2138 echo " exec_prefix: $exec_prefix"
2139 echo " libdir: $libdir"
2140 echo " includedir: $includedir"
2141
2142 dnl API info
2143 echo ""
2144 echo " OpenGL: $enable_opengl (ES1: $enable_gles1 ES2: $enable_gles2)"
2145 echo " OpenVG: $enable_openvg"
2146
2147 dnl Driver info
2148 echo ""
2149 if test "x$enable_osmesa" != xno; then
2150 echo " OSMesa: lib$OSMESA_LIB"
2151 else
2152 echo " OSMesa: no"
2153 fi
2154
2155 if test "x$enable_dri" != xno; then
2156 # cleanup the drivers var
2157 dri_dirs=`echo $DRI_DIRS | $SED 's/^ *//;s/ */ /;s/ *$//'`
2158 if test "x$DRI_DIRS" = x; then
2159 echo " DRI drivers: no"
2160 else
2161 echo " DRI drivers: $dri_dirs"
2162 fi
2163 echo " DRI driver dir: $DRI_DRIVER_INSTALL_DIR"
2164 fi
2165
2166 case "x$enable_glx$enable_xlib_glx" in
2167 xyesyes)
2168 echo " GLX: Xlib-based"
2169 ;;
2170 xyesno)
2171 echo " GLX: DRI-based"
2172 ;;
2173 *)
2174 echo " GLX: $enable_glx"
2175 ;;
2176 esac
2177
2178 dnl EGL
2179 echo ""
2180 echo " EGL: $enable_egl"
2181 if test "$enable_egl" = yes; then
2182 echo " EGL platforms: $egl_platforms"
2183
2184 egl_drivers=""
2185 if test "x$HAVE_EGL_DRIVER_GLX" != "x"; then
2186 egl_drivers="$egl_drivers builtin:egl_glx"
2187 fi
2188 if test "x$HAVE_EGL_DRIVER_DRI2" != "x"; then
2189 egl_drivers="$egl_drivers builtin:egl_dri2"
2190 fi
2191
2192 if test "x$enable_gallium_egl" = xyes; then
2193 echo " EGL drivers: ${egl_drivers} egl_gallium"
2194 echo " EGL Gallium STs:$EGL_CLIENT_APIS"
2195 else
2196 echo " EGL drivers: $egl_drivers"
2197 fi
2198 fi
2199
2200 echo ""
2201 if test "x$MESA_LLVM" = x1; then
2202 echo " llvm: yes"
2203 echo " llvm-config: $LLVM_CONFIG"
2204 echo " llvm-version: $LLVM_VERSION"
2205 else
2206 echo " llvm: no"
2207 fi
2208
2209 echo ""
2210 if test -n "$with_gallium_drivers"; then
2211 echo " Gallium: yes"
2212 echo " Target dirs: $GALLIUM_TARGET_DIRS"
2213 echo " Winsys dirs: $GALLIUM_WINSYS_DIRS"
2214 echo " Driver dirs: $GALLIUM_DRIVERS_DIRS"
2215 echo " Trackers dirs: $GALLIUM_STATE_TRACKERS_DIRS"
2216 else
2217 echo " Gallium: no"
2218 fi
2219
2220
2221 dnl Libraries
2222 echo ""
2223 echo " Shared libs: $enable_shared"
2224 echo " Static libs: $enable_static"
2225 echo " Shared-glapi: $enable_shared_glapi"
2226
2227 dnl Compiler options
2228 # cleanup the CFLAGS/CXXFLAGS/DEFINES vars
2229 cflags=`echo $CFLAGS | \
2230 $SED 's/^ *//;s/ */ /;s/ *$//'`
2231 cxxflags=`echo $CXXFLAGS | \
2232 $SED 's/^ *//;s/ */ /;s/ *$//'`
2233 defines=`echo $DEFINES | $SED 's/^ *//;s/ */ /;s/ *$//'`
2234 echo ""
2235 echo " CFLAGS: $cflags"
2236 echo " CXXFLAGS: $cxxflags"
2237 echo " Macros: $defines"
2238 echo ""
2239 if test "x$MESA_LLVM" = x1; then
2240 echo " LLVM_CFLAGS: $LLVM_CFLAGS"
2241 echo " LLVM_CXXFLAGS: $LLVM_CXXFLAGS"
2242 echo " LLVM_CPPFLAGS: $LLVM_CPPFLAGS"
2243 echo ""
2244 fi
2245 echo " PYTHON2: $PYTHON2"
2246
2247 echo ""
2248 echo " Run '${MAKE-make}' to build Mesa"
2249 echo ""