blob: 77004cc881093fc1ca488bf44cbb996e6b51aa56 [file] [log] [blame]
Dan Nicholsondca1b792007-10-23 09:25:58 -07001dnl Process this file with autoconf to create configure.
2
Dan Nicholson297e16c2008-05-05 15:42:53 -07003AC_PREREQ([2.59])
Dan Nicholsondca1b792007-10-23 09:25:58 -07004
Dan Nicholson00994ac2008-04-30 15:06:00 -07005dnl Versioning - scrape the version from configs/default
6m4_define([mesa_version],
Vinson Lee48f8a762010-05-11 12:33:30 -07007 [m4_esyscmd([${MAKE-make} -s -f bin/version.mk version | tr -d '\n' | tr -d '\r'])])
Dan Nicholson356f3112009-04-29 06:49:27 -07008m4_ifval(mesa_version,,
9 [m4_fatal([Failed to get the Mesa version from `make -f bin/version.mk version`])])
Dan Nicholsondca1b792007-10-23 09:25:58 -070010
Dan Nicholsone97ab722008-07-01 08:55:42 -070011dnl Tell the user about autoconf.html in the --help output
12m4_divert_once([HELP_END], [
13See docs/autoconf.html for more details on the options for Mesa.])
14
Dan Nicholson00994ac2008-04-30 15:06:00 -070015AC_INIT([Mesa],[mesa_version],
Dan Nicholsonf64d6fe2007-12-12 17:57:45 -080016 [https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa])
Dan Nicholson297e16c2008-05-05 15:42:53 -070017AC_CONFIG_AUX_DIR([bin])
Dan Nicholsondca1b792007-10-23 09:25:58 -070018AC_CANONICAL_HOST
19
Dan Nicholsoncc77e8f2008-05-05 14:38:22 -070020dnl Versions for external dependencies
Eric Anholt859828c2009-10-08 17:18:12 -070021LIBDRM_REQUIRED=2.4.15
Fabio Pedrettiae1c0a02009-12-22 10:43:35 +100022LIBDRM_RADEON_REQUIRED=2.4.17
Kristian Høgsbergaa0cd702010-02-15 10:44:05 -050023DRI2PROTO_REQUIRED=2.1
Jesse Barnesf2f83d92010-01-11 17:28:10 -050024GLPROTO_REQUIRED=1.4.11
Jakob Bornecrantz683a0992010-03-11 19:23:15 +000025LIBDRM_XORG_REQUIRED=2.4.17
26LIBKMS_XORG_REQUIRED=1.0.0
Dan Nicholsoncc77e8f2008-05-05 14:38:22 -070027
Dan Nicholsondca1b792007-10-23 09:25:58 -070028dnl Check for progs
29AC_PROG_CPP
30AC_PROG_CC
31AC_PROG_CXX
Dan Nicholson297e16c2008-05-05 15:42:53 -070032AC_CHECK_PROGS([MAKE], [gmake make])
33AC_PATH_PROG([MKDEP], [makedepend])
34AC_PATH_PROG([SED], [sed])
Dan Nicholson41b00702007-12-12 08:48:30 -080035
Dan Nicholsonbc302b22009-05-22 09:39:02 -070036dnl Our fallback install-sh is a symlink to minstall. Use the existing
37dnl configuration in that case.
38AC_PROG_INSTALL
39test "x$INSTALL" = "x$ac_install_sh" && INSTALL='$(MINSTALL)'
40
Dan Nicholsonbfb27b52008-06-30 09:40:30 -070041dnl We need a POSIX shell for parts of the build. Assume we have one
42dnl in most cases.
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -070043case "$host_os" in
44solaris*)
45 # Solaris /bin/sh is too old/non-POSIX compliant
46 AC_PATH_PROGS(POSIX_SHELL, [ksh93 ksh sh])
Dan Nicholsonbfb27b52008-06-30 09:40:30 -070047 SHELL="$POSIX_SHELL"
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -070048 ;;
49esac
50
nobled2a501872010-08-29 20:03:37 -040051dnl clang is mostly GCC-compatible, but its version is much lower,
52dnl so we have to check for it.
53AC_MSG_CHECKING([if compiling with clang])
54
55AC_COMPILE_IFELSE(
56[AC_LANG_PROGRAM([], [[
57#ifndef __clang__
58 not clang
59#endif
60]])],
61[CLANG=yes], [CLANG=no])
62
63AC_MSG_RESULT([$CLANG])
64
Ian Romanick9aa3aa72010-03-03 15:59:37 -080065dnl If we're using GCC, make sure that it is at least version 3.3.0. Older
66dnl versions are explictly not supported.
nobled2a501872010-08-29 20:03:37 -040067if test "x$GCC" = xyes -a "x$CLANG" = xno; then
Ian Romanick9aa3aa72010-03-03 15:59:37 -080068 AC_MSG_CHECKING([whether gcc version is sufficient])
69 major=0
70 minor=0
71
72 GCC_VERSION=`$CC -dumpversion`
73 if test $? -eq 0; then
74 major=`echo $GCC_VERSION | cut -d. -f1`
75 minor=`echo $GCC_VERSION | cut -d. -f1`
76 fi
77
78 if test $major -lt 3 -o $major -eq 3 -a $minor -lt 3 ; then
79 AC_MSG_RESULT([no])
80 AC_MSG_ERROR([If using GCC, version 3.3.0 or later is required.])
81 else
82 AC_MSG_RESULT([yes])
83 fi
84fi
85
86
Dan Nicholsondb7fc632008-03-07 11:48:09 -080087MKDEP_OPTIONS=-fdepend
Kristian Høgsbergbcecea62008-02-25 18:50:26 -050088dnl Ask gcc where it's keeping its secret headers
89if test "x$GCC" = xyes; then
Dan Nicholsona3d223f2009-01-30 10:52:09 -080090 for dir in include include-fixed; do
91 GCC_INCLUDES=`$CC -print-file-name=$dir`
92 if test "x$GCC_INCLUDES" != x && \
93 test "$GCC_INCLUDES" != "$dir" && \
94 test -d "$GCC_INCLUDES"; then
95 MKDEP_OPTIONS="$MKDEP_OPTIONS -I$GCC_INCLUDES"
96 fi
97 done
Kristian Høgsbergbcecea62008-02-25 18:50:26 -050098fi
Dan Nicholson297e16c2008-05-05 15:42:53 -070099AC_SUBST([MKDEP_OPTIONS])
Kristian Høgsbergbcecea62008-02-25 18:50:26 -0500100
Dan Nicholson41b00702007-12-12 08:48:30 -0800101dnl Make sure the pkg-config macros are defined
Dan Nicholson356f3112009-04-29 06:49:27 -0700102m4_ifndef([PKG_PROG_PKG_CONFIG],
103 [m4_fatal([Could not locate the pkg-config autoconf macros.
104 These are usually located in /usr/share/aclocal/pkg.m4. If your macros
105 are in a different location, try setting the environment variable
106 ACLOCAL="aclocal -I/other/macro/dir" before running autoreconf.])])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700107PKG_PROG_PKG_CONFIG()
108
109dnl LIB_DIR - library basename
110LIB_DIR=`echo $libdir | $SED 's%.*/%%'`
Dan Nicholson297e16c2008-05-05 15:42:53 -0700111AC_SUBST([LIB_DIR])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700112
113dnl Cache LDFLAGS so we can add EXTRA_LIB_PATH and restore it later
114_SAVE_LDFLAGS="$LDFLAGS"
Dan Nicholson297e16c2008-05-05 15:42:53 -0700115AC_ARG_VAR([EXTRA_LIB_PATH],[Extra -L paths for the linker])
116AC_SUBST([EXTRA_LIB_PATH])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700117
118dnl Cache CPPFLAGS so we can add *_INCLUDES and restore it later
119_SAVE_CPPFLAGS="$CPPFLAGS"
Dan Nicholson297e16c2008-05-05 15:42:53 -0700120AC_ARG_VAR([X11_INCLUDES],[Extra -I paths for X11 headers])
121AC_SUBST([X11_INCLUDES])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700122
123dnl Compiler macros
124DEFINES=""
Dan Nicholson297e16c2008-05-05 15:42:53 -0700125AC_SUBST([DEFINES])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700126case "$host_os" in
Samuel Thibaultd18dd6a2009-04-23 05:43:22 -0700127linux*|*-gnu*|gnu*)
Dan Nicholson29f603a2009-01-12 11:10:31 -0800128 DEFINES="$DEFINES -D_GNU_SOURCE -DPTHREADS"
Dan Nicholsondca1b792007-10-23 09:25:58 -0700129 ;;
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -0700130solaris*)
131 DEFINES="$DEFINES -DPTHREADS -DSVR4"
132 ;;
Brian Paul97988902010-02-18 12:46:12 -0700133cygwin*)
134 DEFINES="$DEFINES -DPTHREADS"
135 ;;
Dan Nicholsondca1b792007-10-23 09:25:58 -0700136esac
137
138dnl Add flags for gcc and g++
139if test "x$GCC" = xyes; then
Eric Anholta3c2bd42010-08-30 14:19:23 -0700140 CFLAGS="$CFLAGS -Wall -Wmissing-prototypes -std=c99"
141 if test "x$CLANG" = "xno"; then
142 CFLAGS="$CFLAGS -ffast-math"
143 fi
Alan Coopersmithadda7f32010-01-16 18:34:23 -0800144
145 # Enable -fvisibility=hidden if using a gcc that supports it
146 save_CFLAGS="$CFLAGS"
Alan Coopersmithf8107a42010-01-21 16:42:58 -0800147 AC_MSG_CHECKING([whether $CC supports -fvisibility=hidden])
Alan Coopersmithadda7f32010-01-16 18:34:23 -0800148 CFLAGS="$CFLAGS -fvisibility=hidden"
149 AC_LINK_IFELSE([AC_LANG_PROGRAM()], AC_MSG_RESULT([yes]),
150 [CFLAGS="$save_CFLAGS" ; AC_MSG_RESULT([no])]);
Dan Nicholson0c275b62008-01-15 22:52:25 -0800151
152 # Work around aliasing bugs - developers should comment this out
153 CFLAGS="$CFLAGS -fno-strict-aliasing"
Dan Nicholsondca1b792007-10-23 09:25:58 -0700154fi
155if test "x$GXX" = xyes; then
156 CXXFLAGS="$CXXFLAGS -Wall"
Dan Nicholson0c275b62008-01-15 22:52:25 -0800157
158 # Work around aliasing bugs - developers should comment this out
159 CXXFLAGS="$CXXFLAGS -fno-strict-aliasing"
Dan Nicholsondca1b792007-10-23 09:25:58 -0700160fi
161
162dnl These should be unnecessary, but let the user set them if they want
Dan Nicholson297e16c2008-05-05 15:42:53 -0700163AC_ARG_VAR([OPT_FLAGS], [Additional optimization flags for the compiler.
Dan Nicholsondca1b792007-10-23 09:25:58 -0700164 Default is to use CFLAGS.])
Dan Nicholson297e16c2008-05-05 15:42:53 -0700165AC_ARG_VAR([ARCH_FLAGS], [Additional architecture specific flags for the
Dan Nicholsondca1b792007-10-23 09:25:58 -0700166 compiler. Default is to use CFLAGS.])
Dan Nicholson297e16c2008-05-05 15:42:53 -0700167AC_SUBST([OPT_FLAGS])
168AC_SUBST([ARCH_FLAGS])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700169
170dnl
Dan Nicholsonab57cba2007-12-26 11:12:29 -0600171dnl Hacks to enable 32 or 64 bit build
172dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -0700173AC_ARG_ENABLE([32-bit],
Dan Nicholsonab57cba2007-12-26 11:12:29 -0600174 [AS_HELP_STRING([--enable-32-bit],
175 [build 32-bit libraries @<:@default=auto@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700176 [enable_32bit="$enableval"],
177 [enable_32bit=auto]
Dan Nicholsonab57cba2007-12-26 11:12:29 -0600178)
179if test "x$enable_32bit" = xyes; then
180 if test "x$GCC" = xyes; then
181 CFLAGS="$CFLAGS -m32"
Marc Dietrichc705e722009-08-31 08:56:33 -0700182 ARCH_FLAGS="$ARCH_FLAGS -m32"
Dan Nicholsonab57cba2007-12-26 11:12:29 -0600183 fi
184 if test "x$GXX" = xyes; then
185 CXXFLAGS="$CXXFLAGS -m32"
186 fi
187fi
Dan Nicholson297e16c2008-05-05 15:42:53 -0700188AC_ARG_ENABLE([64-bit],
Dan Nicholsonab57cba2007-12-26 11:12:29 -0600189 [AS_HELP_STRING([--enable-64-bit],
190 [build 64-bit libraries @<:@default=auto@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700191 [enable_64bit="$enableval"],
192 [enable_64bit=auto]
Dan Nicholsonab57cba2007-12-26 11:12:29 -0600193)
194if test "x$enable_64bit" = xyes; then
195 if test "x$GCC" = xyes; then
196 CFLAGS="$CFLAGS -m64"
197 fi
198 if test "x$GXX" = xyes; then
199 CXXFLAGS="$CXXFLAGS -m64"
200 fi
201fi
202
203dnl
Dan Nicholson88586332007-11-15 08:59:57 -0800204dnl shared/static libraries, mimic libtool options
205dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -0700206AC_ARG_ENABLE([static],
Dan Nicholson88586332007-11-15 08:59:57 -0800207 [AS_HELP_STRING([--enable-static],
Dan Nicholson79ad4582007-12-07 19:11:01 -0800208 [build static libraries @<:@default=disabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700209 [enable_static="$enableval"],
210 [enable_static=no]
Dan Nicholson88586332007-11-15 08:59:57 -0800211)
212case "x$enable_static" in
213xyes|xno ) ;;
214x ) enable_static=no ;;
215* )
216 AC_MSG_ERROR([Static library option '$enable_static' is not a valid])
217 ;;
218esac
Dan Nicholson297e16c2008-05-05 15:42:53 -0700219AC_ARG_ENABLE([shared],
Dan Nicholson88586332007-11-15 08:59:57 -0800220 [AS_HELP_STRING([--disable-shared],
Dan Nicholson79ad4582007-12-07 19:11:01 -0800221 [build shared libraries @<:@default=enabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700222 [enable_shared="$enableval"],
223 [enable_shared=yes]
Dan Nicholson88586332007-11-15 08:59:57 -0800224)
225case "x$enable_shared" in
226xyes|xno ) ;;
227x ) enable_shared=yes ;;
228* )
229 AC_MSG_ERROR([Shared library option '$enable_shared' is not a valid])
230 ;;
231esac
232
233dnl Can't have static and shared libraries, default to static if user
234dnl explicitly requested. If both disabled, set to static since shared
235dnl was explicitly requirested.
236case "x$enable_static$enable_shared" in
237xyesyes )
238 AC_MSG_WARN([Can't build static and shared libraries, disabling shared])
239 enable_shared=no
240 ;;
241xnono )
242 AC_MSG_WARN([Can't disable both static and shared libraries, enabling static])
243 enable_static=yes
244 ;;
245esac
246
247dnl
248dnl mklib options
249dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -0700250AC_ARG_VAR([MKLIB_OPTIONS],[Options for the Mesa library script, mklib])
Dan Nicholson88586332007-11-15 08:59:57 -0800251if test "$enable_static" = yes; then
252 MKLIB_OPTIONS="$MKLIB_OPTIONS -static"
253fi
Dan Nicholson297e16c2008-05-05 15:42:53 -0700254AC_SUBST([MKLIB_OPTIONS])
Dan Nicholson88586332007-11-15 08:59:57 -0800255
Dan Nicholson23656c42007-12-12 09:02:31 -0800256dnl
257dnl other compiler options
258dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -0700259AC_ARG_ENABLE([debug],
Dan Nicholson23656c42007-12-12 09:02:31 -0800260 [AS_HELP_STRING([--enable-debug],
261 [use debug compiler flags and macros @<:@default=disabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700262 [enable_debug="$enableval"],
263 [enable_debug=no]
Dan Nicholson23656c42007-12-12 09:02:31 -0800264)
265if test "x$enable_debug" = xyes; then
266 DEFINES="$DEFINES -DDEBUG"
267 if test "x$GCC" = xyes; then
268 CFLAGS="$CFLAGS -g"
269 fi
270 if test "x$GXX" = xyes; then
271 CXXFLAGS="$CXXFLAGS -g"
272 fi
273fi
Dan Nicholson88586332007-11-15 08:59:57 -0800274
275dnl
Dan Nicholsondca1b792007-10-23 09:25:58 -0700276dnl library names
277dnl
Dan Nicholson88586332007-11-15 08:59:57 -0800278if test "$enable_static" = yes; then
Dan Nicholson8217f242009-02-11 15:16:00 -0800279 LIB_EXTENSION='a'
Dan Nicholson88586332007-11-15 08:59:57 -0800280else
Siddhartha Chaudhuri1a46c8a2009-02-09 07:58:38 -0700281 case "$host_os" in
282 darwin* )
283 LIB_EXTENSION='dylib' ;;
Jon TURNEY7eed6ab2009-06-08 16:02:18 +0100284 cygwin* )
Chia-I Wu70ae8bf2010-05-18 10:22:57 -0600285 LIB_EXTENSION='dll.a' ;;
Tom Fogal9282edf2009-10-13 10:55:33 -0700286 aix* )
287 LIB_EXTENSION='a' ;;
Siddhartha Chaudhuri1a46c8a2009-02-09 07:58:38 -0700288 * )
289 LIB_EXTENSION='so' ;;
290 esac
Dan Nicholson88586332007-11-15 08:59:57 -0800291fi
Dan Nicholson8217f242009-02-11 15:16:00 -0800292
293GL_LIB_NAME='lib$(GL_LIB).'${LIB_EXTENSION}
294GLU_LIB_NAME='lib$(GLU_LIB).'${LIB_EXTENSION}
295GLUT_LIB_NAME='lib$(GLUT_LIB).'${LIB_EXTENSION}
296GLW_LIB_NAME='lib$(GLW_LIB).'${LIB_EXTENSION}
297OSMESA_LIB_NAME='lib$(OSMESA_LIB).'${LIB_EXTENSION}
Chia-I Wud4c1ee02009-12-21 11:13:18 +0800298EGL_LIB_NAME='lib$(EGL_LIB).'${LIB_EXTENSION}
Kristian Høgsberg9339c122010-03-05 19:01:43 -0500299GLESv1_CM_LIB_NAME='lib$(GLESv1_CM_LIB).'${LIB_EXTENSION}
300GLESv2_LIB_NAME='lib$(GLESv2_LIB).'${LIB_EXTENSION}
Chia-I Wu874ccd52010-05-04 22:43:05 +0800301VG_LIB_NAME='lib$(VG_LIB).'${LIB_EXTENSION}
Dan Nicholson8217f242009-02-11 15:16:00 -0800302
303GL_LIB_GLOB='lib$(GL_LIB).*'${LIB_EXTENSION}'*'
304GLU_LIB_GLOB='lib$(GLU_LIB).*'${LIB_EXTENSION}'*'
305GLUT_LIB_GLOB='lib$(GLUT_LIB).*'${LIB_EXTENSION}'*'
306GLW_LIB_GLOB='lib$(GLW_LIB).*'${LIB_EXTENSION}'*'
307OSMESA_LIB_GLOB='lib$(OSMESA_LIB).*'${LIB_EXTENSION}'*'
Chia-I Wud4c1ee02009-12-21 11:13:18 +0800308EGL_LIB_GLOB='lib$(EGL_LIB).*'${LIB_EXTENSION}'*'
Kristian Høgsberg9339c122010-03-05 19:01:43 -0500309GLESv1_CM_LIB_GLOB='lib$(GLESv1_CM_LIB).*'${LIB_EXTENSION}'*'
310GLESv2_LIB_GLOB='lib$(GLESv2_LIB).*'${LIB_EXTENSION}'*'
Chia-I Wu874ccd52010-05-04 22:43:05 +0800311VG_LIB_GLOB='lib$(VG_LIB).*'${LIB_EXTENSION}'*'
Dan Nicholson8217f242009-02-11 15:16:00 -0800312
Dan Nicholson297e16c2008-05-05 15:42:53 -0700313AC_SUBST([GL_LIB_NAME])
314AC_SUBST([GLU_LIB_NAME])
315AC_SUBST([GLUT_LIB_NAME])
316AC_SUBST([GLW_LIB_NAME])
317AC_SUBST([OSMESA_LIB_NAME])
Chia-I Wud4c1ee02009-12-21 11:13:18 +0800318AC_SUBST([EGL_LIB_NAME])
Kristian Høgsberg9339c122010-03-05 19:01:43 -0500319AC_SUBST([GLESv1_CM_LIB_NAME])
320AC_SUBST([GLESv2_LIB_NAME])
Chia-I Wu874ccd52010-05-04 22:43:05 +0800321AC_SUBST([VG_LIB_NAME])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700322
Siddhartha Chaudhuri1a46c8a2009-02-09 07:58:38 -0700323AC_SUBST([GL_LIB_GLOB])
324AC_SUBST([GLU_LIB_GLOB])
325AC_SUBST([GLUT_LIB_GLOB])
326AC_SUBST([GLW_LIB_GLOB])
327AC_SUBST([OSMESA_LIB_GLOB])
Chia-I Wud4c1ee02009-12-21 11:13:18 +0800328AC_SUBST([EGL_LIB_GLOB])
Kristian Høgsberg9339c122010-03-05 19:01:43 -0500329AC_SUBST([GLESv1_CM_LIB_GLOB])
330AC_SUBST([GLESv2_LIB_GLOB])
Chia-I Wu874ccd52010-05-04 22:43:05 +0800331AC_SUBST([VG_LIB_GLOB])
Siddhartha Chaudhuri1a46c8a2009-02-09 07:58:38 -0700332
Dan Nicholsondca1b792007-10-23 09:25:58 -0700333dnl
Dan Nicholson871125a2008-06-04 13:00:35 -0700334dnl Arch/platform-specific settings
335dnl
336AC_ARG_ENABLE([asm],
337 [AS_HELP_STRING([--disable-asm],
338 [disable assembly usage @<:@default=enabled on supported plaforms@:>@])],
339 [enable_asm="$enableval"],
340 [enable_asm=yes]
341)
342asm_arch=""
343ASM_FLAGS=""
Dan Nicholsonc5bae142009-02-11 11:04:29 -0800344MESA_ASM_SOURCES=""
345GLAPI_ASM_SOURCES=""
Dan Nicholson871125a2008-06-04 13:00:35 -0700346AC_MSG_CHECKING([whether to enable assembly])
347test "x$enable_asm" = xno && AC_MSG_RESULT([no])
348# disable if cross compiling on x86/x86_64 since we must run gen_matypes
349if test "x$enable_asm" = xyes && test "x$cross_compiling" = xyes; then
350 case "$host_cpu" in
351 i?86 | x86_64)
352 enable_asm=no
353 AC_MSG_RESULT([no, cross compiling])
354 ;;
355 esac
356fi
357# check for supported arches
358if test "x$enable_asm" = xyes; then
359 case "$host_cpu" in
360 i?86)
361 case "$host_os" in
Julien Cristau98fcdf32008-10-28 18:56:05 +0100362 linux* | *freebsd* | dragonfly*)
Dan Nicholson871125a2008-06-04 13:00:35 -0700363 test "x$enable_64bit" = xyes && asm_arch=x86_64 || asm_arch=x86
364 ;;
365 esac
366 ;;
367 x86_64)
368 case "$host_os" in
Julien Cristau98fcdf32008-10-28 18:56:05 +0100369 linux* | *freebsd* | dragonfly*)
Dan Nicholson871125a2008-06-04 13:00:35 -0700370 test "x$enable_32bit" = xyes && asm_arch=x86 || asm_arch=x86_64
371 ;;
372 esac
373 ;;
374 powerpc)
375 case "$host_os" in
376 linux*)
377 asm_arch=ppc
378 ;;
379 esac
380 ;;
David S. Miller857ac1e2009-02-26 05:35:15 -0800381 sparc*)
382 case "$host_os" in
383 linux*)
384 asm_arch=sparc
385 ;;
386 esac
387 ;;
Dan Nicholson871125a2008-06-04 13:00:35 -0700388 esac
389
390 case "$asm_arch" in
391 x86)
Dan Nicholson61e925f2009-02-11 10:42:34 -0800392 ASM_FLAGS="-DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_3DNOW_ASM -DUSE_SSE_ASM"
Dan Nicholsonc5bae142009-02-11 11:04:29 -0800393 MESA_ASM_SOURCES='$(X86_SOURCES)'
394 GLAPI_ASM_SOURCES='$(X86_API)'
Dan Nicholson871125a2008-06-04 13:00:35 -0700395 AC_MSG_RESULT([yes, x86])
396 ;;
397 x86_64)
398 ASM_FLAGS="-DUSE_X86_64_ASM"
Dan Nicholsonc5bae142009-02-11 11:04:29 -0800399 MESA_ASM_SOURCES='$(X86-64_SOURCES)'
400 GLAPI_ASM_SOURCES='$(X86-64_API)'
Dan Nicholson871125a2008-06-04 13:00:35 -0700401 AC_MSG_RESULT([yes, x86_64])
402 ;;
403 ppc)
404 ASM_FLAGS="-DUSE_PPC_ASM -DUSE_VMX_ASM"
Dan Nicholsonc5bae142009-02-11 11:04:29 -0800405 MESA_ASM_SOURCES='$(PPC_SOURCES)'
Dan Nicholson871125a2008-06-04 13:00:35 -0700406 AC_MSG_RESULT([yes, ppc])
407 ;;
David S. Miller857ac1e2009-02-26 05:35:15 -0800408 sparc)
409 ASM_FLAGS="-DUSE_SPARC_ASM"
410 MESA_ASM_SOURCES='$(SPARC_SOURCES)'
411 GLAPI_ASM_SOURCES='$(SPARC_API)'
412 AC_MSG_RESULT([yes, sparc])
413 ;;
Dan Nicholson871125a2008-06-04 13:00:35 -0700414 *)
415 AC_MSG_RESULT([no, platform not supported])
416 ;;
417 esac
418fi
419AC_SUBST([ASM_FLAGS])
Dan Nicholsonc5bae142009-02-11 11:04:29 -0800420AC_SUBST([MESA_ASM_SOURCES])
421AC_SUBST([GLAPI_ASM_SOURCES])
Dan Nicholson871125a2008-06-04 13:00:35 -0700422
423dnl PIC code macro
424MESA_PIC_FLAGS
425
426dnl Check to see if dlopen is in default libraries (like Solaris, which
427dnl has it in libc), or if libdl is needed to get it.
428AC_CHECK_FUNC([dlopen], [],
429 [AC_CHECK_LIB([dl], [dlopen], [DLOPEN_LIBS="-ldl"])])
Chia-I Wu08f4bc02010-07-16 20:09:29 +0800430AC_SUBST([DLOPEN_LIBS])
Dan Nicholson871125a2008-06-04 13:00:35 -0700431
Dan Nicholson985e1cd2008-06-04 13:17:06 -0700432dnl See if posix_memalign is available
433AC_CHECK_FUNC([posix_memalign], [DEFINES="$DEFINES -DHAVE_POSIX_MEMALIGN"])
434
Dan Nicholson871125a2008-06-04 13:00:35 -0700435dnl SELinux awareness.
436AC_ARG_ENABLE([selinux],
437 [AS_HELP_STRING([--enable-selinux],
438 [Build SELinux-aware Mesa @<:@default=disabled@:>@])],
439 [MESA_SELINUX="$enableval"],
440 [MESA_SELINUX=no])
441if test "x$enable_selinux" = "xyes"; then
442 AC_CHECK_HEADER([selinux/selinux.h],[],
443 [AC_MSG_ERROR([SELinux headers not found])])
444 AC_CHECK_LIB([selinux],[is_selinux_enabled],[],
445 [AC_MSG_ERROR([SELinux library not found])])
446 SELINUX_LIBS="-lselinux"
447 DEFINES="$DEFINES -DMESA_SELINUX"
448fi
449
Dan Nicholson871125a2008-06-04 13:00:35 -0700450dnl
Dan Nicholsona1307182007-12-12 17:49:49 -0800451dnl Driver configuration. Options are xlib, dri and osmesa right now.
Kristian Høgsberg43875802010-02-25 15:49:18 -0500452dnl More later: fbdev, ...
Dan Nicholson44d99142007-12-05 18:47:01 -0800453dnl
Eric Anholt711222b2008-04-18 15:03:01 -0700454default_driver="xlib"
455
456case "$host_os" in
457linux*)
458 case "$host_cpu" in
David S. Miller32dc28a2009-02-24 20:06:05 -0700459 i*86|x86_64|powerpc*|sparc*) default_driver="dri";;
Eric Anholt711222b2008-04-18 15:03:01 -0700460 esac
461 ;;
Julien Cristau98fcdf32008-10-28 18:56:05 +0100462*freebsd* | dragonfly*)
Eric Anholt711222b2008-04-18 15:03:01 -0700463 case "$host_cpu" in
Robert Noland48f05432009-04-10 11:41:27 -0500464 i*86|x86_64|powerpc*|sparc*) default_driver="dri";;
Eric Anholt711222b2008-04-18 15:03:01 -0700465 esac
466 ;;
467esac
468
Dan Nicholson297e16c2008-05-05 15:42:53 -0700469AC_ARG_WITH([driver],
Dan Nicholson44d99142007-12-05 18:47:01 -0800470 [AS_HELP_STRING([--with-driver=DRIVER],
Eric Anholt711222b2008-04-18 15:03:01 -0700471 [driver for Mesa: xlib,dri,osmesa @<:@default=dri when available, or xlib@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700472 [mesa_driver="$withval"],
473 [mesa_driver="$default_driver"])
Dan Nicholson44d99142007-12-05 18:47:01 -0800474dnl Check for valid option
475case "x$mesa_driver" in
Dan Nicholsona1307182007-12-12 17:49:49 -0800476xxlib|xdri|xosmesa)
Dan Nicholson44d99142007-12-05 18:47:01 -0800477 ;;
478*)
479 AC_MSG_ERROR([Driver '$mesa_driver' is not a valid option])
480 ;;
481esac
482
Eric Anholt0a1b54d2010-06-21 11:29:15 -0700483PKG_CHECK_MODULES([TALLOC], [talloc])
Eric Anholt639cdd32010-08-22 17:34:18 -0700484AC_SUBST([TALLOC_LIBS])
485AC_SUBST([TALLOC_CFLAGS])
Eric Anholt0a1b54d2010-06-21 11:29:15 -0700486
Dan Nicholson44d99142007-12-05 18:47:01 -0800487dnl
488dnl Driver specific build directories
Dan Nicholsondca1b792007-10-23 09:25:58 -0700489dnl
Chia-I Wu99a37ed2010-01-05 17:39:05 +0800490
491dnl this variable will be prepended to SRC_DIRS and is not exported
Chia-I Wu296adbd2010-04-26 12:56:44 +0800492CORE_DIRS="mapi/glapi glsl mesa"
Chia-I Wu99a37ed2010-01-05 17:39:05 +0800493
Jakob Bornecrantz05281062010-06-05 13:33:58 +0200494SRC_DIRS=""
Dan Nicholsondca1b792007-10-23 09:25:58 -0700495GLU_DIRS="sgi"
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100496GALLIUM_DIRS="auxiliary drivers state_trackers"
Keith Whitwell51bff092010-03-11 14:43:00 +0000497GALLIUM_TARGET_DIRS=""
Jakob Bornecrantzc9f98672010-03-16 13:54:18 +0000498GALLIUM_WINSYS_DIRS="sw"
Corbin Simpson25609782010-06-22 22:00:43 -0700499GALLIUM_DRIVERS_DIRS="softpipe failover galahad trace rbug identity"
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100500GALLIUM_STATE_TRACKERS_DIRS=""
501
Dan Nicholson44d99142007-12-05 18:47:01 -0800502case "$mesa_driver" in
Dan Nicholsona1307182007-12-12 17:49:49 -0800503xlib)
Dan Nicholson44d99142007-12-05 18:47:01 -0800504 DRIVER_DIRS="x11"
Jakob Bornecrantzc9f98672010-03-16 13:54:18 +0000505 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/xlib"
Keith Whitwell51bff092010-03-11 14:43:00 +0000506 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS libgl-xlib"
Dan Nicholson44d99142007-12-05 18:47:01 -0800507 ;;
508dri)
Kristian Høgsberg6e8897f2010-02-09 09:58:36 -0500509 SRC_DIRS="$SRC_DIRS glx"
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100510 DRIVER_DIRS="dri"
Jakob Bornecrantz23a915e2010-06-23 03:31:18 +0200511 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/xlib sw/dri"
Dan Nicholson44d99142007-12-05 18:47:01 -0800512 ;;
Dan Nicholson979ff512007-12-05 18:47:01 -0800513osmesa)
514 DRIVER_DIRS="osmesa"
515 ;;
Dan Nicholson44d99142007-12-05 18:47:01 -0800516esac
Dan Nicholson297e16c2008-05-05 15:42:53 -0700517AC_SUBST([SRC_DIRS])
518AC_SUBST([GLU_DIRS])
519AC_SUBST([DRIVER_DIRS])
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100520AC_SUBST([GALLIUM_DIRS])
Keith Whitwell51bff092010-03-11 14:43:00 +0000521AC_SUBST([GALLIUM_TARGET_DIRS])
Jerome Glisse14f79d42008-12-18 13:36:07 +0100522AC_SUBST([GALLIUM_WINSYS_DIRS])
Jakob Bornecrantzd67bd602009-02-20 11:03:18 +0000523AC_SUBST([GALLIUM_DRIVERS_DIRS])
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100524AC_SUBST([GALLIUM_STATE_TRACKERS_DIRS])
Dave Airlie81fe1982010-04-22 14:59:29 +1000525AC_SUBST([MESA_LLVM])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700526
527dnl
Dan Nicholsone6a06092008-05-05 15:16:22 -0700528dnl Find out if X is available. The variable have_x is set if libX11 is
Dan Nicholson99803a42008-07-01 09:03:15 -0700529dnl found to mimic AC_PATH_XTRA.
Dan Nicholsondca1b792007-10-23 09:25:58 -0700530dnl
531if test -n "$PKG_CONFIG"; then
532 AC_MSG_CHECKING([pkg-config files for X11 are available])
Dan Nicholsone6a06092008-05-05 15:16:22 -0700533 PKG_CHECK_EXISTS([x11],[
Dan Nicholsondca1b792007-10-23 09:25:58 -0700534 x11_pkgconfig=yes
535 have_x=yes
Dan Nicholsone6a06092008-05-05 15:16:22 -0700536 ],[
Dan Nicholsondca1b792007-10-23 09:25:58 -0700537 x11_pkgconfig=no
Dan Nicholsone6a06092008-05-05 15:16:22 -0700538 ])
539 AC_MSG_RESULT([$x11_pkgconfig])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700540else
541 x11_pkgconfig=no
542fi
543dnl Use the autoconf macro if no pkg-config files
Jeff Smith8d86d392010-03-12 18:55:09 -0600544if test "$x11_pkgconfig" = yes; then
Dan Nicholsone725ef12010-03-15 20:53:56 -0700545 PKG_CHECK_MODULES([X11], [x11])
Jeff Smith8d86d392010-03-12 18:55:09 -0600546else
Dan Nicholsondca1b792007-10-23 09:25:58 -0700547 AC_PATH_XTRA
Dan Nicholsone725ef12010-03-15 20:53:56 -0700548 test -z "$X11_CFLAGS" && X11_CFLAGS="$X_CFLAGS"
549 test -z "$X11_LIBS" && X11_LIBS="$X_LIBS -lX11"
550 AC_SUBST([X11_CFLAGS])
551 AC_SUBST([X11_LIBS])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700552fi
553
Dan Nicholson99803a42008-07-01 09:03:15 -0700554dnl Try to tell the user that the --x-* options are only used when
555dnl pkg-config is not available. This must be right after AC_PATH_XTRA.
556m4_divert_once([HELP_BEGIN],
557[These options are only used when the X libraries cannot be found by the
558pkg-config utility.])
559
Dan Nicholson44d99142007-12-05 18:47:01 -0800560dnl We need X for xlib and dri, so bomb now if it's not found
561case "$mesa_driver" in
Dan Nicholsona1307182007-12-12 17:49:49 -0800562xlib|dri)
Dan Nicholson44d99142007-12-05 18:47:01 -0800563 if test "$no_x" = yes; then
564 AC_MSG_ERROR([X11 development libraries needed for $mesa_driver driver])
565 fi
566 ;;
567esac
Dan Nicholsondca1b792007-10-23 09:25:58 -0700568
Dan Nicholson2d709fe2008-05-06 10:51:49 -0700569dnl XCB - this is only used for GLX right now
570AC_ARG_ENABLE([xcb],
571 [AS_HELP_STRING([--enable-xcb],
572 [use XCB for GLX @<:@default=disabled@:>@])],
573 [enable_xcb="$enableval"],
574 [enable_xcb=no])
575if test "x$enable_xcb" = xyes; then
576 DEFINES="$DEFINES -DUSE_XCB"
577else
578 enable_xcb=no
579fi
580
Dan Nicholson44d99142007-12-05 18:47:01 -0800581dnl
582dnl libGL configuration per driver
583dnl
584case "$mesa_driver" in
Dan Nicholsona1307182007-12-12 17:49:49 -0800585xlib)
Dan Nicholson44d99142007-12-05 18:47:01 -0800586 if test "$x11_pkgconfig" = yes; then
Dan Nicholson297e16c2008-05-05 15:42:53 -0700587 PKG_CHECK_MODULES([XLIBGL], [x11 xext])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800588 GL_PC_REQ_PRIV="x11 xext"
Dan Nicholsona1307182007-12-12 17:49:49 -0800589 X11_INCLUDES="$X11_INCLUDES $XLIBGL_CFLAGS"
590 GL_LIB_DEPS="$XLIBGL_LIBS"
Dan Nicholson44d99142007-12-05 18:47:01 -0800591 else
592 # should check these...
593 X11_INCLUDES="$X11_INCLUDES $X_CFLAGS"
594 GL_LIB_DEPS="$X_LIBS -lX11 -lXext"
Dan Nicholson71e208b2008-11-24 11:01:57 -0800595 GL_PC_LIB_PRIV="$GL_LIB_DEPS"
596 GL_PC_CFLAGS="$X11_INCLUDES"
Dan Nicholson44d99142007-12-05 18:47:01 -0800597 fi
Jon TURNEY63563032010-08-30 12:41:15 +0100598 GL_LIB_DEPS="$GL_LIB_DEPS $SELINUX_LIBS -lm -lpthread $TALLOC_LIBS"
599 GL_PC_LIB_PRIV="$GL_PC_LIB_PRIV $SELINUX_LIBS -lm -lpthread $TALLOC_LIBS"
Dan Nicholson88586332007-11-15 08:59:57 -0800600
601 # if static, move the external libraries to the programs
602 # and empty the libraries for libGL
603 if test "$enable_static" = yes; then
604 APP_LIB_DEPS="$APP_LIB_DEPS $GL_LIB_DEPS"
605 GL_LIB_DEPS=""
606 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800607 ;;
608dri)
Dan Nicholson88586332007-11-15 08:59:57 -0800609 # DRI must be shared, I think
610 if test "$enable_static" = yes; then
611 AC_MSG_ERROR([Can't use static libraries for DRI drivers])
612 fi
613
Dan Nicholson44d99142007-12-05 18:47:01 -0800614 # Check for libdrm
Dan Nicholsoncc77e8f2008-05-05 14:38:22 -0700615 PKG_CHECK_MODULES([LIBDRM], [libdrm >= $LIBDRM_REQUIRED])
616 PKG_CHECK_MODULES([DRI2PROTO], [dri2proto >= $DRI2PROTO_REQUIRED])
Jesse Barnesf2f83d92010-01-11 17:28:10 -0500617 PKG_CHECK_MODULES([GLPROTO], [glproto >= $GLPROTO_REQUIRED])
Jesse Barnesed59b132010-01-13 15:48:14 -0500618 GL_PC_REQ_PRIV="libdrm >= $LIBDRM_REQUIRED dri2proto >= $DRI2PROTO_REQUIRED glproto >= $GLPROTO_REQUIRED"
619 DRI_PC_REQ_PRIV="libdrm >= $LIBDRM_REQUIRED"
Dan Nicholson44d99142007-12-05 18:47:01 -0800620
621 # find the DRI deps for libGL
622 if test "$x11_pkgconfig" = yes; then
Dan Nicholson2d709fe2008-05-06 10:51:49 -0700623 # add xcb modules if necessary
624 dri_modules="x11 xext xxf86vm xdamage xfixes"
625 if test "$enable_xcb" = yes; then
626 dri_modules="$dri_modules x11-xcb xcb-glx"
627 fi
628
629 PKG_CHECK_MODULES([DRIGL], [$dri_modules])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800630 GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV $dri_modules"
Dan Nicholson44d99142007-12-05 18:47:01 -0800631 X11_INCLUDES="$X11_INCLUDES $DRIGL_CFLAGS"
632 GL_LIB_DEPS="$DRIGL_LIBS"
633 else
634 # should check these...
635 X11_INCLUDES="$X11_INCLUDES $X_CFLAGS"
636 GL_LIB_DEPS="$X_LIBS -lX11 -lXext -lXxf86vm -lXdamage -lXfixes"
Dan Nicholson71e208b2008-11-24 11:01:57 -0800637 GL_PC_LIB_PRIV="$GL_LIB_DEPS"
638 GL_PC_CFLAGS="$X11_INCLUDES"
Dan Nicholson2d709fe2008-05-06 10:51:49 -0700639
640 # XCB can only be used from pkg-config
641 if test "$enable_xcb" = yes; then
642 PKG_CHECK_MODULES([XCB],[x11-xcb xcb-glx])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800643 GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV x11-xcb xcb-glx"
Dan Nicholson2d709fe2008-05-06 10:51:49 -0700644 X11_INCLUDES="$X11_INCLUDES $XCB_CFLAGS"
645 GL_LIB_DEPS="$GL_LIB_DEPS $XCB_LIBS"
646 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800647 fi
648
649 # need DRM libs, -lpthread, etc.
Alan Coopersmith3cf6e622009-03-23 16:51:54 -0700650 GL_LIB_DEPS="$GL_LIB_DEPS $LIBDRM_LIBS -lm -lpthread $DLOPEN_LIBS"
651 GL_PC_LIB_PRIV="-lm -lpthread $DLOPEN_LIBS"
Kristian Høgsberg9339c122010-03-05 19:01:43 -0500652 GLESv1_CM_LIB_DEPS="$LIBDRM_LIBS -lm -lpthread $DLOPEN_LIBS"
Kristian Høgsberg74399d42010-05-02 09:51:13 -0400653 GLESv1_CM_PC_LIB_PRIV="-lm -lpthread $DLOPEN_LIBS"
Kristian Høgsberg9339c122010-03-05 19:01:43 -0500654 GLESv2_LIB_DEPS="$LIBDRM_LIBS -lm -lpthread $DLOPEN_LIBS"
Kristian Høgsberg74399d42010-05-02 09:51:13 -0400655 GLESv2_PC_LIB_PRIV="-lm -lpthread $DLOPEN_LIBS"
Dan Nicholson44d99142007-12-05 18:47:01 -0800656 ;;
Dan Nicholson979ff512007-12-05 18:47:01 -0800657osmesa)
658 # No libGL for osmesa
Alan Coopersmith3cf6e622009-03-23 16:51:54 -0700659 GL_LIB_DEPS=""
Dan Nicholson979ff512007-12-05 18:47:01 -0800660 ;;
Dan Nicholson44d99142007-12-05 18:47:01 -0800661esac
Dan Nicholson297e16c2008-05-05 15:42:53 -0700662AC_SUBST([GL_LIB_DEPS])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800663AC_SUBST([GL_PC_REQ_PRIV])
664AC_SUBST([GL_PC_LIB_PRIV])
665AC_SUBST([GL_PC_CFLAGS])
666AC_SUBST([DRI_PC_REQ_PRIV])
Li Pengc33c1912010-07-30 12:26:15 +0800667AC_SUBST([GLESv1_CM_LIB_DEPS])
Kristian Høgsberg9e4f2da2010-05-04 14:13:11 -0400668AC_SUBST([GLESv1_CM_PC_LIB_PRIV])
Kristian Høgsberg9339c122010-03-05 19:01:43 -0500669AC_SUBST([GLESv2_LIB_DEPS])
Kristian Høgsberg9e4f2da2010-05-04 14:13:11 -0400670AC_SUBST([GLESv2_PC_LIB_PRIV])
671
Dan Nicholsondca1b792007-10-23 09:25:58 -0700672
673dnl
674dnl More X11 setup
675dnl
Dan Nicholsona1307182007-12-12 17:49:49 -0800676if test "$mesa_driver" = xlib; then
Dan Nicholsondca1b792007-10-23 09:25:58 -0700677 DEFINES="$DEFINES -DUSE_XSHM"
678fi
679
680dnl
Dan Nicholson44d99142007-12-05 18:47:01 -0800681dnl More DRI setup
682dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -0700683AC_ARG_ENABLE([glx-tls],
Dan Nicholson44d99142007-12-05 18:47:01 -0800684 [AS_HELP_STRING([--enable-glx-tls],
Dan Nicholson79ad4582007-12-07 19:11:01 -0800685 [enable TLS support in GLX @<:@default=disabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700686 [GLX_USE_TLS="$enableval"],
687 [GLX_USE_TLS=no])
Dan Nicholson44d99142007-12-05 18:47:01 -0800688dnl Directory for DRI drivers
Dan Nicholson297e16c2008-05-05 15:42:53 -0700689AC_ARG_WITH([dri-driverdir],
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800690 [AS_HELP_STRING([--with-dri-driverdir=DIR],
Dan Nicholson5dbbde52008-05-06 06:21:41 -0700691 [directory for the DRI drivers @<:@${libdir}/dri@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700692 [DRI_DRIVER_INSTALL_DIR="$withval"],
Dan Nicholson5dbbde52008-05-06 06:21:41 -0700693 [DRI_DRIVER_INSTALL_DIR='${libdir}/dri'])
Dan Nicholson297e16c2008-05-05 15:42:53 -0700694AC_SUBST([DRI_DRIVER_INSTALL_DIR])
Chow Loong Jin35506de2009-10-28 14:34:14 +0800695dnl Extra search path for DRI drivers
696AC_ARG_WITH([dri-searchpath],
697 [AS_HELP_STRING([--with-dri-searchpath=DIRS...],
698 [semicolon delimited DRI driver search directories @<:@${libdir}/dri@:>@])],
699 [DRI_DRIVER_SEARCH_DIR="$withval"],
700 [DRI_DRIVER_SEARCH_DIR='${DRI_DRIVER_INSTALL_DIR}'])
701AC_SUBST([DRI_DRIVER_SEARCH_DIR])
Dan Nicholson44d99142007-12-05 18:47:01 -0800702dnl Direct rendering or just indirect rendering
Dan Nicholson297e16c2008-05-05 15:42:53 -0700703AC_ARG_ENABLE([driglx-direct],
Dan Nicholson79ad4582007-12-07 19:11:01 -0800704 [AS_HELP_STRING([--disable-driglx-direct],
Chia-I Wucf588ab2010-07-06 14:34:43 +0800705 [enable direct rendering in GLX and EGL for DRI @<:@default=enabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700706 [driglx_direct="$enableval"],
707 [driglx_direct="yes"])
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800708dnl Which drivers to build - default is chosen by platform
Dan Nicholson297e16c2008-05-05 15:42:53 -0700709AC_ARG_WITH([dri-drivers],
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800710 [AS_HELP_STRING([--with-dri-drivers@<:@=DIRS...@:>@],
Dan Nicholson5cae1b72008-06-30 10:28:02 -0700711 [comma delimited DRI drivers list, e.g.
Michel Dänzercade0712009-07-10 14:49:46 +0200712 "swrast,i965,radeon" @<:@default=auto@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700713 [with_dri_drivers="$withval"],
714 [with_dri_drivers=yes])
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800715if test "x$with_dri_drivers" = x; then
716 with_dri_drivers=no
717fi
718
Kristian Høgsberg0f680322010-04-27 13:42:33 -0400719dnl Determine which APIs to support
720AC_ARG_ENABLE([opengl],
721 [AS_HELP_STRING([--disable-opengl],
722 [disable support for standard OpenGL API @<:@default=no@:>@])],
723 [enable_opengl="$enableval"],
724 [enable_opengl=yes])
725AC_ARG_ENABLE([gles1],
726 [AS_HELP_STRING([--enable-gles1],
727 [enable support for OpenGL ES 1.x API @<:@default=no@:>@])],
728 [enable_gles1="$enableval"],
729 [enable_gles1=no])
730AC_ARG_ENABLE([gles2],
731 [AS_HELP_STRING([--enable-gles2],
732 [enable support for OpenGL ES 2.x API @<:@default=no@:>@])],
733 [enable_gles2="$enableval"],
734 [enable_gles2=no])
Chia-I Wu63ab2502010-05-05 15:38:02 +0800735AC_ARG_ENABLE([gles-overlay],
736 [AS_HELP_STRING([--enable-gles-overlay],
737 [build separate OpenGL ES only libraries @<:@default=no@:>@])],
738 [enable_gles_overlay="$enableval"],
739 [enable_gles_overlay=no])
Kristian Høgsberg0f680322010-04-27 13:42:33 -0400740
741API_DEFINES=""
Chia-I Wu87cc2da2010-05-12 14:17:17 +0800742GLES_OVERLAY=0
Kristian Høgsberg0f680322010-04-27 13:42:33 -0400743if test "x$enable_opengl" = xno; then
744 API_DEFINES="$API_DEFINES -DFEATURE_GL=0"
745else
746 API_DEFINES="$API_DEFINES -DFEATURE_GL=1"
747fi
748if test "x$enable_gles1" = xyes; then
749 API_DEFINES="$API_DEFINES -DFEATURE_ES1=1"
750fi
751if test "x$enable_gles2" = xyes; then
752 API_DEFINES="$API_DEFINES -DFEATURE_ES2=1"
753fi
Chia-I Wu63ab2502010-05-05 15:38:02 +0800754if test "x$enable_gles_overlay" = xyes -o \
755 "x$enable_gles1" = xyes -o "x$enable_gles2" = xyes; then
Chia-I Wu296adbd2010-04-26 12:56:44 +0800756 CORE_DIRS="mapi/es1api mapi/es2api $CORE_DIRS"
Chia-I Wu63ab2502010-05-05 15:38:02 +0800757 if test "x$enable_gles_overlay" = xyes; then
Chia-I Wu87cc2da2010-05-12 14:17:17 +0800758 GLES_OVERLAY=1
Chia-I Wu63ab2502010-05-05 15:38:02 +0800759 fi
Kristian Høgsberg9339c122010-03-05 19:01:43 -0500760fi
Kristian Høgsberg0f680322010-04-27 13:42:33 -0400761AC_SUBST([API_DEFINES])
Chia-I Wu87cc2da2010-05-12 14:17:17 +0800762AC_SUBST([GLES_OVERLAY])
Kristian Høgsberg0f680322010-04-27 13:42:33 -0400763
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800764dnl If $with_dri_drivers is yes, directories will be added through
765dnl platform checks
766DRI_DIRS=""
767case "$with_dri_drivers" in
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100768no) ;;
769yes)
770 DRI_DIRS="yes"
771 ;;
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800772*)
773 # verify the requested driver directories exist
Dan Nicholsone6e4f252008-07-06 14:17:39 -0700774 dri_drivers=`IFS=', '; echo $with_dri_drivers`
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800775 for driver in $dri_drivers; do
776 test -d "$srcdir/src/mesa/drivers/dri/$driver" || \
777 AC_MSG_ERROR([DRI driver directory '$driver' doesn't exist])
778 done
779 DRI_DIRS="$dri_drivers"
780 ;;
781esac
782
Dan Nicholson44d99142007-12-05 18:47:01 -0800783dnl Set DRI_DIRS, DEFINES and LIB_DEPS
784if test "$mesa_driver" = dri; then
785 # Use TLS in GLX?
786 if test "x$GLX_USE_TLS" = xyes; then
787 DEFINES="$DEFINES -DGLX_USE_TLS -DPTHREADS"
788 fi
789
Dan Nicholson44d99142007-12-05 18:47:01 -0800790 # Platform specific settings and drivers to build
791 case "$host_os" in
792 linux*)
793 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
Dan Nicholson44d99142007-12-05 18:47:01 -0800794 if test "x$driglx_direct" = xyes; then
795 DEFINES="$DEFINES -DGLX_DIRECT_RENDERING"
796 fi
Jerome Glisse14f79d42008-12-18 13:36:07 +0100797 DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING -DHAVE_ALIAS"
Dan Nicholson44d99142007-12-05 18:47:01 -0800798
799 case "$host_cpu" in
Dan Nicholson44d99142007-12-05 18:47:01 -0800800 x86_64)
Kristian Høgsberg79aeafd2010-02-25 16:12:58 -0500801 # sis is missing because they have not be converted to use
802 # the new interface. i810 are missing because there is no
803 # x86-64 system where they could *ever* be used.
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100804 if test "x$DRI_DIRS" = "xyes"; then
Alex Deucher4138bdb2009-04-08 15:16:35 -0400805 DRI_DIRS="i915 i965 mach64 mga r128 r200 r300 r600 radeon \
George Sapountzis280bf892008-05-11 14:43:40 +0300806 savage tdfx unichrome swrast"
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800807 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800808 ;;
809 powerpc*)
Dan Nicholsona76e2452007-12-07 11:25:08 -0800810 # Build only the drivers for cards that exist on PowerPC.
811 # At some point MGA will be added, but not yet.
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100812 if test "x$DRI_DIRS" = "xyes"; then
Alex Deucher4138bdb2009-04-08 15:16:35 -0400813 DRI_DIRS="mach64 r128 r200 r300 r600 radeon tdfx swrast"
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800814 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800815 ;;
Dave Airlie2b0e75e2008-06-12 12:06:50 +1000816 sparc*)
817 # Build only the drivers for cards that exist on sparc`
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100818 if test "x$DRI_DIRS" = "xyes"; then
Kristian Høgsberg79aeafd2010-02-25 16:12:58 -0500819 DRI_DIRS="mach64 r128 r200 r300 r600 radeon swrast"
Dave Airlie2b0e75e2008-06-12 12:06:50 +1000820 fi
821 ;;
Dan Nicholson44d99142007-12-05 18:47:01 -0800822 esac
823 ;;
Hasso Tepper9f8df2d2008-04-09 10:51:21 -0700824 freebsd* | dragonfly*)
Dan Nicholson44d99142007-12-05 18:47:01 -0800825 DEFINES="$DEFINES -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1"
826 DEFINES="$DEFINES -DIN_DRI_DRIVER -DHAVE_ALIAS"
827 DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING"
828 if test "x$driglx_direct" = xyes; then
829 DEFINES="$DEFINES -DGLX_DIRECT_RENDERING"
830 fi
831 if test "x$GXX" = xyes; then
832 CXXFLAGS="$CXXFLAGS -ansi -pedantic"
833 fi
834
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100835 if test "x$DRI_DIRS" = "xyes"; then
Alex Deucher4138bdb2009-04-08 15:16:35 -0400836 DRI_DIRS="i810 i915 i965 mach64 mga r128 r200 r300 r600 radeon tdfx \
George Sapountzis280bf892008-05-11 14:43:40 +0300837 unichrome savage sis swrast"
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800838 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800839 ;;
Samuel Thibaultd18dd6a2009-04-23 05:43:22 -0700840 gnu*)
841 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
842 DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING -DHAVE_ALIAS"
843 ;;
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -0700844 solaris*)
845 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
846 DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING"
847 if test "x$driglx_direct" = xyes; then
848 DEFINES="$DEFINES -DGLX_DIRECT_RENDERING"
849 fi
850 ;;
Dan Nicholson44d99142007-12-05 18:47:01 -0800851 esac
Dan Nicholson112a40e2008-02-21 10:17:19 -0800852
853 # default drivers
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100854 if test "x$DRI_DIRS" = "xyes"; then
Corbin Simpson8e4657a2009-10-22 12:29:30 -0700855 DRI_DIRS="i810 i915 i965 mach64 mga r128 r200 r300 r600 radeon \
Kristian Høgsberg79aeafd2010-02-25 16:12:58 -0500856 savage sis tdfx unichrome swrast"
Dan Nicholson112a40e2008-02-21 10:17:19 -0800857 fi
858
Dan Nicholson44d99142007-12-05 18:47:01 -0800859 DRI_DIRS=`echo "$DRI_DIRS" | $SED 's/ */ /g'`
860
861 # Check for expat
862 EXPAT_INCLUDES=""
863 EXPAT_LIB=-lexpat
Dan Nicholson297e16c2008-05-05 15:42:53 -0700864 AC_ARG_WITH([expat],
865 [AS_HELP_STRING([--with-expat=DIR],
866 [expat install directory])],[
Dan Nicholson44d99142007-12-05 18:47:01 -0800867 EXPAT_INCLUDES="-I$withval/include"
868 CPPFLAGS="$CPPFLAGS $EXPAT_INCLUDES"
869 LDFLAGS="$LDFLAGS -L$withval/$LIB_DIR"
870 EXPAT_LIB="-L$withval/$LIB_DIR -lexpat"
871 ])
Dan Nicholson297e16c2008-05-05 15:42:53 -0700872 AC_CHECK_HEADER([expat.h],[],[AC_MSG_ERROR([Expat required for DRI.])])
873 AC_CHECK_LIB([expat],[XML_ParserCreate],[],
874 [AC_MSG_ERROR([Expat required for DRI.])])
Dan Nicholson44d99142007-12-05 18:47:01 -0800875
876 # put all the necessary libs together
Eric Anholt0a1b54d2010-06-21 11:29:15 -0700877 DRI_LIB_DEPS="$SELINUX_LIBS $LIBDRM_LIBS $EXPAT_LIB -lm -lpthread $DLOPEN_LIBS $TALLOC_LIBS"
Dan Nicholson44d99142007-12-05 18:47:01 -0800878fi
Dan Nicholson297e16c2008-05-05 15:42:53 -0700879AC_SUBST([DRI_DIRS])
880AC_SUBST([EXPAT_INCLUDES])
881AC_SUBST([DRI_LIB_DEPS])
Dan Nicholson44d99142007-12-05 18:47:01 -0800882
Kristian Høgsberg8616cec2010-01-01 17:03:33 -0500883case $DRI_DIRS in
884*i915*|*i965*)
Eric Anholt73de09f2010-06-07 09:25:10 -0700885 PKG_CHECK_MODULES([INTEL], [libdrm_intel >= 2.4.21])
Kristian Høgsberg8616cec2010-01-01 17:03:33 -0500886 ;;
Kristian Høgsberg27fe7a72010-01-07 10:29:29 -0500887esac
Kristian Høgsberg8616cec2010-01-01 17:03:33 -0500888
Kristian Høgsberg27fe7a72010-01-07 10:29:29 -0500889case $DRI_DIRS in
Kristian Høgsberg8616cec2010-01-01 17:03:33 -0500890*radeon*|*r200*|*r300*|*r600*)
891 PKG_CHECK_MODULES([LIBDRM_RADEON],
892 [libdrm_radeon libdrm >= $LIBDRM_RADEON_REQUIRED],
893 HAVE_LIBDRM_RADEON=yes,
894 HAVE_LIBDRM_RADEON=no)
895
896 if test "$HAVE_LIBDRM_RADEON" = yes; then
897 RADEON_CFLAGS="-DHAVE_LIBDRM_RADEON=1 $LIBDRM_RADEON_CFLAGS"
898 RADEON_LDFLAGS=$LIBDRM_RADEON_LIBS
899 fi
900 ;;
901esac
902AC_SUBST([RADEON_CFLAGS])
903AC_SUBST([RADEON_LDFLAGS])
904
905
Dan Nicholson44d99142007-12-05 18:47:01 -0800906dnl
Dan Nicholsondca1b792007-10-23 09:25:58 -0700907dnl OSMesa configuration
908dnl
Dan Nicholsona1307182007-12-12 17:49:49 -0800909if test "$mesa_driver" = xlib; then
Dan Nicholson544ab202007-12-30 08:41:53 -0800910 default_gl_osmesa=yes
Dan Nicholson979ff512007-12-05 18:47:01 -0800911else
Dan Nicholson544ab202007-12-30 08:41:53 -0800912 default_gl_osmesa=no
Dan Nicholson44d99142007-12-05 18:47:01 -0800913fi
Dan Nicholson297e16c2008-05-05 15:42:53 -0700914AC_ARG_ENABLE([gl-osmesa],
Dan Nicholson544ab202007-12-30 08:41:53 -0800915 [AS_HELP_STRING([--enable-gl-osmesa],
Dan Nicholsoncbf30fc2010-06-16 09:23:17 -0700916 [enable OSMesa with libGL @<:@default=enabled for xlib driver@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700917 [gl_osmesa="$enableval"],
918 [gl_osmesa="$default_gl_osmesa"])
Dan Nicholson544ab202007-12-30 08:41:53 -0800919if test "x$gl_osmesa" = xyes; then
920 if test "$mesa_driver" = osmesa; then
921 AC_MSG_ERROR([libGL is not available for OSMesa driver])
Dan Nicholson979ff512007-12-05 18:47:01 -0800922 else
Dan Nicholson544ab202007-12-30 08:41:53 -0800923 DRIVER_DIRS="$DRIVER_DIRS osmesa"
Dan Nicholson979ff512007-12-05 18:47:01 -0800924 fi
925fi
926
Dan Nicholson6689f9e2007-12-05 21:04:15 -0800927dnl Configure the channel bits for OSMesa (libOSMesa, libOSMesa16, ...)
Dan Nicholson297e16c2008-05-05 15:42:53 -0700928AC_ARG_WITH([osmesa-bits],
Dan Nicholson6689f9e2007-12-05 21:04:15 -0800929 [AS_HELP_STRING([--with-osmesa-bits=BITS],
930 [OSMesa channel bits and library name: 8, 16, 32 @<:@default=8@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700931 [osmesa_bits="$withval"],
932 [osmesa_bits=8])
Dan Nicholson6689f9e2007-12-05 21:04:15 -0800933if test "$mesa_driver" != osmesa && test "x$osmesa_bits" != x8; then
934 AC_MSG_WARN([Ignoring OSMesa channel bits for non-OSMesa driver])
935 osmesa_bits=8
936fi
937case "x$osmesa_bits" in
938x8)
939 OSMESA_LIB=OSMesa
940 ;;
941x16|x32)
942 OSMESA_LIB="OSMesa$osmesa_bits"
943 DEFINES="$DEFINES -DCHAN_BITS=$osmesa_bits -DDEFAULT_SOFTWARE_DEPTH_BITS=31"
944 ;;
945*)
946 AC_MSG_ERROR([OSMesa bits '$osmesa_bits' is not a valid option])
947 ;;
948esac
Dan Nicholson297e16c2008-05-05 15:42:53 -0700949AC_SUBST([OSMESA_LIB])
Dan Nicholson6689f9e2007-12-05 21:04:15 -0800950
Dan Nicholsoncbf30fc2010-06-16 09:23:17 -0700951case "$DRIVER_DIRS" in
952*osmesa*)
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -0700953 # only link libraries with osmesa if shared
Dan Nicholson88586332007-11-15 08:59:57 -0800954 if test "$enable_static" = no; then
Jon TURNEYe637f8b2010-08-30 12:41:16 +0100955 OSMESA_LIB_DEPS="-lm -lpthread $SELINUX_LIBS $DLOPEN_LIBS $TALLOC_LIBS"
Dan Nicholson88586332007-11-15 08:59:57 -0800956 else
957 OSMESA_LIB_DEPS=""
958 fi
Dan Nicholson979ff512007-12-05 18:47:01 -0800959 OSMESA_MESA_DEPS=""
Jon TURNEYe637f8b2010-08-30 12:41:16 +0100960 OSMESA_PC_LIB_PRIV="-lm -lpthread $SELINUX_LIBS $DLOPEN_LIBS $TALLOC_LIBS"
Dan Nicholson979ff512007-12-05 18:47:01 -0800961 ;;
Dan Nicholson979ff512007-12-05 18:47:01 -0800962esac
Dan Nicholson297e16c2008-05-05 15:42:53 -0700963AC_SUBST([OSMESA_LIB_DEPS])
964AC_SUBST([OSMESA_MESA_DEPS])
Dan Nicholson8be02fc2008-12-14 09:35:29 -0800965AC_SUBST([OSMESA_PC_REQ])
966AC_SUBST([OSMESA_PC_LIB_PRIV])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700967
968dnl
Dan Nicholson53b37342009-02-25 17:45:34 -0800969dnl EGL configuration
970dnl
Dan Nicholson66f97862009-04-29 12:11:43 -0700971AC_ARG_ENABLE([egl],
972 [AS_HELP_STRING([--disable-egl],
973 [disable EGL library @<:@default=enabled@:>@])],
974 [enable_egl="$enableval"],
975 [enable_egl=yes])
976if test "x$enable_egl" = xyes; then
977 SRC_DIRS="$SRC_DIRS egl"
Chia-I Wud4c1ee02009-12-21 11:13:18 +0800978 EGL_LIB_DEPS="$DLOPEN_LIBS -lpthread"
979 EGL_DRIVERS_DIRS=""
Chia-I Wu2eb7a2f2010-02-05 10:46:11 +0800980 if test "$enable_static" != yes; then
Chia-I Wud4c1ee02009-12-21 11:13:18 +0800981 # build egl_glx when libGL is built
Chia-I Wu2eb7a2f2010-02-05 10:46:11 +0800982 if test "$mesa_driver" != osmesa; then
983 EGL_DRIVERS_DIRS="glx"
984 fi
985
Chia-I Wu39ae9652010-07-16 19:48:52 +0800986 if test "$mesa_driver" = dri; then
987 # build egl_dri2 when xcb-dri2 is available
988 PKG_CHECK_MODULES([XCB_DRI2], [x11-xcb xcb-dri2 xcb-xfixes],
989 [have_xcb_dri2=yes],[have_xcb_dri2=no])
990 PKG_CHECK_MODULES([LIBUDEV], [libudev > 150],
991 [have_libudev=yes],[have_libudev=no])
992
993 if test "$have_xcb_dri2" = yes; then
994 EGL_DRIVER_DRI2=dri2
995 DEFINES="$DEFINES -DHAVE_XCB_DRI2"
996 if test "$have_libudev" = yes; then
997 DEFINES="$DEFINES -DHAVE_LIBUDEV"
998 fi
999 fi
1000 fi
Kristian Høgsberg2168b872010-06-02 22:48:06 -04001001
1002 EGL_DRIVERS_DIRS="$EGL_DRIVERS_DIRS $EGL_DRIVER_DRI2"
Kristian Høgsberg42fa0092010-02-03 10:18:28 -05001003 fi
Dan Nicholson53b37342009-02-25 17:45:34 -08001004fi
Dan Nicholson53b37342009-02-25 17:45:34 -08001005AC_SUBST([EGL_LIB_DEPS])
Chia-I Wud4c1ee02009-12-21 11:13:18 +08001006AC_SUBST([EGL_DRIVERS_DIRS])
Dan Nicholson53b37342009-02-25 17:45:34 -08001007
1008dnl
Dan Nicholsondca1b792007-10-23 09:25:58 -07001009dnl GLU configuration
1010dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -07001011AC_ARG_ENABLE([glu],
Dan Nicholson79ad4582007-12-07 19:11:01 -08001012 [AS_HELP_STRING([--disable-glu],
1013 [enable OpenGL Utility library @<:@default=enabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -07001014 [enable_glu="$enableval"],
1015 [enable_glu=yes])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001016if test "x$enable_glu" = xyes; then
1017 SRC_DIRS="$SRC_DIRS glu"
1018
Dan Nicholson979ff512007-12-05 18:47:01 -08001019 case "$mesa_driver" in
1020 osmesa)
Dan Nicholson979ff512007-12-05 18:47:01 -08001021 # Link libGLU to libOSMesa instead of libGL
1022 GLU_LIB_DEPS=""
Dan Nicholson8be02fc2008-12-14 09:35:29 -08001023 GLU_PC_REQ="osmesa"
Dan Nicholson88586332007-11-15 08:59:57 -08001024 if test "$enable_static" = no; then
1025 GLU_MESA_DEPS='-l$(OSMESA_LIB)'
1026 else
1027 GLU_MESA_DEPS=""
1028 fi
Dan Nicholson979ff512007-12-05 18:47:01 -08001029 ;;
1030 *)
Dan Nicholson88586332007-11-15 08:59:57 -08001031 # If static, empty GLU_LIB_DEPS and add libs for programs to link
Dan Nicholson71e208b2008-11-24 11:01:57 -08001032 GLU_PC_REQ="gl"
1033 GLU_PC_LIB_PRIV="-lm"
Dan Nicholson88586332007-11-15 08:59:57 -08001034 if test "$enable_static" = no; then
1035 GLU_LIB_DEPS="-lm"
1036 GLU_MESA_DEPS='-l$(GL_LIB)'
1037 else
1038 GLU_LIB_DEPS=""
1039 GLU_MESA_DEPS=""
1040 APP_LIB_DEPS="$APP_LIB_DEPS -lstdc++"
1041 fi
Dan Nicholson979ff512007-12-05 18:47:01 -08001042 ;;
1043 esac
Dan Nicholsondca1b792007-10-23 09:25:58 -07001044fi
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -07001045if test "$enable_static" = no; then
1046 GLU_LIB_DEPS="$GLU_LIB_DEPS $OS_CPLUSPLUS_LIBS"
1047fi
Dan Nicholson71e208b2008-11-24 11:01:57 -08001048GLU_PC_LIB_PRIV="$GLU_PC_LIB_PRIV $OS_CPLUSPLUS_LIBS"
Dan Nicholson297e16c2008-05-05 15:42:53 -07001049AC_SUBST([GLU_LIB_DEPS])
1050AC_SUBST([GLU_MESA_DEPS])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001051AC_SUBST([GLU_PC_REQ])
1052AC_SUBST([GLU_PC_REQ_PRIV])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001053AC_SUBST([GLU_PC_LIB_PRIV])
1054AC_SUBST([GLU_PC_CFLAGS])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001055
1056dnl
1057dnl GLw configuration
1058dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -07001059AC_ARG_ENABLE([glw],
Dan Nicholson79ad4582007-12-07 19:11:01 -08001060 [AS_HELP_STRING([--disable-glw],
1061 [enable Xt/Motif widget library @<:@default=enabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -07001062 [enable_glw="$enableval"],
1063 [enable_glw=yes])
Dan Nicholson979ff512007-12-05 18:47:01 -08001064dnl Don't build GLw on osmesa
1065if test "x$enable_glw" = xyes && test "$mesa_driver" = osmesa; then
1066 AC_MSG_WARN([Disabling GLw since the driver is OSMesa])
1067 enable_glw=no
1068fi
Dan Nicholson776c60d2008-07-18 07:40:41 -07001069AC_ARG_ENABLE([motif],
1070 [AS_HELP_STRING([--enable-motif],
1071 [use Motif widgets in GLw @<:@default=disabled@:>@])],
1072 [enable_motif="$enableval"],
1073 [enable_motif=no])
1074
Dan Nicholsondca1b792007-10-23 09:25:58 -07001075if test "x$enable_glw" = xyes; then
1076 SRC_DIRS="$SRC_DIRS glw"
1077 if test "$x11_pkgconfig" = yes; then
Dan Nicholson297e16c2008-05-05 15:42:53 -07001078 PKG_CHECK_MODULES([GLW],[x11 xt])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001079 GLW_PC_REQ_PRIV="x11 xt"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001080 GLW_LIB_DEPS="$GLW_LIBS"
1081 else
1082 # should check these...
Dan Nicholson776c60d2008-07-18 07:40:41 -07001083 GLW_LIB_DEPS="$X_LIBS -lXt -lX11"
Dan Nicholson71e208b2008-11-24 11:01:57 -08001084 GLW_PC_LIB_PRIV="$GLW_LIB_DEPS"
1085 GLW_PC_CFLAGS="$X11_INCLUDES"
Dan Nicholson776c60d2008-07-18 07:40:41 -07001086 fi
1087
1088 GLW_SOURCES="GLwDrawA.c"
1089 MOTIF_CFLAGS=
1090 if test "x$enable_motif" = xyes; then
1091 GLW_SOURCES="$GLW_SOURCES GLwMDrawA.c"
1092 AC_PATH_PROG([MOTIF_CONFIG], [motif-config], [no])
1093 if test "x$MOTIF_CONFIG" != xno; then
1094 MOTIF_CFLAGS=`$MOTIF_CONFIG --cflags`
1095 MOTIF_LIBS=`$MOTIF_CONFIG --libs`
1096 else
1097 AC_CHECK_HEADER([Xm/PrimitiveP.h], [],
1098 [AC_MSG_ERROR([Can't locate Motif headers])])
1099 AC_CHECK_LIB([Xm], [XmGetPixmap], [MOTIF_LIBS="-lXm"],
1100 [AC_MSG_ERROR([Can't locate Motif Xm library])])
1101 fi
1102 # MOTIF_LIBS is prepended to GLW_LIB_DEPS since Xm needs Xt/X11
1103 GLW_LIB_DEPS="$MOTIF_LIBS $GLW_LIB_DEPS"
Dan Nicholson71e208b2008-11-24 11:01:57 -08001104 GLW_PC_LIB_PRIV="$MOTIF_LIBS $GLW_PC_LIB_PRIV"
1105 GLW_PC_CFLAGS="$MOTIF_CFLAGS $GLW_PC_CFLAGS"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001106 fi
1107
Dan Nicholson88586332007-11-15 08:59:57 -08001108 # If static, empty GLW_LIB_DEPS and add libs for programs to link
Alan Coopersmith3cf6e622009-03-23 16:51:54 -07001109 GLW_PC_LIB_PRIV="$GLW_PC_LIB_PRIV"
Dan Nicholson88586332007-11-15 08:59:57 -08001110 if test "$enable_static" = no; then
1111 GLW_MESA_DEPS='-l$(GL_LIB)'
Alan Coopersmith3cf6e622009-03-23 16:51:54 -07001112 GLW_LIB_DEPS="$GLW_LIB_DEPS"
Dan Nicholson88586332007-11-15 08:59:57 -08001113 else
1114 APP_LIB_DEPS="$APP_LIB_DEPS $GLW_LIB_DEPS"
1115 GLW_LIB_DEPS=""
1116 GLW_MESA_DEPS=""
1117 fi
Dan Nicholsondca1b792007-10-23 09:25:58 -07001118fi
Dan Nicholson297e16c2008-05-05 15:42:53 -07001119AC_SUBST([GLW_LIB_DEPS])
1120AC_SUBST([GLW_MESA_DEPS])
Dan Nicholson776c60d2008-07-18 07:40:41 -07001121AC_SUBST([GLW_SOURCES])
1122AC_SUBST([MOTIF_CFLAGS])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001123AC_SUBST([GLW_PC_REQ_PRIV])
1124AC_SUBST([GLW_PC_LIB_PRIV])
1125AC_SUBST([GLW_PC_CFLAGS])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001126
1127dnl
1128dnl GLUT configuration
1129dnl
1130if test -f "$srcdir/include/GL/glut.h"; then
1131 default_glut=yes
1132else
1133 default_glut=no
1134fi
Dan Nicholson297e16c2008-05-05 15:42:53 -07001135AC_ARG_ENABLE([glut],
Dan Nicholson79ad4582007-12-07 19:11:01 -08001136 [AS_HELP_STRING([--disable-glut],
1137 [enable GLUT library @<:@default=enabled if source available@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -07001138 [enable_glut="$enableval"],
1139 [enable_glut="$default_glut"])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001140
1141dnl Can't build glut if GLU not available
1142if test "x$enable_glu$enable_glut" = xnoyes; then
1143 AC_MSG_WARN([Disabling glut since GLU is disabled])
1144 enable_glut=no
1145fi
Dan Nicholson979ff512007-12-05 18:47:01 -08001146dnl Don't build glut on osmesa
1147if test "x$enable_glut" = xyes && test "$mesa_driver" = osmesa; then
1148 AC_MSG_WARN([Disabling glut since the driver is OSMesa])
1149 enable_glut=no
1150fi
1151
Dan Nicholsondca1b792007-10-23 09:25:58 -07001152if test "x$enable_glut" = xyes; then
1153 SRC_DIRS="$SRC_DIRS glut/glx"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001154 if test "$x11_pkgconfig" = yes; then
Dan Nicholson297e16c2008-05-05 15:42:53 -07001155 PKG_CHECK_MODULES([GLUT],[x11 xmu xi])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001156 GLUT_PC_REQ_PRIV="x11 xmu xi"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001157 GLUT_LIB_DEPS="$GLUT_LIBS"
1158 else
1159 # should check these...
Dan Nicholson70d0c832007-12-07 11:12:20 -08001160 GLUT_LIB_DEPS="$X_LIBS -lX11 -lXmu -lXi"
Dan Nicholson71e208b2008-11-24 11:01:57 -08001161 GLUT_PC_LIB_PRIV="$GLUT_LIB_DEPS"
1162 GLUT_PC_CFLAGS="$X11_INCLUDES"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001163 fi
John Hein96172542010-07-01 12:53:28 -07001164 if test "x$GCC" = xyes; then
1165 GLUT_CFLAGS="$GLUT_CFLAGS -fexceptions"
1166 fi
Alan Coopersmith3cf6e622009-03-23 16:51:54 -07001167 GLUT_LIB_DEPS="$GLUT_LIB_DEPS -lm"
1168 GLUT_PC_LIB_PRIV="$GLUT_PC_LIB_PRIV -lm"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001169
Dan Nicholson88586332007-11-15 08:59:57 -08001170 # If static, empty GLUT_LIB_DEPS and add libs for programs to link
1171 if test "$enable_static" = no; then
1172 GLUT_MESA_DEPS='-l$(GLU_LIB) -l$(GL_LIB)'
1173 else
1174 APP_LIB_DEPS="$APP_LIB_DEPS $GLUT_LIB_DEPS"
1175 GLUT_LIB_DEPS=""
1176 GLUT_MESA_DEPS=""
1177 fi
Dan Nicholsondca1b792007-10-23 09:25:58 -07001178fi
Dan Nicholson297e16c2008-05-05 15:42:53 -07001179AC_SUBST([GLUT_LIB_DEPS])
1180AC_SUBST([GLUT_MESA_DEPS])
1181AC_SUBST([GLUT_CFLAGS])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001182AC_SUBST([GLUT_PC_REQ_PRIV])
1183AC_SUBST([GLUT_PC_LIB_PRIV])
1184AC_SUBST([GLUT_PC_CFLAGS])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001185
1186dnl
1187dnl Program library dependencies
1188dnl Only libm is added here if necessary as the libraries should
1189dnl be pulled in by the linker
1190dnl
1191if test "x$APP_LIB_DEPS" = x; then
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -07001192 case "$host_os" in
1193 solaris*)
1194 APP_LIB_DEPS="-lX11 -lsocket -lnsl -lm"
1195 ;;
Jon TURNEY7eed6ab2009-06-08 16:02:18 +01001196 cygwin*)
1197 APP_LIB_DEPS="-lX11"
1198 ;;
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -07001199 *)
1200 APP_LIB_DEPS="-lm"
1201 ;;
1202 esac
Dan Nicholsondca1b792007-10-23 09:25:58 -07001203fi
Dan Nicholson297e16c2008-05-05 15:42:53 -07001204AC_SUBST([APP_LIB_DEPS])
1205AC_SUBST([PROGRAM_DIRS])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001206
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001207dnl
1208dnl Gallium configuration
1209dnl
1210AC_ARG_ENABLE([gallium],
1211 [AS_HELP_STRING([--disable-gallium],
1212 [build gallium @<:@default=enabled@:>@])],
1213 [enable_gallium="$enableval"],
1214 [enable_gallium=yes])
1215if test "x$enable_gallium" = xyes; then
Jakob Bornecrantzbe38b322010-03-23 13:23:26 +00001216 SRC_DIRS="$SRC_DIRS gallium gallium/winsys gallium/targets"
Dave Airlie81fe1982010-04-22 14:59:29 +10001217 AC_CHECK_HEADER([udis86.h], [HAS_UDIS86="yes"],
1218 [HAS_UDIS86="no"])
1219 AC_PATH_PROG([LLVM_CONFIG], [llvm-config], [no])
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001220fi
Dan Nicholsondca1b792007-10-23 09:25:58 -07001221
Dave Airlie81fe1982010-04-22 14:59:29 +10001222AC_SUBST([LLVM_CFLAGS])
1223AC_SUBST([LLVM_LIBS])
1224AC_SUBST([LLVM_LDFLAGS])
1225AC_SUBST([LLVM_VERSION])
1226
Chia-I Wu874ccd52010-05-04 22:43:05 +08001227VG_LIB_DEPS=""
Chia-I Wu63ab2502010-05-05 15:38:02 +08001228EGL_CLIENT_APIS='$(GL_LIB)'
1229if test "x$enable_gles_overlay" = xyes; then
1230 EGL_CLIENT_APIS="$EGL_CLIENT_APIS "'$(GLESv1_CM_LIB) $(GLESv2_LIB)'
1231fi
Chia-I Wu874ccd52010-05-04 22:43:05 +08001232
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001233dnl
1234dnl Gallium state trackers configuration
1235dnl
1236AC_ARG_WITH([state-trackers],
1237 [AS_HELP_STRING([--with-state-trackers@<:@=DIRS...@:>@],
1238 [comma delimited state_trackers list, e.g.
1239 "egl,glx" @<:@default=auto@:>@])],
1240 [with_state_trackers="$withval"],
1241 [with_state_trackers=yes])
1242
1243case "$with_state_trackers" in
1244no)
1245 GALLIUM_STATE_TRACKERS_DIRS=""
1246 ;;
1247yes)
1248 # look at what else is built
1249 case "$mesa_driver" in
Jakob Bornecrantz373e6712009-04-18 23:13:56 +01001250 xlib)
1251 GALLIUM_STATE_TRACKERS_DIRS=glx
1252 ;;
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001253 dri)
Jakob Bornecrantz5b1fc142010-03-25 18:29:51 +01001254 GALLIUM_STATE_TRACKERS_DIRS="dri"
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001255 HAVE_ST_DRI="yes"
Jakob Bornecrantzbc0532b2009-12-04 18:50:29 +00001256 if test "x$enable_egl" = xyes; then
Chia-I Wu3c967a92010-01-22 16:31:43 +08001257 GALLIUM_STATE_TRACKERS_DIRS="$GALLIUM_STATE_TRACKERS_DIRS egl"
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001258 HAVE_ST_EGL="yes"
Jakob Bornecrantzbc0532b2009-12-04 18:50:29 +00001259 fi
1260 # Have only tested st/xorg on 1.6.0 servers
Jakob Bornecrantz683a0992010-03-11 19:23:15 +00001261 PKG_CHECK_MODULES(XORG, [xorg-server >= 1.6.0 libdrm >= $LIBDRM_XORG_REQUIRED libkms >= $LIBKMS_XORG_REQUIRED],
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001262 HAVE_ST_XORG="yes"; GALLIUM_STATE_TRACKERS_DIRS="$GALLIUM_STATE_TRACKERS_DIRS xorg",
1263 HAVE_ST_XORG="no")
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001264 ;;
1265 esac
1266 ;;
1267*)
1268 # verify the requested state tracker exist
Chia-I Wu63ab2502010-05-05 15:38:02 +08001269 state_trackers=""
1270 _state_trackers=`IFS=', '; echo $with_state_trackers`
1271 for tracker in $_state_trackers; do
Chia-I Wue5d351d2009-12-23 11:18:00 +08001272 case "$tracker" in
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001273 dri)
1274 if test "x$mesa_driver" != xdri; then
1275 AC_MSG_ERROR([cannot build dri state tracker without mesa driver set to dri])
1276 fi
1277 HAVE_ST_DRI="yes"
1278 ;;
Chia-I Wu3c967a92010-01-22 16:31:43 +08001279 egl)
Chia-I Wue5d351d2009-12-23 11:18:00 +08001280 if test "x$enable_egl" != xyes; then
Chia-I Wu3c967a92010-01-22 16:31:43 +08001281 AC_MSG_ERROR([cannot build egl state tracker without EGL library])
Chia-I Wue5d351d2009-12-23 11:18:00 +08001282 fi
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001283 HAVE_ST_EGL="yes"
Chia-I Wue5d351d2009-12-23 11:18:00 +08001284 ;;
1285 xorg)
Jakob Bornecrantz4f956882010-07-13 07:40:47 -07001286 PKG_CHECK_MODULES([XORG], [xorg-server >= 1.6.0])
Jakob Bornecrantz683a0992010-03-11 19:23:15 +00001287 PKG_CHECK_MODULES([LIBDRM_XORG], [libdrm >= $LIBDRM_XORG_REQUIRED])
1288 PKG_CHECK_MODULES([LIBKMS_XORG], [libkms >= $LIBKMS_XORG_REQUIRED])
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001289 HAVE_ST_XORG="yes"
Chia-I Wue5d351d2009-12-23 11:18:00 +08001290 ;;
1291 es)
Chia-I Wu63ab2502010-05-05 15:38:02 +08001292 AC_MSG_WARN([state tracker 'es' has been replaced by --enable-gles-overlay])
1293
1294 if test "x$enable_gles_overlay" != xyes; then
1295 if test "x$enable_gles1" != xyes -a "x$enable_gles2" != xyes; then
1296 CORE_DIRS="mapi/es1api mapi/es2api $CORE_DIRS"
1297 fi
Chia-I Wu87cc2da2010-05-12 14:17:17 +08001298 GLES_OVERLAY=1
Chia-I Wu63ab2502010-05-05 15:38:02 +08001299 EGL_CLIENT_APIS="$EGL_CLIENT_APIS "'$(GLESv1_CM_LIB) $(GLESv2_LIB)'
Chia-I Wu296adbd2010-04-26 12:56:44 +08001300 fi
Chia-I Wu63ab2502010-05-05 15:38:02 +08001301 tracker=""
Chia-I Wue5d351d2009-12-23 11:18:00 +08001302 ;;
Chia-I Wu75143ef2010-04-16 18:12:37 +08001303 vega)
1304 CORE_DIRS="$CORE_DIRS mapi/vgapi"
Chia-I Wu874ccd52010-05-04 22:43:05 +08001305 VG_LIB_DEPS="$VG_LIB_DEPS -lpthread"
Chia-I Wu63ab2502010-05-05 15:38:02 +08001306 EGL_CLIENT_APIS="$EGL_CLIENT_APIS "'$(VG_LIB)'
Chia-I Wu75143ef2010-04-16 18:12:37 +08001307 ;;
Chia-I Wue5d351d2009-12-23 11:18:00 +08001308 esac
Chia-I Wu63ab2502010-05-05 15:38:02 +08001309
1310 if test -n "$tracker"; then
1311 test -d "$srcdir/src/gallium/state_trackers/$tracker" || \
1312 AC_MSG_ERROR([state tracker '$tracker' doesn't exist])
1313 if test -n "$state_trackers"; then
1314 state_trackers="$state_trackers $tracker"
1315 else
1316 state_trackers="$tracker"
1317 fi
1318 fi
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001319 done
1320 GALLIUM_STATE_TRACKERS_DIRS="$state_trackers"
1321 ;;
1322esac
1323
Chia-I Wu874ccd52010-05-04 22:43:05 +08001324AC_SUBST([VG_LIB_DEPS])
Chia-I Wu63ab2502010-05-05 15:38:02 +08001325AC_SUBST([EGL_CLIENT_APIS])
1326
1327if test "x$HAVE_ST_EGL" = xyes; then
Chia-I Wud8e0e112010-06-29 14:04:27 +08001328 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS egl"
Chia-I Wucf588ab2010-07-06 14:34:43 +08001329 # define GLX_DIRECT_RENDERING even when the driver is not dri
1330 if test "x$mesa_driver" != xdri -a "x$driglx_direct" = xyes; then
1331 DEFINES="$DEFINES -DGLX_DIRECT_RENDERING"
1332 fi
Chia-I Wu63ab2502010-05-05 15:38:02 +08001333fi
Chia-I Wu874ccd52010-05-04 22:43:05 +08001334
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001335if test "x$HAVE_ST_XORG" = xyes; then
Jakob Bornecrantz683a0992010-03-11 19:23:15 +00001336 PKG_CHECK_MODULES(XEXT, [xextproto >= 7.0.99.1],
1337 HAVE_XEXTPROTO_71="yes"; DEFINES="$DEFINES -DHAVE_XEXTPROTO_71",
1338 HAVE_XEXTPROTO_71="no")
1339fi
1340
Chia-I Wuda39d5d2010-06-17 16:07:46 +08001341AC_ARG_WITH([egl-platforms],
1342 [AS_HELP_STRING([--with-egl-platforms@<:@=DIRS...@:>@],
1343 [comma delimited native platforms libEGL supports, e.g.
1344 "x11,kms" @<:@default=auto@:>@])],
1345 [with_egl_platforms="$withval"],
1346 [with_egl_platforms=yes])
Chia-I Wu49381d62010-01-11 01:23:01 +08001347AC_ARG_WITH([egl-displays],
1348 [AS_HELP_STRING([--with-egl-displays@<:@=DIRS...@:>@],
Chia-I Wuda39d5d2010-06-17 16:07:46 +08001349 [DEPRECATED. Use --with-egl-platforms instead])],
1350 [with_egl_platforms="$withval"])
Chia-I Wu49381d62010-01-11 01:23:01 +08001351
Chia-I Wuda39d5d2010-06-17 16:07:46 +08001352EGL_PLATFORMS=""
1353case "$with_egl_platforms" in
Chia-I Wu49381d62010-01-11 01:23:01 +08001354yes)
1355 if test "x$enable_egl" = xyes && test "x$mesa_driver" != xosmesa; then
Chia-I Wuda39d5d2010-06-17 16:07:46 +08001356 EGL_PLATFORMS="x11"
Chia-I Wu49381d62010-01-11 01:23:01 +08001357 fi
1358 ;;
1359*)
1360 if test "x$enable_egl" != xyes; then
1361 AC_MSG_ERROR([cannot build egl state tracker without EGL library])
1362 fi
1363 # verify the requested driver directories exist
Chia-I Wuda39d5d2010-06-17 16:07:46 +08001364 egl_platforms=`IFS=', '; echo $with_egl_platforms`
1365 for plat in $egl_platforms; do
1366 test -d "$srcdir/src/gallium/state_trackers/egl/$plat" || \
1367 AC_MSG_ERROR([EGL platform '$plat' does't exist])
1368 if test "$plat" = "fbdev"; then
Chia-I Wu8f3e48e2010-06-17 14:10:53 +08001369 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/fbdev"
1370 fi
Chia-I Wu49381d62010-01-11 01:23:01 +08001371 done
Chia-I Wuda39d5d2010-06-17 16:07:46 +08001372 EGL_PLATFORMS="$egl_platforms"
Chia-I Wu49381d62010-01-11 01:23:01 +08001373 ;;
1374esac
Chia-I Wuda39d5d2010-06-17 16:07:46 +08001375AC_SUBST([EGL_PLATFORMS])
Chia-I Wu49381d62010-01-11 01:23:01 +08001376
Chia-I Wu28c3e572010-01-23 20:18:43 +08001377AC_ARG_WITH([egl-driver-dir],
1378 [AS_HELP_STRING([--with-egl-driver-dir=DIR],
1379 [directory for EGL drivers [[default=${libdir}/egl]]])],
1380 [EGL_DRIVER_INSTALL_DIR="$withval"],
1381 [EGL_DRIVER_INSTALL_DIR='${libdir}/egl'])
1382AC_SUBST([EGL_DRIVER_INSTALL_DIR])
1383
Joel Bosveld8acca482009-03-06 08:46:08 +09001384AC_ARG_WITH([xorg-driver-dir],
1385 [AS_HELP_STRING([--with-xorg-driver-dir=DIR],
1386 [Default xorg driver directory[[default=${libdir}/xorg/modules/drivers]]])],
1387 [XORG_DRIVER_INSTALL_DIR="$withval"],
1388 [XORG_DRIVER_INSTALL_DIR="${libdir}/xorg/modules/drivers"])
1389AC_SUBST([XORG_DRIVER_INSTALL_DIR])
1390
Tom Fogal7085dce2009-08-13 19:40:30 -06001391AC_ARG_WITH([max-width],
1392 [AS_HELP_STRING([--with-max-width=N],
1393 [Maximum framebuffer width (4096)])],
1394 [DEFINES="${DEFINES} -DMAX_WIDTH=${withval}";
1395 AS_IF([test "${withval}" -gt "4096"],
1396 [AC_MSG_WARN([Large framebuffer: see s_tritemp.h comments.])])]
1397)
1398AC_ARG_WITH([max-height],
1399 [AS_HELP_STRING([--with-max-height=N],
1400 [Maximum framebuffer height (4096)])],
1401 [DEFINES="${DEFINES} -DMAX_HEIGHT=${withval}";
1402 AS_IF([test "${withval}" -gt "4096"],
1403 [AC_MSG_WARN([Large framebuffer: see s_tritemp.h comments.])])]
1404)
1405
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001406dnl
Dave Airlie81fe1982010-04-22 14:59:29 +10001407dnl Gallium LLVM
1408dnl
1409AC_ARG_ENABLE([gallium-llvm],
1410 [AS_HELP_STRING([--enable-gallium-llvm],
1411 [build gallium LLVM support @<:@default=disabled@:>@])],
1412 [enable_gallium_llvm="$enableval"],
1413 [enable_gallium_llvm=auto])
1414if test "x$enable_gallium_llvm" = xyes; then
Dave Airlie22e8ddc2010-04-25 07:48:48 +10001415 if test "x$LLVM_CONFIG" != xno; then
1416 LLVM_VERSION=`$LLVM_CONFIG --version`
1417 LLVM_CFLAGS=`$LLVM_CONFIG --cflags`
1418 LLVM_LIBS="`$LLVM_CONFIG --libs jit interpreter nativecodegen bitwriter` -lstdc++"
1419
1420 if test "x$HAS_UDIS86" != xno; then
1421 LLVM_LIBS="$LLVM_LIBS -ludis86"
1422 DEFINES="$DEFINES -DHAVE_UDIS86"
Dave Airlie81fe1982010-04-22 14:59:29 +10001423 fi
Dave Airlie22e8ddc2010-04-25 07:48:48 +10001424 LLVM_LDFLAGS=`$LLVM_CONFIG --ldflags`
1425 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS llvmpipe"
Chia-I Wu3ecb8c22010-05-11 12:36:49 +08001426 DEFINES="$DEFINES -DGALLIUM_LLVMPIPE -D__STDC_CONSTANT_MACROS"
Dave Airlie22e8ddc2010-04-25 07:48:48 +10001427 MESA_LLVM=1
1428 else
Dave Airlie81fe1982010-04-22 14:59:29 +10001429 MESA_LLVM=0
Dave Airlie22e8ddc2010-04-25 07:48:48 +10001430 fi
1431else
1432 MESA_LLVM=0
Dave Airlie81fe1982010-04-22 14:59:29 +10001433fi
1434
1435dnl
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001436dnl Gallium helper functions
1437dnl
1438gallium_check_st() {
Chia-I Wud8e0e112010-06-29 14:04:27 +08001439 if test "x$HAVE_ST_DRI" = xyes || test "x$HAVE_ST_XORG" = xyes; then
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001440 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS $1"
1441 fi
1442 if test "x$HAVE_ST_DRI" = xyes && test "x$2" != x; then
1443 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $2"
1444 fi
Chia-I Wud8e0e112010-06-29 14:04:27 +08001445 if test "x$HAVE_ST_XORG" = xyes && test "x$3" != x; then
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001446 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $3"
1447 fi
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001448}
1449
1450
1451dnl
Jakob Bornecrantz60769b22009-11-12 01:28:26 +01001452dnl Gallium SVGA configuration
1453dnl
1454AC_ARG_ENABLE([gallium-svga],
Jakob Bornecrantz5e6fff72009-07-19 09:22:31 +02001455 [AS_HELP_STRING([--enable-gallium-svga],
1456 [build gallium SVGA @<:@default=disabled@:>@])],
Jakob Bornecrantz60769b22009-11-12 01:28:26 +01001457 [enable_gallium_svga="$enableval"],
Jakob Bornecrantz5e6fff72009-07-19 09:22:31 +02001458 [enable_gallium_svga=auto])
Jakob Bornecrantz60769b22009-11-12 01:28:26 +01001459if test "x$enable_gallium_svga" = xyes; then
Xavier Chantryff0987a2010-03-26 11:02:03 +01001460 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS svga"
Chia-I Wud8e0e112010-06-29 14:04:27 +08001461 gallium_check_st "svga/drm" "dri-vmwgfx" "xorg-vmwgfx"
Jakob Bornecrantz5e6fff72009-07-19 09:22:31 +02001462elif test "x$enable_gallium_svga" = xauto; then
1463 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS svga"
Jakob Bornecrantz60769b22009-11-12 01:28:26 +01001464fi
1465
1466dnl
Jakob Bornecrantz7dce4f32010-06-11 13:00:16 +02001467dnl Gallium i915 configuration
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001468dnl
Jakob Bornecrantz7dce4f32010-06-11 13:00:16 +02001469AC_ARG_ENABLE([gallium-i915],
1470 [AS_HELP_STRING([--enable-gallium-i915],
1471 [build gallium i915 @<:@default=disabled@:>@])],
1472 [enable_gallium_i915="$enableval"],
1473 [enable_gallium_i915=auto])
1474if test "x$enable_gallium_i915" = xyes; then
Jakob Bornecrantz44bafca2010-04-17 15:17:33 +01001475 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS i915/sw"
Jakob Bornecrantz7dce4f32010-06-11 13:00:16 +02001476 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS i915"
Chia-I Wud8e0e112010-06-29 14:04:27 +08001477 gallium_check_st "i915/drm" "dri-i915" "xorg-i915"
Jakob Bornecrantz7dce4f32010-06-11 13:00:16 +02001478elif test "x$enable_gallium_i915" = xauto; then
Jakob Bornecrantz44bafca2010-04-17 15:17:33 +01001479 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS i915/sw"
Jakob Bornecrantz7dce4f32010-06-11 13:00:16 +02001480 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS i915"
1481fi
1482
1483dnl
1484dnl Gallium i965 configuration
1485dnl
1486AC_ARG_ENABLE([gallium-i965],
1487 [AS_HELP_STRING([--enable-gallium-i965],
1488 [build gallium i965 @<:@default=disabled@:>@])],
1489 [enable_gallium_i965="$enableval"],
1490 [enable_gallium_i965=auto])
1491if test "x$enable_gallium_i965" = xyes; then
1492 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS i965"
Chia-I Wud8e0e112010-06-29 14:04:27 +08001493 gallium_check_st "i965/drm" "dri-i965" "xorg-i965"
Jakob Bornecrantz7dce4f32010-06-11 13:00:16 +02001494elif test "x$enable_gallium_i965" = xauto; then
1495 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS i965"
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001496fi
1497
1498dnl
1499dnl Gallium Radeon configuration
1500dnl
1501AC_ARG_ENABLE([gallium-radeon],
1502 [AS_HELP_STRING([--enable-gallium-radeon],
1503 [build gallium radeon @<:@default=disabled@:>@])],
1504 [enable_gallium_radeon="$enableval"],
Jakob Bornecrantz877cadb2010-01-14 22:51:25 +00001505 [enable_gallium_radeon=auto])
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001506if test "x$enable_gallium_radeon" = xyes; then
Jakob Bornecrantzd67bd602009-02-20 11:03:18 +00001507 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS r300"
Dave Airlie37f06542010-08-22 17:28:20 +10001508 gallium_check_st "radeon/drm" "dri-r300" "xorg-radeon"
Jakob Bornecrantz877cadb2010-01-14 22:51:25 +00001509elif test "x$enable_gallium_radeon" = xauto; then
1510 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS r300"
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001511fi
1512
1513dnl
Jakob Bornecrantzaeee5262010-05-13 20:29:18 +01001514dnl Gallium Radeon r600g configuration
1515dnl
1516AC_ARG_ENABLE([gallium-r600],
1517 [AS_HELP_STRING([--enable-gallium-r600],
1518 [build gallium radeon @<:@default=disabled@:>@])],
1519 [enable_gallium_r600="$enableval"],
1520 [enable_gallium_r600=auto])
1521if test "x$enable_gallium_r600" = xyes; then
1522 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS r600"
1523 gallium_check_st "r600/drm" "dri-r600"
1524fi
1525
1526dnl
Thierry Vignaud1402ea82009-09-14 11:48:51 -06001527dnl Gallium Nouveau configuration
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001528dnl
1529AC_ARG_ENABLE([gallium-nouveau],
1530 [AS_HELP_STRING([--enable-gallium-nouveau],
1531 [build gallium nouveau @<:@default=disabled@:>@])],
1532 [enable_gallium_nouveau="$enableval"],
1533 [enable_gallium_nouveau=no])
1534if test "x$enable_gallium_nouveau" = xyes; then
Luca Barbierif9d09a22010-02-21 15:13:12 +01001535 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS nouveau nvfx nv50"
Chia-I Wud8e0e112010-06-29 14:04:27 +08001536 gallium_check_st "nouveau/drm" "dri-nouveau" "xorg-nouveau"
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001537fi
1538
Chia-I Wua1306f42010-01-22 15:51:51 +08001539dnl
1540dnl Gallium swrast configuration
1541dnl
1542AC_ARG_ENABLE([gallium-swrast],
1543 [AS_HELP_STRING([--enable-gallium-swrast],
Jakob Bornecrantzf5ba2cd2010-03-24 10:58:45 +01001544 [build gallium swrast @<:@default=auto@:>@])],
Chia-I Wua1306f42010-01-22 15:51:51 +08001545 [enable_gallium_swrast="$enableval"],
1546 [enable_gallium_swrast=auto])
George Sapountzis7b333292010-03-25 17:01:54 +02001547if test "x$enable_gallium_swrast" = xyes || test "x$enable_gallium_swrast" = xauto; then
Jakob Bornecrantz5b1fc142010-03-25 18:29:51 +01001548 if test "x$HAVE_ST_DRI" = xyes; then
George Sapountzis7b333292010-03-25 17:01:54 +02001549 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS dri-swrast"
Jakob Bornecrantzf5ba2cd2010-03-24 10:58:45 +01001550 fi
Chia-I Wua1306f42010-01-22 15:51:51 +08001551fi
1552
Chia-I Wu99a37ed2010-01-05 17:39:05 +08001553dnl prepend CORE_DIRS to SRC_DIRS
1554SRC_DIRS="$CORE_DIRS $SRC_DIRS"
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001555
Dan Nicholsondca1b792007-10-23 09:25:58 -07001556dnl Restore LDFLAGS and CPPFLAGS
1557LDFLAGS="$_SAVE_LDFLAGS"
1558CPPFLAGS="$_SAVE_CPPFLAGS"
1559
1560dnl Substitute the config
Dan Nicholsonf64d6fe2007-12-12 17:57:45 -08001561AC_CONFIG_FILES([configs/autoconf])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001562
Dan Nicholsonaab38cf2007-12-11 08:21:51 -08001563dnl Replace the configs/current symlink
Dan Nicholsone14ebbc2008-05-06 11:28:43 -07001564AC_CONFIG_COMMANDS([configs],[
Dan Nicholsonaab38cf2007-12-11 08:21:51 -08001565if test -f configs/current || test -L configs/current; then
1566 rm -f configs/current
1567fi
1568ln -s autoconf configs/current
Dan Nicholsone14ebbc2008-05-06 11:28:43 -07001569])
1570
1571AC_OUTPUT
Dan Nicholsonaab38cf2007-12-11 08:21:51 -08001572
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001573dnl
1574dnl Output some configuration info for the user
1575dnl
1576echo ""
1577echo " prefix: $prefix"
1578echo " exec_prefix: $exec_prefix"
1579echo " libdir: $libdir"
Dan Nicholson11ac5b22008-07-03 09:17:44 -07001580echo " includedir: $includedir"
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001581
1582dnl Driver info
1583echo ""
1584echo " Driver: $mesa_driver"
Dan Nicholson544ab202007-12-30 08:41:53 -08001585if echo "$DRIVER_DIRS" | grep 'osmesa' >/dev/null 2>&1; then
1586 echo " OSMesa: lib$OSMESA_LIB"
1587else
1588 echo " OSMesa: no"
1589fi
1590if test "$mesa_driver" = dri; then
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001591 # cleanup the drivers var
1592 dri_dirs=`echo $DRI_DIRS | $SED 's/^ *//;s/ */ /;s/ *$//'`
Florent Thoumieb5095ab2008-07-28 14:44:43 +01001593if test "x$DRI_DIRS" = x; then
1594 echo " DRI drivers: no"
1595else
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001596 echo " DRI drivers: $dri_dirs"
Florent Thoumieb5095ab2008-07-28 14:44:43 +01001597fi
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001598 echo " DRI driver dir: $DRI_DRIVER_INSTALL_DIR"
Dan Nicholson544ab202007-12-30 08:41:53 -08001599fi
RALOVICH, Kristóf5f19f5c2008-11-04 11:53:32 +01001600echo " Use XCB: $enable_xcb"
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001601
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001602echo ""
Eric Anholt1a8b1272010-05-21 12:17:24 -07001603if test "x$MESA_LLVM" = x1; then
Jakob Bornecrantzfe0fe672010-04-28 13:38:58 +01001604 echo " llvm: yes"
1605 echo " llvm-config: $LLVM_CONFIG"
1606 echo " llvm-version: $LLVM_VERSION"
1607else
1608 echo " llvm: no"
1609fi
1610
1611echo ""
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001612if echo "$SRC_DIRS" | grep 'gallium' >/dev/null 2>&1; then
1613 echo " Gallium: yes"
1614 echo " Gallium dirs: $GALLIUM_DIRS"
Keith Whitwell51bff092010-03-11 14:43:00 +00001615 echo " Target dirs: $GALLIUM_TARGET_DIRS"
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001616 echo " Winsys dirs: $GALLIUM_WINSYS_DIRS"
Jakob Bornecrantzd67bd602009-02-20 11:03:18 +00001617 echo " Driver dirs: $GALLIUM_DRIVERS_DIRS"
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001618 echo " Trackers dirs: $GALLIUM_STATE_TRACKERS_DIRS"
Chia-I Wu63ab2502010-05-05 15:38:02 +08001619 if test "x$HAVE_ST_EGL" = xyes; then
1620 echo " EGL client APIs: $EGL_CLIENT_APIS"
1621 fi
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001622else
1623 echo " Gallium: no"
1624fi
1625
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001626dnl Libraries
1627echo ""
1628echo " Shared libs: $enable_shared"
1629echo " Static libs: $enable_static"
Kristian Høgsberg42fa0092010-02-03 10:18:28 -05001630if test "$enable_egl" = yes; then
1631 echo " EGL: $EGL_DRIVERS_DIRS"
Chia-I Wuda39d5d2010-06-17 16:07:46 +08001632 echo " EGL platforms: $EGL_PLATFORMS"
Kristian Høgsberg42fa0092010-02-03 10:18:28 -05001633else
1634 echo " EGL: no"
1635fi
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001636echo " GLU: $enable_glu"
Dan Nicholson776c60d2008-07-18 07:40:41 -07001637echo " GLw: $enable_glw (Motif: $enable_motif)"
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001638echo " glut: $enable_glut"
1639
Dan Nicholson16a07fb2007-12-12 09:12:15 -08001640dnl Compiler options
1641# cleanup the CFLAGS/CXXFLAGS/DEFINES vars
1642cflags=`echo $CFLAGS $OPT_FLAGS $PIC_FLAGS $ARCH_FLAGS | \
1643 $SED 's/^ *//;s/ */ /;s/ *$//'`
1644cxxflags=`echo $CXXFLAGS $OPT_FLAGS $PIC_FLAGS $ARCH_FLAGS | \
1645 $SED 's/^ *//;s/ */ /;s/ *$//'`
1646defines=`echo $DEFINES $ASM_FLAGS | $SED 's/^ *//;s/ */ /;s/ *$//'`
1647echo ""
1648echo " CFLAGS: $cflags"
1649echo " CXXFLAGS: $cxxflags"
1650echo " Macros: $defines"
1651
Dan Nicholsondca1b792007-10-23 09:25:58 -07001652echo ""
Dan Nicholsonb6459422008-03-24 10:01:50 -07001653echo " Run '${MAKE-make}' to build Mesa"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001654echo ""