blob: 96195976a0efa29d4a4f9a5da41a1cae14d3c9e1 [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
Ian Romanick9aa3aa72010-03-03 15:59:37 -080051dnl If we're using GCC, make sure that it is at least version 3.3.0. Older
52dnl versions are explictly not supported.
53if test "x$GCC" = xyes; then
54 AC_MSG_CHECKING([whether gcc version is sufficient])
55 major=0
56 minor=0
57
58 GCC_VERSION=`$CC -dumpversion`
59 if test $? -eq 0; then
60 major=`echo $GCC_VERSION | cut -d. -f1`
61 minor=`echo $GCC_VERSION | cut -d. -f1`
62 fi
63
64 if test $major -lt 3 -o $major -eq 3 -a $minor -lt 3 ; then
65 AC_MSG_RESULT([no])
66 AC_MSG_ERROR([If using GCC, version 3.3.0 or later is required.])
67 else
68 AC_MSG_RESULT([yes])
69 fi
70fi
71
72
Dan Nicholsondb7fc632008-03-07 11:48:09 -080073MKDEP_OPTIONS=-fdepend
Kristian Høgsbergbcecea62008-02-25 18:50:26 -050074dnl Ask gcc where it's keeping its secret headers
75if test "x$GCC" = xyes; then
Dan Nicholsona3d223f2009-01-30 10:52:09 -080076 for dir in include include-fixed; do
77 GCC_INCLUDES=`$CC -print-file-name=$dir`
78 if test "x$GCC_INCLUDES" != x && \
79 test "$GCC_INCLUDES" != "$dir" && \
80 test -d "$GCC_INCLUDES"; then
81 MKDEP_OPTIONS="$MKDEP_OPTIONS -I$GCC_INCLUDES"
82 fi
83 done
Kristian Høgsbergbcecea62008-02-25 18:50:26 -050084fi
Dan Nicholson297e16c2008-05-05 15:42:53 -070085AC_SUBST([MKDEP_OPTIONS])
Kristian Høgsbergbcecea62008-02-25 18:50:26 -050086
Dan Nicholson41b00702007-12-12 08:48:30 -080087dnl Make sure the pkg-config macros are defined
Dan Nicholson356f3112009-04-29 06:49:27 -070088m4_ifndef([PKG_PROG_PKG_CONFIG],
89 [m4_fatal([Could not locate the pkg-config autoconf macros.
90 These are usually located in /usr/share/aclocal/pkg.m4. If your macros
91 are in a different location, try setting the environment variable
92 ACLOCAL="aclocal -I/other/macro/dir" before running autoreconf.])])
Dan Nicholsondca1b792007-10-23 09:25:58 -070093PKG_PROG_PKG_CONFIG()
94
95dnl LIB_DIR - library basename
96LIB_DIR=`echo $libdir | $SED 's%.*/%%'`
Dan Nicholson297e16c2008-05-05 15:42:53 -070097AC_SUBST([LIB_DIR])
Dan Nicholsondca1b792007-10-23 09:25:58 -070098
99dnl Cache LDFLAGS so we can add EXTRA_LIB_PATH and restore it later
100_SAVE_LDFLAGS="$LDFLAGS"
Dan Nicholson297e16c2008-05-05 15:42:53 -0700101AC_ARG_VAR([EXTRA_LIB_PATH],[Extra -L paths for the linker])
102AC_SUBST([EXTRA_LIB_PATH])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700103
104dnl Cache CPPFLAGS so we can add *_INCLUDES and restore it later
105_SAVE_CPPFLAGS="$CPPFLAGS"
Dan Nicholson297e16c2008-05-05 15:42:53 -0700106AC_ARG_VAR([X11_INCLUDES],[Extra -I paths for X11 headers])
107AC_SUBST([X11_INCLUDES])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700108
109dnl Compiler macros
110DEFINES=""
Dan Nicholson297e16c2008-05-05 15:42:53 -0700111AC_SUBST([DEFINES])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700112case "$host_os" in
Samuel Thibaultd18dd6a2009-04-23 05:43:22 -0700113linux*|*-gnu*|gnu*)
Dan Nicholson29f603a2009-01-12 11:10:31 -0800114 DEFINES="$DEFINES -D_GNU_SOURCE -DPTHREADS"
Dan Nicholsondca1b792007-10-23 09:25:58 -0700115 ;;
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -0700116solaris*)
117 DEFINES="$DEFINES -DPTHREADS -DSVR4"
118 ;;
Brian Paul97988902010-02-18 12:46:12 -0700119cygwin*)
120 DEFINES="$DEFINES -DPTHREADS"
121 ;;
Dan Nicholsondca1b792007-10-23 09:25:58 -0700122esac
123
124dnl Add flags for gcc and g++
125if test "x$GCC" = xyes; then
Alan Coopersmithadda7f32010-01-16 18:34:23 -0800126 CFLAGS="$CFLAGS -Wall -Wmissing-prototypes -std=c99 -ffast-math"
127
128 # Enable -fvisibility=hidden if using a gcc that supports it
129 save_CFLAGS="$CFLAGS"
Alan Coopersmithf8107a42010-01-21 16:42:58 -0800130 AC_MSG_CHECKING([whether $CC supports -fvisibility=hidden])
Alan Coopersmithadda7f32010-01-16 18:34:23 -0800131 CFLAGS="$CFLAGS -fvisibility=hidden"
132 AC_LINK_IFELSE([AC_LANG_PROGRAM()], AC_MSG_RESULT([yes]),
133 [CFLAGS="$save_CFLAGS" ; AC_MSG_RESULT([no])]);
Dan Nicholson0c275b62008-01-15 22:52:25 -0800134
135 # Work around aliasing bugs - developers should comment this out
136 CFLAGS="$CFLAGS -fno-strict-aliasing"
Dan Nicholsondca1b792007-10-23 09:25:58 -0700137fi
138if test "x$GXX" = xyes; then
139 CXXFLAGS="$CXXFLAGS -Wall"
Dan Nicholson0c275b62008-01-15 22:52:25 -0800140
141 # Work around aliasing bugs - developers should comment this out
142 CXXFLAGS="$CXXFLAGS -fno-strict-aliasing"
Dan Nicholsondca1b792007-10-23 09:25:58 -0700143fi
144
145dnl These should be unnecessary, but let the user set them if they want
Dan Nicholson297e16c2008-05-05 15:42:53 -0700146AC_ARG_VAR([OPT_FLAGS], [Additional optimization flags for the compiler.
Dan Nicholsondca1b792007-10-23 09:25:58 -0700147 Default is to use CFLAGS.])
Dan Nicholson297e16c2008-05-05 15:42:53 -0700148AC_ARG_VAR([ARCH_FLAGS], [Additional architecture specific flags for the
Dan Nicholsondca1b792007-10-23 09:25:58 -0700149 compiler. Default is to use CFLAGS.])
Dan Nicholson297e16c2008-05-05 15:42:53 -0700150AC_SUBST([OPT_FLAGS])
151AC_SUBST([ARCH_FLAGS])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700152
153dnl
Dan Nicholsonab57cba2007-12-26 11:12:29 -0600154dnl Hacks to enable 32 or 64 bit build
155dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -0700156AC_ARG_ENABLE([32-bit],
Dan Nicholsonab57cba2007-12-26 11:12:29 -0600157 [AS_HELP_STRING([--enable-32-bit],
158 [build 32-bit libraries @<:@default=auto@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700159 [enable_32bit="$enableval"],
160 [enable_32bit=auto]
Dan Nicholsonab57cba2007-12-26 11:12:29 -0600161)
162if test "x$enable_32bit" = xyes; then
163 if test "x$GCC" = xyes; then
164 CFLAGS="$CFLAGS -m32"
Marc Dietrichc705e722009-08-31 08:56:33 -0700165 ARCH_FLAGS="$ARCH_FLAGS -m32"
Dan Nicholsonab57cba2007-12-26 11:12:29 -0600166 fi
167 if test "x$GXX" = xyes; then
168 CXXFLAGS="$CXXFLAGS -m32"
169 fi
170fi
Dan Nicholson297e16c2008-05-05 15:42:53 -0700171AC_ARG_ENABLE([64-bit],
Dan Nicholsonab57cba2007-12-26 11:12:29 -0600172 [AS_HELP_STRING([--enable-64-bit],
173 [build 64-bit libraries @<:@default=auto@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700174 [enable_64bit="$enableval"],
175 [enable_64bit=auto]
Dan Nicholsonab57cba2007-12-26 11:12:29 -0600176)
177if test "x$enable_64bit" = xyes; then
178 if test "x$GCC" = xyes; then
179 CFLAGS="$CFLAGS -m64"
180 fi
181 if test "x$GXX" = xyes; then
182 CXXFLAGS="$CXXFLAGS -m64"
183 fi
184fi
185
186dnl
Dan Nicholson88586332007-11-15 08:59:57 -0800187dnl shared/static libraries, mimic libtool options
188dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -0700189AC_ARG_ENABLE([static],
Dan Nicholson88586332007-11-15 08:59:57 -0800190 [AS_HELP_STRING([--enable-static],
Dan Nicholson79ad4582007-12-07 19:11:01 -0800191 [build static libraries @<:@default=disabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700192 [enable_static="$enableval"],
193 [enable_static=no]
Dan Nicholson88586332007-11-15 08:59:57 -0800194)
195case "x$enable_static" in
196xyes|xno ) ;;
197x ) enable_static=no ;;
198* )
199 AC_MSG_ERROR([Static library option '$enable_static' is not a valid])
200 ;;
201esac
Dan Nicholson297e16c2008-05-05 15:42:53 -0700202AC_ARG_ENABLE([shared],
Dan Nicholson88586332007-11-15 08:59:57 -0800203 [AS_HELP_STRING([--disable-shared],
Dan Nicholson79ad4582007-12-07 19:11:01 -0800204 [build shared libraries @<:@default=enabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700205 [enable_shared="$enableval"],
206 [enable_shared=yes]
Dan Nicholson88586332007-11-15 08:59:57 -0800207)
208case "x$enable_shared" in
209xyes|xno ) ;;
210x ) enable_shared=yes ;;
211* )
212 AC_MSG_ERROR([Shared library option '$enable_shared' is not a valid])
213 ;;
214esac
215
216dnl Can't have static and shared libraries, default to static if user
217dnl explicitly requested. If both disabled, set to static since shared
218dnl was explicitly requirested.
219case "x$enable_static$enable_shared" in
220xyesyes )
221 AC_MSG_WARN([Can't build static and shared libraries, disabling shared])
222 enable_shared=no
223 ;;
224xnono )
225 AC_MSG_WARN([Can't disable both static and shared libraries, enabling static])
226 enable_static=yes
227 ;;
228esac
229
230dnl
231dnl mklib options
232dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -0700233AC_ARG_VAR([MKLIB_OPTIONS],[Options for the Mesa library script, mklib])
Dan Nicholson88586332007-11-15 08:59:57 -0800234if test "$enable_static" = yes; then
235 MKLIB_OPTIONS="$MKLIB_OPTIONS -static"
236fi
Dan Nicholson297e16c2008-05-05 15:42:53 -0700237AC_SUBST([MKLIB_OPTIONS])
Dan Nicholson88586332007-11-15 08:59:57 -0800238
Dan Nicholson23656c42007-12-12 09:02:31 -0800239dnl
240dnl other compiler options
241dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -0700242AC_ARG_ENABLE([debug],
Dan Nicholson23656c42007-12-12 09:02:31 -0800243 [AS_HELP_STRING([--enable-debug],
244 [use debug compiler flags and macros @<:@default=disabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700245 [enable_debug="$enableval"],
246 [enable_debug=no]
Dan Nicholson23656c42007-12-12 09:02:31 -0800247)
248if test "x$enable_debug" = xyes; then
249 DEFINES="$DEFINES -DDEBUG"
250 if test "x$GCC" = xyes; then
251 CFLAGS="$CFLAGS -g"
252 fi
253 if test "x$GXX" = xyes; then
254 CXXFLAGS="$CXXFLAGS -g"
255 fi
256fi
Dan Nicholson88586332007-11-15 08:59:57 -0800257
258dnl
Dan Nicholsondca1b792007-10-23 09:25:58 -0700259dnl library names
260dnl
Dan Nicholson88586332007-11-15 08:59:57 -0800261if test "$enable_static" = yes; then
Dan Nicholson8217f242009-02-11 15:16:00 -0800262 LIB_EXTENSION='a'
Dan Nicholson88586332007-11-15 08:59:57 -0800263else
Siddhartha Chaudhuri1a46c8a2009-02-09 07:58:38 -0700264 case "$host_os" in
265 darwin* )
266 LIB_EXTENSION='dylib' ;;
Jon TURNEY7eed6ab2009-06-08 16:02:18 +0100267 cygwin* )
Chia-I Wu70ae8bf2010-05-18 10:22:57 -0600268 LIB_EXTENSION='dll.a' ;;
Tom Fogal9282edf2009-10-13 10:55:33 -0700269 aix* )
270 LIB_EXTENSION='a' ;;
Siddhartha Chaudhuri1a46c8a2009-02-09 07:58:38 -0700271 * )
272 LIB_EXTENSION='so' ;;
273 esac
Dan Nicholson88586332007-11-15 08:59:57 -0800274fi
Dan Nicholson8217f242009-02-11 15:16:00 -0800275
276GL_LIB_NAME='lib$(GL_LIB).'${LIB_EXTENSION}
277GLU_LIB_NAME='lib$(GLU_LIB).'${LIB_EXTENSION}
278GLUT_LIB_NAME='lib$(GLUT_LIB).'${LIB_EXTENSION}
279GLW_LIB_NAME='lib$(GLW_LIB).'${LIB_EXTENSION}
280OSMESA_LIB_NAME='lib$(OSMESA_LIB).'${LIB_EXTENSION}
Chia-I Wud4c1ee02009-12-21 11:13:18 +0800281EGL_LIB_NAME='lib$(EGL_LIB).'${LIB_EXTENSION}
Kristian Høgsberg9339c122010-03-05 19:01:43 -0500282GLESv1_CM_LIB_NAME='lib$(GLESv1_CM_LIB).'${LIB_EXTENSION}
283GLESv2_LIB_NAME='lib$(GLESv2_LIB).'${LIB_EXTENSION}
Chia-I Wu874ccd52010-05-04 22:43:05 +0800284VG_LIB_NAME='lib$(VG_LIB).'${LIB_EXTENSION}
Dan Nicholson8217f242009-02-11 15:16:00 -0800285
286GL_LIB_GLOB='lib$(GL_LIB).*'${LIB_EXTENSION}'*'
287GLU_LIB_GLOB='lib$(GLU_LIB).*'${LIB_EXTENSION}'*'
288GLUT_LIB_GLOB='lib$(GLUT_LIB).*'${LIB_EXTENSION}'*'
289GLW_LIB_GLOB='lib$(GLW_LIB).*'${LIB_EXTENSION}'*'
290OSMESA_LIB_GLOB='lib$(OSMESA_LIB).*'${LIB_EXTENSION}'*'
Chia-I Wud4c1ee02009-12-21 11:13:18 +0800291EGL_LIB_GLOB='lib$(EGL_LIB).*'${LIB_EXTENSION}'*'
Kristian Høgsberg9339c122010-03-05 19:01:43 -0500292GLESv1_CM_LIB_GLOB='lib$(GLESv1_CM_LIB).*'${LIB_EXTENSION}'*'
293GLESv2_LIB_GLOB='lib$(GLESv2_LIB).*'${LIB_EXTENSION}'*'
Chia-I Wu874ccd52010-05-04 22:43:05 +0800294VG_LIB_GLOB='lib$(VG_LIB).*'${LIB_EXTENSION}'*'
Dan Nicholson8217f242009-02-11 15:16:00 -0800295
Dan Nicholson297e16c2008-05-05 15:42:53 -0700296AC_SUBST([GL_LIB_NAME])
297AC_SUBST([GLU_LIB_NAME])
298AC_SUBST([GLUT_LIB_NAME])
299AC_SUBST([GLW_LIB_NAME])
300AC_SUBST([OSMESA_LIB_NAME])
Chia-I Wud4c1ee02009-12-21 11:13:18 +0800301AC_SUBST([EGL_LIB_NAME])
Kristian Høgsberg9339c122010-03-05 19:01:43 -0500302AC_SUBST([GLESv1_CM_LIB_NAME])
303AC_SUBST([GLESv2_LIB_NAME])
Chia-I Wu874ccd52010-05-04 22:43:05 +0800304AC_SUBST([VG_LIB_NAME])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700305
Siddhartha Chaudhuri1a46c8a2009-02-09 07:58:38 -0700306AC_SUBST([GL_LIB_GLOB])
307AC_SUBST([GLU_LIB_GLOB])
308AC_SUBST([GLUT_LIB_GLOB])
309AC_SUBST([GLW_LIB_GLOB])
310AC_SUBST([OSMESA_LIB_GLOB])
Chia-I Wud4c1ee02009-12-21 11:13:18 +0800311AC_SUBST([EGL_LIB_GLOB])
Kristian Høgsberg9339c122010-03-05 19:01:43 -0500312AC_SUBST([GLESv1_CM_LIB_GLOB])
313AC_SUBST([GLESv2_LIB_GLOB])
Chia-I Wu874ccd52010-05-04 22:43:05 +0800314AC_SUBST([VG_LIB_GLOB])
Siddhartha Chaudhuri1a46c8a2009-02-09 07:58:38 -0700315
Dan Nicholsondca1b792007-10-23 09:25:58 -0700316dnl
Dan Nicholson871125a2008-06-04 13:00:35 -0700317dnl Arch/platform-specific settings
318dnl
319AC_ARG_ENABLE([asm],
320 [AS_HELP_STRING([--disable-asm],
321 [disable assembly usage @<:@default=enabled on supported plaforms@:>@])],
322 [enable_asm="$enableval"],
323 [enable_asm=yes]
324)
325asm_arch=""
326ASM_FLAGS=""
Dan Nicholsonc5bae142009-02-11 11:04:29 -0800327MESA_ASM_SOURCES=""
328GLAPI_ASM_SOURCES=""
Dan Nicholson871125a2008-06-04 13:00:35 -0700329AC_MSG_CHECKING([whether to enable assembly])
330test "x$enable_asm" = xno && AC_MSG_RESULT([no])
331# disable if cross compiling on x86/x86_64 since we must run gen_matypes
332if test "x$enable_asm" = xyes && test "x$cross_compiling" = xyes; then
333 case "$host_cpu" in
334 i?86 | x86_64)
335 enable_asm=no
336 AC_MSG_RESULT([no, cross compiling])
337 ;;
338 esac
339fi
340# check for supported arches
341if test "x$enable_asm" = xyes; then
342 case "$host_cpu" in
343 i?86)
344 case "$host_os" in
Julien Cristau98fcdf32008-10-28 18:56:05 +0100345 linux* | *freebsd* | dragonfly*)
Dan Nicholson871125a2008-06-04 13:00:35 -0700346 test "x$enable_64bit" = xyes && asm_arch=x86_64 || asm_arch=x86
347 ;;
348 esac
349 ;;
350 x86_64)
351 case "$host_os" in
Julien Cristau98fcdf32008-10-28 18:56:05 +0100352 linux* | *freebsd* | dragonfly*)
Dan Nicholson871125a2008-06-04 13:00:35 -0700353 test "x$enable_32bit" = xyes && asm_arch=x86 || asm_arch=x86_64
354 ;;
355 esac
356 ;;
357 powerpc)
358 case "$host_os" in
359 linux*)
360 asm_arch=ppc
361 ;;
362 esac
363 ;;
David S. Miller857ac1e2009-02-26 05:35:15 -0800364 sparc*)
365 case "$host_os" in
366 linux*)
367 asm_arch=sparc
368 ;;
369 esac
370 ;;
Dan Nicholson871125a2008-06-04 13:00:35 -0700371 esac
372
373 case "$asm_arch" in
374 x86)
Dan Nicholson61e925f2009-02-11 10:42:34 -0800375 ASM_FLAGS="-DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_3DNOW_ASM -DUSE_SSE_ASM"
Dan Nicholsonc5bae142009-02-11 11:04:29 -0800376 MESA_ASM_SOURCES='$(X86_SOURCES)'
377 GLAPI_ASM_SOURCES='$(X86_API)'
Dan Nicholson871125a2008-06-04 13:00:35 -0700378 AC_MSG_RESULT([yes, x86])
379 ;;
380 x86_64)
381 ASM_FLAGS="-DUSE_X86_64_ASM"
Dan Nicholsonc5bae142009-02-11 11:04:29 -0800382 MESA_ASM_SOURCES='$(X86-64_SOURCES)'
383 GLAPI_ASM_SOURCES='$(X86-64_API)'
Dan Nicholson871125a2008-06-04 13:00:35 -0700384 AC_MSG_RESULT([yes, x86_64])
385 ;;
386 ppc)
387 ASM_FLAGS="-DUSE_PPC_ASM -DUSE_VMX_ASM"
Dan Nicholsonc5bae142009-02-11 11:04:29 -0800388 MESA_ASM_SOURCES='$(PPC_SOURCES)'
Dan Nicholson871125a2008-06-04 13:00:35 -0700389 AC_MSG_RESULT([yes, ppc])
390 ;;
David S. Miller857ac1e2009-02-26 05:35:15 -0800391 sparc)
392 ASM_FLAGS="-DUSE_SPARC_ASM"
393 MESA_ASM_SOURCES='$(SPARC_SOURCES)'
394 GLAPI_ASM_SOURCES='$(SPARC_API)'
395 AC_MSG_RESULT([yes, sparc])
396 ;;
Dan Nicholson871125a2008-06-04 13:00:35 -0700397 *)
398 AC_MSG_RESULT([no, platform not supported])
399 ;;
400 esac
401fi
402AC_SUBST([ASM_FLAGS])
Dan Nicholsonc5bae142009-02-11 11:04:29 -0800403AC_SUBST([MESA_ASM_SOURCES])
404AC_SUBST([GLAPI_ASM_SOURCES])
Dan Nicholson871125a2008-06-04 13:00:35 -0700405
406dnl PIC code macro
407MESA_PIC_FLAGS
408
409dnl Check to see if dlopen is in default libraries (like Solaris, which
410dnl has it in libc), or if libdl is needed to get it.
411AC_CHECK_FUNC([dlopen], [],
412 [AC_CHECK_LIB([dl], [dlopen], [DLOPEN_LIBS="-ldl"])])
Chia-I Wu08f4bc02010-07-16 20:09:29 +0800413AC_SUBST([DLOPEN_LIBS])
Dan Nicholson871125a2008-06-04 13:00:35 -0700414
Dan Nicholson985e1cd2008-06-04 13:17:06 -0700415dnl See if posix_memalign is available
416AC_CHECK_FUNC([posix_memalign], [DEFINES="$DEFINES -DHAVE_POSIX_MEMALIGN"])
417
Dan Nicholson871125a2008-06-04 13:00:35 -0700418dnl SELinux awareness.
419AC_ARG_ENABLE([selinux],
420 [AS_HELP_STRING([--enable-selinux],
421 [Build SELinux-aware Mesa @<:@default=disabled@:>@])],
422 [MESA_SELINUX="$enableval"],
423 [MESA_SELINUX=no])
424if test "x$enable_selinux" = "xyes"; then
425 AC_CHECK_HEADER([selinux/selinux.h],[],
426 [AC_MSG_ERROR([SELinux headers not found])])
427 AC_CHECK_LIB([selinux],[is_selinux_enabled],[],
428 [AC_MSG_ERROR([SELinux library not found])])
429 SELINUX_LIBS="-lselinux"
430 DEFINES="$DEFINES -DMESA_SELINUX"
431fi
432
Dan Nicholson871125a2008-06-04 13:00:35 -0700433dnl
Dan Nicholsona1307182007-12-12 17:49:49 -0800434dnl Driver configuration. Options are xlib, dri and osmesa right now.
Kristian Høgsberg43875802010-02-25 15:49:18 -0500435dnl More later: fbdev, ...
Dan Nicholson44d99142007-12-05 18:47:01 -0800436dnl
Eric Anholt711222b2008-04-18 15:03:01 -0700437default_driver="xlib"
438
439case "$host_os" in
440linux*)
441 case "$host_cpu" in
David S. Miller32dc28a2009-02-24 20:06:05 -0700442 i*86|x86_64|powerpc*|sparc*) default_driver="dri";;
Eric Anholt711222b2008-04-18 15:03:01 -0700443 esac
444 ;;
Julien Cristau98fcdf32008-10-28 18:56:05 +0100445*freebsd* | dragonfly*)
Eric Anholt711222b2008-04-18 15:03:01 -0700446 case "$host_cpu" in
Robert Noland48f05432009-04-10 11:41:27 -0500447 i*86|x86_64|powerpc*|sparc*) default_driver="dri";;
Eric Anholt711222b2008-04-18 15:03:01 -0700448 esac
449 ;;
450esac
451
Dan Nicholson297e16c2008-05-05 15:42:53 -0700452AC_ARG_WITH([driver],
Dan Nicholson44d99142007-12-05 18:47:01 -0800453 [AS_HELP_STRING([--with-driver=DRIVER],
Eric Anholt711222b2008-04-18 15:03:01 -0700454 [driver for Mesa: xlib,dri,osmesa @<:@default=dri when available, or xlib@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700455 [mesa_driver="$withval"],
456 [mesa_driver="$default_driver"])
Dan Nicholson44d99142007-12-05 18:47:01 -0800457dnl Check for valid option
458case "x$mesa_driver" in
Dan Nicholsona1307182007-12-12 17:49:49 -0800459xxlib|xdri|xosmesa)
Dan Nicholson44d99142007-12-05 18:47:01 -0800460 ;;
461*)
462 AC_MSG_ERROR([Driver '$mesa_driver' is not a valid option])
463 ;;
464esac
465
466dnl
467dnl Driver specific build directories
Dan Nicholsondca1b792007-10-23 09:25:58 -0700468dnl
Chia-I Wu99a37ed2010-01-05 17:39:05 +0800469
470dnl this variable will be prepended to SRC_DIRS and is not exported
Chia-I Wu296adbd2010-04-26 12:56:44 +0800471CORE_DIRS="mapi/glapi glsl mesa"
Chia-I Wu99a37ed2010-01-05 17:39:05 +0800472
Jakob Bornecrantz05281062010-06-05 13:33:58 +0200473SRC_DIRS=""
Dan Nicholsondca1b792007-10-23 09:25:58 -0700474GLU_DIRS="sgi"
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100475GALLIUM_DIRS="auxiliary drivers state_trackers"
Keith Whitwell51bff092010-03-11 14:43:00 +0000476GALLIUM_TARGET_DIRS=""
Jakob Bornecrantzc9f98672010-03-16 13:54:18 +0000477GALLIUM_WINSYS_DIRS="sw"
Corbin Simpson25609782010-06-22 22:00:43 -0700478GALLIUM_DRIVERS_DIRS="softpipe failover galahad trace rbug identity"
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100479GALLIUM_STATE_TRACKERS_DIRS=""
480
Dan Nicholson44d99142007-12-05 18:47:01 -0800481case "$mesa_driver" in
Dan Nicholsona1307182007-12-12 17:49:49 -0800482xlib)
Dan Nicholson44d99142007-12-05 18:47:01 -0800483 DRIVER_DIRS="x11"
Jakob Bornecrantzc9f98672010-03-16 13:54:18 +0000484 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/xlib"
Keith Whitwell51bff092010-03-11 14:43:00 +0000485 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS libgl-xlib"
Dan Nicholson44d99142007-12-05 18:47:01 -0800486 ;;
487dri)
Kristian Høgsberg6e8897f2010-02-09 09:58:36 -0500488 SRC_DIRS="$SRC_DIRS glx"
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100489 DRIVER_DIRS="dri"
Jakob Bornecrantz23a915e2010-06-23 03:31:18 +0200490 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/xlib sw/dri"
Dan Nicholson44d99142007-12-05 18:47:01 -0800491 ;;
Dan Nicholson979ff512007-12-05 18:47:01 -0800492osmesa)
493 DRIVER_DIRS="osmesa"
494 ;;
Dan Nicholson44d99142007-12-05 18:47:01 -0800495esac
Dan Nicholson297e16c2008-05-05 15:42:53 -0700496AC_SUBST([SRC_DIRS])
497AC_SUBST([GLU_DIRS])
498AC_SUBST([DRIVER_DIRS])
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100499AC_SUBST([GALLIUM_DIRS])
Keith Whitwell51bff092010-03-11 14:43:00 +0000500AC_SUBST([GALLIUM_TARGET_DIRS])
Jerome Glisse14f79d42008-12-18 13:36:07 +0100501AC_SUBST([GALLIUM_WINSYS_DIRS])
Jakob Bornecrantzd67bd602009-02-20 11:03:18 +0000502AC_SUBST([GALLIUM_DRIVERS_DIRS])
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100503AC_SUBST([GALLIUM_STATE_TRACKERS_DIRS])
Dave Airlie81fe1982010-04-22 14:59:29 +1000504AC_SUBST([MESA_LLVM])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700505
506dnl
Dan Nicholsone6a06092008-05-05 15:16:22 -0700507dnl Find out if X is available. The variable have_x is set if libX11 is
Dan Nicholson99803a42008-07-01 09:03:15 -0700508dnl found to mimic AC_PATH_XTRA.
Dan Nicholsondca1b792007-10-23 09:25:58 -0700509dnl
510if test -n "$PKG_CONFIG"; then
511 AC_MSG_CHECKING([pkg-config files for X11 are available])
Dan Nicholsone6a06092008-05-05 15:16:22 -0700512 PKG_CHECK_EXISTS([x11],[
Dan Nicholsondca1b792007-10-23 09:25:58 -0700513 x11_pkgconfig=yes
514 have_x=yes
Dan Nicholsone6a06092008-05-05 15:16:22 -0700515 ],[
Dan Nicholsondca1b792007-10-23 09:25:58 -0700516 x11_pkgconfig=no
Dan Nicholsone6a06092008-05-05 15:16:22 -0700517 ])
518 AC_MSG_RESULT([$x11_pkgconfig])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700519else
520 x11_pkgconfig=no
521fi
522dnl Use the autoconf macro if no pkg-config files
Jeff Smith8d86d392010-03-12 18:55:09 -0600523if test "$x11_pkgconfig" = yes; then
Dan Nicholsone725ef12010-03-15 20:53:56 -0700524 PKG_CHECK_MODULES([X11], [x11])
Jeff Smith8d86d392010-03-12 18:55:09 -0600525else
Dan Nicholsondca1b792007-10-23 09:25:58 -0700526 AC_PATH_XTRA
Dan Nicholsone725ef12010-03-15 20:53:56 -0700527 test -z "$X11_CFLAGS" && X11_CFLAGS="$X_CFLAGS"
528 test -z "$X11_LIBS" && X11_LIBS="$X_LIBS -lX11"
529 AC_SUBST([X11_CFLAGS])
530 AC_SUBST([X11_LIBS])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700531fi
532
Dan Nicholson99803a42008-07-01 09:03:15 -0700533dnl Try to tell the user that the --x-* options are only used when
534dnl pkg-config is not available. This must be right after AC_PATH_XTRA.
535m4_divert_once([HELP_BEGIN],
536[These options are only used when the X libraries cannot be found by the
537pkg-config utility.])
538
Dan Nicholson44d99142007-12-05 18:47:01 -0800539dnl We need X for xlib and dri, so bomb now if it's not found
540case "$mesa_driver" in
Dan Nicholsona1307182007-12-12 17:49:49 -0800541xlib|dri)
Dan Nicholson44d99142007-12-05 18:47:01 -0800542 if test "$no_x" = yes; then
543 AC_MSG_ERROR([X11 development libraries needed for $mesa_driver driver])
544 fi
545 ;;
546esac
Dan Nicholsondca1b792007-10-23 09:25:58 -0700547
Dan Nicholson2d709fe2008-05-06 10:51:49 -0700548dnl XCB - this is only used for GLX right now
549AC_ARG_ENABLE([xcb],
550 [AS_HELP_STRING([--enable-xcb],
551 [use XCB for GLX @<:@default=disabled@:>@])],
552 [enable_xcb="$enableval"],
553 [enable_xcb=no])
554if test "x$enable_xcb" = xyes; then
555 DEFINES="$DEFINES -DUSE_XCB"
556else
557 enable_xcb=no
558fi
559
Dan Nicholson44d99142007-12-05 18:47:01 -0800560dnl
561dnl libGL configuration per driver
562dnl
563case "$mesa_driver" in
Dan Nicholsona1307182007-12-12 17:49:49 -0800564xlib)
Dan Nicholson44d99142007-12-05 18:47:01 -0800565 if test "$x11_pkgconfig" = yes; then
Dan Nicholson297e16c2008-05-05 15:42:53 -0700566 PKG_CHECK_MODULES([XLIBGL], [x11 xext])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800567 GL_PC_REQ_PRIV="x11 xext"
Dan Nicholsona1307182007-12-12 17:49:49 -0800568 X11_INCLUDES="$X11_INCLUDES $XLIBGL_CFLAGS"
569 GL_LIB_DEPS="$XLIBGL_LIBS"
Dan Nicholson44d99142007-12-05 18:47:01 -0800570 else
571 # should check these...
572 X11_INCLUDES="$X11_INCLUDES $X_CFLAGS"
573 GL_LIB_DEPS="$X_LIBS -lX11 -lXext"
Dan Nicholson71e208b2008-11-24 11:01:57 -0800574 GL_PC_LIB_PRIV="$GL_LIB_DEPS"
575 GL_PC_CFLAGS="$X11_INCLUDES"
Dan Nicholson44d99142007-12-05 18:47:01 -0800576 fi
Alan Coopersmith3cf6e622009-03-23 16:51:54 -0700577 GL_LIB_DEPS="$GL_LIB_DEPS $SELINUX_LIBS -lm -lpthread"
578 GL_PC_LIB_PRIV="$GL_PC_LIB_PRIV $SELINUX_LIBS -lm -lpthread"
Dan Nicholson88586332007-11-15 08:59:57 -0800579
580 # if static, move the external libraries to the programs
581 # and empty the libraries for libGL
582 if test "$enable_static" = yes; then
583 APP_LIB_DEPS="$APP_LIB_DEPS $GL_LIB_DEPS"
584 GL_LIB_DEPS=""
585 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800586 ;;
587dri)
Dan Nicholson88586332007-11-15 08:59:57 -0800588 # DRI must be shared, I think
589 if test "$enable_static" = yes; then
590 AC_MSG_ERROR([Can't use static libraries for DRI drivers])
591 fi
592
Dan Nicholson44d99142007-12-05 18:47:01 -0800593 # Check for libdrm
Dan Nicholsoncc77e8f2008-05-05 14:38:22 -0700594 PKG_CHECK_MODULES([LIBDRM], [libdrm >= $LIBDRM_REQUIRED])
595 PKG_CHECK_MODULES([DRI2PROTO], [dri2proto >= $DRI2PROTO_REQUIRED])
Jesse Barnesf2f83d92010-01-11 17:28:10 -0500596 PKG_CHECK_MODULES([GLPROTO], [glproto >= $GLPROTO_REQUIRED])
Jesse Barnesed59b132010-01-13 15:48:14 -0500597 GL_PC_REQ_PRIV="libdrm >= $LIBDRM_REQUIRED dri2proto >= $DRI2PROTO_REQUIRED glproto >= $GLPROTO_REQUIRED"
598 DRI_PC_REQ_PRIV="libdrm >= $LIBDRM_REQUIRED"
Dan Nicholson44d99142007-12-05 18:47:01 -0800599
600 # find the DRI deps for libGL
601 if test "$x11_pkgconfig" = yes; then
Dan Nicholson2d709fe2008-05-06 10:51:49 -0700602 # add xcb modules if necessary
603 dri_modules="x11 xext xxf86vm xdamage xfixes"
604 if test "$enable_xcb" = yes; then
605 dri_modules="$dri_modules x11-xcb xcb-glx"
606 fi
607
608 PKG_CHECK_MODULES([DRIGL], [$dri_modules])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800609 GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV $dri_modules"
Dan Nicholson44d99142007-12-05 18:47:01 -0800610 X11_INCLUDES="$X11_INCLUDES $DRIGL_CFLAGS"
611 GL_LIB_DEPS="$DRIGL_LIBS"
612 else
613 # should check these...
614 X11_INCLUDES="$X11_INCLUDES $X_CFLAGS"
615 GL_LIB_DEPS="$X_LIBS -lX11 -lXext -lXxf86vm -lXdamage -lXfixes"
Dan Nicholson71e208b2008-11-24 11:01:57 -0800616 GL_PC_LIB_PRIV="$GL_LIB_DEPS"
617 GL_PC_CFLAGS="$X11_INCLUDES"
Dan Nicholson2d709fe2008-05-06 10:51:49 -0700618
619 # XCB can only be used from pkg-config
620 if test "$enable_xcb" = yes; then
621 PKG_CHECK_MODULES([XCB],[x11-xcb xcb-glx])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800622 GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV x11-xcb xcb-glx"
Dan Nicholson2d709fe2008-05-06 10:51:49 -0700623 X11_INCLUDES="$X11_INCLUDES $XCB_CFLAGS"
624 GL_LIB_DEPS="$GL_LIB_DEPS $XCB_LIBS"
625 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800626 fi
627
628 # need DRM libs, -lpthread, etc.
Alan Coopersmith3cf6e622009-03-23 16:51:54 -0700629 GL_LIB_DEPS="$GL_LIB_DEPS $LIBDRM_LIBS -lm -lpthread $DLOPEN_LIBS"
630 GL_PC_LIB_PRIV="-lm -lpthread $DLOPEN_LIBS"
Kristian Høgsberg9339c122010-03-05 19:01:43 -0500631 GLESv1_CM_LIB_DEPS="$LIBDRM_LIBS -lm -lpthread $DLOPEN_LIBS"
Kristian Høgsberg74399d42010-05-02 09:51:13 -0400632 GLESv1_CM_PC_LIB_PRIV="-lm -lpthread $DLOPEN_LIBS"
Kristian Høgsberg9339c122010-03-05 19:01:43 -0500633 GLESv2_LIB_DEPS="$LIBDRM_LIBS -lm -lpthread $DLOPEN_LIBS"
Kristian Høgsberg74399d42010-05-02 09:51:13 -0400634 GLESv2_PC_LIB_PRIV="-lm -lpthread $DLOPEN_LIBS"
Dan Nicholson44d99142007-12-05 18:47:01 -0800635 ;;
Dan Nicholson979ff512007-12-05 18:47:01 -0800636osmesa)
637 # No libGL for osmesa
Alan Coopersmith3cf6e622009-03-23 16:51:54 -0700638 GL_LIB_DEPS=""
Dan Nicholson979ff512007-12-05 18:47:01 -0800639 ;;
Dan Nicholson44d99142007-12-05 18:47:01 -0800640esac
Dan Nicholson297e16c2008-05-05 15:42:53 -0700641AC_SUBST([GL_LIB_DEPS])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800642AC_SUBST([GL_PC_REQ_PRIV])
643AC_SUBST([GL_PC_LIB_PRIV])
644AC_SUBST([GL_PC_CFLAGS])
645AC_SUBST([DRI_PC_REQ_PRIV])
Kristian Høgsberg9339c122010-03-05 19:01:43 -0500646AC_SUBST([GLESv1_LIB_DEPS])
Kristian Høgsberg9e4f2da2010-05-04 14:13:11 -0400647AC_SUBST([GLESv1_CM_PC_LIB_PRIV])
Kristian Høgsberg9339c122010-03-05 19:01:43 -0500648AC_SUBST([GLESv2_LIB_DEPS])
Kristian Høgsberg9e4f2da2010-05-04 14:13:11 -0400649AC_SUBST([GLESv2_PC_LIB_PRIV])
650
Dan Nicholsondca1b792007-10-23 09:25:58 -0700651
652dnl
653dnl More X11 setup
654dnl
Dan Nicholsona1307182007-12-12 17:49:49 -0800655if test "$mesa_driver" = xlib; then
Dan Nicholsondca1b792007-10-23 09:25:58 -0700656 DEFINES="$DEFINES -DUSE_XSHM"
657fi
658
659dnl
Dan Nicholson44d99142007-12-05 18:47:01 -0800660dnl More DRI setup
661dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -0700662AC_ARG_ENABLE([glx-tls],
Dan Nicholson44d99142007-12-05 18:47:01 -0800663 [AS_HELP_STRING([--enable-glx-tls],
Dan Nicholson79ad4582007-12-07 19:11:01 -0800664 [enable TLS support in GLX @<:@default=disabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700665 [GLX_USE_TLS="$enableval"],
666 [GLX_USE_TLS=no])
Dan Nicholson44d99142007-12-05 18:47:01 -0800667dnl Directory for DRI drivers
Dan Nicholson297e16c2008-05-05 15:42:53 -0700668AC_ARG_WITH([dri-driverdir],
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800669 [AS_HELP_STRING([--with-dri-driverdir=DIR],
Dan Nicholson5dbbde52008-05-06 06:21:41 -0700670 [directory for the DRI drivers @<:@${libdir}/dri@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700671 [DRI_DRIVER_INSTALL_DIR="$withval"],
Dan Nicholson5dbbde52008-05-06 06:21:41 -0700672 [DRI_DRIVER_INSTALL_DIR='${libdir}/dri'])
Dan Nicholson297e16c2008-05-05 15:42:53 -0700673AC_SUBST([DRI_DRIVER_INSTALL_DIR])
Chow Loong Jin35506de2009-10-28 14:34:14 +0800674dnl Extra search path for DRI drivers
675AC_ARG_WITH([dri-searchpath],
676 [AS_HELP_STRING([--with-dri-searchpath=DIRS...],
677 [semicolon delimited DRI driver search directories @<:@${libdir}/dri@:>@])],
678 [DRI_DRIVER_SEARCH_DIR="$withval"],
679 [DRI_DRIVER_SEARCH_DIR='${DRI_DRIVER_INSTALL_DIR}'])
680AC_SUBST([DRI_DRIVER_SEARCH_DIR])
Dan Nicholson44d99142007-12-05 18:47:01 -0800681dnl Direct rendering or just indirect rendering
Dan Nicholson297e16c2008-05-05 15:42:53 -0700682AC_ARG_ENABLE([driglx-direct],
Dan Nicholson79ad4582007-12-07 19:11:01 -0800683 [AS_HELP_STRING([--disable-driglx-direct],
Chia-I Wucf588ab2010-07-06 14:34:43 +0800684 [enable direct rendering in GLX and EGL for DRI @<:@default=enabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700685 [driglx_direct="$enableval"],
686 [driglx_direct="yes"])
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800687dnl Which drivers to build - default is chosen by platform
Dan Nicholson297e16c2008-05-05 15:42:53 -0700688AC_ARG_WITH([dri-drivers],
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800689 [AS_HELP_STRING([--with-dri-drivers@<:@=DIRS...@:>@],
Dan Nicholson5cae1b72008-06-30 10:28:02 -0700690 [comma delimited DRI drivers list, e.g.
Michel Dänzercade0712009-07-10 14:49:46 +0200691 "swrast,i965,radeon" @<:@default=auto@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700692 [with_dri_drivers="$withval"],
693 [with_dri_drivers=yes])
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800694if test "x$with_dri_drivers" = x; then
695 with_dri_drivers=no
696fi
697
Kristian Høgsberg0f680322010-04-27 13:42:33 -0400698dnl Determine which APIs to support
699AC_ARG_ENABLE([opengl],
700 [AS_HELP_STRING([--disable-opengl],
701 [disable support for standard OpenGL API @<:@default=no@:>@])],
702 [enable_opengl="$enableval"],
703 [enable_opengl=yes])
704AC_ARG_ENABLE([gles1],
705 [AS_HELP_STRING([--enable-gles1],
706 [enable support for OpenGL ES 1.x API @<:@default=no@:>@])],
707 [enable_gles1="$enableval"],
708 [enable_gles1=no])
709AC_ARG_ENABLE([gles2],
710 [AS_HELP_STRING([--enable-gles2],
711 [enable support for OpenGL ES 2.x API @<:@default=no@:>@])],
712 [enable_gles2="$enableval"],
713 [enable_gles2=no])
Chia-I Wu63ab2502010-05-05 15:38:02 +0800714AC_ARG_ENABLE([gles-overlay],
715 [AS_HELP_STRING([--enable-gles-overlay],
716 [build separate OpenGL ES only libraries @<:@default=no@:>@])],
717 [enable_gles_overlay="$enableval"],
718 [enable_gles_overlay=no])
Kristian Høgsberg0f680322010-04-27 13:42:33 -0400719
720API_DEFINES=""
Chia-I Wu87cc2da2010-05-12 14:17:17 +0800721GLES_OVERLAY=0
Kristian Høgsberg0f680322010-04-27 13:42:33 -0400722if test "x$enable_opengl" = xno; then
723 API_DEFINES="$API_DEFINES -DFEATURE_GL=0"
724else
725 API_DEFINES="$API_DEFINES -DFEATURE_GL=1"
726fi
727if test "x$enable_gles1" = xyes; then
728 API_DEFINES="$API_DEFINES -DFEATURE_ES1=1"
729fi
730if test "x$enable_gles2" = xyes; then
731 API_DEFINES="$API_DEFINES -DFEATURE_ES2=1"
732fi
Chia-I Wu63ab2502010-05-05 15:38:02 +0800733if test "x$enable_gles_overlay" = xyes -o \
734 "x$enable_gles1" = xyes -o "x$enable_gles2" = xyes; then
Chia-I Wu296adbd2010-04-26 12:56:44 +0800735 CORE_DIRS="mapi/es1api mapi/es2api $CORE_DIRS"
Chia-I Wu63ab2502010-05-05 15:38:02 +0800736 if test "x$enable_gles_overlay" = xyes; then
Chia-I Wu87cc2da2010-05-12 14:17:17 +0800737 GLES_OVERLAY=1
Chia-I Wu63ab2502010-05-05 15:38:02 +0800738 fi
Kristian Høgsberg9339c122010-03-05 19:01:43 -0500739fi
Kristian Høgsberg0f680322010-04-27 13:42:33 -0400740AC_SUBST([API_DEFINES])
Chia-I Wu87cc2da2010-05-12 14:17:17 +0800741AC_SUBST([GLES_OVERLAY])
Kristian Høgsberg0f680322010-04-27 13:42:33 -0400742
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800743dnl If $with_dri_drivers is yes, directories will be added through
744dnl platform checks
745DRI_DIRS=""
746case "$with_dri_drivers" in
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100747no) ;;
748yes)
749 DRI_DIRS="yes"
750 ;;
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800751*)
752 # verify the requested driver directories exist
Dan Nicholsone6e4f252008-07-06 14:17:39 -0700753 dri_drivers=`IFS=', '; echo $with_dri_drivers`
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800754 for driver in $dri_drivers; do
755 test -d "$srcdir/src/mesa/drivers/dri/$driver" || \
756 AC_MSG_ERROR([DRI driver directory '$driver' doesn't exist])
757 done
758 DRI_DIRS="$dri_drivers"
759 ;;
760esac
761
Dan Nicholson44d99142007-12-05 18:47:01 -0800762dnl Set DRI_DIRS, DEFINES and LIB_DEPS
763if test "$mesa_driver" = dri; then
764 # Use TLS in GLX?
765 if test "x$GLX_USE_TLS" = xyes; then
766 DEFINES="$DEFINES -DGLX_USE_TLS -DPTHREADS"
767 fi
768
Dan Nicholson44d99142007-12-05 18:47:01 -0800769 # Platform specific settings and drivers to build
770 case "$host_os" in
771 linux*)
772 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
Dan Nicholson44d99142007-12-05 18:47:01 -0800773 if test "x$driglx_direct" = xyes; then
774 DEFINES="$DEFINES -DGLX_DIRECT_RENDERING"
775 fi
Jerome Glisse14f79d42008-12-18 13:36:07 +0100776 DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING -DHAVE_ALIAS"
Dan Nicholson44d99142007-12-05 18:47:01 -0800777
778 case "$host_cpu" in
Dan Nicholson44d99142007-12-05 18:47:01 -0800779 x86_64)
Kristian Høgsberg79aeafd2010-02-25 16:12:58 -0500780 # sis is missing because they have not be converted to use
781 # the new interface. i810 are missing because there is no
782 # x86-64 system where they could *ever* be used.
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100783 if test "x$DRI_DIRS" = "xyes"; then
Alex Deucher4138bdb2009-04-08 15:16:35 -0400784 DRI_DIRS="i915 i965 mach64 mga r128 r200 r300 r600 radeon \
George Sapountzis280bf892008-05-11 14:43:40 +0300785 savage tdfx unichrome swrast"
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800786 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800787 ;;
788 powerpc*)
Dan Nicholsona76e2452007-12-07 11:25:08 -0800789 # Build only the drivers for cards that exist on PowerPC.
790 # At some point MGA will be added, but not yet.
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100791 if test "x$DRI_DIRS" = "xyes"; then
Alex Deucher4138bdb2009-04-08 15:16:35 -0400792 DRI_DIRS="mach64 r128 r200 r300 r600 radeon tdfx swrast"
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800793 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800794 ;;
Dave Airlie2b0e75e2008-06-12 12:06:50 +1000795 sparc*)
796 # Build only the drivers for cards that exist on sparc`
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100797 if test "x$DRI_DIRS" = "xyes"; then
Kristian Høgsberg79aeafd2010-02-25 16:12:58 -0500798 DRI_DIRS="mach64 r128 r200 r300 r600 radeon swrast"
Dave Airlie2b0e75e2008-06-12 12:06:50 +1000799 fi
800 ;;
Dan Nicholson44d99142007-12-05 18:47:01 -0800801 esac
802 ;;
Hasso Tepper9f8df2d2008-04-09 10:51:21 -0700803 freebsd* | dragonfly*)
Dan Nicholson44d99142007-12-05 18:47:01 -0800804 DEFINES="$DEFINES -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1"
805 DEFINES="$DEFINES -DIN_DRI_DRIVER -DHAVE_ALIAS"
806 DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING"
807 if test "x$driglx_direct" = xyes; then
808 DEFINES="$DEFINES -DGLX_DIRECT_RENDERING"
809 fi
810 if test "x$GXX" = xyes; then
811 CXXFLAGS="$CXXFLAGS -ansi -pedantic"
812 fi
813
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100814 if test "x$DRI_DIRS" = "xyes"; then
Alex Deucher4138bdb2009-04-08 15:16:35 -0400815 DRI_DIRS="i810 i915 i965 mach64 mga r128 r200 r300 r600 radeon tdfx \
George Sapountzis280bf892008-05-11 14:43:40 +0300816 unichrome savage sis swrast"
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800817 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800818 ;;
Samuel Thibaultd18dd6a2009-04-23 05:43:22 -0700819 gnu*)
820 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
821 DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING -DHAVE_ALIAS"
822 ;;
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -0700823 solaris*)
824 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
825 DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING"
826 if test "x$driglx_direct" = xyes; then
827 DEFINES="$DEFINES -DGLX_DIRECT_RENDERING"
828 fi
829 ;;
Dan Nicholson44d99142007-12-05 18:47:01 -0800830 esac
Dan Nicholson112a40e2008-02-21 10:17:19 -0800831
832 # default drivers
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100833 if test "x$DRI_DIRS" = "xyes"; then
Corbin Simpson8e4657a2009-10-22 12:29:30 -0700834 DRI_DIRS="i810 i915 i965 mach64 mga r128 r200 r300 r600 radeon \
Kristian Høgsberg79aeafd2010-02-25 16:12:58 -0500835 savage sis tdfx unichrome swrast"
Dan Nicholson112a40e2008-02-21 10:17:19 -0800836 fi
837
Dan Nicholson44d99142007-12-05 18:47:01 -0800838 DRI_DIRS=`echo "$DRI_DIRS" | $SED 's/ */ /g'`
839
840 # Check for expat
841 EXPAT_INCLUDES=""
842 EXPAT_LIB=-lexpat
Dan Nicholson297e16c2008-05-05 15:42:53 -0700843 AC_ARG_WITH([expat],
844 [AS_HELP_STRING([--with-expat=DIR],
845 [expat install directory])],[
Dan Nicholson44d99142007-12-05 18:47:01 -0800846 EXPAT_INCLUDES="-I$withval/include"
847 CPPFLAGS="$CPPFLAGS $EXPAT_INCLUDES"
848 LDFLAGS="$LDFLAGS -L$withval/$LIB_DIR"
849 EXPAT_LIB="-L$withval/$LIB_DIR -lexpat"
850 ])
Dan Nicholson297e16c2008-05-05 15:42:53 -0700851 AC_CHECK_HEADER([expat.h],[],[AC_MSG_ERROR([Expat required for DRI.])])
852 AC_CHECK_LIB([expat],[XML_ParserCreate],[],
853 [AC_MSG_ERROR([Expat required for DRI.])])
Dan Nicholson44d99142007-12-05 18:47:01 -0800854
855 # put all the necessary libs together
Eric Anholt050c5332008-03-20 17:28:58 -0700856 DRI_LIB_DEPS="$SELINUX_LIBS $LIBDRM_LIBS $EXPAT_LIB -lm -lpthread $DLOPEN_LIBS"
Dan Nicholson44d99142007-12-05 18:47:01 -0800857fi
Dan Nicholson297e16c2008-05-05 15:42:53 -0700858AC_SUBST([DRI_DIRS])
859AC_SUBST([EXPAT_INCLUDES])
860AC_SUBST([DRI_LIB_DEPS])
Dan Nicholson44d99142007-12-05 18:47:01 -0800861
Kristian Høgsberg8616cec2010-01-01 17:03:33 -0500862case $DRI_DIRS in
863*i915*|*i965*)
Eric Anholt73de09f2010-06-07 09:25:10 -0700864 PKG_CHECK_MODULES([INTEL], [libdrm_intel >= 2.4.21])
Kristian Høgsberg8616cec2010-01-01 17:03:33 -0500865 ;;
Kristian Høgsberg27fe7a72010-01-07 10:29:29 -0500866esac
Kristian Høgsberg8616cec2010-01-01 17:03:33 -0500867
Kristian Høgsberg27fe7a72010-01-07 10:29:29 -0500868case $DRI_DIRS in
Kristian Høgsberg8616cec2010-01-01 17:03:33 -0500869*radeon*|*r200*|*r300*|*r600*)
870 PKG_CHECK_MODULES([LIBDRM_RADEON],
871 [libdrm_radeon libdrm >= $LIBDRM_RADEON_REQUIRED],
872 HAVE_LIBDRM_RADEON=yes,
873 HAVE_LIBDRM_RADEON=no)
874
875 if test "$HAVE_LIBDRM_RADEON" = yes; then
876 RADEON_CFLAGS="-DHAVE_LIBDRM_RADEON=1 $LIBDRM_RADEON_CFLAGS"
877 RADEON_LDFLAGS=$LIBDRM_RADEON_LIBS
878 fi
879 ;;
880esac
881AC_SUBST([RADEON_CFLAGS])
882AC_SUBST([RADEON_LDFLAGS])
883
884
Dan Nicholson44d99142007-12-05 18:47:01 -0800885dnl
Dan Nicholsondca1b792007-10-23 09:25:58 -0700886dnl OSMesa configuration
887dnl
Dan Nicholsona1307182007-12-12 17:49:49 -0800888if test "$mesa_driver" = xlib; then
Dan Nicholson544ab202007-12-30 08:41:53 -0800889 default_gl_osmesa=yes
Dan Nicholson979ff512007-12-05 18:47:01 -0800890else
Dan Nicholson544ab202007-12-30 08:41:53 -0800891 default_gl_osmesa=no
Dan Nicholson44d99142007-12-05 18:47:01 -0800892fi
Dan Nicholson297e16c2008-05-05 15:42:53 -0700893AC_ARG_ENABLE([gl-osmesa],
Dan Nicholson544ab202007-12-30 08:41:53 -0800894 [AS_HELP_STRING([--enable-gl-osmesa],
Dan Nicholsoncbf30fc2010-06-16 09:23:17 -0700895 [enable OSMesa with libGL @<:@default=enabled for xlib driver@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700896 [gl_osmesa="$enableval"],
897 [gl_osmesa="$default_gl_osmesa"])
Dan Nicholson544ab202007-12-30 08:41:53 -0800898if test "x$gl_osmesa" = xyes; then
899 if test "$mesa_driver" = osmesa; then
900 AC_MSG_ERROR([libGL is not available for OSMesa driver])
Dan Nicholson979ff512007-12-05 18:47:01 -0800901 else
Dan Nicholson544ab202007-12-30 08:41:53 -0800902 DRIVER_DIRS="$DRIVER_DIRS osmesa"
Dan Nicholson979ff512007-12-05 18:47:01 -0800903 fi
904fi
905
Dan Nicholson6689f9e2007-12-05 21:04:15 -0800906dnl Configure the channel bits for OSMesa (libOSMesa, libOSMesa16, ...)
Dan Nicholson297e16c2008-05-05 15:42:53 -0700907AC_ARG_WITH([osmesa-bits],
Dan Nicholson6689f9e2007-12-05 21:04:15 -0800908 [AS_HELP_STRING([--with-osmesa-bits=BITS],
909 [OSMesa channel bits and library name: 8, 16, 32 @<:@default=8@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700910 [osmesa_bits="$withval"],
911 [osmesa_bits=8])
Dan Nicholson6689f9e2007-12-05 21:04:15 -0800912if test "$mesa_driver" != osmesa && test "x$osmesa_bits" != x8; then
913 AC_MSG_WARN([Ignoring OSMesa channel bits for non-OSMesa driver])
914 osmesa_bits=8
915fi
916case "x$osmesa_bits" in
917x8)
918 OSMESA_LIB=OSMesa
919 ;;
920x16|x32)
921 OSMESA_LIB="OSMesa$osmesa_bits"
922 DEFINES="$DEFINES -DCHAN_BITS=$osmesa_bits -DDEFAULT_SOFTWARE_DEPTH_BITS=31"
923 ;;
924*)
925 AC_MSG_ERROR([OSMesa bits '$osmesa_bits' is not a valid option])
926 ;;
927esac
Dan Nicholson297e16c2008-05-05 15:42:53 -0700928AC_SUBST([OSMESA_LIB])
Dan Nicholson6689f9e2007-12-05 21:04:15 -0800929
Dan Nicholsoncbf30fc2010-06-16 09:23:17 -0700930case "$DRIVER_DIRS" in
931*osmesa*)
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -0700932 # only link libraries with osmesa if shared
Dan Nicholson88586332007-11-15 08:59:57 -0800933 if test "$enable_static" = no; then
Dan Nicholson4795dd52009-06-04 19:42:08 -0700934 OSMESA_LIB_DEPS="-lm -lpthread $SELINUX_LIBS $DLOPEN_LIBS"
Dan Nicholson88586332007-11-15 08:59:57 -0800935 else
936 OSMESA_LIB_DEPS=""
937 fi
Dan Nicholson979ff512007-12-05 18:47:01 -0800938 OSMESA_MESA_DEPS=""
Dan Nicholson4795dd52009-06-04 19:42:08 -0700939 OSMESA_PC_LIB_PRIV="-lm -lpthread $SELINUX_LIBS $DLOPEN_LIBS"
Dan Nicholson979ff512007-12-05 18:47:01 -0800940 ;;
Dan Nicholson979ff512007-12-05 18:47:01 -0800941esac
Dan Nicholson297e16c2008-05-05 15:42:53 -0700942AC_SUBST([OSMESA_LIB_DEPS])
943AC_SUBST([OSMESA_MESA_DEPS])
Dan Nicholson8be02fc2008-12-14 09:35:29 -0800944AC_SUBST([OSMESA_PC_REQ])
945AC_SUBST([OSMESA_PC_LIB_PRIV])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700946
947dnl
Dan Nicholson53b37342009-02-25 17:45:34 -0800948dnl EGL configuration
949dnl
Dan Nicholson66f97862009-04-29 12:11:43 -0700950AC_ARG_ENABLE([egl],
951 [AS_HELP_STRING([--disable-egl],
952 [disable EGL library @<:@default=enabled@:>@])],
953 [enable_egl="$enableval"],
954 [enable_egl=yes])
955if test "x$enable_egl" = xyes; then
956 SRC_DIRS="$SRC_DIRS egl"
Chia-I Wud4c1ee02009-12-21 11:13:18 +0800957 EGL_LIB_DEPS="$DLOPEN_LIBS -lpthread"
958 EGL_DRIVERS_DIRS=""
Chia-I Wu2eb7a2f2010-02-05 10:46:11 +0800959 if test "$enable_static" != yes; then
Chia-I Wud4c1ee02009-12-21 11:13:18 +0800960 # build egl_glx when libGL is built
Chia-I Wu2eb7a2f2010-02-05 10:46:11 +0800961 if test "$mesa_driver" != osmesa; then
962 EGL_DRIVERS_DIRS="glx"
963 fi
964
Chia-I Wu39ae9652010-07-16 19:48:52 +0800965 if test "$mesa_driver" = dri; then
966 # build egl_dri2 when xcb-dri2 is available
967 PKG_CHECK_MODULES([XCB_DRI2], [x11-xcb xcb-dri2 xcb-xfixes],
968 [have_xcb_dri2=yes],[have_xcb_dri2=no])
969 PKG_CHECK_MODULES([LIBUDEV], [libudev > 150],
970 [have_libudev=yes],[have_libudev=no])
971
972 if test "$have_xcb_dri2" = yes; then
973 EGL_DRIVER_DRI2=dri2
974 DEFINES="$DEFINES -DHAVE_XCB_DRI2"
975 if test "$have_libudev" = yes; then
976 DEFINES="$DEFINES -DHAVE_LIBUDEV"
977 fi
978 fi
979 fi
Kristian Høgsberg2168b872010-06-02 22:48:06 -0400980
981 EGL_DRIVERS_DIRS="$EGL_DRIVERS_DIRS $EGL_DRIVER_DRI2"
Kristian Høgsberg42fa0092010-02-03 10:18:28 -0500982 fi
Dan Nicholson53b37342009-02-25 17:45:34 -0800983fi
Dan Nicholson53b37342009-02-25 17:45:34 -0800984AC_SUBST([EGL_LIB_DEPS])
Chia-I Wud4c1ee02009-12-21 11:13:18 +0800985AC_SUBST([EGL_DRIVERS_DIRS])
Dan Nicholson53b37342009-02-25 17:45:34 -0800986
987dnl
Dan Nicholsondca1b792007-10-23 09:25:58 -0700988dnl GLU configuration
989dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -0700990AC_ARG_ENABLE([glu],
Dan Nicholson79ad4582007-12-07 19:11:01 -0800991 [AS_HELP_STRING([--disable-glu],
992 [enable OpenGL Utility library @<:@default=enabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700993 [enable_glu="$enableval"],
994 [enable_glu=yes])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700995if test "x$enable_glu" = xyes; then
996 SRC_DIRS="$SRC_DIRS glu"
997
Dan Nicholson979ff512007-12-05 18:47:01 -0800998 case "$mesa_driver" in
999 osmesa)
Dan Nicholson979ff512007-12-05 18:47:01 -08001000 # Link libGLU to libOSMesa instead of libGL
1001 GLU_LIB_DEPS=""
Dan Nicholson8be02fc2008-12-14 09:35:29 -08001002 GLU_PC_REQ="osmesa"
Dan Nicholson88586332007-11-15 08:59:57 -08001003 if test "$enable_static" = no; then
1004 GLU_MESA_DEPS='-l$(OSMESA_LIB)'
1005 else
1006 GLU_MESA_DEPS=""
1007 fi
Dan Nicholson979ff512007-12-05 18:47:01 -08001008 ;;
1009 *)
Dan Nicholson88586332007-11-15 08:59:57 -08001010 # If static, empty GLU_LIB_DEPS and add libs for programs to link
Dan Nicholson71e208b2008-11-24 11:01:57 -08001011 GLU_PC_REQ="gl"
1012 GLU_PC_LIB_PRIV="-lm"
Dan Nicholson88586332007-11-15 08:59:57 -08001013 if test "$enable_static" = no; then
1014 GLU_LIB_DEPS="-lm"
1015 GLU_MESA_DEPS='-l$(GL_LIB)'
1016 else
1017 GLU_LIB_DEPS=""
1018 GLU_MESA_DEPS=""
1019 APP_LIB_DEPS="$APP_LIB_DEPS -lstdc++"
1020 fi
Dan Nicholson979ff512007-12-05 18:47:01 -08001021 ;;
1022 esac
Dan Nicholsondca1b792007-10-23 09:25:58 -07001023fi
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -07001024if test "$enable_static" = no; then
1025 GLU_LIB_DEPS="$GLU_LIB_DEPS $OS_CPLUSPLUS_LIBS"
1026fi
Dan Nicholson71e208b2008-11-24 11:01:57 -08001027GLU_PC_LIB_PRIV="$GLU_PC_LIB_PRIV $OS_CPLUSPLUS_LIBS"
Dan Nicholson297e16c2008-05-05 15:42:53 -07001028AC_SUBST([GLU_LIB_DEPS])
1029AC_SUBST([GLU_MESA_DEPS])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001030AC_SUBST([GLU_PC_REQ])
1031AC_SUBST([GLU_PC_REQ_PRIV])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001032AC_SUBST([GLU_PC_LIB_PRIV])
1033AC_SUBST([GLU_PC_CFLAGS])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001034
1035dnl
1036dnl GLw configuration
1037dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -07001038AC_ARG_ENABLE([glw],
Dan Nicholson79ad4582007-12-07 19:11:01 -08001039 [AS_HELP_STRING([--disable-glw],
1040 [enable Xt/Motif widget library @<:@default=enabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -07001041 [enable_glw="$enableval"],
1042 [enable_glw=yes])
Dan Nicholson979ff512007-12-05 18:47:01 -08001043dnl Don't build GLw on osmesa
1044if test "x$enable_glw" = xyes && test "$mesa_driver" = osmesa; then
1045 AC_MSG_WARN([Disabling GLw since the driver is OSMesa])
1046 enable_glw=no
1047fi
Dan Nicholson776c60d2008-07-18 07:40:41 -07001048AC_ARG_ENABLE([motif],
1049 [AS_HELP_STRING([--enable-motif],
1050 [use Motif widgets in GLw @<:@default=disabled@:>@])],
1051 [enable_motif="$enableval"],
1052 [enable_motif=no])
1053
Dan Nicholsondca1b792007-10-23 09:25:58 -07001054if test "x$enable_glw" = xyes; then
1055 SRC_DIRS="$SRC_DIRS glw"
1056 if test "$x11_pkgconfig" = yes; then
Dan Nicholson297e16c2008-05-05 15:42:53 -07001057 PKG_CHECK_MODULES([GLW],[x11 xt])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001058 GLW_PC_REQ_PRIV="x11 xt"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001059 GLW_LIB_DEPS="$GLW_LIBS"
1060 else
1061 # should check these...
Dan Nicholson776c60d2008-07-18 07:40:41 -07001062 GLW_LIB_DEPS="$X_LIBS -lXt -lX11"
Dan Nicholson71e208b2008-11-24 11:01:57 -08001063 GLW_PC_LIB_PRIV="$GLW_LIB_DEPS"
1064 GLW_PC_CFLAGS="$X11_INCLUDES"
Dan Nicholson776c60d2008-07-18 07:40:41 -07001065 fi
1066
1067 GLW_SOURCES="GLwDrawA.c"
1068 MOTIF_CFLAGS=
1069 if test "x$enable_motif" = xyes; then
1070 GLW_SOURCES="$GLW_SOURCES GLwMDrawA.c"
1071 AC_PATH_PROG([MOTIF_CONFIG], [motif-config], [no])
1072 if test "x$MOTIF_CONFIG" != xno; then
1073 MOTIF_CFLAGS=`$MOTIF_CONFIG --cflags`
1074 MOTIF_LIBS=`$MOTIF_CONFIG --libs`
1075 else
1076 AC_CHECK_HEADER([Xm/PrimitiveP.h], [],
1077 [AC_MSG_ERROR([Can't locate Motif headers])])
1078 AC_CHECK_LIB([Xm], [XmGetPixmap], [MOTIF_LIBS="-lXm"],
1079 [AC_MSG_ERROR([Can't locate Motif Xm library])])
1080 fi
1081 # MOTIF_LIBS is prepended to GLW_LIB_DEPS since Xm needs Xt/X11
1082 GLW_LIB_DEPS="$MOTIF_LIBS $GLW_LIB_DEPS"
Dan Nicholson71e208b2008-11-24 11:01:57 -08001083 GLW_PC_LIB_PRIV="$MOTIF_LIBS $GLW_PC_LIB_PRIV"
1084 GLW_PC_CFLAGS="$MOTIF_CFLAGS $GLW_PC_CFLAGS"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001085 fi
1086
Dan Nicholson88586332007-11-15 08:59:57 -08001087 # If static, empty GLW_LIB_DEPS and add libs for programs to link
Alan Coopersmith3cf6e622009-03-23 16:51:54 -07001088 GLW_PC_LIB_PRIV="$GLW_PC_LIB_PRIV"
Dan Nicholson88586332007-11-15 08:59:57 -08001089 if test "$enable_static" = no; then
1090 GLW_MESA_DEPS='-l$(GL_LIB)'
Alan Coopersmith3cf6e622009-03-23 16:51:54 -07001091 GLW_LIB_DEPS="$GLW_LIB_DEPS"
Dan Nicholson88586332007-11-15 08:59:57 -08001092 else
1093 APP_LIB_DEPS="$APP_LIB_DEPS $GLW_LIB_DEPS"
1094 GLW_LIB_DEPS=""
1095 GLW_MESA_DEPS=""
1096 fi
Dan Nicholsondca1b792007-10-23 09:25:58 -07001097fi
Dan Nicholson297e16c2008-05-05 15:42:53 -07001098AC_SUBST([GLW_LIB_DEPS])
1099AC_SUBST([GLW_MESA_DEPS])
Dan Nicholson776c60d2008-07-18 07:40:41 -07001100AC_SUBST([GLW_SOURCES])
1101AC_SUBST([MOTIF_CFLAGS])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001102AC_SUBST([GLW_PC_REQ_PRIV])
1103AC_SUBST([GLW_PC_LIB_PRIV])
1104AC_SUBST([GLW_PC_CFLAGS])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001105
1106dnl
1107dnl GLUT configuration
1108dnl
1109if test -f "$srcdir/include/GL/glut.h"; then
1110 default_glut=yes
1111else
1112 default_glut=no
1113fi
Dan Nicholson297e16c2008-05-05 15:42:53 -07001114AC_ARG_ENABLE([glut],
Dan Nicholson79ad4582007-12-07 19:11:01 -08001115 [AS_HELP_STRING([--disable-glut],
1116 [enable GLUT library @<:@default=enabled if source available@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -07001117 [enable_glut="$enableval"],
1118 [enable_glut="$default_glut"])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001119
1120dnl Can't build glut if GLU not available
1121if test "x$enable_glu$enable_glut" = xnoyes; then
1122 AC_MSG_WARN([Disabling glut since GLU is disabled])
1123 enable_glut=no
1124fi
Dan Nicholson979ff512007-12-05 18:47:01 -08001125dnl Don't build glut on osmesa
1126if test "x$enable_glut" = xyes && test "$mesa_driver" = osmesa; then
1127 AC_MSG_WARN([Disabling glut since the driver is OSMesa])
1128 enable_glut=no
1129fi
1130
Dan Nicholsondca1b792007-10-23 09:25:58 -07001131if test "x$enable_glut" = xyes; then
1132 SRC_DIRS="$SRC_DIRS glut/glx"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001133 if test "$x11_pkgconfig" = yes; then
Dan Nicholson297e16c2008-05-05 15:42:53 -07001134 PKG_CHECK_MODULES([GLUT],[x11 xmu xi])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001135 GLUT_PC_REQ_PRIV="x11 xmu xi"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001136 GLUT_LIB_DEPS="$GLUT_LIBS"
1137 else
1138 # should check these...
Dan Nicholson70d0c832007-12-07 11:12:20 -08001139 GLUT_LIB_DEPS="$X_LIBS -lX11 -lXmu -lXi"
Dan Nicholson71e208b2008-11-24 11:01:57 -08001140 GLUT_PC_LIB_PRIV="$GLUT_LIB_DEPS"
1141 GLUT_PC_CFLAGS="$X11_INCLUDES"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001142 fi
John Hein96172542010-07-01 12:53:28 -07001143 if test "x$GCC" = xyes; then
1144 GLUT_CFLAGS="$GLUT_CFLAGS -fexceptions"
1145 fi
Alan Coopersmith3cf6e622009-03-23 16:51:54 -07001146 GLUT_LIB_DEPS="$GLUT_LIB_DEPS -lm"
1147 GLUT_PC_LIB_PRIV="$GLUT_PC_LIB_PRIV -lm"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001148
Dan Nicholson88586332007-11-15 08:59:57 -08001149 # If static, empty GLUT_LIB_DEPS and add libs for programs to link
1150 if test "$enable_static" = no; then
1151 GLUT_MESA_DEPS='-l$(GLU_LIB) -l$(GL_LIB)'
1152 else
1153 APP_LIB_DEPS="$APP_LIB_DEPS $GLUT_LIB_DEPS"
1154 GLUT_LIB_DEPS=""
1155 GLUT_MESA_DEPS=""
1156 fi
Dan Nicholsondca1b792007-10-23 09:25:58 -07001157fi
Dan Nicholson297e16c2008-05-05 15:42:53 -07001158AC_SUBST([GLUT_LIB_DEPS])
1159AC_SUBST([GLUT_MESA_DEPS])
1160AC_SUBST([GLUT_CFLAGS])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001161AC_SUBST([GLUT_PC_REQ_PRIV])
1162AC_SUBST([GLUT_PC_LIB_PRIV])
1163AC_SUBST([GLUT_PC_CFLAGS])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001164
1165dnl
1166dnl Program library dependencies
1167dnl Only libm is added here if necessary as the libraries should
1168dnl be pulled in by the linker
1169dnl
1170if test "x$APP_LIB_DEPS" = x; then
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -07001171 case "$host_os" in
1172 solaris*)
1173 APP_LIB_DEPS="-lX11 -lsocket -lnsl -lm"
1174 ;;
Jon TURNEY7eed6ab2009-06-08 16:02:18 +01001175 cygwin*)
1176 APP_LIB_DEPS="-lX11"
1177 ;;
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -07001178 *)
1179 APP_LIB_DEPS="-lm"
1180 ;;
1181 esac
Dan Nicholsondca1b792007-10-23 09:25:58 -07001182fi
Dan Nicholson297e16c2008-05-05 15:42:53 -07001183AC_SUBST([APP_LIB_DEPS])
1184AC_SUBST([PROGRAM_DIRS])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001185
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001186dnl
1187dnl Gallium configuration
1188dnl
1189AC_ARG_ENABLE([gallium],
1190 [AS_HELP_STRING([--disable-gallium],
1191 [build gallium @<:@default=enabled@:>@])],
1192 [enable_gallium="$enableval"],
1193 [enable_gallium=yes])
1194if test "x$enable_gallium" = xyes; then
Jakob Bornecrantzbe38b322010-03-23 13:23:26 +00001195 SRC_DIRS="$SRC_DIRS gallium gallium/winsys gallium/targets"
Dave Airlie81fe1982010-04-22 14:59:29 +10001196 AC_CHECK_HEADER([udis86.h], [HAS_UDIS86="yes"],
1197 [HAS_UDIS86="no"])
1198 AC_PATH_PROG([LLVM_CONFIG], [llvm-config], [no])
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001199fi
Dan Nicholsondca1b792007-10-23 09:25:58 -07001200
Dave Airlie81fe1982010-04-22 14:59:29 +10001201AC_SUBST([LLVM_CFLAGS])
1202AC_SUBST([LLVM_LIBS])
1203AC_SUBST([LLVM_LDFLAGS])
1204AC_SUBST([LLVM_VERSION])
1205
Chia-I Wu874ccd52010-05-04 22:43:05 +08001206VG_LIB_DEPS=""
Chia-I Wu63ab2502010-05-05 15:38:02 +08001207EGL_CLIENT_APIS='$(GL_LIB)'
1208if test "x$enable_gles_overlay" = xyes; then
1209 EGL_CLIENT_APIS="$EGL_CLIENT_APIS "'$(GLESv1_CM_LIB) $(GLESv2_LIB)'
1210fi
Chia-I Wu874ccd52010-05-04 22:43:05 +08001211
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001212dnl
1213dnl Gallium state trackers configuration
1214dnl
1215AC_ARG_WITH([state-trackers],
1216 [AS_HELP_STRING([--with-state-trackers@<:@=DIRS...@:>@],
1217 [comma delimited state_trackers list, e.g.
1218 "egl,glx" @<:@default=auto@:>@])],
1219 [with_state_trackers="$withval"],
1220 [with_state_trackers=yes])
1221
1222case "$with_state_trackers" in
1223no)
1224 GALLIUM_STATE_TRACKERS_DIRS=""
1225 ;;
1226yes)
1227 # look at what else is built
1228 case "$mesa_driver" in
Jakob Bornecrantz373e6712009-04-18 23:13:56 +01001229 xlib)
1230 GALLIUM_STATE_TRACKERS_DIRS=glx
1231 ;;
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001232 dri)
Jakob Bornecrantz5b1fc142010-03-25 18:29:51 +01001233 GALLIUM_STATE_TRACKERS_DIRS="dri"
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001234 HAVE_ST_DRI="yes"
Jakob Bornecrantzbc0532b2009-12-04 18:50:29 +00001235 if test "x$enable_egl" = xyes; then
Chia-I Wu3c967a92010-01-22 16:31:43 +08001236 GALLIUM_STATE_TRACKERS_DIRS="$GALLIUM_STATE_TRACKERS_DIRS egl"
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001237 HAVE_ST_EGL="yes"
Jakob Bornecrantzbc0532b2009-12-04 18:50:29 +00001238 fi
1239 # Have only tested st/xorg on 1.6.0 servers
Jakob Bornecrantz683a0992010-03-11 19:23:15 +00001240 PKG_CHECK_MODULES(XORG, [xorg-server >= 1.6.0 libdrm >= $LIBDRM_XORG_REQUIRED libkms >= $LIBKMS_XORG_REQUIRED],
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001241 HAVE_ST_XORG="yes"; GALLIUM_STATE_TRACKERS_DIRS="$GALLIUM_STATE_TRACKERS_DIRS xorg",
1242 HAVE_ST_XORG="no")
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001243 ;;
1244 esac
1245 ;;
1246*)
1247 # verify the requested state tracker exist
Chia-I Wu63ab2502010-05-05 15:38:02 +08001248 state_trackers=""
1249 _state_trackers=`IFS=', '; echo $with_state_trackers`
1250 for tracker in $_state_trackers; do
Chia-I Wue5d351d2009-12-23 11:18:00 +08001251 case "$tracker" in
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001252 dri)
1253 if test "x$mesa_driver" != xdri; then
1254 AC_MSG_ERROR([cannot build dri state tracker without mesa driver set to dri])
1255 fi
1256 HAVE_ST_DRI="yes"
1257 ;;
Chia-I Wu3c967a92010-01-22 16:31:43 +08001258 egl)
Chia-I Wue5d351d2009-12-23 11:18:00 +08001259 if test "x$enable_egl" != xyes; then
Chia-I Wu3c967a92010-01-22 16:31:43 +08001260 AC_MSG_ERROR([cannot build egl state tracker without EGL library])
Chia-I Wue5d351d2009-12-23 11:18:00 +08001261 fi
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001262 HAVE_ST_EGL="yes"
Chia-I Wue5d351d2009-12-23 11:18:00 +08001263 ;;
1264 xorg)
Jakob Bornecrantz4f956882010-07-13 07:40:47 -07001265 PKG_CHECK_MODULES([XORG], [xorg-server >= 1.6.0])
Jakob Bornecrantz683a0992010-03-11 19:23:15 +00001266 PKG_CHECK_MODULES([LIBDRM_XORG], [libdrm >= $LIBDRM_XORG_REQUIRED])
1267 PKG_CHECK_MODULES([LIBKMS_XORG], [libkms >= $LIBKMS_XORG_REQUIRED])
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001268 HAVE_ST_XORG="yes"
Chia-I Wue5d351d2009-12-23 11:18:00 +08001269 ;;
1270 es)
Chia-I Wu63ab2502010-05-05 15:38:02 +08001271 AC_MSG_WARN([state tracker 'es' has been replaced by --enable-gles-overlay])
1272
1273 if test "x$enable_gles_overlay" != xyes; then
1274 if test "x$enable_gles1" != xyes -a "x$enable_gles2" != xyes; then
1275 CORE_DIRS="mapi/es1api mapi/es2api $CORE_DIRS"
1276 fi
Chia-I Wu87cc2da2010-05-12 14:17:17 +08001277 GLES_OVERLAY=1
Chia-I Wu63ab2502010-05-05 15:38:02 +08001278 EGL_CLIENT_APIS="$EGL_CLIENT_APIS "'$(GLESv1_CM_LIB) $(GLESv2_LIB)'
Chia-I Wu296adbd2010-04-26 12:56:44 +08001279 fi
Chia-I Wu63ab2502010-05-05 15:38:02 +08001280 tracker=""
Chia-I Wue5d351d2009-12-23 11:18:00 +08001281 ;;
Chia-I Wu75143ef2010-04-16 18:12:37 +08001282 vega)
1283 CORE_DIRS="$CORE_DIRS mapi/vgapi"
Chia-I Wu874ccd52010-05-04 22:43:05 +08001284 VG_LIB_DEPS="$VG_LIB_DEPS -lpthread"
Chia-I Wu63ab2502010-05-05 15:38:02 +08001285 EGL_CLIENT_APIS="$EGL_CLIENT_APIS "'$(VG_LIB)'
Chia-I Wu75143ef2010-04-16 18:12:37 +08001286 ;;
Chia-I Wue5d351d2009-12-23 11:18:00 +08001287 esac
Chia-I Wu63ab2502010-05-05 15:38:02 +08001288
1289 if test -n "$tracker"; then
1290 test -d "$srcdir/src/gallium/state_trackers/$tracker" || \
1291 AC_MSG_ERROR([state tracker '$tracker' doesn't exist])
1292 if test -n "$state_trackers"; then
1293 state_trackers="$state_trackers $tracker"
1294 else
1295 state_trackers="$tracker"
1296 fi
1297 fi
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001298 done
1299 GALLIUM_STATE_TRACKERS_DIRS="$state_trackers"
1300 ;;
1301esac
1302
Chia-I Wu874ccd52010-05-04 22:43:05 +08001303AC_SUBST([VG_LIB_DEPS])
Chia-I Wu63ab2502010-05-05 15:38:02 +08001304AC_SUBST([EGL_CLIENT_APIS])
1305
1306if test "x$HAVE_ST_EGL" = xyes; then
Chia-I Wud8e0e112010-06-29 14:04:27 +08001307 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS egl"
Chia-I Wucf588ab2010-07-06 14:34:43 +08001308 # define GLX_DIRECT_RENDERING even when the driver is not dri
1309 if test "x$mesa_driver" != xdri -a "x$driglx_direct" = xyes; then
1310 DEFINES="$DEFINES -DGLX_DIRECT_RENDERING"
1311 fi
Chia-I Wu63ab2502010-05-05 15:38:02 +08001312fi
Chia-I Wu874ccd52010-05-04 22:43:05 +08001313
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001314if test "x$HAVE_ST_XORG" = xyes; then
Jakob Bornecrantz683a0992010-03-11 19:23:15 +00001315 PKG_CHECK_MODULES(XEXT, [xextproto >= 7.0.99.1],
1316 HAVE_XEXTPROTO_71="yes"; DEFINES="$DEFINES -DHAVE_XEXTPROTO_71",
1317 HAVE_XEXTPROTO_71="no")
1318fi
1319
Chia-I Wuda39d5d2010-06-17 16:07:46 +08001320AC_ARG_WITH([egl-platforms],
1321 [AS_HELP_STRING([--with-egl-platforms@<:@=DIRS...@:>@],
1322 [comma delimited native platforms libEGL supports, e.g.
1323 "x11,kms" @<:@default=auto@:>@])],
1324 [with_egl_platforms="$withval"],
1325 [with_egl_platforms=yes])
Chia-I Wu49381d62010-01-11 01:23:01 +08001326AC_ARG_WITH([egl-displays],
1327 [AS_HELP_STRING([--with-egl-displays@<:@=DIRS...@:>@],
Chia-I Wuda39d5d2010-06-17 16:07:46 +08001328 [DEPRECATED. Use --with-egl-platforms instead])],
1329 [with_egl_platforms="$withval"])
Chia-I Wu49381d62010-01-11 01:23:01 +08001330
Chia-I Wuda39d5d2010-06-17 16:07:46 +08001331EGL_PLATFORMS=""
1332case "$with_egl_platforms" in
Chia-I Wu49381d62010-01-11 01:23:01 +08001333yes)
1334 if test "x$enable_egl" = xyes && test "x$mesa_driver" != xosmesa; then
Chia-I Wuda39d5d2010-06-17 16:07:46 +08001335 EGL_PLATFORMS="x11"
Chia-I Wu49381d62010-01-11 01:23:01 +08001336 fi
1337 ;;
1338*)
1339 if test "x$enable_egl" != xyes; then
1340 AC_MSG_ERROR([cannot build egl state tracker without EGL library])
1341 fi
1342 # verify the requested driver directories exist
Chia-I Wuda39d5d2010-06-17 16:07:46 +08001343 egl_platforms=`IFS=', '; echo $with_egl_platforms`
1344 for plat in $egl_platforms; do
1345 test -d "$srcdir/src/gallium/state_trackers/egl/$plat" || \
1346 AC_MSG_ERROR([EGL platform '$plat' does't exist])
1347 if test "$plat" = "fbdev"; then
Chia-I Wu8f3e48e2010-06-17 14:10:53 +08001348 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/fbdev"
1349 fi
Chia-I Wu49381d62010-01-11 01:23:01 +08001350 done
Chia-I Wuda39d5d2010-06-17 16:07:46 +08001351 EGL_PLATFORMS="$egl_platforms"
Chia-I Wu49381d62010-01-11 01:23:01 +08001352 ;;
1353esac
Chia-I Wuda39d5d2010-06-17 16:07:46 +08001354AC_SUBST([EGL_PLATFORMS])
Chia-I Wu49381d62010-01-11 01:23:01 +08001355
Chia-I Wu28c3e572010-01-23 20:18:43 +08001356AC_ARG_WITH([egl-driver-dir],
1357 [AS_HELP_STRING([--with-egl-driver-dir=DIR],
1358 [directory for EGL drivers [[default=${libdir}/egl]]])],
1359 [EGL_DRIVER_INSTALL_DIR="$withval"],
1360 [EGL_DRIVER_INSTALL_DIR='${libdir}/egl'])
1361AC_SUBST([EGL_DRIVER_INSTALL_DIR])
1362
Joel Bosveld8acca482009-03-06 08:46:08 +09001363AC_ARG_WITH([xorg-driver-dir],
1364 [AS_HELP_STRING([--with-xorg-driver-dir=DIR],
1365 [Default xorg driver directory[[default=${libdir}/xorg/modules/drivers]]])],
1366 [XORG_DRIVER_INSTALL_DIR="$withval"],
1367 [XORG_DRIVER_INSTALL_DIR="${libdir}/xorg/modules/drivers"])
1368AC_SUBST([XORG_DRIVER_INSTALL_DIR])
1369
Tom Fogal7085dce2009-08-13 19:40:30 -06001370AC_ARG_WITH([max-width],
1371 [AS_HELP_STRING([--with-max-width=N],
1372 [Maximum framebuffer width (4096)])],
1373 [DEFINES="${DEFINES} -DMAX_WIDTH=${withval}";
1374 AS_IF([test "${withval}" -gt "4096"],
1375 [AC_MSG_WARN([Large framebuffer: see s_tritemp.h comments.])])]
1376)
1377AC_ARG_WITH([max-height],
1378 [AS_HELP_STRING([--with-max-height=N],
1379 [Maximum framebuffer height (4096)])],
1380 [DEFINES="${DEFINES} -DMAX_HEIGHT=${withval}";
1381 AS_IF([test "${withval}" -gt "4096"],
1382 [AC_MSG_WARN([Large framebuffer: see s_tritemp.h comments.])])]
1383)
1384
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001385dnl
Dave Airlie81fe1982010-04-22 14:59:29 +10001386dnl Gallium LLVM
1387dnl
1388AC_ARG_ENABLE([gallium-llvm],
1389 [AS_HELP_STRING([--enable-gallium-llvm],
1390 [build gallium LLVM support @<:@default=disabled@:>@])],
1391 [enable_gallium_llvm="$enableval"],
1392 [enable_gallium_llvm=auto])
1393if test "x$enable_gallium_llvm" = xyes; then
Dave Airlie22e8ddc2010-04-25 07:48:48 +10001394 if test "x$LLVM_CONFIG" != xno; then
1395 LLVM_VERSION=`$LLVM_CONFIG --version`
1396 LLVM_CFLAGS=`$LLVM_CONFIG --cflags`
1397 LLVM_LIBS="`$LLVM_CONFIG --libs jit interpreter nativecodegen bitwriter` -lstdc++"
1398
1399 if test "x$HAS_UDIS86" != xno; then
1400 LLVM_LIBS="$LLVM_LIBS -ludis86"
1401 DEFINES="$DEFINES -DHAVE_UDIS86"
Dave Airlie81fe1982010-04-22 14:59:29 +10001402 fi
Dave Airlie22e8ddc2010-04-25 07:48:48 +10001403 LLVM_LDFLAGS=`$LLVM_CONFIG --ldflags`
1404 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS llvmpipe"
Chia-I Wu3ecb8c22010-05-11 12:36:49 +08001405 DEFINES="$DEFINES -DGALLIUM_LLVMPIPE -D__STDC_CONSTANT_MACROS"
Dave Airlie22e8ddc2010-04-25 07:48:48 +10001406 MESA_LLVM=1
1407 else
Dave Airlie81fe1982010-04-22 14:59:29 +10001408 MESA_LLVM=0
Dave Airlie22e8ddc2010-04-25 07:48:48 +10001409 fi
1410else
1411 MESA_LLVM=0
Dave Airlie81fe1982010-04-22 14:59:29 +10001412fi
1413
1414dnl
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001415dnl Gallium helper functions
1416dnl
1417gallium_check_st() {
Chia-I Wud8e0e112010-06-29 14:04:27 +08001418 if test "x$HAVE_ST_DRI" = xyes || test "x$HAVE_ST_XORG" = xyes; then
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001419 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS $1"
1420 fi
1421 if test "x$HAVE_ST_DRI" = xyes && test "x$2" != x; then
1422 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $2"
1423 fi
Chia-I Wud8e0e112010-06-29 14:04:27 +08001424 if test "x$HAVE_ST_XORG" = xyes && test "x$3" != x; then
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001425 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $3"
1426 fi
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001427}
1428
1429
1430dnl
Jakob Bornecrantz60769b22009-11-12 01:28:26 +01001431dnl Gallium SVGA configuration
1432dnl
1433AC_ARG_ENABLE([gallium-svga],
Jakob Bornecrantz5e6fff72009-07-19 09:22:31 +02001434 [AS_HELP_STRING([--enable-gallium-svga],
1435 [build gallium SVGA @<:@default=disabled@:>@])],
Jakob Bornecrantz60769b22009-11-12 01:28:26 +01001436 [enable_gallium_svga="$enableval"],
Jakob Bornecrantz5e6fff72009-07-19 09:22:31 +02001437 [enable_gallium_svga=auto])
Jakob Bornecrantz60769b22009-11-12 01:28:26 +01001438if test "x$enable_gallium_svga" = xyes; then
Xavier Chantryff0987a2010-03-26 11:02:03 +01001439 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS svga"
Chia-I Wud8e0e112010-06-29 14:04:27 +08001440 gallium_check_st "svga/drm" "dri-vmwgfx" "xorg-vmwgfx"
Jakob Bornecrantz5e6fff72009-07-19 09:22:31 +02001441elif test "x$enable_gallium_svga" = xauto; then
1442 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS svga"
Jakob Bornecrantz60769b22009-11-12 01:28:26 +01001443fi
1444
1445dnl
Jakob Bornecrantz7dce4f32010-06-11 13:00:16 +02001446dnl Gallium i915 configuration
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001447dnl
Jakob Bornecrantz7dce4f32010-06-11 13:00:16 +02001448AC_ARG_ENABLE([gallium-i915],
1449 [AS_HELP_STRING([--enable-gallium-i915],
1450 [build gallium i915 @<:@default=disabled@:>@])],
1451 [enable_gallium_i915="$enableval"],
1452 [enable_gallium_i915=auto])
1453if test "x$enable_gallium_i915" = xyes; then
Jakob Bornecrantz44bafca2010-04-17 15:17:33 +01001454 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS i915/sw"
Jakob Bornecrantz7dce4f32010-06-11 13:00:16 +02001455 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS i915"
Chia-I Wud8e0e112010-06-29 14:04:27 +08001456 gallium_check_st "i915/drm" "dri-i915" "xorg-i915"
Jakob Bornecrantz7dce4f32010-06-11 13:00:16 +02001457elif test "x$enable_gallium_i915" = xauto; then
Jakob Bornecrantz44bafca2010-04-17 15:17:33 +01001458 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS i915/sw"
Jakob Bornecrantz7dce4f32010-06-11 13:00:16 +02001459 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS i915"
1460fi
1461
1462dnl
1463dnl Gallium i965 configuration
1464dnl
1465AC_ARG_ENABLE([gallium-i965],
1466 [AS_HELP_STRING([--enable-gallium-i965],
1467 [build gallium i965 @<:@default=disabled@:>@])],
1468 [enable_gallium_i965="$enableval"],
1469 [enable_gallium_i965=auto])
1470if test "x$enable_gallium_i965" = xyes; then
1471 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS i965"
Chia-I Wud8e0e112010-06-29 14:04:27 +08001472 gallium_check_st "i965/drm" "dri-i965" "xorg-i965"
Jakob Bornecrantz7dce4f32010-06-11 13:00:16 +02001473elif test "x$enable_gallium_i965" = xauto; then
1474 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS i965"
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001475fi
1476
1477dnl
1478dnl Gallium Radeon configuration
1479dnl
1480AC_ARG_ENABLE([gallium-radeon],
1481 [AS_HELP_STRING([--enable-gallium-radeon],
1482 [build gallium radeon @<:@default=disabled@:>@])],
1483 [enable_gallium_radeon="$enableval"],
Jakob Bornecrantz877cadb2010-01-14 22:51:25 +00001484 [enable_gallium_radeon=auto])
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001485if test "x$enable_gallium_radeon" = xyes; then
Jakob Bornecrantzd67bd602009-02-20 11:03:18 +00001486 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS r300"
Chia-I Wud8e0e112010-06-29 14:04:27 +08001487 gallium_check_st "radeon/drm" "dri-radeong" "xorg-radeon"
Jakob Bornecrantz877cadb2010-01-14 22:51:25 +00001488elif test "x$enable_gallium_radeon" = xauto; then
1489 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS r300"
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001490fi
1491
1492dnl
Jakob Bornecrantzaeee5262010-05-13 20:29:18 +01001493dnl Gallium Radeon r600g configuration
1494dnl
1495AC_ARG_ENABLE([gallium-r600],
1496 [AS_HELP_STRING([--enable-gallium-r600],
1497 [build gallium radeon @<:@default=disabled@:>@])],
1498 [enable_gallium_r600="$enableval"],
1499 [enable_gallium_r600=auto])
1500if test "x$enable_gallium_r600" = xyes; then
1501 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS r600"
1502 gallium_check_st "r600/drm" "dri-r600"
1503fi
1504
1505dnl
Thierry Vignaud1402ea82009-09-14 11:48:51 -06001506dnl Gallium Nouveau configuration
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001507dnl
1508AC_ARG_ENABLE([gallium-nouveau],
1509 [AS_HELP_STRING([--enable-gallium-nouveau],
1510 [build gallium nouveau @<:@default=disabled@:>@])],
1511 [enable_gallium_nouveau="$enableval"],
1512 [enable_gallium_nouveau=no])
1513if test "x$enable_gallium_nouveau" = xyes; then
Luca Barbierif9d09a22010-02-21 15:13:12 +01001514 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS nouveau nvfx nv50"
Chia-I Wud8e0e112010-06-29 14:04:27 +08001515 gallium_check_st "nouveau/drm" "dri-nouveau" "xorg-nouveau"
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001516fi
1517
Chia-I Wua1306f42010-01-22 15:51:51 +08001518dnl
1519dnl Gallium swrast configuration
1520dnl
1521AC_ARG_ENABLE([gallium-swrast],
1522 [AS_HELP_STRING([--enable-gallium-swrast],
Jakob Bornecrantzf5ba2cd2010-03-24 10:58:45 +01001523 [build gallium swrast @<:@default=auto@:>@])],
Chia-I Wua1306f42010-01-22 15:51:51 +08001524 [enable_gallium_swrast="$enableval"],
1525 [enable_gallium_swrast=auto])
George Sapountzis7b333292010-03-25 17:01:54 +02001526if test "x$enable_gallium_swrast" = xyes || test "x$enable_gallium_swrast" = xauto; then
Jakob Bornecrantz5b1fc142010-03-25 18:29:51 +01001527 if test "x$HAVE_ST_DRI" = xyes; then
George Sapountzis7b333292010-03-25 17:01:54 +02001528 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS dri-swrast"
Jakob Bornecrantzf5ba2cd2010-03-24 10:58:45 +01001529 fi
Chia-I Wua1306f42010-01-22 15:51:51 +08001530fi
1531
Chia-I Wu99a37ed2010-01-05 17:39:05 +08001532dnl prepend CORE_DIRS to SRC_DIRS
1533SRC_DIRS="$CORE_DIRS $SRC_DIRS"
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001534
Dan Nicholsondca1b792007-10-23 09:25:58 -07001535dnl Restore LDFLAGS and CPPFLAGS
1536LDFLAGS="$_SAVE_LDFLAGS"
1537CPPFLAGS="$_SAVE_CPPFLAGS"
1538
1539dnl Substitute the config
Dan Nicholsonf64d6fe2007-12-12 17:57:45 -08001540AC_CONFIG_FILES([configs/autoconf])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001541
Dan Nicholsonaab38cf2007-12-11 08:21:51 -08001542dnl Replace the configs/current symlink
Dan Nicholsone14ebbc2008-05-06 11:28:43 -07001543AC_CONFIG_COMMANDS([configs],[
Dan Nicholsonaab38cf2007-12-11 08:21:51 -08001544if test -f configs/current || test -L configs/current; then
1545 rm -f configs/current
1546fi
1547ln -s autoconf configs/current
Dan Nicholsone14ebbc2008-05-06 11:28:43 -07001548])
1549
1550AC_OUTPUT
Dan Nicholsonaab38cf2007-12-11 08:21:51 -08001551
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001552dnl
1553dnl Output some configuration info for the user
1554dnl
1555echo ""
1556echo " prefix: $prefix"
1557echo " exec_prefix: $exec_prefix"
1558echo " libdir: $libdir"
Dan Nicholson11ac5b22008-07-03 09:17:44 -07001559echo " includedir: $includedir"
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001560
1561dnl Driver info
1562echo ""
1563echo " Driver: $mesa_driver"
Dan Nicholson544ab202007-12-30 08:41:53 -08001564if echo "$DRIVER_DIRS" | grep 'osmesa' >/dev/null 2>&1; then
1565 echo " OSMesa: lib$OSMESA_LIB"
1566else
1567 echo " OSMesa: no"
1568fi
1569if test "$mesa_driver" = dri; then
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001570 # cleanup the drivers var
1571 dri_dirs=`echo $DRI_DIRS | $SED 's/^ *//;s/ */ /;s/ *$//'`
Florent Thoumieb5095ab2008-07-28 14:44:43 +01001572if test "x$DRI_DIRS" = x; then
1573 echo " DRI drivers: no"
1574else
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001575 echo " DRI drivers: $dri_dirs"
Florent Thoumieb5095ab2008-07-28 14:44:43 +01001576fi
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001577 echo " DRI driver dir: $DRI_DRIVER_INSTALL_DIR"
Dan Nicholson544ab202007-12-30 08:41:53 -08001578fi
RALOVICH, Kristóf5f19f5c2008-11-04 11:53:32 +01001579echo " Use XCB: $enable_xcb"
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001580
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001581echo ""
Eric Anholt1a8b1272010-05-21 12:17:24 -07001582if test "x$MESA_LLVM" = x1; then
Jakob Bornecrantzfe0fe672010-04-28 13:38:58 +01001583 echo " llvm: yes"
1584 echo " llvm-config: $LLVM_CONFIG"
1585 echo " llvm-version: $LLVM_VERSION"
1586else
1587 echo " llvm: no"
1588fi
1589
1590echo ""
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001591if echo "$SRC_DIRS" | grep 'gallium' >/dev/null 2>&1; then
1592 echo " Gallium: yes"
1593 echo " Gallium dirs: $GALLIUM_DIRS"
Keith Whitwell51bff092010-03-11 14:43:00 +00001594 echo " Target dirs: $GALLIUM_TARGET_DIRS"
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001595 echo " Winsys dirs: $GALLIUM_WINSYS_DIRS"
Jakob Bornecrantzd67bd602009-02-20 11:03:18 +00001596 echo " Driver dirs: $GALLIUM_DRIVERS_DIRS"
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001597 echo " Trackers dirs: $GALLIUM_STATE_TRACKERS_DIRS"
Chia-I Wu63ab2502010-05-05 15:38:02 +08001598 if test "x$HAVE_ST_EGL" = xyes; then
1599 echo " EGL client APIs: $EGL_CLIENT_APIS"
1600 fi
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001601else
1602 echo " Gallium: no"
1603fi
1604
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001605dnl Libraries
1606echo ""
1607echo " Shared libs: $enable_shared"
1608echo " Static libs: $enable_static"
Kristian Høgsberg42fa0092010-02-03 10:18:28 -05001609if test "$enable_egl" = yes; then
1610 echo " EGL: $EGL_DRIVERS_DIRS"
Chia-I Wuda39d5d2010-06-17 16:07:46 +08001611 echo " EGL platforms: $EGL_PLATFORMS"
Kristian Høgsberg42fa0092010-02-03 10:18:28 -05001612else
1613 echo " EGL: no"
1614fi
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001615echo " GLU: $enable_glu"
Dan Nicholson776c60d2008-07-18 07:40:41 -07001616echo " GLw: $enable_glw (Motif: $enable_motif)"
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001617echo " glut: $enable_glut"
1618
Dan Nicholson16a07fb2007-12-12 09:12:15 -08001619dnl Compiler options
1620# cleanup the CFLAGS/CXXFLAGS/DEFINES vars
1621cflags=`echo $CFLAGS $OPT_FLAGS $PIC_FLAGS $ARCH_FLAGS | \
1622 $SED 's/^ *//;s/ */ /;s/ *$//'`
1623cxxflags=`echo $CXXFLAGS $OPT_FLAGS $PIC_FLAGS $ARCH_FLAGS | \
1624 $SED 's/^ *//;s/ */ /;s/ *$//'`
1625defines=`echo $DEFINES $ASM_FLAGS | $SED 's/^ *//;s/ */ /;s/ *$//'`
1626echo ""
1627echo " CFLAGS: $cflags"
1628echo " CXXFLAGS: $cxxflags"
1629echo " Macros: $defines"
1630
Dan Nicholsondca1b792007-10-23 09:25:58 -07001631echo ""
Dan Nicholsonb6459422008-03-24 10:01:50 -07001632echo " Run '${MAKE-make}' to build Mesa"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001633echo ""