blob: dde13c9b57d13f09de071be1dea30eb582114c28 [file] [log] [blame]
Dan Nicholsondca1b792007-10-23 09:25:58 -07001dnl Process this file with autoconf to create configure.
2
Dan Nicholson297e16c2008-05-05 15:42:53 -07003AC_PREREQ([2.59])
Dan Nicholsondca1b792007-10-23 09:25:58 -07004
Dan Nicholson00994ac2008-04-30 15:06:00 -07005dnl Versioning - scrape the version from configs/default
6m4_define([mesa_version],
Vinson Lee48f8a762010-05-11 12:33:30 -07007 [m4_esyscmd([${MAKE-make} -s -f bin/version.mk version | tr -d '\n' | tr -d '\r'])])
Dan Nicholson356f3112009-04-29 06:49:27 -07008m4_ifval(mesa_version,,
9 [m4_fatal([Failed to get the Mesa version from `make -f bin/version.mk version`])])
Dan Nicholsondca1b792007-10-23 09:25:58 -070010
Dan Nicholsone97ab722008-07-01 08:55:42 -070011dnl Tell the user about autoconf.html in the --help output
12m4_divert_once([HELP_END], [
13See docs/autoconf.html for more details on the options for Mesa.])
14
Dan Nicholson00994ac2008-04-30 15:06:00 -070015AC_INIT([Mesa],[mesa_version],
Dan Nicholsonf64d6fe2007-12-12 17:57:45 -080016 [https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa])
Dan Nicholson297e16c2008-05-05 15:42:53 -070017AC_CONFIG_AUX_DIR([bin])
Dan Nicholsondca1b792007-10-23 09:25:58 -070018AC_CANONICAL_HOST
19
Dan Nicholsoncc77e8f2008-05-05 14:38:22 -070020dnl Versions for external dependencies
Chris Wilsonfaf1dda2011-03-01 18:39:15 +000021LIBDRM_REQUIRED=2.4.24
22LIBDRM_RADEON_REQUIRED=2.4.24
23LIBDRM_INTEL_REQUIRED=2.4.24
Johannes Obermayr873379a2011-06-02 17:15:44 -060024LIBDRM_NOUVEAU_REQUIRED=0.6
Jesse Barnes1e39fc72011-05-05 13:09:16 -070025DRI2PROTO_REQUIRED=2.6
26GLPROTO_REQUIRED=1.4.14
Chris Wilsonfaf1dda2011-03-01 18:39:15 +000027LIBDRM_XORG_REQUIRED=2.4.24
Jakob Bornecrantz683a0992010-03-11 19:23:15 +000028LIBKMS_XORG_REQUIRED=1.0.0
Dan Nicholsoncc77e8f2008-05-05 14:38:22 -070029
Dan Nicholsondca1b792007-10-23 09:25:58 -070030dnl Check for progs
31AC_PROG_CPP
32AC_PROG_CC
33AC_PROG_CXX
Dan Nicholson297e16c2008-05-05 15:42:53 -070034AC_CHECK_PROGS([MAKE], [gmake make])
Kenneth Graunke3acc8262010-10-25 13:52:58 -070035AC_CHECK_PROGS([PYTHON2], [python2 python])
Dan Nicholson297e16c2008-05-05 15:42:53 -070036AC_PATH_PROG([MKDEP], [makedepend])
37AC_PATH_PROG([SED], [sed])
Dan Nicholson41b00702007-12-12 08:48:30 -080038
Luca Barbierif762f7b2010-09-24 10:10:09 +020039if test "x$MKDEP" = "x"; then
40 AC_MSG_ERROR([makedepend is required to build Mesa])
41fi
42
Brian Paulde1df262011-05-18 07:50:21 -060043AC_PATH_PROG([FLEX], [flex])
44test "x$FLEX" = "x" && AC_MSG_ERROR([flex is needed to build Mesa])
45
46AC_PATH_PROG([BISON], [bison])
47test "x$BISON" = "x" && AC_MSG_ERROR([bison is needed to build Mesa])
48
Dan Nicholsonbc302b22009-05-22 09:39:02 -070049dnl Our fallback install-sh is a symlink to minstall. Use the existing
50dnl configuration in that case.
51AC_PROG_INSTALL
52test "x$INSTALL" = "x$ac_install_sh" && INSTALL='$(MINSTALL)'
53
Dan Nicholsonbfb27b52008-06-30 09:40:30 -070054dnl We need a POSIX shell for parts of the build. Assume we have one
55dnl in most cases.
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -070056case "$host_os" in
57solaris*)
58 # Solaris /bin/sh is too old/non-POSIX compliant
59 AC_PATH_PROGS(POSIX_SHELL, [ksh93 ksh sh])
Dan Nicholsonbfb27b52008-06-30 09:40:30 -070060 SHELL="$POSIX_SHELL"
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -070061 ;;
62esac
63
nobled2a501872010-08-29 20:03:37 -040064dnl clang is mostly GCC-compatible, but its version is much lower,
65dnl so we have to check for it.
66AC_MSG_CHECKING([if compiling with clang])
67
68AC_COMPILE_IFELSE(
69[AC_LANG_PROGRAM([], [[
70#ifndef __clang__
71 not clang
72#endif
73]])],
74[CLANG=yes], [CLANG=no])
75
76AC_MSG_RESULT([$CLANG])
77
Ian Romanick9aa3aa72010-03-03 15:59:37 -080078dnl If we're using GCC, make sure that it is at least version 3.3.0. Older
79dnl versions are explictly not supported.
nobled2a501872010-08-29 20:03:37 -040080if test "x$GCC" = xyes -a "x$CLANG" = xno; then
Ian Romanick9aa3aa72010-03-03 15:59:37 -080081 AC_MSG_CHECKING([whether gcc version is sufficient])
82 major=0
83 minor=0
84
85 GCC_VERSION=`$CC -dumpversion`
86 if test $? -eq 0; then
87 major=`echo $GCC_VERSION | cut -d. -f1`
88 minor=`echo $GCC_VERSION | cut -d. -f1`
89 fi
90
91 if test $major -lt 3 -o $major -eq 3 -a $minor -lt 3 ; then
92 AC_MSG_RESULT([no])
93 AC_MSG_ERROR([If using GCC, version 3.3.0 or later is required.])
94 else
95 AC_MSG_RESULT([yes])
96 fi
97fi
98
99
Dan Nicholsondb7fc632008-03-07 11:48:09 -0800100MKDEP_OPTIONS=-fdepend
Kristian Høgsbergbcecea62008-02-25 18:50:26 -0500101dnl Ask gcc where it's keeping its secret headers
102if test "x$GCC" = xyes; then
Dan Nicholsona3d223f2009-01-30 10:52:09 -0800103 for dir in include include-fixed; do
104 GCC_INCLUDES=`$CC -print-file-name=$dir`
105 if test "x$GCC_INCLUDES" != x && \
106 test "$GCC_INCLUDES" != "$dir" && \
107 test -d "$GCC_INCLUDES"; then
108 MKDEP_OPTIONS="$MKDEP_OPTIONS -I$GCC_INCLUDES"
109 fi
110 done
Kristian Høgsbergbcecea62008-02-25 18:50:26 -0500111fi
Dan Nicholson297e16c2008-05-05 15:42:53 -0700112AC_SUBST([MKDEP_OPTIONS])
Kristian Høgsbergbcecea62008-02-25 18:50:26 -0500113
Dan Nicholson41b00702007-12-12 08:48:30 -0800114dnl Make sure the pkg-config macros are defined
Dan Nicholson356f3112009-04-29 06:49:27 -0700115m4_ifndef([PKG_PROG_PKG_CONFIG],
116 [m4_fatal([Could not locate the pkg-config autoconf macros.
117 These are usually located in /usr/share/aclocal/pkg.m4. If your macros
118 are in a different location, try setting the environment variable
119 ACLOCAL="aclocal -I/other/macro/dir" before running autoreconf.])])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700120PKG_PROG_PKG_CONFIG()
121
122dnl LIB_DIR - library basename
123LIB_DIR=`echo $libdir | $SED 's%.*/%%'`
Dan Nicholson297e16c2008-05-05 15:42:53 -0700124AC_SUBST([LIB_DIR])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700125
126dnl Cache LDFLAGS so we can add EXTRA_LIB_PATH and restore it later
127_SAVE_LDFLAGS="$LDFLAGS"
Dan Nicholson297e16c2008-05-05 15:42:53 -0700128AC_ARG_VAR([EXTRA_LIB_PATH],[Extra -L paths for the linker])
129AC_SUBST([EXTRA_LIB_PATH])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700130
131dnl Cache CPPFLAGS so we can add *_INCLUDES and restore it later
132_SAVE_CPPFLAGS="$CPPFLAGS"
Dan Nicholson297e16c2008-05-05 15:42:53 -0700133AC_ARG_VAR([X11_INCLUDES],[Extra -I paths for X11 headers])
134AC_SUBST([X11_INCLUDES])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700135
136dnl Compiler macros
137DEFINES=""
Dan Nicholson297e16c2008-05-05 15:42:53 -0700138AC_SUBST([DEFINES])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700139case "$host_os" in
Samuel Thibaultd18dd6a2009-04-23 05:43:22 -0700140linux*|*-gnu*|gnu*)
Dan Nicholson29f603a2009-01-12 11:10:31 -0800141 DEFINES="$DEFINES -D_GNU_SOURCE -DPTHREADS"
Dan Nicholsondca1b792007-10-23 09:25:58 -0700142 ;;
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -0700143solaris*)
144 DEFINES="$DEFINES -DPTHREADS -DSVR4"
145 ;;
Brian Paul97988902010-02-18 12:46:12 -0700146cygwin*)
147 DEFINES="$DEFINES -DPTHREADS"
148 ;;
Dan Nicholsondca1b792007-10-23 09:25:58 -0700149esac
150
151dnl Add flags for gcc and g++
152if test "x$GCC" = xyes; then
Eric Anholta3c2bd42010-08-30 14:19:23 -0700153 CFLAGS="$CFLAGS -Wall -Wmissing-prototypes -std=c99"
154 if test "x$CLANG" = "xno"; then
155 CFLAGS="$CFLAGS -ffast-math"
156 fi
Alan Coopersmithadda7f32010-01-16 18:34:23 -0800157
158 # Enable -fvisibility=hidden if using a gcc that supports it
159 save_CFLAGS="$CFLAGS"
Alan Coopersmithf8107a42010-01-21 16:42:58 -0800160 AC_MSG_CHECKING([whether $CC supports -fvisibility=hidden])
Christopher James Halse Rogersd1e28b22011-02-03 11:19:32 +1100161 VISIBILITY_CFLAGS="-fvisibility=hidden"
162 CFLAGS="$CFLAGS $VISIBILITY_CFLAGS"
Alan Coopersmithadda7f32010-01-16 18:34:23 -0800163 AC_LINK_IFELSE([AC_LANG_PROGRAM()], AC_MSG_RESULT([yes]),
Christopher James Halse Rogersd1e28b22011-02-03 11:19:32 +1100164 [VISIBILITY_CFLAGS=""; AC_MSG_RESULT([no])]);
165
166 # Restore CFLAGS; VISIBILITY_CFLAGS are added to it where needed.
167 CFLAGS=$save_CFLAGS
Dan Nicholson0c275b62008-01-15 22:52:25 -0800168
169 # Work around aliasing bugs - developers should comment this out
170 CFLAGS="$CFLAGS -fno-strict-aliasing"
Dan Nicholsondca1b792007-10-23 09:25:58 -0700171fi
172if test "x$GXX" = xyes; then
173 CXXFLAGS="$CXXFLAGS -Wall"
Dan Nicholson0c275b62008-01-15 22:52:25 -0800174
Kristian Høgsberg7b34fcc2010-09-08 20:34:07 -0400175 # Enable -fvisibility=hidden if using a gcc that supports it
176 save_CXXFLAGS="$CXXFLAGS"
177 AC_MSG_CHECKING([whether $CXX supports -fvisibility=hidden])
Christopher James Halse Rogersd1e28b22011-02-03 11:19:32 +1100178 VISIBILITY_CXXFLAGS="-fvisibility=hidden"
179 CXXFLAGS="$CXXFLAGS $VISIBILITY_CXXFLAGS"
Jon TURNEY560f7622011-04-26 11:49:01 +0100180 AC_LANG_PUSH([C++])
Kristian Høgsberg7b34fcc2010-09-08 20:34:07 -0400181 AC_LINK_IFELSE([AC_LANG_PROGRAM()], AC_MSG_RESULT([yes]),
Christopher James Halse Rogersd1e28b22011-02-03 11:19:32 +1100182 [VISIBILITY_CXXFLAGS="" ; AC_MSG_RESULT([no])]);
Jon TURNEY560f7622011-04-26 11:49:01 +0100183 AC_LANG_POP([C++])
Christopher James Halse Rogersd1e28b22011-02-03 11:19:32 +1100184
185 # Restore CXXFLAGS; VISIBILITY_CXXFLAGS are added to it where needed.
186 CXXFLAGS=$save_CXXFLAGS
Kristian Høgsberg7b34fcc2010-09-08 20:34:07 -0400187
Dan Nicholson0c275b62008-01-15 22:52:25 -0800188 # Work around aliasing bugs - developers should comment this out
189 CXXFLAGS="$CXXFLAGS -fno-strict-aliasing"
Dan Nicholsondca1b792007-10-23 09:25:58 -0700190fi
191
Jon TURNEYdb786432011-04-26 11:56:02 +0100192dnl even if the compiler appears to support it, using visibility attributes isn't
193dnl going to do anything useful currently on cygwin apart from emit lots of warnings
194case "$host_os" in
195cygwin*)
196 VISIBILITY_CFLAGS=""
197 VISIBILITY_CXXFLAGS=""
198 ;;
199esac
200
Christopher James Halse Rogersd1e28b22011-02-03 11:19:32 +1100201AC_SUBST([VISIBILITY_CFLAGS])
202AC_SUBST([VISIBILITY_CXXFLAGS])
203
Dan Nicholsondca1b792007-10-23 09:25:58 -0700204dnl These should be unnecessary, but let the user set them if they want
Dan Nicholson297e16c2008-05-05 15:42:53 -0700205AC_ARG_VAR([OPT_FLAGS], [Additional optimization flags for the compiler.
Dan Nicholsondca1b792007-10-23 09:25:58 -0700206 Default is to use CFLAGS.])
Dan Nicholson297e16c2008-05-05 15:42:53 -0700207AC_ARG_VAR([ARCH_FLAGS], [Additional architecture specific flags for the
Dan Nicholsondca1b792007-10-23 09:25:58 -0700208 compiler. Default is to use CFLAGS.])
Dan Nicholson297e16c2008-05-05 15:42:53 -0700209AC_SUBST([OPT_FLAGS])
210AC_SUBST([ARCH_FLAGS])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700211
212dnl
Dan Nicholsonab57cba2007-12-26 11:12:29 -0600213dnl Hacks to enable 32 or 64 bit build
214dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -0700215AC_ARG_ENABLE([32-bit],
Dan Nicholsonab57cba2007-12-26 11:12:29 -0600216 [AS_HELP_STRING([--enable-32-bit],
217 [build 32-bit libraries @<:@default=auto@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700218 [enable_32bit="$enableval"],
219 [enable_32bit=auto]
Dan Nicholsonab57cba2007-12-26 11:12:29 -0600220)
221if test "x$enable_32bit" = xyes; then
222 if test "x$GCC" = xyes; then
223 CFLAGS="$CFLAGS -m32"
Marc Dietrichc705e722009-08-31 08:56:33 -0700224 ARCH_FLAGS="$ARCH_FLAGS -m32"
Dan Nicholsonab57cba2007-12-26 11:12:29 -0600225 fi
226 if test "x$GXX" = xyes; then
227 CXXFLAGS="$CXXFLAGS -m32"
228 fi
229fi
Dan Nicholson297e16c2008-05-05 15:42:53 -0700230AC_ARG_ENABLE([64-bit],
Dan Nicholsonab57cba2007-12-26 11:12:29 -0600231 [AS_HELP_STRING([--enable-64-bit],
232 [build 64-bit libraries @<:@default=auto@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700233 [enable_64bit="$enableval"],
234 [enable_64bit=auto]
Dan Nicholsonab57cba2007-12-26 11:12:29 -0600235)
236if test "x$enable_64bit" = xyes; then
237 if test "x$GCC" = xyes; then
238 CFLAGS="$CFLAGS -m64"
239 fi
240 if test "x$GXX" = xyes; then
241 CXXFLAGS="$CXXFLAGS -m64"
242 fi
243fi
244
245dnl
Dan Nicholson88586332007-11-15 08:59:57 -0800246dnl shared/static libraries, mimic libtool options
247dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -0700248AC_ARG_ENABLE([static],
Dan Nicholson88586332007-11-15 08:59:57 -0800249 [AS_HELP_STRING([--enable-static],
Dan Nicholson79ad4582007-12-07 19:11:01 -0800250 [build static libraries @<:@default=disabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700251 [enable_static="$enableval"],
252 [enable_static=no]
Dan Nicholson88586332007-11-15 08:59:57 -0800253)
254case "x$enable_static" in
255xyes|xno ) ;;
256x ) enable_static=no ;;
257* )
258 AC_MSG_ERROR([Static library option '$enable_static' is not a valid])
259 ;;
260esac
Dan Nicholson297e16c2008-05-05 15:42:53 -0700261AC_ARG_ENABLE([shared],
Dan Nicholson88586332007-11-15 08:59:57 -0800262 [AS_HELP_STRING([--disable-shared],
Dan Nicholson79ad4582007-12-07 19:11:01 -0800263 [build shared libraries @<:@default=enabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700264 [enable_shared="$enableval"],
265 [enable_shared=yes]
Dan Nicholson88586332007-11-15 08:59:57 -0800266)
267case "x$enable_shared" in
268xyes|xno ) ;;
269x ) enable_shared=yes ;;
270* )
271 AC_MSG_ERROR([Shared library option '$enable_shared' is not a valid])
272 ;;
273esac
274
275dnl Can't have static and shared libraries, default to static if user
276dnl explicitly requested. If both disabled, set to static since shared
277dnl was explicitly requirested.
278case "x$enable_static$enable_shared" in
279xyesyes )
280 AC_MSG_WARN([Can't build static and shared libraries, disabling shared])
281 enable_shared=no
282 ;;
283xnono )
284 AC_MSG_WARN([Can't disable both static and shared libraries, enabling static])
285 enable_static=yes
286 ;;
287esac
288
289dnl
290dnl mklib options
291dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -0700292AC_ARG_VAR([MKLIB_OPTIONS],[Options for the Mesa library script, mklib])
Dan Nicholson88586332007-11-15 08:59:57 -0800293if test "$enable_static" = yes; then
294 MKLIB_OPTIONS="$MKLIB_OPTIONS -static"
295fi
Dan Nicholson297e16c2008-05-05 15:42:53 -0700296AC_SUBST([MKLIB_OPTIONS])
Dan Nicholson88586332007-11-15 08:59:57 -0800297
Dan Nicholson23656c42007-12-12 09:02:31 -0800298dnl
299dnl other compiler options
300dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -0700301AC_ARG_ENABLE([debug],
Dan Nicholson23656c42007-12-12 09:02:31 -0800302 [AS_HELP_STRING([--enable-debug],
303 [use debug compiler flags and macros @<:@default=disabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700304 [enable_debug="$enableval"],
305 [enable_debug=no]
Dan Nicholson23656c42007-12-12 09:02:31 -0800306)
307if test "x$enable_debug" = xyes; then
308 DEFINES="$DEFINES -DDEBUG"
309 if test "x$GCC" = xyes; then
310 CFLAGS="$CFLAGS -g"
311 fi
312 if test "x$GXX" = xyes; then
313 CXXFLAGS="$CXXFLAGS -g"
314 fi
315fi
Dan Nicholson88586332007-11-15 08:59:57 -0800316
317dnl
Dan Nicholsondca1b792007-10-23 09:25:58 -0700318dnl library names
319dnl
Jon TURNEYc55a8a72010-07-24 12:05:34 +0100320LIB_PREFIX_GLOB='lib'
321LIB_VERSION_SEPARATOR='.'
Dan Nicholson88586332007-11-15 08:59:57 -0800322if test "$enable_static" = yes; then
Dan Nicholson8217f242009-02-11 15:16:00 -0800323 LIB_EXTENSION='a'
Dan Nicholson88586332007-11-15 08:59:57 -0800324else
Siddhartha Chaudhuri1a46c8a2009-02-09 07:58:38 -0700325 case "$host_os" in
326 darwin* )
327 LIB_EXTENSION='dylib' ;;
Jon TURNEY7eed6ab2009-06-08 16:02:18 +0100328 cygwin* )
Jon TURNEYc55a8a72010-07-24 12:05:34 +0100329 dnl prefix can be 'cyg' or 'lib'
330 LIB_PREFIX_GLOB='???'
331 LIB_VERSION_SEPARATOR='-'
332 LIB_EXTENSION='dll' ;;
Tom Fogal9282edf2009-10-13 10:55:33 -0700333 aix* )
334 LIB_EXTENSION='a' ;;
Siddhartha Chaudhuri1a46c8a2009-02-09 07:58:38 -0700335 * )
336 LIB_EXTENSION='so' ;;
337 esac
Dan Nicholson88586332007-11-15 08:59:57 -0800338fi
Dan Nicholson8217f242009-02-11 15:16:00 -0800339
Marek Olšák848f7d32011-04-01 01:12:41 +0200340dnl
341dnl potentially-infringing-but-nobody-knows-for-sure stuff
342dnl
343AC_ARG_ENABLE([texture-float],
344 [AS_HELP_STRING([--enable-texture-float],
345 [enable floating-point textures and renderbuffers @<:@default=disabled@:>@])],
346 [enable_texture_float="$enableval"],
347 [enable_texture_float=no]
348)
349if test "x$enable_texture_float" = xyes; then
350 AC_MSG_WARN([Floating-point textures enabled.])
351 AC_MSG_WARN([Please consult docs/patents.txt with your lawyer before building Mesa.])
352 DEFINES="$DEFINES -DTEXTURE_FLOAT_ENABLED"
353fi
354
Dan Nicholson8217f242009-02-11 15:16:00 -0800355GL_LIB_NAME='lib$(GL_LIB).'${LIB_EXTENSION}
356GLU_LIB_NAME='lib$(GLU_LIB).'${LIB_EXTENSION}
357GLUT_LIB_NAME='lib$(GLUT_LIB).'${LIB_EXTENSION}
358GLW_LIB_NAME='lib$(GLW_LIB).'${LIB_EXTENSION}
359OSMESA_LIB_NAME='lib$(OSMESA_LIB).'${LIB_EXTENSION}
Chia-I Wud4c1ee02009-12-21 11:13:18 +0800360EGL_LIB_NAME='lib$(EGL_LIB).'${LIB_EXTENSION}
Kristian Høgsberg9339c122010-03-05 19:01:43 -0500361GLESv1_CM_LIB_NAME='lib$(GLESv1_CM_LIB).'${LIB_EXTENSION}
362GLESv2_LIB_NAME='lib$(GLESv2_LIB).'${LIB_EXTENSION}
Chia-I Wu874ccd52010-05-04 22:43:05 +0800363VG_LIB_NAME='lib$(VG_LIB).'${LIB_EXTENSION}
Chia-I Wu9767d3b2010-12-26 18:02:59 +0800364GLAPI_LIB_NAME='lib$(GLAPI_LIB).'${LIB_EXTENSION}
Benjamin Franzke214fc6e2011-02-04 12:24:08 +0100365WAYLAND_EGL_LIB_NAME='lib$(WAYLAND_EGL_LIB).'${LIB_EXTENSION}
Benjamin Franzkeeddcecb2011-05-26 15:09:39 +0200366GBM_LIB_NAME='lib$(GBM_LIB).'${LIB_EXTENSION}
Dan Nicholson8217f242009-02-11 15:16:00 -0800367
Jon TURNEYc55a8a72010-07-24 12:05:34 +0100368GL_LIB_GLOB=${LIB_PREFIX_GLOB}'$(GL_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
369GLU_LIB_GLOB=${LIB_PREFIX_GLOB}'$(GLU_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
370GLUT_LIB_GLOB=${LIB_PREFIX_GLOB}'$(GLUT_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
371GLW_LIB_GLOB=${LIB_PREFIX_GLOB}'$(GLW_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
372OSMESA_LIB_GLOB=${LIB_PREFIX_GLOB}'$(OSMESA_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
373EGL_LIB_GLOB=${LIB_PREFIX_GLOB}'$(EGL_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
374EGL_LIB_GLOB=${LIB_PREFIX_GLOB}'$(EGL_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
375GLESv1_CM_LIB_GLOB=${LIB_PREFIX_GLOB}'$(GLESv1_CM_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
376GLESv2_LIB_GLOB=${LIB_PREFIX_GLOB}'$(GLESv2_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
377VG_LIB_GLOB=${LIB_PREFIX_GLOB}'$(VG_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
Chia-I Wu9767d3b2010-12-26 18:02:59 +0800378GLAPI_LIB_GLOB=${LIB_PREFIX_GLOB}'$(GLAPI_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
Benjamin Franzke214fc6e2011-02-04 12:24:08 +0100379WAYLAND_EGL_LIB_GLOB=${LIB_PREFIX_GLOB}'$(WAYLAND_EGL_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
Benjamin Franzkeeddcecb2011-05-26 15:09:39 +0200380GBM_LIB_GLOB=${LIB_PREFIX_GLOB}'$(GBM_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
Dan Nicholson8217f242009-02-11 15:16:00 -0800381
Dan Nicholson297e16c2008-05-05 15:42:53 -0700382AC_SUBST([GL_LIB_NAME])
383AC_SUBST([GLU_LIB_NAME])
384AC_SUBST([GLUT_LIB_NAME])
385AC_SUBST([GLW_LIB_NAME])
386AC_SUBST([OSMESA_LIB_NAME])
Chia-I Wud4c1ee02009-12-21 11:13:18 +0800387AC_SUBST([EGL_LIB_NAME])
Kristian Høgsberg9339c122010-03-05 19:01:43 -0500388AC_SUBST([GLESv1_CM_LIB_NAME])
389AC_SUBST([GLESv2_LIB_NAME])
Chia-I Wu874ccd52010-05-04 22:43:05 +0800390AC_SUBST([VG_LIB_NAME])
Chia-I Wu9767d3b2010-12-26 18:02:59 +0800391AC_SUBST([GLAPI_LIB_NAME])
Benjamin Franzke214fc6e2011-02-04 12:24:08 +0100392AC_SUBST([WAYLAND_EGL_LIB_NAME])
Benjamin Franzkeeddcecb2011-05-26 15:09:39 +0200393AC_SUBST([GBM_LIB_NAME])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700394
Siddhartha Chaudhuri1a46c8a2009-02-09 07:58:38 -0700395AC_SUBST([GL_LIB_GLOB])
396AC_SUBST([GLU_LIB_GLOB])
397AC_SUBST([GLUT_LIB_GLOB])
398AC_SUBST([GLW_LIB_GLOB])
399AC_SUBST([OSMESA_LIB_GLOB])
Chia-I Wud4c1ee02009-12-21 11:13:18 +0800400AC_SUBST([EGL_LIB_GLOB])
Kristian Høgsberg9339c122010-03-05 19:01:43 -0500401AC_SUBST([GLESv1_CM_LIB_GLOB])
402AC_SUBST([GLESv2_LIB_GLOB])
Chia-I Wu874ccd52010-05-04 22:43:05 +0800403AC_SUBST([VG_LIB_GLOB])
Chia-I Wu9767d3b2010-12-26 18:02:59 +0800404AC_SUBST([GLAPI_LIB_GLOB])
Benjamin Franzke214fc6e2011-02-04 12:24:08 +0100405AC_SUBST([WAYLAND_EGL_LIB_GLOB])
Benjamin Franzkeeddcecb2011-05-26 15:09:39 +0200406AC_SUBST([GBM_LIB_GLOB])
Siddhartha Chaudhuri1a46c8a2009-02-09 07:58:38 -0700407
Dan Nicholsondca1b792007-10-23 09:25:58 -0700408dnl
Dan Nicholson871125a2008-06-04 13:00:35 -0700409dnl Arch/platform-specific settings
410dnl
411AC_ARG_ENABLE([asm],
412 [AS_HELP_STRING([--disable-asm],
413 [disable assembly usage @<:@default=enabled on supported plaforms@:>@])],
414 [enable_asm="$enableval"],
415 [enable_asm=yes]
416)
417asm_arch=""
418ASM_FLAGS=""
Dan Nicholsonc5bae142009-02-11 11:04:29 -0800419MESA_ASM_SOURCES=""
420GLAPI_ASM_SOURCES=""
Dan Nicholson871125a2008-06-04 13:00:35 -0700421AC_MSG_CHECKING([whether to enable assembly])
422test "x$enable_asm" = xno && AC_MSG_RESULT([no])
423# disable if cross compiling on x86/x86_64 since we must run gen_matypes
424if test "x$enable_asm" = xyes && test "x$cross_compiling" = xyes; then
425 case "$host_cpu" in
426 i?86 | x86_64)
427 enable_asm=no
428 AC_MSG_RESULT([no, cross compiling])
429 ;;
430 esac
431fi
432# check for supported arches
433if test "x$enable_asm" = xyes; then
434 case "$host_cpu" in
435 i?86)
436 case "$host_os" in
Pierre Allegraud8fd8de32011-01-06 07:58:57 -0700437 linux* | *freebsd* | dragonfly* | *netbsd*)
Dan Nicholson871125a2008-06-04 13:00:35 -0700438 test "x$enable_64bit" = xyes && asm_arch=x86_64 || asm_arch=x86
439 ;;
440 esac
441 ;;
442 x86_64)
443 case "$host_os" in
Pierre Allegraud8fd8de32011-01-06 07:58:57 -0700444 linux* | *freebsd* | dragonfly* | *netbsd*)
Dan Nicholson871125a2008-06-04 13:00:35 -0700445 test "x$enable_32bit" = xyes && asm_arch=x86 || asm_arch=x86_64
446 ;;
447 esac
448 ;;
449 powerpc)
450 case "$host_os" in
451 linux*)
452 asm_arch=ppc
453 ;;
454 esac
455 ;;
David S. Miller857ac1e2009-02-26 05:35:15 -0800456 sparc*)
457 case "$host_os" in
458 linux*)
459 asm_arch=sparc
460 ;;
461 esac
462 ;;
Dan Nicholson871125a2008-06-04 13:00:35 -0700463 esac
464
465 case "$asm_arch" in
466 x86)
Dan Nicholson61e925f2009-02-11 10:42:34 -0800467 ASM_FLAGS="-DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_3DNOW_ASM -DUSE_SSE_ASM"
Dan Nicholsonc5bae142009-02-11 11:04:29 -0800468 MESA_ASM_SOURCES='$(X86_SOURCES)'
469 GLAPI_ASM_SOURCES='$(X86_API)'
Dan Nicholson871125a2008-06-04 13:00:35 -0700470 AC_MSG_RESULT([yes, x86])
471 ;;
472 x86_64)
473 ASM_FLAGS="-DUSE_X86_64_ASM"
Dan Nicholsonc5bae142009-02-11 11:04:29 -0800474 MESA_ASM_SOURCES='$(X86-64_SOURCES)'
475 GLAPI_ASM_SOURCES='$(X86-64_API)'
Dan Nicholson871125a2008-06-04 13:00:35 -0700476 AC_MSG_RESULT([yes, x86_64])
477 ;;
478 ppc)
479 ASM_FLAGS="-DUSE_PPC_ASM -DUSE_VMX_ASM"
Dan Nicholsonc5bae142009-02-11 11:04:29 -0800480 MESA_ASM_SOURCES='$(PPC_SOURCES)'
Dan Nicholson871125a2008-06-04 13:00:35 -0700481 AC_MSG_RESULT([yes, ppc])
482 ;;
David S. Miller857ac1e2009-02-26 05:35:15 -0800483 sparc)
484 ASM_FLAGS="-DUSE_SPARC_ASM"
485 MESA_ASM_SOURCES='$(SPARC_SOURCES)'
486 GLAPI_ASM_SOURCES='$(SPARC_API)'
487 AC_MSG_RESULT([yes, sparc])
488 ;;
Dan Nicholson871125a2008-06-04 13:00:35 -0700489 *)
490 AC_MSG_RESULT([no, platform not supported])
491 ;;
492 esac
493fi
494AC_SUBST([ASM_FLAGS])
Dan Nicholsonc5bae142009-02-11 11:04:29 -0800495AC_SUBST([MESA_ASM_SOURCES])
496AC_SUBST([GLAPI_ASM_SOURCES])
Dan Nicholson871125a2008-06-04 13:00:35 -0700497
498dnl PIC code macro
499MESA_PIC_FLAGS
500
501dnl Check to see if dlopen is in default libraries (like Solaris, which
502dnl has it in libc), or if libdl is needed to get it.
503AC_CHECK_FUNC([dlopen], [],
504 [AC_CHECK_LIB([dl], [dlopen], [DLOPEN_LIBS="-ldl"])])
Chia-I Wu08f4bc02010-07-16 20:09:29 +0800505AC_SUBST([DLOPEN_LIBS])
Dan Nicholson871125a2008-06-04 13:00:35 -0700506
Dan Nicholson985e1cd2008-06-04 13:17:06 -0700507dnl See if posix_memalign is available
508AC_CHECK_FUNC([posix_memalign], [DEFINES="$DEFINES -DHAVE_POSIX_MEMALIGN"])
509
Dan Nicholson871125a2008-06-04 13:00:35 -0700510dnl SELinux awareness.
511AC_ARG_ENABLE([selinux],
512 [AS_HELP_STRING([--enable-selinux],
513 [Build SELinux-aware Mesa @<:@default=disabled@:>@])],
514 [MESA_SELINUX="$enableval"],
515 [MESA_SELINUX=no])
516if test "x$enable_selinux" = "xyes"; then
517 AC_CHECK_HEADER([selinux/selinux.h],[],
518 [AC_MSG_ERROR([SELinux headers not found])])
519 AC_CHECK_LIB([selinux],[is_selinux_enabled],[],
520 [AC_MSG_ERROR([SELinux library not found])])
521 SELINUX_LIBS="-lselinux"
522 DEFINES="$DEFINES -DMESA_SELINUX"
523fi
524
Marek Olšák440d71d2011-06-14 05:38:58 +0200525dnl Options for APIs
Chia-I Wube5f34a2010-10-27 16:14:27 +0800526AC_ARG_ENABLE([opengl],
527 [AS_HELP_STRING([--disable-opengl],
528 [disable support for standard OpenGL API @<:@default=no@:>@])],
529 [enable_opengl="$enableval"],
530 [enable_opengl=yes])
531AC_ARG_ENABLE([gles1],
532 [AS_HELP_STRING([--enable-gles1],
533 [enable support for OpenGL ES 1.x API @<:@default=no@:>@])],
534 [enable_gles1="$enableval"],
535 [enable_gles1=no])
536AC_ARG_ENABLE([gles2],
537 [AS_HELP_STRING([--enable-gles2],
538 [enable support for OpenGL ES 2.x API @<:@default=no@:>@])],
539 [enable_gles2="$enableval"],
540 [enable_gles2=no])
Chia-I Wube5f34a2010-10-27 16:14:27 +0800541AC_ARG_ENABLE([openvg],
542 [AS_HELP_STRING([--enable-openvg],
543 [enable support for OpenVG API @<:@default=no@:>@])],
544 [enable_openvg="$enableval"],
545 [enable_openvg=no])
Chia-I Wu9e7a4142011-06-26 13:24:32 +0900546
547AC_ARG_ENABLE([dri],
548 [AS_HELP_STRING([--enable-dri],
549 [enable DRI modules @<:@default=auto@:>@])],
550 [enable_dri="$enableval"],
551 [enable_dri=auto])
552AC_ARG_ENABLE([glx],
553 [AS_HELP_STRING([--enable-glx],
554 [enable GLX library @<:@default=auto@:>@])],
555 [enable_glx="$enableval"],
556 [enable_glx=auto])
557AC_ARG_ENABLE([osmesa],
558 [AS_HELP_STRING([--enable-osmesa],
559 [enable OSMesa library @<:@default=auto@:>@])],
560 [enable_osmesa="$enableval"],
561 [enable_osmesa=auto])
562AC_ARG_ENABLE([egl],
563 [AS_HELP_STRING([--disable-egl],
564 [disable EGL library @<:@default=enabled@:>@])],
565 [enable_egl="$enableval"],
566 [enable_egl=yes])
567
Marek Olšák440d71d2011-06-14 05:38:58 +0200568AC_ARG_ENABLE([xorg],
569 [AS_HELP_STRING([--enable-xorg],
570 [enable support for X.Org DDX API @<:@default=no@:>@])],
571 [enable_xorg="$enableval"],
572 [enable_xorg=no])
Thomas Hellstrom424b1212011-07-04 10:21:35 +0200573AC_ARG_ENABLE([xa],
574 [AS_HELP_STRING([--enable-xa],
575 [enable build of the XA X Acceleration API @<:@default=no@:>@])],
576 [enable_xa="$enableval"],
577 [enable_xa=no])
Marek Olšák440d71d2011-06-14 05:38:58 +0200578AC_ARG_ENABLE([d3d1x],
579 [AS_HELP_STRING([--enable-d3d1x],
580 [enable support for Direct3D 10 & 11 low-level API @<:@default=no@:>@])],
581 [enable_d3d1x="$enableval"],
582 [enable_d3d1x=no])
Benjamin Franzkeeddcecb2011-05-26 15:09:39 +0200583AC_ARG_ENABLE([gbm],
584 [AS_HELP_STRING([--enable-gbm],
585 [enable gbm library @<:@default=auto@:>@])],
586 [enable_gbm="$enableval"],
587 [enable_gbm=auto])
Chia-I Wu9e7a4142011-06-26 13:24:32 +0900588
589AC_ARG_ENABLE([xlib_glx],
590 [AS_HELP_STRING([--enable-xlib-glx],
591 [make GLX library Xlib-based instead of DRI-based @<:@default=disable@:>@])],
592 [enable_xlib_glx="$enableval"],
593 [enable_xlib_glx=auto])
Marek Olšák1251e1d2011-06-18 20:33:55 +0200594AC_ARG_ENABLE([gallium_egl],
595 [AS_HELP_STRING([--enable-gallium-egl],
596 [enable optional EGL state tracker (not required
597 for EGL support in Gallium with OpenGL and OpenGL ES)
598 @<:@default=disable@:>@])],
599 [enable_gallium_egl="$enableval"],
600 [enable_gallium_egl=no])
Benjamin Franzke48d4a002011-05-26 15:11:50 +0200601AC_ARG_ENABLE([gallium_gbm],
602 [AS_HELP_STRING([--enable-gallium-gbm],
603 [enable optional gbm state tracker (not required for
604 gbm support in Gallium)
Benjamin Franzkeb18b2992011-07-02 13:45:14 +0200605 @<:@default=auto@:>@])],
Benjamin Franzke48d4a002011-05-26 15:11:50 +0200606 [enable_gallium_gbm="$enableval"],
Benjamin Franzkeb18b2992011-07-02 13:45:14 +0200607 [enable_gallium_gbm=auto])
Chia-I Wube5f34a2010-10-27 16:14:27 +0800608
Marek Olšák58b6a192011-06-14 07:46:59 +0200609# Option for Gallium drivers
Marek Olšák0c7c5b62011-06-14 08:31:11 +0200610GALLIUM_DRIVERS_DEFAULT="r300,r600,swrast"
Marek Olšák58b6a192011-06-14 07:46:59 +0200611
612AC_ARG_WITH([gallium-drivers],
613 [AS_HELP_STRING([--with-gallium-drivers@<:@=DIRS...@:>@],
614 [comma delimited Gallium drivers list, e.g.
615 "i915,i965,nouveau,r300,r600,svga,swrast"
Marek Olšák0c7c5b62011-06-14 08:31:11 +0200616 @<:@default=r300,r600,swrast@:>@])],
Marek Olšák58b6a192011-06-14 07:46:59 +0200617 [with_gallium_drivers="$withval"],
618 [with_gallium_drivers="$GALLIUM_DRIVERS_DEFAULT"])
Chia-I Wu156e9552010-10-30 14:26:01 +0800619
Chia-I Wube5f34a2010-10-27 16:14:27 +0800620if test "x$enable_opengl" = xno -a \
621 "x$enable_gles1" = xno -a \
622 "x$enable_gles2" = xno -a \
Marek Olšák440d71d2011-06-14 05:38:58 +0200623 "x$enable_openvg" = xno -a \
624 "x$enable_xorg" = xno -a \
Thomas Hellstrom424b1212011-07-04 10:21:35 +0200625 "x$enable_xa" = xno -a \
Marek Olšák440d71d2011-06-14 05:38:58 +0200626 "x$enable_d3d1x" = xno; then
Chia-I Wube5f34a2010-10-27 16:14:27 +0800627 AC_MSG_ERROR([at least one API should be enabled])
628fi
629
630API_DEFINES=""
Chia-I Wube5f34a2010-10-27 16:14:27 +0800631if test "x$enable_opengl" = xno; then
632 API_DEFINES="$API_DEFINES -DFEATURE_GL=0"
633else
634 API_DEFINES="$API_DEFINES -DFEATURE_GL=1"
635fi
636if test "x$enable_gles1" = xyes; then
637 API_DEFINES="$API_DEFINES -DFEATURE_ES1=1"
638fi
639if test "x$enable_gles2" = xyes; then
640 API_DEFINES="$API_DEFINES -DFEATURE_ES2=1"
641fi
Chia-I Wube5f34a2010-10-27 16:14:27 +0800642AC_SUBST([API_DEFINES])
Chia-I Wube5f34a2010-10-27 16:14:27 +0800643
Chia-I Wue8c7d752010-12-26 18:24:13 +0800644AC_ARG_ENABLE([shared-glapi],
645 [AS_HELP_STRING([--enable-shared-glapi],
646 [EXPERIMENTAL. Enable shared glapi for OpenGL @<:@default=no@:>@])],
647 [enable_shared_glapi="$enableval"],
648 [enable_shared_glapi=no])
649
650SHARED_GLAPI="0"
651if test "x$enable_shared_glapi" = xyes; then
652 SHARED_GLAPI="1"
653fi
654AC_SUBST([SHARED_GLAPI])
655
Dan Nicholson871125a2008-06-04 13:00:35 -0700656dnl
Dan Nicholsona1307182007-12-12 17:49:49 -0800657dnl Driver configuration. Options are xlib, dri and osmesa right now.
Kristian Høgsberg43875802010-02-25 15:49:18 -0500658dnl More later: fbdev, ...
Dan Nicholson44d99142007-12-05 18:47:01 -0800659dnl
Eric Anholt711222b2008-04-18 15:03:01 -0700660default_driver="xlib"
661
662case "$host_os" in
663linux*)
664 case "$host_cpu" in
David S. Miller32dc28a2009-02-24 20:06:05 -0700665 i*86|x86_64|powerpc*|sparc*) default_driver="dri";;
Eric Anholt711222b2008-04-18 15:03:01 -0700666 esac
667 ;;
Pierre Allegraud8fd8de32011-01-06 07:58:57 -0700668*freebsd* | dragonfly* | *netbsd*)
Eric Anholt711222b2008-04-18 15:03:01 -0700669 case "$host_cpu" in
Robert Noland48f05432009-04-10 11:41:27 -0500670 i*86|x86_64|powerpc*|sparc*) default_driver="dri";;
Eric Anholt711222b2008-04-18 15:03:01 -0700671 esac
672 ;;
673esac
674
Chia-I Wube5f34a2010-10-27 16:14:27 +0800675if test "x$enable_opengl" = xno; then
676 default_driver="no"
677fi
678
Dan Nicholson297e16c2008-05-05 15:42:53 -0700679AC_ARG_WITH([driver],
Chia-I Wu9e7a4142011-06-26 13:24:32 +0900680 [AS_HELP_STRING([--with-driver=DRIVER], [DEPRECATED])],
Dan Nicholson297e16c2008-05-05 15:42:53 -0700681 [mesa_driver="$withval"],
Chia-I Wu9e7a4142011-06-26 13:24:32 +0900682 [mesa_driver=auto])
Dan Nicholson44d99142007-12-05 18:47:01 -0800683dnl Check for valid option
684case "x$mesa_driver" in
Chia-I Wu9e7a4142011-06-26 13:24:32 +0900685xxlib|xdri|xosmesa|xno)
686 if test "x$enable_dri" != xauto -o \
687 "x$enable_glx" != xauto -o \
688 "x$enable_osmesa" != xauto -o \
689 "x$enable_xlib_glx" != xauto; then
690 AC_MSG_ERROR([--with-driver=$mesa_driver is deprecated])
Chia-I Wube5f34a2010-10-27 16:14:27 +0800691 fi
692 ;;
Chia-I Wu9e7a4142011-06-26 13:24:32 +0900693xauto)
694 mesa_driver="$default_driver"
Dan Nicholson44d99142007-12-05 18:47:01 -0800695 ;;
696*)
697 AC_MSG_ERROR([Driver '$mesa_driver' is not a valid option])
698 ;;
699esac
700
Chia-I Wu9e7a4142011-06-26 13:24:32 +0900701# map $mesa_driver to APIs
702if test "x$enable_dri" = xauto; then
703 case "x$mesa_driver" in
704 xdri) enable_dri=yes ;;
705 *) enable_dri=no ;;
706 esac
707fi
708
709if test "x$enable_glx" = xauto; then
710 case "x$mesa_driver" in
711 xdri|xxlib) enable_glx=yes ;;
712 *) enable_glx=no ;;
713 esac
714fi
715
716if test "x$enable_osmesa" = xauto; then
717 case "x$mesa_driver" in
718 xxlib|xosmesa) enable_osmesa=yes ;;
719 *) enable_osmesa=no ;;
720 esac
721fi
722
723if test "x$enable_xlib_glx" = xauto; then
724 case "x$mesa_driver" in
725 xxlib) enable_xlib_glx=yes ;;
726 *) enable_xlib_glx=no ;;
727 esac
728fi
729
730if test "x$enable_glx" = xno; then
731 enable_xlib_glx=no
732fi
733
Dan Nicholson44d99142007-12-05 18:47:01 -0800734dnl
735dnl Driver specific build directories
Dan Nicholsondca1b792007-10-23 09:25:58 -0700736dnl
Chia-I Wu99a37ed2010-01-05 17:39:05 +0800737
738dnl this variable will be prepended to SRC_DIRS and is not exported
Chia-I Wube5f34a2010-10-27 16:14:27 +0800739CORE_DIRS=""
Chia-I Wu99a37ed2010-01-05 17:39:05 +0800740
Jakob Bornecrantz05281062010-06-05 13:33:58 +0200741SRC_DIRS=""
Dan Nicholsondca1b792007-10-23 09:25:58 -0700742GLU_DIRS="sgi"
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100743GALLIUM_DIRS="auxiliary drivers state_trackers"
Keith Whitwell51bff092010-03-11 14:43:00 +0000744GALLIUM_TARGET_DIRS=""
Jakob Bornecrantzc9f98672010-03-16 13:54:18 +0000745GALLIUM_WINSYS_DIRS="sw"
Jerome Glisse33495172011-01-09 21:04:41 -0500746GALLIUM_DRIVERS_DIRS="softpipe failover galahad trace rbug noop identity"
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100747GALLIUM_STATE_TRACKERS_DIRS=""
748
Chia-I Wue8c7d752010-12-26 18:24:13 +0800749# build shared-glapi if enabled for OpenGL or if OpenGL ES is enabled
Jon TURNEYaa6a5cf2011-02-16 13:37:57 +0000750case "x$enable_shared_glapi$enable_gles1$enable_gles2" in
Chia-I Wu9767d3b2010-12-26 18:02:59 +0800751x*yes*)
752 CORE_DIRS="$CORE_DIRS mapi/shared-glapi"
753 ;;
754esac
755
Chia-I Wube5f34a2010-10-27 16:14:27 +0800756# build glapi if OpenGL is enabled
757if test "x$enable_opengl" = xyes; then
758 CORE_DIRS="$CORE_DIRS mapi/glapi"
759fi
760
Chia-I Wu12583172011-01-07 17:24:16 +0800761# build es1api if OpenGL ES 1.x is enabled
762if test "x$enable_gles1" = xyes; then
763 CORE_DIRS="$CORE_DIRS mapi/es1api"
764fi
765
766# build es2api if OpenGL ES 2.x is enabled
767if test "x$enable_gles2" = xyes; then
768 CORE_DIRS="$CORE_DIRS mapi/es2api"
769fi
Chia-I Wube5f34a2010-10-27 16:14:27 +0800770
Chia-I Wube5f34a2010-10-27 16:14:27 +0800771# build glsl and mesa if OpenGL or OpenGL ES is enabled
Chia-I Wu12583172011-01-07 17:24:16 +0800772case "x$enable_opengl$enable_gles1$enable_gles2" in
Chia-I Wube5f34a2010-10-27 16:14:27 +0800773x*yes*)
774 CORE_DIRS="$CORE_DIRS glsl mesa"
775 ;;
776esac
777
Chia-I Wu9e7a4142011-06-26 13:24:32 +0900778case "x$enable_glx$enable_xlib_glx" in
779xyesyes)
780 DRIVER_DIRS="$DRIVER_DIRS x11"
Jakob Bornecrantzc9f98672010-03-16 13:54:18 +0000781 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/xlib"
Keith Whitwell51bff092010-03-11 14:43:00 +0000782 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS libgl-xlib"
Marek Olšák440d71d2011-06-14 05:38:58 +0200783 GALLIUM_STATE_TRACKERS_DIRS="glx $GALLIUM_STATE_TRACKERS_DIRS"
Dan Nicholson44d99142007-12-05 18:47:01 -0800784 ;;
Chia-I Wu9e7a4142011-06-26 13:24:32 +0900785xyesno)
786 # DRI-based GLX
Kristian Høgsberg6e8897f2010-02-09 09:58:36 -0500787 SRC_DIRS="$SRC_DIRS glx"
Chia-I Wu9e7a4142011-06-26 13:24:32 +0900788 ;;
789esac
790
791if test "x$enable_dri" = xyes; then
792 DRIVER_DIRS="$DRIVER_DIRS dri"
793
Jakob Bornecrantz23a915e2010-06-23 03:31:18 +0200794 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/xlib sw/dri"
Marek Olšák440d71d2011-06-14 05:38:58 +0200795 GALLIUM_STATE_TRACKERS_DIRS="dri $GALLIUM_STATE_TRACKERS_DIRS"
796 HAVE_ST_DRI="yes"
Chia-I Wu9e7a4142011-06-26 13:24:32 +0900797fi
798
799if test "x$enable_osmesa" = xyes; then
800 # the empty space matters for osmesa... (see src/mesa/Makefile)
801 if test -n "$DRIVER_DIRS"; then
802 DRIVER_DIRS="$DRIVER_DIRS osmesa"
803 else
804 DRIVER_DIRS="osmesa"
805 fi
806fi
807
Dan Nicholson297e16c2008-05-05 15:42:53 -0700808AC_SUBST([SRC_DIRS])
809AC_SUBST([GLU_DIRS])
810AC_SUBST([DRIVER_DIRS])
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100811AC_SUBST([GALLIUM_DIRS])
Keith Whitwell51bff092010-03-11 14:43:00 +0000812AC_SUBST([GALLIUM_TARGET_DIRS])
Jerome Glisse14f79d42008-12-18 13:36:07 +0100813AC_SUBST([GALLIUM_WINSYS_DIRS])
Jakob Bornecrantzd67bd602009-02-20 11:03:18 +0000814AC_SUBST([GALLIUM_DRIVERS_DIRS])
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +0100815AC_SUBST([GALLIUM_STATE_TRACKERS_DIRS])
Dave Airlie81fe1982010-04-22 14:59:29 +1000816AC_SUBST([MESA_LLVM])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700817
Chia-I Wu94ec5fd2011-06-27 09:19:02 +0900818# Check for libdrm
819PKG_CHECK_MODULES([LIBDRM], [libdrm >= $LIBDRM_REQUIRED],
820 [have_libdrm=yes], [have_libdrm=no])
821
822if test "x$enable_dri" = xyes; then
823 # DRI must be shared, I think
824 if test "$enable_static" = yes; then
825 AC_MSG_ERROR([Can't use static libraries for DRI drivers])
826 fi
827
Chia-I Wu81239342011-07-02 09:49:17 +0900828 # not a hard requirement as swrast does not depend on it
829 if test "x$have_libdrm" = xyes; then
830 DRI_PC_REQ_PRIV="libdrm >= $LIBDRM_REQUIRED"
Chia-I Wu94ec5fd2011-06-27 09:19:02 +0900831 fi
Chia-I Wu94ec5fd2011-06-27 09:19:02 +0900832fi
833
Dan Nicholsondca1b792007-10-23 09:25:58 -0700834dnl
Dan Nicholsone6a06092008-05-05 15:16:22 -0700835dnl Find out if X is available. The variable have_x is set if libX11 is
Dan Nicholson99803a42008-07-01 09:03:15 -0700836dnl found to mimic AC_PATH_XTRA.
Dan Nicholsondca1b792007-10-23 09:25:58 -0700837dnl
838if test -n "$PKG_CONFIG"; then
839 AC_MSG_CHECKING([pkg-config files for X11 are available])
Dan Nicholsone6a06092008-05-05 15:16:22 -0700840 PKG_CHECK_EXISTS([x11],[
Dan Nicholsondca1b792007-10-23 09:25:58 -0700841 x11_pkgconfig=yes
842 have_x=yes
Dan Nicholsone6a06092008-05-05 15:16:22 -0700843 ],[
Dan Nicholsondca1b792007-10-23 09:25:58 -0700844 x11_pkgconfig=no
Dan Nicholsone6a06092008-05-05 15:16:22 -0700845 ])
846 AC_MSG_RESULT([$x11_pkgconfig])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700847else
848 x11_pkgconfig=no
849fi
850dnl Use the autoconf macro if no pkg-config files
Jeff Smith8d86d392010-03-12 18:55:09 -0600851if test "$x11_pkgconfig" = yes; then
Dan Nicholsone725ef12010-03-15 20:53:56 -0700852 PKG_CHECK_MODULES([X11], [x11])
Jeff Smith8d86d392010-03-12 18:55:09 -0600853else
Dan Nicholsondca1b792007-10-23 09:25:58 -0700854 AC_PATH_XTRA
Dan Nicholsone725ef12010-03-15 20:53:56 -0700855 test -z "$X11_CFLAGS" && X11_CFLAGS="$X_CFLAGS"
856 test -z "$X11_LIBS" && X11_LIBS="$X_LIBS -lX11"
857 AC_SUBST([X11_CFLAGS])
858 AC_SUBST([X11_LIBS])
Dan Nicholsondca1b792007-10-23 09:25:58 -0700859fi
860
Dan Nicholson99803a42008-07-01 09:03:15 -0700861dnl Try to tell the user that the --x-* options are only used when
862dnl pkg-config is not available. This must be right after AC_PATH_XTRA.
863m4_divert_once([HELP_BEGIN],
864[These options are only used when the X libraries cannot be found by the
865pkg-config utility.])
866
Dan Nicholson44d99142007-12-05 18:47:01 -0800867dnl We need X for xlib and dri, so bomb now if it's not found
Chia-I Wu9e7a4142011-06-26 13:24:32 +0900868if test "x$enable_glx" = xyes -a "x$no_x" = xyes; then
869 AC_MSG_ERROR([X11 development libraries needed for GLX])
870fi
Dan Nicholsondca1b792007-10-23 09:25:58 -0700871
Dan Nicholson2d709fe2008-05-06 10:51:49 -0700872dnl XCB - this is only used for GLX right now
873AC_ARG_ENABLE([xcb],
874 [AS_HELP_STRING([--enable-xcb],
875 [use XCB for GLX @<:@default=disabled@:>@])],
876 [enable_xcb="$enableval"],
877 [enable_xcb=no])
878if test "x$enable_xcb" = xyes; then
879 DEFINES="$DEFINES -DUSE_XCB"
880else
881 enable_xcb=no
882fi
883
Samuel Thibault75856172011-03-14 22:08:21 +0000884dnl Direct rendering or just indirect rendering
noblede7d18ed2011-03-14 22:08:22 +0000885case "$host_os" in
886gnu*)
887 dnl Disable by default on GNU/Hurd
888 driglx_direct_default="no"
889 ;;
Jon TURNEYc6e33ca2011-03-14 22:08:23 +0000890cygwin*)
891 dnl Disable by default on cygwin
892 driglx_direct_default="no"
893 ;;
noblede7d18ed2011-03-14 22:08:22 +0000894*)
895 driglx_direct_default="yes"
896 ;;
897esac
Samuel Thibault75856172011-03-14 22:08:21 +0000898AC_ARG_ENABLE([driglx-direct],
899 [AS_HELP_STRING([--disable-driglx-direct],
900 [enable direct rendering in GLX and EGL for DRI \
noblede7d18ed2011-03-14 22:08:22 +0000901 @<:@default=auto@:>@])],
Samuel Thibault75856172011-03-14 22:08:21 +0000902 [driglx_direct="$enableval"],
noblede7d18ed2011-03-14 22:08:22 +0000903 [driglx_direct="$driglx_direct_default"])
Samuel Thibault75856172011-03-14 22:08:21 +0000904
Dan Nicholson44d99142007-12-05 18:47:01 -0800905dnl
906dnl libGL configuration per driver
907dnl
Chia-I Wu9e7a4142011-06-26 13:24:32 +0900908case "x$enable_glx$enable_xlib_glx" in
909xyesyes)
910 # Xlib-based GLX
Dan Nicholson44d99142007-12-05 18:47:01 -0800911 if test "$x11_pkgconfig" = yes; then
Dan Nicholson297e16c2008-05-05 15:42:53 -0700912 PKG_CHECK_MODULES([XLIBGL], [x11 xext])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800913 GL_PC_REQ_PRIV="x11 xext"
Dan Nicholsona1307182007-12-12 17:49:49 -0800914 X11_INCLUDES="$X11_INCLUDES $XLIBGL_CFLAGS"
915 GL_LIB_DEPS="$XLIBGL_LIBS"
Dan Nicholson44d99142007-12-05 18:47:01 -0800916 else
917 # should check these...
918 X11_INCLUDES="$X11_INCLUDES $X_CFLAGS"
919 GL_LIB_DEPS="$X_LIBS -lX11 -lXext"
Dan Nicholson71e208b2008-11-24 11:01:57 -0800920 GL_PC_LIB_PRIV="$GL_LIB_DEPS"
921 GL_PC_CFLAGS="$X11_INCLUDES"
Dan Nicholson44d99142007-12-05 18:47:01 -0800922 fi
Kenneth Graunked1d812052011-01-16 16:01:54 -0800923 GL_LIB_DEPS="$GL_LIB_DEPS $SELINUX_LIBS -lm -lpthread"
924 GL_PC_LIB_PRIV="$GL_PC_LIB_PRIV $SELINUX_LIBS -lm -lpthread"
Dan Nicholson88586332007-11-15 08:59:57 -0800925
926 # if static, move the external libraries to the programs
927 # and empty the libraries for libGL
928 if test "$enable_static" = yes; then
929 APP_LIB_DEPS="$APP_LIB_DEPS $GL_LIB_DEPS"
930 GL_LIB_DEPS=""
931 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800932 ;;
Chia-I Wu9e7a4142011-06-26 13:24:32 +0900933xyesno)
934 # DRI-based GLX
Jesse Barnesf2f83d92010-01-11 17:28:10 -0500935 PKG_CHECK_MODULES([GLPROTO], [glproto >= $GLPROTO_REQUIRED])
Samuel Thibault75856172011-03-14 22:08:21 +0000936 GL_PC_REQ_PRIV="glproto >= $GLPROTO_REQUIRED"
Samuel Thibault75856172011-03-14 22:08:21 +0000937 if test x"$driglx_direct" = xyes; then
Chia-I Wu94ec5fd2011-06-27 09:19:02 +0900938 if test "x$have_libdrm" != xyes; then
939 AC_MSG_ERROR([Direct rendering requires libdrm >= $LIBDRM_REQUIRED])
940 fi
Samuel Thibault75856172011-03-14 22:08:21 +0000941 PKG_CHECK_MODULES([DRI2PROTO], [dri2proto >= $DRI2PROTO_REQUIRED])
942 GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV libdrm >= $LIBDRM_REQUIRED dri2proto >= $DRI2PROTO_REQUIRED"
Samuel Thibault75856172011-03-14 22:08:21 +0000943 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800944
945 # find the DRI deps for libGL
946 if test "$x11_pkgconfig" = yes; then
Jon TURNEY2b9dac32010-04-21 12:58:54 +0100947 dri_modules="x11 xext xdamage xfixes"
948
949 # add xf86vidmode if available
950 PKG_CHECK_MODULES([XF86VIDMODE], [xxf86vm], HAVE_XF86VIDMODE=yes, HAVE_XF86VIDMODE=no)
951 if test "$HAVE_XF86VIDMODE" = yes ; then
952 dri_modules="$dri_modules xxf86vm"
953 fi
954
Dan Nicholson2d709fe2008-05-06 10:51:49 -0700955 # add xcb modules if necessary
Dan Nicholson2d709fe2008-05-06 10:51:49 -0700956 if test "$enable_xcb" = yes; then
957 dri_modules="$dri_modules x11-xcb xcb-glx"
958 fi
959
960 PKG_CHECK_MODULES([DRIGL], [$dri_modules])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800961 GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV $dri_modules"
Dan Nicholson44d99142007-12-05 18:47:01 -0800962 X11_INCLUDES="$X11_INCLUDES $DRIGL_CFLAGS"
963 GL_LIB_DEPS="$DRIGL_LIBS"
964 else
965 # should check these...
966 X11_INCLUDES="$X11_INCLUDES $X_CFLAGS"
Alan Hourihane64799222011-06-28 17:40:24 +0100967 if test "x$HAVE_XF86VIDMODE" == xyes; then
968 GL_LIB_DEPS="$X_LIBS -lX11 -lXext -lXxf86vm -lXdamage -lXfixes"
969 else
970 GL_LIB_DEPS="$X_LIBS -lX11 -lXext -lXdamage -lXfixes"
971 fi
Dan Nicholson71e208b2008-11-24 11:01:57 -0800972 GL_PC_LIB_PRIV="$GL_LIB_DEPS"
973 GL_PC_CFLAGS="$X11_INCLUDES"
Dan Nicholson2d709fe2008-05-06 10:51:49 -0700974
975 # XCB can only be used from pkg-config
976 if test "$enable_xcb" = yes; then
977 PKG_CHECK_MODULES([XCB],[x11-xcb xcb-glx])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800978 GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV x11-xcb xcb-glx"
Dan Nicholson2d709fe2008-05-06 10:51:49 -0700979 X11_INCLUDES="$X11_INCLUDES $XCB_CFLAGS"
980 GL_LIB_DEPS="$GL_LIB_DEPS $XCB_LIBS"
981 fi
Dan Nicholson44d99142007-12-05 18:47:01 -0800982 fi
983
984 # need DRM libs, -lpthread, etc.
Alan Coopersmith3cf6e622009-03-23 16:51:54 -0700985 GL_LIB_DEPS="$GL_LIB_DEPS $LIBDRM_LIBS -lm -lpthread $DLOPEN_LIBS"
986 GL_PC_LIB_PRIV="-lm -lpthread $DLOPEN_LIBS"
Dan Nicholson979ff512007-12-05 18:47:01 -0800987 ;;
Dan Nicholson44d99142007-12-05 18:47:01 -0800988esac
Chia-I Wu9e7a4142011-06-26 13:24:32 +0900989
Chia-I Wu9e7a4142011-06-26 13:24:32 +0900990GLESv1_CM_LIB_DEPS="$LIBDRM_LIBS -lm -lpthread $DLOPEN_LIBS"
991GLESv1_CM_PC_LIB_PRIV="-lm -lpthread $DLOPEN_LIBS"
992GLESv2_LIB_DEPS="$LIBDRM_LIBS -lm -lpthread $DLOPEN_LIBS"
993GLESv2_PC_LIB_PRIV="-lm -lpthread $DLOPEN_LIBS"
994
Dan Nicholson297e16c2008-05-05 15:42:53 -0700995AC_SUBST([GL_LIB_DEPS])
Dan Nicholson71e208b2008-11-24 11:01:57 -0800996AC_SUBST([GL_PC_REQ_PRIV])
997AC_SUBST([GL_PC_LIB_PRIV])
998AC_SUBST([GL_PC_CFLAGS])
999AC_SUBST([DRI_PC_REQ_PRIV])
Li Pengc33c1912010-07-30 12:26:15 +08001000AC_SUBST([GLESv1_CM_LIB_DEPS])
Kristian Høgsberg9e4f2da2010-05-04 14:13:11 -04001001AC_SUBST([GLESv1_CM_PC_LIB_PRIV])
Kristian Høgsberg9339c122010-03-05 19:01:43 -05001002AC_SUBST([GLESv2_LIB_DEPS])
Kristian Høgsberg9e4f2da2010-05-04 14:13:11 -04001003AC_SUBST([GLESv2_PC_LIB_PRIV])
1004
Chia-I Wu9767d3b2010-12-26 18:02:59 +08001005GLAPI_LIB_DEPS="-lpthread"
1006AC_SUBST([GLAPI_LIB_DEPS])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001007
Christopher James Halse Rogersd1e28b22011-02-03 11:19:32 +11001008
1009dnl Setup default DRI CFLAGS
1010DRI_CFLAGS='$(CFLAGS)'
1011DRI_CXXFLAGS='$(CXXFLAGS)'
1012DRI_LIB_DEPS='$(TOP)/src/mesa/libmesa.a'
1013MESA_MODULES='$(TOP)/src/mesa/libmesa.a'
1014
1015AC_ARG_ENABLE([shared-dricore],
1016 [AS_HELP_STRING([--enable-shared-dricore],
1017 [link DRI modules with shared core DRI routines @<:@default=disabled@:>@])],
1018 [enable_dricore="$enableval"],
1019 [enable_dricore=no])
Chia-I Wu9e7a4142011-06-26 13:24:32 +09001020if test "x$enable_dri" = xyes ; then
Christopher James Halse Rogersd1e28b22011-02-03 11:19:32 +11001021 if test "$enable_dricore" = yes ; then
1022 if test "$GCC$GXX" != yesyes ; then
1023 AC_MSG_WARN([Shared dricore requires GCC-compatible rpath handling. Disabling shared dricore])
1024 enable_dricore=no
1025 else
1026 DRICORE_GLSL_LIBS='$(TOP)/$(LIB_DIR)/libglsl.so'
1027 DRICORE_LIBS='$(TOP)/$(LIB_DIR)/libdricore.so'
1028 DRICORE_LIB_DEPS='-L$(TOP)/$(LIB_DIR) -Wl,-R$(DRI_DRIVER_INSTALL_DIR) -lglsl'
1029 DRI_LIB_DEPS='-L$(TOP)/$(LIB_DIR) -Wl,-R$(DRI_DRIVER_INSTALL_DIR) -ldricore -lglsl'
1030 DRI_CFLAGS='$(CFLAGS_NOVISIBILITY) -DUSE_DRICORE'
1031 DRI_CXXFLAGS='$(CXXFLAGS_NOVISIBILITY) -DUSE_DRICORE'
1032 MESA_MODULES='$(DRICORE_LIBS) $(DRICORE_GLSL_LIBS)'
1033 fi
1034 fi
1035fi
1036AC_SUBST([DRICORE_LIBS])
1037AC_SUBST([DRICORE_GLSL_LIBS])
1038AC_SUBST([DRICORE_LIB_DEPS])
1039AC_SUBST([DRI_CXXFLAGS])
1040AC_SUBST([DRI_CFLAGS])
1041AC_SUBST([MESA_MODULES])
1042
Jon TURNEY2b9dac32010-04-21 12:58:54 +01001043AC_SUBST([HAVE_XF86VIDMODE])
1044
Marek Olšáka1aec2e2010-09-26 17:52:58 +02001045PKG_CHECK_MODULES([LIBDRM_RADEON],
Marek Olšákec96b0e2011-02-06 15:42:55 +01001046 [libdrm_radeon >= $LIBDRM_RADEON_REQUIRED],
Marek Olšáka1aec2e2010-09-26 17:52:58 +02001047 HAVE_LIBDRM_RADEON=yes,
1048 HAVE_LIBDRM_RADEON=no)
1049
Dan Nicholsondca1b792007-10-23 09:25:58 -07001050dnl
Chia-I Wu5029ea42011-06-27 13:06:39 +09001051dnl More GLX setup
Dan Nicholsondca1b792007-10-23 09:25:58 -07001052dnl
Chia-I Wu5029ea42011-06-27 13:06:39 +09001053case "x$enable_glx$enable_xlib_glx" in
1054xyesyes)
Dan Nicholsondca1b792007-10-23 09:25:58 -07001055 DEFINES="$DEFINES -DUSE_XSHM"
Chia-I Wu5029ea42011-06-27 13:06:39 +09001056 ;;
1057xyesno)
1058 DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING"
1059 if test "x$driglx_direct" = xyes; then
1060 DEFINES="$DEFINES -DGLX_DIRECT_RENDERING"
1061 fi
1062 ;;
1063esac
Dan Nicholsondca1b792007-10-23 09:25:58 -07001064
1065dnl
Tom Fogal31351dc2010-12-05 17:58:32 -07001066dnl TLS detection
Dan Nicholson44d99142007-12-05 18:47:01 -08001067dnl
Tom Fogal31351dc2010-12-05 17:58:32 -07001068
Dan Nicholson297e16c2008-05-05 15:42:53 -07001069AC_ARG_ENABLE([glx-tls],
Dan Nicholson44d99142007-12-05 18:47:01 -08001070 [AS_HELP_STRING([--enable-glx-tls],
Dan Nicholson79ad4582007-12-07 19:11:01 -08001071 [enable TLS support in GLX @<:@default=disabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -07001072 [GLX_USE_TLS="$enableval"],
1073 [GLX_USE_TLS=no])
Tom Fogal31351dc2010-12-05 17:58:32 -07001074AC_SUBST(GLX_TLS, ${GLX_USE_TLS})
1075
Tom Fogal44842972011-02-21 22:32:18 -07001076AS_IF([test "x$GLX_USE_TLS" = xyes],
1077 [DEFINES="${DEFINES} -DGLX_USE_TLS -DPTHREADS"])
1078
Tom Fogal31351dc2010-12-05 17:58:32 -07001079dnl
1080dnl More DRI setup
1081dnl
Dan Nicholson44d99142007-12-05 18:47:01 -08001082dnl Directory for DRI drivers
Dan Nicholson297e16c2008-05-05 15:42:53 -07001083AC_ARG_WITH([dri-driverdir],
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -08001084 [AS_HELP_STRING([--with-dri-driverdir=DIR],
Dan Nicholson5dbbde52008-05-06 06:21:41 -07001085 [directory for the DRI drivers @<:@${libdir}/dri@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -07001086 [DRI_DRIVER_INSTALL_DIR="$withval"],
Dan Nicholson5dbbde52008-05-06 06:21:41 -07001087 [DRI_DRIVER_INSTALL_DIR='${libdir}/dri'])
Dan Nicholson297e16c2008-05-05 15:42:53 -07001088AC_SUBST([DRI_DRIVER_INSTALL_DIR])
Chow Loong Jin35506de2009-10-28 14:34:14 +08001089dnl Extra search path for DRI drivers
1090AC_ARG_WITH([dri-searchpath],
1091 [AS_HELP_STRING([--with-dri-searchpath=DIRS...],
1092 [semicolon delimited DRI driver search directories @<:@${libdir}/dri@:>@])],
1093 [DRI_DRIVER_SEARCH_DIR="$withval"],
1094 [DRI_DRIVER_SEARCH_DIR='${DRI_DRIVER_INSTALL_DIR}'])
1095AC_SUBST([DRI_DRIVER_SEARCH_DIR])
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -08001096dnl Which drivers to build - default is chosen by platform
Dan Nicholson297e16c2008-05-05 15:42:53 -07001097AC_ARG_WITH([dri-drivers],
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -08001098 [AS_HELP_STRING([--with-dri-drivers@<:@=DIRS...@:>@],
Dan Nicholson5cae1b72008-06-30 10:28:02 -07001099 [comma delimited DRI drivers list, e.g.
Michel Dänzercade0712009-07-10 14:49:46 +02001100 "swrast,i965,radeon" @<:@default=auto@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -07001101 [with_dri_drivers="$withval"],
1102 [with_dri_drivers=yes])
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -08001103if test "x$with_dri_drivers" = x; then
1104 with_dri_drivers=no
1105fi
1106
1107dnl If $with_dri_drivers is yes, directories will be added through
1108dnl platform checks
1109DRI_DIRS=""
1110case "$with_dri_drivers" in
Florent Thoumieb5095ab2008-07-28 14:44:43 +01001111no) ;;
1112yes)
Chia-I Wu9e7a4142011-06-26 13:24:32 +09001113 # classic DRI drivers require FEATURE_GL to build
1114 if test "x$enable_opengl" = xyes; then
1115 DRI_DIRS="yes"
1116 fi
Florent Thoumieb5095ab2008-07-28 14:44:43 +01001117 ;;
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -08001118*)
1119 # verify the requested driver directories exist
Dan Nicholsone6e4f252008-07-06 14:17:39 -07001120 dri_drivers=`IFS=', '; echo $with_dri_drivers`
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -08001121 for driver in $dri_drivers; do
1122 test -d "$srcdir/src/mesa/drivers/dri/$driver" || \
1123 AC_MSG_ERROR([DRI driver directory '$driver' doesn't exist])
1124 done
1125 DRI_DIRS="$dri_drivers"
Chia-I Wu9e7a4142011-06-26 13:24:32 +09001126 if test -n "$DRI_DIRS" -a "x$enable_opengl" != xyes; then
1127 AC_MSG_ERROR([--with-dri-drivers requires OpenGL])
1128 fi
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -08001129 ;;
1130esac
1131
Dan Nicholson44d99142007-12-05 18:47:01 -08001132dnl Set DRI_DIRS, DEFINES and LIB_DEPS
Chia-I Wu9e7a4142011-06-26 13:24:32 +09001133if test "x$enable_dri" = xyes; then
Dan Nicholson44d99142007-12-05 18:47:01 -08001134 # Platform specific settings and drivers to build
1135 case "$host_os" in
1136 linux*)
1137 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
Chia-I Wu5029ea42011-06-27 13:06:39 +09001138 DEFINES="$DEFINES -DHAVE_ALIAS"
Dan Nicholson44d99142007-12-05 18:47:01 -08001139
1140 case "$host_cpu" in
Dan Nicholson44d99142007-12-05 18:47:01 -08001141 x86_64)
Kristian Høgsberg79aeafd2010-02-25 16:12:58 -05001142 # sis is missing because they have not be converted to use
1143 # the new interface. i810 are missing because there is no
1144 # x86-64 system where they could *ever* be used.
Florent Thoumieb5095ab2008-07-28 14:44:43 +01001145 if test "x$DRI_DIRS" = "xyes"; then
Johannes Obermayr873379a2011-06-02 17:15:44 -06001146 DRI_DIRS="i915 i965 mach64 mga nouveau r128 r200 r300 r600 \
1147 radeon savage tdfx unichrome swrast"
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -08001148 fi
Dan Nicholson44d99142007-12-05 18:47:01 -08001149 ;;
1150 powerpc*)
Dan Nicholsona76e2452007-12-07 11:25:08 -08001151 # Build only the drivers for cards that exist on PowerPC.
1152 # At some point MGA will be added, but not yet.
Florent Thoumieb5095ab2008-07-28 14:44:43 +01001153 if test "x$DRI_DIRS" = "xyes"; then
Alex Deucher4138bdb2009-04-08 15:16:35 -04001154 DRI_DIRS="mach64 r128 r200 r300 r600 radeon tdfx swrast"
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -08001155 fi
Dan Nicholson44d99142007-12-05 18:47:01 -08001156 ;;
Dave Airlie2b0e75e2008-06-12 12:06:50 +10001157 sparc*)
1158 # Build only the drivers for cards that exist on sparc`
Florent Thoumieb5095ab2008-07-28 14:44:43 +01001159 if test "x$DRI_DIRS" = "xyes"; then
Kristian Høgsberg79aeafd2010-02-25 16:12:58 -05001160 DRI_DIRS="mach64 r128 r200 r300 r600 radeon swrast"
Dave Airlie2b0e75e2008-06-12 12:06:50 +10001161 fi
1162 ;;
Dan Nicholson44d99142007-12-05 18:47:01 -08001163 esac
1164 ;;
Pierre Allegraud8fd8de32011-01-06 07:58:57 -07001165 freebsd* | dragonfly* | *netbsd*)
Dan Nicholson44d99142007-12-05 18:47:01 -08001166 DEFINES="$DEFINES -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1"
1167 DEFINES="$DEFINES -DIN_DRI_DRIVER -DHAVE_ALIAS"
Dan Nicholson44d99142007-12-05 18:47:01 -08001168
Florent Thoumieb5095ab2008-07-28 14:44:43 +01001169 if test "x$DRI_DIRS" = "xyes"; then
Johannes Obermayr873379a2011-06-02 17:15:44 -06001170 DRI_DIRS="i810 i915 i965 mach64 mga nouveau r128 r200 r300 r600 \
1171 radeon tdfx unichrome savage sis swrast"
Dan Nicholsonaf3d2f22007-11-15 08:59:57 -08001172 fi
Dan Nicholson44d99142007-12-05 18:47:01 -08001173 ;;
Samuel Thibaultd18dd6a2009-04-23 05:43:22 -07001174 gnu*)
1175 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
Chia-I Wu5029ea42011-06-27 13:06:39 +09001176 DEFINES="$DEFINES -DHAVE_ALIAS"
Samuel Thibaultd18dd6a2009-04-23 05:43:22 -07001177 ;;
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -07001178 solaris*)
1179 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -07001180 ;;
Jon TURNEYc6e33ca2011-03-14 22:08:23 +00001181 cygwin*)
1182 DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
Jon TURNEYc6e33ca2011-03-14 22:08:23 +00001183 if test "x$DRI_DIRS" = "xyes"; then
1184 DRI_DIRS="swrast"
1185 fi
1186 ;;
Dan Nicholson44d99142007-12-05 18:47:01 -08001187 esac
Dan Nicholson112a40e2008-02-21 10:17:19 -08001188
1189 # default drivers
Florent Thoumieb5095ab2008-07-28 14:44:43 +01001190 if test "x$DRI_DIRS" = "xyes"; then
Johannes Obermayr873379a2011-06-02 17:15:44 -06001191 DRI_DIRS="i810 i915 i965 mach64 mga nouveau r128 r200 r300 r600 radeon \
Kristian Høgsberg79aeafd2010-02-25 16:12:58 -05001192 savage sis tdfx unichrome swrast"
Dan Nicholson112a40e2008-02-21 10:17:19 -08001193 fi
1194
Dan Nicholson44d99142007-12-05 18:47:01 -08001195 DRI_DIRS=`echo "$DRI_DIRS" | $SED 's/ */ /g'`
1196
1197 # Check for expat
Chia-I Wu9e7a4142011-06-26 13:24:32 +09001198 if test "x$enable_dri" = xyes; then
Chia-I Wube5f34a2010-10-27 16:14:27 +08001199 EXPAT_INCLUDES=""
1200 EXPAT_LIB=-lexpat
1201 AC_ARG_WITH([expat],
1202 [AS_HELP_STRING([--with-expat=DIR],
1203 [expat install directory])],[
1204 EXPAT_INCLUDES="-I$withval/include"
1205 CPPFLAGS="$CPPFLAGS $EXPAT_INCLUDES"
1206 LDFLAGS="$LDFLAGS -L$withval/$LIB_DIR"
1207 EXPAT_LIB="-L$withval/$LIB_DIR -lexpat"
1208 ])
1209 AC_CHECK_HEADER([expat.h],[],[AC_MSG_ERROR([Expat required for DRI.])])
1210 AC_CHECK_LIB([expat],[XML_ParserCreate],[],
1211 [AC_MSG_ERROR([Expat required for DRI.])])
1212 fi
Dan Nicholson44d99142007-12-05 18:47:01 -08001213
Chia-I Wu81239342011-07-02 09:49:17 +09001214 # libdrm is required for all except swrast
1215 if test -n "$DRI_DIRS" -a x"$DRI_DIRS" != xswrast; then
1216 if test "x$have_libdrm" != xyes; then
1217 AC_MSG_ERROR([DRI drivers requires libdrm >= $LIBDRM_REQUIRED])
1218 fi
1219 fi
1220
Christopher James Halse Rogersd1e28b22011-02-03 11:19:32 +11001221 # put all the necessary libs together, including possibly libdricore
1222 DRI_LIB_DEPS="$DRI_LIB_DEPS $SELINUX_LIBS $LIBDRM_LIBS $EXPAT_LIB -lm -lpthread $DLOPEN_LIBS"
Dan Nicholson44d99142007-12-05 18:47:01 -08001223fi
Dan Nicholson297e16c2008-05-05 15:42:53 -07001224AC_SUBST([DRI_DIRS])
1225AC_SUBST([EXPAT_INCLUDES])
1226AC_SUBST([DRI_LIB_DEPS])
Dan Nicholson44d99142007-12-05 18:47:01 -08001227
Kristian Høgsberg8616cec2010-01-01 17:03:33 -05001228case $DRI_DIRS in
1229*i915*|*i965*)
Tormod Volden903185b2011-01-25 13:25:18 -08001230 PKG_CHECK_MODULES([INTEL], [libdrm_intel >= $LIBDRM_INTEL_REQUIRED])
Kristian Høgsberg8616cec2010-01-01 17:03:33 -05001231 ;;
Kristian Høgsberg27fe7a72010-01-07 10:29:29 -05001232esac
Kristian Høgsberg8616cec2010-01-01 17:03:33 -05001233
Kristian Høgsberg27fe7a72010-01-07 10:29:29 -05001234case $DRI_DIRS in
Johannes Obermayr873379a2011-06-02 17:15:44 -06001235*nouveau*)
1236 PKG_CHECK_MODULES([NOUVEAU], [libdrm_nouveau >= $LIBDRM_NOUVEAU_REQUIRED])
1237 ;;
1238esac
1239
1240case $DRI_DIRS in
Kristian Høgsberg8616cec2010-01-01 17:03:33 -05001241*radeon*|*r200*|*r300*|*r600*)
Marek Olšáka1aec2e2010-09-26 17:52:58 +02001242 if test "x$HAVE_LIBDRM_RADEON" = xyes; then
Kristian Høgsberg8616cec2010-01-01 17:03:33 -05001243 RADEON_CFLAGS="-DHAVE_LIBDRM_RADEON=1 $LIBDRM_RADEON_CFLAGS"
1244 RADEON_LDFLAGS=$LIBDRM_RADEON_LIBS
1245 fi
1246 ;;
1247esac
1248AC_SUBST([RADEON_CFLAGS])
1249AC_SUBST([RADEON_LDFLAGS])
1250
1251
Dan Nicholson44d99142007-12-05 18:47:01 -08001252dnl
Dan Nicholsondca1b792007-10-23 09:25:58 -07001253dnl OSMesa configuration
1254dnl
Dan Nicholson979ff512007-12-05 18:47:01 -08001255
Dan Nicholson6689f9e2007-12-05 21:04:15 -08001256dnl Configure the channel bits for OSMesa (libOSMesa, libOSMesa16, ...)
Dan Nicholson297e16c2008-05-05 15:42:53 -07001257AC_ARG_WITH([osmesa-bits],
Dan Nicholson6689f9e2007-12-05 21:04:15 -08001258 [AS_HELP_STRING([--with-osmesa-bits=BITS],
1259 [OSMesa channel bits and library name: 8, 16, 32 @<:@default=8@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -07001260 [osmesa_bits="$withval"],
1261 [osmesa_bits=8])
Chia-I Wu9e7a4142011-06-26 13:24:32 +09001262if test "x$osmesa_bits" != x8; then
1263 if test "x$enable_dri" = xyes -o "x$enable_glx" = xyes; then
1264 AC_MSG_WARN([Ignoring OSMesa channel bits because of non-OSMesa driver])
1265 osmesa_bits=8
1266 fi
Dan Nicholson6689f9e2007-12-05 21:04:15 -08001267fi
1268case "x$osmesa_bits" in
1269x8)
1270 OSMESA_LIB=OSMesa
1271 ;;
1272x16|x32)
1273 OSMESA_LIB="OSMesa$osmesa_bits"
1274 DEFINES="$DEFINES -DCHAN_BITS=$osmesa_bits -DDEFAULT_SOFTWARE_DEPTH_BITS=31"
1275 ;;
1276*)
1277 AC_MSG_ERROR([OSMesa bits '$osmesa_bits' is not a valid option])
1278 ;;
1279esac
Dan Nicholson297e16c2008-05-05 15:42:53 -07001280AC_SUBST([OSMESA_LIB])
Dan Nicholson6689f9e2007-12-05 21:04:15 -08001281
Chia-I Wu9e7a4142011-06-26 13:24:32 +09001282if test "x$enable_osmesa" = xyes; then
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -07001283 # only link libraries with osmesa if shared
Dan Nicholson88586332007-11-15 08:59:57 -08001284 if test "$enable_static" = no; then
Kenneth Graunked1d812052011-01-16 16:01:54 -08001285 OSMESA_LIB_DEPS="-lm -lpthread $SELINUX_LIBS $DLOPEN_LIBS"
Dan Nicholson88586332007-11-15 08:59:57 -08001286 else
1287 OSMESA_LIB_DEPS=""
1288 fi
Dan Nicholson979ff512007-12-05 18:47:01 -08001289 OSMESA_MESA_DEPS=""
Kenneth Graunked1d812052011-01-16 16:01:54 -08001290 OSMESA_PC_LIB_PRIV="-lm -lpthread $SELINUX_LIBS $DLOPEN_LIBS"
Chia-I Wu9e7a4142011-06-26 13:24:32 +09001291fi
Dan Nicholson297e16c2008-05-05 15:42:53 -07001292AC_SUBST([OSMESA_LIB_DEPS])
1293AC_SUBST([OSMESA_MESA_DEPS])
Dan Nicholson8be02fc2008-12-14 09:35:29 -08001294AC_SUBST([OSMESA_PC_REQ])
1295AC_SUBST([OSMESA_PC_LIB_PRIV])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001296
1297dnl
Dan Nicholson53b37342009-02-25 17:45:34 -08001298dnl EGL configuration
1299dnl
Marek Olšák440d71d2011-06-14 05:38:58 +02001300EGL_CLIENT_APIS=""
1301
Dan Nicholson66f97862009-04-29 12:11:43 -07001302if test "x$enable_egl" = xyes; then
1303 SRC_DIRS="$SRC_DIRS egl"
Tapani Pälli2758e652011-05-16 16:56:43 +03001304 EGL_LIB_DEPS="$DLOPEN_LIBS $SELINUX_LIBS -lpthread"
Chia-I Wud4c1ee02009-12-21 11:13:18 +08001305 EGL_DRIVERS_DIRS=""
Marek Olšákad50abba2011-06-14 05:14:27 +02001306
Chia-I Wu2eb7a2f2010-02-05 10:46:11 +08001307 if test "$enable_static" != yes; then
Chia-I Wud4c1ee02009-12-21 11:13:18 +08001308 # build egl_glx when libGL is built
Chia-I Wu9e7a4142011-06-26 13:24:32 +09001309 if test "x$enable_glx" = xyes; then
Chia-I Wu2eb7a2f2010-02-05 10:46:11 +08001310 EGL_DRIVERS_DIRS="glx"
1311 fi
1312
Benjamin Franzke184bb092011-04-30 11:18:23 +02001313 PKG_CHECK_MODULES([LIBUDEV], [libudev > 150],
1314 [have_libudev=yes],[have_libudev=no])
Benjamin Franzkea7cd65f2011-05-31 11:14:46 +02001315 if test "$have_libudev" = yes; then
1316 DEFINES="$DEFINES -DHAVE_LIBUDEV"
1317 fi
Chia-I Wu9e7a4142011-06-26 13:24:32 +09001318 if test "x$enable_dri" = xyes; then
Chia-I Wu39ae9652010-07-16 19:48:52 +08001319 # build egl_dri2 when xcb-dri2 is available
1320 PKG_CHECK_MODULES([XCB_DRI2], [x11-xcb xcb-dri2 xcb-xfixes],
1321 [have_xcb_dri2=yes],[have_xcb_dri2=no])
Chia-I Wu39ae9652010-07-16 19:48:52 +08001322
1323 if test "$have_xcb_dri2" = yes; then
1324 EGL_DRIVER_DRI2=dri2
1325 DEFINES="$DEFINES -DHAVE_XCB_DRI2"
Benjamin Franzke4ca075a2011-03-02 21:23:04 +01001326 # workaround a bug in xcb-dri2 generated by xcb-proto 1.6
1327 AC_CHECK_LIB(xcb-dri2, xcb_dri2_connect_alignment_pad, [],
1328 [DEFINES="$DEFINES -DXCB_DRI2_CONNECT_DEVICE_NAME_BROKEN"])
Chia-I Wu39ae9652010-07-16 19:48:52 +08001329 fi
1330 fi
Kristian Høgsberg2168b872010-06-02 22:48:06 -04001331
1332 EGL_DRIVERS_DIRS="$EGL_DRIVERS_DIRS $EGL_DRIVER_DRI2"
Kristian Høgsberg42fa0092010-02-03 10:18:28 -05001333 fi
Dan Nicholson53b37342009-02-25 17:45:34 -08001334fi
Dan Nicholson53b37342009-02-25 17:45:34 -08001335AC_SUBST([EGL_LIB_DEPS])
Chia-I Wud4c1ee02009-12-21 11:13:18 +08001336AC_SUBST([EGL_DRIVERS_DIRS])
Dan Nicholson53b37342009-02-25 17:45:34 -08001337
1338dnl
Benjamin Franzkeeddcecb2011-05-26 15:09:39 +02001339dnl gbm configuration
1340dnl
1341if test "x$enable_gbm" = xauto; then
1342 case "$with_egl_platforms" in
1343 *drm*)
1344 enable_gbm=yes ;;
1345 *)
1346 enable_gbm=no ;;
1347 esac
1348fi
1349if test "x$enable_gbm" = xyes; then
1350 SRC_DIRS="$SRC_DIRS gbm"
1351 GBM_BACKEND_DIRS=""
1352
1353 PKG_CHECK_MODULES([LIBUDEV], [libudev], [],
1354 AC_MSG_ERROR([gbm needs udev]))
1355 GBM_LIB_DEPS="$DLOPEN_LIBS $LIBUDEV_LIBS"
Benjamin Franzke2ff79702011-05-26 15:10:50 +02001356
Chia-I Wu9e7a4142011-06-26 13:24:32 +09001357 if test "x$enable_dri" = xyes; then
Benjamin Franzke2ff79702011-05-26 15:10:50 +02001358 GBM_BACKEND_DIRS="$GBM_BACKEND_DIRS dri"
1359 if test "$SHARED_GLAPI" -eq 0; then
1360 AC_MSG_ERROR([gbm_dri requires --enable-shared-glapi])
1361 fi
1362 fi
Benjamin Franzkeeddcecb2011-05-26 15:09:39 +02001363fi
1364AC_SUBST([GBM_LIB_DEPS])
1365AC_SUBST([GBM_BACKEND_DIRS])
1366GBM_PC_REQ_PRIV="libudev"
1367GBM_PC_LIB_PRIV="$DLOPEN_LIBS"
1368GBM_PC_CFLAGS=
1369AC_SUBST([GBM_PC_REQ_PRIV])
1370AC_SUBST([GBM_PC_LIB_PRIV])
1371AC_SUBST([GBM_PC_CFLAGS])
1372
1373dnl
Marek Olšák1251e1d2011-06-18 20:33:55 +02001374dnl EGL Gallium configuration
1375dnl
1376if test "x$enable_gallium_egl" = xyes; then
1377 if test "x$with_gallium_drivers" = x; then
1378 AC_MSG_ERROR([cannot enable egl_gallium without Gallium])
1379 fi
1380 if test "x$enable_egl" = xno; then
1381 AC_MSG_ERROR([cannot enable egl_gallium without EGL])
1382 fi
Chia-I Wu94ec5fd2011-06-27 09:19:02 +09001383 if test "x$have_libdrm" != xyes; then
1384 AC_MSG_ERROR([egl_gallium requires libdrm >= $LIBDRM_REQUIRED])
1385 fi
Marek Olšák1251e1d2011-06-18 20:33:55 +02001386
1387 GALLIUM_STATE_TRACKERS_DIRS="egl $GALLIUM_STATE_TRACKERS_DIRS"
Chia-I Wub8f097f2011-06-20 12:01:39 +09001388 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS egl-static"
Marek Olšák1251e1d2011-06-18 20:33:55 +02001389 HAVE_ST_EGL="yes"
1390fi
1391
1392dnl
Benjamin Franzke48d4a002011-05-26 15:11:50 +02001393dnl gbm Gallium configuration
1394dnl
Benjamin Franzkeb18b2992011-07-02 13:45:14 +02001395if test "x$enable_gallium_gbm" = xauto; then
1396 case "$enable_gbm$HAVE_ST_EGL$with_egl_platforms" in
1397 yesyes*drm*)
1398 enable_gallium_gbm=yes ;;
1399 *)
1400 enable_gallium_gbm=no ;;
1401 esac
1402fi
Benjamin Franzke48d4a002011-05-26 15:11:50 +02001403if test "x$enable_gallium_gbm" = xyes; then
1404 if test "x$with_gallium_drivers" = x; then
1405 AC_MSG_ERROR([cannot enable gbm_gallium without Gallium])
1406 fi
1407 if test "x$enable_gbm" = xno; then
1408 AC_MSG_ERROR([cannot enable gbm_gallium without gbm])
1409 fi
1410
1411 GALLIUM_STATE_TRACKERS_DIRS="gbm $GALLIUM_STATE_TRACKERS_DIRS"
1412 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS gbm"
1413 HAVE_ST_GBM="yes"
1414fi
1415
1416dnl
Marek Olšák440d71d2011-06-14 05:38:58 +02001417dnl X.Org DDX configuration
1418dnl
1419if test "x$enable_xorg" = xyes; then
1420 PKG_CHECK_MODULES([XORG], [xorg-server >= 1.6.0])
1421 PKG_CHECK_MODULES([LIBDRM_XORG], [libdrm >= $LIBDRM_XORG_REQUIRED])
1422 PKG_CHECK_MODULES([LIBKMS_XORG], [libkms >= $LIBKMS_XORG_REQUIRED])
1423 PKG_CHECK_MODULES(XEXT, [xextproto >= 7.0.99.1],
1424 HAVE_XEXTPROTO_71="yes"; DEFINES="$DEFINES -DHAVE_XEXTPROTO_71",
1425 HAVE_XEXTPROTO_71="no")
1426 GALLIUM_STATE_TRACKERS_DIRS="xorg $GALLIUM_STATE_TRACKERS_DIRS"
1427 HAVE_ST_XORG=yes
1428fi
1429
1430dnl
Thomas Hellstrom424b1212011-07-04 10:21:35 +02001431dnl XA configuration
1432dnl
1433if test "x$enable_xa" = xyes; then
1434 GALLIUM_STATE_TRACKERS_DIRS="xa $GALLIUM_STATE_TRACKERS_DIRS"
1435 HAVE_ST_XA=yes
1436fi
1437
1438dnl
Marek Olšák440d71d2011-06-14 05:38:58 +02001439dnl OpenVG configuration
1440dnl
1441VG_LIB_DEPS=""
1442
1443if test "x$enable_openvg" = xyes; then
1444 if test "x$enable_egl" = xno; then
1445 AC_MSG_ERROR([cannot enable OpenVG without EGL])
1446 fi
Marek Olšák58b6a192011-06-14 07:46:59 +02001447 if test "x$with_gallium_drivers" = x; then
Marek Olšák440d71d2011-06-14 05:38:58 +02001448 AC_MSG_ERROR([cannot enable OpenVG without Gallium])
1449 fi
Marek Olšák1251e1d2011-06-18 20:33:55 +02001450 if test "x$enable_gallium_egl" = xno; then
1451 AC_MSG_ERROR([cannot enable OpenVG without egl_gallium])
1452 fi
Marek Olšák440d71d2011-06-14 05:38:58 +02001453
1454 EGL_CLIENT_APIS="$EGL_CLIENT_APIS "'$(VG_LIB)'
1455 VG_LIB_DEPS="$VG_LIB_DEPS $SELINUX_LIBS -lpthread"
1456 CORE_DIRS="$CORE_DIRS mapi/vgapi"
1457 GALLIUM_STATE_TRACKERS_DIRS="vega $GALLIUM_STATE_TRACKERS_DIRS"
1458 HAVE_ST_VEGA=yes
1459fi
1460
1461dnl
1462dnl D3D1X configuration
1463dnl
1464
1465if test "x$enable_d3d1x" = xyes; then
Marek Olšák58b6a192011-06-14 07:46:59 +02001466 if test "x$with_gallium_drivers" = x; then
1467 AC_MSG_ERROR([cannot enable D3D1X without Gallium])
1468 fi
1469
Marek Olšák440d71d2011-06-14 05:38:58 +02001470 GALLIUM_STATE_TRACKERS_DIRS="d3d1x $GALLIUM_STATE_TRACKERS_DIRS"
1471 HAVE_ST_D3D1X=yes
1472fi
1473
1474dnl
Dan Nicholsondca1b792007-10-23 09:25:58 -07001475dnl GLU configuration
1476dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -07001477AC_ARG_ENABLE([glu],
Dan Nicholson79ad4582007-12-07 19:11:01 -08001478 [AS_HELP_STRING([--disable-glu],
1479 [enable OpenGL Utility library @<:@default=enabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -07001480 [enable_glu="$enableval"],
1481 [enable_glu=yes])
Chia-I Wube5f34a2010-10-27 16:14:27 +08001482
Chia-I Wu9e7a4142011-06-26 13:24:32 +09001483if test "x$enable_glu" = xyes; then
1484 if test "x$enable_glx" = xno -a "x$enable_osmesa" = xno; then
1485 AC_MSG_NOTICE([Disabling GLU since there is no OpenGL driver])
1486 enable_glu=no
1487 fi
Chia-I Wube5f34a2010-10-27 16:14:27 +08001488fi
1489
Dan Nicholsondca1b792007-10-23 09:25:58 -07001490if test "x$enable_glu" = xyes; then
1491 SRC_DIRS="$SRC_DIRS glu"
1492
Chia-I Wu9e7a4142011-06-26 13:24:32 +09001493 if test "x$enable_glx" = xno; then
Dan Nicholson979ff512007-12-05 18:47:01 -08001494 # Link libGLU to libOSMesa instead of libGL
1495 GLU_LIB_DEPS=""
Dan Nicholson8be02fc2008-12-14 09:35:29 -08001496 GLU_PC_REQ="osmesa"
Dan Nicholson88586332007-11-15 08:59:57 -08001497 if test "$enable_static" = no; then
1498 GLU_MESA_DEPS='-l$(OSMESA_LIB)'
1499 else
1500 GLU_MESA_DEPS=""
1501 fi
Chia-I Wu9e7a4142011-06-26 13:24:32 +09001502 else
Dan Nicholson88586332007-11-15 08:59:57 -08001503 # If static, empty GLU_LIB_DEPS and add libs for programs to link
Dan Nicholson71e208b2008-11-24 11:01:57 -08001504 GLU_PC_REQ="gl"
1505 GLU_PC_LIB_PRIV="-lm"
Dan Nicholson88586332007-11-15 08:59:57 -08001506 if test "$enable_static" = no; then
1507 GLU_LIB_DEPS="-lm"
1508 GLU_MESA_DEPS='-l$(GL_LIB)'
1509 else
1510 GLU_LIB_DEPS=""
1511 GLU_MESA_DEPS=""
1512 APP_LIB_DEPS="$APP_LIB_DEPS -lstdc++"
1513 fi
Chia-I Wu9e7a4142011-06-26 13:24:32 +09001514 fi
Dan Nicholsondca1b792007-10-23 09:25:58 -07001515fi
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -07001516if test "$enable_static" = no; then
1517 GLU_LIB_DEPS="$GLU_LIB_DEPS $OS_CPLUSPLUS_LIBS"
1518fi
Dan Nicholson71e208b2008-11-24 11:01:57 -08001519GLU_PC_LIB_PRIV="$GLU_PC_LIB_PRIV $OS_CPLUSPLUS_LIBS"
Dan Nicholson297e16c2008-05-05 15:42:53 -07001520AC_SUBST([GLU_LIB_DEPS])
1521AC_SUBST([GLU_MESA_DEPS])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001522AC_SUBST([GLU_PC_REQ])
1523AC_SUBST([GLU_PC_REQ_PRIV])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001524AC_SUBST([GLU_PC_LIB_PRIV])
1525AC_SUBST([GLU_PC_CFLAGS])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001526
1527dnl
1528dnl GLw configuration
1529dnl
Dan Nicholson297e16c2008-05-05 15:42:53 -07001530AC_ARG_ENABLE([glw],
Dan Nicholson79ad4582007-12-07 19:11:01 -08001531 [AS_HELP_STRING([--disable-glw],
1532 [enable Xt/Motif widget library @<:@default=enabled@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -07001533 [enable_glw="$enableval"],
1534 [enable_glw=yes])
Dan Nicholson979ff512007-12-05 18:47:01 -08001535dnl Don't build GLw on osmesa
Chia-I Wu9e7a4142011-06-26 13:24:32 +09001536if test "x$enable_glw" = xyes -a "x$enable_glx" = xno; then
1537 AC_MSG_NOTICE([Disabling GLw since there is no OpenGL driver])
1538 enable_glw=no
Dan Nicholson979ff512007-12-05 18:47:01 -08001539fi
Dan Nicholson776c60d2008-07-18 07:40:41 -07001540AC_ARG_ENABLE([motif],
1541 [AS_HELP_STRING([--enable-motif],
1542 [use Motif widgets in GLw @<:@default=disabled@:>@])],
1543 [enable_motif="$enableval"],
1544 [enable_motif=no])
1545
Dan Nicholsondca1b792007-10-23 09:25:58 -07001546if test "x$enable_glw" = xyes; then
1547 SRC_DIRS="$SRC_DIRS glw"
1548 if test "$x11_pkgconfig" = yes; then
Dan Nicholson297e16c2008-05-05 15:42:53 -07001549 PKG_CHECK_MODULES([GLW],[x11 xt])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001550 GLW_PC_REQ_PRIV="x11 xt"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001551 GLW_LIB_DEPS="$GLW_LIBS"
1552 else
1553 # should check these...
Dan Nicholson776c60d2008-07-18 07:40:41 -07001554 GLW_LIB_DEPS="$X_LIBS -lXt -lX11"
Dan Nicholson71e208b2008-11-24 11:01:57 -08001555 GLW_PC_LIB_PRIV="$GLW_LIB_DEPS"
1556 GLW_PC_CFLAGS="$X11_INCLUDES"
Dan Nicholson776c60d2008-07-18 07:40:41 -07001557 fi
1558
1559 GLW_SOURCES="GLwDrawA.c"
1560 MOTIF_CFLAGS=
1561 if test "x$enable_motif" = xyes; then
1562 GLW_SOURCES="$GLW_SOURCES GLwMDrawA.c"
1563 AC_PATH_PROG([MOTIF_CONFIG], [motif-config], [no])
1564 if test "x$MOTIF_CONFIG" != xno; then
1565 MOTIF_CFLAGS=`$MOTIF_CONFIG --cflags`
1566 MOTIF_LIBS=`$MOTIF_CONFIG --libs`
1567 else
1568 AC_CHECK_HEADER([Xm/PrimitiveP.h], [],
1569 [AC_MSG_ERROR([Can't locate Motif headers])])
1570 AC_CHECK_LIB([Xm], [XmGetPixmap], [MOTIF_LIBS="-lXm"],
1571 [AC_MSG_ERROR([Can't locate Motif Xm library])])
1572 fi
1573 # MOTIF_LIBS is prepended to GLW_LIB_DEPS since Xm needs Xt/X11
1574 GLW_LIB_DEPS="$MOTIF_LIBS $GLW_LIB_DEPS"
Dan Nicholson71e208b2008-11-24 11:01:57 -08001575 GLW_PC_LIB_PRIV="$MOTIF_LIBS $GLW_PC_LIB_PRIV"
1576 GLW_PC_CFLAGS="$MOTIF_CFLAGS $GLW_PC_CFLAGS"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001577 fi
1578
Dan Nicholson88586332007-11-15 08:59:57 -08001579 # If static, empty GLW_LIB_DEPS and add libs for programs to link
Alan Coopersmith3cf6e622009-03-23 16:51:54 -07001580 GLW_PC_LIB_PRIV="$GLW_PC_LIB_PRIV"
Dan Nicholson88586332007-11-15 08:59:57 -08001581 if test "$enable_static" = no; then
1582 GLW_MESA_DEPS='-l$(GL_LIB)'
Alan Coopersmith3cf6e622009-03-23 16:51:54 -07001583 GLW_LIB_DEPS="$GLW_LIB_DEPS"
Dan Nicholson88586332007-11-15 08:59:57 -08001584 else
1585 APP_LIB_DEPS="$APP_LIB_DEPS $GLW_LIB_DEPS"
1586 GLW_LIB_DEPS=""
1587 GLW_MESA_DEPS=""
1588 fi
Dan Nicholsondca1b792007-10-23 09:25:58 -07001589fi
Dan Nicholson297e16c2008-05-05 15:42:53 -07001590AC_SUBST([GLW_LIB_DEPS])
1591AC_SUBST([GLW_MESA_DEPS])
Dan Nicholson776c60d2008-07-18 07:40:41 -07001592AC_SUBST([GLW_SOURCES])
1593AC_SUBST([MOTIF_CFLAGS])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001594AC_SUBST([GLW_PC_REQ_PRIV])
1595AC_SUBST([GLW_PC_LIB_PRIV])
1596AC_SUBST([GLW_PC_CFLAGS])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001597
1598dnl
1599dnl GLUT configuration
1600dnl
1601if test -f "$srcdir/include/GL/glut.h"; then
1602 default_glut=yes
1603else
1604 default_glut=no
1605fi
Dan Nicholson297e16c2008-05-05 15:42:53 -07001606AC_ARG_ENABLE([glut],
Dan Nicholson79ad4582007-12-07 19:11:01 -08001607 [AS_HELP_STRING([--disable-glut],
1608 [enable GLUT library @<:@default=enabled if source available@:>@])],
Dan Nicholson297e16c2008-05-05 15:42:53 -07001609 [enable_glut="$enableval"],
1610 [enable_glut="$default_glut"])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001611
Chia-I Wu9e7a4142011-06-26 13:24:32 +09001612dnl Don't build glut without GLX
1613if test "x$enable_glut" = xyes -a "x$enable_glx" = xno; then
1614 AC_MSG_NOTICE([Disabling glut since there is no OpenGL driver])
1615 enable_glut=no
Chia-I Wube5f34a2010-10-27 16:14:27 +08001616fi
Dan Nicholsondca1b792007-10-23 09:25:58 -07001617dnl Can't build glut if GLU not available
1618if test "x$enable_glu$enable_glut" = xnoyes; then
1619 AC_MSG_WARN([Disabling glut since GLU is disabled])
1620 enable_glut=no
1621fi
Dan Nicholson979ff512007-12-05 18:47:01 -08001622
Dan Nicholsondca1b792007-10-23 09:25:58 -07001623if test "x$enable_glut" = xyes; then
1624 SRC_DIRS="$SRC_DIRS glut/glx"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001625 if test "$x11_pkgconfig" = yes; then
Dan Nicholson297e16c2008-05-05 15:42:53 -07001626 PKG_CHECK_MODULES([GLUT],[x11 xmu xi])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001627 GLUT_PC_REQ_PRIV="x11 xmu xi"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001628 GLUT_LIB_DEPS="$GLUT_LIBS"
1629 else
1630 # should check these...
Dan Nicholson70d0c832007-12-07 11:12:20 -08001631 GLUT_LIB_DEPS="$X_LIBS -lX11 -lXmu -lXi"
Dan Nicholson71e208b2008-11-24 11:01:57 -08001632 GLUT_PC_LIB_PRIV="$GLUT_LIB_DEPS"
1633 GLUT_PC_CFLAGS="$X11_INCLUDES"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001634 fi
John Hein96172542010-07-01 12:53:28 -07001635 if test "x$GCC" = xyes; then
1636 GLUT_CFLAGS="$GLUT_CFLAGS -fexceptions"
1637 fi
Alan Coopersmith3cf6e622009-03-23 16:51:54 -07001638 GLUT_LIB_DEPS="$GLUT_LIB_DEPS -lm"
1639 GLUT_PC_LIB_PRIV="$GLUT_PC_LIB_PRIV -lm"
Dan Nicholsondca1b792007-10-23 09:25:58 -07001640
Dan Nicholson88586332007-11-15 08:59:57 -08001641 # If static, empty GLUT_LIB_DEPS and add libs for programs to link
1642 if test "$enable_static" = no; then
1643 GLUT_MESA_DEPS='-l$(GLU_LIB) -l$(GL_LIB)'
1644 else
1645 APP_LIB_DEPS="$APP_LIB_DEPS $GLUT_LIB_DEPS"
1646 GLUT_LIB_DEPS=""
1647 GLUT_MESA_DEPS=""
1648 fi
Dan Nicholsondca1b792007-10-23 09:25:58 -07001649fi
Dan Nicholson297e16c2008-05-05 15:42:53 -07001650AC_SUBST([GLUT_LIB_DEPS])
1651AC_SUBST([GLUT_MESA_DEPS])
1652AC_SUBST([GLUT_CFLAGS])
Dan Nicholson71e208b2008-11-24 11:01:57 -08001653AC_SUBST([GLUT_PC_REQ_PRIV])
1654AC_SUBST([GLUT_PC_LIB_PRIV])
1655AC_SUBST([GLUT_PC_CFLAGS])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001656
1657dnl
1658dnl Program library dependencies
1659dnl Only libm is added here if necessary as the libraries should
1660dnl be pulled in by the linker
1661dnl
1662if test "x$APP_LIB_DEPS" = x; then
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -07001663 case "$host_os" in
1664 solaris*)
1665 APP_LIB_DEPS="-lX11 -lsocket -lnsl -lm"
1666 ;;
Jon TURNEY7eed6ab2009-06-08 16:02:18 +01001667 cygwin*)
1668 APP_LIB_DEPS="-lX11"
1669 ;;
Alan Coopersmithe1f9adc2008-06-20 17:58:53 -07001670 *)
1671 APP_LIB_DEPS="-lm"
1672 ;;
1673 esac
Dan Nicholsondca1b792007-10-23 09:25:58 -07001674fi
Dan Nicholson297e16c2008-05-05 15:42:53 -07001675AC_SUBST([APP_LIB_DEPS])
1676AC_SUBST([PROGRAM_DIRS])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001677
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001678dnl
1679dnl Gallium configuration
1680dnl
Marek Olšák58b6a192011-06-14 07:46:59 +02001681if test "x$with_gallium_drivers" != x; then
Jakob Bornecrantzbe38b322010-03-23 13:23:26 +00001682 SRC_DIRS="$SRC_DIRS gallium gallium/winsys gallium/targets"
Dave Airlie81fe1982010-04-22 14:59:29 +10001683 AC_PATH_PROG([LLVM_CONFIG], [llvm-config], [no])
Cyril Brulebois9ba29072011-06-15 15:50:02 +02001684else
1685 LLVM_CONFIG=no
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001686fi
Dan Nicholsondca1b792007-10-23 09:25:58 -07001687
Dave Airlie81fe1982010-04-22 14:59:29 +10001688AC_SUBST([LLVM_CFLAGS])
1689AC_SUBST([LLVM_LIBS])
1690AC_SUBST([LLVM_LDFLAGS])
1691AC_SUBST([LLVM_VERSION])
1692
Chia-I Wudbacbb82010-11-02 02:00:36 +08001693
Chia-I Wube5f34a2010-10-27 16:14:27 +08001694
1695case "x$enable_opengl$enable_gles1$enable_gles2" in
1696x*yes*)
1697 EGL_CLIENT_APIS="$EGL_CLIENT_APIS "'$(GL_LIB)'
1698 ;;
1699esac
Chia-I Wube5f34a2010-10-27 16:14:27 +08001700
Chia-I Wu874ccd52010-05-04 22:43:05 +08001701AC_SUBST([VG_LIB_DEPS])
Chia-I Wu63ab2502010-05-05 15:38:02 +08001702AC_SUBST([EGL_CLIENT_APIS])
1703
Chia-I Wuda39d5d2010-06-17 16:07:46 +08001704AC_ARG_WITH([egl-platforms],
1705 [AS_HELP_STRING([--with-egl-platforms@<:@=DIRS...@:>@],
1706 [comma delimited native platforms libEGL supports, e.g.
Chia-I Wue7424d72010-09-19 16:54:39 +08001707 "x11,drm" @<:@default=auto@:>@])],
Chia-I Wuda39d5d2010-06-17 16:07:46 +08001708 [with_egl_platforms="$withval"],
1709 [with_egl_platforms=yes])
Chia-I Wu49381d62010-01-11 01:23:01 +08001710
Chia-I Wuda39d5d2010-06-17 16:07:46 +08001711EGL_PLATFORMS=""
Benjamin Franzke214fc6e2011-02-04 12:24:08 +01001712WAYLAND_EGL_LIB_DEPS=""
1713
Chia-I Wuda39d5d2010-06-17 16:07:46 +08001714case "$with_egl_platforms" in
Chia-I Wu49381d62010-01-11 01:23:01 +08001715yes)
Chia-I Wu9e7a4142011-06-26 13:24:32 +09001716 if test "x$enable_egl" = xyes; then
Chia-I Wuda39d5d2010-06-17 16:07:46 +08001717 EGL_PLATFORMS="x11"
Chia-I Wu49381d62010-01-11 01:23:01 +08001718 fi
1719 ;;
1720*)
1721 if test "x$enable_egl" != xyes; then
1722 AC_MSG_ERROR([cannot build egl state tracker without EGL library])
1723 fi
1724 # verify the requested driver directories exist
Chia-I Wuda39d5d2010-06-17 16:07:46 +08001725 egl_platforms=`IFS=', '; echo $with_egl_platforms`
1726 for plat in $egl_platforms; do
1727 test -d "$srcdir/src/gallium/state_trackers/egl/$plat" || \
Kristian Høgsberg1a8899d2011-02-10 10:45:06 -05001728 AC_MSG_ERROR([EGL platform '$plat' doesn't exist])
Chia-I Wuda39d5d2010-06-17 16:07:46 +08001729 if test "$plat" = "fbdev"; then
Chia-I Wu8f3e48e2010-06-17 14:10:53 +08001730 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/fbdev"
1731 fi
Benjamin Franzkee586c4b2011-02-04 12:22:58 +01001732 if test "$plat" = "wayland"; then
Benjamin Franzke6b369c42011-02-21 16:22:34 +01001733 PKG_CHECK_MODULES([WAYLAND], [wayland-client wayland-server],, \
Benjamin Franzkee586c4b2011-02-04 12:22:58 +01001734 [AC_MSG_ERROR([cannot find libwayland-client])])
Benjamin Franzke214fc6e2011-02-04 12:24:08 +01001735 WAYLAND_EGL_LIB_DEPS="$WAYLAND_LIBS $LIBDRM_LIBS"
Benjamin Franzkeaaa3c0d2011-04-23 14:14:29 +02001736 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/wayland"
Benjamin Franzkee586c4b2011-02-04 12:22:58 +01001737 fi
Benjamin Franzke9b8cd492011-07-02 13:46:09 +02001738 if test "$plat" = "drm" && test "x$enable_gbm" = "xno"; then
Benjamin Franzkee5fc4c82011-05-30 10:50:52 +02001739 AC_MSG_ERROR([EGL platform drm needs gbm])
1740 fi
Benjamin Franzke7ed18262011-07-02 13:46:42 +02001741 case "$plat$have_libudev" in
1742 waylandno|drmno)
1743 AC_MSG_ERROR([cannot build $plat platfrom without udev]) ;;
1744 esac
Chia-I Wu49381d62010-01-11 01:23:01 +08001745 done
Chia-I Wuda39d5d2010-06-17 16:07:46 +08001746 EGL_PLATFORMS="$egl_platforms"
Chia-I Wu49381d62010-01-11 01:23:01 +08001747 ;;
1748esac
Chia-I Wuda39d5d2010-06-17 16:07:46 +08001749AC_SUBST([EGL_PLATFORMS])
Chia-I Wu49381d62010-01-11 01:23:01 +08001750
Benjamin Franzke214fc6e2011-02-04 12:24:08 +01001751AC_SUBST([WAYLAND_EGL_LIB_DEPS])
1752WAYLAND_EGL_PC_REQ_PRIV="wayland-client libdrm"
1753WAYLAND_EGL_PC_LIB_PRIV=
1754WAYLAND_EGL_PC_CFLAGS=
1755
1756AC_SUBST([WAYLAND_EGL_PC_REQ_PRIV])
1757AC_SUBST([WAYLAND_EGL_PC_LIB_PRIV])
1758AC_SUBST([WAYLAND_EGL_PC_CFLAGS])
1759
1760
Chia-I Wu28c3e572010-01-23 20:18:43 +08001761AC_ARG_WITH([egl-driver-dir],
1762 [AS_HELP_STRING([--with-egl-driver-dir=DIR],
1763 [directory for EGL drivers [[default=${libdir}/egl]]])],
1764 [EGL_DRIVER_INSTALL_DIR="$withval"],
1765 [EGL_DRIVER_INSTALL_DIR='${libdir}/egl'])
1766AC_SUBST([EGL_DRIVER_INSTALL_DIR])
1767
Joel Bosveld8acca482009-03-06 08:46:08 +09001768AC_ARG_WITH([xorg-driver-dir],
1769 [AS_HELP_STRING([--with-xorg-driver-dir=DIR],
1770 [Default xorg driver directory[[default=${libdir}/xorg/modules/drivers]]])],
1771 [XORG_DRIVER_INSTALL_DIR="$withval"],
1772 [XORG_DRIVER_INSTALL_DIR="${libdir}/xorg/modules/drivers"])
1773AC_SUBST([XORG_DRIVER_INSTALL_DIR])
1774
Tom Fogal7085dce2009-08-13 19:40:30 -06001775AC_ARG_WITH([max-width],
1776 [AS_HELP_STRING([--with-max-width=N],
1777 [Maximum framebuffer width (4096)])],
1778 [DEFINES="${DEFINES} -DMAX_WIDTH=${withval}";
1779 AS_IF([test "${withval}" -gt "4096"],
1780 [AC_MSG_WARN([Large framebuffer: see s_tritemp.h comments.])])]
1781)
1782AC_ARG_WITH([max-height],
1783 [AS_HELP_STRING([--with-max-height=N],
1784 [Maximum framebuffer height (4096)])],
1785 [DEFINES="${DEFINES} -DMAX_HEIGHT=${withval}";
1786 AS_IF([test "${withval}" -gt "4096"],
1787 [AC_MSG_WARN([Large framebuffer: see s_tritemp.h comments.])])]
1788)
1789
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001790dnl
Dave Airlie81fe1982010-04-22 14:59:29 +10001791dnl Gallium LLVM
1792dnl
1793AC_ARG_ENABLE([gallium-llvm],
1794 [AS_HELP_STRING([--enable-gallium-llvm],
Marek Olšáka86fc712011-04-21 13:27:55 +02001795 [build gallium LLVM support @<:@default=enabled on x86/x86_64@:>@])],
Dave Airlie81fe1982010-04-22 14:59:29 +10001796 [enable_gallium_llvm="$enableval"],
1797 [enable_gallium_llvm=auto])
Marek Olšák58b6a192011-06-14 07:46:59 +02001798if test "x$with_gallium_drivers" = x; then
1799 enable_gallium_llvm=no
1800fi
Marek Olšáka86fc712011-04-21 13:27:55 +02001801if test "x$enable_gallium_llvm" = xauto; then
1802 case "$host_cpu" in
1803 i*86|x86_64) enable_gallium_llvm=yes;;
1804 esac
1805fi
Dave Airlie81fe1982010-04-22 14:59:29 +10001806if test "x$enable_gallium_llvm" = xyes; then
Dave Airlie22e8ddc2010-04-25 07:48:48 +10001807 if test "x$LLVM_CONFIG" != xno; then
1808 LLVM_VERSION=`$LLVM_CONFIG --version`
Brian Paul7da704e2010-12-08 06:44:42 -07001809 LLVM_CFLAGS=`$LLVM_CONFIG --cppflags`
José Fonseca202c3452011-03-14 19:58:22 +00001810 LLVM_LIBS="`$LLVM_CONFIG --libs` -lstdc++"
Dave Airlie22e8ddc2010-04-25 07:48:48 +10001811
Dave Airlie22e8ddc2010-04-25 07:48:48 +10001812 LLVM_LDFLAGS=`$LLVM_CONFIG --ldflags`
1813 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS llvmpipe"
Chia-I Wu3ecb8c22010-05-11 12:36:49 +08001814 DEFINES="$DEFINES -DGALLIUM_LLVMPIPE -D__STDC_CONSTANT_MACROS"
Dave Airlie22e8ddc2010-04-25 07:48:48 +10001815 MESA_LLVM=1
1816 else
Dave Airlie81fe1982010-04-22 14:59:29 +10001817 MESA_LLVM=0
Dave Airlie22e8ddc2010-04-25 07:48:48 +10001818 fi
1819else
1820 MESA_LLVM=0
Dave Airlie81fe1982010-04-22 14:59:29 +10001821fi
1822
1823dnl
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001824dnl Gallium helper functions
1825dnl
1826gallium_check_st() {
Thomas Hellstrom9f2f5b32011-06-15 10:46:24 +02001827 if test "x$HAVE_ST_DRI" = xyes || test "x$HAVE_ST_XORG" = xyes ||
1828 test "x$HAVE_ST_XA" = xyes; then
Chia-I Wu81239342011-07-02 09:49:17 +09001829 if test "x$have_libdrm" != xyes; then
1830 AC_MSG_ERROR([DRI or Xorg DDX requires libdrm >= $LIBDRM_REQUIRED])
1831 fi
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001832 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS $1"
1833 fi
1834 if test "x$HAVE_ST_DRI" = xyes && test "x$2" != x; then
1835 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $2"
1836 fi
Chia-I Wud8e0e112010-06-29 14:04:27 +08001837 if test "x$HAVE_ST_XORG" = xyes && test "x$3" != x; then
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001838 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $3"
1839 fi
Thomas Hellstrom9f2f5b32011-06-15 10:46:24 +02001840 if test "x$HAVE_ST_XA" = xyes && test "x$4" != x; then
1841 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $4"
1842 fi
Jakob Bornecrantza82e37b2010-03-25 22:21:39 +01001843}
1844
Marek Olšákc17fb852011-06-14 04:03:17 +02001845gallium_require_llvm() {
1846 if test "x$MESA_LLVM" = x0; then
1847 case "$host_cpu" in
1848 i*86|x86_64) AC_MSG_ERROR([LLVM is required to build $1 on x86 and x86_64]);;
1849 esac
1850 fi
1851}
1852
Marek Olšák58b6a192011-06-14 07:46:59 +02001853dnl Gallium drivers
1854if test "x$with_gallium_drivers" != x; then
1855 # This is for compile-testing
1856 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS i915 i965 r300 svga"
Jakob Bornecrantz44bafca2010-04-17 15:17:33 +01001857 GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS i915/sw"
Jakob Bornecrantz7dce4f32010-06-11 13:00:16 +02001858
Marek Olšák58b6a192011-06-14 07:46:59 +02001859 gallium_drivers=`IFS=', '; echo $with_gallium_drivers`
1860 for driver in $gallium_drivers; do
1861 case "x$driver" in
1862 xsvga)
Thomas Hellstrom424b1212011-07-04 10:21:35 +02001863 gallium_check_st "svga/drm" "dri-vmwgfx" "xorg-vmwgfx" "xa-vmwgfx"
Marek Olšák58b6a192011-06-14 07:46:59 +02001864 ;;
1865 xi915)
1866 gallium_check_st "i915/drm" "dri-i915" "xorg-i915"
1867 ;;
1868 xi965)
1869 gallium_check_st "i965/drm" "dri-i965" "xorg-i965"
1870 ;;
1871 xr300)
1872 gallium_require_llvm "Gallium R300"
1873 gallium_check_st "radeon/drm" "dri-r300" "xorg-r300"
1874 ;;
1875 xr600)
1876 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS r600"
1877 gallium_check_st "r600/drm" "dri-r600"
1878 ;;
1879 xnouveau)
1880 GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS nouveau nvfx nv50 nvc0"
1881 gallium_check_st "nouveau/drm" "dri-nouveau" "xorg-nouveau"
1882 ;;
1883 xswrast)
1884 if test "x$HAVE_ST_DRI" = xyes; then
1885 GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS dri-swrast"
1886 fi
1887 ;;
1888 *)
1889 AC_MSG_ERROR([Unknown Gallium driver: $driver])
1890 ;;
1891 esac
1892 done
Chia-I Wua1306f42010-01-22 15:51:51 +08001893fi
1894
Chia-I Wu99a37ed2010-01-05 17:39:05 +08001895dnl prepend CORE_DIRS to SRC_DIRS
1896SRC_DIRS="$CORE_DIRS $SRC_DIRS"
Jakob Bornecrantz3ede3772009-02-13 00:57:47 +01001897
Dan Nicholsondca1b792007-10-23 09:25:58 -07001898dnl Restore LDFLAGS and CPPFLAGS
1899LDFLAGS="$_SAVE_LDFLAGS"
1900CPPFLAGS="$_SAVE_CPPFLAGS"
1901
1902dnl Substitute the config
Dan Nicholsonf64d6fe2007-12-12 17:57:45 -08001903AC_CONFIG_FILES([configs/autoconf])
Dan Nicholsondca1b792007-10-23 09:25:58 -07001904
Dan Nicholsonaab38cf2007-12-11 08:21:51 -08001905dnl Replace the configs/current symlink
Dan Nicholsone14ebbc2008-05-06 11:28:43 -07001906AC_CONFIG_COMMANDS([configs],[
Dan Nicholsonaab38cf2007-12-11 08:21:51 -08001907if test -f configs/current || test -L configs/current; then
1908 rm -f configs/current
1909fi
1910ln -s autoconf configs/current
Dan Nicholsone14ebbc2008-05-06 11:28:43 -07001911])
1912
Marek Olšák618dbc82011-06-27 03:12:57 +02001913dnl Sort the dirs alphabetically
1914GALLIUM_TARGET_DIRS=`echo $GALLIUM_TARGET_DIRS|tr " " "\n"|sort|tr "\n" " "`
1915GALLIUM_WINSYS_DIRS=`echo $GALLIUM_WINSYS_DIRS|tr " " "\n"|sort|tr "\n" " "`
1916GALLIUM_DRIVERS_DIRS=`echo $GALLIUM_DRIVERS_DIRS|tr " " "\n"|sort|tr "\n" " "`
1917GALLIUM_STATE_TRACKERS_DIRS=`echo $GALLIUM_STATE_TRACKERS_DIRS|tr " " "\n"|sort|tr "\n" " "`
1918
Dan Nicholsone14ebbc2008-05-06 11:28:43 -07001919AC_OUTPUT
Dan Nicholsonaab38cf2007-12-11 08:21:51 -08001920
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001921dnl
1922dnl Output some configuration info for the user
1923dnl
1924echo ""
1925echo " prefix: $prefix"
1926echo " exec_prefix: $exec_prefix"
1927echo " libdir: $libdir"
Dan Nicholson11ac5b22008-07-03 09:17:44 -07001928echo " includedir: $includedir"
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001929
Chia-I Wu815faa42010-10-29 12:34:44 +08001930dnl API info
1931echo ""
1932echo " OpenGL: $enable_opengl (ES1: $enable_gles1 ES2: $enable_gles2)"
Chia-I Wu815faa42010-10-29 12:34:44 +08001933echo " OpenVG: $enable_openvg"
1934
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001935dnl Driver info
1936echo ""
Chia-I Wu9e7a4142011-06-26 13:24:32 +09001937if test "x$enable_osmesa" != xno; then
Chia-I Wu815faa42010-10-29 12:34:44 +08001938 echo " OSMesa: lib$OSMESA_LIB"
Chia-I Wu9e7a4142011-06-26 13:24:32 +09001939else
Chia-I Wu815faa42010-10-29 12:34:44 +08001940 echo " OSMesa: no"
Chia-I Wu9e7a4142011-06-26 13:24:32 +09001941fi
1942
1943if test "x$enable_dri" != xno; then
Chia-I Wu815faa42010-10-29 12:34:44 +08001944 # cleanup the drivers var
1945 dri_dirs=`echo $DRI_DIRS | $SED 's/^ *//;s/ */ /;s/ *$//'`
1946 if test "x$DRI_DIRS" = x; then
1947 echo " DRI drivers: no"
1948 else
1949 echo " DRI drivers: $dri_dirs"
1950 fi
1951 echo " DRI driver dir: $DRI_DRIVER_INSTALL_DIR"
Christopher James Halse Rogersd1e28b22011-02-03 11:19:32 +11001952 echo " Shared dricore: $enable_dricore"
Dan Nicholson544ab202007-12-30 08:41:53 -08001953fi
Chia-I Wu9e7a4142011-06-26 13:24:32 +09001954
1955case "x$enable_glx$enable_xlib_glx" in
1956xyesyes)
1957 echo " GLX: Xlib-based"
1958 ;;
1959xyesno)
1960 echo " GLX: DRI-based"
1961 echo " Use XCB: $enable_xcb"
1962 ;;
1963*)
1964 echo " GLX: $enable_glx"
1965 ;;
1966esac
1967
Chia-I Wu815faa42010-10-29 12:34:44 +08001968echo ""
1969echo " GLU: $enable_glu"
1970echo " GLw: $enable_glw (Motif: $enable_motif)"
1971echo " glut: $enable_glut"
1972
1973dnl EGL
1974echo ""
1975echo " EGL: $enable_egl"
1976if test "$enable_egl" = yes; then
1977 echo " EGL platforms: $EGL_PLATFORMS"
Chia-I Wu12300502010-10-31 21:01:54 +08001978
1979 egl_drivers=""
1980 for d in $EGL_DRIVERS_DIRS; do
Chia-I Wuc98ea262011-01-07 16:30:08 +08001981 egl_drivers="$egl_drivers builtin:egl_$d"
Chia-I Wu12300502010-10-31 21:01:54 +08001982 done
1983
Marek Olšák1251e1d2011-06-18 20:33:55 +02001984 if test "x$HAVE_ST_EGL" = xyes; then
Chia-I Wu12300502010-10-31 21:01:54 +08001985 echo " EGL drivers: ${egl_drivers} egl_gallium"
1986 echo " EGL Gallium STs:$EGL_CLIENT_APIS"
Chia-I Wu815faa42010-10-29 12:34:44 +08001987 else
Chia-I Wu12300502010-10-31 21:01:54 +08001988 echo " EGL drivers: $egl_drivers"
Chia-I Wu815faa42010-10-29 12:34:44 +08001989 fi
Florent Thoumieb5095ab2008-07-28 14:44:43 +01001990fi
Dan Nicholson9cad8e32007-11-30 08:49:57 -08001991
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01001992echo ""
Eric Anholt1a8b1272010-05-21 12:17:24 -07001993if test "x$MESA_LLVM" = x1; then
Jakob Bornecrantzfe0fe672010-04-28 13:38:58 +01001994 echo " llvm: yes"
1995 echo " llvm-config: $LLVM_CONFIG"
1996 echo " llvm-version: $LLVM_VERSION"
1997else
1998 echo " llvm: no"
1999fi
2000
2001echo ""
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01002002if echo "$SRC_DIRS" | grep 'gallium' >/dev/null 2>&1; then
2003 echo " Gallium: yes"
2004 echo " Gallium dirs: $GALLIUM_DIRS"
Keith Whitwell51bff092010-03-11 14:43:00 +00002005 echo " Target dirs: $GALLIUM_TARGET_DIRS"
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01002006 echo " Winsys dirs: $GALLIUM_WINSYS_DIRS"
Jakob Bornecrantzd67bd602009-02-20 11:03:18 +00002007 echo " Driver dirs: $GALLIUM_DRIVERS_DIRS"
Jakob Bornecrantz7e54d7d2009-02-11 02:38:21 +01002008 echo " Trackers dirs: $GALLIUM_STATE_TRACKERS_DIRS"
2009else
2010 echo " Gallium: no"
2011fi
2012
Dan Nicholson9cad8e32007-11-30 08:49:57 -08002013dnl Libraries
2014echo ""
2015echo " Shared libs: $enable_shared"
2016echo " Static libs: $enable_static"
Dan Nicholson9cad8e32007-11-30 08:49:57 -08002017
Dan Nicholson16a07fb2007-12-12 09:12:15 -08002018dnl Compiler options
2019# cleanup the CFLAGS/CXXFLAGS/DEFINES vars
2020cflags=`echo $CFLAGS $OPT_FLAGS $PIC_FLAGS $ARCH_FLAGS | \
2021 $SED 's/^ *//;s/ */ /;s/ *$//'`
2022cxxflags=`echo $CXXFLAGS $OPT_FLAGS $PIC_FLAGS $ARCH_FLAGS | \
2023 $SED 's/^ *//;s/ */ /;s/ *$//'`
2024defines=`echo $DEFINES $ASM_FLAGS | $SED 's/^ *//;s/ */ /;s/ *$//'`
2025echo ""
2026echo " CFLAGS: $cflags"
2027echo " CXXFLAGS: $cxxflags"
2028echo " Macros: $defines"
Kenneth Graunke3acc8262010-10-25 13:52:58 -07002029echo ""
2030echo " PYTHON2: $PYTHON2"
Dan Nicholson16a07fb2007-12-12 09:12:15 -08002031
Dan Nicholsondca1b792007-10-23 09:25:58 -07002032echo ""
Dan Nicholsonb6459422008-03-24 10:01:50 -07002033echo " Run '${MAKE-make}' to build Mesa"
Dan Nicholsondca1b792007-10-23 09:25:58 -07002034echo ""