blob: ea2992d38b0e9643f94318e3686d5d6088059c3d [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'])])
8m4_ifval(mesa_version,[],[
9 m4_errprint([Error: Failed to get the Mesa version from the output of
10 running `make -f bin/version.mk version'
11])
12 m4_exit([1])
13])
Dan Nicholsondca1b792007-10-23 09:25:58 -070014
Dan Nicholsone97ab722008-07-01 08:55:42 -070015dnl Tell the user about autoconf.html in the --help output
16m4_divert_once([HELP_END], [
17See docs/autoconf.html for more details on the options for Mesa.])
18
Dan Nicholson00994ac2008-04-30 15:06:00 -070019AC_INIT([Mesa],[mesa_version],
Dan Nicholsonf64d6fe2007-12-12 17:57:45 -080020 [https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa])
Dan Nicholson297e16c2008-05-05 15:42:53 -070021AC_CONFIG_AUX_DIR([bin])
Dan Nicholsondca1b792007-10-23 09:25:58 -070022AC_CANONICAL_HOST
23
Dan Nicholsoncc77e8f2008-05-05 14:38:22 -070024dnl Versions for external dependencies
Brian44557bf2009-01-10 16:32:32 -070025LIBDRM_REQUIRED=2.4.3
Kristian Høgsberg154a9e52008-12-01 21:44:03 -050026DRI2PROTO_REQUIRED=1.99.3
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 Nicholsonbfb27b52008-06-30 09:40:30 -070036dnl We need a POSIX shell for parts of the build. Assume we have one
37dnl in most cases.
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -070038case "$host_os" in
39solaris*)
40 # Solaris /bin/sh is too old/non-POSIX compliant
41 AC_PATH_PROGS(POSIX_SHELL, [ksh93 ksh sh])
Dan Nicholsonbfb27b52008-06-30 09:40:30 -070042 SHELL="$POSIX_SHELL"
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -070043 ;;
44esac
45
Dan Nicholsondb7fc632008-03-07 11:48:09 -080046MKDEP_OPTIONS=-fdepend
Kristian Høgsbergbcecea62008-02-25 18:50:26 -050047dnl Ask gcc where it's keeping its secret headers
48if test "x$GCC" = xyes; then
Dan Nicholsona3d223f2009-01-30 10:52:09 -080049 for dir in include include-fixed; do
50 GCC_INCLUDES=`$CC -print-file-name=$dir`
51 if test "x$GCC_INCLUDES" != x && \
52 test "$GCC_INCLUDES" != "$dir" && \
53 test -d "$GCC_INCLUDES"; then
54 MKDEP_OPTIONS="$MKDEP_OPTIONS -I$GCC_INCLUDES"
55 fi
56 done
Kristian Høgsbergbcecea62008-02-25 18:50:26 -050057fi
Dan Nicholson297e16c2008-05-05 15:42:53 -070058AC_SUBST([MKDEP_OPTIONS])
Kristian Høgsbergbcecea62008-02-25 18:50:26 -050059
Dan Nicholson41b00702007-12-12 08:48:30 -080060dnl Make sure the pkg-config macros are defined
Dan Nicholson297e16c2008-05-05 15:42:53 -070061m4_ifdef([PKG_PROG_PKG_CONFIG],[],[
Dan Nicholson7154d662008-04-30 13:53:37 -070062 m4_errprint([Error: Could not locate the pkg-config autoconf macros.
63 These are usually located in /usr/share/aclocal/pkg.m4. If your
64 macros are in a different location, try setting the environment
65 variable ACLOCAL="aclocal -I/other/macro/dir" before running
66 autoreconf.
67])
68 m4_exit([1])
69])
Dan Nicholsondca1b792007-10-23 09:25:58 -070070PKG_PROG_PKG_CONFIG()
71
72dnl LIB_DIR - library basename
73LIB_DIR=`echo $libdir | $SED 's%.*/%%'`
Dan Nicholson297e16c2008-05-05 15:42:53 -070074AC_SUBST([LIB_DIR])
Dan Nicholsondca1b792007-10-23 09:25:58 -070075
76dnl Cache LDFLAGS so we can add EXTRA_LIB_PATH and restore it later
77_SAVE_LDFLAGS="$LDFLAGS"
Dan Nicholson297e16c2008-05-05 15:42:53 -070078AC_ARG_VAR([EXTRA_LIB_PATH],[Extra -L paths for the linker])
79AC_SUBST([EXTRA_LIB_PATH])
Dan Nicholsondca1b792007-10-23 09:25:58 -070080
81dnl Cache CPPFLAGS so we can add *_INCLUDES and restore it later
82_SAVE_CPPFLAGS="$CPPFLAGS"
Dan Nicholson297e16c2008-05-05 15:42:53 -070083AC_ARG_VAR([X11_INCLUDES],[Extra -I paths for X11 headers])
84AC_SUBST([X11_INCLUDES])
Dan Nicholsondca1b792007-10-23 09:25:58 -070085
86dnl Compiler macros
87DEFINES=""
Dan Nicholson297e16c2008-05-05 15:42:53 -070088AC_SUBST([DEFINES])
Dan Nicholsondca1b792007-10-23 09:25:58 -070089case "$host_os" in
Julien Cristau7f7fc3e2009-01-12 16:04:32 +010090*-gnu*)
Dan Nicholson29f603a2009-01-12 11:10:31 -080091 DEFINES="$DEFINES -D_GNU_SOURCE -DPTHREADS"
Dan Nicholsondca1b792007-10-23 09:25:58 -070092 ;;
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -070093solaris*)
94 DEFINES="$DEFINES -DPTHREADS -DSVR4"
95 ;;
Dan Nicholsondca1b792007-10-23 09:25:58 -070096esac
97
98dnl Add flags for gcc and g++
99if test "x$GCC" = xyes; then
100 CFLAGS="$CFLAGS -Wall -Wmissing-prototypes -std=c99 -ffast-math"
Dan Nicholson0c275b62008-01-15 22:52:25 -0800101
102 # Work around aliasing bugs - developers should comment this out
103 CFLAGS="$CFLAGS -fno-strict-aliasing"
Dan Nicholsondca1b792007-10-23 09:25:58 -0700104fi
105if test "x$GXX" = xyes; then
106 CXXFLAGS="$CXXFLAGS -Wall"
Dan Nicholson0c275b62008-01-15 22:52:25 -0800107
108 # Work around aliasing bugs - developers should comment this out
109 CXXFLAGS="$CXXFLAGS -fno-strict-aliasing"
Dan Nicholsondca1b792007-10-23 09:25:58 -0700110fi
111
112dnl These should be unnecessary, but let the user set them if they want
Dan Nicholson297e16c2008-05-05 15:42:53 -0700113AC_ARG_VAR([OPT_FLAGS], [Additional optimization flags for the compiler.
Dan Nicholsondca1b792007-10-23 09:25:58 -0700114 Default is to use CFLAGS.])
Dan Nicholson297e16c2008-05-05 15:42:53 -0700115AC_ARG_VAR([ARCH_FLAGS], [Additional architecture specific flags for the
Dan Nicholsondca1b792007-10-23 09:25:58 -0700116 compiler. Default is to use CFLAGS.])
Dan Nicholson297e16c2008-05-05 15:42:53 -0700117AC_SUBST([OPT_FLAGS])
118AC_SUBST([ARCH_FLAGS])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700119
120dnl
Dan Nicholsonab57cba2007-12-26 11:12:29 -0600121dnl Hacks to enable 32 or 64 bit build
122dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -0700123AC_ARG_ENABLE([32-bit],
Dan Nicholsonab57cba2007-12-26 11:12:29 -0600124 [AS_HELP_STRING([--enable-32-bit],
125 [build 32-bit libraries @<:@default=auto@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700126 [enable_32bit="$enableval"],
127 [enable_32bit=auto]
Dan Nicholsonab57cba2007-12-26 11:12:29 -0600128)
129if test "x$enable_32bit" = xyes; then
130 if test "x$GCC" = xyes; then
131 CFLAGS="$CFLAGS -m32"
132 fi
133 if test "x$GXX" = xyes; then
134 CXXFLAGS="$CXXFLAGS -m32"
135 fi
136fi
Dan Nicholson297e16c2008-05-05 15:42:53 -0700137AC_ARG_ENABLE([64-bit],
Dan Nicholsonab57cba2007-12-26 11:12:29 -0600138 [AS_HELP_STRING([--enable-64-bit],
139 [build 64-bit libraries @<:@default=auto@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700140 [enable_64bit="$enableval"],
141 [enable_64bit=auto]
Dan Nicholsonab57cba2007-12-26 11:12:29 -0600142)
143if test "x$enable_64bit" = xyes; then
144 if test "x$GCC" = xyes; then
145 CFLAGS="$CFLAGS -m64"
146 fi
147 if test "x$GXX" = xyes; then
148 CXXFLAGS="$CXXFLAGS -m64"
149 fi
150fi
151
152dnl
Dan Nicholson88586332007-11-15 08:59:57 -0800153dnl shared/static libraries, mimic libtool options
154dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -0700155AC_ARG_ENABLE([static],
Dan Nicholson88586332007-11-15 08:59:57 -0800156 [AS_HELP_STRING([--enable-static],
Dan Nicholson79ad4582007-12-07 19:11:01 -0800157 [build static libraries @<:@default=disabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700158 [enable_static="$enableval"],
159 [enable_static=no]
Dan Nicholson88586332007-11-15 08:59:57 -0800160)
161case "x$enable_static" in
162xyes|xno ) ;;
163x ) enable_static=no ;;
164* )
165 AC_MSG_ERROR([Static library option '$enable_static' is not a valid])
166 ;;
167esac
Dan Nicholson297e16c2008-05-05 15:42:53 -0700168AC_ARG_ENABLE([shared],
Dan Nicholson88586332007-11-15 08:59:57 -0800169 [AS_HELP_STRING([--disable-shared],
Dan Nicholson79ad4582007-12-07 19:11:01 -0800170 [build shared libraries @<:@default=enabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700171 [enable_shared="$enableval"],
172 [enable_shared=yes]
Dan Nicholson88586332007-11-15 08:59:57 -0800173)
174case "x$enable_shared" in
175xyes|xno ) ;;
176x ) enable_shared=yes ;;
177* )
178 AC_MSG_ERROR([Shared library option '$enable_shared' is not a valid])
179 ;;
180esac
181
182dnl Can't have static and shared libraries, default to static if user
183dnl explicitly requested. If both disabled, set to static since shared
184dnl was explicitly requirested.
185case "x$enable_static$enable_shared" in
186xyesyes )
187 AC_MSG_WARN([Can't build static and shared libraries, disabling shared])
188 enable_shared=no
189 ;;
190xnono )
191 AC_MSG_WARN([Can't disable both static and shared libraries, enabling static])
192 enable_static=yes
193 ;;
194esac
195
196dnl
197dnl mklib options
198dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -0700199AC_ARG_VAR([MKLIB_OPTIONS],[Options for the Mesa library script, mklib])
Dan Nicholson88586332007-11-15 08:59:57 -0800200if test "$enable_static" = yes; then
201 MKLIB_OPTIONS="$MKLIB_OPTIONS -static"
202fi
Dan Nicholson297e16c2008-05-05 15:42:53 -0700203AC_SUBST([MKLIB_OPTIONS])
Dan Nicholson88586332007-11-15 08:59:57 -0800204
Dan Nicholson23656c42007-12-12 09:02:31 -0800205dnl
206dnl other compiler options
207dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -0700208AC_ARG_ENABLE([debug],
Dan Nicholson23656c42007-12-12 09:02:31 -0800209 [AS_HELP_STRING([--enable-debug],
210 [use debug compiler flags and macros @<:@default=disabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700211 [enable_debug="$enableval"],
212 [enable_debug=no]
Dan Nicholson23656c42007-12-12 09:02:31 -0800213)
214if test "x$enable_debug" = xyes; then
215 DEFINES="$DEFINES -DDEBUG"
216 if test "x$GCC" = xyes; then
217 CFLAGS="$CFLAGS -g"
218 fi
219 if test "x$GXX" = xyes; then
220 CXXFLAGS="$CXXFLAGS -g"
221 fi
222fi
Dan Nicholson88586332007-11-15 08:59:57 -0800223
224dnl
Dan Nicholsondca1b792007-10-23 09:25:58 -0700225dnl library names
226dnl
Dan Nicholson88586332007-11-15 08:59:57 -0800227if test "$enable_static" = yes; then
Dan Nicholson8217f242009-02-11 15:16:00 -0800228 LIB_EXTENSION='a'
Dan Nicholson88586332007-11-15 08:59:57 -0800229else
Siddhartha Chaudhuri1a46c8a2009-02-09 07:58:38 -0700230 case "$host_os" in
231 darwin* )
232 LIB_EXTENSION='dylib' ;;
233 * )
234 LIB_EXTENSION='so' ;;
235 esac
Dan Nicholson88586332007-11-15 08:59:57 -0800236fi
Dan Nicholson8217f242009-02-11 15:16:00 -0800237
238GL_LIB_NAME='lib$(GL_LIB).'${LIB_EXTENSION}
239GLU_LIB_NAME='lib$(GLU_LIB).'${LIB_EXTENSION}
240GLUT_LIB_NAME='lib$(GLUT_LIB).'${LIB_EXTENSION}
241GLW_LIB_NAME='lib$(GLW_LIB).'${LIB_EXTENSION}
242OSMESA_LIB_NAME='lib$(OSMESA_LIB).'${LIB_EXTENSION}
243
244GL_LIB_GLOB='lib$(GL_LIB).*'${LIB_EXTENSION}'*'
245GLU_LIB_GLOB='lib$(GLU_LIB).*'${LIB_EXTENSION}'*'
246GLUT_LIB_GLOB='lib$(GLUT_LIB).*'${LIB_EXTENSION}'*'
247GLW_LIB_GLOB='lib$(GLW_LIB).*'${LIB_EXTENSION}'*'
248OSMESA_LIB_GLOB='lib$(OSMESA_LIB).*'${LIB_EXTENSION}'*'
249
Dan Nicholson297e16c2008-05-05 15:42:53 -0700250AC_SUBST([GL_LIB_NAME])
251AC_SUBST([GLU_LIB_NAME])
252AC_SUBST([GLUT_LIB_NAME])
253AC_SUBST([GLW_LIB_NAME])
254AC_SUBST([OSMESA_LIB_NAME])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700255
Siddhartha Chaudhuri1a46c8a2009-02-09 07:58:38 -0700256AC_SUBST([GL_LIB_GLOB])
257AC_SUBST([GLU_LIB_GLOB])
258AC_SUBST([GLUT_LIB_GLOB])
259AC_SUBST([GLW_LIB_GLOB])
260AC_SUBST([OSMESA_LIB_GLOB])
261
Dan Nicholsondca1b792007-10-23 09:25:58 -0700262dnl
Dan Nicholson871125a2008-06-04 13:00:35 -0700263dnl Arch/platform-specific settings
264dnl
265AC_ARG_ENABLE([asm],
266 [AS_HELP_STRING([--disable-asm],
267 [disable assembly usage @<:@default=enabled on supported plaforms@:>@])],
268 [enable_asm="$enableval"],
269 [enable_asm=yes]
270)
271asm_arch=""
272ASM_FLAGS=""
Dan Nicholsonc5bae142009-02-11 11:04:29 -0800273MESA_ASM_SOURCES=""
274GLAPI_ASM_SOURCES=""
Dan Nicholson871125a2008-06-04 13:00:35 -0700275AC_MSG_CHECKING([whether to enable assembly])
276test "x$enable_asm" = xno && AC_MSG_RESULT([no])
277# disable if cross compiling on x86/x86_64 since we must run gen_matypes
278if test "x$enable_asm" = xyes && test "x$cross_compiling" = xyes; then
279 case "$host_cpu" in
280 i?86 | x86_64)
281 enable_asm=no
282 AC_MSG_RESULT([no, cross compiling])
283 ;;
284 esac
285fi
286# check for supported arches
287if test "x$enable_asm" = xyes; then
288 case "$host_cpu" in
289 i?86)
290 case "$host_os" in
Julien Cristau98fcdf32008-10-28 18:56:05 +0100291 linux* | *freebsd* | dragonfly*)
Dan Nicholson871125a2008-06-04 13:00:35 -0700292 test "x$enable_64bit" = xyes && asm_arch=x86_64 || asm_arch=x86
293 ;;
294 esac
295 ;;
296 x86_64)
297 case "$host_os" in
Julien Cristau98fcdf32008-10-28 18:56:05 +0100298 linux* | *freebsd* | dragonfly*)
Dan Nicholson871125a2008-06-04 13:00:35 -0700299 test "x$enable_32bit" = xyes && asm_arch=x86 || asm_arch=x86_64
300 ;;
301 esac
302 ;;
303 powerpc)
304 case "$host_os" in
305 linux*)
306 asm_arch=ppc
307 ;;
308 esac
309 ;;
310 esac
311
312 case "$asm_arch" in
313 x86)
Dan Nicholson61e925f2009-02-11 10:42:34 -0800314 ASM_FLAGS="-DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_3DNOW_ASM -DUSE_SSE_ASM"
Dan Nicholsonc5bae142009-02-11 11:04:29 -0800315 MESA_ASM_SOURCES='$(X86_SOURCES)'
316 GLAPI_ASM_SOURCES='$(X86_API)'
Dan Nicholson871125a2008-06-04 13:00:35 -0700317 AC_MSG_RESULT([yes, x86])
318 ;;
319 x86_64)
320 ASM_FLAGS="-DUSE_X86_64_ASM"
Dan Nicholsonc5bae142009-02-11 11:04:29 -0800321 MESA_ASM_SOURCES='$(X86-64_SOURCES)'
322 GLAPI_ASM_SOURCES='$(X86-64_API)'
Dan Nicholson871125a2008-06-04 13:00:35 -0700323 AC_MSG_RESULT([yes, x86_64])
324 ;;
325 ppc)
326 ASM_FLAGS="-DUSE_PPC_ASM -DUSE_VMX_ASM"
Dan Nicholsonc5bae142009-02-11 11:04:29 -0800327 MESA_ASM_SOURCES='$(PPC_SOURCES)'
Dan Nicholson871125a2008-06-04 13:00:35 -0700328 AC_MSG_RESULT([yes, ppc])
329 ;;
330 *)
331 AC_MSG_RESULT([no, platform not supported])
332 ;;
333 esac
334fi
335AC_SUBST([ASM_FLAGS])
Dan Nicholsonc5bae142009-02-11 11:04:29 -0800336AC_SUBST([MESA_ASM_SOURCES])
337AC_SUBST([GLAPI_ASM_SOURCES])
Dan Nicholson871125a2008-06-04 13:00:35 -0700338
339dnl PIC code macro
340MESA_PIC_FLAGS
341
342dnl Check to see if dlopen is in default libraries (like Solaris, which
343dnl has it in libc), or if libdl is needed to get it.
344AC_CHECK_FUNC([dlopen], [],
345 [AC_CHECK_LIB([dl], [dlopen], [DLOPEN_LIBS="-ldl"])])
346
Dan Nicholson985e1cd2008-06-04 13:17:06 -0700347dnl See if posix_memalign is available
348AC_CHECK_FUNC([posix_memalign], [DEFINES="$DEFINES -DHAVE_POSIX_MEMALIGN"])
349
Dan Nicholson871125a2008-06-04 13:00:35 -0700350dnl SELinux awareness.
351AC_ARG_ENABLE([selinux],
352 [AS_HELP_STRING([--enable-selinux],
353 [Build SELinux-aware Mesa @<:@default=disabled@:>@])],
354 [MESA_SELINUX="$enableval"],
355 [MESA_SELINUX=no])
356if test "x$enable_selinux" = "xyes"; then
357 AC_CHECK_HEADER([selinux/selinux.h],[],
358 [AC_MSG_ERROR([SELinux headers not found])])
359 AC_CHECK_LIB([selinux],[is_selinux_enabled],[],
360 [AC_MSG_ERROR([SELinux library not found])])
361 SELINUX_LIBS="-lselinux"
362 DEFINES="$DEFINES -DMESA_SELINUX"
363fi
364
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -0700365dnl OS-specific libraries
366OS_LIBS=""
367case "$host_os" in
368solaris*)
369 OS_LIBS="-lc"
370 if test "x$GXX" != xyes; then
371 OS_CPLUSPLUS_LIBS="-lCrun $OS_LIBS"
372 fi
373 ;;
374esac
Dan Nicholson871125a2008-06-04 13:00:35 -0700375
376dnl
Dan Nicholsona1307182007-12-12 17:49:49 -0800377dnl Driver configuration. Options are xlib, dri and osmesa right now.
Dan Nicholson979ff512007-12-05 18:47:01 -0800378dnl More later: directfb, fbdev, ...
Dan Nicholson44d99142007-12-05 18:47:01 -0800379dnl
Eric Anholt711222b2008-04-18 15:03:01 -0700380default_driver="xlib"
381
382case "$host_os" in
383linux*)
384 case "$host_cpu" in
385 i*86|x86_64|powerpc*) default_driver="dri";;
386 esac
387 ;;
Julien Cristau98fcdf32008-10-28 18:56:05 +0100388*freebsd* | dragonfly*)
Eric Anholt711222b2008-04-18 15:03:01 -0700389 case "$host_cpu" in
390 i*86|x86_64) default_driver="dri";;
391 esac
392 ;;
393esac
394
Dan Nicholson297e16c2008-05-05 15:42:53 -0700395AC_ARG_WITH([driver],
Dan Nicholson44d99142007-12-05 18:47:01 -0800396 [AS_HELP_STRING([--with-driver=DRIVER],
Eric Anholt711222b2008-04-18 15:03:01 -0700397 [driver for Mesa: xlib,dri,osmesa @<:@default=dri when available, or xlib@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700398 [mesa_driver="$withval"],
399 [mesa_driver="$default_driver"])
Dan Nicholson44d99142007-12-05 18:47:01 -0800400dnl Check for valid option
401case "x$mesa_driver" in
Dan Nicholsona1307182007-12-12 17:49:49 -0800402xxlib|xdri|xosmesa)
Dan Nicholson44d99142007-12-05 18:47:01 -0800403 ;;
404*)
405 AC_MSG_ERROR([Driver '$mesa_driver' is not a valid option])
406 ;;
407esac
408
409dnl
410dnl Driver specific build directories
Dan Nicholsondca1b792007-10-23 09:25:58 -0700411dnl
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100412SRC_DIRS="mesa egl"
Dan Nicholsondca1b792007-10-23 09:25:58 -0700413GLU_DIRS="sgi"
Dan Nicholson44d99142007-12-05 18:47:01 -0800414WINDOW_SYSTEM=""
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100415GALLIUM_DIRS="auxiliary drivers state_trackers"
Jerome Glisse14f79d42008-12-18 13:36:07 +0100416GALLIUM_WINSYS_DIRS=""
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100417GALLIUM_WINSYS_DRM_DIRS=""
Jerome Glisse14f79d42008-12-18 13:36:07 +0100418GALLIUM_AUXILIARY_DIRS="draw translate cso_cache pipebuffer tgsi sct rtasm util"
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100419GALLIUM_DRIVER_DIRS="softpipe failover trace"
420GALLIUM_STATE_TRACKERS_DIRS=""
421
Dan Nicholson44d99142007-12-05 18:47:01 -0800422case "$mesa_driver" in
Dan Nicholsona1307182007-12-12 17:49:49 -0800423xlib)
Dan Nicholson44d99142007-12-05 18:47:01 -0800424 DRIVER_DIRS="x11"
425 ;;
426dri)
427 SRC_DIRS="glx/x11 $SRC_DIRS"
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100428 DRIVER_DIRS="dri"
Dan Nicholson44d99142007-12-05 18:47:01 -0800429 WINDOW_SYSTEM="dri"
Jerome Glisse14f79d42008-12-18 13:36:07 +0100430 GALLIUM_WINSYS_DIRS="drm $GALLIUM_WINSYS_DIRS"
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100431 GALLIUM_WINSYS_DRM_DIRS="intel"
Jakob Bornecrantze94b4dd2009-02-11 02:25:10 +0100432 GALLIUM_DRIVER_DIRS="$GALLIUM_DRIVER_DIRS i915simple i965simple"
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100433 GALLIUM_STATE_TRACKERS_DIRS="egl"
Dan Nicholson44d99142007-12-05 18:47:01 -0800434 ;;
Dan Nicholson979ff512007-12-05 18:47:01 -0800435osmesa)
436 DRIVER_DIRS="osmesa"
437 ;;
Dan Nicholson44d99142007-12-05 18:47:01 -0800438esac
Dan Nicholson297e16c2008-05-05 15:42:53 -0700439AC_SUBST([SRC_DIRS])
440AC_SUBST([GLU_DIRS])
441AC_SUBST([DRIVER_DIRS])
442AC_SUBST([WINDOW_SYSTEM])
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100443AC_SUBST([GALLIUM_DIRS])
Jerome Glisse14f79d42008-12-18 13:36:07 +0100444AC_SUBST([GALLIUM_WINSYS_DIRS])
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100445AC_SUBST([GALLIUM_WINSYS_DRM_DIRS])
Jerome Glisse14f79d42008-12-18 13:36:07 +0100446AC_SUBST([GALLIUM_DRIVER_DIRS])
447AC_SUBST([GALLIUM_AUXILIARY_DIRS])
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100448AC_SUBST([GALLIUM_STATE_TRACKERS_DIRS])
Dave Airlieb0e8ac82009-02-15 17:03:47 +1000449AC_SUBST([RADEON_CFLAGS])
450AC_SUBST([RADEON_LDFLAGS])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700451
452dnl
Dan Nicholson8e4d1472007-11-15 08:59:57 -0800453dnl User supplied program configuration
454dnl
455if test -d "$srcdir/progs/demos"; then
456 default_demos=yes
457else
458 default_demos=no
459fi
Dan Nicholson297e16c2008-05-05 15:42:53 -0700460AC_ARG_WITH([demos],
Dan Nicholson8e4d1472007-11-15 08:59:57 -0800461 [AS_HELP_STRING([--with-demos@<:@=DIRS...@:>@],
462 [optional comma delimited demo directories to build
Dan Nicholsonc79c93c2007-12-12 18:13:04 -0800463 @<:@default=auto if source available@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700464 [with_demos="$withval"],
465 [with_demos="$default_demos"])
Dan Nicholson8e4d1472007-11-15 08:59:57 -0800466if test "x$with_demos" = x; then
467 with_demos=no
468fi
469
470dnl If $with_demos is yes, directories will be added as libs available
471PROGRAM_DIRS=""
472case "$with_demos" in
Dan Nicholsonb9576552008-03-10 14:05:46 -0700473no) ;;
474yes)
475 # If the driver isn't osmesa, we have libGL and can build xdemos
476 if test "$mesa_driver" != osmesa; then
477 PROGRAM_DIRS="xdemos"
478 fi
479 ;;
Dan Nicholson8e4d1472007-11-15 08:59:57 -0800480*)
481 # verify the requested demos directories exist
482 demos=`IFS=,; echo $with_demos`
483 for demo in $demos; do
484 test -d "$srcdir/progs/$demo" || \
485 AC_MSG_ERROR([Program directory '$demo' doesn't exist])
486 done
487 PROGRAM_DIRS="$demos"
488 ;;
489esac
490
491dnl
Dan Nicholsone6a06092008-05-05 15:16:22 -0700492dnl Find out if X is available. The variable have_x is set if libX11 is
Dan Nicholson99803a42008-07-01 09:03:15 -0700493dnl found to mimic AC_PATH_XTRA.
Dan Nicholsondca1b792007-10-23 09:25:58 -0700494dnl
495if test -n "$PKG_CONFIG"; then
496 AC_MSG_CHECKING([pkg-config files for X11 are available])
Dan Nicholsone6a06092008-05-05 15:16:22 -0700497 PKG_CHECK_EXISTS([x11],[
Dan Nicholsondca1b792007-10-23 09:25:58 -0700498 x11_pkgconfig=yes
499 have_x=yes
Dan Nicholsone6a06092008-05-05 15:16:22 -0700500 ],[
Dan Nicholsondca1b792007-10-23 09:25:58 -0700501 x11_pkgconfig=no
Dan Nicholsone6a06092008-05-05 15:16:22 -0700502 ])
503 AC_MSG_RESULT([$x11_pkgconfig])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700504else
505 x11_pkgconfig=no
506fi
507dnl Use the autoconf macro if no pkg-config files
508if test "$x11_pkgconfig" = no; then
509 AC_PATH_XTRA
510fi
511
Dan Nicholson99803a42008-07-01 09:03:15 -0700512dnl Try to tell the user that the --x-* options are only used when
513dnl pkg-config is not available. This must be right after AC_PATH_XTRA.
514m4_divert_once([HELP_BEGIN],
515[These options are only used when the X libraries cannot be found by the
516pkg-config utility.])
517
Dan Nicholson44d99142007-12-05 18:47:01 -0800518dnl We need X for xlib and dri, so bomb now if it's not found
519case "$mesa_driver" in
Dan Nicholsona1307182007-12-12 17:49:49 -0800520xlib|dri)
Dan Nicholson44d99142007-12-05 18:47:01 -0800521 if test "$no_x" = yes; then
522 AC_MSG_ERROR([X11 development libraries needed for $mesa_driver driver])
523 fi
524 ;;
525esac
Dan Nicholsondca1b792007-10-23 09:25:58 -0700526
Dan Nicholson2d709fe2008-05-06 10:51:49 -0700527dnl XCB - this is only used for GLX right now
528AC_ARG_ENABLE([xcb],
529 [AS_HELP_STRING([--enable-xcb],
530 [use XCB for GLX @<:@default=disabled@:>@])],
531 [enable_xcb="$enableval"],
532 [enable_xcb=no])
533if test "x$enable_xcb" = xyes; then
534 DEFINES="$DEFINES -DUSE_XCB"
535else
536 enable_xcb=no
537fi
538
Dan Nicholson44d99142007-12-05 18:47:01 -0800539dnl
540dnl libGL configuration per driver
541dnl
542case "$mesa_driver" in
Dan Nicholsona1307182007-12-12 17:49:49 -0800543xlib)
Dan Nicholson44d99142007-12-05 18:47:01 -0800544 if test "$x11_pkgconfig" = yes; then
Dan Nicholson297e16c2008-05-05 15:42:53 -0700545 PKG_CHECK_MODULES([XLIBGL], [x11 xext])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800546 GL_PC_REQ_PRIV="x11 xext"
Dan Nicholsona1307182007-12-12 17:49:49 -0800547 X11_INCLUDES="$X11_INCLUDES $XLIBGL_CFLAGS"
548 GL_LIB_DEPS="$XLIBGL_LIBS"
Dan Nicholson44d99142007-12-05 18:47:01 -0800549 else
550 # should check these...
551 X11_INCLUDES="$X11_INCLUDES $X_CFLAGS"
552 GL_LIB_DEPS="$X_LIBS -lX11 -lXext"
Dan Nicholson71e208b2008-11-24 11:01:57 -0800553 GL_PC_LIB_PRIV="$GL_LIB_DEPS"
554 GL_PC_CFLAGS="$X11_INCLUDES"
Dan Nicholson44d99142007-12-05 18:47:01 -0800555 fi
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -0700556 GL_LIB_DEPS="$GL_LIB_DEPS $SELINUX_LIBS -lm -lpthread $OS_LIBS"
Dan Nicholson71e208b2008-11-24 11:01:57 -0800557 GL_PC_LIB_PRIV="$GL_PC_LIB_PRIV $SELINUX_LIBS -lm -lpthread $OS_LIBS"
Dan Nicholson88586332007-11-15 08:59:57 -0800558
559 # if static, move the external libraries to the programs
560 # and empty the libraries for libGL
561 if test "$enable_static" = yes; then
562 APP_LIB_DEPS="$APP_LIB_DEPS $GL_LIB_DEPS"
563 GL_LIB_DEPS=""
564 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800565 ;;
566dri)
Dan Nicholson88586332007-11-15 08:59:57 -0800567 # DRI must be shared, I think
568 if test "$enable_static" = yes; then
569 AC_MSG_ERROR([Can't use static libraries for DRI drivers])
570 fi
571
Dan Nicholson44d99142007-12-05 18:47:01 -0800572 # Check for libdrm
Dan Nicholsoncc77e8f2008-05-05 14:38:22 -0700573 PKG_CHECK_MODULES([LIBDRM], [libdrm >= $LIBDRM_REQUIRED])
574 PKG_CHECK_MODULES([DRI2PROTO], [dri2proto >= $DRI2PROTO_REQUIRED])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800575 GL_PC_REQ_PRIV="libdrm >= $LIBDRM_REQUIRED dri2proto >= $DRI2PROTO_REQUIRED"
576 DRI_PC_REQ_PRIV="libdrm >= $LIBDRM_REQUIRED"
Dan Nicholson44d99142007-12-05 18:47:01 -0800577
Dave Airlieb0e8ac82009-02-15 17:03:47 +1000578 PKG_CHECK_MODULES([LIBDRM_RADEON], [libdrm_radeon], HAVE_LIBDRM_RADEON=yes, HAVE_LIBDRM_RADEON=no)
579
580 if test "$HAVE_LIBDRM_RADEON" = yes; then
581 RADEON_CFLAGS="-DHAVE_LIBDRM_RADEON=1 $LIBDRM_RADEON_CFLAGS"
582 RADEON_LDFLAGS=$LIBDRM_RADEON_LIBS
583 fi
584
Dan Nicholson44d99142007-12-05 18:47:01 -0800585 # find the DRI deps for libGL
586 if test "$x11_pkgconfig" = yes; then
Dan Nicholson2d709fe2008-05-06 10:51:49 -0700587 # add xcb modules if necessary
588 dri_modules="x11 xext xxf86vm xdamage xfixes"
589 if test "$enable_xcb" = yes; then
590 dri_modules="$dri_modules x11-xcb xcb-glx"
591 fi
592
593 PKG_CHECK_MODULES([DRIGL], [$dri_modules])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800594 GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV $dri_modules"
Dan Nicholson44d99142007-12-05 18:47:01 -0800595 X11_INCLUDES="$X11_INCLUDES $DRIGL_CFLAGS"
596 GL_LIB_DEPS="$DRIGL_LIBS"
597 else
598 # should check these...
599 X11_INCLUDES="$X11_INCLUDES $X_CFLAGS"
600 GL_LIB_DEPS="$X_LIBS -lX11 -lXext -lXxf86vm -lXdamage -lXfixes"
Dan Nicholson71e208b2008-11-24 11:01:57 -0800601 GL_PC_LIB_PRIV="$GL_LIB_DEPS"
602 GL_PC_CFLAGS="$X11_INCLUDES"
Dan Nicholson2d709fe2008-05-06 10:51:49 -0700603
604 # XCB can only be used from pkg-config
605 if test "$enable_xcb" = yes; then
606 PKG_CHECK_MODULES([XCB],[x11-xcb xcb-glx])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800607 GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV x11-xcb xcb-glx"
Dan Nicholson2d709fe2008-05-06 10:51:49 -0700608 X11_INCLUDES="$X11_INCLUDES $XCB_CFLAGS"
609 GL_LIB_DEPS="$GL_LIB_DEPS $XCB_LIBS"
610 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800611 fi
612
613 # need DRM libs, -lpthread, etc.
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -0700614 GL_LIB_DEPS="$GL_LIB_DEPS $LIBDRM_LIBS -lm -lpthread $DLOPEN_LIBS $OS_LIBS"
Dan Nicholson71e208b2008-11-24 11:01:57 -0800615 GL_PC_LIB_PRIV="-lm -lpthread $DLOPEN_LIBS $OS_LIBS"
Dan Nicholson44d99142007-12-05 18:47:01 -0800616 ;;
Dan Nicholson979ff512007-12-05 18:47:01 -0800617osmesa)
618 # No libGL for osmesa
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -0700619 GL_LIB_DEPS="$OS_LIBS"
Dan Nicholson979ff512007-12-05 18:47:01 -0800620 ;;
Dan Nicholson44d99142007-12-05 18:47:01 -0800621esac
Dan Nicholson297e16c2008-05-05 15:42:53 -0700622AC_SUBST([GL_LIB_DEPS])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800623AC_SUBST([GL_PC_REQ_PRIV])
624AC_SUBST([GL_PC_LIB_PRIV])
625AC_SUBST([GL_PC_CFLAGS])
626AC_SUBST([DRI_PC_REQ_PRIV])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700627
628dnl
629dnl More X11 setup
630dnl
Dan Nicholsona1307182007-12-12 17:49:49 -0800631if test "$mesa_driver" = xlib; then
Dan Nicholsondca1b792007-10-23 09:25:58 -0700632 DEFINES="$DEFINES -DUSE_XSHM"
633fi
634
635dnl
Dan Nicholson44d99142007-12-05 18:47:01 -0800636dnl More DRI setup
637dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -0700638AC_ARG_ENABLE([glx-tls],
Dan Nicholson44d99142007-12-05 18:47:01 -0800639 [AS_HELP_STRING([--enable-glx-tls],
Dan Nicholson79ad4582007-12-07 19:11:01 -0800640 [enable TLS support in GLX @<:@default=disabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700641 [GLX_USE_TLS="$enableval"],
642 [GLX_USE_TLS=no])
Dan Nicholson44d99142007-12-05 18:47:01 -0800643dnl Directory for DRI drivers
Dan Nicholson297e16c2008-05-05 15:42:53 -0700644AC_ARG_WITH([dri-driverdir],
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800645 [AS_HELP_STRING([--with-dri-driverdir=DIR],
Dan Nicholson5dbbde52008-05-06 06:21:41 -0700646 [directory for the DRI drivers @<:@${libdir}/dri@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700647 [DRI_DRIVER_INSTALL_DIR="$withval"],
Dan Nicholson5dbbde52008-05-06 06:21:41 -0700648 [DRI_DRIVER_INSTALL_DIR='${libdir}/dri'])
Dan Nicholson297e16c2008-05-05 15:42:53 -0700649AC_SUBST([DRI_DRIVER_INSTALL_DIR])
Dan Nicholson44d99142007-12-05 18:47:01 -0800650dnl Direct rendering or just indirect rendering
Dan Nicholson297e16c2008-05-05 15:42:53 -0700651AC_ARG_ENABLE([driglx-direct],
Dan Nicholson79ad4582007-12-07 19:11:01 -0800652 [AS_HELP_STRING([--disable-driglx-direct],
653 [enable direct rendering in GLX for DRI @<:@default=enabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700654 [driglx_direct="$enableval"],
655 [driglx_direct="yes"])
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800656dnl Which drivers to build - default is chosen by platform
Dan Nicholson297e16c2008-05-05 15:42:53 -0700657AC_ARG_WITH([dri-drivers],
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800658 [AS_HELP_STRING([--with-dri-drivers@<:@=DIRS...@:>@],
Dan Nicholson5cae1b72008-06-30 10:28:02 -0700659 [comma delimited DRI drivers list, e.g.
660 "swrast,i965,radeon,nouveau" @<:@default=auto@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700661 [with_dri_drivers="$withval"],
662 [with_dri_drivers=yes])
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800663if test "x$with_dri_drivers" = x; then
664 with_dri_drivers=no
665fi
666
667dnl If $with_dri_drivers is yes, directories will be added through
668dnl platform checks
669DRI_DIRS=""
670case "$with_dri_drivers" in
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100671no) ;;
672yes)
673 DRI_DIRS="yes"
674 ;;
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800675*)
676 # verify the requested driver directories exist
Dan Nicholsone6e4f252008-07-06 14:17:39 -0700677 dri_drivers=`IFS=', '; echo $with_dri_drivers`
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800678 for driver in $dri_drivers; do
679 test -d "$srcdir/src/mesa/drivers/dri/$driver" || \
680 AC_MSG_ERROR([DRI driver directory '$driver' doesn't exist])
681 done
682 DRI_DIRS="$dri_drivers"
683 ;;
684esac
685
Dan Nicholson44d99142007-12-05 18:47:01 -0800686dnl Just default to no EGL for now
687USING_EGL=0
Dan Nicholson297e16c2008-05-05 15:42:53 -0700688AC_SUBST([USING_EGL])
Dan Nicholson44d99142007-12-05 18:47:01 -0800689
690dnl Set DRI_DIRS, DEFINES and LIB_DEPS
691if test "$mesa_driver" = dri; then
692 # Use TLS in GLX?
693 if test "x$GLX_USE_TLS" = xyes; then
694 DEFINES="$DEFINES -DGLX_USE_TLS -DPTHREADS"
695 fi
696
697 if test "x$USING_EGL" = x1; then
698 PROGRAM_DIRS="egl"
699 fi
700
701 # Platform specific settings and drivers to build
702 case "$host_os" in
703 linux*)
704 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
Dan Nicholson44d99142007-12-05 18:47:01 -0800705 if test "x$driglx_direct" = xyes; then
706 DEFINES="$DEFINES -DGLX_DIRECT_RENDERING"
707 fi
Jerome Glisse14f79d42008-12-18 13:36:07 +0100708 DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING -DHAVE_ALIAS"
Dan Nicholson44d99142007-12-05 18:47:01 -0800709
710 case "$host_cpu" in
Dan Nicholson44d99142007-12-05 18:47:01 -0800711 x86_64)
Dan Nicholsona76e2452007-12-07 11:25:08 -0800712 # ffb, gamma, and sis are missing because they have not be
713 # converted to use the new interface. i810 are missing
714 # because there is no x86-64 system where they could *ever*
715 # be used.
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100716 if test "x$DRI_DIRS" = "xyes"; then
Dan Nicholsona76e2452007-12-07 11:25:08 -0800717 DRI_DIRS="i915 i965 mach64 mga r128 r200 r300 radeon \
George Sapountzis280bf892008-05-11 14:43:40 +0300718 savage tdfx unichrome swrast"
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800719 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800720 ;;
721 powerpc*)
Dan Nicholsona76e2452007-12-07 11:25:08 -0800722 # Build only the drivers for cards that exist on PowerPC.
723 # At some point MGA will be added, but not yet.
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100724 if test "x$DRI_DIRS" = "xyes"; then
George Sapountzis280bf892008-05-11 14:43:40 +0300725 DRI_DIRS="mach64 r128 r200 r300 radeon tdfx swrast"
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800726 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800727 ;;
Dave Airlie2b0e75e2008-06-12 12:06:50 +1000728 sparc*)
729 # Build only the drivers for cards that exist on sparc`
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100730 if test "x$DRI_DIRS" = "xyes"; then
Dave Airlie41bdb882008-06-12 16:26:46 +1000731 DRI_DIRS="mach64 r128 r200 r300 radeon ffb swrast"
Dave Airlie2b0e75e2008-06-12 12:06:50 +1000732 fi
733 ;;
Dan Nicholson44d99142007-12-05 18:47:01 -0800734 esac
735 ;;
Hasso Tepper9f8df2d2008-04-09 10:51:21 -0700736 freebsd* | dragonfly*)
Dan Nicholson44d99142007-12-05 18:47:01 -0800737 DEFINES="$DEFINES -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1"
738 DEFINES="$DEFINES -DIN_DRI_DRIVER -DHAVE_ALIAS"
739 DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING"
740 if test "x$driglx_direct" = xyes; then
741 DEFINES="$DEFINES -DGLX_DIRECT_RENDERING"
742 fi
743 if test "x$GXX" = xyes; then
744 CXXFLAGS="$CXXFLAGS -ansi -pedantic"
745 fi
746
Dan Nicholsona76e2452007-12-07 11:25:08 -0800747 # ffb and gamma are missing because they have not been converted
748 # to use the new interface.
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100749 if test "x$DRI_DIRS" = "xyes"; then
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800750 DRI_DIRS="i810 i915 i965 mach64 mga r128 r200 r300 radeon tdfx \
George Sapountzis280bf892008-05-11 14:43:40 +0300751 unichrome savage sis swrast"
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -0800752 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800753 ;;
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -0700754 solaris*)
755 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
756 DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING"
757 if test "x$driglx_direct" = xyes; then
758 DEFINES="$DEFINES -DGLX_DIRECT_RENDERING"
759 fi
760 ;;
Dan Nicholson44d99142007-12-05 18:47:01 -0800761 esac
Dan Nicholson112a40e2008-02-21 10:17:19 -0800762
763 # default drivers
Florent Thoumieb5095ab2008-07-28 14:44:43 +0100764 if test "x$DRI_DIRS" = "xyes"; then
Dan Nicholson112a40e2008-02-21 10:17:19 -0800765 DRI_DIRS="i810 i915 i965 mach64 mga r128 r200 r300 radeon s3v \
George Sapountzis280bf892008-05-11 14:43:40 +0300766 savage sis tdfx trident unichrome ffb swrast"
Dan Nicholson112a40e2008-02-21 10:17:19 -0800767 fi
768
Dan Nicholson44d99142007-12-05 18:47:01 -0800769 DRI_DIRS=`echo "$DRI_DIRS" | $SED 's/ */ /g'`
770
771 # Check for expat
772 EXPAT_INCLUDES=""
773 EXPAT_LIB=-lexpat
Dan Nicholson297e16c2008-05-05 15:42:53 -0700774 AC_ARG_WITH([expat],
775 [AS_HELP_STRING([--with-expat=DIR],
776 [expat install directory])],[
Dan Nicholson44d99142007-12-05 18:47:01 -0800777 EXPAT_INCLUDES="-I$withval/include"
778 CPPFLAGS="$CPPFLAGS $EXPAT_INCLUDES"
779 LDFLAGS="$LDFLAGS -L$withval/$LIB_DIR"
780 EXPAT_LIB="-L$withval/$LIB_DIR -lexpat"
781 ])
Dan Nicholson297e16c2008-05-05 15:42:53 -0700782 AC_CHECK_HEADER([expat.h],[],[AC_MSG_ERROR([Expat required for DRI.])])
783 AC_CHECK_LIB([expat],[XML_ParserCreate],[],
784 [AC_MSG_ERROR([Expat required for DRI.])])
Dan Nicholson44d99142007-12-05 18:47:01 -0800785
786 # put all the necessary libs together
Eric Anholt050c5332008-03-20 17:28:58 -0700787 DRI_LIB_DEPS="$SELINUX_LIBS $LIBDRM_LIBS $EXPAT_LIB -lm -lpthread $DLOPEN_LIBS"
Dan Nicholson44d99142007-12-05 18:47:01 -0800788fi
Dan Nicholson297e16c2008-05-05 15:42:53 -0700789AC_SUBST([DRI_DIRS])
790AC_SUBST([EXPAT_INCLUDES])
791AC_SUBST([DRI_LIB_DEPS])
Dan Nicholson44d99142007-12-05 18:47:01 -0800792
793dnl
Dan Nicholsondca1b792007-10-23 09:25:58 -0700794dnl OSMesa configuration
795dnl
Dan Nicholsona1307182007-12-12 17:49:49 -0800796if test "$mesa_driver" = xlib; then
Dan Nicholson544ab202007-12-30 08:41:53 -0800797 default_gl_osmesa=yes
Dan Nicholson979ff512007-12-05 18:47:01 -0800798else
Dan Nicholson544ab202007-12-30 08:41:53 -0800799 default_gl_osmesa=no
Dan Nicholson44d99142007-12-05 18:47:01 -0800800fi
Dan Nicholson297e16c2008-05-05 15:42:53 -0700801AC_ARG_ENABLE([gl-osmesa],
Dan Nicholson544ab202007-12-30 08:41:53 -0800802 [AS_HELP_STRING([--enable-gl-osmesa],
803 [enable OSMesa on libGL @<:@default=enabled for xlib driver@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700804 [gl_osmesa="$enableval"],
805 [gl_osmesa="$default_gl_osmesa"])
Dan Nicholson544ab202007-12-30 08:41:53 -0800806if test "x$gl_osmesa" = xyes; then
807 if test "$mesa_driver" = osmesa; then
808 AC_MSG_ERROR([libGL is not available for OSMesa driver])
Dan Nicholson979ff512007-12-05 18:47:01 -0800809 else
Dan Nicholson544ab202007-12-30 08:41:53 -0800810 DRIVER_DIRS="$DRIVER_DIRS osmesa"
Dan Nicholson979ff512007-12-05 18:47:01 -0800811 fi
812fi
813
Dan Nicholson6689f9e2007-12-05 21:04:15 -0800814dnl Configure the channel bits for OSMesa (libOSMesa, libOSMesa16, ...)
Dan Nicholson297e16c2008-05-05 15:42:53 -0700815AC_ARG_WITH([osmesa-bits],
Dan Nicholson6689f9e2007-12-05 21:04:15 -0800816 [AS_HELP_STRING([--with-osmesa-bits=BITS],
817 [OSMesa channel bits and library name: 8, 16, 32 @<:@default=8@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700818 [osmesa_bits="$withval"],
819 [osmesa_bits=8])
Dan Nicholson6689f9e2007-12-05 21:04:15 -0800820if test "$mesa_driver" != osmesa && test "x$osmesa_bits" != x8; then
821 AC_MSG_WARN([Ignoring OSMesa channel bits for non-OSMesa driver])
822 osmesa_bits=8
823fi
824case "x$osmesa_bits" in
825x8)
826 OSMESA_LIB=OSMesa
827 ;;
828x16|x32)
829 OSMESA_LIB="OSMesa$osmesa_bits"
830 DEFINES="$DEFINES -DCHAN_BITS=$osmesa_bits -DDEFAULT_SOFTWARE_DEPTH_BITS=31"
831 ;;
832*)
833 AC_MSG_ERROR([OSMesa bits '$osmesa_bits' is not a valid option])
834 ;;
835esac
Dan Nicholson297e16c2008-05-05 15:42:53 -0700836AC_SUBST([OSMESA_LIB])
Dan Nicholson6689f9e2007-12-05 21:04:15 -0800837
Dan Nicholson979ff512007-12-05 18:47:01 -0800838case "$mesa_driver" in
839osmesa)
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -0700840 # only link libraries with osmesa if shared
Dan Nicholson88586332007-11-15 08:59:57 -0800841 if test "$enable_static" = no; then
Adam Jackson66611f22008-02-15 13:49:12 -0500842 OSMESA_LIB_DEPS="-lm -lpthread $SELINUX_LIBS"
Dan Nicholson88586332007-11-15 08:59:57 -0800843 else
844 OSMESA_LIB_DEPS=""
845 fi
Dan Nicholson979ff512007-12-05 18:47:01 -0800846 OSMESA_MESA_DEPS=""
Dan Nicholson8be02fc2008-12-14 09:35:29 -0800847 OSMESA_PC_LIB_PRIV="-lm -lpthread $SELINUX_LIBS"
Dan Nicholson979ff512007-12-05 18:47:01 -0800848 ;;
849*)
850 # Link OSMesa to libGL otherwise
851 OSMESA_LIB_DEPS=""
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -0700852 # only link libraries with osmesa if shared
Dan Nicholson88586332007-11-15 08:59:57 -0800853 if test "$enable_static" = no; then
854 OSMESA_MESA_DEPS='-l$(GL_LIB)'
855 else
856 OSMESA_MESA_DEPS=""
857 fi
Dan Nicholson8be02fc2008-12-14 09:35:29 -0800858 OSMESA_PC_REQ="gl"
Dan Nicholson979ff512007-12-05 18:47:01 -0800859 ;;
860esac
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -0700861if test "$enable_static" = no; then
862 OSMESA_LIB_DEPS="$OSMESA_LIB_DEPS $OS_LIBS"
863fi
Dan Nicholson8be02fc2008-12-14 09:35:29 -0800864OSMESA_PC_LIB_PRIV="$OSMESA_PC_LIB_PRIV $OS_LIBS"
Dan Nicholson297e16c2008-05-05 15:42:53 -0700865AC_SUBST([OSMESA_LIB_DEPS])
866AC_SUBST([OSMESA_MESA_DEPS])
Dan Nicholson8be02fc2008-12-14 09:35:29 -0800867AC_SUBST([OSMESA_PC_REQ])
868AC_SUBST([OSMESA_PC_LIB_PRIV])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700869
870dnl
871dnl GLU configuration
872dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -0700873AC_ARG_ENABLE([glu],
Dan Nicholson79ad4582007-12-07 19:11:01 -0800874 [AS_HELP_STRING([--disable-glu],
875 [enable OpenGL Utility library @<:@default=enabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700876 [enable_glu="$enableval"],
877 [enable_glu=yes])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700878if test "x$enable_glu" = xyes; then
879 SRC_DIRS="$SRC_DIRS glu"
880
Dan Nicholson979ff512007-12-05 18:47:01 -0800881 case "$mesa_driver" in
882 osmesa)
Dan Nicholson6689f9e2007-12-05 21:04:15 -0800883 # If GLU is available and we have libOSMesa (not 16 or 32),
884 # we can build the osdemos
Dan Nicholson8e4d1472007-11-15 08:59:57 -0800885 if test "$with_demos" = yes && test "$osmesa_bits" = 8; then
Dan Nicholson6689f9e2007-12-05 21:04:15 -0800886 PROGRAM_DIRS="$PROGRAM_DIRS osdemos"
887 fi
Dan Nicholsondca1b792007-10-23 09:25:58 -0700888
Dan Nicholson979ff512007-12-05 18:47:01 -0800889 # Link libGLU to libOSMesa instead of libGL
890 GLU_LIB_DEPS=""
Dan Nicholson8be02fc2008-12-14 09:35:29 -0800891 GLU_PC_REQ="osmesa"
Dan Nicholson88586332007-11-15 08:59:57 -0800892 if test "$enable_static" = no; then
893 GLU_MESA_DEPS='-l$(OSMESA_LIB)'
894 else
895 GLU_MESA_DEPS=""
896 fi
Dan Nicholson979ff512007-12-05 18:47:01 -0800897 ;;
898 *)
Dan Nicholson88586332007-11-15 08:59:57 -0800899 # If static, empty GLU_LIB_DEPS and add libs for programs to link
Dan Nicholson71e208b2008-11-24 11:01:57 -0800900 GLU_PC_REQ="gl"
901 GLU_PC_LIB_PRIV="-lm"
Dan Nicholson88586332007-11-15 08:59:57 -0800902 if test "$enable_static" = no; then
903 GLU_LIB_DEPS="-lm"
904 GLU_MESA_DEPS='-l$(GL_LIB)'
905 else
906 GLU_LIB_DEPS=""
907 GLU_MESA_DEPS=""
908 APP_LIB_DEPS="$APP_LIB_DEPS -lstdc++"
909 fi
Dan Nicholson979ff512007-12-05 18:47:01 -0800910 ;;
911 esac
Dan Nicholsondca1b792007-10-23 09:25:58 -0700912fi
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -0700913if test "$enable_static" = no; then
914 GLU_LIB_DEPS="$GLU_LIB_DEPS $OS_CPLUSPLUS_LIBS"
915fi
Dan Nicholson71e208b2008-11-24 11:01:57 -0800916GLU_PC_LIB_PRIV="$GLU_PC_LIB_PRIV $OS_CPLUSPLUS_LIBS"
Dan Nicholson297e16c2008-05-05 15:42:53 -0700917AC_SUBST([GLU_LIB_DEPS])
918AC_SUBST([GLU_MESA_DEPS])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800919AC_SUBST([GLU_PC_REQ])
920AC_SUBST([GLU_PC_REQ_PRIV])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800921AC_SUBST([GLU_PC_LIB_PRIV])
922AC_SUBST([GLU_PC_CFLAGS])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700923
924dnl
925dnl GLw configuration
926dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -0700927AC_ARG_ENABLE([glw],
Dan Nicholson79ad4582007-12-07 19:11:01 -0800928 [AS_HELP_STRING([--disable-glw],
929 [enable Xt/Motif widget library @<:@default=enabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700930 [enable_glw="$enableval"],
931 [enable_glw=yes])
Dan Nicholson979ff512007-12-05 18:47:01 -0800932dnl Don't build GLw on osmesa
933if test "x$enable_glw" = xyes && test "$mesa_driver" = osmesa; then
934 AC_MSG_WARN([Disabling GLw since the driver is OSMesa])
935 enable_glw=no
936fi
Dan Nicholson776c60d2008-07-18 07:40:41 -0700937AC_ARG_ENABLE([motif],
938 [AS_HELP_STRING([--enable-motif],
939 [use Motif widgets in GLw @<:@default=disabled@:>@])],
940 [enable_motif="$enableval"],
941 [enable_motif=no])
942
Dan Nicholsondca1b792007-10-23 09:25:58 -0700943if test "x$enable_glw" = xyes; then
944 SRC_DIRS="$SRC_DIRS glw"
945 if test "$x11_pkgconfig" = yes; then
Dan Nicholson297e16c2008-05-05 15:42:53 -0700946 PKG_CHECK_MODULES([GLW],[x11 xt])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800947 GLW_PC_REQ_PRIV="x11 xt"
Dan Nicholsondca1b792007-10-23 09:25:58 -0700948 GLW_LIB_DEPS="$GLW_LIBS"
949 else
950 # should check these...
Dan Nicholson776c60d2008-07-18 07:40:41 -0700951 GLW_LIB_DEPS="$X_LIBS -lXt -lX11"
Dan Nicholson71e208b2008-11-24 11:01:57 -0800952 GLW_PC_LIB_PRIV="$GLW_LIB_DEPS"
953 GLW_PC_CFLAGS="$X11_INCLUDES"
Dan Nicholson776c60d2008-07-18 07:40:41 -0700954 fi
955
956 GLW_SOURCES="GLwDrawA.c"
957 MOTIF_CFLAGS=
958 if test "x$enable_motif" = xyes; then
959 GLW_SOURCES="$GLW_SOURCES GLwMDrawA.c"
960 AC_PATH_PROG([MOTIF_CONFIG], [motif-config], [no])
961 if test "x$MOTIF_CONFIG" != xno; then
962 MOTIF_CFLAGS=`$MOTIF_CONFIG --cflags`
963 MOTIF_LIBS=`$MOTIF_CONFIG --libs`
964 else
965 AC_CHECK_HEADER([Xm/PrimitiveP.h], [],
966 [AC_MSG_ERROR([Can't locate Motif headers])])
967 AC_CHECK_LIB([Xm], [XmGetPixmap], [MOTIF_LIBS="-lXm"],
968 [AC_MSG_ERROR([Can't locate Motif Xm library])])
969 fi
970 # MOTIF_LIBS is prepended to GLW_LIB_DEPS since Xm needs Xt/X11
971 GLW_LIB_DEPS="$MOTIF_LIBS $GLW_LIB_DEPS"
Dan Nicholson71e208b2008-11-24 11:01:57 -0800972 GLW_PC_LIB_PRIV="$MOTIF_LIBS $GLW_PC_LIB_PRIV"
973 GLW_PC_CFLAGS="$MOTIF_CFLAGS $GLW_PC_CFLAGS"
Dan Nicholsondca1b792007-10-23 09:25:58 -0700974 fi
975
Dan Nicholson88586332007-11-15 08:59:57 -0800976 # If static, empty GLW_LIB_DEPS and add libs for programs to link
Dan Nicholson71e208b2008-11-24 11:01:57 -0800977 GLW_PC_LIB_PRIV="$GLW_PC_LIB_PRIV $OS_LIBS"
Dan Nicholson88586332007-11-15 08:59:57 -0800978 if test "$enable_static" = no; then
979 GLW_MESA_DEPS='-l$(GL_LIB)'
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -0700980 GLW_LIB_DEPS="$GLW_LIB_DEPS $OS_LIBS"
Dan Nicholson88586332007-11-15 08:59:57 -0800981 else
982 APP_LIB_DEPS="$APP_LIB_DEPS $GLW_LIB_DEPS"
983 GLW_LIB_DEPS=""
984 GLW_MESA_DEPS=""
985 fi
Dan Nicholsondca1b792007-10-23 09:25:58 -0700986fi
Dan Nicholson297e16c2008-05-05 15:42:53 -0700987AC_SUBST([GLW_LIB_DEPS])
988AC_SUBST([GLW_MESA_DEPS])
Dan Nicholson776c60d2008-07-18 07:40:41 -0700989AC_SUBST([GLW_SOURCES])
990AC_SUBST([MOTIF_CFLAGS])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800991AC_SUBST([GLW_PC_REQ_PRIV])
992AC_SUBST([GLW_PC_LIB_PRIV])
993AC_SUBST([GLW_PC_CFLAGS])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700994
995dnl
996dnl GLUT configuration
997dnl
998if test -f "$srcdir/include/GL/glut.h"; then
999 default_glut=yes
1000else
1001 default_glut=no
1002fi
Dan Nicholson297e16c2008-05-05 15:42:53 -07001003AC_ARG_ENABLE([glut],
Dan Nicholson79ad4582007-12-07 19:11:01 -08001004 [AS_HELP_STRING([--disable-glut],
1005 [enable GLUT library @<:@default=enabled if source available@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -07001006 [enable_glut="$enableval"],
1007 [enable_glut="$default_glut"])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001008
1009dnl Can't build glut if GLU not available
1010if test "x$enable_glu$enable_glut" = xnoyes; then
1011 AC_MSG_WARN([Disabling glut since GLU is disabled])
1012 enable_glut=no
1013fi
Dan Nicholson979ff512007-12-05 18:47:01 -08001014dnl Don't build glut on osmesa
1015if test "x$enable_glut" = xyes && test "$mesa_driver" = osmesa; then
1016 AC_MSG_WARN([Disabling glut since the driver is OSMesa])
1017 enable_glut=no
1018fi
1019
Dan Nicholsondca1b792007-10-23 09:25:58 -07001020if test "x$enable_glut" = xyes; then
1021 SRC_DIRS="$SRC_DIRS glut/glx"
1022 GLUT_CFLAGS=""
1023 if test "x$GCC" = xyes; then
1024 GLUT_CFLAGS="-fexceptions"
1025 fi
1026 if test "$x11_pkgconfig" = yes; then
Dan Nicholson297e16c2008-05-05 15:42:53 -07001027 PKG_CHECK_MODULES([GLUT],[x11 xmu xi])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001028 GLUT_PC_REQ_PRIV="x11 xmu xi"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001029 GLUT_LIB_DEPS="$GLUT_LIBS"
1030 else
1031 # should check these...
Dan Nicholson70d0c832007-12-07 11:12:20 -08001032 GLUT_LIB_DEPS="$X_LIBS -lX11 -lXmu -lXi"
Dan Nicholson71e208b2008-11-24 11:01:57 -08001033 GLUT_PC_LIB_PRIV="$GLUT_LIB_DEPS"
1034 GLUT_PC_CFLAGS="$X11_INCLUDES"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001035 fi
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -07001036 GLUT_LIB_DEPS="$GLUT_LIB_DEPS -lm $OS_LIBS"
Dan Nicholson71e208b2008-11-24 11:01:57 -08001037 GLUT_PC_LIB_PRIV="$GLUT_PC_LIB_PRIV -lm $OS_LIBS"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001038
1039 # If glut is available, we can build most programs
Dan Nicholson8e4d1472007-11-15 08:59:57 -08001040 if test "$with_demos" = yes; then
1041 PROGRAM_DIRS="$PROGRAM_DIRS demos redbook samples glsl"
1042 fi
Dan Nicholsondca1b792007-10-23 09:25:58 -07001043
Dan Nicholson88586332007-11-15 08:59:57 -08001044 # If static, empty GLUT_LIB_DEPS and add libs for programs to link
1045 if test "$enable_static" = no; then
1046 GLUT_MESA_DEPS='-l$(GLU_LIB) -l$(GL_LIB)'
1047 else
1048 APP_LIB_DEPS="$APP_LIB_DEPS $GLUT_LIB_DEPS"
1049 GLUT_LIB_DEPS=""
1050 GLUT_MESA_DEPS=""
1051 fi
Dan Nicholsondca1b792007-10-23 09:25:58 -07001052fi
Dan Nicholson297e16c2008-05-05 15:42:53 -07001053AC_SUBST([GLUT_LIB_DEPS])
1054AC_SUBST([GLUT_MESA_DEPS])
1055AC_SUBST([GLUT_CFLAGS])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001056AC_SUBST([GLUT_PC_REQ_PRIV])
1057AC_SUBST([GLUT_PC_LIB_PRIV])
1058AC_SUBST([GLUT_PC_CFLAGS])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001059
1060dnl
1061dnl Program library dependencies
1062dnl Only libm is added here if necessary as the libraries should
1063dnl be pulled in by the linker
1064dnl
1065if test "x$APP_LIB_DEPS" = x; then
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -07001066 case "$host_os" in
1067 solaris*)
1068 APP_LIB_DEPS="-lX11 -lsocket -lnsl -lm"
1069 ;;
1070 *)
1071 APP_LIB_DEPS="-lm"
1072 ;;
1073 esac
Dan Nicholsondca1b792007-10-23 09:25:58 -07001074fi
Dan Nicholson297e16c2008-05-05 15:42:53 -07001075AC_SUBST([APP_LIB_DEPS])
1076AC_SUBST([PROGRAM_DIRS])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001077
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001078dnl
1079dnl Gallium configuration
1080dnl
1081AC_ARG_ENABLE([gallium],
1082 [AS_HELP_STRING([--disable-gallium],
1083 [build gallium @<:@default=enabled@:>@])],
1084 [enable_gallium="$enableval"],
1085 [enable_gallium=yes])
1086if test "x$enable_gallium" = xyes; then
1087 SRC_DIRS="$SRC_DIRS gallium gallium/winsys"
1088fi
Dan Nicholsondca1b792007-10-23 09:25:58 -07001089
1090dnl Restore LDFLAGS and CPPFLAGS
1091LDFLAGS="$_SAVE_LDFLAGS"
1092CPPFLAGS="$_SAVE_CPPFLAGS"
1093
1094dnl Substitute the config
Dan Nicholsonf64d6fe2007-12-12 17:57:45 -08001095AC_CONFIG_FILES([configs/autoconf])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001096
Dan Nicholsonaab38cf2007-12-11 08:21:51 -08001097dnl Replace the configs/current symlink
Dan Nicholsone14ebbc2008-05-06 11:28:43 -07001098AC_CONFIG_COMMANDS([configs],[
Dan Nicholsonaab38cf2007-12-11 08:21:51 -08001099if test -f configs/current || test -L configs/current; then
1100 rm -f configs/current
1101fi
1102ln -s autoconf configs/current
Dan Nicholsone14ebbc2008-05-06 11:28:43 -07001103])
1104
1105AC_OUTPUT
Dan Nicholsonaab38cf2007-12-11 08:21:51 -08001106
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001107dnl
1108dnl Output some configuration info for the user
1109dnl
1110echo ""
1111echo " prefix: $prefix"
1112echo " exec_prefix: $exec_prefix"
1113echo " libdir: $libdir"
Dan Nicholson11ac5b22008-07-03 09:17:44 -07001114echo " includedir: $includedir"
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001115
1116dnl Driver info
1117echo ""
1118echo " Driver: $mesa_driver"
Dan Nicholson544ab202007-12-30 08:41:53 -08001119if echo "$DRIVER_DIRS" | grep 'osmesa' >/dev/null 2>&1; then
1120 echo " OSMesa: lib$OSMESA_LIB"
1121else
1122 echo " OSMesa: no"
1123fi
1124if test "$mesa_driver" = dri; then
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001125 # cleanup the drivers var
1126 dri_dirs=`echo $DRI_DIRS | $SED 's/^ *//;s/ */ /;s/ *$//'`
Florent Thoumieb5095ab2008-07-28 14:44:43 +01001127if test "x$DRI_DIRS" = x; then
1128 echo " DRI drivers: no"
1129else
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001130 echo " DRI drivers: $dri_dirs"
Florent Thoumieb5095ab2008-07-28 14:44:43 +01001131fi
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001132 echo " DRI driver dir: $DRI_DRIVER_INSTALL_DIR"
Dan Nicholson544ab202007-12-30 08:41:53 -08001133fi
RALOVICH, Kristóf5f19f5c2008-11-04 11:53:32 +01001134echo " Use XCB: $enable_xcb"
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001135
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001136echo ""
1137if echo "$SRC_DIRS" | grep 'gallium' >/dev/null 2>&1; then
1138 echo " Gallium: yes"
1139 echo " Gallium dirs: $GALLIUM_DIRS"
1140 echo " Winsys dirs: $GALLIUM_WINSYS_DIRS"
1141 echo " Winsys drm dirs: $GALLIUM_WINSYS_DRM_DIRS"
1142 echo " Auxiliary dirs: $GALLIUM_AUXILIARY_DIRS"
1143 echo " Driver dirs: $GALLIUM_DRIVER_DIRS"
1144 echo " Trackers dirs: $GALLIUM_STATE_TRACKERS_DIRS"
1145else
1146 echo " Gallium: no"
1147fi
1148
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001149dnl Libraries
1150echo ""
1151echo " Shared libs: $enable_shared"
1152echo " Static libs: $enable_static"
1153echo " GLU: $enable_glu"
Dan Nicholson776c60d2008-07-18 07:40:41 -07001154echo " GLw: $enable_glw (Motif: $enable_motif)"
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001155echo " glut: $enable_glut"
1156
1157dnl Programs
1158# cleanup the programs var for display
1159program_dirs=`echo $PROGRAM_DIRS | $SED 's/^ *//;s/ */ /;s/ *$//'`
1160if test "x$program_dirs" = x; then
1161 echo " Demos: no"
1162else
1163 echo " Demos: $program_dirs"
1164fi
1165
Dan Nicholson16a07fb2007-12-12 09:12:15 -08001166dnl Compiler options
1167# cleanup the CFLAGS/CXXFLAGS/DEFINES vars
1168cflags=`echo $CFLAGS $OPT_FLAGS $PIC_FLAGS $ARCH_FLAGS | \
1169 $SED 's/^ *//;s/ */ /;s/ *$//'`
1170cxxflags=`echo $CXXFLAGS $OPT_FLAGS $PIC_FLAGS $ARCH_FLAGS | \
1171 $SED 's/^ *//;s/ */ /;s/ *$//'`
1172defines=`echo $DEFINES $ASM_FLAGS | $SED 's/^ *//;s/ */ /;s/ *$//'`
1173echo ""
1174echo " CFLAGS: $cflags"
1175echo " CXXFLAGS: $cxxflags"
1176echo " Macros: $defines"
1177
Dan Nicholsondca1b792007-10-23 09:25:58 -07001178echo ""
Dan Nicholsonb6459422008-03-24 10:01:50 -07001179echo " Run '${MAKE-make}' to build Mesa"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001180echo ""