blob: 61487c3905ef61e3c014ade038c8ba0477ce28b6 [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}
Dan Nicholson8217f242009-02-11 15:16:00 -0800282
283GL_LIB_GLOB='lib$(GL_LIB).*'${LIB_EXTENSION}'*'
284GLU_LIB_GLOB='lib$(GLU_LIB).*'${LIB_EXTENSION}'*'
285GLUT_LIB_GLOB='lib$(GLUT_LIB).*'${LIB_EXTENSION}'*'
286GLW_LIB_GLOB='lib$(GLW_LIB).*'${LIB_EXTENSION}'*'
287OSMESA_LIB_GLOB='lib$(OSMESA_LIB).*'${LIB_EXTENSION}'*'
Chia-I Wud4c1ee02009-12-21 11:13:18 +0800288EGL_LIB_GLOB='lib$(EGL_LIB).*'${LIB_EXTENSION}'*'
Dan Nicholson8217f242009-02-11 15:16:00 -0800289
Dan Nicholson297e16c2008-05-05 15:42:53 -0700290AC_SUBST([GL_LIB_NAME])
291AC_SUBST([GLU_LIB_NAME])
292AC_SUBST([GLUT_LIB_NAME])
293AC_SUBST([GLW_LIB_NAME])
294AC_SUBST([OSMESA_LIB_NAME])
Chia-I Wud4c1ee02009-12-21 11:13:18 +0800295AC_SUBST([EGL_LIB_NAME])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700296
Siddhartha Chaudhuri1a46c8a2009-02-09 07:58:38 -0700297AC_SUBST([GL_LIB_GLOB])
298AC_SUBST([GLU_LIB_GLOB])
299AC_SUBST([GLUT_LIB_GLOB])
300AC_SUBST([GLW_LIB_GLOB])
301AC_SUBST([OSMESA_LIB_GLOB])
Chia-I Wud4c1ee02009-12-21 11:13:18 +0800302AC_SUBST([EGL_LIB_GLOB])
Siddhartha Chaudhuri1a46c8a2009-02-09 07:58:38 -0700303
Dan Nicholsondca1b792007-10-23 09:25:58 -0700304dnl
Dan Nicholson871125a2008-06-04 13:00:35 -0700305dnl Arch/platform-specific settings
306dnl
307AC_ARG_ENABLE([asm],
308 [AS_HELP_STRING([--disable-asm],
309 [disable assembly usage @<:@default=enabled on supported plaforms@:>@])],
310 [enable_asm="$enableval"],
311 [enable_asm=yes]
312)
313asm_arch=""
314ASM_FLAGS=""
Dan Nicholsonc5bae142009-02-11 11:04:29 -0800315MESA_ASM_SOURCES=""
316GLAPI_ASM_SOURCES=""
Dan Nicholson871125a2008-06-04 13:00:35 -0700317AC_MSG_CHECKING([whether to enable assembly])
318test "x$enable_asm" = xno && AC_MSG_RESULT([no])
319# disable if cross compiling on x86/x86_64 since we must run gen_matypes
320if test "x$enable_asm" = xyes && test "x$cross_compiling" = xyes; then
321 case "$host_cpu" in
322 i?86 | x86_64)
323 enable_asm=no
324 AC_MSG_RESULT([no, cross compiling])
325 ;;
326 esac
327fi
328# check for supported arches
329if test "x$enable_asm" = xyes; then
330 case "$host_cpu" in
331 i?86)
332 case "$host_os" in
Julien Cristau98fcdf32008-10-28 18:56:05 +0100333 linux* | *freebsd* | dragonfly*)
Dan Nicholson871125a2008-06-04 13:00:35 -0700334 test "x$enable_64bit" = xyes && asm_arch=x86_64 || asm_arch=x86
335 ;;
336 esac
337 ;;
338 x86_64)
339 case "$host_os" in
Julien Cristau98fcdf32008-10-28 18:56:05 +0100340 linux* | *freebsd* | dragonfly*)
Dan Nicholson871125a2008-06-04 13:00:35 -0700341 test "x$enable_32bit" = xyes && asm_arch=x86 || asm_arch=x86_64
342 ;;
343 esac
344 ;;
345 powerpc)
346 case "$host_os" in
347 linux*)
348 asm_arch=ppc
349 ;;
350 esac
351 ;;
David S. Miller857ac1e2009-02-26 05:35:15 -0800352 sparc*)
353 case "$host_os" in
354 linux*)
355 asm_arch=sparc
356 ;;
357 esac
358 ;;
Dan Nicholson871125a2008-06-04 13:00:35 -0700359 esac
360
361 case "$asm_arch" in
362 x86)
Dan Nicholson61e925f2009-02-11 10:42:34 -0800363 ASM_FLAGS="-DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_3DNOW_ASM -DUSE_SSE_ASM"
Dan Nicholsonc5bae142009-02-11 11:04:29 -0800364 MESA_ASM_SOURCES='$(X86_SOURCES)'
365 GLAPI_ASM_SOURCES='$(X86_API)'
Dan Nicholson871125a2008-06-04 13:00:35 -0700366 AC_MSG_RESULT([yes, x86])
367 ;;
368 x86_64)
369 ASM_FLAGS="-DUSE_X86_64_ASM"
Dan Nicholsonc5bae142009-02-11 11:04:29 -0800370 MESA_ASM_SOURCES='$(X86-64_SOURCES)'
371 GLAPI_ASM_SOURCES='$(X86-64_API)'
Dan Nicholson871125a2008-06-04 13:00:35 -0700372 AC_MSG_RESULT([yes, x86_64])
373 ;;
374 ppc)
375 ASM_FLAGS="-DUSE_PPC_ASM -DUSE_VMX_ASM"
Dan Nicholsonc5bae142009-02-11 11:04:29 -0800376 MESA_ASM_SOURCES='$(PPC_SOURCES)'
Dan Nicholson871125a2008-06-04 13:00:35 -0700377 AC_MSG_RESULT([yes, ppc])
378 ;;
David S. Miller857ac1e2009-02-26 05:35:15 -0800379 sparc)
380 ASM_FLAGS="-DUSE_SPARC_ASM"
381 MESA_ASM_SOURCES='$(SPARC_SOURCES)'
382 GLAPI_ASM_SOURCES='$(SPARC_API)'
383 AC_MSG_RESULT([yes, sparc])
384 ;;
Dan Nicholson871125a2008-06-04 13:00:35 -0700385 *)
386 AC_MSG_RESULT([no, platform not supported])
387 ;;
388 esac
389fi
390AC_SUBST([ASM_FLAGS])
Dan Nicholsonc5bae142009-02-11 11:04:29 -0800391AC_SUBST([MESA_ASM_SOURCES])
392AC_SUBST([GLAPI_ASM_SOURCES])
Dan Nicholson871125a2008-06-04 13:00:35 -0700393
394dnl PIC code macro
395MESA_PIC_FLAGS
396
397dnl Check to see if dlopen is in default libraries (like Solaris, which
398dnl has it in libc), or if libdl is needed to get it.
399AC_CHECK_FUNC([dlopen], [],
400 [AC_CHECK_LIB([dl], [dlopen], [DLOPEN_LIBS="-ldl"])])
401
Dan Nicholson985e1cd2008-06-04 13:17:06 -0700402dnl See if posix_memalign is available
403AC_CHECK_FUNC([posix_memalign], [DEFINES="$DEFINES -DHAVE_POSIX_MEMALIGN"])
404
Dan Nicholson871125a2008-06-04 13:00:35 -0700405dnl SELinux awareness.
406AC_ARG_ENABLE([selinux],
407 [AS_HELP_STRING([--enable-selinux],
408 [Build SELinux-aware Mesa @<:@default=disabled@:>@])],
409 [MESA_SELINUX="$enableval"],
410 [MESA_SELINUX=no])
411if test "x$enable_selinux" = "xyes"; then
412 AC_CHECK_HEADER([selinux/selinux.h],[],
413 [AC_MSG_ERROR([SELinux headers not found])])
414 AC_CHECK_LIB([selinux],[is_selinux_enabled],[],
415 [AC_MSG_ERROR([SELinux library not found])])
416 SELINUX_LIBS="-lselinux"
417 DEFINES="$DEFINES -DMESA_SELINUX"
418fi
419
Dan Nicholson871125a2008-06-04 13:00:35 -0700420dnl
Dan Nicholsona1307182007-12-12 17:49:49 -0800421dnl Driver configuration. Options are xlib, dri and osmesa right now.
Kristian Høgsberg43875802010-02-25 15:49:18 -0500422dnl More later: fbdev, ...
Dan Nicholson44d99142007-12-05 18:47:01 -0800423dnl
Eric Anholt711222b2008-04-18 15:03:01 -0700424default_driver="xlib"
425
426case "$host_os" in
427linux*)
428 case "$host_cpu" in
David S. Miller32dc28a2009-02-24 20:06:05 -0700429 i*86|x86_64|powerpc*|sparc*) default_driver="dri";;
Eric Anholt711222b2008-04-18 15:03:01 -0700430 esac
431 ;;
Julien Cristau98fcdf32008-10-28 18:56:05 +0100432*freebsd* | dragonfly*)
Eric Anholt711222b2008-04-18 15:03:01 -0700433 case "$host_cpu" in
Robert Noland48f05432009-04-10 11:41:27 -0500434 i*86|x86_64|powerpc*|sparc*) default_driver="dri";;
Eric Anholt711222b2008-04-18 15:03:01 -0700435 esac
436 ;;
437esac
438
Dan Nicholson297e16c2008-05-05 15:42:53 -0700439AC_ARG_WITH([driver],
Dan Nicholson44d99142007-12-05 18:47:01 -0800440 [AS_HELP_STRING([--with-driver=DRIVER],
Eric Anholt711222b2008-04-18 15:03:01 -0700441 [driver for Mesa: xlib,dri,osmesa @<:@default=dri when available, or xlib@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700442 [mesa_driver="$withval"],
443 [mesa_driver="$default_driver"])
Dan Nicholson44d99142007-12-05 18:47:01 -0800444dnl Check for valid option
445case "x$mesa_driver" in
Dan Nicholsona1307182007-12-12 17:49:49 -0800446xxlib|xdri|xosmesa)
Dan Nicholson44d99142007-12-05 18:47:01 -0800447 ;;
448*)
449 AC_MSG_ERROR([Driver '$mesa_driver' is not a valid option])
450 ;;
451esac
452
453dnl
454dnl Driver specific build directories
Dan Nicholsondca1b792007-10-23 09:25:58 -0700455dnl
Chia-I Wu99a37ed2010-01-05 17:39:05 +0800456
457dnl this variable will be prepended to SRC_DIRS and is not exported
458CORE_DIRS="glsl mesa"
459
460SRC_DIRS="glew"
Dan Nicholsondca1b792007-10-23 09:25:58 -0700461GLU_DIRS="sgi"
Dan Nicholson44d99142007-12-05 18:47:01 -0800462WINDOW_SYSTEM=""
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100463GALLIUM_DIRS="auxiliary drivers state_trackers"
Jerome Glisse14f79d42008-12-18 13:36:07 +0100464GALLIUM_WINSYS_DIRS=""
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100465GALLIUM_WINSYS_DRM_DIRS=""
Jakob Bornecrantzd60b2c62009-06-24 02:42:41 +0200466GALLIUM_DRIVERS_DIRS="softpipe failover trace identity"
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100467GALLIUM_STATE_TRACKERS_DIRS=""
468
Dan Nicholson44d99142007-12-05 18:47:01 -0800469case "$mesa_driver" in
Dan Nicholsona1307182007-12-12 17:49:49 -0800470xlib)
Dan Nicholson44d99142007-12-05 18:47:01 -0800471 DRIVER_DIRS="x11"
Jakob Bornecrantz373e6712009-04-18 23:13:56 +0100472 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS xlib"
Dan Nicholson44d99142007-12-05 18:47:01 -0800473 ;;
474dri)
Kristian Høgsberg6e8897f2010-02-09 09:58:36 -0500475 SRC_DIRS="$SRC_DIRS glx"
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100476 DRIVER_DIRS="dri"
Dan Nicholson44d99142007-12-05 18:47:01 -0800477 WINDOW_SYSTEM="dri"
Jakob Bornecrantz373e6712009-04-18 23:13:56 +0100478 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS drm"
Dan Nicholson44d99142007-12-05 18:47:01 -0800479 ;;
Dan Nicholson979ff512007-12-05 18:47:01 -0800480osmesa)
481 DRIVER_DIRS="osmesa"
482 ;;
Dan Nicholson44d99142007-12-05 18:47:01 -0800483esac
Dan Nicholson297e16c2008-05-05 15:42:53 -0700484AC_SUBST([SRC_DIRS])
485AC_SUBST([GLU_DIRS])
486AC_SUBST([DRIVER_DIRS])
487AC_SUBST([WINDOW_SYSTEM])
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100488AC_SUBST([GALLIUM_DIRS])
Jerome Glisse14f79d42008-12-18 13:36:07 +0100489AC_SUBST([GALLIUM_WINSYS_DIRS])
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100490AC_SUBST([GALLIUM_WINSYS_DRM_DIRS])
Jakob Bornecrantzd67bd602009-02-20 11:03:18 +0000491AC_SUBST([GALLIUM_DRIVERS_DIRS])
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100492AC_SUBST([GALLIUM_STATE_TRACKERS_DIRS])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700493
494dnl
Dan Nicholson8e4d1472007-11-15 08:59:57 -0800495dnl User supplied program configuration
496dnl
497if test -d "$srcdir/progs/demos"; then
498 default_demos=yes
499else
500 default_demos=no
501fi
Dan Nicholson297e16c2008-05-05 15:42:53 -0700502AC_ARG_WITH([demos],
Dan Nicholson8e4d1472007-11-15 08:59:57 -0800503 [AS_HELP_STRING([--with-demos@<:@=DIRS...@:>@],
504 [optional comma delimited demo directories to build
Dan Nicholsonc79c93c2007-12-12 18:13:04 -0800505 @<:@default=auto if source available@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700506 [with_demos="$withval"],
507 [with_demos="$default_demos"])
Dan Nicholson8e4d1472007-11-15 08:59:57 -0800508if test "x$with_demos" = x; then
509 with_demos=no
510fi
511
512dnl If $with_demos is yes, directories will be added as libs available
513PROGRAM_DIRS=""
514case "$with_demos" in
Dan Nicholsonb9576552008-03-10 14:05:46 -0700515no) ;;
516yes)
517 # If the driver isn't osmesa, we have libGL and can build xdemos
518 if test "$mesa_driver" != osmesa; then
519 PROGRAM_DIRS="xdemos"
520 fi
521 ;;
Dan Nicholson8e4d1472007-11-15 08:59:57 -0800522*)
523 # verify the requested demos directories exist
524 demos=`IFS=,; echo $with_demos`
525 for demo in $demos; do
526 test -d "$srcdir/progs/$demo" || \
527 AC_MSG_ERROR([Program directory '$demo' doesn't exist])
528 done
529 PROGRAM_DIRS="$demos"
530 ;;
531esac
532
533dnl
Dan Nicholsone6a06092008-05-05 15:16:22 -0700534dnl Find out if X is available. The variable have_x is set if libX11 is
Dan Nicholson99803a42008-07-01 09:03:15 -0700535dnl found to mimic AC_PATH_XTRA.
Dan Nicholsondca1b792007-10-23 09:25:58 -0700536dnl
537if test -n "$PKG_CONFIG"; then
538 AC_MSG_CHECKING([pkg-config files for X11 are available])
Dan Nicholsone6a06092008-05-05 15:16:22 -0700539 PKG_CHECK_EXISTS([x11],[
Dan Nicholsondca1b792007-10-23 09:25:58 -0700540 x11_pkgconfig=yes
541 have_x=yes
Dan Nicholsone6a06092008-05-05 15:16:22 -0700542 ],[
Dan Nicholsondca1b792007-10-23 09:25:58 -0700543 x11_pkgconfig=no
Dan Nicholsone6a06092008-05-05 15:16:22 -0700544 ])
545 AC_MSG_RESULT([$x11_pkgconfig])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700546else
547 x11_pkgconfig=no
548fi
549dnl Use the autoconf macro if no pkg-config files
550if test "$x11_pkgconfig" = no; then
551 AC_PATH_XTRA
552fi
553
Dan Nicholson99803a42008-07-01 09:03:15 -0700554dnl Try to tell the user that the --x-* options are only used when
555dnl pkg-config is not available. This must be right after AC_PATH_XTRA.
556m4_divert_once([HELP_BEGIN],
557[These options are only used when the X libraries cannot be found by the
558pkg-config utility.])
559
Dan Nicholson44d99142007-12-05 18:47:01 -0800560dnl We need X for xlib and dri, so bomb now if it's not found
561case "$mesa_driver" in
Dan Nicholsona1307182007-12-12 17:49:49 -0800562xlib|dri)
Dan Nicholson44d99142007-12-05 18:47:01 -0800563 if test "$no_x" = yes; then
564 AC_MSG_ERROR([X11 development libraries needed for $mesa_driver driver])
565 fi
566 ;;
567esac
Dan Nicholsondca1b792007-10-23 09:25:58 -0700568
Dan Nicholson2d709fe2008-05-06 10:51:49 -0700569dnl XCB - this is only used for GLX right now
570AC_ARG_ENABLE([xcb],
571 [AS_HELP_STRING([--enable-xcb],
572 [use XCB for GLX @<:@default=disabled@:>@])],
573 [enable_xcb="$enableval"],
574 [enable_xcb=no])
575if test "x$enable_xcb" = xyes; then
576 DEFINES="$DEFINES -DUSE_XCB"
577else
578 enable_xcb=no
579fi
580
Dan Nicholson44d99142007-12-05 18:47:01 -0800581dnl
582dnl libGL configuration per driver
583dnl
584case "$mesa_driver" in
Dan Nicholsona1307182007-12-12 17:49:49 -0800585xlib)
Dan Nicholson44d99142007-12-05 18:47:01 -0800586 if test "$x11_pkgconfig" = yes; then
Dan Nicholson297e16c2008-05-05 15:42:53 -0700587 PKG_CHECK_MODULES([XLIBGL], [x11 xext])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800588 GL_PC_REQ_PRIV="x11 xext"
Dan Nicholsona1307182007-12-12 17:49:49 -0800589 X11_INCLUDES="$X11_INCLUDES $XLIBGL_CFLAGS"
590 GL_LIB_DEPS="$XLIBGL_LIBS"
Dan Nicholson44d99142007-12-05 18:47:01 -0800591 else
592 # should check these...
593 X11_INCLUDES="$X11_INCLUDES $X_CFLAGS"
594 GL_LIB_DEPS="$X_LIBS -lX11 -lXext"
Dan Nicholson71e208b2008-11-24 11:01:57 -0800595 GL_PC_LIB_PRIV="$GL_LIB_DEPS"
596 GL_PC_CFLAGS="$X11_INCLUDES"
Dan Nicholson44d99142007-12-05 18:47:01 -0800597 fi
Alan Coopersmith3cf6e622009-03-23 16:51:54 -0700598 GL_LIB_DEPS="$GL_LIB_DEPS $SELINUX_LIBS -lm -lpthread"
599 GL_PC_LIB_PRIV="$GL_PC_LIB_PRIV $SELINUX_LIBS -lm -lpthread"
Dan Nicholson88586332007-11-15 08:59:57 -0800600
601 # if static, move the external libraries to the programs
602 # and empty the libraries for libGL
603 if test "$enable_static" = yes; then
604 APP_LIB_DEPS="$APP_LIB_DEPS $GL_LIB_DEPS"
605 GL_LIB_DEPS=""
606 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800607 ;;
608dri)
Dan Nicholson88586332007-11-15 08:59:57 -0800609 # DRI must be shared, I think
610 if test "$enable_static" = yes; then
611 AC_MSG_ERROR([Can't use static libraries for DRI drivers])
612 fi
613
Dan Nicholson44d99142007-12-05 18:47:01 -0800614 # Check for libdrm
Dan Nicholsoncc77e8f2008-05-05 14:38:22 -0700615 PKG_CHECK_MODULES([LIBDRM], [libdrm >= $LIBDRM_REQUIRED])
616 PKG_CHECK_MODULES([DRI2PROTO], [dri2proto >= $DRI2PROTO_REQUIRED])
Jesse Barnesf2f83d92010-01-11 17:28:10 -0500617 PKG_CHECK_MODULES([GLPROTO], [glproto >= $GLPROTO_REQUIRED])
Jesse Barnesed59b132010-01-13 15:48:14 -0500618 GL_PC_REQ_PRIV="libdrm >= $LIBDRM_REQUIRED dri2proto >= $DRI2PROTO_REQUIRED glproto >= $GLPROTO_REQUIRED"
619 DRI_PC_REQ_PRIV="libdrm >= $LIBDRM_REQUIRED"
Dan Nicholson44d99142007-12-05 18:47:01 -0800620
621 # find the DRI deps for libGL
622 if test "$x11_pkgconfig" = yes; then
Dan Nicholson2d709fe2008-05-06 10:51:49 -0700623 # add xcb modules if necessary
624 dri_modules="x11 xext xxf86vm xdamage xfixes"
625 if test "$enable_xcb" = yes; then
626 dri_modules="$dri_modules x11-xcb xcb-glx"
627 fi
628
629 PKG_CHECK_MODULES([DRIGL], [$dri_modules])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800630 GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV $dri_modules"
Dan Nicholson44d99142007-12-05 18:47:01 -0800631 X11_INCLUDES="$X11_INCLUDES $DRIGL_CFLAGS"
632 GL_LIB_DEPS="$DRIGL_LIBS"
633 else
634 # should check these...
635 X11_INCLUDES="$X11_INCLUDES $X_CFLAGS"
636 GL_LIB_DEPS="$X_LIBS -lX11 -lXext -lXxf86vm -lXdamage -lXfixes"
Dan Nicholson71e208b2008-11-24 11:01:57 -0800637 GL_PC_LIB_PRIV="$GL_LIB_DEPS"
638 GL_PC_CFLAGS="$X11_INCLUDES"
Dan Nicholson2d709fe2008-05-06 10:51:49 -0700639
640 # XCB can only be used from pkg-config
641 if test "$enable_xcb" = yes; then
642 PKG_CHECK_MODULES([XCB],[x11-xcb xcb-glx])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800643 GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV x11-xcb xcb-glx"
Dan Nicholson2d709fe2008-05-06 10:51:49 -0700644 X11_INCLUDES="$X11_INCLUDES $XCB_CFLAGS"
645 GL_LIB_DEPS="$GL_LIB_DEPS $XCB_LIBS"
646 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800647 fi
648
649 # need DRM libs, -lpthread, etc.
Alan Coopersmith3cf6e622009-03-23 16:51:54 -0700650 GL_LIB_DEPS="$GL_LIB_DEPS $LIBDRM_LIBS -lm -lpthread $DLOPEN_LIBS"
651 GL_PC_LIB_PRIV="-lm -lpthread $DLOPEN_LIBS"
Dan Nicholson44d99142007-12-05 18:47:01 -0800652 ;;
Dan Nicholson979ff512007-12-05 18:47:01 -0800653osmesa)
654 # No libGL for osmesa
Alan Coopersmith3cf6e622009-03-23 16:51:54 -0700655 GL_LIB_DEPS=""
Dan Nicholson979ff512007-12-05 18:47:01 -0800656 ;;
Dan Nicholson44d99142007-12-05 18:47:01 -0800657esac
Dan Nicholson297e16c2008-05-05 15:42:53 -0700658AC_SUBST([GL_LIB_DEPS])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800659AC_SUBST([GL_PC_REQ_PRIV])
660AC_SUBST([GL_PC_LIB_PRIV])
661AC_SUBST([GL_PC_CFLAGS])
662AC_SUBST([DRI_PC_REQ_PRIV])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700663
664dnl
665dnl More X11 setup
666dnl
Dan Nicholsona1307182007-12-12 17:49:49 -0800667if test "$mesa_driver" = xlib; then
Dan Nicholsondca1b792007-10-23 09:25:58 -0700668 DEFINES="$DEFINES -DUSE_XSHM"
669fi
670
671dnl
Dan Nicholson44d99142007-12-05 18:47:01 -0800672dnl More DRI setup
673dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -0700674AC_ARG_ENABLE([glx-tls],
Dan Nicholson44d99142007-12-05 18:47:01 -0800675 [AS_HELP_STRING([--enable-glx-tls],
Dan Nicholson79ad4582007-12-07 19:11:01 -0800676 [enable TLS support in GLX @<:@default=disabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700677 [GLX_USE_TLS="$enableval"],
678 [GLX_USE_TLS=no])
Dan Nicholson44d99142007-12-05 18:47:01 -0800679dnl Directory for DRI drivers
Dan Nicholson297e16c2008-05-05 15:42:53 -0700680AC_ARG_WITH([dri-driverdir],
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800681 [AS_HELP_STRING([--with-dri-driverdir=DIR],
Dan Nicholson5dbbde52008-05-06 06:21:41 -0700682 [directory for the DRI drivers @<:@${libdir}/dri@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700683 [DRI_DRIVER_INSTALL_DIR="$withval"],
Dan Nicholson5dbbde52008-05-06 06:21:41 -0700684 [DRI_DRIVER_INSTALL_DIR='${libdir}/dri'])
Dan Nicholson297e16c2008-05-05 15:42:53 -0700685AC_SUBST([DRI_DRIVER_INSTALL_DIR])
Chow Loong Jin35506de2009-10-28 14:34:14 +0800686dnl Extra search path for DRI drivers
687AC_ARG_WITH([dri-searchpath],
688 [AS_HELP_STRING([--with-dri-searchpath=DIRS...],
689 [semicolon delimited DRI driver search directories @<:@${libdir}/dri@:>@])],
690 [DRI_DRIVER_SEARCH_DIR="$withval"],
691 [DRI_DRIVER_SEARCH_DIR='${DRI_DRIVER_INSTALL_DIR}'])
692AC_SUBST([DRI_DRIVER_SEARCH_DIR])
Dan Nicholson44d99142007-12-05 18:47:01 -0800693dnl Direct rendering or just indirect rendering
Dan Nicholson297e16c2008-05-05 15:42:53 -0700694AC_ARG_ENABLE([driglx-direct],
Dan Nicholson79ad4582007-12-07 19:11:01 -0800695 [AS_HELP_STRING([--disable-driglx-direct],
696 [enable direct rendering in GLX for DRI @<:@default=enabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700697 [driglx_direct="$enableval"],
698 [driglx_direct="yes"])
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800699dnl Which drivers to build - default is chosen by platform
Dan Nicholson297e16c2008-05-05 15:42:53 -0700700AC_ARG_WITH([dri-drivers],
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800701 [AS_HELP_STRING([--with-dri-drivers@<:@=DIRS...@:>@],
Dan Nicholson5cae1b72008-06-30 10:28:02 -0700702 [comma delimited DRI drivers list, e.g.
Michel Dänzercade0712009-07-10 14:49:46 +0200703 "swrast,i965,radeon" @<:@default=auto@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700704 [with_dri_drivers="$withval"],
705 [with_dri_drivers=yes])
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800706if test "x$with_dri_drivers" = x; then
707 with_dri_drivers=no
708fi
709
710dnl If $with_dri_drivers is yes, directories will be added through
711dnl platform checks
712DRI_DIRS=""
713case "$with_dri_drivers" in
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100714no) ;;
715yes)
716 DRI_DIRS="yes"
717 ;;
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800718*)
719 # verify the requested driver directories exist
Dan Nicholsone6e4f252008-07-06 14:17:39 -0700720 dri_drivers=`IFS=', '; echo $with_dri_drivers`
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800721 for driver in $dri_drivers; do
722 test -d "$srcdir/src/mesa/drivers/dri/$driver" || \
723 AC_MSG_ERROR([DRI driver directory '$driver' doesn't exist])
724 done
725 DRI_DIRS="$dri_drivers"
726 ;;
727esac
728
Dan Nicholson44d99142007-12-05 18:47:01 -0800729dnl Set DRI_DIRS, DEFINES and LIB_DEPS
730if test "$mesa_driver" = dri; then
731 # Use TLS in GLX?
732 if test "x$GLX_USE_TLS" = xyes; then
733 DEFINES="$DEFINES -DGLX_USE_TLS -DPTHREADS"
734 fi
735
Dan Nicholson44d99142007-12-05 18:47:01 -0800736 # Platform specific settings and drivers to build
737 case "$host_os" in
738 linux*)
739 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
Dan Nicholson44d99142007-12-05 18:47:01 -0800740 if test "x$driglx_direct" = xyes; then
741 DEFINES="$DEFINES -DGLX_DIRECT_RENDERING"
742 fi
Jerome Glisse14f79d42008-12-18 13:36:07 +0100743 DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING -DHAVE_ALIAS"
Dan Nicholson44d99142007-12-05 18:47:01 -0800744
745 case "$host_cpu" in
Dan Nicholson44d99142007-12-05 18:47:01 -0800746 x86_64)
Kristian Høgsberg79aeafd2010-02-25 16:12:58 -0500747 # sis is missing because they have not be converted to use
748 # the new interface. i810 are missing because there is no
749 # x86-64 system where they could *ever* be used.
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100750 if test "x$DRI_DIRS" = "xyes"; then
Alex Deucher4138bdb2009-04-08 15:16:35 -0400751 DRI_DIRS="i915 i965 mach64 mga r128 r200 r300 r600 radeon \
George Sapountzis280bf892008-05-11 14:43:40 +0300752 savage tdfx unichrome swrast"
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800753 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800754 ;;
755 powerpc*)
Dan Nicholsona76e2452007-12-07 11:25:08 -0800756 # Build only the drivers for cards that exist on PowerPC.
757 # At some point MGA will be added, but not yet.
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100758 if test "x$DRI_DIRS" = "xyes"; then
Alex Deucher4138bdb2009-04-08 15:16:35 -0400759 DRI_DIRS="mach64 r128 r200 r300 r600 radeon tdfx swrast"
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800760 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800761 ;;
Dave Airlie2b0e75e2008-06-12 12:06:50 +1000762 sparc*)
763 # Build only the drivers for cards that exist on sparc`
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100764 if test "x$DRI_DIRS" = "xyes"; then
Kristian Høgsberg79aeafd2010-02-25 16:12:58 -0500765 DRI_DIRS="mach64 r128 r200 r300 r600 radeon swrast"
Dave Airlie2b0e75e2008-06-12 12:06:50 +1000766 fi
767 ;;
Dan Nicholson44d99142007-12-05 18:47:01 -0800768 esac
769 ;;
Hasso Tepper9f8df2d2008-04-09 10:51:21 -0700770 freebsd* | dragonfly*)
Dan Nicholson44d99142007-12-05 18:47:01 -0800771 DEFINES="$DEFINES -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1"
772 DEFINES="$DEFINES -DIN_DRI_DRIVER -DHAVE_ALIAS"
773 DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING"
774 if test "x$driglx_direct" = xyes; then
775 DEFINES="$DEFINES -DGLX_DIRECT_RENDERING"
776 fi
777 if test "x$GXX" = xyes; then
778 CXXFLAGS="$CXXFLAGS -ansi -pedantic"
779 fi
780
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100781 if test "x$DRI_DIRS" = "xyes"; then
Alex Deucher4138bdb2009-04-08 15:16:35 -0400782 DRI_DIRS="i810 i915 i965 mach64 mga r128 r200 r300 r600 radeon tdfx \
George Sapountzis280bf892008-05-11 14:43:40 +0300783 unichrome savage sis swrast"
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800784 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800785 ;;
Samuel Thibaultd18dd6a2009-04-23 05:43:22 -0700786 gnu*)
787 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
788 DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING -DHAVE_ALIAS"
789 ;;
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -0700790 solaris*)
791 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
792 DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING"
793 if test "x$driglx_direct" = xyes; then
794 DEFINES="$DEFINES -DGLX_DIRECT_RENDERING"
795 fi
796 ;;
Dan Nicholson44d99142007-12-05 18:47:01 -0800797 esac
Dan Nicholson112a40e2008-02-21 10:17:19 -0800798
799 # default drivers
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100800 if test "x$DRI_DIRS" = "xyes"; then
Corbin Simpson8e4657a2009-10-22 12:29:30 -0700801 DRI_DIRS="i810 i915 i965 mach64 mga r128 r200 r300 r600 radeon \
Kristian Høgsberg79aeafd2010-02-25 16:12:58 -0500802 savage sis tdfx unichrome swrast"
Dan Nicholson112a40e2008-02-21 10:17:19 -0800803 fi
804
Dan Nicholson44d99142007-12-05 18:47:01 -0800805 DRI_DIRS=`echo "$DRI_DIRS" | $SED 's/ */ /g'`
806
807 # Check for expat
808 EXPAT_INCLUDES=""
809 EXPAT_LIB=-lexpat
Dan Nicholson297e16c2008-05-05 15:42:53 -0700810 AC_ARG_WITH([expat],
811 [AS_HELP_STRING([--with-expat=DIR],
812 [expat install directory])],[
Dan Nicholson44d99142007-12-05 18:47:01 -0800813 EXPAT_INCLUDES="-I$withval/include"
814 CPPFLAGS="$CPPFLAGS $EXPAT_INCLUDES"
815 LDFLAGS="$LDFLAGS -L$withval/$LIB_DIR"
816 EXPAT_LIB="-L$withval/$LIB_DIR -lexpat"
817 ])
Dan Nicholson297e16c2008-05-05 15:42:53 -0700818 AC_CHECK_HEADER([expat.h],[],[AC_MSG_ERROR([Expat required for DRI.])])
819 AC_CHECK_LIB([expat],[XML_ParserCreate],[],
820 [AC_MSG_ERROR([Expat required for DRI.])])
Dan Nicholson44d99142007-12-05 18:47:01 -0800821
822 # put all the necessary libs together
Eric Anholt050c5332008-03-20 17:28:58 -0700823 DRI_LIB_DEPS="$SELINUX_LIBS $LIBDRM_LIBS $EXPAT_LIB -lm -lpthread $DLOPEN_LIBS"
Dan Nicholson44d99142007-12-05 18:47:01 -0800824fi
Dan Nicholson297e16c2008-05-05 15:42:53 -0700825AC_SUBST([DRI_DIRS])
826AC_SUBST([EXPAT_INCLUDES])
827AC_SUBST([DRI_LIB_DEPS])
Dan Nicholson44d99142007-12-05 18:47:01 -0800828
Kristian Høgsberg8616cec2010-01-01 17:03:33 -0500829case $DRI_DIRS in
830*i915*|*i965*)
Eric Anholt179d2c02010-03-02 15:34:17 -0800831 PKG_CHECK_MODULES([INTEL], [libdrm_intel >= 2.4.19])
Kristian Høgsberg8616cec2010-01-01 17:03:33 -0500832 ;;
Kristian Høgsberg27fe7a72010-01-07 10:29:29 -0500833esac
Kristian Høgsberg8616cec2010-01-01 17:03:33 -0500834
Kristian Høgsberg27fe7a72010-01-07 10:29:29 -0500835case $DRI_DIRS in
Kristian Høgsberg8616cec2010-01-01 17:03:33 -0500836*radeon*|*r200*|*r300*|*r600*)
837 PKG_CHECK_MODULES([LIBDRM_RADEON],
838 [libdrm_radeon libdrm >= $LIBDRM_RADEON_REQUIRED],
839 HAVE_LIBDRM_RADEON=yes,
840 HAVE_LIBDRM_RADEON=no)
841
842 if test "$HAVE_LIBDRM_RADEON" = yes; then
843 RADEON_CFLAGS="-DHAVE_LIBDRM_RADEON=1 $LIBDRM_RADEON_CFLAGS"
844 RADEON_LDFLAGS=$LIBDRM_RADEON_LIBS
845 fi
846 ;;
847esac
848AC_SUBST([RADEON_CFLAGS])
849AC_SUBST([RADEON_LDFLAGS])
850
851
Dan Nicholson44d99142007-12-05 18:47:01 -0800852dnl
Dan Nicholsondca1b792007-10-23 09:25:58 -0700853dnl OSMesa configuration
854dnl
Dan Nicholsona1307182007-12-12 17:49:49 -0800855if test "$mesa_driver" = xlib; then
Dan Nicholson544ab202007-12-30 08:41:53 -0800856 default_gl_osmesa=yes
Dan Nicholson979ff512007-12-05 18:47:01 -0800857else
Dan Nicholson544ab202007-12-30 08:41:53 -0800858 default_gl_osmesa=no
Dan Nicholson44d99142007-12-05 18:47:01 -0800859fi
Dan Nicholson297e16c2008-05-05 15:42:53 -0700860AC_ARG_ENABLE([gl-osmesa],
Dan Nicholson544ab202007-12-30 08:41:53 -0800861 [AS_HELP_STRING([--enable-gl-osmesa],
862 [enable OSMesa on libGL @<:@default=enabled for xlib driver@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700863 [gl_osmesa="$enableval"],
864 [gl_osmesa="$default_gl_osmesa"])
Dan Nicholson544ab202007-12-30 08:41:53 -0800865if test "x$gl_osmesa" = xyes; then
866 if test "$mesa_driver" = osmesa; then
867 AC_MSG_ERROR([libGL is not available for OSMesa driver])
Dan Nicholson979ff512007-12-05 18:47:01 -0800868 else
Dan Nicholson544ab202007-12-30 08:41:53 -0800869 DRIVER_DIRS="$DRIVER_DIRS osmesa"
Dan Nicholson979ff512007-12-05 18:47:01 -0800870 fi
871fi
872
Dan Nicholson6689f9e2007-12-05 21:04:15 -0800873dnl Configure the channel bits for OSMesa (libOSMesa, libOSMesa16, ...)
Dan Nicholson297e16c2008-05-05 15:42:53 -0700874AC_ARG_WITH([osmesa-bits],
Dan Nicholson6689f9e2007-12-05 21:04:15 -0800875 [AS_HELP_STRING([--with-osmesa-bits=BITS],
876 [OSMesa channel bits and library name: 8, 16, 32 @<:@default=8@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700877 [osmesa_bits="$withval"],
878 [osmesa_bits=8])
Dan Nicholson6689f9e2007-12-05 21:04:15 -0800879if test "$mesa_driver" != osmesa && test "x$osmesa_bits" != x8; then
880 AC_MSG_WARN([Ignoring OSMesa channel bits for non-OSMesa driver])
881 osmesa_bits=8
882fi
883case "x$osmesa_bits" in
884x8)
885 OSMESA_LIB=OSMesa
886 ;;
887x16|x32)
888 OSMESA_LIB="OSMesa$osmesa_bits"
889 DEFINES="$DEFINES -DCHAN_BITS=$osmesa_bits -DDEFAULT_SOFTWARE_DEPTH_BITS=31"
890 ;;
891*)
892 AC_MSG_ERROR([OSMesa bits '$osmesa_bits' is not a valid option])
893 ;;
894esac
Dan Nicholson297e16c2008-05-05 15:42:53 -0700895AC_SUBST([OSMESA_LIB])
Dan Nicholson6689f9e2007-12-05 21:04:15 -0800896
Dan Nicholson979ff512007-12-05 18:47:01 -0800897case "$mesa_driver" in
898osmesa)
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -0700899 # only link libraries with osmesa if shared
Dan Nicholson88586332007-11-15 08:59:57 -0800900 if test "$enable_static" = no; then
Dan Nicholson4795dd52009-06-04 19:42:08 -0700901 OSMESA_LIB_DEPS="-lm -lpthread $SELINUX_LIBS $DLOPEN_LIBS"
Dan Nicholson88586332007-11-15 08:59:57 -0800902 else
903 OSMESA_LIB_DEPS=""
904 fi
Dan Nicholson979ff512007-12-05 18:47:01 -0800905 OSMESA_MESA_DEPS=""
Dan Nicholson4795dd52009-06-04 19:42:08 -0700906 OSMESA_PC_LIB_PRIV="-lm -lpthread $SELINUX_LIBS $DLOPEN_LIBS"
Dan Nicholson979ff512007-12-05 18:47:01 -0800907 ;;
908*)
909 # Link OSMesa to libGL otherwise
910 OSMESA_LIB_DEPS=""
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -0700911 # only link libraries with osmesa if shared
Dan Nicholson88586332007-11-15 08:59:57 -0800912 if test "$enable_static" = no; then
913 OSMESA_MESA_DEPS='-l$(GL_LIB)'
914 else
915 OSMESA_MESA_DEPS=""
916 fi
Dan Nicholson8be02fc2008-12-14 09:35:29 -0800917 OSMESA_PC_REQ="gl"
Dan Nicholson979ff512007-12-05 18:47:01 -0800918 ;;
919esac
Alan Coopersmith3cf6e622009-03-23 16:51:54 -0700920OSMESA_PC_LIB_PRIV="$OSMESA_PC_LIB_PRIV"
Dan Nicholson297e16c2008-05-05 15:42:53 -0700921AC_SUBST([OSMESA_LIB_DEPS])
922AC_SUBST([OSMESA_MESA_DEPS])
Dan Nicholson8be02fc2008-12-14 09:35:29 -0800923AC_SUBST([OSMESA_PC_REQ])
924AC_SUBST([OSMESA_PC_LIB_PRIV])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700925
926dnl
Dan Nicholson53b37342009-02-25 17:45:34 -0800927dnl EGL configuration
928dnl
Dan Nicholson66f97862009-04-29 12:11:43 -0700929AC_ARG_ENABLE([egl],
930 [AS_HELP_STRING([--disable-egl],
931 [disable EGL library @<:@default=enabled@:>@])],
932 [enable_egl="$enableval"],
933 [enable_egl=yes])
934if test "x$enable_egl" = xyes; then
935 SRC_DIRS="$SRC_DIRS egl"
Chia-I Wud4c1ee02009-12-21 11:13:18 +0800936 EGL_LIB_DEPS="$DLOPEN_LIBS -lpthread"
937 EGL_DRIVERS_DIRS=""
Chia-I Wu2eb7a2f2010-02-05 10:46:11 +0800938 if test "$enable_static" != yes; then
Chia-I Wud4c1ee02009-12-21 11:13:18 +0800939 # build egl_glx when libGL is built
Chia-I Wu2eb7a2f2010-02-05 10:46:11 +0800940 if test "$mesa_driver" != osmesa; then
941 EGL_DRIVERS_DIRS="glx"
942 fi
943
944 # build egl_dri2 when xcb-dri2 is available
Kristian Høgsberg077bc2f2010-02-05 13:55:32 -0500945 PKG_CHECK_MODULES([EGL_DRI2], [x11-xcb xcb-dri2 xcb-xfixes libdrm],
946 [have_xcb_dri2=yes],[have_xcb_dri2=no])
Chia-I Wu2eb7a2f2010-02-05 10:46:11 +0800947 if test "$have_xcb_dri2" = yes; then
948 EGL_DRIVERS_DIRS="$EGL_DRIVERS_DIRS dri2"
949 fi
Kristian Høgsberg42fa0092010-02-03 10:18:28 -0500950 fi
Kristian Høgsberg1ebc5682010-02-09 15:54:59 -0500951
952 if test "$with_demos" = yes; then
953 PROGRAM_DIRS="$PROGRAM_DIRS egl"
954 fi
Dan Nicholson53b37342009-02-25 17:45:34 -0800955fi
Dan Nicholson53b37342009-02-25 17:45:34 -0800956AC_SUBST([EGL_LIB_DEPS])
Chia-I Wud4c1ee02009-12-21 11:13:18 +0800957AC_SUBST([EGL_DRIVERS_DIRS])
Dan Nicholson53b37342009-02-25 17:45:34 -0800958
959dnl
Dan Nicholsondca1b792007-10-23 09:25:58 -0700960dnl GLU configuration
961dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -0700962AC_ARG_ENABLE([glu],
Dan Nicholson79ad4582007-12-07 19:11:01 -0800963 [AS_HELP_STRING([--disable-glu],
964 [enable OpenGL Utility library @<:@default=enabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700965 [enable_glu="$enableval"],
966 [enable_glu=yes])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700967if test "x$enable_glu" = xyes; then
968 SRC_DIRS="$SRC_DIRS glu"
969
Dan Nicholson979ff512007-12-05 18:47:01 -0800970 case "$mesa_driver" in
971 osmesa)
Dan Nicholson6689f9e2007-12-05 21:04:15 -0800972 # If GLU is available and we have libOSMesa (not 16 or 32),
973 # we can build the osdemos
Dan Nicholson8e4d1472007-11-15 08:59:57 -0800974 if test "$with_demos" = yes && test "$osmesa_bits" = 8; then
Dan Nicholson6689f9e2007-12-05 21:04:15 -0800975 PROGRAM_DIRS="$PROGRAM_DIRS osdemos"
976 fi
Dan Nicholsondca1b792007-10-23 09:25:58 -0700977
Dan Nicholson979ff512007-12-05 18:47:01 -0800978 # Link libGLU to libOSMesa instead of libGL
979 GLU_LIB_DEPS=""
Dan Nicholson8be02fc2008-12-14 09:35:29 -0800980 GLU_PC_REQ="osmesa"
Dan Nicholson88586332007-11-15 08:59:57 -0800981 if test "$enable_static" = no; then
982 GLU_MESA_DEPS='-l$(OSMESA_LIB)'
983 else
984 GLU_MESA_DEPS=""
985 fi
Dan Nicholson979ff512007-12-05 18:47:01 -0800986 ;;
987 *)
Dan Nicholson88586332007-11-15 08:59:57 -0800988 # If static, empty GLU_LIB_DEPS and add libs for programs to link
Dan Nicholson71e208b2008-11-24 11:01:57 -0800989 GLU_PC_REQ="gl"
990 GLU_PC_LIB_PRIV="-lm"
Dan Nicholson88586332007-11-15 08:59:57 -0800991 if test "$enable_static" = no; then
992 GLU_LIB_DEPS="-lm"
993 GLU_MESA_DEPS='-l$(GL_LIB)'
994 else
995 GLU_LIB_DEPS=""
996 GLU_MESA_DEPS=""
997 APP_LIB_DEPS="$APP_LIB_DEPS -lstdc++"
998 fi
Dan Nicholson979ff512007-12-05 18:47:01 -0800999 ;;
1000 esac
Dan Nicholsondca1b792007-10-23 09:25:58 -07001001fi
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -07001002if test "$enable_static" = no; then
1003 GLU_LIB_DEPS="$GLU_LIB_DEPS $OS_CPLUSPLUS_LIBS"
1004fi
Dan Nicholson71e208b2008-11-24 11:01:57 -08001005GLU_PC_LIB_PRIV="$GLU_PC_LIB_PRIV $OS_CPLUSPLUS_LIBS"
Dan Nicholson297e16c2008-05-05 15:42:53 -07001006AC_SUBST([GLU_LIB_DEPS])
1007AC_SUBST([GLU_MESA_DEPS])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001008AC_SUBST([GLU_PC_REQ])
1009AC_SUBST([GLU_PC_REQ_PRIV])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001010AC_SUBST([GLU_PC_LIB_PRIV])
1011AC_SUBST([GLU_PC_CFLAGS])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001012
1013dnl
1014dnl GLw configuration
1015dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -07001016AC_ARG_ENABLE([glw],
Dan Nicholson79ad4582007-12-07 19:11:01 -08001017 [AS_HELP_STRING([--disable-glw],
1018 [enable Xt/Motif widget library @<:@default=enabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -07001019 [enable_glw="$enableval"],
1020 [enable_glw=yes])
Dan Nicholson979ff512007-12-05 18:47:01 -08001021dnl Don't build GLw on osmesa
1022if test "x$enable_glw" = xyes && test "$mesa_driver" = osmesa; then
1023 AC_MSG_WARN([Disabling GLw since the driver is OSMesa])
1024 enable_glw=no
1025fi
Dan Nicholson776c60d2008-07-18 07:40:41 -07001026AC_ARG_ENABLE([motif],
1027 [AS_HELP_STRING([--enable-motif],
1028 [use Motif widgets in GLw @<:@default=disabled@:>@])],
1029 [enable_motif="$enableval"],
1030 [enable_motif=no])
1031
Dan Nicholsondca1b792007-10-23 09:25:58 -07001032if test "x$enable_glw" = xyes; then
1033 SRC_DIRS="$SRC_DIRS glw"
1034 if test "$x11_pkgconfig" = yes; then
Dan Nicholson297e16c2008-05-05 15:42:53 -07001035 PKG_CHECK_MODULES([GLW],[x11 xt])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001036 GLW_PC_REQ_PRIV="x11 xt"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001037 GLW_LIB_DEPS="$GLW_LIBS"
1038 else
1039 # should check these...
Dan Nicholson776c60d2008-07-18 07:40:41 -07001040 GLW_LIB_DEPS="$X_LIBS -lXt -lX11"
Dan Nicholson71e208b2008-11-24 11:01:57 -08001041 GLW_PC_LIB_PRIV="$GLW_LIB_DEPS"
1042 GLW_PC_CFLAGS="$X11_INCLUDES"
Dan Nicholson776c60d2008-07-18 07:40:41 -07001043 fi
1044
1045 GLW_SOURCES="GLwDrawA.c"
1046 MOTIF_CFLAGS=
1047 if test "x$enable_motif" = xyes; then
1048 GLW_SOURCES="$GLW_SOURCES GLwMDrawA.c"
1049 AC_PATH_PROG([MOTIF_CONFIG], [motif-config], [no])
1050 if test "x$MOTIF_CONFIG" != xno; then
1051 MOTIF_CFLAGS=`$MOTIF_CONFIG --cflags`
1052 MOTIF_LIBS=`$MOTIF_CONFIG --libs`
1053 else
1054 AC_CHECK_HEADER([Xm/PrimitiveP.h], [],
1055 [AC_MSG_ERROR([Can't locate Motif headers])])
1056 AC_CHECK_LIB([Xm], [XmGetPixmap], [MOTIF_LIBS="-lXm"],
1057 [AC_MSG_ERROR([Can't locate Motif Xm library])])
1058 fi
1059 # MOTIF_LIBS is prepended to GLW_LIB_DEPS since Xm needs Xt/X11
1060 GLW_LIB_DEPS="$MOTIF_LIBS $GLW_LIB_DEPS"
Dan Nicholson71e208b2008-11-24 11:01:57 -08001061 GLW_PC_LIB_PRIV="$MOTIF_LIBS $GLW_PC_LIB_PRIV"
1062 GLW_PC_CFLAGS="$MOTIF_CFLAGS $GLW_PC_CFLAGS"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001063 fi
1064
Dan Nicholson88586332007-11-15 08:59:57 -08001065 # If static, empty GLW_LIB_DEPS and add libs for programs to link
Alan Coopersmith3cf6e622009-03-23 16:51:54 -07001066 GLW_PC_LIB_PRIV="$GLW_PC_LIB_PRIV"
Dan Nicholson88586332007-11-15 08:59:57 -08001067 if test "$enable_static" = no; then
1068 GLW_MESA_DEPS='-l$(GL_LIB)'
Alan Coopersmith3cf6e622009-03-23 16:51:54 -07001069 GLW_LIB_DEPS="$GLW_LIB_DEPS"
Dan Nicholson88586332007-11-15 08:59:57 -08001070 else
1071 APP_LIB_DEPS="$APP_LIB_DEPS $GLW_LIB_DEPS"
1072 GLW_LIB_DEPS=""
1073 GLW_MESA_DEPS=""
1074 fi
Dan Nicholsondca1b792007-10-23 09:25:58 -07001075fi
Dan Nicholson297e16c2008-05-05 15:42:53 -07001076AC_SUBST([GLW_LIB_DEPS])
1077AC_SUBST([GLW_MESA_DEPS])
Dan Nicholson776c60d2008-07-18 07:40:41 -07001078AC_SUBST([GLW_SOURCES])
1079AC_SUBST([MOTIF_CFLAGS])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001080AC_SUBST([GLW_PC_REQ_PRIV])
1081AC_SUBST([GLW_PC_LIB_PRIV])
1082AC_SUBST([GLW_PC_CFLAGS])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001083
1084dnl
1085dnl GLUT configuration
1086dnl
1087if test -f "$srcdir/include/GL/glut.h"; then
1088 default_glut=yes
1089else
1090 default_glut=no
1091fi
Dan Nicholson297e16c2008-05-05 15:42:53 -07001092AC_ARG_ENABLE([glut],
Dan Nicholson79ad4582007-12-07 19:11:01 -08001093 [AS_HELP_STRING([--disable-glut],
1094 [enable GLUT library @<:@default=enabled if source available@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -07001095 [enable_glut="$enableval"],
1096 [enable_glut="$default_glut"])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001097
1098dnl Can't build glut if GLU not available
1099if test "x$enable_glu$enable_glut" = xnoyes; then
1100 AC_MSG_WARN([Disabling glut since GLU is disabled])
1101 enable_glut=no
1102fi
Dan Nicholson979ff512007-12-05 18:47:01 -08001103dnl Don't build glut on osmesa
1104if test "x$enable_glut" = xyes && test "$mesa_driver" = osmesa; then
1105 AC_MSG_WARN([Disabling glut since the driver is OSMesa])
1106 enable_glut=no
1107fi
1108
Dan Nicholsondca1b792007-10-23 09:25:58 -07001109if test "x$enable_glut" = xyes; then
1110 SRC_DIRS="$SRC_DIRS glut/glx"
1111 GLUT_CFLAGS=""
1112 if test "x$GCC" = xyes; then
1113 GLUT_CFLAGS="-fexceptions"
1114 fi
1115 if test "$x11_pkgconfig" = yes; then
Dan Nicholson297e16c2008-05-05 15:42:53 -07001116 PKG_CHECK_MODULES([GLUT],[x11 xmu xi])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001117 GLUT_PC_REQ_PRIV="x11 xmu xi"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001118 GLUT_LIB_DEPS="$GLUT_LIBS"
1119 else
1120 # should check these...
Dan Nicholson70d0c832007-12-07 11:12:20 -08001121 GLUT_LIB_DEPS="$X_LIBS -lX11 -lXmu -lXi"
Dan Nicholson71e208b2008-11-24 11:01:57 -08001122 GLUT_PC_LIB_PRIV="$GLUT_LIB_DEPS"
1123 GLUT_PC_CFLAGS="$X11_INCLUDES"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001124 fi
Alan Coopersmith3cf6e622009-03-23 16:51:54 -07001125 GLUT_LIB_DEPS="$GLUT_LIB_DEPS -lm"
1126 GLUT_PC_LIB_PRIV="$GLUT_PC_LIB_PRIV -lm"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001127
1128 # If glut is available, we can build most programs
Dan Nicholson8e4d1472007-11-15 08:59:57 -08001129 if test "$with_demos" = yes; then
1130 PROGRAM_DIRS="$PROGRAM_DIRS demos redbook samples glsl"
1131 fi
Dan Nicholsondca1b792007-10-23 09:25:58 -07001132
Dan Nicholson88586332007-11-15 08:59:57 -08001133 # If static, empty GLUT_LIB_DEPS and add libs for programs to link
1134 if test "$enable_static" = no; then
1135 GLUT_MESA_DEPS='-l$(GLU_LIB) -l$(GL_LIB)'
1136 else
1137 APP_LIB_DEPS="$APP_LIB_DEPS $GLUT_LIB_DEPS"
1138 GLUT_LIB_DEPS=""
1139 GLUT_MESA_DEPS=""
1140 fi
Dan Nicholsondca1b792007-10-23 09:25:58 -07001141fi
Dan Nicholson297e16c2008-05-05 15:42:53 -07001142AC_SUBST([GLUT_LIB_DEPS])
1143AC_SUBST([GLUT_MESA_DEPS])
1144AC_SUBST([GLUT_CFLAGS])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001145AC_SUBST([GLUT_PC_REQ_PRIV])
1146AC_SUBST([GLUT_PC_LIB_PRIV])
1147AC_SUBST([GLUT_PC_CFLAGS])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001148
1149dnl
1150dnl Program library dependencies
1151dnl Only libm is added here if necessary as the libraries should
1152dnl be pulled in by the linker
1153dnl
1154if test "x$APP_LIB_DEPS" = x; then
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -07001155 case "$host_os" in
1156 solaris*)
1157 APP_LIB_DEPS="-lX11 -lsocket -lnsl -lm"
1158 ;;
Jon TURNEY7eed6ab2009-06-08 16:02:18 +01001159 cygwin*)
1160 APP_LIB_DEPS="-lX11"
1161 ;;
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -07001162 *)
1163 APP_LIB_DEPS="-lm"
1164 ;;
1165 esac
Dan Nicholsondca1b792007-10-23 09:25:58 -07001166fi
Dan Nicholson297e16c2008-05-05 15:42:53 -07001167AC_SUBST([APP_LIB_DEPS])
1168AC_SUBST([PROGRAM_DIRS])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001169
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001170dnl
1171dnl Gallium configuration
1172dnl
1173AC_ARG_ENABLE([gallium],
1174 [AS_HELP_STRING([--disable-gallium],
1175 [build gallium @<:@default=enabled@:>@])],
1176 [enable_gallium="$enableval"],
1177 [enable_gallium=yes])
1178if test "x$enable_gallium" = xyes; then
1179 SRC_DIRS="$SRC_DIRS gallium gallium/winsys"
1180fi
Dan Nicholsondca1b792007-10-23 09:25:58 -07001181
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001182dnl
1183dnl Gallium state trackers configuration
1184dnl
1185AC_ARG_WITH([state-trackers],
1186 [AS_HELP_STRING([--with-state-trackers@<:@=DIRS...@:>@],
1187 [comma delimited state_trackers list, e.g.
1188 "egl,glx" @<:@default=auto@:>@])],
1189 [with_state_trackers="$withval"],
1190 [with_state_trackers=yes])
1191
1192case "$with_state_trackers" in
1193no)
1194 GALLIUM_STATE_TRACKERS_DIRS=""
1195 ;;
1196yes)
1197 # look at what else is built
1198 case "$mesa_driver" in
Jakob Bornecrantz373e6712009-04-18 23:13:56 +01001199 xlib)
1200 GALLIUM_STATE_TRACKERS_DIRS=glx
1201 ;;
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001202 dri)
Jakob Bornecrantzbc0532b2009-12-04 18:50:29 +00001203 GALLIUM_STATE_TRACKERS_DIRS="dri"
1204 if test "x$enable_egl" = xyes; then
Chia-I Wu3c967a92010-01-22 16:31:43 +08001205 GALLIUM_STATE_TRACKERS_DIRS="$GALLIUM_STATE_TRACKERS_DIRS egl"
Jakob Bornecrantzbc0532b2009-12-04 18:50:29 +00001206 fi
1207 # Have only tested st/xorg on 1.6.0 servers
Jakob Bornecrantz683a0992010-03-11 19:23:15 +00001208 PKG_CHECK_MODULES(XORG, [xorg-server >= 1.6.0 libdrm >= $LIBDRM_XORG_REQUIRED libkms >= $LIBKMS_XORG_REQUIRED],
Jakob Bornecrantzbc0532b2009-12-04 18:50:29 +00001209 HAVE_XORG="yes"; GALLIUM_STATE_TRACKERS_DIRS="$GALLIUM_STATE_TRACKERS_DIRS xorg",
1210 HAVE_XORG="no")
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001211 ;;
1212 esac
1213 ;;
1214*)
1215 # verify the requested state tracker exist
1216 state_trackers=`IFS=', '; echo $with_state_trackers`
1217 for tracker in $state_trackers; do
1218 test -d "$srcdir/src/gallium/state_trackers/$tracker" || \
1219 AC_MSG_ERROR([state tracker '$tracker' doesn't exist])
Dan Nicholson66f97862009-04-29 12:11:43 -07001220
Chia-I Wue5d351d2009-12-23 11:18:00 +08001221 case "$tracker" in
Chia-I Wu3c967a92010-01-22 16:31:43 +08001222 egl)
Chia-I Wue5d351d2009-12-23 11:18:00 +08001223 if test "x$enable_egl" != xyes; then
Chia-I Wu3c967a92010-01-22 16:31:43 +08001224 AC_MSG_ERROR([cannot build egl state tracker without EGL library])
Chia-I Wue5d351d2009-12-23 11:18:00 +08001225 fi
1226 ;;
1227 xorg)
Jakob Bornecrantz683a0992010-03-11 19:23:15 +00001228 PKG_CHECK_MODULES([LIBDRM_XORG], [libdrm >= $LIBDRM_XORG_REQUIRED])
1229 PKG_CHECK_MODULES([LIBKMS_XORG], [libkms >= $LIBKMS_XORG_REQUIRED])
1230 HAVE_XORG="yes"
Chia-I Wue5d351d2009-12-23 11:18:00 +08001231 ;;
1232 es)
1233 # mesa/es is required to build es state tracker
Chia-I Wu99a37ed2010-01-05 17:39:05 +08001234 CORE_DIRS="$CORE_DIRS mesa/es"
Chia-I Wue5d351d2009-12-23 11:18:00 +08001235 ;;
1236 esac
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001237 done
1238 GALLIUM_STATE_TRACKERS_DIRS="$state_trackers"
1239 ;;
1240esac
1241
Jakob Bornecrantz683a0992010-03-11 19:23:15 +00001242if test "x$HAVE_XORG" = xyes; then
1243 PKG_CHECK_MODULES(XEXT, [xextproto >= 7.0.99.1],
1244 HAVE_XEXTPROTO_71="yes"; DEFINES="$DEFINES -DHAVE_XEXTPROTO_71",
1245 HAVE_XEXTPROTO_71="no")
1246fi
1247
Chia-I Wu49381d62010-01-11 01:23:01 +08001248AC_ARG_WITH([egl-displays],
1249 [AS_HELP_STRING([--with-egl-displays@<:@=DIRS...@:>@],
1250 [comma delimited native displays libEGL supports, e.g.
Chia-I Wua68b51d2010-01-03 19:24:04 +08001251 "x11,kms" @<:@default=auto@:>@])],
Chia-I Wu49381d62010-01-11 01:23:01 +08001252 [with_egl_displays="$withval"],
1253 [with_egl_displays=yes])
1254
1255EGL_DISPLAYS=""
1256case "$with_egl_displays" in
1257yes)
1258 if test "x$enable_egl" = xyes && test "x$mesa_driver" != xosmesa; then
1259 EGL_DISPLAYS="x11"
1260 fi
1261 ;;
1262*)
1263 if test "x$enable_egl" != xyes; then
1264 AC_MSG_ERROR([cannot build egl state tracker without EGL library])
1265 fi
1266 # verify the requested driver directories exist
1267 egl_displays=`IFS=', '; echo $with_egl_displays`
1268 for dpy in $egl_displays; do
Chia-I Wu3c967a92010-01-22 16:31:43 +08001269 test -d "$srcdir/src/gallium/state_trackers/egl/$dpy" || \
Chia-I Wu49381d62010-01-11 01:23:01 +08001270 AC_MSG_ERROR([EGL display '$dpy' does't exist])
1271 done
1272 EGL_DISPLAYS="$egl_displays"
1273 ;;
1274esac
1275AC_SUBST([EGL_DISPLAYS])
1276
Chia-I Wu28c3e572010-01-23 20:18:43 +08001277AC_ARG_WITH([egl-driver-dir],
1278 [AS_HELP_STRING([--with-egl-driver-dir=DIR],
1279 [directory for EGL drivers [[default=${libdir}/egl]]])],
1280 [EGL_DRIVER_INSTALL_DIR="$withval"],
1281 [EGL_DRIVER_INSTALL_DIR='${libdir}/egl'])
1282AC_SUBST([EGL_DRIVER_INSTALL_DIR])
1283
Joel Bosveld8acca482009-03-06 08:46:08 +09001284AC_ARG_WITH([xorg-driver-dir],
1285 [AS_HELP_STRING([--with-xorg-driver-dir=DIR],
1286 [Default xorg driver directory[[default=${libdir}/xorg/modules/drivers]]])],
1287 [XORG_DRIVER_INSTALL_DIR="$withval"],
1288 [XORG_DRIVER_INSTALL_DIR="${libdir}/xorg/modules/drivers"])
1289AC_SUBST([XORG_DRIVER_INSTALL_DIR])
1290
Tom Fogal7085dce2009-08-13 19:40:30 -06001291AC_ARG_WITH([max-width],
1292 [AS_HELP_STRING([--with-max-width=N],
1293 [Maximum framebuffer width (4096)])],
1294 [DEFINES="${DEFINES} -DMAX_WIDTH=${withval}";
1295 AS_IF([test "${withval}" -gt "4096"],
1296 [AC_MSG_WARN([Large framebuffer: see s_tritemp.h comments.])])]
1297)
1298AC_ARG_WITH([max-height],
1299 [AS_HELP_STRING([--with-max-height=N],
1300 [Maximum framebuffer height (4096)])],
1301 [DEFINES="${DEFINES} -DMAX_HEIGHT=${withval}";
1302 AS_IF([test "${withval}" -gt "4096"],
1303 [AC_MSG_WARN([Large framebuffer: see s_tritemp.h comments.])])]
1304)
1305
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001306dnl
Jakob Bornecrantz60769b22009-11-12 01:28:26 +01001307dnl Gallium SVGA configuration
1308dnl
1309AC_ARG_ENABLE([gallium-svga],
Jakob Bornecrantz5e6fff72009-07-19 09:22:31 +02001310 [AS_HELP_STRING([--enable-gallium-svga],
1311 [build gallium SVGA @<:@default=disabled@:>@])],
Jakob Bornecrantz60769b22009-11-12 01:28:26 +01001312 [enable_gallium_svga="$enableval"],
Jakob Bornecrantz5e6fff72009-07-19 09:22:31 +02001313 [enable_gallium_svga=auto])
Jakob Bornecrantz60769b22009-11-12 01:28:26 +01001314if test "x$enable_gallium_svga" = xyes; then
1315 GALLIUM_WINSYS_DRM_DIRS="$GALLIUM_WINSYS_DRM_DIRS vmware"
1316 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS svga"
Jakob Bornecrantz5e6fff72009-07-19 09:22:31 +02001317elif test "x$enable_gallium_svga" = xauto; then
1318 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS svga"
Jakob Bornecrantz60769b22009-11-12 01:28:26 +01001319fi
1320
1321dnl
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001322dnl Gallium Intel configuration
1323dnl
1324AC_ARG_ENABLE([gallium-intel],
Jakob Bornecrantz8ac25032009-12-04 16:01:41 +00001325 [AS_HELP_STRING([--enable-gallium-intel],
1326 [build gallium intel @<:@default=disabled@:>@])],
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001327 [enable_gallium_intel="$enableval"],
Jakob Bornecrantz8ac25032009-12-04 16:01:41 +00001328 [enable_gallium_intel=auto])
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001329if test "x$enable_gallium_intel" = xyes; then
Jakob Bornecrantzce4f23a2009-11-04 23:02:13 +00001330 GALLIUM_WINSYS_DRM_DIRS="$GALLIUM_WINSYS_DRM_DIRS intel i965"
1331 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS i915 i965"
Jakob Bornecrantz8ac25032009-12-04 16:01:41 +00001332elif test "x$enable_gallium_intel" = xauto; then
Keith Whitwellaa026832009-12-22 09:40:39 +00001333 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS i915 i965"
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001334fi
1335
1336dnl
1337dnl Gallium Radeon configuration
1338dnl
1339AC_ARG_ENABLE([gallium-radeon],
1340 [AS_HELP_STRING([--enable-gallium-radeon],
1341 [build gallium radeon @<:@default=disabled@:>@])],
1342 [enable_gallium_radeon="$enableval"],
Jakob Bornecrantz877cadb2010-01-14 22:51:25 +00001343 [enable_gallium_radeon=auto])
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001344if test "x$enable_gallium_radeon" = xyes; then
1345 GALLIUM_WINSYS_DRM_DIRS="$GALLIUM_WINSYS_DRM_DIRS radeon"
Jakob Bornecrantzd67bd602009-02-20 11:03:18 +00001346 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS r300"
Jakob Bornecrantz877cadb2010-01-14 22:51:25 +00001347elif test "x$enable_gallium_radeon" = xauto; then
1348 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS r300"
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001349fi
1350
1351dnl
Thierry Vignaud1402ea82009-09-14 11:48:51 -06001352dnl Gallium Nouveau configuration
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001353dnl
1354AC_ARG_ENABLE([gallium-nouveau],
1355 [AS_HELP_STRING([--enable-gallium-nouveau],
1356 [build gallium nouveau @<:@default=disabled@:>@])],
1357 [enable_gallium_nouveau="$enableval"],
1358 [enable_gallium_nouveau=no])
1359if test "x$enable_gallium_nouveau" = xyes; then
1360 GALLIUM_WINSYS_DRM_DIRS="$GALLIUM_WINSYS_DRM_DIRS nouveau"
Francisco Jerez5b6b67e2010-02-04 22:15:22 +01001361 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS nouveau nv30 nv40 nv50"
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001362fi
1363
Chia-I Wua1306f42010-01-22 15:51:51 +08001364dnl
1365dnl Gallium swrast configuration
1366dnl
1367AC_ARG_ENABLE([gallium-swrast],
1368 [AS_HELP_STRING([--enable-gallium-swrast],
1369 [build gallium swrast @<:@default=disabled@:>@])],
1370 [enable_gallium_swrast="$enableval"],
1371 [enable_gallium_swrast=auto])
1372if test "x$enable_gallium_swrast" = xyes; then
1373 GALLIUM_WINSYS_DRM_DIRS="$GALLIUM_WINSYS_DRM_DIRS swrast"
1374fi
1375
Chia-I Wu99a37ed2010-01-05 17:39:05 +08001376dnl prepend CORE_DIRS to SRC_DIRS
1377SRC_DIRS="$CORE_DIRS $SRC_DIRS"
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001378
Dan Nicholsondca1b792007-10-23 09:25:58 -07001379dnl Restore LDFLAGS and CPPFLAGS
1380LDFLAGS="$_SAVE_LDFLAGS"
1381CPPFLAGS="$_SAVE_CPPFLAGS"
1382
1383dnl Substitute the config
Dan Nicholsonf64d6fe2007-12-12 17:57:45 -08001384AC_CONFIG_FILES([configs/autoconf])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001385
Dan Nicholsonaab38cf2007-12-11 08:21:51 -08001386dnl Replace the configs/current symlink
Dan Nicholsone14ebbc2008-05-06 11:28:43 -07001387AC_CONFIG_COMMANDS([configs],[
Dan Nicholsonaab38cf2007-12-11 08:21:51 -08001388if test -f configs/current || test -L configs/current; then
1389 rm -f configs/current
1390fi
1391ln -s autoconf configs/current
Dan Nicholsone14ebbc2008-05-06 11:28:43 -07001392])
1393
1394AC_OUTPUT
Dan Nicholsonaab38cf2007-12-11 08:21:51 -08001395
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001396dnl
1397dnl Output some configuration info for the user
1398dnl
1399echo ""
1400echo " prefix: $prefix"
1401echo " exec_prefix: $exec_prefix"
1402echo " libdir: $libdir"
Dan Nicholson11ac5b22008-07-03 09:17:44 -07001403echo " includedir: $includedir"
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001404
1405dnl Driver info
1406echo ""
1407echo " Driver: $mesa_driver"
Dan Nicholson544ab202007-12-30 08:41:53 -08001408if echo "$DRIVER_DIRS" | grep 'osmesa' >/dev/null 2>&1; then
1409 echo " OSMesa: lib$OSMESA_LIB"
1410else
1411 echo " OSMesa: no"
1412fi
1413if test "$mesa_driver" = dri; then
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001414 # cleanup the drivers var
1415 dri_dirs=`echo $DRI_DIRS | $SED 's/^ *//;s/ */ /;s/ *$//'`
Florent Thoumieb5095ab2008-07-28 14:44:43 +01001416if test "x$DRI_DIRS" = x; then
1417 echo " DRI drivers: no"
1418else
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001419 echo " DRI drivers: $dri_dirs"
Florent Thoumieb5095ab2008-07-28 14:44:43 +01001420fi
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001421 echo " DRI driver dir: $DRI_DRIVER_INSTALL_DIR"
Dan Nicholson544ab202007-12-30 08:41:53 -08001422fi
RALOVICH, Kristóf5f19f5c2008-11-04 11:53:32 +01001423echo " Use XCB: $enable_xcb"
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001424
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001425echo ""
1426if echo "$SRC_DIRS" | grep 'gallium' >/dev/null 2>&1; then
1427 echo " Gallium: yes"
1428 echo " Gallium dirs: $GALLIUM_DIRS"
1429 echo " Winsys dirs: $GALLIUM_WINSYS_DIRS"
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001430 echo " Winsys drm dirs:$GALLIUM_WINSYS_DRM_DIRS"
Jakob Bornecrantzd67bd602009-02-20 11:03:18 +00001431 echo " Driver dirs: $GALLIUM_DRIVERS_DIRS"
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001432 echo " Trackers dirs: $GALLIUM_STATE_TRACKERS_DIRS"
1433else
1434 echo " Gallium: no"
1435fi
1436
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001437dnl Libraries
1438echo ""
1439echo " Shared libs: $enable_shared"
1440echo " Static libs: $enable_static"
Kristian Høgsberg42fa0092010-02-03 10:18:28 -05001441if test "$enable_egl" = yes; then
1442 echo " EGL: $EGL_DRIVERS_DIRS"
1443else
1444 echo " EGL: no"
1445fi
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001446echo " GLU: $enable_glu"
Dan Nicholson776c60d2008-07-18 07:40:41 -07001447echo " GLw: $enable_glw (Motif: $enable_motif)"
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001448echo " glut: $enable_glut"
1449
1450dnl Programs
1451# cleanup the programs var for display
1452program_dirs=`echo $PROGRAM_DIRS | $SED 's/^ *//;s/ */ /;s/ *$//'`
1453if test "x$program_dirs" = x; then
1454 echo " Demos: no"
1455else
1456 echo " Demos: $program_dirs"
1457fi
1458
Dan Nicholson16a07fb2007-12-12 09:12:15 -08001459dnl Compiler options
1460# cleanup the CFLAGS/CXXFLAGS/DEFINES vars
1461cflags=`echo $CFLAGS $OPT_FLAGS $PIC_FLAGS $ARCH_FLAGS | \
1462 $SED 's/^ *//;s/ */ /;s/ *$//'`
1463cxxflags=`echo $CXXFLAGS $OPT_FLAGS $PIC_FLAGS $ARCH_FLAGS | \
1464 $SED 's/^ *//;s/ */ /;s/ *$//'`
1465defines=`echo $DEFINES $ASM_FLAGS | $SED 's/^ *//;s/ */ /;s/ *$//'`
1466echo ""
1467echo " CFLAGS: $cflags"
1468echo " CXXFLAGS: $cxxflags"
1469echo " Macros: $defines"
1470
Dan Nicholsondca1b792007-10-23 09:25:58 -07001471echo ""
Dan Nicholsonb6459422008-03-24 10:01:50 -07001472echo " Run '${MAKE-make}' to build Mesa"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001473echo ""