blob: 8e25163f75b7b79d07daa0d50c68c3d5dde4b427 [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}
Dan Nicholson8217f242009-02-11 15:16:00 -0800284
285GL_LIB_GLOB='lib$(GL_LIB).*'${LIB_EXTENSION}'*'
286GLU_LIB_GLOB='lib$(GLU_LIB).*'${LIB_EXTENSION}'*'
287GLUT_LIB_GLOB='lib$(GLUT_LIB).*'${LIB_EXTENSION}'*'
288GLW_LIB_GLOB='lib$(GLW_LIB).*'${LIB_EXTENSION}'*'
289OSMESA_LIB_GLOB='lib$(OSMESA_LIB).*'${LIB_EXTENSION}'*'
Chia-I Wud4c1ee02009-12-21 11:13:18 +0800290EGL_LIB_GLOB='lib$(EGL_LIB).*'${LIB_EXTENSION}'*'
Kristian Høgsberg9339c122010-03-05 19:01:43 -0500291GLESv1_CM_LIB_GLOB='lib$(GLESv1_CM_LIB).*'${LIB_EXTENSION}'*'
292GLESv2_LIB_GLOB='lib$(GLESv2_LIB).*'${LIB_EXTENSION}'*'
Dan Nicholson8217f242009-02-11 15:16:00 -0800293
Dan Nicholson297e16c2008-05-05 15:42:53 -0700294AC_SUBST([GL_LIB_NAME])
295AC_SUBST([GLU_LIB_NAME])
296AC_SUBST([GLUT_LIB_NAME])
297AC_SUBST([GLW_LIB_NAME])
298AC_SUBST([OSMESA_LIB_NAME])
Chia-I Wud4c1ee02009-12-21 11:13:18 +0800299AC_SUBST([EGL_LIB_NAME])
Kristian Høgsberg9339c122010-03-05 19:01:43 -0500300AC_SUBST([GLESv1_CM_LIB_NAME])
301AC_SUBST([GLESv2_LIB_NAME])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700302
Siddhartha Chaudhuri1a46c8a2009-02-09 07:58:38 -0700303AC_SUBST([GL_LIB_GLOB])
304AC_SUBST([GLU_LIB_GLOB])
305AC_SUBST([GLUT_LIB_GLOB])
306AC_SUBST([GLW_LIB_GLOB])
307AC_SUBST([OSMESA_LIB_GLOB])
Chia-I Wud4c1ee02009-12-21 11:13:18 +0800308AC_SUBST([EGL_LIB_GLOB])
Kristian Høgsberg9339c122010-03-05 19:01:43 -0500309AC_SUBST([GLESv1_CM_LIB_GLOB])
310AC_SUBST([GLESv2_LIB_GLOB])
Siddhartha Chaudhuri1a46c8a2009-02-09 07:58:38 -0700311
Dan Nicholsondca1b792007-10-23 09:25:58 -0700312dnl
Dan Nicholson871125a2008-06-04 13:00:35 -0700313dnl Arch/platform-specific settings
314dnl
315AC_ARG_ENABLE([asm],
316 [AS_HELP_STRING([--disable-asm],
317 [disable assembly usage @<:@default=enabled on supported plaforms@:>@])],
318 [enable_asm="$enableval"],
319 [enable_asm=yes]
320)
321asm_arch=""
322ASM_FLAGS=""
Dan Nicholsonc5bae142009-02-11 11:04:29 -0800323MESA_ASM_SOURCES=""
324GLAPI_ASM_SOURCES=""
Dan Nicholson871125a2008-06-04 13:00:35 -0700325AC_MSG_CHECKING([whether to enable assembly])
326test "x$enable_asm" = xno && AC_MSG_RESULT([no])
327# disable if cross compiling on x86/x86_64 since we must run gen_matypes
328if test "x$enable_asm" = xyes && test "x$cross_compiling" = xyes; then
329 case "$host_cpu" in
330 i?86 | x86_64)
331 enable_asm=no
332 AC_MSG_RESULT([no, cross compiling])
333 ;;
334 esac
335fi
336# check for supported arches
337if test "x$enable_asm" = xyes; then
338 case "$host_cpu" in
339 i?86)
340 case "$host_os" in
Julien Cristau98fcdf32008-10-28 18:56:05 +0100341 linux* | *freebsd* | dragonfly*)
Dan Nicholson871125a2008-06-04 13:00:35 -0700342 test "x$enable_64bit" = xyes && asm_arch=x86_64 || asm_arch=x86
343 ;;
344 esac
345 ;;
346 x86_64)
347 case "$host_os" in
Julien Cristau98fcdf32008-10-28 18:56:05 +0100348 linux* | *freebsd* | dragonfly*)
Dan Nicholson871125a2008-06-04 13:00:35 -0700349 test "x$enable_32bit" = xyes && asm_arch=x86 || asm_arch=x86_64
350 ;;
351 esac
352 ;;
353 powerpc)
354 case "$host_os" in
355 linux*)
356 asm_arch=ppc
357 ;;
358 esac
359 ;;
David S. Miller857ac1e2009-02-26 05:35:15 -0800360 sparc*)
361 case "$host_os" in
362 linux*)
363 asm_arch=sparc
364 ;;
365 esac
366 ;;
Dan Nicholson871125a2008-06-04 13:00:35 -0700367 esac
368
369 case "$asm_arch" in
370 x86)
Dan Nicholson61e925f2009-02-11 10:42:34 -0800371 ASM_FLAGS="-DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_3DNOW_ASM -DUSE_SSE_ASM"
Dan Nicholsonc5bae142009-02-11 11:04:29 -0800372 MESA_ASM_SOURCES='$(X86_SOURCES)'
373 GLAPI_ASM_SOURCES='$(X86_API)'
Dan Nicholson871125a2008-06-04 13:00:35 -0700374 AC_MSG_RESULT([yes, x86])
375 ;;
376 x86_64)
377 ASM_FLAGS="-DUSE_X86_64_ASM"
Dan Nicholsonc5bae142009-02-11 11:04:29 -0800378 MESA_ASM_SOURCES='$(X86-64_SOURCES)'
379 GLAPI_ASM_SOURCES='$(X86-64_API)'
Dan Nicholson871125a2008-06-04 13:00:35 -0700380 AC_MSG_RESULT([yes, x86_64])
381 ;;
382 ppc)
383 ASM_FLAGS="-DUSE_PPC_ASM -DUSE_VMX_ASM"
Dan Nicholsonc5bae142009-02-11 11:04:29 -0800384 MESA_ASM_SOURCES='$(PPC_SOURCES)'
Dan Nicholson871125a2008-06-04 13:00:35 -0700385 AC_MSG_RESULT([yes, ppc])
386 ;;
David S. Miller857ac1e2009-02-26 05:35:15 -0800387 sparc)
388 ASM_FLAGS="-DUSE_SPARC_ASM"
389 MESA_ASM_SOURCES='$(SPARC_SOURCES)'
390 GLAPI_ASM_SOURCES='$(SPARC_API)'
391 AC_MSG_RESULT([yes, sparc])
392 ;;
Dan Nicholson871125a2008-06-04 13:00:35 -0700393 *)
394 AC_MSG_RESULT([no, platform not supported])
395 ;;
396 esac
397fi
398AC_SUBST([ASM_FLAGS])
Dan Nicholsonc5bae142009-02-11 11:04:29 -0800399AC_SUBST([MESA_ASM_SOURCES])
400AC_SUBST([GLAPI_ASM_SOURCES])
Dan Nicholson871125a2008-06-04 13:00:35 -0700401
402dnl PIC code macro
403MESA_PIC_FLAGS
404
405dnl Check to see if dlopen is in default libraries (like Solaris, which
406dnl has it in libc), or if libdl is needed to get it.
407AC_CHECK_FUNC([dlopen], [],
408 [AC_CHECK_LIB([dl], [dlopen], [DLOPEN_LIBS="-ldl"])])
409
Dan Nicholson985e1cd2008-06-04 13:17:06 -0700410dnl See if posix_memalign is available
411AC_CHECK_FUNC([posix_memalign], [DEFINES="$DEFINES -DHAVE_POSIX_MEMALIGN"])
412
Dan Nicholson871125a2008-06-04 13:00:35 -0700413dnl SELinux awareness.
414AC_ARG_ENABLE([selinux],
415 [AS_HELP_STRING([--enable-selinux],
416 [Build SELinux-aware Mesa @<:@default=disabled@:>@])],
417 [MESA_SELINUX="$enableval"],
418 [MESA_SELINUX=no])
419if test "x$enable_selinux" = "xyes"; then
420 AC_CHECK_HEADER([selinux/selinux.h],[],
421 [AC_MSG_ERROR([SELinux headers not found])])
422 AC_CHECK_LIB([selinux],[is_selinux_enabled],[],
423 [AC_MSG_ERROR([SELinux library not found])])
424 SELINUX_LIBS="-lselinux"
425 DEFINES="$DEFINES -DMESA_SELINUX"
426fi
427
Dan Nicholson871125a2008-06-04 13:00:35 -0700428dnl
Dan Nicholsona1307182007-12-12 17:49:49 -0800429dnl Driver configuration. Options are xlib, dri and osmesa right now.
Kristian Høgsberg43875802010-02-25 15:49:18 -0500430dnl More later: fbdev, ...
Dan Nicholson44d99142007-12-05 18:47:01 -0800431dnl
Eric Anholt711222b2008-04-18 15:03:01 -0700432default_driver="xlib"
433
434case "$host_os" in
435linux*)
436 case "$host_cpu" in
David S. Miller32dc28a2009-02-24 20:06:05 -0700437 i*86|x86_64|powerpc*|sparc*) default_driver="dri";;
Eric Anholt711222b2008-04-18 15:03:01 -0700438 esac
439 ;;
Julien Cristau98fcdf32008-10-28 18:56:05 +0100440*freebsd* | dragonfly*)
Eric Anholt711222b2008-04-18 15:03:01 -0700441 case "$host_cpu" in
Robert Noland48f05432009-04-10 11:41:27 -0500442 i*86|x86_64|powerpc*|sparc*) default_driver="dri";;
Eric Anholt711222b2008-04-18 15:03:01 -0700443 esac
444 ;;
445esac
446
Dan Nicholson297e16c2008-05-05 15:42:53 -0700447AC_ARG_WITH([driver],
Dan Nicholson44d99142007-12-05 18:47:01 -0800448 [AS_HELP_STRING([--with-driver=DRIVER],
Eric Anholt711222b2008-04-18 15:03:01 -0700449 [driver for Mesa: xlib,dri,osmesa @<:@default=dri when available, or xlib@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700450 [mesa_driver="$withval"],
451 [mesa_driver="$default_driver"])
Dan Nicholson44d99142007-12-05 18:47:01 -0800452dnl Check for valid option
453case "x$mesa_driver" in
Dan Nicholsona1307182007-12-12 17:49:49 -0800454xxlib|xdri|xosmesa)
Dan Nicholson44d99142007-12-05 18:47:01 -0800455 ;;
456*)
457 AC_MSG_ERROR([Driver '$mesa_driver' is not a valid option])
458 ;;
459esac
460
461dnl
462dnl Driver specific build directories
Dan Nicholsondca1b792007-10-23 09:25:58 -0700463dnl
Chia-I Wu99a37ed2010-01-05 17:39:05 +0800464
465dnl this variable will be prepended to SRC_DIRS and is not exported
466CORE_DIRS="glsl mesa"
467
468SRC_DIRS="glew"
Dan Nicholsondca1b792007-10-23 09:25:58 -0700469GLU_DIRS="sgi"
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100470GALLIUM_DIRS="auxiliary drivers state_trackers"
Keith Whitwell51bff092010-03-11 14:43:00 +0000471GALLIUM_TARGET_DIRS=""
Jakob Bornecrantzc9f98672010-03-16 13:54:18 +0000472GALLIUM_WINSYS_DIRS="sw"
Jakob Bornecrantzd60b2c62009-06-24 02:42:41 +0200473GALLIUM_DRIVERS_DIRS="softpipe failover trace identity"
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100474GALLIUM_STATE_TRACKERS_DIRS=""
475
Dan Nicholson44d99142007-12-05 18:47:01 -0800476case "$mesa_driver" in
Dan Nicholsona1307182007-12-12 17:49:49 -0800477xlib)
Dan Nicholson44d99142007-12-05 18:47:01 -0800478 DRIVER_DIRS="x11"
Jakob Bornecrantzc9f98672010-03-16 13:54:18 +0000479 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/xlib"
Keith Whitwell51bff092010-03-11 14:43:00 +0000480 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS libgl-xlib"
Dan Nicholson44d99142007-12-05 18:47:01 -0800481 ;;
482dri)
Kristian Høgsberg6e8897f2010-02-09 09:58:36 -0500483 SRC_DIRS="$SRC_DIRS glx"
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100484 DRIVER_DIRS="dri"
George Sapountzis7b333292010-03-25 17:01:54 +0200485 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/xlib sw/dri sw/drm"
Dan Nicholson44d99142007-12-05 18:47:01 -0800486 ;;
Dan Nicholson979ff512007-12-05 18:47:01 -0800487osmesa)
488 DRIVER_DIRS="osmesa"
489 ;;
Dan Nicholson44d99142007-12-05 18:47:01 -0800490esac
Dan Nicholson297e16c2008-05-05 15:42:53 -0700491AC_SUBST([SRC_DIRS])
492AC_SUBST([GLU_DIRS])
493AC_SUBST([DRIVER_DIRS])
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100494AC_SUBST([GALLIUM_DIRS])
Keith Whitwell51bff092010-03-11 14:43:00 +0000495AC_SUBST([GALLIUM_TARGET_DIRS])
Jerome Glisse14f79d42008-12-18 13:36:07 +0100496AC_SUBST([GALLIUM_WINSYS_DIRS])
Jakob Bornecrantzd67bd602009-02-20 11:03:18 +0000497AC_SUBST([GALLIUM_DRIVERS_DIRS])
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100498AC_SUBST([GALLIUM_STATE_TRACKERS_DIRS])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700499
500dnl
Dan Nicholson8e4d1472007-11-15 08:59:57 -0800501dnl User supplied program configuration
502dnl
503if test -d "$srcdir/progs/demos"; then
504 default_demos=yes
505else
506 default_demos=no
507fi
Dan Nicholson297e16c2008-05-05 15:42:53 -0700508AC_ARG_WITH([demos],
Dan Nicholson8e4d1472007-11-15 08:59:57 -0800509 [AS_HELP_STRING([--with-demos@<:@=DIRS...@:>@],
510 [optional comma delimited demo directories to build
Dan Nicholsonc79c93c2007-12-12 18:13:04 -0800511 @<:@default=auto if source available@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700512 [with_demos="$withval"],
513 [with_demos="$default_demos"])
Dan Nicholson8e4d1472007-11-15 08:59:57 -0800514if test "x$with_demos" = x; then
515 with_demos=no
516fi
517
518dnl If $with_demos is yes, directories will be added as libs available
519PROGRAM_DIRS=""
520case "$with_demos" in
Dan Nicholsonb9576552008-03-10 14:05:46 -0700521no) ;;
522yes)
523 # If the driver isn't osmesa, we have libGL and can build xdemos
524 if test "$mesa_driver" != osmesa; then
525 PROGRAM_DIRS="xdemos"
526 fi
527 ;;
Dan Nicholson8e4d1472007-11-15 08:59:57 -0800528*)
529 # verify the requested demos directories exist
530 demos=`IFS=,; echo $with_demos`
531 for demo in $demos; do
532 test -d "$srcdir/progs/$demo" || \
533 AC_MSG_ERROR([Program directory '$demo' doesn't exist])
534 done
535 PROGRAM_DIRS="$demos"
536 ;;
537esac
538
539dnl
Dan Nicholsone6a06092008-05-05 15:16:22 -0700540dnl Find out if X is available. The variable have_x is set if libX11 is
Dan Nicholson99803a42008-07-01 09:03:15 -0700541dnl found to mimic AC_PATH_XTRA.
Dan Nicholsondca1b792007-10-23 09:25:58 -0700542dnl
543if test -n "$PKG_CONFIG"; then
544 AC_MSG_CHECKING([pkg-config files for X11 are available])
Dan Nicholsone6a06092008-05-05 15:16:22 -0700545 PKG_CHECK_EXISTS([x11],[
Dan Nicholsondca1b792007-10-23 09:25:58 -0700546 x11_pkgconfig=yes
547 have_x=yes
Dan Nicholsone6a06092008-05-05 15:16:22 -0700548 ],[
Dan Nicholsondca1b792007-10-23 09:25:58 -0700549 x11_pkgconfig=no
Dan Nicholsone6a06092008-05-05 15:16:22 -0700550 ])
551 AC_MSG_RESULT([$x11_pkgconfig])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700552else
553 x11_pkgconfig=no
554fi
555dnl Use the autoconf macro if no pkg-config files
Jeff Smith8d86d392010-03-12 18:55:09 -0600556if test "$x11_pkgconfig" = yes; then
Dan Nicholsone725ef12010-03-15 20:53:56 -0700557 PKG_CHECK_MODULES([X11], [x11])
Jeff Smith8d86d392010-03-12 18:55:09 -0600558else
Dan Nicholsondca1b792007-10-23 09:25:58 -0700559 AC_PATH_XTRA
Dan Nicholsone725ef12010-03-15 20:53:56 -0700560 test -z "$X11_CFLAGS" && X11_CFLAGS="$X_CFLAGS"
561 test -z "$X11_LIBS" && X11_LIBS="$X_LIBS -lX11"
562 AC_SUBST([X11_CFLAGS])
563 AC_SUBST([X11_LIBS])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700564fi
565
Dan Nicholson99803a42008-07-01 09:03:15 -0700566dnl Try to tell the user that the --x-* options are only used when
567dnl pkg-config is not available. This must be right after AC_PATH_XTRA.
568m4_divert_once([HELP_BEGIN],
569[These options are only used when the X libraries cannot be found by the
570pkg-config utility.])
571
Dan Nicholson44d99142007-12-05 18:47:01 -0800572dnl We need X for xlib and dri, so bomb now if it's not found
573case "$mesa_driver" in
Dan Nicholsona1307182007-12-12 17:49:49 -0800574xlib|dri)
Dan Nicholson44d99142007-12-05 18:47:01 -0800575 if test "$no_x" = yes; then
576 AC_MSG_ERROR([X11 development libraries needed for $mesa_driver driver])
577 fi
578 ;;
579esac
Dan Nicholsondca1b792007-10-23 09:25:58 -0700580
Dan Nicholson2d709fe2008-05-06 10:51:49 -0700581dnl XCB - this is only used for GLX right now
582AC_ARG_ENABLE([xcb],
583 [AS_HELP_STRING([--enable-xcb],
584 [use XCB for GLX @<:@default=disabled@:>@])],
585 [enable_xcb="$enableval"],
586 [enable_xcb=no])
587if test "x$enable_xcb" = xyes; then
588 DEFINES="$DEFINES -DUSE_XCB"
589else
590 enable_xcb=no
591fi
592
Dan Nicholson44d99142007-12-05 18:47:01 -0800593dnl
594dnl libGL configuration per driver
595dnl
596case "$mesa_driver" in
Dan Nicholsona1307182007-12-12 17:49:49 -0800597xlib)
Dan Nicholson44d99142007-12-05 18:47:01 -0800598 if test "$x11_pkgconfig" = yes; then
Dan Nicholson297e16c2008-05-05 15:42:53 -0700599 PKG_CHECK_MODULES([XLIBGL], [x11 xext])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800600 GL_PC_REQ_PRIV="x11 xext"
Dan Nicholsona1307182007-12-12 17:49:49 -0800601 X11_INCLUDES="$X11_INCLUDES $XLIBGL_CFLAGS"
602 GL_LIB_DEPS="$XLIBGL_LIBS"
Dan Nicholson44d99142007-12-05 18:47:01 -0800603 else
604 # should check these...
605 X11_INCLUDES="$X11_INCLUDES $X_CFLAGS"
606 GL_LIB_DEPS="$X_LIBS -lX11 -lXext"
Dan Nicholson71e208b2008-11-24 11:01:57 -0800607 GL_PC_LIB_PRIV="$GL_LIB_DEPS"
608 GL_PC_CFLAGS="$X11_INCLUDES"
Dan Nicholson44d99142007-12-05 18:47:01 -0800609 fi
Alan Coopersmith3cf6e622009-03-23 16:51:54 -0700610 GL_LIB_DEPS="$GL_LIB_DEPS $SELINUX_LIBS -lm -lpthread"
611 GL_PC_LIB_PRIV="$GL_PC_LIB_PRIV $SELINUX_LIBS -lm -lpthread"
Dan Nicholson88586332007-11-15 08:59:57 -0800612
613 # if static, move the external libraries to the programs
614 # and empty the libraries for libGL
615 if test "$enable_static" = yes; then
616 APP_LIB_DEPS="$APP_LIB_DEPS $GL_LIB_DEPS"
617 GL_LIB_DEPS=""
618 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800619 ;;
620dri)
Dan Nicholson88586332007-11-15 08:59:57 -0800621 # DRI must be shared, I think
622 if test "$enable_static" = yes; then
623 AC_MSG_ERROR([Can't use static libraries for DRI drivers])
624 fi
625
Dan Nicholson44d99142007-12-05 18:47:01 -0800626 # Check for libdrm
Dan Nicholsoncc77e8f2008-05-05 14:38:22 -0700627 PKG_CHECK_MODULES([LIBDRM], [libdrm >= $LIBDRM_REQUIRED])
628 PKG_CHECK_MODULES([DRI2PROTO], [dri2proto >= $DRI2PROTO_REQUIRED])
Jesse Barnesf2f83d92010-01-11 17:28:10 -0500629 PKG_CHECK_MODULES([GLPROTO], [glproto >= $GLPROTO_REQUIRED])
Jesse Barnesed59b132010-01-13 15:48:14 -0500630 GL_PC_REQ_PRIV="libdrm >= $LIBDRM_REQUIRED dri2proto >= $DRI2PROTO_REQUIRED glproto >= $GLPROTO_REQUIRED"
631 DRI_PC_REQ_PRIV="libdrm >= $LIBDRM_REQUIRED"
Dan Nicholson44d99142007-12-05 18:47:01 -0800632
633 # find the DRI deps for libGL
634 if test "$x11_pkgconfig" = yes; then
Dan Nicholson2d709fe2008-05-06 10:51:49 -0700635 # add xcb modules if necessary
636 dri_modules="x11 xext xxf86vm xdamage xfixes"
637 if test "$enable_xcb" = yes; then
638 dri_modules="$dri_modules x11-xcb xcb-glx"
639 fi
640
641 PKG_CHECK_MODULES([DRIGL], [$dri_modules])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800642 GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV $dri_modules"
Dan Nicholson44d99142007-12-05 18:47:01 -0800643 X11_INCLUDES="$X11_INCLUDES $DRIGL_CFLAGS"
644 GL_LIB_DEPS="$DRIGL_LIBS"
645 else
646 # should check these...
647 X11_INCLUDES="$X11_INCLUDES $X_CFLAGS"
648 GL_LIB_DEPS="$X_LIBS -lX11 -lXext -lXxf86vm -lXdamage -lXfixes"
Dan Nicholson71e208b2008-11-24 11:01:57 -0800649 GL_PC_LIB_PRIV="$GL_LIB_DEPS"
650 GL_PC_CFLAGS="$X11_INCLUDES"
Dan Nicholson2d709fe2008-05-06 10:51:49 -0700651
652 # XCB can only be used from pkg-config
653 if test "$enable_xcb" = yes; then
654 PKG_CHECK_MODULES([XCB],[x11-xcb xcb-glx])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800655 GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV x11-xcb xcb-glx"
Dan Nicholson2d709fe2008-05-06 10:51:49 -0700656 X11_INCLUDES="$X11_INCLUDES $XCB_CFLAGS"
657 GL_LIB_DEPS="$GL_LIB_DEPS $XCB_LIBS"
658 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800659 fi
660
661 # need DRM libs, -lpthread, etc.
Alan Coopersmith3cf6e622009-03-23 16:51:54 -0700662 GL_LIB_DEPS="$GL_LIB_DEPS $LIBDRM_LIBS -lm -lpthread $DLOPEN_LIBS"
663 GL_PC_LIB_PRIV="-lm -lpthread $DLOPEN_LIBS"
Kristian Høgsberg9339c122010-03-05 19:01:43 -0500664 GLESv1_CM_LIB_DEPS="$LIBDRM_LIBS -lm -lpthread $DLOPEN_LIBS"
Kristian Høgsberg74399d42010-05-02 09:51:13 -0400665 GLESv1_CM_PC_LIB_PRIV="-lm -lpthread $DLOPEN_LIBS"
Kristian Høgsberg9339c122010-03-05 19:01:43 -0500666 GLESv2_LIB_DEPS="$LIBDRM_LIBS -lm -lpthread $DLOPEN_LIBS"
Kristian Høgsberg74399d42010-05-02 09:51:13 -0400667 GLESv2_PC_LIB_PRIV="-lm -lpthread $DLOPEN_LIBS"
Dan Nicholson44d99142007-12-05 18:47:01 -0800668 ;;
Dan Nicholson979ff512007-12-05 18:47:01 -0800669osmesa)
670 # No libGL for osmesa
Alan Coopersmith3cf6e622009-03-23 16:51:54 -0700671 GL_LIB_DEPS=""
Dan Nicholson979ff512007-12-05 18:47:01 -0800672 ;;
Dan Nicholson44d99142007-12-05 18:47:01 -0800673esac
Dan Nicholson297e16c2008-05-05 15:42:53 -0700674AC_SUBST([GL_LIB_DEPS])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800675AC_SUBST([GL_PC_REQ_PRIV])
676AC_SUBST([GL_PC_LIB_PRIV])
677AC_SUBST([GL_PC_CFLAGS])
678AC_SUBST([DRI_PC_REQ_PRIV])
Kristian Høgsberg9339c122010-03-05 19:01:43 -0500679AC_SUBST([GLESv1_LIB_DEPS])
680AC_SUBST([GLESv2_LIB_DEPS])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700681
682dnl
683dnl More X11 setup
684dnl
Dan Nicholsona1307182007-12-12 17:49:49 -0800685if test "$mesa_driver" = xlib; then
Dan Nicholsondca1b792007-10-23 09:25:58 -0700686 DEFINES="$DEFINES -DUSE_XSHM"
687fi
688
689dnl
Dan Nicholson44d99142007-12-05 18:47:01 -0800690dnl More DRI setup
691dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -0700692AC_ARG_ENABLE([glx-tls],
Dan Nicholson44d99142007-12-05 18:47:01 -0800693 [AS_HELP_STRING([--enable-glx-tls],
Dan Nicholson79ad4582007-12-07 19:11:01 -0800694 [enable TLS support in GLX @<:@default=disabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700695 [GLX_USE_TLS="$enableval"],
696 [GLX_USE_TLS=no])
Dan Nicholson44d99142007-12-05 18:47:01 -0800697dnl Directory for DRI drivers
Dan Nicholson297e16c2008-05-05 15:42:53 -0700698AC_ARG_WITH([dri-driverdir],
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800699 [AS_HELP_STRING([--with-dri-driverdir=DIR],
Dan Nicholson5dbbde52008-05-06 06:21:41 -0700700 [directory for the DRI drivers @<:@${libdir}/dri@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700701 [DRI_DRIVER_INSTALL_DIR="$withval"],
Dan Nicholson5dbbde52008-05-06 06:21:41 -0700702 [DRI_DRIVER_INSTALL_DIR='${libdir}/dri'])
Dan Nicholson297e16c2008-05-05 15:42:53 -0700703AC_SUBST([DRI_DRIVER_INSTALL_DIR])
Chow Loong Jin35506de2009-10-28 14:34:14 +0800704dnl Extra search path for DRI drivers
705AC_ARG_WITH([dri-searchpath],
706 [AS_HELP_STRING([--with-dri-searchpath=DIRS...],
707 [semicolon delimited DRI driver search directories @<:@${libdir}/dri@:>@])],
708 [DRI_DRIVER_SEARCH_DIR="$withval"],
709 [DRI_DRIVER_SEARCH_DIR='${DRI_DRIVER_INSTALL_DIR}'])
710AC_SUBST([DRI_DRIVER_SEARCH_DIR])
Dan Nicholson44d99142007-12-05 18:47:01 -0800711dnl Direct rendering or just indirect rendering
Dan Nicholson297e16c2008-05-05 15:42:53 -0700712AC_ARG_ENABLE([driglx-direct],
Dan Nicholson79ad4582007-12-07 19:11:01 -0800713 [AS_HELP_STRING([--disable-driglx-direct],
714 [enable direct rendering in GLX for DRI @<:@default=enabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700715 [driglx_direct="$enableval"],
716 [driglx_direct="yes"])
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800717dnl Which drivers to build - default is chosen by platform
Dan Nicholson297e16c2008-05-05 15:42:53 -0700718AC_ARG_WITH([dri-drivers],
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800719 [AS_HELP_STRING([--with-dri-drivers@<:@=DIRS...@:>@],
Dan Nicholson5cae1b72008-06-30 10:28:02 -0700720 [comma delimited DRI drivers list, e.g.
Michel Dänzercade0712009-07-10 14:49:46 +0200721 "swrast,i965,radeon" @<:@default=auto@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700722 [with_dri_drivers="$withval"],
723 [with_dri_drivers=yes])
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800724if test "x$with_dri_drivers" = x; then
725 with_dri_drivers=no
726fi
727
Kristian Høgsberg0f680322010-04-27 13:42:33 -0400728dnl Determine which APIs to support
729AC_ARG_ENABLE([opengl],
730 [AS_HELP_STRING([--disable-opengl],
731 [disable support for standard OpenGL API @<:@default=no@:>@])],
732 [enable_opengl="$enableval"],
733 [enable_opengl=yes])
734AC_ARG_ENABLE([gles1],
735 [AS_HELP_STRING([--enable-gles1],
736 [enable support for OpenGL ES 1.x API @<:@default=no@:>@])],
737 [enable_gles1="$enableval"],
738 [enable_gles1=no])
739AC_ARG_ENABLE([gles2],
740 [AS_HELP_STRING([--enable-gles2],
741 [enable support for OpenGL ES 2.x API @<:@default=no@:>@])],
742 [enable_gles2="$enableval"],
743 [enable_gles2=no])
744
745API_DEFINES=""
746if test "x$enable_opengl" = xno; then
747 API_DEFINES="$API_DEFINES -DFEATURE_GL=0"
748else
749 API_DEFINES="$API_DEFINES -DFEATURE_GL=1"
750fi
751if test "x$enable_gles1" = xyes; then
752 API_DEFINES="$API_DEFINES -DFEATURE_ES1=1"
753fi
754if test "x$enable_gles2" = xyes; then
755 API_DEFINES="$API_DEFINES -DFEATURE_ES2=1"
756fi
Kristian Høgsberg9339c122010-03-05 19:01:43 -0500757if test "x$enable_gles1" = xyes -o "x$enable_gles2"; then
758 SRC_DIRS="$SRC_DIRS gles"
759fi
Kristian Høgsberg0f680322010-04-27 13:42:33 -0400760AC_SUBST([API_DEFINES])
761
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800762dnl If $with_dri_drivers is yes, directories will be added through
763dnl platform checks
764DRI_DIRS=""
765case "$with_dri_drivers" in
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100766no) ;;
767yes)
768 DRI_DIRS="yes"
769 ;;
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800770*)
771 # verify the requested driver directories exist
Dan Nicholsone6e4f252008-07-06 14:17:39 -0700772 dri_drivers=`IFS=', '; echo $with_dri_drivers`
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800773 for driver in $dri_drivers; do
774 test -d "$srcdir/src/mesa/drivers/dri/$driver" || \
775 AC_MSG_ERROR([DRI driver directory '$driver' doesn't exist])
776 done
777 DRI_DIRS="$dri_drivers"
778 ;;
779esac
780
Dan Nicholson44d99142007-12-05 18:47:01 -0800781dnl Set DRI_DIRS, DEFINES and LIB_DEPS
782if test "$mesa_driver" = dri; then
783 # Use TLS in GLX?
784 if test "x$GLX_USE_TLS" = xyes; then
785 DEFINES="$DEFINES -DGLX_USE_TLS -DPTHREADS"
786 fi
787
Dan Nicholson44d99142007-12-05 18:47:01 -0800788 # Platform specific settings and drivers to build
789 case "$host_os" in
790 linux*)
791 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
Dan Nicholson44d99142007-12-05 18:47:01 -0800792 if test "x$driglx_direct" = xyes; then
793 DEFINES="$DEFINES -DGLX_DIRECT_RENDERING"
794 fi
Jerome Glisse14f79d42008-12-18 13:36:07 +0100795 DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING -DHAVE_ALIAS"
Dan Nicholson44d99142007-12-05 18:47:01 -0800796
797 case "$host_cpu" in
Dan Nicholson44d99142007-12-05 18:47:01 -0800798 x86_64)
Kristian Høgsberg79aeafd2010-02-25 16:12:58 -0500799 # sis is missing because they have not be converted to use
800 # the new interface. i810 are missing because there is no
801 # x86-64 system where they could *ever* be used.
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100802 if test "x$DRI_DIRS" = "xyes"; then
Alex Deucher4138bdb2009-04-08 15:16:35 -0400803 DRI_DIRS="i915 i965 mach64 mga r128 r200 r300 r600 radeon \
George Sapountzis280bf892008-05-11 14:43:40 +0300804 savage tdfx unichrome swrast"
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800805 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800806 ;;
807 powerpc*)
Dan Nicholsona76e2452007-12-07 11:25:08 -0800808 # Build only the drivers for cards that exist on PowerPC.
809 # At some point MGA will be added, but not yet.
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100810 if test "x$DRI_DIRS" = "xyes"; then
Alex Deucher4138bdb2009-04-08 15:16:35 -0400811 DRI_DIRS="mach64 r128 r200 r300 r600 radeon tdfx swrast"
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800812 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800813 ;;
Dave Airlie2b0e75e2008-06-12 12:06:50 +1000814 sparc*)
815 # Build only the drivers for cards that exist on sparc`
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100816 if test "x$DRI_DIRS" = "xyes"; then
Kristian Høgsberg79aeafd2010-02-25 16:12:58 -0500817 DRI_DIRS="mach64 r128 r200 r300 r600 radeon swrast"
Dave Airlie2b0e75e2008-06-12 12:06:50 +1000818 fi
819 ;;
Dan Nicholson44d99142007-12-05 18:47:01 -0800820 esac
821 ;;
Hasso Tepper9f8df2d2008-04-09 10:51:21 -0700822 freebsd* | dragonfly*)
Dan Nicholson44d99142007-12-05 18:47:01 -0800823 DEFINES="$DEFINES -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1"
824 DEFINES="$DEFINES -DIN_DRI_DRIVER -DHAVE_ALIAS"
825 DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING"
826 if test "x$driglx_direct" = xyes; then
827 DEFINES="$DEFINES -DGLX_DIRECT_RENDERING"
828 fi
829 if test "x$GXX" = xyes; then
830 CXXFLAGS="$CXXFLAGS -ansi -pedantic"
831 fi
832
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100833 if test "x$DRI_DIRS" = "xyes"; then
Alex Deucher4138bdb2009-04-08 15:16:35 -0400834 DRI_DIRS="i810 i915 i965 mach64 mga r128 r200 r300 r600 radeon tdfx \
George Sapountzis280bf892008-05-11 14:43:40 +0300835 unichrome savage sis swrast"
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800836 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800837 ;;
Samuel Thibaultd18dd6a2009-04-23 05:43:22 -0700838 gnu*)
839 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
840 DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING -DHAVE_ALIAS"
841 ;;
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -0700842 solaris*)
843 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
844 DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING"
845 if test "x$driglx_direct" = xyes; then
846 DEFINES="$DEFINES -DGLX_DIRECT_RENDERING"
847 fi
848 ;;
Dan Nicholson44d99142007-12-05 18:47:01 -0800849 esac
Dan Nicholson112a40e2008-02-21 10:17:19 -0800850
851 # default drivers
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100852 if test "x$DRI_DIRS" = "xyes"; then
Corbin Simpson8e4657a2009-10-22 12:29:30 -0700853 DRI_DIRS="i810 i915 i965 mach64 mga r128 r200 r300 r600 radeon \
Kristian Høgsberg79aeafd2010-02-25 16:12:58 -0500854 savage sis tdfx unichrome swrast"
Dan Nicholson112a40e2008-02-21 10:17:19 -0800855 fi
856
Dan Nicholson44d99142007-12-05 18:47:01 -0800857 DRI_DIRS=`echo "$DRI_DIRS" | $SED 's/ */ /g'`
858
859 # Check for expat
860 EXPAT_INCLUDES=""
861 EXPAT_LIB=-lexpat
Dan Nicholson297e16c2008-05-05 15:42:53 -0700862 AC_ARG_WITH([expat],
863 [AS_HELP_STRING([--with-expat=DIR],
864 [expat install directory])],[
Dan Nicholson44d99142007-12-05 18:47:01 -0800865 EXPAT_INCLUDES="-I$withval/include"
866 CPPFLAGS="$CPPFLAGS $EXPAT_INCLUDES"
867 LDFLAGS="$LDFLAGS -L$withval/$LIB_DIR"
868 EXPAT_LIB="-L$withval/$LIB_DIR -lexpat"
869 ])
Dan Nicholson297e16c2008-05-05 15:42:53 -0700870 AC_CHECK_HEADER([expat.h],[],[AC_MSG_ERROR([Expat required for DRI.])])
871 AC_CHECK_LIB([expat],[XML_ParserCreate],[],
872 [AC_MSG_ERROR([Expat required for DRI.])])
Dan Nicholson44d99142007-12-05 18:47:01 -0800873
874 # put all the necessary libs together
Eric Anholt050c5332008-03-20 17:28:58 -0700875 DRI_LIB_DEPS="$SELINUX_LIBS $LIBDRM_LIBS $EXPAT_LIB -lm -lpthread $DLOPEN_LIBS"
Dan Nicholson44d99142007-12-05 18:47:01 -0800876fi
Dan Nicholson297e16c2008-05-05 15:42:53 -0700877AC_SUBST([DRI_DIRS])
878AC_SUBST([EXPAT_INCLUDES])
879AC_SUBST([DRI_LIB_DEPS])
Dan Nicholson44d99142007-12-05 18:47:01 -0800880
Kristian Høgsberg8616cec2010-01-01 17:03:33 -0500881case $DRI_DIRS in
882*i915*|*i965*)
Eric Anholt179d2c02010-03-02 15:34:17 -0800883 PKG_CHECK_MODULES([INTEL], [libdrm_intel >= 2.4.19])
Kristian Høgsberg8616cec2010-01-01 17:03:33 -0500884 ;;
Kristian Høgsberg27fe7a72010-01-07 10:29:29 -0500885esac
Kristian Høgsberg8616cec2010-01-01 17:03:33 -0500886
Kristian Høgsberg27fe7a72010-01-07 10:29:29 -0500887case $DRI_DIRS in
Kristian Høgsberg8616cec2010-01-01 17:03:33 -0500888*radeon*|*r200*|*r300*|*r600*)
889 PKG_CHECK_MODULES([LIBDRM_RADEON],
890 [libdrm_radeon libdrm >= $LIBDRM_RADEON_REQUIRED],
891 HAVE_LIBDRM_RADEON=yes,
892 HAVE_LIBDRM_RADEON=no)
893
894 if test "$HAVE_LIBDRM_RADEON" = yes; then
895 RADEON_CFLAGS="-DHAVE_LIBDRM_RADEON=1 $LIBDRM_RADEON_CFLAGS"
896 RADEON_LDFLAGS=$LIBDRM_RADEON_LIBS
897 fi
898 ;;
899esac
900AC_SUBST([RADEON_CFLAGS])
901AC_SUBST([RADEON_LDFLAGS])
902
903
Dan Nicholson44d99142007-12-05 18:47:01 -0800904dnl
Dan Nicholsondca1b792007-10-23 09:25:58 -0700905dnl OSMesa configuration
906dnl
Dan Nicholsona1307182007-12-12 17:49:49 -0800907if test "$mesa_driver" = xlib; then
Dan Nicholson544ab202007-12-30 08:41:53 -0800908 default_gl_osmesa=yes
Dan Nicholson979ff512007-12-05 18:47:01 -0800909else
Dan Nicholson544ab202007-12-30 08:41:53 -0800910 default_gl_osmesa=no
Dan Nicholson44d99142007-12-05 18:47:01 -0800911fi
Dan Nicholson297e16c2008-05-05 15:42:53 -0700912AC_ARG_ENABLE([gl-osmesa],
Dan Nicholson544ab202007-12-30 08:41:53 -0800913 [AS_HELP_STRING([--enable-gl-osmesa],
914 [enable OSMesa on libGL @<:@default=enabled for xlib driver@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700915 [gl_osmesa="$enableval"],
916 [gl_osmesa="$default_gl_osmesa"])
Dan Nicholson544ab202007-12-30 08:41:53 -0800917if test "x$gl_osmesa" = xyes; then
918 if test "$mesa_driver" = osmesa; then
919 AC_MSG_ERROR([libGL is not available for OSMesa driver])
Dan Nicholson979ff512007-12-05 18:47:01 -0800920 else
Dan Nicholson544ab202007-12-30 08:41:53 -0800921 DRIVER_DIRS="$DRIVER_DIRS osmesa"
Dan Nicholson979ff512007-12-05 18:47:01 -0800922 fi
923fi
924
Dan Nicholson6689f9e2007-12-05 21:04:15 -0800925dnl Configure the channel bits for OSMesa (libOSMesa, libOSMesa16, ...)
Dan Nicholson297e16c2008-05-05 15:42:53 -0700926AC_ARG_WITH([osmesa-bits],
Dan Nicholson6689f9e2007-12-05 21:04:15 -0800927 [AS_HELP_STRING([--with-osmesa-bits=BITS],
928 [OSMesa channel bits and library name: 8, 16, 32 @<:@default=8@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700929 [osmesa_bits="$withval"],
930 [osmesa_bits=8])
Dan Nicholson6689f9e2007-12-05 21:04:15 -0800931if test "$mesa_driver" != osmesa && test "x$osmesa_bits" != x8; then
932 AC_MSG_WARN([Ignoring OSMesa channel bits for non-OSMesa driver])
933 osmesa_bits=8
934fi
935case "x$osmesa_bits" in
936x8)
937 OSMESA_LIB=OSMesa
938 ;;
939x16|x32)
940 OSMESA_LIB="OSMesa$osmesa_bits"
941 DEFINES="$DEFINES -DCHAN_BITS=$osmesa_bits -DDEFAULT_SOFTWARE_DEPTH_BITS=31"
942 ;;
943*)
944 AC_MSG_ERROR([OSMesa bits '$osmesa_bits' is not a valid option])
945 ;;
946esac
Dan Nicholson297e16c2008-05-05 15:42:53 -0700947AC_SUBST([OSMESA_LIB])
Dan Nicholson6689f9e2007-12-05 21:04:15 -0800948
Dan Nicholson979ff512007-12-05 18:47:01 -0800949case "$mesa_driver" in
950osmesa)
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -0700951 # only link libraries with osmesa if shared
Dan Nicholson88586332007-11-15 08:59:57 -0800952 if test "$enable_static" = no; then
Dan Nicholson4795dd52009-06-04 19:42:08 -0700953 OSMESA_LIB_DEPS="-lm -lpthread $SELINUX_LIBS $DLOPEN_LIBS"
Dan Nicholson88586332007-11-15 08:59:57 -0800954 else
955 OSMESA_LIB_DEPS=""
956 fi
Dan Nicholson979ff512007-12-05 18:47:01 -0800957 OSMESA_MESA_DEPS=""
Dan Nicholson4795dd52009-06-04 19:42:08 -0700958 OSMESA_PC_LIB_PRIV="-lm -lpthread $SELINUX_LIBS $DLOPEN_LIBS"
Dan Nicholson979ff512007-12-05 18:47:01 -0800959 ;;
960*)
961 # Link OSMesa to libGL otherwise
962 OSMESA_LIB_DEPS=""
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -0700963 # only link libraries with osmesa if shared
Dan Nicholson88586332007-11-15 08:59:57 -0800964 if test "$enable_static" = no; then
965 OSMESA_MESA_DEPS='-l$(GL_LIB)'
966 else
967 OSMESA_MESA_DEPS=""
968 fi
Dan Nicholson8be02fc2008-12-14 09:35:29 -0800969 OSMESA_PC_REQ="gl"
Dan Nicholson979ff512007-12-05 18:47:01 -0800970 ;;
971esac
Alan Coopersmith3cf6e622009-03-23 16:51:54 -0700972OSMESA_PC_LIB_PRIV="$OSMESA_PC_LIB_PRIV"
Dan Nicholson297e16c2008-05-05 15:42:53 -0700973AC_SUBST([OSMESA_LIB_DEPS])
974AC_SUBST([OSMESA_MESA_DEPS])
Dan Nicholson8be02fc2008-12-14 09:35:29 -0800975AC_SUBST([OSMESA_PC_REQ])
976AC_SUBST([OSMESA_PC_LIB_PRIV])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700977
978dnl
Dan Nicholson53b37342009-02-25 17:45:34 -0800979dnl EGL configuration
980dnl
Dan Nicholson66f97862009-04-29 12:11:43 -0700981AC_ARG_ENABLE([egl],
982 [AS_HELP_STRING([--disable-egl],
983 [disable EGL library @<:@default=enabled@:>@])],
984 [enable_egl="$enableval"],
985 [enable_egl=yes])
986if test "x$enable_egl" = xyes; then
987 SRC_DIRS="$SRC_DIRS egl"
Chia-I Wud4c1ee02009-12-21 11:13:18 +0800988 EGL_LIB_DEPS="$DLOPEN_LIBS -lpthread"
989 EGL_DRIVERS_DIRS=""
Chia-I Wu2eb7a2f2010-02-05 10:46:11 +0800990 if test "$enable_static" != yes; then
Chia-I Wud4c1ee02009-12-21 11:13:18 +0800991 # build egl_glx when libGL is built
Chia-I Wu2eb7a2f2010-02-05 10:46:11 +0800992 if test "$mesa_driver" != osmesa; then
993 EGL_DRIVERS_DIRS="glx"
994 fi
995
996 # build egl_dri2 when xcb-dri2 is available
Kristian Høgsberg077bc2f2010-02-05 13:55:32 -0500997 PKG_CHECK_MODULES([EGL_DRI2], [x11-xcb xcb-dri2 xcb-xfixes libdrm],
998 [have_xcb_dri2=yes],[have_xcb_dri2=no])
Chia-I Wu2eb7a2f2010-02-05 10:46:11 +0800999 if test "$have_xcb_dri2" = yes; then
1000 EGL_DRIVERS_DIRS="$EGL_DRIVERS_DIRS dri2"
1001 fi
Kristian Høgsberg42fa0092010-02-03 10:18:28 -05001002 fi
Kristian Høgsberg1ebc5682010-02-09 15:54:59 -05001003
1004 if test "$with_demos" = yes; then
Chia-I Wuc727ef02010-04-01 11:17:43 +08001005 PROGRAM_DIRS="$PROGRAM_DIRS egl/opengl"
Kristian Høgsberg1ebc5682010-02-09 15:54:59 -05001006 fi
Dan Nicholson53b37342009-02-25 17:45:34 -08001007fi
Dan Nicholson53b37342009-02-25 17:45:34 -08001008AC_SUBST([EGL_LIB_DEPS])
Chia-I Wud4c1ee02009-12-21 11:13:18 +08001009AC_SUBST([EGL_DRIVERS_DIRS])
Dan Nicholson53b37342009-02-25 17:45:34 -08001010
1011dnl
Dan Nicholsondca1b792007-10-23 09:25:58 -07001012dnl GLU configuration
1013dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -07001014AC_ARG_ENABLE([glu],
Dan Nicholson79ad4582007-12-07 19:11:01 -08001015 [AS_HELP_STRING([--disable-glu],
1016 [enable OpenGL Utility library @<:@default=enabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -07001017 [enable_glu="$enableval"],
1018 [enable_glu=yes])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001019if test "x$enable_glu" = xyes; then
1020 SRC_DIRS="$SRC_DIRS glu"
1021
Dan Nicholson979ff512007-12-05 18:47:01 -08001022 case "$mesa_driver" in
1023 osmesa)
Dan Nicholson6689f9e2007-12-05 21:04:15 -08001024 # If GLU is available and we have libOSMesa (not 16 or 32),
1025 # we can build the osdemos
Dan Nicholson8e4d1472007-11-15 08:59:57 -08001026 if test "$with_demos" = yes && test "$osmesa_bits" = 8; then
Dan Nicholson6689f9e2007-12-05 21:04:15 -08001027 PROGRAM_DIRS="$PROGRAM_DIRS osdemos"
1028 fi
Dan Nicholsondca1b792007-10-23 09:25:58 -07001029
Dan Nicholson979ff512007-12-05 18:47:01 -08001030 # Link libGLU to libOSMesa instead of libGL
1031 GLU_LIB_DEPS=""
Dan Nicholson8be02fc2008-12-14 09:35:29 -08001032 GLU_PC_REQ="osmesa"
Dan Nicholson88586332007-11-15 08:59:57 -08001033 if test "$enable_static" = no; then
1034 GLU_MESA_DEPS='-l$(OSMESA_LIB)'
1035 else
1036 GLU_MESA_DEPS=""
1037 fi
Dan Nicholson979ff512007-12-05 18:47:01 -08001038 ;;
1039 *)
Dan Nicholson88586332007-11-15 08:59:57 -08001040 # If static, empty GLU_LIB_DEPS and add libs for programs to link
Dan Nicholson71e208b2008-11-24 11:01:57 -08001041 GLU_PC_REQ="gl"
1042 GLU_PC_LIB_PRIV="-lm"
Dan Nicholson88586332007-11-15 08:59:57 -08001043 if test "$enable_static" = no; then
1044 GLU_LIB_DEPS="-lm"
1045 GLU_MESA_DEPS='-l$(GL_LIB)'
1046 else
1047 GLU_LIB_DEPS=""
1048 GLU_MESA_DEPS=""
1049 APP_LIB_DEPS="$APP_LIB_DEPS -lstdc++"
1050 fi
Dan Nicholson979ff512007-12-05 18:47:01 -08001051 ;;
1052 esac
Dan Nicholsondca1b792007-10-23 09:25:58 -07001053fi
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -07001054if test "$enable_static" = no; then
1055 GLU_LIB_DEPS="$GLU_LIB_DEPS $OS_CPLUSPLUS_LIBS"
1056fi
Dan Nicholson71e208b2008-11-24 11:01:57 -08001057GLU_PC_LIB_PRIV="$GLU_PC_LIB_PRIV $OS_CPLUSPLUS_LIBS"
Dan Nicholson297e16c2008-05-05 15:42:53 -07001058AC_SUBST([GLU_LIB_DEPS])
1059AC_SUBST([GLU_MESA_DEPS])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001060AC_SUBST([GLU_PC_REQ])
1061AC_SUBST([GLU_PC_REQ_PRIV])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001062AC_SUBST([GLU_PC_LIB_PRIV])
1063AC_SUBST([GLU_PC_CFLAGS])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001064
1065dnl
1066dnl GLw configuration
1067dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -07001068AC_ARG_ENABLE([glw],
Dan Nicholson79ad4582007-12-07 19:11:01 -08001069 [AS_HELP_STRING([--disable-glw],
1070 [enable Xt/Motif widget library @<:@default=enabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -07001071 [enable_glw="$enableval"],
1072 [enable_glw=yes])
Dan Nicholson979ff512007-12-05 18:47:01 -08001073dnl Don't build GLw on osmesa
1074if test "x$enable_glw" = xyes && test "$mesa_driver" = osmesa; then
1075 AC_MSG_WARN([Disabling GLw since the driver is OSMesa])
1076 enable_glw=no
1077fi
Dan Nicholson776c60d2008-07-18 07:40:41 -07001078AC_ARG_ENABLE([motif],
1079 [AS_HELP_STRING([--enable-motif],
1080 [use Motif widgets in GLw @<:@default=disabled@:>@])],
1081 [enable_motif="$enableval"],
1082 [enable_motif=no])
1083
Dan Nicholsondca1b792007-10-23 09:25:58 -07001084if test "x$enable_glw" = xyes; then
1085 SRC_DIRS="$SRC_DIRS glw"
1086 if test "$x11_pkgconfig" = yes; then
Dan Nicholson297e16c2008-05-05 15:42:53 -07001087 PKG_CHECK_MODULES([GLW],[x11 xt])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001088 GLW_PC_REQ_PRIV="x11 xt"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001089 GLW_LIB_DEPS="$GLW_LIBS"
1090 else
1091 # should check these...
Dan Nicholson776c60d2008-07-18 07:40:41 -07001092 GLW_LIB_DEPS="$X_LIBS -lXt -lX11"
Dan Nicholson71e208b2008-11-24 11:01:57 -08001093 GLW_PC_LIB_PRIV="$GLW_LIB_DEPS"
1094 GLW_PC_CFLAGS="$X11_INCLUDES"
Dan Nicholson776c60d2008-07-18 07:40:41 -07001095 fi
1096
1097 GLW_SOURCES="GLwDrawA.c"
1098 MOTIF_CFLAGS=
1099 if test "x$enable_motif" = xyes; then
1100 GLW_SOURCES="$GLW_SOURCES GLwMDrawA.c"
1101 AC_PATH_PROG([MOTIF_CONFIG], [motif-config], [no])
1102 if test "x$MOTIF_CONFIG" != xno; then
1103 MOTIF_CFLAGS=`$MOTIF_CONFIG --cflags`
1104 MOTIF_LIBS=`$MOTIF_CONFIG --libs`
1105 else
1106 AC_CHECK_HEADER([Xm/PrimitiveP.h], [],
1107 [AC_MSG_ERROR([Can't locate Motif headers])])
1108 AC_CHECK_LIB([Xm], [XmGetPixmap], [MOTIF_LIBS="-lXm"],
1109 [AC_MSG_ERROR([Can't locate Motif Xm library])])
1110 fi
1111 # MOTIF_LIBS is prepended to GLW_LIB_DEPS since Xm needs Xt/X11
1112 GLW_LIB_DEPS="$MOTIF_LIBS $GLW_LIB_DEPS"
Dan Nicholson71e208b2008-11-24 11:01:57 -08001113 GLW_PC_LIB_PRIV="$MOTIF_LIBS $GLW_PC_LIB_PRIV"
1114 GLW_PC_CFLAGS="$MOTIF_CFLAGS $GLW_PC_CFLAGS"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001115 fi
1116
Dan Nicholson88586332007-11-15 08:59:57 -08001117 # If static, empty GLW_LIB_DEPS and add libs for programs to link
Alan Coopersmith3cf6e622009-03-23 16:51:54 -07001118 GLW_PC_LIB_PRIV="$GLW_PC_LIB_PRIV"
Dan Nicholson88586332007-11-15 08:59:57 -08001119 if test "$enable_static" = no; then
1120 GLW_MESA_DEPS='-l$(GL_LIB)'
Alan Coopersmith3cf6e622009-03-23 16:51:54 -07001121 GLW_LIB_DEPS="$GLW_LIB_DEPS"
Dan Nicholson88586332007-11-15 08:59:57 -08001122 else
1123 APP_LIB_DEPS="$APP_LIB_DEPS $GLW_LIB_DEPS"
1124 GLW_LIB_DEPS=""
1125 GLW_MESA_DEPS=""
1126 fi
Dan Nicholsondca1b792007-10-23 09:25:58 -07001127fi
Dan Nicholson297e16c2008-05-05 15:42:53 -07001128AC_SUBST([GLW_LIB_DEPS])
1129AC_SUBST([GLW_MESA_DEPS])
Dan Nicholson776c60d2008-07-18 07:40:41 -07001130AC_SUBST([GLW_SOURCES])
1131AC_SUBST([MOTIF_CFLAGS])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001132AC_SUBST([GLW_PC_REQ_PRIV])
1133AC_SUBST([GLW_PC_LIB_PRIV])
1134AC_SUBST([GLW_PC_CFLAGS])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001135
1136dnl
1137dnl GLUT configuration
1138dnl
1139if test -f "$srcdir/include/GL/glut.h"; then
1140 default_glut=yes
1141else
1142 default_glut=no
1143fi
Dan Nicholson297e16c2008-05-05 15:42:53 -07001144AC_ARG_ENABLE([glut],
Dan Nicholson79ad4582007-12-07 19:11:01 -08001145 [AS_HELP_STRING([--disable-glut],
1146 [enable GLUT library @<:@default=enabled if source available@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -07001147 [enable_glut="$enableval"],
1148 [enable_glut="$default_glut"])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001149
1150dnl Can't build glut if GLU not available
1151if test "x$enable_glu$enable_glut" = xnoyes; then
1152 AC_MSG_WARN([Disabling glut since GLU is disabled])
1153 enable_glut=no
1154fi
Dan Nicholson979ff512007-12-05 18:47:01 -08001155dnl Don't build glut on osmesa
1156if test "x$enable_glut" = xyes && test "$mesa_driver" = osmesa; then
1157 AC_MSG_WARN([Disabling glut since the driver is OSMesa])
1158 enable_glut=no
1159fi
1160
Dan Nicholsondca1b792007-10-23 09:25:58 -07001161if test "x$enable_glut" = xyes; then
1162 SRC_DIRS="$SRC_DIRS glut/glx"
1163 GLUT_CFLAGS=""
1164 if test "x$GCC" = xyes; then
1165 GLUT_CFLAGS="-fexceptions"
1166 fi
1167 if test "$x11_pkgconfig" = yes; then
Dan Nicholson297e16c2008-05-05 15:42:53 -07001168 PKG_CHECK_MODULES([GLUT],[x11 xmu xi])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001169 GLUT_PC_REQ_PRIV="x11 xmu xi"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001170 GLUT_LIB_DEPS="$GLUT_LIBS"
1171 else
1172 # should check these...
Dan Nicholson70d0c832007-12-07 11:12:20 -08001173 GLUT_LIB_DEPS="$X_LIBS -lX11 -lXmu -lXi"
Dan Nicholson71e208b2008-11-24 11:01:57 -08001174 GLUT_PC_LIB_PRIV="$GLUT_LIB_DEPS"
1175 GLUT_PC_CFLAGS="$X11_INCLUDES"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001176 fi
Alan Coopersmith3cf6e622009-03-23 16:51:54 -07001177 GLUT_LIB_DEPS="$GLUT_LIB_DEPS -lm"
1178 GLUT_PC_LIB_PRIV="$GLUT_PC_LIB_PRIV -lm"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001179
1180 # If glut is available, we can build most programs
Dan Nicholson8e4d1472007-11-15 08:59:57 -08001181 if test "$with_demos" = yes; then
1182 PROGRAM_DIRS="$PROGRAM_DIRS demos redbook samples glsl"
1183 fi
Dan Nicholsondca1b792007-10-23 09:25:58 -07001184
Dan Nicholson88586332007-11-15 08:59:57 -08001185 # If static, empty GLUT_LIB_DEPS and add libs for programs to link
1186 if test "$enable_static" = no; then
1187 GLUT_MESA_DEPS='-l$(GLU_LIB) -l$(GL_LIB)'
1188 else
1189 APP_LIB_DEPS="$APP_LIB_DEPS $GLUT_LIB_DEPS"
1190 GLUT_LIB_DEPS=""
1191 GLUT_MESA_DEPS=""
1192 fi
Dan Nicholsondca1b792007-10-23 09:25:58 -07001193fi
Dan Nicholson297e16c2008-05-05 15:42:53 -07001194AC_SUBST([GLUT_LIB_DEPS])
1195AC_SUBST([GLUT_MESA_DEPS])
1196AC_SUBST([GLUT_CFLAGS])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001197AC_SUBST([GLUT_PC_REQ_PRIV])
1198AC_SUBST([GLUT_PC_LIB_PRIV])
1199AC_SUBST([GLUT_PC_CFLAGS])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001200
1201dnl
1202dnl Program library dependencies
1203dnl Only libm is added here if necessary as the libraries should
1204dnl be pulled in by the linker
1205dnl
1206if test "x$APP_LIB_DEPS" = x; then
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -07001207 case "$host_os" in
1208 solaris*)
1209 APP_LIB_DEPS="-lX11 -lsocket -lnsl -lm"
1210 ;;
Jon TURNEY7eed6ab2009-06-08 16:02:18 +01001211 cygwin*)
1212 APP_LIB_DEPS="-lX11"
1213 ;;
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -07001214 *)
1215 APP_LIB_DEPS="-lm"
1216 ;;
1217 esac
Dan Nicholsondca1b792007-10-23 09:25:58 -07001218fi
Dan Nicholson297e16c2008-05-05 15:42:53 -07001219AC_SUBST([APP_LIB_DEPS])
1220AC_SUBST([PROGRAM_DIRS])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001221
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001222dnl
1223dnl Gallium configuration
1224dnl
1225AC_ARG_ENABLE([gallium],
1226 [AS_HELP_STRING([--disable-gallium],
1227 [build gallium @<:@default=enabled@:>@])],
1228 [enable_gallium="$enableval"],
1229 [enable_gallium=yes])
1230if test "x$enable_gallium" = xyes; then
Jakob Bornecrantzbe38b322010-03-23 13:23:26 +00001231 SRC_DIRS="$SRC_DIRS gallium gallium/winsys gallium/targets"
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001232fi
Dan Nicholsondca1b792007-10-23 09:25:58 -07001233
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001234dnl
1235dnl Gallium state trackers configuration
1236dnl
1237AC_ARG_WITH([state-trackers],
1238 [AS_HELP_STRING([--with-state-trackers@<:@=DIRS...@:>@],
1239 [comma delimited state_trackers list, e.g.
1240 "egl,glx" @<:@default=auto@:>@])],
1241 [with_state_trackers="$withval"],
1242 [with_state_trackers=yes])
1243
1244case "$with_state_trackers" in
1245no)
1246 GALLIUM_STATE_TRACKERS_DIRS=""
1247 ;;
1248yes)
1249 # look at what else is built
1250 case "$mesa_driver" in
Jakob Bornecrantz373e6712009-04-18 23:13:56 +01001251 xlib)
1252 GALLIUM_STATE_TRACKERS_DIRS=glx
1253 ;;
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001254 dri)
Jakob Bornecrantz5b1fc142010-03-25 18:29:51 +01001255 GALLIUM_STATE_TRACKERS_DIRS="dri"
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001256 HAVE_ST_DRI="yes"
Jakob Bornecrantzbc0532b2009-12-04 18:50:29 +00001257 if test "x$enable_egl" = xyes; then
Chia-I Wu3c967a92010-01-22 16:31:43 +08001258 GALLIUM_STATE_TRACKERS_DIRS="$GALLIUM_STATE_TRACKERS_DIRS egl"
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001259 HAVE_ST_EGL="yes"
Jakob Bornecrantzbc0532b2009-12-04 18:50:29 +00001260 fi
1261 # Have only tested st/xorg on 1.6.0 servers
Jakob Bornecrantz683a0992010-03-11 19:23:15 +00001262 PKG_CHECK_MODULES(XORG, [xorg-server >= 1.6.0 libdrm >= $LIBDRM_XORG_REQUIRED libkms >= $LIBKMS_XORG_REQUIRED],
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001263 HAVE_ST_XORG="yes"; GALLIUM_STATE_TRACKERS_DIRS="$GALLIUM_STATE_TRACKERS_DIRS xorg",
1264 HAVE_ST_XORG="no")
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001265 ;;
1266 esac
1267 ;;
1268*)
1269 # verify the requested state tracker exist
1270 state_trackers=`IFS=', '; echo $with_state_trackers`
1271 for tracker in $state_trackers; do
1272 test -d "$srcdir/src/gallium/state_trackers/$tracker" || \
1273 AC_MSG_ERROR([state tracker '$tracker' doesn't exist])
Dan Nicholson66f97862009-04-29 12:11:43 -07001274
Chia-I Wue5d351d2009-12-23 11:18:00 +08001275 case "$tracker" in
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001276 dri)
1277 if test "x$mesa_driver" != xdri; then
1278 AC_MSG_ERROR([cannot build dri state tracker without mesa driver set to dri])
1279 fi
1280 HAVE_ST_DRI="yes"
1281 ;;
Chia-I Wu3c967a92010-01-22 16:31:43 +08001282 egl)
Chia-I Wue5d351d2009-12-23 11:18:00 +08001283 if test "x$enable_egl" != xyes; then
Chia-I Wu3c967a92010-01-22 16:31:43 +08001284 AC_MSG_ERROR([cannot build egl state tracker without EGL library])
Chia-I Wue5d351d2009-12-23 11:18:00 +08001285 fi
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001286 HAVE_ST_EGL="yes"
Chia-I Wue5d351d2009-12-23 11:18:00 +08001287 ;;
1288 xorg)
Jakob Bornecrantz683a0992010-03-11 19:23:15 +00001289 PKG_CHECK_MODULES([LIBDRM_XORG], [libdrm >= $LIBDRM_XORG_REQUIRED])
1290 PKG_CHECK_MODULES([LIBKMS_XORG], [libkms >= $LIBKMS_XORG_REQUIRED])
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001291 HAVE_ST_XORG="yes"
Chia-I Wue5d351d2009-12-23 11:18:00 +08001292 ;;
1293 es)
1294 # mesa/es is required to build es state tracker
Chia-I Wu99a37ed2010-01-05 17:39:05 +08001295 CORE_DIRS="$CORE_DIRS mesa/es"
Chia-I Wue5d351d2009-12-23 11:18:00 +08001296 ;;
1297 esac
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001298 done
1299 GALLIUM_STATE_TRACKERS_DIRS="$state_trackers"
1300 ;;
1301esac
1302
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001303if test "x$HAVE_ST_XORG" = xyes; then
Jakob Bornecrantz683a0992010-03-11 19:23:15 +00001304 PKG_CHECK_MODULES(XEXT, [xextproto >= 7.0.99.1],
1305 HAVE_XEXTPROTO_71="yes"; DEFINES="$DEFINES -DHAVE_XEXTPROTO_71",
1306 HAVE_XEXTPROTO_71="no")
1307fi
1308
Chia-I Wu49381d62010-01-11 01:23:01 +08001309AC_ARG_WITH([egl-displays],
1310 [AS_HELP_STRING([--with-egl-displays@<:@=DIRS...@:>@],
1311 [comma delimited native displays libEGL supports, e.g.
Chia-I Wua68b51d2010-01-03 19:24:04 +08001312 "x11,kms" @<:@default=auto@:>@])],
Chia-I Wu49381d62010-01-11 01:23:01 +08001313 [with_egl_displays="$withval"],
1314 [with_egl_displays=yes])
1315
1316EGL_DISPLAYS=""
1317case "$with_egl_displays" in
1318yes)
1319 if test "x$enable_egl" = xyes && test "x$mesa_driver" != xosmesa; then
1320 EGL_DISPLAYS="x11"
1321 fi
1322 ;;
1323*)
1324 if test "x$enable_egl" != xyes; then
1325 AC_MSG_ERROR([cannot build egl state tracker without EGL library])
1326 fi
1327 # verify the requested driver directories exist
1328 egl_displays=`IFS=', '; echo $with_egl_displays`
1329 for dpy in $egl_displays; do
Chia-I Wu3c967a92010-01-22 16:31:43 +08001330 test -d "$srcdir/src/gallium/state_trackers/egl/$dpy" || \
Chia-I Wu49381d62010-01-11 01:23:01 +08001331 AC_MSG_ERROR([EGL display '$dpy' does't exist])
1332 done
1333 EGL_DISPLAYS="$egl_displays"
1334 ;;
1335esac
1336AC_SUBST([EGL_DISPLAYS])
1337
Chia-I Wu28c3e572010-01-23 20:18:43 +08001338AC_ARG_WITH([egl-driver-dir],
1339 [AS_HELP_STRING([--with-egl-driver-dir=DIR],
1340 [directory for EGL drivers [[default=${libdir}/egl]]])],
1341 [EGL_DRIVER_INSTALL_DIR="$withval"],
1342 [EGL_DRIVER_INSTALL_DIR='${libdir}/egl'])
1343AC_SUBST([EGL_DRIVER_INSTALL_DIR])
1344
Joel Bosveld8acca482009-03-06 08:46:08 +09001345AC_ARG_WITH([xorg-driver-dir],
1346 [AS_HELP_STRING([--with-xorg-driver-dir=DIR],
1347 [Default xorg driver directory[[default=${libdir}/xorg/modules/drivers]]])],
1348 [XORG_DRIVER_INSTALL_DIR="$withval"],
1349 [XORG_DRIVER_INSTALL_DIR="${libdir}/xorg/modules/drivers"])
1350AC_SUBST([XORG_DRIVER_INSTALL_DIR])
1351
Tom Fogal7085dce2009-08-13 19:40:30 -06001352AC_ARG_WITH([max-width],
1353 [AS_HELP_STRING([--with-max-width=N],
1354 [Maximum framebuffer width (4096)])],
1355 [DEFINES="${DEFINES} -DMAX_WIDTH=${withval}";
1356 AS_IF([test "${withval}" -gt "4096"],
1357 [AC_MSG_WARN([Large framebuffer: see s_tritemp.h comments.])])]
1358)
1359AC_ARG_WITH([max-height],
1360 [AS_HELP_STRING([--with-max-height=N],
1361 [Maximum framebuffer height (4096)])],
1362 [DEFINES="${DEFINES} -DMAX_HEIGHT=${withval}";
1363 AS_IF([test "${withval}" -gt "4096"],
1364 [AC_MSG_WARN([Large framebuffer: see s_tritemp.h comments.])])]
1365)
1366
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001367dnl
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001368dnl Gallium helper functions
1369dnl
1370gallium_check_st() {
1371 if test "x$HAVE_ST_DRI" = xyes || test "x$HAVE_ST_EGL" = xyes || test "x$HAVE_ST_XORG" = xyes; then
1372 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS $1"
1373 fi
1374 if test "x$HAVE_ST_DRI" = xyes && test "x$2" != x; then
1375 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $2"
1376 fi
1377 if test "x$HAVE_ST_EGL" = xyes && test "x$3" != x; then
1378 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $3"
1379 fi
1380 if test "x$HAVE_ST_XORG" = xyes && test "x$4" != x; then
1381 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $4"
1382 fi
1383}
1384
1385
1386dnl
Jakob Bornecrantz60769b22009-11-12 01:28:26 +01001387dnl Gallium SVGA configuration
1388dnl
1389AC_ARG_ENABLE([gallium-svga],
Jakob Bornecrantz5e6fff72009-07-19 09:22:31 +02001390 [AS_HELP_STRING([--enable-gallium-svga],
1391 [build gallium SVGA @<:@default=disabled@:>@])],
Jakob Bornecrantz60769b22009-11-12 01:28:26 +01001392 [enable_gallium_svga="$enableval"],
Jakob Bornecrantz5e6fff72009-07-19 09:22:31 +02001393 [enable_gallium_svga=auto])
Jakob Bornecrantz60769b22009-11-12 01:28:26 +01001394if test "x$enable_gallium_svga" = xyes; then
Xavier Chantryff0987a2010-03-26 11:02:03 +01001395 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS svga"
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001396 gallium_check_st "svga/drm" "dri-vmwgfx" "egl-vmwgfx" "xorg-vmwgfx"
Jakob Bornecrantz5e6fff72009-07-19 09:22:31 +02001397elif test "x$enable_gallium_svga" = xauto; then
1398 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS svga"
Jakob Bornecrantz60769b22009-11-12 01:28:26 +01001399fi
1400
1401dnl
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001402dnl Gallium Intel configuration
1403dnl
1404AC_ARG_ENABLE([gallium-intel],
Jakob Bornecrantz8ac25032009-12-04 16:01:41 +00001405 [AS_HELP_STRING([--enable-gallium-intel],
1406 [build gallium intel @<:@default=disabled@:>@])],
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001407 [enable_gallium_intel="$enableval"],
Jakob Bornecrantz8ac25032009-12-04 16:01:41 +00001408 [enable_gallium_intel=auto])
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001409if test "x$enable_gallium_intel" = xyes; then
Jakob Bornecrantz44bafca2010-04-17 15:17:33 +01001410 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS i915/sw"
Jakob Bornecrantzce4f23a2009-11-04 23:02:13 +00001411 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS i915 i965"
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001412 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 +00001413elif test "x$enable_gallium_intel" = xauto; then
Jakob Bornecrantz44bafca2010-04-17 15:17:33 +01001414 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS i915/sw"
Keith Whitwellaa026832009-12-22 09:40:39 +00001415 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS i915 i965"
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001416fi
1417
1418dnl
1419dnl Gallium Radeon configuration
1420dnl
1421AC_ARG_ENABLE([gallium-radeon],
1422 [AS_HELP_STRING([--enable-gallium-radeon],
1423 [build gallium radeon @<:@default=disabled@:>@])],
1424 [enable_gallium_radeon="$enableval"],
Jakob Bornecrantz877cadb2010-01-14 22:51:25 +00001425 [enable_gallium_radeon=auto])
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001426if test "x$enable_gallium_radeon" = xyes; then
Jakob Bornecrantzd67bd602009-02-20 11:03:18 +00001427 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS r300"
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001428 gallium_check_st "radeon/drm" "dri-radeong" "egl-radeon" "xorg-radeon"
Jakob Bornecrantz877cadb2010-01-14 22:51:25 +00001429elif test "x$enable_gallium_radeon" = xauto; then
1430 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS r300"
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001431fi
1432
1433dnl
Thierry Vignaud1402ea82009-09-14 11:48:51 -06001434dnl Gallium Nouveau configuration
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001435dnl
1436AC_ARG_ENABLE([gallium-nouveau],
1437 [AS_HELP_STRING([--enable-gallium-nouveau],
1438 [build gallium nouveau @<:@default=disabled@:>@])],
1439 [enable_gallium_nouveau="$enableval"],
1440 [enable_gallium_nouveau=no])
1441if test "x$enable_gallium_nouveau" = xyes; then
Luca Barbierif9d09a22010-02-21 15:13:12 +01001442 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS nouveau nvfx nv50"
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001443 gallium_check_st "nouveau/drm" "dri-nouveau" "egl-nouveau" "xorg-nouveau"
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001444fi
1445
Chia-I Wua1306f42010-01-22 15:51:51 +08001446dnl
1447dnl Gallium swrast configuration
1448dnl
1449AC_ARG_ENABLE([gallium-swrast],
1450 [AS_HELP_STRING([--enable-gallium-swrast],
Jakob Bornecrantzf5ba2cd2010-03-24 10:58:45 +01001451 [build gallium swrast @<:@default=auto@:>@])],
Chia-I Wua1306f42010-01-22 15:51:51 +08001452 [enable_gallium_swrast="$enableval"],
1453 [enable_gallium_swrast=auto])
George Sapountzis7b333292010-03-25 17:01:54 +02001454if test "x$enable_gallium_swrast" = xyes || test "x$enable_gallium_swrast" = xauto; then
Jakob Bornecrantz5b1fc142010-03-25 18:29:51 +01001455 if test "x$HAVE_ST_DRI" = xyes; then
George Sapountzis7b333292010-03-25 17:01:54 +02001456 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS dri-swrast"
Jakob Bornecrantzf5ba2cd2010-03-24 10:58:45 +01001457 fi
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001458 if test "x$HAVE_ST_EGL" = xyes; then
Jakob Bornecrantzf5ba2cd2010-03-24 10:58:45 +01001459 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS egl-swrast"
1460 fi
Chia-I Wua1306f42010-01-22 15:51:51 +08001461fi
1462
Chia-I Wu99a37ed2010-01-05 17:39:05 +08001463dnl prepend CORE_DIRS to SRC_DIRS
1464SRC_DIRS="$CORE_DIRS $SRC_DIRS"
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001465
Dan Nicholsondca1b792007-10-23 09:25:58 -07001466dnl Restore LDFLAGS and CPPFLAGS
1467LDFLAGS="$_SAVE_LDFLAGS"
1468CPPFLAGS="$_SAVE_CPPFLAGS"
1469
1470dnl Substitute the config
Dan Nicholsonf64d6fe2007-12-12 17:57:45 -08001471AC_CONFIG_FILES([configs/autoconf])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001472
Dan Nicholsonaab38cf2007-12-11 08:21:51 -08001473dnl Replace the configs/current symlink
Dan Nicholsone14ebbc2008-05-06 11:28:43 -07001474AC_CONFIG_COMMANDS([configs],[
Dan Nicholsonaab38cf2007-12-11 08:21:51 -08001475if test -f configs/current || test -L configs/current; then
1476 rm -f configs/current
1477fi
1478ln -s autoconf configs/current
Dan Nicholsone14ebbc2008-05-06 11:28:43 -07001479])
1480
1481AC_OUTPUT
Dan Nicholsonaab38cf2007-12-11 08:21:51 -08001482
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001483dnl
1484dnl Output some configuration info for the user
1485dnl
1486echo ""
1487echo " prefix: $prefix"
1488echo " exec_prefix: $exec_prefix"
1489echo " libdir: $libdir"
Dan Nicholson11ac5b22008-07-03 09:17:44 -07001490echo " includedir: $includedir"
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001491
1492dnl Driver info
1493echo ""
1494echo " Driver: $mesa_driver"
Dan Nicholson544ab202007-12-30 08:41:53 -08001495if echo "$DRIVER_DIRS" | grep 'osmesa' >/dev/null 2>&1; then
1496 echo " OSMesa: lib$OSMESA_LIB"
1497else
1498 echo " OSMesa: no"
1499fi
1500if test "$mesa_driver" = dri; then
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001501 # cleanup the drivers var
1502 dri_dirs=`echo $DRI_DIRS | $SED 's/^ *//;s/ */ /;s/ *$//'`
Florent Thoumieb5095ab2008-07-28 14:44:43 +01001503if test "x$DRI_DIRS" = x; then
1504 echo " DRI drivers: no"
1505else
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001506 echo " DRI drivers: $dri_dirs"
Florent Thoumieb5095ab2008-07-28 14:44:43 +01001507fi
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001508 echo " DRI driver dir: $DRI_DRIVER_INSTALL_DIR"
Dan Nicholson544ab202007-12-30 08:41:53 -08001509fi
RALOVICH, Kristóf5f19f5c2008-11-04 11:53:32 +01001510echo " Use XCB: $enable_xcb"
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001511
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001512echo ""
1513if echo "$SRC_DIRS" | grep 'gallium' >/dev/null 2>&1; then
1514 echo " Gallium: yes"
1515 echo " Gallium dirs: $GALLIUM_DIRS"
Keith Whitwell51bff092010-03-11 14:43:00 +00001516 echo " Target dirs: $GALLIUM_TARGET_DIRS"
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001517 echo " Winsys dirs: $GALLIUM_WINSYS_DIRS"
Jakob Bornecrantzd67bd602009-02-20 11:03:18 +00001518 echo " Driver dirs: $GALLIUM_DRIVERS_DIRS"
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001519 echo " Trackers dirs: $GALLIUM_STATE_TRACKERS_DIRS"
1520else
1521 echo " Gallium: no"
1522fi
1523
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001524dnl Libraries
1525echo ""
1526echo " Shared libs: $enable_shared"
1527echo " Static libs: $enable_static"
Kristian Høgsberg42fa0092010-02-03 10:18:28 -05001528if test "$enable_egl" = yes; then
1529 echo " EGL: $EGL_DRIVERS_DIRS"
1530else
1531 echo " EGL: no"
1532fi
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001533echo " GLU: $enable_glu"
Dan Nicholson776c60d2008-07-18 07:40:41 -07001534echo " GLw: $enable_glw (Motif: $enable_motif)"
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001535echo " glut: $enable_glut"
1536
1537dnl Programs
1538# cleanup the programs var for display
1539program_dirs=`echo $PROGRAM_DIRS | $SED 's/^ *//;s/ */ /;s/ *$//'`
1540if test "x$program_dirs" = x; then
1541 echo " Demos: no"
1542else
1543 echo " Demos: $program_dirs"
1544fi
1545
Dan Nicholson16a07fb2007-12-12 09:12:15 -08001546dnl Compiler options
1547# cleanup the CFLAGS/CXXFLAGS/DEFINES vars
1548cflags=`echo $CFLAGS $OPT_FLAGS $PIC_FLAGS $ARCH_FLAGS | \
1549 $SED 's/^ *//;s/ */ /;s/ *$//'`
1550cxxflags=`echo $CXXFLAGS $OPT_FLAGS $PIC_FLAGS $ARCH_FLAGS | \
1551 $SED 's/^ *//;s/ */ /;s/ *$//'`
1552defines=`echo $DEFINES $ASM_FLAGS | $SED 's/^ *//;s/ */ /;s/ *$//'`
1553echo ""
1554echo " CFLAGS: $cflags"
1555echo " CXXFLAGS: $cxxflags"
1556echo " Macros: $defines"
1557
Dan Nicholsondca1b792007-10-23 09:25:58 -07001558echo ""
Dan Nicholsonb6459422008-03-24 10:01:50 -07001559echo " Run '${MAKE-make}' to build Mesa"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001560echo ""