blob: 6741024fd8340a28e01b2f504611ed85abf6667b [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],
7 [m4_esyscmd([${MAKE-make} -s -f bin/version.mk version | tr -d '\n'])])
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* )
268 LIB_EXTENSION='dll' ;;
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"])])
413
Dan Nicholson985e1cd2008-06-04 13:17:06 -0700414dnl See if posix_memalign is available
415AC_CHECK_FUNC([posix_memalign], [DEFINES="$DEFINES -DHAVE_POSIX_MEMALIGN"])
416
Dan Nicholson871125a2008-06-04 13:00:35 -0700417dnl SELinux awareness.
418AC_ARG_ENABLE([selinux],
419 [AS_HELP_STRING([--enable-selinux],
420 [Build SELinux-aware Mesa @<:@default=disabled@:>@])],
421 [MESA_SELINUX="$enableval"],
422 [MESA_SELINUX=no])
423if test "x$enable_selinux" = "xyes"; then
424 AC_CHECK_HEADER([selinux/selinux.h],[],
425 [AC_MSG_ERROR([SELinux headers not found])])
426 AC_CHECK_LIB([selinux],[is_selinux_enabled],[],
427 [AC_MSG_ERROR([SELinux library not found])])
428 SELINUX_LIBS="-lselinux"
429 DEFINES="$DEFINES -DMESA_SELINUX"
430fi
431
Dan Nicholson871125a2008-06-04 13:00:35 -0700432dnl
Dan Nicholsona1307182007-12-12 17:49:49 -0800433dnl Driver configuration. Options are xlib, dri and osmesa right now.
Kristian Høgsberg43875802010-02-25 15:49:18 -0500434dnl More later: fbdev, ...
Dan Nicholson44d99142007-12-05 18:47:01 -0800435dnl
Eric Anholt711222b2008-04-18 15:03:01 -0700436default_driver="xlib"
437
438case "$host_os" in
439linux*)
440 case "$host_cpu" in
David S. Miller32dc28a2009-02-24 20:06:05 -0700441 i*86|x86_64|powerpc*|sparc*) default_driver="dri";;
Eric Anholt711222b2008-04-18 15:03:01 -0700442 esac
443 ;;
Julien Cristau98fcdf32008-10-28 18:56:05 +0100444*freebsd* | dragonfly*)
Eric Anholt711222b2008-04-18 15:03:01 -0700445 case "$host_cpu" in
Robert Noland48f05432009-04-10 11:41:27 -0500446 i*86|x86_64|powerpc*|sparc*) default_driver="dri";;
Eric Anholt711222b2008-04-18 15:03:01 -0700447 esac
448 ;;
449esac
450
Dan Nicholson297e16c2008-05-05 15:42:53 -0700451AC_ARG_WITH([driver],
Dan Nicholson44d99142007-12-05 18:47:01 -0800452 [AS_HELP_STRING([--with-driver=DRIVER],
Eric Anholt711222b2008-04-18 15:03:01 -0700453 [driver for Mesa: xlib,dri,osmesa @<:@default=dri when available, or xlib@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700454 [mesa_driver="$withval"],
455 [mesa_driver="$default_driver"])
Dan Nicholson44d99142007-12-05 18:47:01 -0800456dnl Check for valid option
457case "x$mesa_driver" in
Dan Nicholsona1307182007-12-12 17:49:49 -0800458xxlib|xdri|xosmesa)
Dan Nicholson44d99142007-12-05 18:47:01 -0800459 ;;
460*)
461 AC_MSG_ERROR([Driver '$mesa_driver' is not a valid option])
462 ;;
463esac
464
465dnl
466dnl Driver specific build directories
Dan Nicholsondca1b792007-10-23 09:25:58 -0700467dnl
Chia-I Wu99a37ed2010-01-05 17:39:05 +0800468
469dnl this variable will be prepended to SRC_DIRS and is not exported
Chia-I Wu296adbd2010-04-26 12:56:44 +0800470CORE_DIRS="mapi/glapi glsl mesa"
Chia-I Wu99a37ed2010-01-05 17:39:05 +0800471
472SRC_DIRS="glew"
Dan Nicholsondca1b792007-10-23 09:25:58 -0700473GLU_DIRS="sgi"
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100474GALLIUM_DIRS="auxiliary drivers state_trackers"
Keith Whitwell51bff092010-03-11 14:43:00 +0000475GALLIUM_TARGET_DIRS=""
Jakob Bornecrantzc9f98672010-03-16 13:54:18 +0000476GALLIUM_WINSYS_DIRS="sw"
Jakob Bornecrantzd60b2c62009-06-24 02:42:41 +0200477GALLIUM_DRIVERS_DIRS="softpipe failover trace identity"
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100478GALLIUM_STATE_TRACKERS_DIRS=""
479
Dan Nicholson44d99142007-12-05 18:47:01 -0800480case "$mesa_driver" in
Dan Nicholsona1307182007-12-12 17:49:49 -0800481xlib)
Dan Nicholson44d99142007-12-05 18:47:01 -0800482 DRIVER_DIRS="x11"
Jakob Bornecrantzc9f98672010-03-16 13:54:18 +0000483 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/xlib"
Keith Whitwell51bff092010-03-11 14:43:00 +0000484 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS libgl-xlib"
Dan Nicholson44d99142007-12-05 18:47:01 -0800485 ;;
486dri)
Kristian Høgsberg6e8897f2010-02-09 09:58:36 -0500487 SRC_DIRS="$SRC_DIRS glx"
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100488 DRIVER_DIRS="dri"
George Sapountzis7b333292010-03-25 17:01:54 +0200489 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/xlib sw/dri sw/drm"
Dan Nicholson44d99142007-12-05 18:47:01 -0800490 ;;
Dan Nicholson979ff512007-12-05 18:47:01 -0800491osmesa)
492 DRIVER_DIRS="osmesa"
493 ;;
Dan Nicholson44d99142007-12-05 18:47:01 -0800494esac
Dan Nicholson297e16c2008-05-05 15:42:53 -0700495AC_SUBST([SRC_DIRS])
496AC_SUBST([GLU_DIRS])
497AC_SUBST([DRIVER_DIRS])
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100498AC_SUBST([GALLIUM_DIRS])
Keith Whitwell51bff092010-03-11 14:43:00 +0000499AC_SUBST([GALLIUM_TARGET_DIRS])
Jerome Glisse14f79d42008-12-18 13:36:07 +0100500AC_SUBST([GALLIUM_WINSYS_DIRS])
Jakob Bornecrantzd67bd602009-02-20 11:03:18 +0000501AC_SUBST([GALLIUM_DRIVERS_DIRS])
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100502AC_SUBST([GALLIUM_STATE_TRACKERS_DIRS])
Dave Airlie81fe1982010-04-22 14:59:29 +1000503AC_SUBST([MESA_LLVM])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700504
505dnl
Dan Nicholson8e4d1472007-11-15 08:59:57 -0800506dnl User supplied program configuration
507dnl
508if test -d "$srcdir/progs/demos"; then
509 default_demos=yes
510else
511 default_demos=no
512fi
Dan Nicholson297e16c2008-05-05 15:42:53 -0700513AC_ARG_WITH([demos],
Dan Nicholson8e4d1472007-11-15 08:59:57 -0800514 [AS_HELP_STRING([--with-demos@<:@=DIRS...@:>@],
515 [optional comma delimited demo directories to build
Dan Nicholsonc79c93c2007-12-12 18:13:04 -0800516 @<:@default=auto if source available@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700517 [with_demos="$withval"],
518 [with_demos="$default_demos"])
Dan Nicholson8e4d1472007-11-15 08:59:57 -0800519if test "x$with_demos" = x; then
520 with_demos=no
521fi
522
523dnl If $with_demos is yes, directories will be added as libs available
524PROGRAM_DIRS=""
525case "$with_demos" in
Dan Nicholsonb9576552008-03-10 14:05:46 -0700526no) ;;
527yes)
528 # If the driver isn't osmesa, we have libGL and can build xdemos
529 if test "$mesa_driver" != osmesa; then
530 PROGRAM_DIRS="xdemos"
531 fi
532 ;;
Dan Nicholson8e4d1472007-11-15 08:59:57 -0800533*)
534 # verify the requested demos directories exist
535 demos=`IFS=,; echo $with_demos`
536 for demo in $demos; do
537 test -d "$srcdir/progs/$demo" || \
538 AC_MSG_ERROR([Program directory '$demo' doesn't exist])
539 done
540 PROGRAM_DIRS="$demos"
541 ;;
542esac
543
544dnl
Dan Nicholsone6a06092008-05-05 15:16:22 -0700545dnl Find out if X is available. The variable have_x is set if libX11 is
Dan Nicholson99803a42008-07-01 09:03:15 -0700546dnl found to mimic AC_PATH_XTRA.
Dan Nicholsondca1b792007-10-23 09:25:58 -0700547dnl
548if test -n "$PKG_CONFIG"; then
549 AC_MSG_CHECKING([pkg-config files for X11 are available])
Dan Nicholsone6a06092008-05-05 15:16:22 -0700550 PKG_CHECK_EXISTS([x11],[
Dan Nicholsondca1b792007-10-23 09:25:58 -0700551 x11_pkgconfig=yes
552 have_x=yes
Dan Nicholsone6a06092008-05-05 15:16:22 -0700553 ],[
Dan Nicholsondca1b792007-10-23 09:25:58 -0700554 x11_pkgconfig=no
Dan Nicholsone6a06092008-05-05 15:16:22 -0700555 ])
556 AC_MSG_RESULT([$x11_pkgconfig])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700557else
558 x11_pkgconfig=no
559fi
560dnl Use the autoconf macro if no pkg-config files
Jeff Smith8d86d392010-03-12 18:55:09 -0600561if test "$x11_pkgconfig" = yes; then
Dan Nicholsone725ef12010-03-15 20:53:56 -0700562 PKG_CHECK_MODULES([X11], [x11])
Jeff Smith8d86d392010-03-12 18:55:09 -0600563else
Dan Nicholsondca1b792007-10-23 09:25:58 -0700564 AC_PATH_XTRA
Dan Nicholsone725ef12010-03-15 20:53:56 -0700565 test -z "$X11_CFLAGS" && X11_CFLAGS="$X_CFLAGS"
566 test -z "$X11_LIBS" && X11_LIBS="$X_LIBS -lX11"
567 AC_SUBST([X11_CFLAGS])
568 AC_SUBST([X11_LIBS])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700569fi
570
Dan Nicholson99803a42008-07-01 09:03:15 -0700571dnl Try to tell the user that the --x-* options are only used when
572dnl pkg-config is not available. This must be right after AC_PATH_XTRA.
573m4_divert_once([HELP_BEGIN],
574[These options are only used when the X libraries cannot be found by the
575pkg-config utility.])
576
Dan Nicholson44d99142007-12-05 18:47:01 -0800577dnl We need X for xlib and dri, so bomb now if it's not found
578case "$mesa_driver" in
Dan Nicholsona1307182007-12-12 17:49:49 -0800579xlib|dri)
Dan Nicholson44d99142007-12-05 18:47:01 -0800580 if test "$no_x" = yes; then
581 AC_MSG_ERROR([X11 development libraries needed for $mesa_driver driver])
582 fi
583 ;;
584esac
Dan Nicholsondca1b792007-10-23 09:25:58 -0700585
Dan Nicholson2d709fe2008-05-06 10:51:49 -0700586dnl XCB - this is only used for GLX right now
587AC_ARG_ENABLE([xcb],
588 [AS_HELP_STRING([--enable-xcb],
589 [use XCB for GLX @<:@default=disabled@:>@])],
590 [enable_xcb="$enableval"],
591 [enable_xcb=no])
592if test "x$enable_xcb" = xyes; then
593 DEFINES="$DEFINES -DUSE_XCB"
594else
595 enable_xcb=no
596fi
597
Dan Nicholson44d99142007-12-05 18:47:01 -0800598dnl
599dnl libGL configuration per driver
600dnl
601case "$mesa_driver" in
Dan Nicholsona1307182007-12-12 17:49:49 -0800602xlib)
Dan Nicholson44d99142007-12-05 18:47:01 -0800603 if test "$x11_pkgconfig" = yes; then
Dan Nicholson297e16c2008-05-05 15:42:53 -0700604 PKG_CHECK_MODULES([XLIBGL], [x11 xext])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800605 GL_PC_REQ_PRIV="x11 xext"
Dan Nicholsona1307182007-12-12 17:49:49 -0800606 X11_INCLUDES="$X11_INCLUDES $XLIBGL_CFLAGS"
607 GL_LIB_DEPS="$XLIBGL_LIBS"
Dan Nicholson44d99142007-12-05 18:47:01 -0800608 else
609 # should check these...
610 X11_INCLUDES="$X11_INCLUDES $X_CFLAGS"
611 GL_LIB_DEPS="$X_LIBS -lX11 -lXext"
Dan Nicholson71e208b2008-11-24 11:01:57 -0800612 GL_PC_LIB_PRIV="$GL_LIB_DEPS"
613 GL_PC_CFLAGS="$X11_INCLUDES"
Dan Nicholson44d99142007-12-05 18:47:01 -0800614 fi
Alan Coopersmith3cf6e622009-03-23 16:51:54 -0700615 GL_LIB_DEPS="$GL_LIB_DEPS $SELINUX_LIBS -lm -lpthread"
616 GL_PC_LIB_PRIV="$GL_PC_LIB_PRIV $SELINUX_LIBS -lm -lpthread"
Dan Nicholson88586332007-11-15 08:59:57 -0800617
618 # if static, move the external libraries to the programs
619 # and empty the libraries for libGL
620 if test "$enable_static" = yes; then
621 APP_LIB_DEPS="$APP_LIB_DEPS $GL_LIB_DEPS"
622 GL_LIB_DEPS=""
623 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800624 ;;
625dri)
Dan Nicholson88586332007-11-15 08:59:57 -0800626 # DRI must be shared, I think
627 if test "$enable_static" = yes; then
628 AC_MSG_ERROR([Can't use static libraries for DRI drivers])
629 fi
630
Dan Nicholson44d99142007-12-05 18:47:01 -0800631 # Check for libdrm
Dan Nicholsoncc77e8f2008-05-05 14:38:22 -0700632 PKG_CHECK_MODULES([LIBDRM], [libdrm >= $LIBDRM_REQUIRED])
633 PKG_CHECK_MODULES([DRI2PROTO], [dri2proto >= $DRI2PROTO_REQUIRED])
Jesse Barnesf2f83d92010-01-11 17:28:10 -0500634 PKG_CHECK_MODULES([GLPROTO], [glproto >= $GLPROTO_REQUIRED])
Jesse Barnesed59b132010-01-13 15:48:14 -0500635 GL_PC_REQ_PRIV="libdrm >= $LIBDRM_REQUIRED dri2proto >= $DRI2PROTO_REQUIRED glproto >= $GLPROTO_REQUIRED"
636 DRI_PC_REQ_PRIV="libdrm >= $LIBDRM_REQUIRED"
Dan Nicholson44d99142007-12-05 18:47:01 -0800637
638 # find the DRI deps for libGL
639 if test "$x11_pkgconfig" = yes; then
Dan Nicholson2d709fe2008-05-06 10:51:49 -0700640 # add xcb modules if necessary
641 dri_modules="x11 xext xxf86vm xdamage xfixes"
642 if test "$enable_xcb" = yes; then
643 dri_modules="$dri_modules x11-xcb xcb-glx"
644 fi
645
646 PKG_CHECK_MODULES([DRIGL], [$dri_modules])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800647 GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV $dri_modules"
Dan Nicholson44d99142007-12-05 18:47:01 -0800648 X11_INCLUDES="$X11_INCLUDES $DRIGL_CFLAGS"
649 GL_LIB_DEPS="$DRIGL_LIBS"
650 else
651 # should check these...
652 X11_INCLUDES="$X11_INCLUDES $X_CFLAGS"
653 GL_LIB_DEPS="$X_LIBS -lX11 -lXext -lXxf86vm -lXdamage -lXfixes"
Dan Nicholson71e208b2008-11-24 11:01:57 -0800654 GL_PC_LIB_PRIV="$GL_LIB_DEPS"
655 GL_PC_CFLAGS="$X11_INCLUDES"
Dan Nicholson2d709fe2008-05-06 10:51:49 -0700656
657 # XCB can only be used from pkg-config
658 if test "$enable_xcb" = yes; then
659 PKG_CHECK_MODULES([XCB],[x11-xcb xcb-glx])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800660 GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV x11-xcb xcb-glx"
Dan Nicholson2d709fe2008-05-06 10:51:49 -0700661 X11_INCLUDES="$X11_INCLUDES $XCB_CFLAGS"
662 GL_LIB_DEPS="$GL_LIB_DEPS $XCB_LIBS"
663 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800664 fi
665
666 # need DRM libs, -lpthread, etc.
Alan Coopersmith3cf6e622009-03-23 16:51:54 -0700667 GL_LIB_DEPS="$GL_LIB_DEPS $LIBDRM_LIBS -lm -lpthread $DLOPEN_LIBS"
668 GL_PC_LIB_PRIV="-lm -lpthread $DLOPEN_LIBS"
Kristian Høgsberg9339c122010-03-05 19:01:43 -0500669 GLESv1_CM_LIB_DEPS="$LIBDRM_LIBS -lm -lpthread $DLOPEN_LIBS"
Kristian Høgsberg74399d42010-05-02 09:51:13 -0400670 GLESv1_CM_PC_LIB_PRIV="-lm -lpthread $DLOPEN_LIBS"
Kristian Høgsberg9339c122010-03-05 19:01:43 -0500671 GLESv2_LIB_DEPS="$LIBDRM_LIBS -lm -lpthread $DLOPEN_LIBS"
Kristian Høgsberg74399d42010-05-02 09:51:13 -0400672 GLESv2_PC_LIB_PRIV="-lm -lpthread $DLOPEN_LIBS"
Dan Nicholson44d99142007-12-05 18:47:01 -0800673 ;;
Dan Nicholson979ff512007-12-05 18:47:01 -0800674osmesa)
675 # No libGL for osmesa
Alan Coopersmith3cf6e622009-03-23 16:51:54 -0700676 GL_LIB_DEPS=""
Dan Nicholson979ff512007-12-05 18:47:01 -0800677 ;;
Dan Nicholson44d99142007-12-05 18:47:01 -0800678esac
Dan Nicholson297e16c2008-05-05 15:42:53 -0700679AC_SUBST([GL_LIB_DEPS])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800680AC_SUBST([GL_PC_REQ_PRIV])
681AC_SUBST([GL_PC_LIB_PRIV])
682AC_SUBST([GL_PC_CFLAGS])
683AC_SUBST([DRI_PC_REQ_PRIV])
Kristian Høgsberg9339c122010-03-05 19:01:43 -0500684AC_SUBST([GLESv1_LIB_DEPS])
Kristian Høgsberg9e4f2da2010-05-04 14:13:11 -0400685AC_SUBST([GLESv1_CM_PC_LIB_PRIV])
Kristian Høgsberg9339c122010-03-05 19:01:43 -0500686AC_SUBST([GLESv2_LIB_DEPS])
Kristian Høgsberg9e4f2da2010-05-04 14:13:11 -0400687AC_SUBST([GLESv2_PC_LIB_PRIV])
688
Dan Nicholsondca1b792007-10-23 09:25:58 -0700689
690dnl
691dnl More X11 setup
692dnl
Dan Nicholsona1307182007-12-12 17:49:49 -0800693if test "$mesa_driver" = xlib; then
Dan Nicholsondca1b792007-10-23 09:25:58 -0700694 DEFINES="$DEFINES -DUSE_XSHM"
695fi
696
697dnl
Dan Nicholson44d99142007-12-05 18:47:01 -0800698dnl More DRI setup
699dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -0700700AC_ARG_ENABLE([glx-tls],
Dan Nicholson44d99142007-12-05 18:47:01 -0800701 [AS_HELP_STRING([--enable-glx-tls],
Dan Nicholson79ad4582007-12-07 19:11:01 -0800702 [enable TLS support in GLX @<:@default=disabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700703 [GLX_USE_TLS="$enableval"],
704 [GLX_USE_TLS=no])
Dan Nicholson44d99142007-12-05 18:47:01 -0800705dnl Directory for DRI drivers
Dan Nicholson297e16c2008-05-05 15:42:53 -0700706AC_ARG_WITH([dri-driverdir],
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800707 [AS_HELP_STRING([--with-dri-driverdir=DIR],
Dan Nicholson5dbbde52008-05-06 06:21:41 -0700708 [directory for the DRI drivers @<:@${libdir}/dri@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700709 [DRI_DRIVER_INSTALL_DIR="$withval"],
Dan Nicholson5dbbde52008-05-06 06:21:41 -0700710 [DRI_DRIVER_INSTALL_DIR='${libdir}/dri'])
Dan Nicholson297e16c2008-05-05 15:42:53 -0700711AC_SUBST([DRI_DRIVER_INSTALL_DIR])
Chow Loong Jin35506de2009-10-28 14:34:14 +0800712dnl Extra search path for DRI drivers
713AC_ARG_WITH([dri-searchpath],
714 [AS_HELP_STRING([--with-dri-searchpath=DIRS...],
715 [semicolon delimited DRI driver search directories @<:@${libdir}/dri@:>@])],
716 [DRI_DRIVER_SEARCH_DIR="$withval"],
717 [DRI_DRIVER_SEARCH_DIR='${DRI_DRIVER_INSTALL_DIR}'])
718AC_SUBST([DRI_DRIVER_SEARCH_DIR])
Dan Nicholson44d99142007-12-05 18:47:01 -0800719dnl Direct rendering or just indirect rendering
Dan Nicholson297e16c2008-05-05 15:42:53 -0700720AC_ARG_ENABLE([driglx-direct],
Dan Nicholson79ad4582007-12-07 19:11:01 -0800721 [AS_HELP_STRING([--disable-driglx-direct],
722 [enable direct rendering in GLX for DRI @<:@default=enabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700723 [driglx_direct="$enableval"],
724 [driglx_direct="yes"])
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800725dnl Which drivers to build - default is chosen by platform
Dan Nicholson297e16c2008-05-05 15:42:53 -0700726AC_ARG_WITH([dri-drivers],
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800727 [AS_HELP_STRING([--with-dri-drivers@<:@=DIRS...@:>@],
Dan Nicholson5cae1b72008-06-30 10:28:02 -0700728 [comma delimited DRI drivers list, e.g.
Michel Dänzercade0712009-07-10 14:49:46 +0200729 "swrast,i965,radeon" @<:@default=auto@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700730 [with_dri_drivers="$withval"],
731 [with_dri_drivers=yes])
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800732if test "x$with_dri_drivers" = x; then
733 with_dri_drivers=no
734fi
735
Kristian Høgsberg0f680322010-04-27 13:42:33 -0400736dnl Determine which APIs to support
737AC_ARG_ENABLE([opengl],
738 [AS_HELP_STRING([--disable-opengl],
739 [disable support for standard OpenGL API @<:@default=no@:>@])],
740 [enable_opengl="$enableval"],
741 [enable_opengl=yes])
742AC_ARG_ENABLE([gles1],
743 [AS_HELP_STRING([--enable-gles1],
744 [enable support for OpenGL ES 1.x API @<:@default=no@:>@])],
745 [enable_gles1="$enableval"],
746 [enable_gles1=no])
747AC_ARG_ENABLE([gles2],
748 [AS_HELP_STRING([--enable-gles2],
749 [enable support for OpenGL ES 2.x API @<:@default=no@:>@])],
750 [enable_gles2="$enableval"],
751 [enable_gles2=no])
752
753API_DEFINES=""
Kristian Høgsberg9fd5fa02010-05-02 10:14:53 -0400754APIS=""
Kristian Høgsberg0f680322010-04-27 13:42:33 -0400755if test "x$enable_opengl" = xno; then
756 API_DEFINES="$API_DEFINES -DFEATURE_GL=0"
757else
758 API_DEFINES="$API_DEFINES -DFEATURE_GL=1"
Kristian Høgsberg9fd5fa02010-05-02 10:14:53 -0400759 APIS="$APIS gl"
Kristian Høgsberg0f680322010-04-27 13:42:33 -0400760fi
761if test "x$enable_gles1" = xyes; then
762 API_DEFINES="$API_DEFINES -DFEATURE_ES1=1"
Kristian Høgsberg9fd5fa02010-05-02 10:14:53 -0400763 APIS="$APIS es1"
Kristian Høgsberg0f680322010-04-27 13:42:33 -0400764fi
765if test "x$enable_gles2" = xyes; then
766 API_DEFINES="$API_DEFINES -DFEATURE_ES2=1"
Kristian Høgsberg9fd5fa02010-05-02 10:14:53 -0400767 APIS="$APIS es2"
Kristian Høgsberg0f680322010-04-27 13:42:33 -0400768fi
Kristian Høgsberg2df3c362010-05-02 14:52:39 -0400769if test "x$enable_gles1" = xyes -o "x$enable_gles2" = xyes; then
Chia-I Wu296adbd2010-04-26 12:56:44 +0800770 CORE_DIRS="mapi/es1api mapi/es2api $CORE_DIRS"
Kristian Høgsberg9339c122010-03-05 19:01:43 -0500771 SRC_DIRS="$SRC_DIRS gles"
772fi
Kristian Høgsberg0f680322010-04-27 13:42:33 -0400773AC_SUBST([API_DEFINES])
Kristian Høgsberg9fd5fa02010-05-02 10:14:53 -0400774AC_SUBST([APIS])
Kristian Høgsberg0f680322010-04-27 13:42:33 -0400775
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800776dnl If $with_dri_drivers is yes, directories will be added through
777dnl platform checks
778DRI_DIRS=""
779case "$with_dri_drivers" in
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100780no) ;;
781yes)
782 DRI_DIRS="yes"
783 ;;
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800784*)
785 # verify the requested driver directories exist
Dan Nicholsone6e4f252008-07-06 14:17:39 -0700786 dri_drivers=`IFS=', '; echo $with_dri_drivers`
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800787 for driver in $dri_drivers; do
788 test -d "$srcdir/src/mesa/drivers/dri/$driver" || \
789 AC_MSG_ERROR([DRI driver directory '$driver' doesn't exist])
790 done
791 DRI_DIRS="$dri_drivers"
792 ;;
793esac
794
Dan Nicholson44d99142007-12-05 18:47:01 -0800795dnl Set DRI_DIRS, DEFINES and LIB_DEPS
796if test "$mesa_driver" = dri; then
797 # Use TLS in GLX?
798 if test "x$GLX_USE_TLS" = xyes; then
799 DEFINES="$DEFINES -DGLX_USE_TLS -DPTHREADS"
800 fi
801
Dan Nicholson44d99142007-12-05 18:47:01 -0800802 # Platform specific settings and drivers to build
803 case "$host_os" in
804 linux*)
805 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
Dan Nicholson44d99142007-12-05 18:47:01 -0800806 if test "x$driglx_direct" = xyes; then
807 DEFINES="$DEFINES -DGLX_DIRECT_RENDERING"
808 fi
Jerome Glisse14f79d42008-12-18 13:36:07 +0100809 DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING -DHAVE_ALIAS"
Dan Nicholson44d99142007-12-05 18:47:01 -0800810
811 case "$host_cpu" in
Dan Nicholson44d99142007-12-05 18:47:01 -0800812 x86_64)
Kristian Høgsberg79aeafd2010-02-25 16:12:58 -0500813 # sis is missing because they have not be converted to use
814 # the new interface. i810 are missing because there is no
815 # x86-64 system where they could *ever* be used.
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100816 if test "x$DRI_DIRS" = "xyes"; then
Alex Deucher4138bdb2009-04-08 15:16:35 -0400817 DRI_DIRS="i915 i965 mach64 mga r128 r200 r300 r600 radeon \
George Sapountzis280bf892008-05-11 14:43:40 +0300818 savage tdfx unichrome swrast"
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800819 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800820 ;;
821 powerpc*)
Dan Nicholsona76e2452007-12-07 11:25:08 -0800822 # Build only the drivers for cards that exist on PowerPC.
823 # At some point MGA will be added, but not yet.
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100824 if test "x$DRI_DIRS" = "xyes"; then
Alex Deucher4138bdb2009-04-08 15:16:35 -0400825 DRI_DIRS="mach64 r128 r200 r300 r600 radeon tdfx swrast"
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800826 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800827 ;;
Dave Airlie2b0e75e2008-06-12 12:06:50 +1000828 sparc*)
829 # Build only the drivers for cards that exist on sparc`
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100830 if test "x$DRI_DIRS" = "xyes"; then
Kristian Høgsberg79aeafd2010-02-25 16:12:58 -0500831 DRI_DIRS="mach64 r128 r200 r300 r600 radeon swrast"
Dave Airlie2b0e75e2008-06-12 12:06:50 +1000832 fi
833 ;;
Dan Nicholson44d99142007-12-05 18:47:01 -0800834 esac
835 ;;
Hasso Tepper9f8df2d2008-04-09 10:51:21 -0700836 freebsd* | dragonfly*)
Dan Nicholson44d99142007-12-05 18:47:01 -0800837 DEFINES="$DEFINES -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1"
838 DEFINES="$DEFINES -DIN_DRI_DRIVER -DHAVE_ALIAS"
839 DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING"
840 if test "x$driglx_direct" = xyes; then
841 DEFINES="$DEFINES -DGLX_DIRECT_RENDERING"
842 fi
843 if test "x$GXX" = xyes; then
844 CXXFLAGS="$CXXFLAGS -ansi -pedantic"
845 fi
846
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100847 if test "x$DRI_DIRS" = "xyes"; then
Alex Deucher4138bdb2009-04-08 15:16:35 -0400848 DRI_DIRS="i810 i915 i965 mach64 mga r128 r200 r300 r600 radeon tdfx \
George Sapountzis280bf892008-05-11 14:43:40 +0300849 unichrome savage sis swrast"
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800850 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800851 ;;
Samuel Thibaultd18dd6a2009-04-23 05:43:22 -0700852 gnu*)
853 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
854 DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING -DHAVE_ALIAS"
855 ;;
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -0700856 solaris*)
857 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
858 DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING"
859 if test "x$driglx_direct" = xyes; then
860 DEFINES="$DEFINES -DGLX_DIRECT_RENDERING"
861 fi
862 ;;
Dan Nicholson44d99142007-12-05 18:47:01 -0800863 esac
Dan Nicholson112a40e2008-02-21 10:17:19 -0800864
865 # default drivers
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100866 if test "x$DRI_DIRS" = "xyes"; then
Corbin Simpson8e4657a2009-10-22 12:29:30 -0700867 DRI_DIRS="i810 i915 i965 mach64 mga r128 r200 r300 r600 radeon \
Kristian Høgsberg79aeafd2010-02-25 16:12:58 -0500868 savage sis tdfx unichrome swrast"
Dan Nicholson112a40e2008-02-21 10:17:19 -0800869 fi
870
Dan Nicholson44d99142007-12-05 18:47:01 -0800871 DRI_DIRS=`echo "$DRI_DIRS" | $SED 's/ */ /g'`
872
873 # Check for expat
874 EXPAT_INCLUDES=""
875 EXPAT_LIB=-lexpat
Dan Nicholson297e16c2008-05-05 15:42:53 -0700876 AC_ARG_WITH([expat],
877 [AS_HELP_STRING([--with-expat=DIR],
878 [expat install directory])],[
Dan Nicholson44d99142007-12-05 18:47:01 -0800879 EXPAT_INCLUDES="-I$withval/include"
880 CPPFLAGS="$CPPFLAGS $EXPAT_INCLUDES"
881 LDFLAGS="$LDFLAGS -L$withval/$LIB_DIR"
882 EXPAT_LIB="-L$withval/$LIB_DIR -lexpat"
883 ])
Dan Nicholson297e16c2008-05-05 15:42:53 -0700884 AC_CHECK_HEADER([expat.h],[],[AC_MSG_ERROR([Expat required for DRI.])])
885 AC_CHECK_LIB([expat],[XML_ParserCreate],[],
886 [AC_MSG_ERROR([Expat required for DRI.])])
Dan Nicholson44d99142007-12-05 18:47:01 -0800887
888 # put all the necessary libs together
Eric Anholt050c5332008-03-20 17:28:58 -0700889 DRI_LIB_DEPS="$SELINUX_LIBS $LIBDRM_LIBS $EXPAT_LIB -lm -lpthread $DLOPEN_LIBS"
Dan Nicholson44d99142007-12-05 18:47:01 -0800890fi
Dan Nicholson297e16c2008-05-05 15:42:53 -0700891AC_SUBST([DRI_DIRS])
892AC_SUBST([EXPAT_INCLUDES])
893AC_SUBST([DRI_LIB_DEPS])
Dan Nicholson44d99142007-12-05 18:47:01 -0800894
Kristian Høgsberg8616cec2010-01-01 17:03:33 -0500895case $DRI_DIRS in
896*i915*|*i965*)
Eric Anholt179d2c02010-03-02 15:34:17 -0800897 PKG_CHECK_MODULES([INTEL], [libdrm_intel >= 2.4.19])
Kristian Høgsberg8616cec2010-01-01 17:03:33 -0500898 ;;
Kristian Høgsberg27fe7a72010-01-07 10:29:29 -0500899esac
Kristian Høgsberg8616cec2010-01-01 17:03:33 -0500900
Kristian Høgsberg27fe7a72010-01-07 10:29:29 -0500901case $DRI_DIRS in
Kristian Høgsberg8616cec2010-01-01 17:03:33 -0500902*radeon*|*r200*|*r300*|*r600*)
903 PKG_CHECK_MODULES([LIBDRM_RADEON],
904 [libdrm_radeon libdrm >= $LIBDRM_RADEON_REQUIRED],
905 HAVE_LIBDRM_RADEON=yes,
906 HAVE_LIBDRM_RADEON=no)
907
908 if test "$HAVE_LIBDRM_RADEON" = yes; then
909 RADEON_CFLAGS="-DHAVE_LIBDRM_RADEON=1 $LIBDRM_RADEON_CFLAGS"
910 RADEON_LDFLAGS=$LIBDRM_RADEON_LIBS
911 fi
912 ;;
913esac
914AC_SUBST([RADEON_CFLAGS])
915AC_SUBST([RADEON_LDFLAGS])
916
917
Dan Nicholson44d99142007-12-05 18:47:01 -0800918dnl
Dan Nicholsondca1b792007-10-23 09:25:58 -0700919dnl OSMesa configuration
920dnl
Dan Nicholsona1307182007-12-12 17:49:49 -0800921if test "$mesa_driver" = xlib; then
Dan Nicholson544ab202007-12-30 08:41:53 -0800922 default_gl_osmesa=yes
Dan Nicholson979ff512007-12-05 18:47:01 -0800923else
Dan Nicholson544ab202007-12-30 08:41:53 -0800924 default_gl_osmesa=no
Dan Nicholson44d99142007-12-05 18:47:01 -0800925fi
Dan Nicholson297e16c2008-05-05 15:42:53 -0700926AC_ARG_ENABLE([gl-osmesa],
Dan Nicholson544ab202007-12-30 08:41:53 -0800927 [AS_HELP_STRING([--enable-gl-osmesa],
928 [enable OSMesa on libGL @<:@default=enabled for xlib driver@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700929 [gl_osmesa="$enableval"],
930 [gl_osmesa="$default_gl_osmesa"])
Dan Nicholson544ab202007-12-30 08:41:53 -0800931if test "x$gl_osmesa" = xyes; then
932 if test "$mesa_driver" = osmesa; then
933 AC_MSG_ERROR([libGL is not available for OSMesa driver])
Dan Nicholson979ff512007-12-05 18:47:01 -0800934 else
Dan Nicholson544ab202007-12-30 08:41:53 -0800935 DRIVER_DIRS="$DRIVER_DIRS osmesa"
Dan Nicholson979ff512007-12-05 18:47:01 -0800936 fi
937fi
938
Dan Nicholson6689f9e2007-12-05 21:04:15 -0800939dnl Configure the channel bits for OSMesa (libOSMesa, libOSMesa16, ...)
Dan Nicholson297e16c2008-05-05 15:42:53 -0700940AC_ARG_WITH([osmesa-bits],
Dan Nicholson6689f9e2007-12-05 21:04:15 -0800941 [AS_HELP_STRING([--with-osmesa-bits=BITS],
942 [OSMesa channel bits and library name: 8, 16, 32 @<:@default=8@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700943 [osmesa_bits="$withval"],
944 [osmesa_bits=8])
Dan Nicholson6689f9e2007-12-05 21:04:15 -0800945if test "$mesa_driver" != osmesa && test "x$osmesa_bits" != x8; then
946 AC_MSG_WARN([Ignoring OSMesa channel bits for non-OSMesa driver])
947 osmesa_bits=8
948fi
949case "x$osmesa_bits" in
950x8)
951 OSMESA_LIB=OSMesa
952 ;;
953x16|x32)
954 OSMESA_LIB="OSMesa$osmesa_bits"
955 DEFINES="$DEFINES -DCHAN_BITS=$osmesa_bits -DDEFAULT_SOFTWARE_DEPTH_BITS=31"
956 ;;
957*)
958 AC_MSG_ERROR([OSMesa bits '$osmesa_bits' is not a valid option])
959 ;;
960esac
Dan Nicholson297e16c2008-05-05 15:42:53 -0700961AC_SUBST([OSMESA_LIB])
Dan Nicholson6689f9e2007-12-05 21:04:15 -0800962
Dan Nicholson979ff512007-12-05 18:47:01 -0800963case "$mesa_driver" in
964osmesa)
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -0700965 # only link libraries with osmesa if shared
Dan Nicholson88586332007-11-15 08:59:57 -0800966 if test "$enable_static" = no; then
Dan Nicholson4795dd52009-06-04 19:42:08 -0700967 OSMESA_LIB_DEPS="-lm -lpthread $SELINUX_LIBS $DLOPEN_LIBS"
Dan Nicholson88586332007-11-15 08:59:57 -0800968 else
969 OSMESA_LIB_DEPS=""
970 fi
Dan Nicholson979ff512007-12-05 18:47:01 -0800971 OSMESA_MESA_DEPS=""
Dan Nicholson4795dd52009-06-04 19:42:08 -0700972 OSMESA_PC_LIB_PRIV="-lm -lpthread $SELINUX_LIBS $DLOPEN_LIBS"
Dan Nicholson979ff512007-12-05 18:47:01 -0800973 ;;
974*)
975 # Link OSMesa to libGL otherwise
976 OSMESA_LIB_DEPS=""
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -0700977 # only link libraries with osmesa if shared
Dan Nicholson88586332007-11-15 08:59:57 -0800978 if test "$enable_static" = no; then
979 OSMESA_MESA_DEPS='-l$(GL_LIB)'
980 else
981 OSMESA_MESA_DEPS=""
982 fi
Dan Nicholson8be02fc2008-12-14 09:35:29 -0800983 OSMESA_PC_REQ="gl"
Dan Nicholson979ff512007-12-05 18:47:01 -0800984 ;;
985esac
Alan Coopersmith3cf6e622009-03-23 16:51:54 -0700986OSMESA_PC_LIB_PRIV="$OSMESA_PC_LIB_PRIV"
Dan Nicholson297e16c2008-05-05 15:42:53 -0700987AC_SUBST([OSMESA_LIB_DEPS])
988AC_SUBST([OSMESA_MESA_DEPS])
Dan Nicholson8be02fc2008-12-14 09:35:29 -0800989AC_SUBST([OSMESA_PC_REQ])
990AC_SUBST([OSMESA_PC_LIB_PRIV])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700991
992dnl
Dan Nicholson53b37342009-02-25 17:45:34 -0800993dnl EGL configuration
994dnl
Dan Nicholson66f97862009-04-29 12:11:43 -0700995AC_ARG_ENABLE([egl],
996 [AS_HELP_STRING([--disable-egl],
997 [disable EGL library @<:@default=enabled@:>@])],
998 [enable_egl="$enableval"],
999 [enable_egl=yes])
1000if test "x$enable_egl" = xyes; then
1001 SRC_DIRS="$SRC_DIRS egl"
Chia-I Wud4c1ee02009-12-21 11:13:18 +08001002 EGL_LIB_DEPS="$DLOPEN_LIBS -lpthread"
1003 EGL_DRIVERS_DIRS=""
Chia-I Wu2eb7a2f2010-02-05 10:46:11 +08001004 if test "$enable_static" != yes; then
Chia-I Wud4c1ee02009-12-21 11:13:18 +08001005 # build egl_glx when libGL is built
Chia-I Wu2eb7a2f2010-02-05 10:46:11 +08001006 if test "$mesa_driver" != osmesa; then
1007 EGL_DRIVERS_DIRS="glx"
1008 fi
1009
1010 # build egl_dri2 when xcb-dri2 is available
Kristian Høgsberg077bc2f2010-02-05 13:55:32 -05001011 PKG_CHECK_MODULES([EGL_DRI2], [x11-xcb xcb-dri2 xcb-xfixes libdrm],
1012 [have_xcb_dri2=yes],[have_xcb_dri2=no])
Chia-I Wu2eb7a2f2010-02-05 10:46:11 +08001013 if test "$have_xcb_dri2" = yes; then
1014 EGL_DRIVERS_DIRS="$EGL_DRIVERS_DIRS dri2"
1015 fi
Kristian Høgsberg42fa0092010-02-03 10:18:28 -05001016 fi
Kristian Høgsberg1ebc5682010-02-09 15:54:59 -05001017
1018 if test "$with_demos" = yes; then
Chia-I Wufbfecda2010-04-27 14:13:13 +08001019 PROGRAM_DIRS="$PROGRAM_DIRS egl/eglut egl/opengl"
Kristian Høgsberg1ebc5682010-02-09 15:54:59 -05001020 fi
Dan Nicholson53b37342009-02-25 17:45:34 -08001021fi
Dan Nicholson53b37342009-02-25 17:45:34 -08001022AC_SUBST([EGL_LIB_DEPS])
Chia-I Wud4c1ee02009-12-21 11:13:18 +08001023AC_SUBST([EGL_DRIVERS_DIRS])
Dan Nicholson53b37342009-02-25 17:45:34 -08001024
1025dnl
Dan Nicholsondca1b792007-10-23 09:25:58 -07001026dnl GLU configuration
1027dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -07001028AC_ARG_ENABLE([glu],
Dan Nicholson79ad4582007-12-07 19:11:01 -08001029 [AS_HELP_STRING([--disable-glu],
1030 [enable OpenGL Utility library @<:@default=enabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -07001031 [enable_glu="$enableval"],
1032 [enable_glu=yes])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001033if test "x$enable_glu" = xyes; then
1034 SRC_DIRS="$SRC_DIRS glu"
1035
Dan Nicholson979ff512007-12-05 18:47:01 -08001036 case "$mesa_driver" in
1037 osmesa)
Dan Nicholson6689f9e2007-12-05 21:04:15 -08001038 # If GLU is available and we have libOSMesa (not 16 or 32),
1039 # we can build the osdemos
Dan Nicholson8e4d1472007-11-15 08:59:57 -08001040 if test "$with_demos" = yes && test "$osmesa_bits" = 8; then
Dan Nicholson6689f9e2007-12-05 21:04:15 -08001041 PROGRAM_DIRS="$PROGRAM_DIRS osdemos"
1042 fi
Dan Nicholsondca1b792007-10-23 09:25:58 -07001043
Dan Nicholson979ff512007-12-05 18:47:01 -08001044 # Link libGLU to libOSMesa instead of libGL
1045 GLU_LIB_DEPS=""
Dan Nicholson8be02fc2008-12-14 09:35:29 -08001046 GLU_PC_REQ="osmesa"
Dan Nicholson88586332007-11-15 08:59:57 -08001047 if test "$enable_static" = no; then
1048 GLU_MESA_DEPS='-l$(OSMESA_LIB)'
1049 else
1050 GLU_MESA_DEPS=""
1051 fi
Dan Nicholson979ff512007-12-05 18:47:01 -08001052 ;;
1053 *)
Dan Nicholson88586332007-11-15 08:59:57 -08001054 # If static, empty GLU_LIB_DEPS and add libs for programs to link
Dan Nicholson71e208b2008-11-24 11:01:57 -08001055 GLU_PC_REQ="gl"
1056 GLU_PC_LIB_PRIV="-lm"
Dan Nicholson88586332007-11-15 08:59:57 -08001057 if test "$enable_static" = no; then
1058 GLU_LIB_DEPS="-lm"
1059 GLU_MESA_DEPS='-l$(GL_LIB)'
1060 else
1061 GLU_LIB_DEPS=""
1062 GLU_MESA_DEPS=""
1063 APP_LIB_DEPS="$APP_LIB_DEPS -lstdc++"
1064 fi
Dan Nicholson979ff512007-12-05 18:47:01 -08001065 ;;
1066 esac
Dan Nicholsondca1b792007-10-23 09:25:58 -07001067fi
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -07001068if test "$enable_static" = no; then
1069 GLU_LIB_DEPS="$GLU_LIB_DEPS $OS_CPLUSPLUS_LIBS"
1070fi
Dan Nicholson71e208b2008-11-24 11:01:57 -08001071GLU_PC_LIB_PRIV="$GLU_PC_LIB_PRIV $OS_CPLUSPLUS_LIBS"
Dan Nicholson297e16c2008-05-05 15:42:53 -07001072AC_SUBST([GLU_LIB_DEPS])
1073AC_SUBST([GLU_MESA_DEPS])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001074AC_SUBST([GLU_PC_REQ])
1075AC_SUBST([GLU_PC_REQ_PRIV])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001076AC_SUBST([GLU_PC_LIB_PRIV])
1077AC_SUBST([GLU_PC_CFLAGS])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001078
1079dnl
1080dnl GLw configuration
1081dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -07001082AC_ARG_ENABLE([glw],
Dan Nicholson79ad4582007-12-07 19:11:01 -08001083 [AS_HELP_STRING([--disable-glw],
1084 [enable Xt/Motif widget library @<:@default=enabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -07001085 [enable_glw="$enableval"],
1086 [enable_glw=yes])
Dan Nicholson979ff512007-12-05 18:47:01 -08001087dnl Don't build GLw on osmesa
1088if test "x$enable_glw" = xyes && test "$mesa_driver" = osmesa; then
1089 AC_MSG_WARN([Disabling GLw since the driver is OSMesa])
1090 enable_glw=no
1091fi
Dan Nicholson776c60d2008-07-18 07:40:41 -07001092AC_ARG_ENABLE([motif],
1093 [AS_HELP_STRING([--enable-motif],
1094 [use Motif widgets in GLw @<:@default=disabled@:>@])],
1095 [enable_motif="$enableval"],
1096 [enable_motif=no])
1097
Dan Nicholsondca1b792007-10-23 09:25:58 -07001098if test "x$enable_glw" = xyes; then
1099 SRC_DIRS="$SRC_DIRS glw"
1100 if test "$x11_pkgconfig" = yes; then
Dan Nicholson297e16c2008-05-05 15:42:53 -07001101 PKG_CHECK_MODULES([GLW],[x11 xt])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001102 GLW_PC_REQ_PRIV="x11 xt"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001103 GLW_LIB_DEPS="$GLW_LIBS"
1104 else
1105 # should check these...
Dan Nicholson776c60d2008-07-18 07:40:41 -07001106 GLW_LIB_DEPS="$X_LIBS -lXt -lX11"
Dan Nicholson71e208b2008-11-24 11:01:57 -08001107 GLW_PC_LIB_PRIV="$GLW_LIB_DEPS"
1108 GLW_PC_CFLAGS="$X11_INCLUDES"
Dan Nicholson776c60d2008-07-18 07:40:41 -07001109 fi
1110
1111 GLW_SOURCES="GLwDrawA.c"
1112 MOTIF_CFLAGS=
1113 if test "x$enable_motif" = xyes; then
1114 GLW_SOURCES="$GLW_SOURCES GLwMDrawA.c"
1115 AC_PATH_PROG([MOTIF_CONFIG], [motif-config], [no])
1116 if test "x$MOTIF_CONFIG" != xno; then
1117 MOTIF_CFLAGS=`$MOTIF_CONFIG --cflags`
1118 MOTIF_LIBS=`$MOTIF_CONFIG --libs`
1119 else
1120 AC_CHECK_HEADER([Xm/PrimitiveP.h], [],
1121 [AC_MSG_ERROR([Can't locate Motif headers])])
1122 AC_CHECK_LIB([Xm], [XmGetPixmap], [MOTIF_LIBS="-lXm"],
1123 [AC_MSG_ERROR([Can't locate Motif Xm library])])
1124 fi
1125 # MOTIF_LIBS is prepended to GLW_LIB_DEPS since Xm needs Xt/X11
1126 GLW_LIB_DEPS="$MOTIF_LIBS $GLW_LIB_DEPS"
Dan Nicholson71e208b2008-11-24 11:01:57 -08001127 GLW_PC_LIB_PRIV="$MOTIF_LIBS $GLW_PC_LIB_PRIV"
1128 GLW_PC_CFLAGS="$MOTIF_CFLAGS $GLW_PC_CFLAGS"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001129 fi
1130
Dan Nicholson88586332007-11-15 08:59:57 -08001131 # If static, empty GLW_LIB_DEPS and add libs for programs to link
Alan Coopersmith3cf6e622009-03-23 16:51:54 -07001132 GLW_PC_LIB_PRIV="$GLW_PC_LIB_PRIV"
Dan Nicholson88586332007-11-15 08:59:57 -08001133 if test "$enable_static" = no; then
1134 GLW_MESA_DEPS='-l$(GL_LIB)'
Alan Coopersmith3cf6e622009-03-23 16:51:54 -07001135 GLW_LIB_DEPS="$GLW_LIB_DEPS"
Dan Nicholson88586332007-11-15 08:59:57 -08001136 else
1137 APP_LIB_DEPS="$APP_LIB_DEPS $GLW_LIB_DEPS"
1138 GLW_LIB_DEPS=""
1139 GLW_MESA_DEPS=""
1140 fi
Dan Nicholsondca1b792007-10-23 09:25:58 -07001141fi
Dan Nicholson297e16c2008-05-05 15:42:53 -07001142AC_SUBST([GLW_LIB_DEPS])
1143AC_SUBST([GLW_MESA_DEPS])
Dan Nicholson776c60d2008-07-18 07:40:41 -07001144AC_SUBST([GLW_SOURCES])
1145AC_SUBST([MOTIF_CFLAGS])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001146AC_SUBST([GLW_PC_REQ_PRIV])
1147AC_SUBST([GLW_PC_LIB_PRIV])
1148AC_SUBST([GLW_PC_CFLAGS])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001149
1150dnl
1151dnl GLUT configuration
1152dnl
1153if test -f "$srcdir/include/GL/glut.h"; then
1154 default_glut=yes
1155else
1156 default_glut=no
1157fi
Dan Nicholson297e16c2008-05-05 15:42:53 -07001158AC_ARG_ENABLE([glut],
Dan Nicholson79ad4582007-12-07 19:11:01 -08001159 [AS_HELP_STRING([--disable-glut],
1160 [enable GLUT library @<:@default=enabled if source available@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -07001161 [enable_glut="$enableval"],
1162 [enable_glut="$default_glut"])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001163
1164dnl Can't build glut if GLU not available
1165if test "x$enable_glu$enable_glut" = xnoyes; then
1166 AC_MSG_WARN([Disabling glut since GLU is disabled])
1167 enable_glut=no
1168fi
Dan Nicholson979ff512007-12-05 18:47:01 -08001169dnl Don't build glut on osmesa
1170if test "x$enable_glut" = xyes && test "$mesa_driver" = osmesa; then
1171 AC_MSG_WARN([Disabling glut since the driver is OSMesa])
1172 enable_glut=no
1173fi
1174
Dan Nicholsondca1b792007-10-23 09:25:58 -07001175if test "x$enable_glut" = xyes; then
1176 SRC_DIRS="$SRC_DIRS glut/glx"
1177 GLUT_CFLAGS=""
1178 if test "x$GCC" = xyes; then
1179 GLUT_CFLAGS="-fexceptions"
1180 fi
1181 if test "$x11_pkgconfig" = yes; then
Dan Nicholson297e16c2008-05-05 15:42:53 -07001182 PKG_CHECK_MODULES([GLUT],[x11 xmu xi])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001183 GLUT_PC_REQ_PRIV="x11 xmu xi"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001184 GLUT_LIB_DEPS="$GLUT_LIBS"
1185 else
1186 # should check these...
Dan Nicholson70d0c832007-12-07 11:12:20 -08001187 GLUT_LIB_DEPS="$X_LIBS -lX11 -lXmu -lXi"
Dan Nicholson71e208b2008-11-24 11:01:57 -08001188 GLUT_PC_LIB_PRIV="$GLUT_LIB_DEPS"
1189 GLUT_PC_CFLAGS="$X11_INCLUDES"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001190 fi
Alan Coopersmith3cf6e622009-03-23 16:51:54 -07001191 GLUT_LIB_DEPS="$GLUT_LIB_DEPS -lm"
1192 GLUT_PC_LIB_PRIV="$GLUT_PC_LIB_PRIV -lm"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001193
1194 # If glut is available, we can build most programs
Dan Nicholson8e4d1472007-11-15 08:59:57 -08001195 if test "$with_demos" = yes; then
1196 PROGRAM_DIRS="$PROGRAM_DIRS demos redbook samples glsl"
1197 fi
Dan Nicholsondca1b792007-10-23 09:25:58 -07001198
Dan Nicholson88586332007-11-15 08:59:57 -08001199 # If static, empty GLUT_LIB_DEPS and add libs for programs to link
1200 if test "$enable_static" = no; then
1201 GLUT_MESA_DEPS='-l$(GLU_LIB) -l$(GL_LIB)'
1202 else
1203 APP_LIB_DEPS="$APP_LIB_DEPS $GLUT_LIB_DEPS"
1204 GLUT_LIB_DEPS=""
1205 GLUT_MESA_DEPS=""
1206 fi
Dan Nicholsondca1b792007-10-23 09:25:58 -07001207fi
Dan Nicholson297e16c2008-05-05 15:42:53 -07001208AC_SUBST([GLUT_LIB_DEPS])
1209AC_SUBST([GLUT_MESA_DEPS])
1210AC_SUBST([GLUT_CFLAGS])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001211AC_SUBST([GLUT_PC_REQ_PRIV])
1212AC_SUBST([GLUT_PC_LIB_PRIV])
1213AC_SUBST([GLUT_PC_CFLAGS])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001214
1215dnl
1216dnl Program library dependencies
1217dnl Only libm is added here if necessary as the libraries should
1218dnl be pulled in by the linker
1219dnl
1220if test "x$APP_LIB_DEPS" = x; then
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -07001221 case "$host_os" in
1222 solaris*)
1223 APP_LIB_DEPS="-lX11 -lsocket -lnsl -lm"
1224 ;;
Jon TURNEY7eed6ab2009-06-08 16:02:18 +01001225 cygwin*)
1226 APP_LIB_DEPS="-lX11"
1227 ;;
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -07001228 *)
1229 APP_LIB_DEPS="-lm"
1230 ;;
1231 esac
Dan Nicholsondca1b792007-10-23 09:25:58 -07001232fi
Dan Nicholson297e16c2008-05-05 15:42:53 -07001233AC_SUBST([APP_LIB_DEPS])
1234AC_SUBST([PROGRAM_DIRS])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001235
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001236dnl
1237dnl Gallium configuration
1238dnl
1239AC_ARG_ENABLE([gallium],
1240 [AS_HELP_STRING([--disable-gallium],
1241 [build gallium @<:@default=enabled@:>@])],
1242 [enable_gallium="$enableval"],
1243 [enable_gallium=yes])
1244if test "x$enable_gallium" = xyes; then
Jakob Bornecrantzbe38b322010-03-23 13:23:26 +00001245 SRC_DIRS="$SRC_DIRS gallium gallium/winsys gallium/targets"
Dave Airlie81fe1982010-04-22 14:59:29 +10001246 AC_CHECK_HEADER([udis86.h], [HAS_UDIS86="yes"],
1247 [HAS_UDIS86="no"])
1248 AC_PATH_PROG([LLVM_CONFIG], [llvm-config], [no])
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001249fi
Dan Nicholsondca1b792007-10-23 09:25:58 -07001250
Dave Airlie81fe1982010-04-22 14:59:29 +10001251AC_SUBST([LLVM_CFLAGS])
1252AC_SUBST([LLVM_LIBS])
1253AC_SUBST([LLVM_LDFLAGS])
1254AC_SUBST([LLVM_VERSION])
1255
Chia-I Wu874ccd52010-05-04 22:43:05 +08001256VG_LIB_DEPS=""
1257
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001258dnl
1259dnl Gallium state trackers configuration
1260dnl
1261AC_ARG_WITH([state-trackers],
1262 [AS_HELP_STRING([--with-state-trackers@<:@=DIRS...@:>@],
1263 [comma delimited state_trackers list, e.g.
1264 "egl,glx" @<:@default=auto@:>@])],
1265 [with_state_trackers="$withval"],
1266 [with_state_trackers=yes])
1267
1268case "$with_state_trackers" in
1269no)
1270 GALLIUM_STATE_TRACKERS_DIRS=""
1271 ;;
1272yes)
1273 # look at what else is built
1274 case "$mesa_driver" in
Jakob Bornecrantz373e6712009-04-18 23:13:56 +01001275 xlib)
1276 GALLIUM_STATE_TRACKERS_DIRS=glx
1277 ;;
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001278 dri)
Jakob Bornecrantz5b1fc142010-03-25 18:29:51 +01001279 GALLIUM_STATE_TRACKERS_DIRS="dri"
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001280 HAVE_ST_DRI="yes"
Jakob Bornecrantzbc0532b2009-12-04 18:50:29 +00001281 if test "x$enable_egl" = xyes; then
Chia-I Wu3c967a92010-01-22 16:31:43 +08001282 GALLIUM_STATE_TRACKERS_DIRS="$GALLIUM_STATE_TRACKERS_DIRS egl"
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001283 HAVE_ST_EGL="yes"
Jakob Bornecrantzbc0532b2009-12-04 18:50:29 +00001284 fi
1285 # Have only tested st/xorg on 1.6.0 servers
Jakob Bornecrantz683a0992010-03-11 19:23:15 +00001286 PKG_CHECK_MODULES(XORG, [xorg-server >= 1.6.0 libdrm >= $LIBDRM_XORG_REQUIRED libkms >= $LIBKMS_XORG_REQUIRED],
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001287 HAVE_ST_XORG="yes"; GALLIUM_STATE_TRACKERS_DIRS="$GALLIUM_STATE_TRACKERS_DIRS xorg",
1288 HAVE_ST_XORG="no")
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001289 ;;
1290 esac
1291 ;;
1292*)
1293 # verify the requested state tracker exist
1294 state_trackers=`IFS=', '; echo $with_state_trackers`
1295 for tracker in $state_trackers; do
1296 test -d "$srcdir/src/gallium/state_trackers/$tracker" || \
1297 AC_MSG_ERROR([state tracker '$tracker' doesn't exist])
Dan Nicholson66f97862009-04-29 12:11:43 -07001298
Chia-I Wue5d351d2009-12-23 11:18:00 +08001299 case "$tracker" in
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001300 dri)
1301 if test "x$mesa_driver" != xdri; then
1302 AC_MSG_ERROR([cannot build dri state tracker without mesa driver set to dri])
1303 fi
1304 HAVE_ST_DRI="yes"
1305 ;;
Chia-I Wu3c967a92010-01-22 16:31:43 +08001306 egl)
Chia-I Wue5d351d2009-12-23 11:18:00 +08001307 if test "x$enable_egl" != xyes; then
Chia-I Wu3c967a92010-01-22 16:31:43 +08001308 AC_MSG_ERROR([cannot build egl state tracker without EGL library])
Chia-I Wue5d351d2009-12-23 11:18:00 +08001309 fi
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001310 HAVE_ST_EGL="yes"
Chia-I Wue5d351d2009-12-23 11:18:00 +08001311 ;;
1312 xorg)
Jakob Bornecrantz683a0992010-03-11 19:23:15 +00001313 PKG_CHECK_MODULES([LIBDRM_XORG], [libdrm >= $LIBDRM_XORG_REQUIRED])
1314 PKG_CHECK_MODULES([LIBKMS_XORG], [libkms >= $LIBKMS_XORG_REQUIRED])
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001315 HAVE_ST_XORG="yes"
Chia-I Wue5d351d2009-12-23 11:18:00 +08001316 ;;
1317 es)
Chia-I Wu296adbd2010-04-26 12:56:44 +08001318 if test "x$enable_gles1" != xyes -a "x$enable_gles2" != xyes; then
1319 CORE_DIRS="mapi/es1api mapi/es2api $CORE_DIRS"
1320 fi
Chia-I Wue5d351d2009-12-23 11:18:00 +08001321 # mesa/es is required to build es state tracker
Chia-I Wu99a37ed2010-01-05 17:39:05 +08001322 CORE_DIRS="$CORE_DIRS mesa/es"
Chia-I Wue5d351d2009-12-23 11:18:00 +08001323 ;;
Chia-I Wu75143ef2010-04-16 18:12:37 +08001324 vega)
1325 CORE_DIRS="$CORE_DIRS mapi/vgapi"
Chia-I Wu874ccd52010-05-04 22:43:05 +08001326 VG_LIB_DEPS="$VG_LIB_DEPS -lpthread"
Chia-I Wu75143ef2010-04-16 18:12:37 +08001327 ;;
Chia-I Wue5d351d2009-12-23 11:18:00 +08001328 esac
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001329 done
1330 GALLIUM_STATE_TRACKERS_DIRS="$state_trackers"
1331 ;;
1332esac
1333
Chia-I Wu874ccd52010-05-04 22:43:05 +08001334AC_SUBST([VG_LIB_DEPS])
1335
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001336if test "x$HAVE_ST_XORG" = xyes; then
Jakob Bornecrantz683a0992010-03-11 19:23:15 +00001337 PKG_CHECK_MODULES(XEXT, [xextproto >= 7.0.99.1],
1338 HAVE_XEXTPROTO_71="yes"; DEFINES="$DEFINES -DHAVE_XEXTPROTO_71",
1339 HAVE_XEXTPROTO_71="no")
1340fi
1341
Chia-I Wu49381d62010-01-11 01:23:01 +08001342AC_ARG_WITH([egl-displays],
1343 [AS_HELP_STRING([--with-egl-displays@<:@=DIRS...@:>@],
1344 [comma delimited native displays libEGL supports, e.g.
Chia-I Wua68b51d2010-01-03 19:24:04 +08001345 "x11,kms" @<:@default=auto@:>@])],
Chia-I Wu49381d62010-01-11 01:23:01 +08001346 [with_egl_displays="$withval"],
1347 [with_egl_displays=yes])
1348
1349EGL_DISPLAYS=""
1350case "$with_egl_displays" in
1351yes)
1352 if test "x$enable_egl" = xyes && test "x$mesa_driver" != xosmesa; then
1353 EGL_DISPLAYS="x11"
1354 fi
1355 ;;
1356*)
1357 if test "x$enable_egl" != xyes; then
1358 AC_MSG_ERROR([cannot build egl state tracker without EGL library])
1359 fi
1360 # verify the requested driver directories exist
1361 egl_displays=`IFS=', '; echo $with_egl_displays`
1362 for dpy in $egl_displays; do
Chia-I Wu3c967a92010-01-22 16:31:43 +08001363 test -d "$srcdir/src/gallium/state_trackers/egl/$dpy" || \
Chia-I Wu49381d62010-01-11 01:23:01 +08001364 AC_MSG_ERROR([EGL display '$dpy' does't exist])
1365 done
1366 EGL_DISPLAYS="$egl_displays"
1367 ;;
1368esac
1369AC_SUBST([EGL_DISPLAYS])
1370
Chia-I Wu28c3e572010-01-23 20:18:43 +08001371AC_ARG_WITH([egl-driver-dir],
1372 [AS_HELP_STRING([--with-egl-driver-dir=DIR],
1373 [directory for EGL drivers [[default=${libdir}/egl]]])],
1374 [EGL_DRIVER_INSTALL_DIR="$withval"],
1375 [EGL_DRIVER_INSTALL_DIR='${libdir}/egl'])
1376AC_SUBST([EGL_DRIVER_INSTALL_DIR])
1377
Joel Bosveld8acca482009-03-06 08:46:08 +09001378AC_ARG_WITH([xorg-driver-dir],
1379 [AS_HELP_STRING([--with-xorg-driver-dir=DIR],
1380 [Default xorg driver directory[[default=${libdir}/xorg/modules/drivers]]])],
1381 [XORG_DRIVER_INSTALL_DIR="$withval"],
1382 [XORG_DRIVER_INSTALL_DIR="${libdir}/xorg/modules/drivers"])
1383AC_SUBST([XORG_DRIVER_INSTALL_DIR])
1384
Tom Fogal7085dce2009-08-13 19:40:30 -06001385AC_ARG_WITH([max-width],
1386 [AS_HELP_STRING([--with-max-width=N],
1387 [Maximum framebuffer width (4096)])],
1388 [DEFINES="${DEFINES} -DMAX_WIDTH=${withval}";
1389 AS_IF([test "${withval}" -gt "4096"],
1390 [AC_MSG_WARN([Large framebuffer: see s_tritemp.h comments.])])]
1391)
1392AC_ARG_WITH([max-height],
1393 [AS_HELP_STRING([--with-max-height=N],
1394 [Maximum framebuffer height (4096)])],
1395 [DEFINES="${DEFINES} -DMAX_HEIGHT=${withval}";
1396 AS_IF([test "${withval}" -gt "4096"],
1397 [AC_MSG_WARN([Large framebuffer: see s_tritemp.h comments.])])]
1398)
1399
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001400dnl
Dave Airlie81fe1982010-04-22 14:59:29 +10001401dnl Gallium LLVM
1402dnl
1403AC_ARG_ENABLE([gallium-llvm],
1404 [AS_HELP_STRING([--enable-gallium-llvm],
1405 [build gallium LLVM support @<:@default=disabled@:>@])],
1406 [enable_gallium_llvm="$enableval"],
1407 [enable_gallium_llvm=auto])
1408if test "x$enable_gallium_llvm" = xyes; then
Dave Airlie22e8ddc2010-04-25 07:48:48 +10001409 if test "x$LLVM_CONFIG" != xno; then
1410 LLVM_VERSION=`$LLVM_CONFIG --version`
1411 LLVM_CFLAGS=`$LLVM_CONFIG --cflags`
1412 LLVM_LIBS="`$LLVM_CONFIG --libs jit interpreter nativecodegen bitwriter` -lstdc++"
1413
1414 if test "x$HAS_UDIS86" != xno; then
1415 LLVM_LIBS="$LLVM_LIBS -ludis86"
1416 DEFINES="$DEFINES -DHAVE_UDIS86"
Dave Airlie81fe1982010-04-22 14:59:29 +10001417 fi
Dave Airlie22e8ddc2010-04-25 07:48:48 +10001418 LLVM_LDFLAGS=`$LLVM_CONFIG --ldflags`
1419 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS llvmpipe"
1420 DEFINES="$DEFINES -DMESA_LLVM -D__STDC_CONSTANT_MACROS"
1421 MESA_LLVM=1
1422 else
Dave Airlie81fe1982010-04-22 14:59:29 +10001423 MESA_LLVM=0
Dave Airlie22e8ddc2010-04-25 07:48:48 +10001424 fi
1425else
1426 MESA_LLVM=0
Dave Airlie81fe1982010-04-22 14:59:29 +10001427fi
1428
1429dnl
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001430dnl Gallium helper functions
1431dnl
1432gallium_check_st() {
1433 if test "x$HAVE_ST_DRI" = xyes || test "x$HAVE_ST_EGL" = xyes || test "x$HAVE_ST_XORG" = xyes; then
1434 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS $1"
1435 fi
1436 if test "x$HAVE_ST_DRI" = xyes && test "x$2" != x; then
1437 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $2"
1438 fi
1439 if test "x$HAVE_ST_EGL" = xyes && test "x$3" != x; then
1440 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $3"
1441 fi
1442 if test "x$HAVE_ST_XORG" = xyes && test "x$4" != x; then
1443 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $4"
1444 fi
1445}
1446
1447
1448dnl
Jakob Bornecrantz60769b22009-11-12 01:28:26 +01001449dnl Gallium SVGA configuration
1450dnl
1451AC_ARG_ENABLE([gallium-svga],
Jakob Bornecrantz5e6fff72009-07-19 09:22:31 +02001452 [AS_HELP_STRING([--enable-gallium-svga],
1453 [build gallium SVGA @<:@default=disabled@:>@])],
Jakob Bornecrantz60769b22009-11-12 01:28:26 +01001454 [enable_gallium_svga="$enableval"],
Jakob Bornecrantz5e6fff72009-07-19 09:22:31 +02001455 [enable_gallium_svga=auto])
Jakob Bornecrantz60769b22009-11-12 01:28:26 +01001456if test "x$enable_gallium_svga" = xyes; then
Xavier Chantryff0987a2010-03-26 11:02:03 +01001457 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS svga"
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001458 gallium_check_st "svga/drm" "dri-vmwgfx" "egl-vmwgfx" "xorg-vmwgfx"
Jakob Bornecrantz5e6fff72009-07-19 09:22:31 +02001459elif test "x$enable_gallium_svga" = xauto; then
1460 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS svga"
Jakob Bornecrantz60769b22009-11-12 01:28:26 +01001461fi
1462
1463dnl
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001464dnl Gallium Intel configuration
1465dnl
1466AC_ARG_ENABLE([gallium-intel],
Jakob Bornecrantz8ac25032009-12-04 16:01:41 +00001467 [AS_HELP_STRING([--enable-gallium-intel],
1468 [build gallium intel @<:@default=disabled@:>@])],
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001469 [enable_gallium_intel="$enableval"],
Jakob Bornecrantz8ac25032009-12-04 16:01:41 +00001470 [enable_gallium_intel=auto])
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001471if test "x$enable_gallium_intel" = xyes; then
Jakob Bornecrantz44bafca2010-04-17 15:17:33 +01001472 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS i915/sw"
Jakob Bornecrantzce4f23a2009-11-04 23:02:13 +00001473 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS i915 i965"
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001474 gallium_check_st "i915/drm i965/drm" "dri-i915 dri-i965" "egl-i915 egl-i965" "xorg-i915 xorg-i965"
Jakob Bornecrantz8ac25032009-12-04 16:01:41 +00001475elif test "x$enable_gallium_intel" = xauto; then
Jakob Bornecrantz44bafca2010-04-17 15:17:33 +01001476 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS i915/sw"
Keith Whitwellaa026832009-12-22 09:40:39 +00001477 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS i915 i965"
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001478fi
1479
1480dnl
1481dnl Gallium Radeon configuration
1482dnl
1483AC_ARG_ENABLE([gallium-radeon],
1484 [AS_HELP_STRING([--enable-gallium-radeon],
1485 [build gallium radeon @<:@default=disabled@:>@])],
1486 [enable_gallium_radeon="$enableval"],
Jakob Bornecrantz877cadb2010-01-14 22:51:25 +00001487 [enable_gallium_radeon=auto])
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001488if test "x$enable_gallium_radeon" = xyes; then
Jakob Bornecrantzd67bd602009-02-20 11:03:18 +00001489 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS r300"
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001490 gallium_check_st "radeon/drm" "dri-radeong" "egl-radeon" "xorg-radeon"
Jakob Bornecrantz877cadb2010-01-14 22:51:25 +00001491elif test "x$enable_gallium_radeon" = xauto; then
1492 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS r300"
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001493fi
1494
1495dnl
Thierry Vignaud1402ea82009-09-14 11:48:51 -06001496dnl Gallium Nouveau configuration
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001497dnl
1498AC_ARG_ENABLE([gallium-nouveau],
1499 [AS_HELP_STRING([--enable-gallium-nouveau],
1500 [build gallium nouveau @<:@default=disabled@:>@])],
1501 [enable_gallium_nouveau="$enableval"],
1502 [enable_gallium_nouveau=no])
1503if test "x$enable_gallium_nouveau" = xyes; then
Luca Barbierif9d09a22010-02-21 15:13:12 +01001504 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS nouveau nvfx nv50"
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001505 gallium_check_st "nouveau/drm" "dri-nouveau" "egl-nouveau" "xorg-nouveau"
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001506fi
1507
Chia-I Wua1306f42010-01-22 15:51:51 +08001508dnl
1509dnl Gallium swrast configuration
1510dnl
1511AC_ARG_ENABLE([gallium-swrast],
1512 [AS_HELP_STRING([--enable-gallium-swrast],
Jakob Bornecrantzf5ba2cd2010-03-24 10:58:45 +01001513 [build gallium swrast @<:@default=auto@:>@])],
Chia-I Wua1306f42010-01-22 15:51:51 +08001514 [enable_gallium_swrast="$enableval"],
1515 [enable_gallium_swrast=auto])
George Sapountzis7b333292010-03-25 17:01:54 +02001516if test "x$enable_gallium_swrast" = xyes || test "x$enable_gallium_swrast" = xauto; then
Jakob Bornecrantz5b1fc142010-03-25 18:29:51 +01001517 if test "x$HAVE_ST_DRI" = xyes; then
George Sapountzis7b333292010-03-25 17:01:54 +02001518 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS dri-swrast"
Jakob Bornecrantzf5ba2cd2010-03-24 10:58:45 +01001519 fi
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001520 if test "x$HAVE_ST_EGL" = xyes; then
Jakob Bornecrantzf5ba2cd2010-03-24 10:58:45 +01001521 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS egl-swrast"
1522 fi
Chia-I Wua1306f42010-01-22 15:51:51 +08001523fi
1524
Chia-I Wu99a37ed2010-01-05 17:39:05 +08001525dnl prepend CORE_DIRS to SRC_DIRS
1526SRC_DIRS="$CORE_DIRS $SRC_DIRS"
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001527
Dan Nicholsondca1b792007-10-23 09:25:58 -07001528dnl Restore LDFLAGS and CPPFLAGS
1529LDFLAGS="$_SAVE_LDFLAGS"
1530CPPFLAGS="$_SAVE_CPPFLAGS"
1531
1532dnl Substitute the config
Dan Nicholsonf64d6fe2007-12-12 17:57:45 -08001533AC_CONFIG_FILES([configs/autoconf])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001534
Dan Nicholsonaab38cf2007-12-11 08:21:51 -08001535dnl Replace the configs/current symlink
Dan Nicholsone14ebbc2008-05-06 11:28:43 -07001536AC_CONFIG_COMMANDS([configs],[
Dan Nicholsonaab38cf2007-12-11 08:21:51 -08001537if test -f configs/current || test -L configs/current; then
1538 rm -f configs/current
1539fi
1540ln -s autoconf configs/current
Dan Nicholsone14ebbc2008-05-06 11:28:43 -07001541])
1542
1543AC_OUTPUT
Dan Nicholsonaab38cf2007-12-11 08:21:51 -08001544
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001545dnl
1546dnl Output some configuration info for the user
1547dnl
1548echo ""
1549echo " prefix: $prefix"
1550echo " exec_prefix: $exec_prefix"
1551echo " libdir: $libdir"
Dan Nicholson11ac5b22008-07-03 09:17:44 -07001552echo " includedir: $includedir"
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001553
1554dnl Driver info
1555echo ""
1556echo " Driver: $mesa_driver"
Dan Nicholson544ab202007-12-30 08:41:53 -08001557if echo "$DRIVER_DIRS" | grep 'osmesa' >/dev/null 2>&1; then
1558 echo " OSMesa: lib$OSMESA_LIB"
1559else
1560 echo " OSMesa: no"
1561fi
1562if test "$mesa_driver" = dri; then
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001563 # cleanup the drivers var
1564 dri_dirs=`echo $DRI_DIRS | $SED 's/^ *//;s/ */ /;s/ *$//'`
Florent Thoumieb5095ab2008-07-28 14:44:43 +01001565if test "x$DRI_DIRS" = x; then
1566 echo " DRI drivers: no"
1567else
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001568 echo " DRI drivers: $dri_dirs"
Florent Thoumieb5095ab2008-07-28 14:44:43 +01001569fi
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001570 echo " DRI driver dir: $DRI_DRIVER_INSTALL_DIR"
Dan Nicholson544ab202007-12-30 08:41:53 -08001571fi
RALOVICH, Kristóf5f19f5c2008-11-04 11:53:32 +01001572echo " Use XCB: $enable_xcb"
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001573
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001574echo ""
Jakob Bornecrantzfe0fe672010-04-28 13:38:58 +01001575if test "x$MESA_LLVM" == x1; then
1576 echo " llvm: yes"
1577 echo " llvm-config: $LLVM_CONFIG"
1578 echo " llvm-version: $LLVM_VERSION"
1579else
1580 echo " llvm: no"
1581fi
1582
1583echo ""
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001584if echo "$SRC_DIRS" | grep 'gallium' >/dev/null 2>&1; then
1585 echo " Gallium: yes"
1586 echo " Gallium dirs: $GALLIUM_DIRS"
Keith Whitwell51bff092010-03-11 14:43:00 +00001587 echo " Target dirs: $GALLIUM_TARGET_DIRS"
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001588 echo " Winsys dirs: $GALLIUM_WINSYS_DIRS"
Jakob Bornecrantzd67bd602009-02-20 11:03:18 +00001589 echo " Driver dirs: $GALLIUM_DRIVERS_DIRS"
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001590 echo " Trackers dirs: $GALLIUM_STATE_TRACKERS_DIRS"
1591else
1592 echo " Gallium: no"
1593fi
1594
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001595dnl Libraries
1596echo ""
1597echo " Shared libs: $enable_shared"
1598echo " Static libs: $enable_static"
Kristian Høgsberg42fa0092010-02-03 10:18:28 -05001599if test "$enable_egl" = yes; then
1600 echo " EGL: $EGL_DRIVERS_DIRS"
1601else
1602 echo " EGL: no"
1603fi
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001604echo " GLU: $enable_glu"
Dan Nicholson776c60d2008-07-18 07:40:41 -07001605echo " GLw: $enable_glw (Motif: $enable_motif)"
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001606echo " glut: $enable_glut"
1607
1608dnl Programs
1609# cleanup the programs var for display
1610program_dirs=`echo $PROGRAM_DIRS | $SED 's/^ *//;s/ */ /;s/ *$//'`
1611if test "x$program_dirs" = x; then
1612 echo " Demos: no"
1613else
1614 echo " Demos: $program_dirs"
1615fi
1616
Dan Nicholson16a07fb2007-12-12 09:12:15 -08001617dnl Compiler options
1618# cleanup the CFLAGS/CXXFLAGS/DEFINES vars
1619cflags=`echo $CFLAGS $OPT_FLAGS $PIC_FLAGS $ARCH_FLAGS | \
1620 $SED 's/^ *//;s/ */ /;s/ *$//'`
1621cxxflags=`echo $CXXFLAGS $OPT_FLAGS $PIC_FLAGS $ARCH_FLAGS | \
1622 $SED 's/^ *//;s/ */ /;s/ *$//'`
1623defines=`echo $DEFINES $ASM_FLAGS | $SED 's/^ *//;s/ */ /;s/ *$//'`
1624echo ""
1625echo " CFLAGS: $cflags"
1626echo " CXXFLAGS: $cxxflags"
1627echo " Macros: $defines"
1628
Dan Nicholsondca1b792007-10-23 09:25:58 -07001629echo ""
Dan Nicholsonb6459422008-03-24 10:01:50 -07001630echo " Run '${MAKE-make}' to build Mesa"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001631echo ""