Matt Turner | 2f1ab63 | 2012-01-03 21:58:37 -0500 | [diff] [blame] | 1 | dnl Process this file with autoconf to create configure. |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 2 | |
Matt Turner | 5172383 | 2011-12-23 19:21:04 -0500 | [diff] [blame] | 3 | AC_PREREQ([2.60]) |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 4 | |
Dan Nicholson | e97ab72 | 2008-07-01 08:55:42 -0700 | [diff] [blame] | 5 | dnl Tell the user about autoconf.html in the --help output |
| 6 | m4_divert_once([HELP_END], [ |
| 7 | See docs/autoconf.html for more details on the options for Mesa.]) |
| 8 | |
Emil Velikov | 488b3ed | 2013-07-25 23:45:45 +0100 | [diff] [blame] | 9 | m4_define(MESA_VERSION, m4_normalize(m4_include(VERSION))) |
| 10 | AC_INIT([Mesa], [MESA_VERSION], |
Dan Nicholson | f64d6fe | 2007-12-12 17:57:45 -0800 | [diff] [blame] | 11 | [https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa]) |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 12 | AC_CONFIG_AUX_DIR([bin]) |
Matt Turner | 7da1242 | 2012-09-18 20:21:47 -0700 | [diff] [blame] | 13 | AC_CONFIG_MACRO_DIR([m4]) |
Thierry Reding | 9948a33 | 2012-10-19 14:03:01 +0200 | [diff] [blame] | 14 | AC_CANONICAL_SYSTEM |
Eric Anholt | a4ff334 | 2012-06-11 12:59:48 -0700 | [diff] [blame] | 15 | AM_INIT_AUTOMAKE([foreign]) |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 16 | |
Colin Walters | 0d736b2 | 2012-01-14 09:16:20 -0500 | [diff] [blame] | 17 | dnl http://people.gnome.org/~walters/docs/build-api.txt |
| 18 | dnl We don't support srcdir != builddir. |
| 19 | echo \#buildapi-variable-no-builddir >/dev/null |
| 20 | |
Eric Anholt | 7fa5c91 | 2012-01-12 14:56:56 -0800 | [diff] [blame] | 21 | # Support silent build rules, requires at least automake-1.11. Disable |
| 22 | # by either passing --disable-silent-rules to configure or passing V=1 |
| 23 | # to make |
Lauri Kasanen | 0a82828 | 2013-02-22 22:25:58 +0200 | [diff] [blame] | 24 | m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])], |
| 25 | [AC_SUBST([AM_DEFAULT_VERBOSITY], [1])]) |
Eric Anholt | 7fa5c91 | 2012-01-12 14:56:56 -0800 | [diff] [blame] | 26 | |
Kenneth Graunke | 4a5d020 | 2012-05-30 21:54:21 -0700 | [diff] [blame] | 27 | m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) |
| 28 | |
Johannes Obermayr | 10a96f4 | 2012-09-02 01:35:47 +0200 | [diff] [blame] | 29 | dnl Set internal versions |
| 30 | OSMESA_VERSION=8 |
| 31 | AC_SUBST([OSMESA_VERSION]) |
| 32 | |
Dan Nicholson | cc77e8f | 2008-05-05 14:38:22 -0700 | [diff] [blame] | 33 | dnl Versions for external dependencies |
Chris Wilson | faf1dda | 2011-03-01 18:39:15 +0000 | [diff] [blame] | 34 | LIBDRM_REQUIRED=2.4.24 |
Alex Deucher | 77300ba | 2013-07-11 18:51:32 -0400 | [diff] [blame] | 35 | LIBDRM_RADEON_REQUIRED=2.4.46 |
Eric Anholt | f015901 | 2012-07-18 10:18:26 -0700 | [diff] [blame] | 36 | LIBDRM_INTEL_REQUIRED=2.4.38 |
Ben Skeggs | 2e47d01 | 2011-12-23 14:03:49 +1000 | [diff] [blame] | 37 | LIBDRM_NVVIEUX_REQUIRED=2.4.33 |
Maarten Lankhorst | 9ba7eac | 2012-12-02 12:07:35 +0100 | [diff] [blame] | 38 | LIBDRM_NOUVEAU_REQUIRED="2.4.33 libdrm >= 2.4.41" |
Rob Clark | 6173cc1 | 2012-10-27 11:07:34 -0500 | [diff] [blame] | 39 | LIBDRM_FREEDRENO_REQUIRED=2.4.39 |
Jesse Barnes | 1e39fc7 | 2011-05-05 13:09:16 -0700 | [diff] [blame] | 40 | DRI2PROTO_REQUIRED=2.6 |
| 41 | GLPROTO_REQUIRED=1.4.14 |
Chris Wilson | faf1dda | 2011-03-01 18:39:15 +0000 | [diff] [blame] | 42 | LIBDRM_XORG_REQUIRED=2.4.24 |
Jakob Bornecrantz | 683a099 | 2010-03-11 19:23:15 +0000 | [diff] [blame] | 43 | LIBKMS_XORG_REQUIRED=1.0.0 |
Dan Nicholson | cc77e8f | 2008-05-05 14:38:22 -0700 | [diff] [blame] | 44 | |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 45 | dnl Check for progs |
| 46 | AC_PROG_CPP |
| 47 | AC_PROG_CC |
| 48 | AC_PROG_CXX |
Dylan Noblesmith | a3d5673 | 2012-04-02 15:35:38 +0000 | [diff] [blame] | 49 | AM_PROG_CC_C_O |
Eric Anholt | f9d1562 | 2012-05-24 13:59:21 -0700 | [diff] [blame] | 50 | AM_PROG_AS |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 51 | AC_CHECK_PROGS([MAKE], [gmake make]) |
Kenneth Graunke | 3acc826 | 2010-10-25 13:52:58 -0700 | [diff] [blame] | 52 | AC_CHECK_PROGS([PYTHON2], [python2 python]) |
Andreas Boll | 410b58c | 2013-01-18 15:31:57 +0100 | [diff] [blame] | 53 | AX_PYTHON_MODULE([libxml2], [needed]) |
Matt Turner | 3a343ef | 2012-01-11 01:05:56 -0500 | [diff] [blame] | 54 | AC_PROG_SED |
Matt Turner | fd827a8 | 2012-01-21 22:43:02 -0500 | [diff] [blame] | 55 | AC_PROG_MKDIR_P |
Dan Nicholson | 41b0070 | 2007-12-12 08:48:30 -0800 | [diff] [blame] | 56 | |
Thierry Reding | 9948a33 | 2012-10-19 14:03:01 +0200 | [diff] [blame] | 57 | LT_PREREQ([2.2]) |
| 58 | LT_INIT([disable-static]) |
| 59 | |
Matt Turner | b68b852 | 2012-10-01 13:11:30 -0700 | [diff] [blame] | 60 | AX_PROG_BISON([], |
Matt Turner | 02b6da1 | 2013-01-29 11:22:06 -0800 | [diff] [blame] | 61 | AS_IF([test ! -f "$srcdir/src/glsl/glcpp/glcpp-parse.c"], |
Matt Turner | b68b852 | 2012-10-01 13:11:30 -0700 | [diff] [blame] | 62 | [AC_MSG_ERROR([bison not found - unable to compile glcpp-parse.y])])) |
Matt Turner | 2a71054 | 2012-10-01 13:28:51 -0700 | [diff] [blame] | 63 | AX_PROG_FLEX([], |
Matt Turner | 02b6da1 | 2013-01-29 11:22:06 -0800 | [diff] [blame] | 64 | AS_IF([test ! -f "$srcdir/src/glsl/glcpp/glcpp-lex.c"], |
Matt Turner | 2a71054 | 2012-10-01 13:28:51 -0700 | [diff] [blame] | 65 | [AC_MSG_ERROR([flex not found - unable to compile glcpp-lex.l])])) |
Brian Paul | de1df26 | 2011-05-18 07:50:21 -0600 | [diff] [blame] | 66 | |
Tom Stellard | a75c616 | 2012-01-06 17:38:37 -0500 | [diff] [blame] | 67 | AC_PATH_PROG([PERL], [perl]) |
| 68 | |
Kenneth Graunke | 2224fb6 | 2012-05-29 16:03:05 -0700 | [diff] [blame] | 69 | AC_CHECK_PROG(INDENT, indent, indent, cat) |
| 70 | if test "x$INDENT" != "xcat"; then |
Vinson Lee | 2f358fe | 2012-12-31 15:19:43 -0800 | [diff] [blame] | 71 | AC_SUBST(INDENT_FLAGS, '-i4 -nut -br -brs -npcs -ce -TGLubyte -TGLbyte -TBool') |
Kenneth Graunke | 2224fb6 | 2012-05-29 16:03:05 -0700 | [diff] [blame] | 72 | fi |
| 73 | |
Dan Nicholson | bc302b2 | 2009-05-22 09:39:02 -0700 | [diff] [blame] | 74 | AC_PROG_INSTALL |
Dan Nicholson | bc302b2 | 2009-05-22 09:39:02 -0700 | [diff] [blame] | 75 | |
Dan Nicholson | bfb27b5 | 2008-06-30 09:40:30 -0700 | [diff] [blame] | 76 | dnl We need a POSIX shell for parts of the build. Assume we have one |
| 77 | dnl in most cases. |
Alan Coopersmith | e1f9adc | 2008-06-20 17:58:53 -0700 | [diff] [blame] | 78 | case "$host_os" in |
| 79 | solaris*) |
| 80 | # Solaris /bin/sh is too old/non-POSIX compliant |
| 81 | AC_PATH_PROGS(POSIX_SHELL, [ksh93 ksh sh]) |
Dan Nicholson | bfb27b5 | 2008-06-30 09:40:30 -0700 | [diff] [blame] | 82 | SHELL="$POSIX_SHELL" |
Alan Coopersmith | e1f9adc | 2008-06-20 17:58:53 -0700 | [diff] [blame] | 83 | ;; |
| 84 | esac |
| 85 | |
nobled | 2a50187 | 2010-08-29 20:03:37 -0400 | [diff] [blame] | 86 | dnl clang is mostly GCC-compatible, but its version is much lower, |
| 87 | dnl so we have to check for it. |
| 88 | AC_MSG_CHECKING([if compiling with clang]) |
| 89 | |
| 90 | AC_COMPILE_IFELSE( |
| 91 | [AC_LANG_PROGRAM([], [[ |
| 92 | #ifndef __clang__ |
| 93 | not clang |
| 94 | #endif |
| 95 | ]])], |
Jeremy Huddleston | b728eef | 2011-05-05 14:08:57 -0700 | [diff] [blame] | 96 | [acv_mesa_CLANG=yes], [acv_mesa_CLANG=no]) |
nobled | 2a50187 | 2010-08-29 20:03:37 -0400 | [diff] [blame] | 97 | |
Jeremy Huddleston | b728eef | 2011-05-05 14:08:57 -0700 | [diff] [blame] | 98 | AC_MSG_RESULT([$acv_mesa_CLANG]) |
nobled | 2a50187 | 2010-08-29 20:03:37 -0400 | [diff] [blame] | 99 | |
Ian Romanick | 9aa3aa7 | 2010-03-03 15:59:37 -0800 | [diff] [blame] | 100 | dnl If we're using GCC, make sure that it is at least version 3.3.0. Older |
| 101 | dnl versions are explictly not supported. |
Mike Frysinger | 73c9b4b | 2013-02-04 21:27:40 -0500 | [diff] [blame] | 102 | GEN_ASM_OFFSETS=no |
Jeremy Huddleston | b728eef | 2011-05-05 14:08:57 -0700 | [diff] [blame] | 103 | if test "x$GCC" = xyes -a "x$acv_mesa_CLANG" = xno; then |
Ian Romanick | 9aa3aa7 | 2010-03-03 15:59:37 -0800 | [diff] [blame] | 104 | AC_MSG_CHECKING([whether gcc version is sufficient]) |
| 105 | major=0 |
| 106 | minor=0 |
| 107 | |
| 108 | GCC_VERSION=`$CC -dumpversion` |
| 109 | if test $? -eq 0; then |
Tom Stellard | 79d77b3 | 2012-04-20 16:56:46 +0200 | [diff] [blame] | 110 | GCC_VERSION_MAJOR=`echo $GCC_VERSION | cut -d. -f1` |
| 111 | GCC_VERSION_MINOR=`echo $GCC_VERSION | cut -d. -f2` |
Ian Romanick | 9aa3aa7 | 2010-03-03 15:59:37 -0800 | [diff] [blame] | 112 | fi |
| 113 | |
Tom Stellard | 79d77b3 | 2012-04-20 16:56:46 +0200 | [diff] [blame] | 114 | if test $GCC_VERSION_MAJOR -lt 3 -o $GCC_VERSION_MAJOR -eq 3 -a $GCC_VERSION_MINOR -lt 3 ; then |
Ian Romanick | 9aa3aa7 | 2010-03-03 15:59:37 -0800 | [diff] [blame] | 115 | AC_MSG_RESULT([no]) |
| 116 | AC_MSG_ERROR([If using GCC, version 3.3.0 or later is required.]) |
| 117 | else |
| 118 | AC_MSG_RESULT([yes]) |
| 119 | fi |
Mike Frysinger | 73c9b4b | 2013-02-04 21:27:40 -0500 | [diff] [blame] | 120 | |
| 121 | if test "x$cross_compiling" = xyes; then |
| 122 | GEN_ASM_OFFSETS=yes |
| 123 | fi |
Ian Romanick | 9aa3aa7 | 2010-03-03 15:59:37 -0800 | [diff] [blame] | 124 | fi |
Mike Frysinger | 73c9b4b | 2013-02-04 21:27:40 -0500 | [diff] [blame] | 125 | AM_CONDITIONAL([GEN_ASM_OFFSETS], test "x$GEN_ASM_OFFSETS" = xyes) |
Ian Romanick | 9aa3aa7 | 2010-03-03 15:59:37 -0800 | [diff] [blame] | 126 | |
Dan Nicholson | 41b0070 | 2007-12-12 08:48:30 -0800 | [diff] [blame] | 127 | dnl Make sure the pkg-config macros are defined |
Dan Nicholson | 356f311 | 2009-04-29 06:49:27 -0700 | [diff] [blame] | 128 | m4_ifndef([PKG_PROG_PKG_CONFIG], |
| 129 | [m4_fatal([Could not locate the pkg-config autoconf macros. |
| 130 | These are usually located in /usr/share/aclocal/pkg.m4. If your macros |
| 131 | are in a different location, try setting the environment variable |
| 132 | ACLOCAL="aclocal -I/other/macro/dir" before running autoreconf.])]) |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 133 | PKG_PROG_PKG_CONFIG() |
| 134 | |
| 135 | dnl LIB_DIR - library basename |
| 136 | LIB_DIR=`echo $libdir | $SED 's%.*/%%'` |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 137 | AC_SUBST([LIB_DIR]) |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 138 | |
Matt Turner | d12b07e | 2012-08-14 12:33:32 -0700 | [diff] [blame] | 139 | dnl Cache LDFLAGS and CPPFLAGS so we can add to them and restore later |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 140 | _SAVE_LDFLAGS="$LDFLAGS" |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 141 | _SAVE_CPPFLAGS="$CPPFLAGS" |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 142 | |
| 143 | dnl Compiler macros |
| 144 | DEFINES="" |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 145 | AC_SUBST([DEFINES]) |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 146 | case "$host_os" in |
Samuel Thibault | d18dd6a | 2009-04-23 05:43:22 -0700 | [diff] [blame] | 147 | linux*|*-gnu*|gnu*) |
Matt Turner | 9a51edf | 2012-10-11 10:57:26 -0700 | [diff] [blame] | 148 | DEFINES="$DEFINES -D_GNU_SOURCE -DHAVE_PTHREAD" |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 149 | ;; |
Alan Coopersmith | e1f9adc | 2008-06-20 17:58:53 -0700 | [diff] [blame] | 150 | solaris*) |
Matt Turner | 9a51edf | 2012-10-11 10:57:26 -0700 | [diff] [blame] | 151 | DEFINES="$DEFINES -DHAVE_PTHREAD -DSVR4" |
Alan Coopersmith | e1f9adc | 2008-06-20 17:58:53 -0700 | [diff] [blame] | 152 | ;; |
Brian Paul | 9798890 | 2010-02-18 12:46:12 -0700 | [diff] [blame] | 153 | cygwin*) |
Matt Turner | 9a51edf | 2012-10-11 10:57:26 -0700 | [diff] [blame] | 154 | DEFINES="$DEFINES -DHAVE_PTHREAD" |
Brian Paul | 9798890 | 2010-02-18 12:46:12 -0700 | [diff] [blame] | 155 | ;; |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 156 | esac |
| 157 | |
| 158 | dnl Add flags for gcc and g++ |
| 159 | if test "x$GCC" = xyes; then |
Vinson Lee | 53e36d3 | 2012-10-11 18:19:49 -0700 | [diff] [blame] | 160 | case "$host_os" in |
| 161 | cygwin*) |
| 162 | CFLAGS="$CFLAGS -Wall -std=gnu99" |
| 163 | ;; |
| 164 | *) |
| 165 | CFLAGS="$CFLAGS -Wall -std=c99" |
| 166 | ;; |
| 167 | esac |
Eric Anholt | b9aab8b | 2012-01-26 18:48:20 -0800 | [diff] [blame] | 168 | |
| 169 | # Enable -Werror=implicit-function-declaration and |
| 170 | # -Werror=missing-prototypes, if available, or otherwise, just |
| 171 | # -Wmissing-prototypes. This is particularly useful to avoid |
| 172 | # generating a loadable driver module that has undefined symbols. |
| 173 | save_CFLAGS="$CFLAGS" |
| 174 | AC_MSG_CHECKING([whether $CC supports -Werror=missing-prototypes]) |
| 175 | CFLAGS="$CFLAGS -Werror=implicit-function-declaration" |
| 176 | CFLAGS="$CFLAGS -Werror=missing-prototypes" |
| 177 | AC_LINK_IFELSE([AC_LANG_PROGRAM()], |
| 178 | AC_MSG_RESULT([yes]), |
| 179 | [CFLAGS="$save_CFLAGS -Wmissing-prototypes"; |
| 180 | AC_MSG_RESULT([no])]); |
Alan Coopersmith | adda7f3 | 2010-01-16 18:34:23 -0800 | [diff] [blame] | 181 | |
| 182 | # Enable -fvisibility=hidden if using a gcc that supports it |
| 183 | save_CFLAGS="$CFLAGS" |
Alan Coopersmith | f8107a4 | 2010-01-21 16:42:58 -0800 | [diff] [blame] | 184 | AC_MSG_CHECKING([whether $CC supports -fvisibility=hidden]) |
Christopher James Halse Rogers | d1e28b2 | 2011-02-03 11:19:32 +1100 | [diff] [blame] | 185 | VISIBILITY_CFLAGS="-fvisibility=hidden" |
| 186 | CFLAGS="$CFLAGS $VISIBILITY_CFLAGS" |
Alan Coopersmith | adda7f3 | 2010-01-16 18:34:23 -0800 | [diff] [blame] | 187 | AC_LINK_IFELSE([AC_LANG_PROGRAM()], AC_MSG_RESULT([yes]), |
Christopher James Halse Rogers | d1e28b2 | 2011-02-03 11:19:32 +1100 | [diff] [blame] | 188 | [VISIBILITY_CFLAGS=""; AC_MSG_RESULT([no])]); |
| 189 | |
| 190 | # Restore CFLAGS; VISIBILITY_CFLAGS are added to it where needed. |
| 191 | CFLAGS=$save_CFLAGS |
Dan Nicholson | 0c275b6 | 2008-01-15 22:52:25 -0800 | [diff] [blame] | 192 | |
| 193 | # Work around aliasing bugs - developers should comment this out |
| 194 | CFLAGS="$CFLAGS -fno-strict-aliasing" |
José Fonseca | 1448bdf | 2011-10-14 18:28:55 +0100 | [diff] [blame] | 195 | |
| 196 | # gcc's builtin memcmp is slower than glibc's |
| 197 | # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43052 |
| 198 | CFLAGS="$CFLAGS -fno-builtin-memcmp" |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 199 | fi |
| 200 | if test "x$GXX" = xyes; then |
| 201 | CXXFLAGS="$CXXFLAGS -Wall" |
Dan Nicholson | 0c275b6 | 2008-01-15 22:52:25 -0800 | [diff] [blame] | 202 | |
Kristian Høgsberg | 7b34fcc | 2010-09-08 20:34:07 -0400 | [diff] [blame] | 203 | # Enable -fvisibility=hidden if using a gcc that supports it |
| 204 | save_CXXFLAGS="$CXXFLAGS" |
| 205 | AC_MSG_CHECKING([whether $CXX supports -fvisibility=hidden]) |
Christopher James Halse Rogers | d1e28b2 | 2011-02-03 11:19:32 +1100 | [diff] [blame] | 206 | VISIBILITY_CXXFLAGS="-fvisibility=hidden" |
| 207 | CXXFLAGS="$CXXFLAGS $VISIBILITY_CXXFLAGS" |
Jon TURNEY | 560f762 | 2011-04-26 11:49:01 +0100 | [diff] [blame] | 208 | AC_LANG_PUSH([C++]) |
Kristian Høgsberg | 7b34fcc | 2010-09-08 20:34:07 -0400 | [diff] [blame] | 209 | AC_LINK_IFELSE([AC_LANG_PROGRAM()], AC_MSG_RESULT([yes]), |
Christopher James Halse Rogers | d1e28b2 | 2011-02-03 11:19:32 +1100 | [diff] [blame] | 210 | [VISIBILITY_CXXFLAGS="" ; AC_MSG_RESULT([no])]); |
Jon TURNEY | 560f762 | 2011-04-26 11:49:01 +0100 | [diff] [blame] | 211 | AC_LANG_POP([C++]) |
Christopher James Halse Rogers | d1e28b2 | 2011-02-03 11:19:32 +1100 | [diff] [blame] | 212 | |
| 213 | # Restore CXXFLAGS; VISIBILITY_CXXFLAGS are added to it where needed. |
| 214 | CXXFLAGS=$save_CXXFLAGS |
Kristian Høgsberg | 7b34fcc | 2010-09-08 20:34:07 -0400 | [diff] [blame] | 215 | |
Dan Nicholson | 0c275b6 | 2008-01-15 22:52:25 -0800 | [diff] [blame] | 216 | # Work around aliasing bugs - developers should comment this out |
| 217 | CXXFLAGS="$CXXFLAGS -fno-strict-aliasing" |
José Fonseca | 1448bdf | 2011-10-14 18:28:55 +0100 | [diff] [blame] | 218 | |
| 219 | # gcc's builtin memcmp is slower than glibc's |
| 220 | # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43052 |
| 221 | CXXFLAGS="$CXXFLAGS -fno-builtin-memcmp" |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 222 | fi |
| 223 | |
Jon TURNEY | db78643 | 2011-04-26 11:56:02 +0100 | [diff] [blame] | 224 | dnl even if the compiler appears to support it, using visibility attributes isn't |
| 225 | dnl going to do anything useful currently on cygwin apart from emit lots of warnings |
| 226 | case "$host_os" in |
| 227 | cygwin*) |
| 228 | VISIBILITY_CFLAGS="" |
| 229 | VISIBILITY_CXXFLAGS="" |
| 230 | ;; |
| 231 | esac |
| 232 | |
Christopher James Halse Rogers | d1e28b2 | 2011-02-03 11:19:32 +1100 | [diff] [blame] | 233 | AC_SUBST([VISIBILITY_CFLAGS]) |
| 234 | AC_SUBST([VISIBILITY_CXXFLAGS]) |
| 235 | |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 236 | dnl |
Dan Nicholson | ab57cba | 2007-12-26 11:12:29 -0600 | [diff] [blame] | 237 | dnl Hacks to enable 32 or 64 bit build |
| 238 | dnl |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 239 | AC_ARG_ENABLE([32-bit], |
Dan Nicholson | ab57cba | 2007-12-26 11:12:29 -0600 | [diff] [blame] | 240 | [AS_HELP_STRING([--enable-32-bit], |
| 241 | [build 32-bit libraries @<:@default=auto@:>@])], |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 242 | [enable_32bit="$enableval"], |
| 243 | [enable_32bit=auto] |
Dan Nicholson | ab57cba | 2007-12-26 11:12:29 -0600 | [diff] [blame] | 244 | ) |
| 245 | if test "x$enable_32bit" = xyes; then |
| 246 | if test "x$GCC" = xyes; then |
| 247 | CFLAGS="$CFLAGS -m32" |
Tapani Pälli | a9cfd95 | 2012-05-31 09:32:45 +0300 | [diff] [blame] | 248 | CCASFLAGS="$CCASFLAGS -m32" |
Dan Nicholson | ab57cba | 2007-12-26 11:12:29 -0600 | [diff] [blame] | 249 | fi |
| 250 | if test "x$GXX" = xyes; then |
| 251 | CXXFLAGS="$CXXFLAGS -m32" |
| 252 | fi |
| 253 | fi |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 254 | AC_ARG_ENABLE([64-bit], |
Dan Nicholson | ab57cba | 2007-12-26 11:12:29 -0600 | [diff] [blame] | 255 | [AS_HELP_STRING([--enable-64-bit], |
| 256 | [build 64-bit libraries @<:@default=auto@:>@])], |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 257 | [enable_64bit="$enableval"], |
| 258 | [enable_64bit=auto] |
Dan Nicholson | ab57cba | 2007-12-26 11:12:29 -0600 | [diff] [blame] | 259 | ) |
| 260 | if test "x$enable_64bit" = xyes; then |
| 261 | if test "x$GCC" = xyes; then |
| 262 | CFLAGS="$CFLAGS -m64" |
| 263 | fi |
| 264 | if test "x$GXX" = xyes; then |
| 265 | CXXFLAGS="$CXXFLAGS -m64" |
| 266 | fi |
| 267 | fi |
| 268 | |
Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 269 | dnl Can't have static and shared libraries, default to static if user |
| 270 | dnl explicitly requested. If both disabled, set to static since shared |
Matt Turner | 0c17823 | 2012-01-14 11:10:06 -0500 | [diff] [blame] | 271 | dnl was explicitly requested. |
Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 272 | case "x$enable_static$enable_shared" in |
| 273 | xyesyes ) |
Matt Turner | 14819eb | 2012-08-01 08:32:49 -0700 | [diff] [blame] | 274 | AC_MSG_WARN([Cannot build static and shared libraries, disabling shared]) |
Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 275 | enable_shared=no |
| 276 | ;; |
| 277 | xnono ) |
Matt Turner | 14819eb | 2012-08-01 08:32:49 -0700 | [diff] [blame] | 278 | AC_MSG_WARN([Cannot disable both static and shared libraries, enabling static]) |
Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 279 | enable_static=yes |
| 280 | ;; |
| 281 | esac |
| 282 | |
Matt Turner | df4dccc | 2012-08-22 11:51:31 -0700 | [diff] [blame] | 283 | AM_CONDITIONAL(BUILD_SHARED, test "x$enable_shared" = xyes) |
| 284 | |
Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 285 | dnl |
Dan Nicholson | 23656c4 | 2007-12-12 09:02:31 -0800 | [diff] [blame] | 286 | dnl other compiler options |
| 287 | dnl |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 288 | AC_ARG_ENABLE([debug], |
Dan Nicholson | 23656c4 | 2007-12-12 09:02:31 -0800 | [diff] [blame] | 289 | [AS_HELP_STRING([--enable-debug], |
| 290 | [use debug compiler flags and macros @<:@default=disabled@:>@])], |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 291 | [enable_debug="$enableval"], |
| 292 | [enable_debug=no] |
Dan Nicholson | 23656c4 | 2007-12-12 09:02:31 -0800 | [diff] [blame] | 293 | ) |
| 294 | if test "x$enable_debug" = xyes; then |
| 295 | DEFINES="$DEFINES -DDEBUG" |
| 296 | if test "x$GCC" = xyes; then |
Emil Velikov | 1223458 | 2012-12-12 14:59:36 +0000 | [diff] [blame] | 297 | CFLAGS="$CFLAGS -g -O0" |
Dan Nicholson | 23656c4 | 2007-12-12 09:02:31 -0800 | [diff] [blame] | 298 | fi |
| 299 | if test "x$GXX" = xyes; then |
Emil Velikov | 1223458 | 2012-12-12 14:59:36 +0000 | [diff] [blame] | 300 | CXXFLAGS="$CXXFLAGS -g -O0" |
Dan Nicholson | 23656c4 | 2007-12-12 09:02:31 -0800 | [diff] [blame] | 301 | fi |
| 302 | fi |
Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 303 | |
| 304 | dnl |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 305 | dnl library names |
| 306 | dnl |
Jon TURNEY | c55a8a7 | 2010-07-24 12:05:34 +0100 | [diff] [blame] | 307 | LIB_PREFIX_GLOB='lib' |
| 308 | LIB_VERSION_SEPARATOR='.' |
Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 309 | if test "$enable_static" = yes; then |
Dan Nicholson | 8217f24 | 2009-02-11 15:16:00 -0800 | [diff] [blame] | 310 | LIB_EXTENSION='a' |
Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 311 | else |
Siddhartha Chaudhuri | 1a46c8a | 2009-02-09 07:58:38 -0700 | [diff] [blame] | 312 | case "$host_os" in |
| 313 | darwin* ) |
| 314 | LIB_EXTENSION='dylib' ;; |
Jon TURNEY | 7eed6ab | 2009-06-08 16:02:18 +0100 | [diff] [blame] | 315 | cygwin* ) |
Jon TURNEY | c55a8a7 | 2010-07-24 12:05:34 +0100 | [diff] [blame] | 316 | dnl prefix can be 'cyg' or 'lib' |
| 317 | LIB_PREFIX_GLOB='???' |
| 318 | LIB_VERSION_SEPARATOR='-' |
| 319 | LIB_EXTENSION='dll' ;; |
Tom Fogal | 9282edf | 2009-10-13 10:55:33 -0700 | [diff] [blame] | 320 | aix* ) |
| 321 | LIB_EXTENSION='a' ;; |
Siddhartha Chaudhuri | 1a46c8a | 2009-02-09 07:58:38 -0700 | [diff] [blame] | 322 | * ) |
| 323 | LIB_EXTENSION='so' ;; |
| 324 | esac |
Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 325 | fi |
Brad King | f3cdcb8 | 2012-06-05 13:59:58 -0400 | [diff] [blame] | 326 | AC_ARG_WITH([gl-lib-name], |
| 327 | [AS_HELP_STRING([--with-gl-lib-name@<:@=NAME@:>@], |
| 328 | [specify GL library name @<:@default=GL@:>@])], |
| 329 | [GL_LIB=$withval], |
| 330 | [GL_LIB=GL]) |
Brad King | f3cdcb8 | 2012-06-05 13:59:58 -0400 | [diff] [blame] | 331 | AC_ARG_WITH([osmesa-lib-name], |
| 332 | [AS_HELP_STRING([--with-osmesa-lib-name@<:@=NAME@:>@], |
| 333 | [specify OSMesa library name @<:@default=OSMesa@:>@])], |
| 334 | [OSMESA_LIB=$withval], |
| 335 | [OSMESA_LIB=OSMesa]) |
| 336 | AS_IF([test "x$GL_LIB" = xyes], [GL_LIB=GL]) |
Brad King | f3cdcb8 | 2012-06-05 13:59:58 -0400 | [diff] [blame] | 337 | AS_IF([test "x$OSMESA_LIB" = xyes], [OSMESA_LIB=OSMesa]) |
Dan Nicholson | 8217f24 | 2009-02-11 15:16:00 -0800 | [diff] [blame] | 338 | |
Marek Olšák | 848f7d3 | 2011-04-01 01:12:41 +0200 | [diff] [blame] | 339 | dnl |
Tom Fogal | c0573fb | 2011-10-10 10:33:18 -0600 | [diff] [blame] | 340 | dnl Mangled Mesa support |
| 341 | dnl |
| 342 | AC_ARG_ENABLE([mangling], |
| 343 | [AS_HELP_STRING([--enable-mangling], |
| 344 | [enable mangled symbols and library name @<:@default=disabled@:>@])], |
| 345 | [enable_mangling="${enableval}"], |
| 346 | [enable_mangling=no] |
| 347 | ) |
Tom Fogal | c0573fb | 2011-10-10 10:33:18 -0600 | [diff] [blame] | 348 | if test "x${enable_mangling}" = "xyes" ; then |
| 349 | DEFINES="${DEFINES} -DUSE_MGL_NAMESPACE" |
Brad King | f3cdcb8 | 2012-06-05 13:59:58 -0400 | [diff] [blame] | 350 | GL_LIB="Mangled${GL_LIB}" |
Brad King | f3cdcb8 | 2012-06-05 13:59:58 -0400 | [diff] [blame] | 351 | OSMESA_LIB="Mangled${OSMESA_LIB}" |
Tom Fogal | c0573fb | 2011-10-10 10:33:18 -0600 | [diff] [blame] | 352 | fi |
| 353 | AC_SUBST([GL_LIB]) |
Tom Fogal | c0573fb | 2011-10-10 10:33:18 -0600 | [diff] [blame] | 354 | AC_SUBST([OSMESA_LIB]) |
| 355 | |
| 356 | dnl |
Marek Olšák | 848f7d3 | 2011-04-01 01:12:41 +0200 | [diff] [blame] | 357 | dnl potentially-infringing-but-nobody-knows-for-sure stuff |
| 358 | dnl |
| 359 | AC_ARG_ENABLE([texture-float], |
| 360 | [AS_HELP_STRING([--enable-texture-float], |
| 361 | [enable floating-point textures and renderbuffers @<:@default=disabled@:>@])], |
| 362 | [enable_texture_float="$enableval"], |
| 363 | [enable_texture_float=no] |
| 364 | ) |
| 365 | if test "x$enable_texture_float" = xyes; then |
| 366 | AC_MSG_WARN([Floating-point textures enabled.]) |
| 367 | AC_MSG_WARN([Please consult docs/patents.txt with your lawyer before building Mesa.]) |
| 368 | DEFINES="$DEFINES -DTEXTURE_FLOAT_ENABLED" |
| 369 | fi |
| 370 | |
Dan Nicholson | 8217f24 | 2009-02-11 15:16:00 -0800 | [diff] [blame] | 371 | GL_LIB_NAME='lib$(GL_LIB).'${LIB_EXTENSION} |
Dan Nicholson | 8217f24 | 2009-02-11 15:16:00 -0800 | [diff] [blame] | 372 | OSMESA_LIB_NAME='lib$(OSMESA_LIB).'${LIB_EXTENSION} |
Chia-I Wu | d4c1ee0 | 2009-12-21 11:13:18 +0800 | [diff] [blame] | 373 | EGL_LIB_NAME='lib$(EGL_LIB).'${LIB_EXTENSION} |
Kristian Høgsberg | 9339c12 | 2010-03-05 19:01:43 -0500 | [diff] [blame] | 374 | GLESv1_CM_LIB_NAME='lib$(GLESv1_CM_LIB).'${LIB_EXTENSION} |
| 375 | GLESv2_LIB_NAME='lib$(GLESv2_LIB).'${LIB_EXTENSION} |
Chia-I Wu | 874ccd5 | 2010-05-04 22:43:05 +0800 | [diff] [blame] | 376 | VG_LIB_NAME='lib$(VG_LIB).'${LIB_EXTENSION} |
Chia-I Wu | 9767d3b | 2010-12-26 18:02:59 +0800 | [diff] [blame] | 377 | GLAPI_LIB_NAME='lib$(GLAPI_LIB).'${LIB_EXTENSION} |
Dan Nicholson | 8217f24 | 2009-02-11 15:16:00 -0800 | [diff] [blame] | 378 | |
Jon TURNEY | c55a8a7 | 2010-07-24 12:05:34 +0100 | [diff] [blame] | 379 | GL_LIB_GLOB=${LIB_PREFIX_GLOB}'$(GL_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*' |
Jon TURNEY | c55a8a7 | 2010-07-24 12:05:34 +0100 | [diff] [blame] | 380 | EGL_LIB_GLOB=${LIB_PREFIX_GLOB}'$(EGL_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*' |
| 381 | EGL_LIB_GLOB=${LIB_PREFIX_GLOB}'$(EGL_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*' |
| 382 | GLESv1_CM_LIB_GLOB=${LIB_PREFIX_GLOB}'$(GLESv1_CM_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*' |
| 383 | GLESv2_LIB_GLOB=${LIB_PREFIX_GLOB}'$(GLESv2_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*' |
| 384 | VG_LIB_GLOB=${LIB_PREFIX_GLOB}'$(VG_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*' |
Chia-I Wu | 9767d3b | 2010-12-26 18:02:59 +0800 | [diff] [blame] | 385 | GLAPI_LIB_GLOB=${LIB_PREFIX_GLOB}'$(GLAPI_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*' |
Dan Nicholson | 8217f24 | 2009-02-11 15:16:00 -0800 | [diff] [blame] | 386 | |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 387 | AC_SUBST([GL_LIB_NAME]) |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 388 | AC_SUBST([OSMESA_LIB_NAME]) |
Chia-I Wu | d4c1ee0 | 2009-12-21 11:13:18 +0800 | [diff] [blame] | 389 | AC_SUBST([EGL_LIB_NAME]) |
Kristian Høgsberg | 9339c12 | 2010-03-05 19:01:43 -0500 | [diff] [blame] | 390 | AC_SUBST([GLESv1_CM_LIB_NAME]) |
| 391 | AC_SUBST([GLESv2_LIB_NAME]) |
Chia-I Wu | 874ccd5 | 2010-05-04 22:43:05 +0800 | [diff] [blame] | 392 | AC_SUBST([VG_LIB_NAME]) |
Chia-I Wu | 9767d3b | 2010-12-26 18:02:59 +0800 | [diff] [blame] | 393 | AC_SUBST([GLAPI_LIB_NAME]) |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 394 | |
Siddhartha Chaudhuri | 1a46c8a | 2009-02-09 07:58:38 -0700 | [diff] [blame] | 395 | AC_SUBST([GL_LIB_GLOB]) |
Chia-I Wu | d4c1ee0 | 2009-12-21 11:13:18 +0800 | [diff] [blame] | 396 | AC_SUBST([EGL_LIB_GLOB]) |
Kristian Høgsberg | 9339c12 | 2010-03-05 19:01:43 -0500 | [diff] [blame] | 397 | AC_SUBST([GLESv1_CM_LIB_GLOB]) |
| 398 | AC_SUBST([GLESv2_LIB_GLOB]) |
Chia-I Wu | 874ccd5 | 2010-05-04 22:43:05 +0800 | [diff] [blame] | 399 | AC_SUBST([VG_LIB_GLOB]) |
Chia-I Wu | 9767d3b | 2010-12-26 18:02:59 +0800 | [diff] [blame] | 400 | AC_SUBST([GLAPI_LIB_GLOB]) |
Siddhartha Chaudhuri | 1a46c8a | 2009-02-09 07:58:38 -0700 | [diff] [blame] | 401 | |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 402 | dnl |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 403 | dnl Arch/platform-specific settings |
| 404 | dnl |
| 405 | AC_ARG_ENABLE([asm], |
| 406 | [AS_HELP_STRING([--disable-asm], |
| 407 | [disable assembly usage @<:@default=enabled on supported plaforms@:>@])], |
| 408 | [enable_asm="$enableval"], |
| 409 | [enable_asm=yes] |
| 410 | ) |
| 411 | asm_arch="" |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 412 | AC_MSG_CHECKING([whether to enable assembly]) |
| 413 | test "x$enable_asm" = xno && AC_MSG_RESULT([no]) |
| 414 | # disable if cross compiling on x86/x86_64 since we must run gen_matypes |
| 415 | if test "x$enable_asm" = xyes && test "x$cross_compiling" = xyes; then |
| 416 | case "$host_cpu" in |
Jean-Sébastien Pédron | 148f0de | 2013-06-05 13:27:37 +0200 | [diff] [blame] | 417 | i?86 | x86_64 | amd64) |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 418 | enable_asm=no |
| 419 | AC_MSG_RESULT([no, cross compiling]) |
| 420 | ;; |
| 421 | esac |
| 422 | fi |
| 423 | # check for supported arches |
| 424 | if test "x$enable_asm" = xyes; then |
| 425 | case "$host_cpu" in |
| 426 | i?86) |
| 427 | case "$host_os" in |
Jonathan Gray | 78fbb41 | 2013-06-26 17:11:57 +1000 | [diff] [blame] | 428 | linux* | *freebsd* | dragonfly* | *netbsd* | openbsd*) |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 429 | test "x$enable_64bit" = xyes && asm_arch=x86_64 || asm_arch=x86 |
| 430 | ;; |
Andreas Boll | 06fff29 | 2013-03-16 13:50:19 +0100 | [diff] [blame] | 431 | gnu*) |
| 432 | asm_arch=x86 |
| 433 | ;; |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 434 | esac |
| 435 | ;; |
Jean-Sébastien Pédron | 148f0de | 2013-06-05 13:27:37 +0200 | [diff] [blame] | 436 | x86_64|amd64) |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 437 | case "$host_os" in |
Jonathan Gray | 78fbb41 | 2013-06-26 17:11:57 +1000 | [diff] [blame] | 438 | linux* | *freebsd* | dragonfly* | *netbsd* | openbsd*) |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 439 | test "x$enable_32bit" = xyes && asm_arch=x86 || asm_arch=x86_64 |
| 440 | ;; |
| 441 | esac |
| 442 | ;; |
David S. Miller | 857ac1e | 2009-02-26 05:35:15 -0800 | [diff] [blame] | 443 | sparc*) |
| 444 | case "$host_os" in |
| 445 | linux*) |
| 446 | asm_arch=sparc |
| 447 | ;; |
| 448 | esac |
| 449 | ;; |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 450 | esac |
| 451 | |
| 452 | case "$asm_arch" in |
| 453 | x86) |
Eric Anholt | e426949 | 2012-06-11 10:25:05 -0700 | [diff] [blame] | 454 | DEFINES="$DEFINES -DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_3DNOW_ASM -DUSE_SSE_ASM" |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 455 | AC_MSG_RESULT([yes, x86]) |
| 456 | ;; |
Jean-Sébastien Pédron | 148f0de | 2013-06-05 13:27:37 +0200 | [diff] [blame] | 457 | x86_64|amd64) |
Eric Anholt | e426949 | 2012-06-11 10:25:05 -0700 | [diff] [blame] | 458 | DEFINES="$DEFINES -DUSE_X86_64_ASM" |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 459 | AC_MSG_RESULT([yes, x86_64]) |
| 460 | ;; |
David S. Miller | 857ac1e | 2009-02-26 05:35:15 -0800 | [diff] [blame] | 461 | sparc) |
Eric Anholt | e426949 | 2012-06-11 10:25:05 -0700 | [diff] [blame] | 462 | DEFINES="$DEFINES -DUSE_SPARC_ASM" |
David S. Miller | 857ac1e | 2009-02-26 05:35:15 -0800 | [diff] [blame] | 463 | AC_MSG_RESULT([yes, sparc]) |
| 464 | ;; |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 465 | *) |
| 466 | AC_MSG_RESULT([no, platform not supported]) |
| 467 | ;; |
| 468 | esac |
| 469 | fi |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 470 | |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 471 | dnl Check to see if dlopen is in default libraries (like Solaris, which |
| 472 | dnl has it in libc), or if libdl is needed to get it. |
Tapani Pälli | 57c57df | 2012-08-16 13:59:12 +0300 | [diff] [blame] | 473 | AC_CHECK_FUNC([dlopen], [DEFINES="$DEFINES -DHAVE_DLOPEN"], |
| 474 | [AC_CHECK_LIB([dl], [dlopen], |
| 475 | [DEFINES="$DEFINES -DHAVE_DLOPEN"; DLOPEN_LIBS="-ldl"])]) |
Chia-I Wu | 08f4bc0 | 2010-07-16 20:09:29 +0800 | [diff] [blame] | 476 | AC_SUBST([DLOPEN_LIBS]) |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 477 | |
Vinson Lee | 990bd49 | 2013-01-26 22:50:05 -0800 | [diff] [blame] | 478 | case "$host_os" in |
Vinson Lee | c403a52 | 2013-02-19 00:52:40 -0800 | [diff] [blame] | 479 | darwin*|mingw*) |
Vinson Lee | 990bd49 | 2013-01-26 22:50:05 -0800 | [diff] [blame] | 480 | ;; |
| 481 | *) |
| 482 | AC_CHECK_FUNCS([clock_gettime], [CLOCK_LIB=], |
| 483 | [AC_CHECK_LIB([rt], [clock_gettime], [CLOCK_LIB=-lrt], |
| 484 | [AC_MSG_ERROR([Couldn't find clock_gettime])])]) |
| 485 | AC_SUBST([CLOCK_LIB]) |
| 486 | ;; |
| 487 | esac |
Dave Airlie | ec83535 | 2012-12-04 09:25:13 +1000 | [diff] [blame] | 488 | |
Dan Nicholson | 985e1cd | 2008-06-04 13:17:06 -0700 | [diff] [blame] | 489 | dnl See if posix_memalign is available |
| 490 | AC_CHECK_FUNC([posix_memalign], [DEFINES="$DEFINES -DHAVE_POSIX_MEMALIGN"]) |
| 491 | |
Matt Turner | 7da1242 | 2012-09-18 20:21:47 -0700 | [diff] [blame] | 492 | dnl Check for pthreads |
| 493 | AX_PTHREAD |
Matt Turner | dd4fde8 | 2012-09-27 15:49:52 -0700 | [diff] [blame] | 494 | dnl AX_PTHREADS leaves PTHREAD_LIBS empty for gcc and sets PTHREAD_CFLAGS |
| 495 | dnl to -pthread, which causes problems if we need -lpthread to appear in |
| 496 | dnl pkgconfig files. |
| 497 | test -z "$PTHREAD_LIBS" && PTHREAD_LIBS="-lpthread" |
Matt Turner | 7da1242 | 2012-09-18 20:21:47 -0700 | [diff] [blame] | 498 | |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 499 | dnl SELinux awareness. |
| 500 | AC_ARG_ENABLE([selinux], |
| 501 | [AS_HELP_STRING([--enable-selinux], |
| 502 | [Build SELinux-aware Mesa @<:@default=disabled@:>@])], |
| 503 | [MESA_SELINUX="$enableval"], |
| 504 | [MESA_SELINUX=no]) |
| 505 | if test "x$enable_selinux" = "xyes"; then |
| 506 | AC_CHECK_HEADER([selinux/selinux.h],[], |
| 507 | [AC_MSG_ERROR([SELinux headers not found])]) |
| 508 | AC_CHECK_LIB([selinux],[is_selinux_enabled],[], |
| 509 | [AC_MSG_ERROR([SELinux library not found])]) |
| 510 | SELINUX_LIBS="-lselinux" |
| 511 | DEFINES="$DEFINES -DMESA_SELINUX" |
| 512 | fi |
Matt Turner | 9ed0007 | 2012-09-18 20:22:37 -0700 | [diff] [blame] | 513 | AC_SUBST([SELINUX_LIBS]) |
Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 514 | |
Marek Olšák | 440d71d | 2011-06-14 05:38:58 +0200 | [diff] [blame] | 515 | dnl Options for APIs |
Chia-I Wu | be5f34a | 2010-10-27 16:14:27 +0800 | [diff] [blame] | 516 | AC_ARG_ENABLE([opengl], |
| 517 | [AS_HELP_STRING([--disable-opengl], |
| 518 | [disable support for standard OpenGL API @<:@default=no@:>@])], |
| 519 | [enable_opengl="$enableval"], |
| 520 | [enable_opengl=yes]) |
| 521 | AC_ARG_ENABLE([gles1], |
| 522 | [AS_HELP_STRING([--enable-gles1], |
| 523 | [enable support for OpenGL ES 1.x API @<:@default=no@:>@])], |
| 524 | [enable_gles1="$enableval"], |
| 525 | [enable_gles1=no]) |
| 526 | AC_ARG_ENABLE([gles2], |
| 527 | [AS_HELP_STRING([--enable-gles2], |
| 528 | [enable support for OpenGL ES 2.x API @<:@default=no@:>@])], |
| 529 | [enable_gles2="$enableval"], |
| 530 | [enable_gles2=no]) |
Chia-I Wu | be5f34a | 2010-10-27 16:14:27 +0800 | [diff] [blame] | 531 | AC_ARG_ENABLE([openvg], |
| 532 | [AS_HELP_STRING([--enable-openvg], |
| 533 | [enable support for OpenVG API @<:@default=no@:>@])], |
| 534 | [enable_openvg="$enableval"], |
| 535 | [enable_openvg=no]) |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 536 | |
| 537 | AC_ARG_ENABLE([dri], |
| 538 | [AS_HELP_STRING([--enable-dri], |
Matt Turner | 32e8ce6 | 2012-08-17 14:05:56 -0700 | [diff] [blame] | 539 | [enable DRI modules @<:@default=enabled@:>@])], |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 540 | [enable_dri="$enableval"], |
Matt Turner | 32e8ce6 | 2012-08-17 14:05:56 -0700 | [diff] [blame] | 541 | [enable_dri=yes]) |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 542 | AC_ARG_ENABLE([glx], |
| 543 | [AS_HELP_STRING([--enable-glx], |
Matt Turner | 32e8ce6 | 2012-08-17 14:05:56 -0700 | [diff] [blame] | 544 | [enable GLX library @<:@default=enabled@:>@])], |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 545 | [enable_glx="$enableval"], |
Matt Turner | 32e8ce6 | 2012-08-17 14:05:56 -0700 | [diff] [blame] | 546 | [enable_glx=yes]) |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 547 | AC_ARG_ENABLE([osmesa], |
| 548 | [AS_HELP_STRING([--enable-osmesa], |
Matt Turner | 32e8ce6 | 2012-08-17 14:05:56 -0700 | [diff] [blame] | 549 | [enable OSMesa library @<:@default=disabled@:>@])], |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 550 | [enable_osmesa="$enableval"], |
Matt Turner | 32e8ce6 | 2012-08-17 14:05:56 -0700 | [diff] [blame] | 551 | [enable_osmesa=no]) |
Matt Turner | 2f142d5 | 2013-08-20 14:16:17 -0700 | [diff] [blame] | 552 | AC_ARG_ENABLE([gallium-osmesa], |
| 553 | [AS_HELP_STRING([--enable-gallium-osmesa], |
| 554 | [enable Gallium implementation of the OSMesa library @<:@default=disabled@:>@])], |
| 555 | [enable_gallium_osmesa="$enableval"], |
| 556 | [enable_gallium_osmesa=no]) |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 557 | AC_ARG_ENABLE([egl], |
| 558 | [AS_HELP_STRING([--disable-egl], |
| 559 | [disable EGL library @<:@default=enabled@:>@])], |
| 560 | [enable_egl="$enableval"], |
| 561 | [enable_egl=yes]) |
| 562 | |
Marek Olšák | 440d71d | 2011-06-14 05:38:58 +0200 | [diff] [blame] | 563 | AC_ARG_ENABLE([xorg], |
| 564 | [AS_HELP_STRING([--enable-xorg], |
| 565 | [enable support for X.Org DDX API @<:@default=no@:>@])], |
| 566 | [enable_xorg="$enableval"], |
| 567 | [enable_xorg=no]) |
Thomas Hellstrom | 424b121 | 2011-07-04 10:21:35 +0200 | [diff] [blame] | 568 | AC_ARG_ENABLE([xa], |
| 569 | [AS_HELP_STRING([--enable-xa], |
| 570 | [enable build of the XA X Acceleration API @<:@default=no@:>@])], |
| 571 | [enable_xa="$enableval"], |
| 572 | [enable_xa=no]) |
Benjamin Franzke | eddcecb | 2011-05-26 15:09:39 +0200 | [diff] [blame] | 573 | AC_ARG_ENABLE([gbm], |
| 574 | [AS_HELP_STRING([--enable-gbm], |
| 575 | [enable gbm library @<:@default=auto@:>@])], |
| 576 | [enable_gbm="$enableval"], |
| 577 | [enable_gbm=auto]) |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 578 | |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 579 | AC_ARG_ENABLE([xvmc], |
| 580 | [AS_HELP_STRING([--enable-xvmc], |
| 581 | [enable xvmc library @<:@default=auto@:>@])], |
| 582 | [enable_xvmc="$enableval"], |
| 583 | [enable_xvmc=auto]) |
| 584 | AC_ARG_ENABLE([vdpau], |
| 585 | [AS_HELP_STRING([--enable-vdpau], |
| 586 | [enable vdpau library @<:@default=auto@:>@])], |
| 587 | [enable_vdpau="$enableval"], |
| 588 | [enable_vdpau=auto]) |
Francisco Jerez | c6db1b3 | 2012-04-20 16:56:19 +0200 | [diff] [blame] | 589 | AC_ARG_ENABLE([opencl], |
| 590 | [AS_HELP_STRING([--enable-opencl], |
Tom Stellard | cf69a59 | 2013-01-18 16:26:12 +0000 | [diff] [blame] | 591 | [enable OpenCL library NOTE: Enabling this option will also enable |
| 592 | --with-llvm-shared-libs |
| 593 | @<:@default=no@:>@])], |
Quentin Glidic | 1e85713 | 2013-01-25 15:02:04 +0100 | [diff] [blame] | 594 | [], |
Francisco Jerez | c6db1b3 | 2012-04-20 16:56:19 +0200 | [diff] [blame] | 595 | [enable_opencl=no]) |
Matt Turner | c09a4cb | 2013-03-09 17:35:12 -0800 | [diff] [blame] | 596 | AC_ARG_ENABLE([xlib-glx], |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 597 | [AS_HELP_STRING([--enable-xlib-glx], |
Matt Turner | 32e8ce6 | 2012-08-17 14:05:56 -0700 | [diff] [blame] | 598 | [make GLX library Xlib-based instead of DRI-based @<:@default=disabled@:>@])], |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 599 | [enable_xlib_glx="$enableval"], |
Matt Turner | 32e8ce6 | 2012-08-17 14:05:56 -0700 | [diff] [blame] | 600 | [enable_xlib_glx=no]) |
Matt Turner | c09a4cb | 2013-03-09 17:35:12 -0800 | [diff] [blame] | 601 | AC_ARG_ENABLE([gallium-egl], |
Marek Olšák | 1251e1d | 2011-06-18 20:33:55 +0200 | [diff] [blame] | 602 | [AS_HELP_STRING([--enable-gallium-egl], |
| 603 | [enable optional EGL state tracker (not required |
| 604 | for EGL support in Gallium with OpenGL and OpenGL ES) |
| 605 | @<:@default=disable@:>@])], |
| 606 | [enable_gallium_egl="$enableval"], |
| 607 | [enable_gallium_egl=no]) |
Matt Turner | c09a4cb | 2013-03-09 17:35:12 -0800 | [diff] [blame] | 608 | AC_ARG_ENABLE([gallium-gbm], |
Benjamin Franzke | 48d4a00 | 2011-05-26 15:11:50 +0200 | [diff] [blame] | 609 | [AS_HELP_STRING([--enable-gallium-gbm], |
| 610 | [enable optional gbm state tracker (not required for |
| 611 | gbm support in Gallium) |
Benjamin Franzke | b18b299 | 2011-07-02 13:45:14 +0200 | [diff] [blame] | 612 | @<:@default=auto@:>@])], |
Benjamin Franzke | 48d4a00 | 2011-05-26 15:11:50 +0200 | [diff] [blame] | 613 | [enable_gallium_gbm="$enableval"], |
Benjamin Franzke | b18b299 | 2011-07-02 13:45:14 +0200 | [diff] [blame] | 614 | [enable_gallium_gbm=auto]) |
Chia-I Wu | be5f34a | 2010-10-27 16:14:27 +0800 | [diff] [blame] | 615 | |
Tom Stellard | ced73ea | 2012-04-17 09:26:28 -0400 | [diff] [blame] | 616 | AC_ARG_ENABLE([r600-llvm-compiler], |
Homer Hsing | 4050756 | 2012-05-15 18:56:17 -0400 | [diff] [blame] | 617 | [AS_HELP_STRING([--enable-r600-llvm-compiler], |
| 618 | [Enable experimental LLVM backend for graphics shaders @<:@default=disable@:>@])], |
Tom Stellard | ced73ea | 2012-04-17 09:26:28 -0400 | [diff] [blame] | 619 | [enable_r600_llvm="$enableval"], |
| 620 | [enable_r600_llvm=no]) |
| 621 | |
Matt Turner | c09a4cb | 2013-03-09 17:35:12 -0800 | [diff] [blame] | 622 | AC_ARG_ENABLE([gallium-tests], |
Francisco Jerez | 66f7fd9 | 2012-04-25 22:16:26 +0200 | [diff] [blame] | 623 | [AS_HELP_STRING([--enable-gallium-tests], |
| 624 | [Enable optional Gallium tests) @<:@default=disable@:>@])], |
| 625 | [enable_gallium_tests="$enableval"], |
| 626 | [enable_gallium_tests=no]) |
| 627 | |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 628 | # Option for Gallium drivers |
Damien Lespiau | 164a04e | 2013-01-14 13:54:57 +0000 | [diff] [blame] | 629 | |
| 630 | # Keep this in sync with the --with-gallium-drivers help string default value |
Thomas Hellstrom | 87118d8 | 2012-01-12 12:10:53 +0100 | [diff] [blame] | 631 | GALLIUM_DRIVERS_DEFAULT="r300,r600,svga,swrast" |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 632 | |
| 633 | AC_ARG_WITH([gallium-drivers], |
| 634 | [AS_HELP_STRING([--with-gallium-drivers@<:@=DIRS...@:>@], |
| 635 | [comma delimited Gallium drivers list, e.g. |
Chia-I Wu | 5816a47 | 2012-12-13 06:01:23 +0800 | [diff] [blame] | 636 | "i915,ilo,nouveau,r300,r600,radeonsi,freedreno,svga,swrast" |
Damien Lespiau | 164a04e | 2013-01-14 13:54:57 +0000 | [diff] [blame] | 637 | @<:@default=r300,r600,svga,swrast@:>@])], |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 638 | [with_gallium_drivers="$withval"], |
| 639 | [with_gallium_drivers="$GALLIUM_DRIVERS_DEFAULT"]) |
Chia-I Wu | 156e955 | 2010-10-30 14:26:01 +0800 | [diff] [blame] | 640 | |
Ian Romanick | db311b4 | 2011-06-22 11:35:27 -0700 | [diff] [blame] | 641 | # Doing '--without-gallium-drivers' will set this variable to 'no'. Clear it |
| 642 | # here so that the script doesn't choke on an unknown driver name later. |
| 643 | case "$with_gallium_drivers" in |
| 644 | yes) with_gallium_drivers="$GALLIUM_DRIVERS_DEFAULT" ;; |
| 645 | no) with_gallium_drivers='' ;; |
| 646 | esac |
| 647 | |
Chia-I Wu | be5f34a | 2010-10-27 16:14:27 +0800 | [diff] [blame] | 648 | if test "x$enable_opengl" = xno -a \ |
| 649 | "x$enable_gles1" = xno -a \ |
| 650 | "x$enable_gles2" = xno -a \ |
Marek Olšák | 440d71d | 2011-06-14 05:38:58 +0200 | [diff] [blame] | 651 | "x$enable_openvg" = xno -a \ |
| 652 | "x$enable_xorg" = xno -a \ |
Thomas Hellstrom | 424b121 | 2011-07-04 10:21:35 +0200 | [diff] [blame] | 653 | "x$enable_xa" = xno -a \ |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 654 | "x$enable_xvmc" = xno -a \ |
| 655 | "x$enable_vdpau" = xno -a \ |
Francisco Jerez | c6db1b3 | 2012-04-20 16:56:19 +0200 | [diff] [blame] | 656 | "x$enable_opencl" = xno; then |
Chia-I Wu | be5f34a | 2010-10-27 16:14:27 +0800 | [diff] [blame] | 657 | AC_MSG_ERROR([at least one API should be enabled]) |
| 658 | fi |
| 659 | |
Andreas Boll | 723b783 | 2013-02-01 13:39:42 +0100 | [diff] [blame] | 660 | # Building OpenGL ES1 and/or ES2 without OpenGL is not supported on mesa 9.0.x |
| 661 | if test "x$enable_opengl" = xno -a \ |
| 662 | "x$enable_gles1" = xyes; then |
| 663 | AC_MSG_ERROR([Building OpenGL ES1 without OpenGL is not supported]) |
| 664 | fi |
| 665 | |
| 666 | if test "x$enable_opengl" = xno -a \ |
| 667 | "x$enable_gles2" = xyes; then |
| 668 | AC_MSG_ERROR([Building OpenGL ES2 without OpenGL is not supported]) |
| 669 | fi |
| 670 | |
Matt Turner | 691c304 | 2013-01-18 23:43:05 -0800 | [diff] [blame] | 671 | AM_CONDITIONAL(HAVE_OPENGL, test "x$enable_opengl" = xyes) |
| 672 | AM_CONDITIONAL(HAVE_OPENGL_ES1, test "x$enable_gles1" = xyes) |
| 673 | AM_CONDITIONAL(HAVE_OPENGL_ES2, test "x$enable_gles2" = xyes) |
| 674 | AM_CONDITIONAL(NEED_OPENGL_COMMON, test "x$enable_opengl" = xyes -o \ |
| 675 | "x$enable_gles1" = xyes -o \ |
| 676 | "x$enable_gles2" = xyes) |
| 677 | |
Kenneth Graunke | 9d21b5d | 2012-01-04 23:49:18 -0800 | [diff] [blame] | 678 | if test "x$enable_glx" = xno; then |
Matt Turner | 32e8ce6 | 2012-08-17 14:05:56 -0700 | [diff] [blame] | 679 | AC_MSG_WARN([GLX disabled, disabling Xlib-GLX]) |
Kenneth Graunke | 9d21b5d | 2012-01-04 23:49:18 -0800 | [diff] [blame] | 680 | enable_xlib_glx=no |
| 681 | fi |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 682 | |
Matt Turner | 32e8ce6 | 2012-08-17 14:05:56 -0700 | [diff] [blame] | 683 | if test "x$enable_dri$enable_xlib_glx" = xyesyes; then |
| 684 | AC_MSG_ERROR([DRI and Xlib-GLX cannot be built together]) |
| 685 | fi |
| 686 | |
Michel Dänzer | 3b888f5 | 2013-01-31 11:47:55 +0100 | [diff] [blame] | 687 | if test "x$enable_opengl$enable_xlib_glx" = xnoyes; then |
| 688 | AC_MSG_ERROR([Xlib-GLX cannot be built without OpenGL]) |
| 689 | fi |
| 690 | |
| 691 | # Disable GLX if OpenGL is not enabled |
| 692 | if test "x$enable_glx$enable_opengl" = xyesno; then |
| 693 | AC_MSG_WARN([OpenGL not enabled, disabling GLX]) |
| 694 | enable_glx=no |
| 695 | fi |
| 696 | |
Matt Turner | 32e8ce6 | 2012-08-17 14:05:56 -0700 | [diff] [blame] | 697 | # Disable GLX if DRI and Xlib-GLX are not enabled |
| 698 | if test "x$enable_glx" = xyes -a \ |
| 699 | "x$enable_dri" = xno -a \ |
| 700 | "x$enable_xlib_glx" = xno; then |
| 701 | AC_MSG_WARN([Neither DRI nor Xlib-GLX enabled, disabling GLX]) |
| 702 | enable_glx=no |
| 703 | fi |
| 704 | |
Matt Turner | a9676ae | 2013-01-18 23:59:49 -0800 | [diff] [blame] | 705 | AM_CONDITIONAL(HAVE_DRI_GLX, test "x$enable_glx" = xyes -a \ |
| 706 | "x$enable_dri" = xyes) |
Matt Turner | 00f3d9b | 2012-08-21 22:06:17 -0700 | [diff] [blame] | 707 | AM_CONDITIONAL(HAVE_DRI, test "x$enable_dri" = xyes) |
Matt Turner | 8cdce6c | 2012-08-21 22:26:52 -0700 | [diff] [blame] | 708 | AM_CONDITIONAL(NEED_LIBMESA, test "x$enable_xlib_glx" = xyes -o \ |
| 709 | "x$enable_osmesa" = xyes) |
Matt Turner | 06ad64a | 2012-01-15 21:30:26 -0500 | [diff] [blame] | 710 | |
Matt Turner | 8c9b78a | 2012-08-17 14:22:47 -0700 | [diff] [blame] | 711 | AC_ARG_ENABLE([shared-glapi], |
| 712 | [AS_HELP_STRING([--enable-shared-glapi], |
| 713 | [Enable shared glapi for OpenGL @<:@default=yes@:>@])], |
| 714 | [enable_shared_glapi="$enableval"], |
| 715 | [enable_shared_glapi="$enable_dri"]) |
| 716 | |
| 717 | # Shared GLAPI is only useful for DRI |
| 718 | if test "x$enable_dri" = xno; then |
| 719 | AC_MSG_NOTICE([Shared GLAPI is only useful for DRI, disabling]) |
| 720 | enable_shared_glapi=no |
| 721 | fi |
| 722 | |
Matt Turner | 8c9b78a | 2012-08-17 14:22:47 -0700 | [diff] [blame] | 723 | AM_CONDITIONAL(HAVE_SHARED_GLAPI, test "x$enable_shared_glapi" = xyes) |
| 724 | |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 725 | dnl |
| 726 | dnl Driver specific build directories |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 727 | dnl |
Keith Whitwell | 51bff09 | 2010-03-11 14:43:00 +0000 | [diff] [blame] | 728 | GALLIUM_TARGET_DIRS="" |
Jakob Bornecrantz | c9f9867 | 2010-03-16 13:54:18 +0000 | [diff] [blame] | 729 | GALLIUM_WINSYS_DIRS="sw" |
Kai Wasserbäch | 0a22fb6 | 2011-11-29 22:36:02 +0100 | [diff] [blame] | 730 | GALLIUM_DRIVERS_DIRS="galahad trace rbug noop identity" |
Jakob Bornecrantz | 7e54d7d | 2009-02-11 02:38:21 +0100 | [diff] [blame] | 731 | GALLIUM_STATE_TRACKERS_DIRS="" |
| 732 | |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 733 | case "x$enable_glx$enable_xlib_glx" in |
| 734 | xyesyes) |
Jakob Bornecrantz | c9f9867 | 2010-03-16 13:54:18 +0000 | [diff] [blame] | 735 | GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/xlib" |
Keith Whitwell | 51bff09 | 2010-03-11 14:43:00 +0000 | [diff] [blame] | 736 | GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS libgl-xlib" |
Marek Olšák | 440d71d | 2011-06-14 05:38:58 +0200 | [diff] [blame] | 737 | GALLIUM_STATE_TRACKERS_DIRS="glx $GALLIUM_STATE_TRACKERS_DIRS" |
Matt Turner | b3f1f66 | 2013-01-20 15:32:08 -0800 | [diff] [blame] | 738 | NEED_WINSYS_XLIB="yes" |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 739 | ;; |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 740 | esac |
| 741 | |
| 742 | if test "x$enable_dri" = xyes; then |
Emil Velikov | 4ef9c3d | 2011-07-11 15:58:29 +0100 | [diff] [blame] | 743 | GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/dri" |
Marek Olšák | 440d71d | 2011-06-14 05:38:58 +0200 | [diff] [blame] | 744 | GALLIUM_STATE_TRACKERS_DIRS="dri $GALLIUM_STATE_TRACKERS_DIRS" |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 745 | fi |
| 746 | |
Matt Turner | 2f142d5 | 2013-08-20 14:16:17 -0700 | [diff] [blame] | 747 | if test "x$enable_gallium_osmesa" = xyes; then |
| 748 | if test -z "$with_gallium_drivers"; then |
| 749 | AC_MSG_ERROR([Cannot enable gallium_osmesa without Gallium]) |
| 750 | fi |
| 751 | if test "x$enable_osmesa" = xyes; then |
| 752 | AC_MSG_ERROR([Cannot enable both classic and Gallium OSMesa implementations]) |
| 753 | fi |
Brian Paul | 79eac7d | 2013-03-11 18:31:21 -0600 | [diff] [blame] | 754 | GALLIUM_STATE_TRACKERS_DIRS="osmesa $GALLIUM_STATE_TRACKERS_DIRS" |
| 755 | GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS osmesa" |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 756 | fi |
| 757 | |
Dave Airlie | 81fe198 | 2010-04-22 14:59:29 +1000 | [diff] [blame] | 758 | AC_SUBST([MESA_LLVM]) |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 759 | |
Chia-I Wu | 94ec5fd | 2011-06-27 09:19:02 +0900 | [diff] [blame] | 760 | # Check for libdrm |
| 761 | PKG_CHECK_MODULES([LIBDRM], [libdrm >= $LIBDRM_REQUIRED], |
| 762 | [have_libdrm=yes], [have_libdrm=no]) |
| 763 | |
| 764 | if test "x$enable_dri" = xyes; then |
| 765 | # DRI must be shared, I think |
| 766 | if test "$enable_static" = yes; then |
Matt Turner | 14819eb | 2012-08-01 08:32:49 -0700 | [diff] [blame] | 767 | AC_MSG_ERROR([Cannot use static libraries for DRI drivers]) |
Chia-I Wu | 94ec5fd | 2011-06-27 09:19:02 +0900 | [diff] [blame] | 768 | fi |
| 769 | |
Chia-I Wu | 8123934 | 2011-07-02 09:49:17 +0900 | [diff] [blame] | 770 | # not a hard requirement as swrast does not depend on it |
| 771 | if test "x$have_libdrm" = xyes; then |
| 772 | DRI_PC_REQ_PRIV="libdrm >= $LIBDRM_REQUIRED" |
Chia-I Wu | 94ec5fd | 2011-06-27 09:19:02 +0900 | [diff] [blame] | 773 | fi |
Chia-I Wu | 94ec5fd | 2011-06-27 09:19:02 +0900 | [diff] [blame] | 774 | fi |
| 775 | |
Samuel Thibault | 7585617 | 2011-03-14 22:08:21 +0000 | [diff] [blame] | 776 | dnl Direct rendering or just indirect rendering |
nobled | e7d18ed | 2011-03-14 22:08:22 +0000 | [diff] [blame] | 777 | case "$host_os" in |
| 778 | gnu*) |
| 779 | dnl Disable by default on GNU/Hurd |
| 780 | driglx_direct_default="no" |
| 781 | ;; |
Jon TURNEY | c6e33ca | 2011-03-14 22:08:23 +0000 | [diff] [blame] | 782 | cygwin*) |
| 783 | dnl Disable by default on cygwin |
| 784 | driglx_direct_default="no" |
| 785 | ;; |
nobled | e7d18ed | 2011-03-14 22:08:22 +0000 | [diff] [blame] | 786 | *) |
| 787 | driglx_direct_default="yes" |
| 788 | ;; |
| 789 | esac |
Samuel Thibault | 7585617 | 2011-03-14 22:08:21 +0000 | [diff] [blame] | 790 | AC_ARG_ENABLE([driglx-direct], |
| 791 | [AS_HELP_STRING([--disable-driglx-direct], |
Andreas Boll | 5ecbc3a | 2012-11-10 17:58:49 +0100 | [diff] [blame] | 792 | [disable direct rendering in GLX and EGL for DRI \ |
nobled | e7d18ed | 2011-03-14 22:08:22 +0000 | [diff] [blame] | 793 | @<:@default=auto@:>@])], |
Samuel Thibault | 7585617 | 2011-03-14 22:08:21 +0000 | [diff] [blame] | 794 | [driglx_direct="$enableval"], |
nobled | e7d18ed | 2011-03-14 22:08:22 +0000 | [diff] [blame] | 795 | [driglx_direct="$driglx_direct_default"]) |
Samuel Thibault | 7585617 | 2011-03-14 22:08:21 +0000 | [diff] [blame] | 796 | |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 797 | dnl |
| 798 | dnl libGL configuration per driver |
| 799 | dnl |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 800 | case "x$enable_glx$enable_xlib_glx" in |
| 801 | xyesyes) |
| 802 | # Xlib-based GLX |
Matt Turner | e273ed3 | 2012-08-14 12:24:31 -0700 | [diff] [blame] | 803 | PKG_CHECK_MODULES([XLIBGL], [x11 xext]) |
| 804 | GL_PC_REQ_PRIV="x11 xext" |
| 805 | X11_INCLUDES="$X11_INCLUDES $XLIBGL_CFLAGS" |
| 806 | GL_LIB_DEPS="$XLIBGL_LIBS" |
Matt Turner | b6651ae | 2012-09-18 21:51:25 -0700 | [diff] [blame] | 807 | GL_LIB_DEPS="$GL_LIB_DEPS $SELINUX_LIBS -lm $PTHREAD_LIBS $DLOPEN_LIBS" |
| 808 | GL_PC_LIB_PRIV="$GL_PC_LIB_PRIV $SELINUX_LIBS -lm $PTHREAD_LIBS" |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 809 | ;; |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 810 | xyesno) |
| 811 | # DRI-based GLX |
Jesse Barnes | f2f83d9 | 2010-01-11 17:28:10 -0500 | [diff] [blame] | 812 | PKG_CHECK_MODULES([GLPROTO], [glproto >= $GLPROTO_REQUIRED]) |
Samuel Thibault | 7585617 | 2011-03-14 22:08:21 +0000 | [diff] [blame] | 813 | if test x"$driglx_direct" = xyes; then |
Chia-I Wu | 94ec5fd | 2011-06-27 09:19:02 +0900 | [diff] [blame] | 814 | if test "x$have_libdrm" != xyes; then |
| 815 | AC_MSG_ERROR([Direct rendering requires libdrm >= $LIBDRM_REQUIRED]) |
| 816 | fi |
Samuel Thibault | 7585617 | 2011-03-14 22:08:21 +0000 | [diff] [blame] | 817 | PKG_CHECK_MODULES([DRI2PROTO], [dri2proto >= $DRI2PROTO_REQUIRED]) |
Matt Turner | af6aeae | 2012-09-11 17:08:17 -0700 | [diff] [blame] | 818 | GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV libdrm >= $LIBDRM_REQUIRED" |
Samuel Thibault | 7585617 | 2011-03-14 22:08:21 +0000 | [diff] [blame] | 819 | fi |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 820 | |
| 821 | # find the DRI deps for libGL |
Eric Anholt | bb01f67 | 2012-09-25 08:43:44 -0700 | [diff] [blame] | 822 | dri_modules="x11 xext xdamage xfixes x11-xcb xcb-glx >= 1.8.1 xcb-dri2 >= 1.8" |
Jon TURNEY | 2b9dac3 | 2010-04-21 12:58:54 +0100 | [diff] [blame] | 823 | |
Matt Turner | e273ed3 | 2012-08-14 12:24:31 -0700 | [diff] [blame] | 824 | # add xf86vidmode if available |
| 825 | PKG_CHECK_MODULES([XF86VIDMODE], [xxf86vm], HAVE_XF86VIDMODE=yes, HAVE_XF86VIDMODE=no) |
| 826 | if test "$HAVE_XF86VIDMODE" = yes ; then |
| 827 | dri_modules="$dri_modules xxf86vm" |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 828 | fi |
| 829 | |
Matt Turner | e273ed3 | 2012-08-14 12:24:31 -0700 | [diff] [blame] | 830 | PKG_CHECK_MODULES([DRIGL], [$dri_modules]) |
| 831 | GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV $dri_modules" |
| 832 | X11_INCLUDES="$X11_INCLUDES $DRIGL_CFLAGS" |
| 833 | GL_LIB_DEPS="$DRIGL_LIBS" |
| 834 | |
Matt Turner | b6651ae | 2012-09-18 21:51:25 -0700 | [diff] [blame] | 835 | # need DRM libs, $PTHREAD_LIBS, etc. |
| 836 | GL_LIB_DEPS="$GL_LIB_DEPS $LIBDRM_LIBS -lm $PTHREAD_LIBS $DLOPEN_LIBS" |
| 837 | GL_PC_LIB_PRIV="-lm $PTHREAD_LIBS $DLOPEN_LIBS" |
Dan Nicholson | 979ff51 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 838 | ;; |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 839 | esac |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 840 | |
Ian Romanick | 4becf67 | 2012-01-03 11:35:59 -0800 | [diff] [blame] | 841 | # This is outside the case (above) so that it is invoked even for non-GLX |
| 842 | # builds. |
Eric Anholt | 8ffb098 | 2012-02-05 06:10:56 +0100 | [diff] [blame] | 843 | AM_CONDITIONAL(HAVE_XF86VIDMODE, test "x$HAVE_XF86VIDMODE" = xyes) |
Ian Romanick | 4becf67 | 2012-01-03 11:35:59 -0800 | [diff] [blame] | 844 | |
Matt Turner | b6651ae | 2012-09-18 21:51:25 -0700 | [diff] [blame] | 845 | GLESv1_CM_LIB_DEPS="$LIBDRM_LIBS -lm $PTHREAD_LIBS $DLOPEN_LIBS" |
| 846 | GLESv1_CM_PC_LIB_PRIV="-lm $PTHREAD_LIBS $DLOPEN_LIBS" |
| 847 | GLESv2_LIB_DEPS="$LIBDRM_LIBS -lm $PTHREAD_LIBS $DLOPEN_LIBS" |
| 848 | GLESv2_PC_LIB_PRIV="-lm $PTHREAD_LIBS $DLOPEN_LIBS" |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 849 | |
Robert Bragg | dda49c3 | 2012-09-19 16:12:08 +0100 | [diff] [blame] | 850 | AC_SUBST([X11_INCLUDES]) |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 851 | AC_SUBST([GL_LIB_DEPS]) |
Dan Nicholson | 71e208b | 2008-11-24 11:01:57 -0800 | [diff] [blame] | 852 | AC_SUBST([GL_PC_REQ_PRIV]) |
| 853 | AC_SUBST([GL_PC_LIB_PRIV]) |
| 854 | AC_SUBST([GL_PC_CFLAGS]) |
| 855 | AC_SUBST([DRI_PC_REQ_PRIV]) |
Li Peng | c33c191 | 2010-07-30 12:26:15 +0800 | [diff] [blame] | 856 | AC_SUBST([GLESv1_CM_LIB_DEPS]) |
Kristian Høgsberg | 9e4f2da | 2010-05-04 14:13:11 -0400 | [diff] [blame] | 857 | AC_SUBST([GLESv1_CM_PC_LIB_PRIV]) |
Kristian Høgsberg | 9339c12 | 2010-03-05 19:01:43 -0500 | [diff] [blame] | 858 | AC_SUBST([GLESv2_LIB_DEPS]) |
Kristian Høgsberg | 9e4f2da | 2010-05-04 14:13:11 -0400 | [diff] [blame] | 859 | AC_SUBST([GLESv2_PC_LIB_PRIV]) |
| 860 | |
Matt Turner | bee2edb | 2012-08-17 16:24:32 -0700 | [diff] [blame] | 861 | DRI_LIB_DEPS="\$(top_builddir)/src/mesa/libdricore/libdricore${VERSION}.la" |
Christopher James Halse Rogers | d1e28b2 | 2011-02-03 11:19:32 +1100 | [diff] [blame] | 862 | |
Jon TURNEY | 2b9dac3 | 2010-04-21 12:58:54 +0100 | [diff] [blame] | 863 | AC_SUBST([HAVE_XF86VIDMODE]) |
| 864 | |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 865 | dnl |
Chia-I Wu | 5029ea4 | 2011-06-27 13:06:39 +0900 | [diff] [blame] | 866 | dnl More GLX setup |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 867 | dnl |
Chia-I Wu | 5029ea4 | 2011-06-27 13:06:39 +0900 | [diff] [blame] | 868 | case "x$enable_glx$enable_xlib_glx" in |
| 869 | xyesyes) |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 870 | DEFINES="$DEFINES -DUSE_XSHM" |
Chia-I Wu | 5029ea4 | 2011-06-27 13:06:39 +0900 | [diff] [blame] | 871 | ;; |
| 872 | xyesno) |
| 873 | DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING" |
| 874 | if test "x$driglx_direct" = xyes; then |
| 875 | DEFINES="$DEFINES -DGLX_DIRECT_RENDERING" |
| 876 | fi |
| 877 | ;; |
| 878 | esac |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 879 | |
| 880 | dnl |
Tom Fogal | 31351dc | 2010-12-05 17:58:32 -0700 | [diff] [blame] | 881 | dnl TLS detection |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 882 | dnl |
Tom Fogal | 31351dc | 2010-12-05 17:58:32 -0700 | [diff] [blame] | 883 | |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 884 | AC_ARG_ENABLE([glx-tls], |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 885 | [AS_HELP_STRING([--enable-glx-tls], |
Dan Nicholson | 79ad458 | 2007-12-07 19:11:01 -0800 | [diff] [blame] | 886 | [enable TLS support in GLX @<:@default=disabled@:>@])], |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 887 | [GLX_USE_TLS="$enableval"], |
| 888 | [GLX_USE_TLS=no]) |
Tom Fogal | 31351dc | 2010-12-05 17:58:32 -0700 | [diff] [blame] | 889 | AC_SUBST(GLX_TLS, ${GLX_USE_TLS}) |
| 890 | |
Matt Turner | 814345f | 2012-09-18 22:09:26 -0700 | [diff] [blame] | 891 | AS_IF([test "x$GLX_USE_TLS" = xyes -a "x$ax_pthread_ok" = xyes], |
Matt Turner | 9a51edf | 2012-10-11 10:57:26 -0700 | [diff] [blame] | 892 | [DEFINES="${DEFINES} -DGLX_USE_TLS -DHAVE_PTHREAD"]) |
Tom Fogal | 4484297 | 2011-02-21 22:32:18 -0700 | [diff] [blame] | 893 | |
Tom Fogal | 31351dc | 2010-12-05 17:58:32 -0700 | [diff] [blame] | 894 | dnl |
| 895 | dnl More DRI setup |
| 896 | dnl |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 897 | dnl Directory for DRI drivers |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 898 | AC_ARG_WITH([dri-driverdir], |
Dan Nicholson | af3d2f2 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 899 | [AS_HELP_STRING([--with-dri-driverdir=DIR], |
Dan Nicholson | 5dbbde5 | 2008-05-06 06:21:41 -0700 | [diff] [blame] | 900 | [directory for the DRI drivers @<:@${libdir}/dri@:>@])], |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 901 | [DRI_DRIVER_INSTALL_DIR="$withval"], |
Dan Nicholson | 5dbbde5 | 2008-05-06 06:21:41 -0700 | [diff] [blame] | 902 | [DRI_DRIVER_INSTALL_DIR='${libdir}/dri']) |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 903 | AC_SUBST([DRI_DRIVER_INSTALL_DIR]) |
Chow Loong Jin | 35506de | 2009-10-28 14:34:14 +0800 | [diff] [blame] | 904 | dnl Extra search path for DRI drivers |
| 905 | AC_ARG_WITH([dri-searchpath], |
| 906 | [AS_HELP_STRING([--with-dri-searchpath=DIRS...], |
| 907 | [semicolon delimited DRI driver search directories @<:@${libdir}/dri@:>@])], |
| 908 | [DRI_DRIVER_SEARCH_DIR="$withval"], |
| 909 | [DRI_DRIVER_SEARCH_DIR='${DRI_DRIVER_INSTALL_DIR}']) |
| 910 | AC_SUBST([DRI_DRIVER_SEARCH_DIR]) |
Dan Nicholson | af3d2f2 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 911 | dnl Which drivers to build - default is chosen by platform |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 912 | AC_ARG_WITH([dri-drivers], |
Dan Nicholson | af3d2f2 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 913 | [AS_HELP_STRING([--with-dri-drivers@<:@=DIRS...@:>@], |
Dan Nicholson | 5cae1b7 | 2008-06-30 10:28:02 -0700 | [diff] [blame] | 914 | [comma delimited DRI drivers list, e.g. |
Michel Dänzer | cade071 | 2009-07-10 14:49:46 +0200 | [diff] [blame] | 915 | "swrast,i965,radeon" @<:@default=auto@:>@])], |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 916 | [with_dri_drivers="$withval"], |
| 917 | [with_dri_drivers=yes]) |
Dan Nicholson | af3d2f2 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 918 | if test "x$with_dri_drivers" = x; then |
| 919 | with_dri_drivers=no |
| 920 | fi |
| 921 | |
| 922 | dnl If $with_dri_drivers is yes, directories will be added through |
| 923 | dnl platform checks |
| 924 | DRI_DIRS="" |
| 925 | case "$with_dri_drivers" in |
Florent Thoumie | b5095ab | 2008-07-28 14:44:43 +0100 | [diff] [blame] | 926 | no) ;; |
| 927 | yes) |
Brian Paul | 4ede5fb | 2013-02-26 08:49:34 -0700 | [diff] [blame] | 928 | # classic DRI drivers |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 929 | if test "x$enable_opengl" = xyes; then |
| 930 | DRI_DIRS="yes" |
| 931 | fi |
Florent Thoumie | b5095ab | 2008-07-28 14:44:43 +0100 | [diff] [blame] | 932 | ;; |
Dan Nicholson | af3d2f2 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 933 | *) |
| 934 | # verify the requested driver directories exist |
Dan Nicholson | e6e4f25 | 2008-07-06 14:17:39 -0700 | [diff] [blame] | 935 | dri_drivers=`IFS=', '; echo $with_dri_drivers` |
Dan Nicholson | af3d2f2 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 936 | for driver in $dri_drivers; do |
| 937 | test -d "$srcdir/src/mesa/drivers/dri/$driver" || \ |
Matt Turner | 14819eb | 2012-08-01 08:32:49 -0700 | [diff] [blame] | 938 | AC_MSG_ERROR([DRI driver directory '$driver' does not exist]) |
Dan Nicholson | af3d2f2 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 939 | done |
| 940 | DRI_DIRS="$dri_drivers" |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 941 | if test -n "$DRI_DIRS" -a "x$enable_opengl" != xyes; then |
| 942 | AC_MSG_ERROR([--with-dri-drivers requires OpenGL]) |
| 943 | fi |
Dan Nicholson | af3d2f2 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 944 | ;; |
| 945 | esac |
| 946 | |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 947 | dnl Set DRI_DIRS, DEFINES and LIB_DEPS |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 948 | if test "x$enable_dri" = xyes; then |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 949 | # Platform specific settings and drivers to build |
| 950 | case "$host_os" in |
| 951 | linux*) |
Brian Paul | 7f8434b | 2013-02-26 08:49:34 -0700 | [diff] [blame] | 952 | DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1" |
Chia-I Wu | 5029ea4 | 2011-06-27 13:06:39 +0900 | [diff] [blame] | 953 | DEFINES="$DEFINES -DHAVE_ALIAS" |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 954 | |
| 955 | case "$host_cpu" in |
Jean-Sébastien Pédron | 148f0de | 2013-06-05 13:27:37 +0200 | [diff] [blame] | 956 | x86_64|amd64) |
Florent Thoumie | b5095ab | 2008-07-28 14:44:43 +0100 | [diff] [blame] | 957 | if test "x$DRI_DIRS" = "xyes"; then |
Eric Anholt | 2f4c7eb | 2011-10-20 14:55:53 -0700 | [diff] [blame] | 958 | DRI_DIRS="i915 i965 nouveau r200 radeon swrast" |
Dan Nicholson | af3d2f2 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 959 | fi |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 960 | ;; |
| 961 | powerpc*) |
Dan Nicholson | a76e245 | 2007-12-07 11:25:08 -0800 | [diff] [blame] | 962 | # Build only the drivers for cards that exist on PowerPC. |
Florent Thoumie | b5095ab | 2008-07-28 14:44:43 +0100 | [diff] [blame] | 963 | if test "x$DRI_DIRS" = "xyes"; then |
Eric Anholt | 2f4c7eb | 2011-10-20 14:55:53 -0700 | [diff] [blame] | 964 | DRI_DIRS="r200 radeon swrast" |
Dan Nicholson | af3d2f2 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 965 | fi |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 966 | ;; |
Dave Airlie | 2b0e75e | 2008-06-12 12:06:50 +1000 | [diff] [blame] | 967 | sparc*) |
Ian Romanick | e434416 | 2011-08-24 15:21:58 -0700 | [diff] [blame] | 968 | # Build only the drivers for cards that exist on sparc |
Florent Thoumie | b5095ab | 2008-07-28 14:44:43 +0100 | [diff] [blame] | 969 | if test "x$DRI_DIRS" = "xyes"; then |
Eric Anholt | 2f4c7eb | 2011-10-20 14:55:53 -0700 | [diff] [blame] | 970 | DRI_DIRS="r200 radeon swrast" |
Dave Airlie | 2b0e75e | 2008-06-12 12:06:50 +1000 | [diff] [blame] | 971 | fi |
| 972 | ;; |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 973 | esac |
| 974 | ;; |
Jonathan Gray | 78fbb41 | 2013-06-26 17:11:57 +1000 | [diff] [blame] | 975 | freebsd* | dragonfly* | *netbsd* | openbsd*) |
Matt Turner | 9a51edf | 2012-10-11 10:57:26 -0700 | [diff] [blame] | 976 | DEFINES="$DEFINES -DHAVE_PTHREAD -DUSE_EXTERNAL_DXTN_LIB=1" |
Brian Paul | 7f8434b | 2013-02-26 08:49:34 -0700 | [diff] [blame] | 977 | DEFINES="$DEFINES -DHAVE_ALIAS" |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 978 | |
Florent Thoumie | b5095ab | 2008-07-28 14:44:43 +0100 | [diff] [blame] | 979 | if test "x$DRI_DIRS" = "xyes"; then |
Eric Anholt | 2f4c7eb | 2011-10-20 14:55:53 -0700 | [diff] [blame] | 980 | DRI_DIRS="i915 i965 nouveau r200 radeon swrast" |
Dan Nicholson | af3d2f2 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 981 | fi |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 982 | ;; |
Samuel Thibault | d18dd6a | 2009-04-23 05:43:22 -0700 | [diff] [blame] | 983 | gnu*) |
Brian Paul | 7f8434b | 2013-02-26 08:49:34 -0700 | [diff] [blame] | 984 | DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1" |
Chia-I Wu | 5029ea4 | 2011-06-27 13:06:39 +0900 | [diff] [blame] | 985 | DEFINES="$DEFINES -DHAVE_ALIAS" |
Samuel Thibault | d18dd6a | 2009-04-23 05:43:22 -0700 | [diff] [blame] | 986 | ;; |
Alan Coopersmith | e1f9adc | 2008-06-20 17:58:53 -0700 | [diff] [blame] | 987 | solaris*) |
Brian Paul | 7f8434b | 2013-02-26 08:49:34 -0700 | [diff] [blame] | 988 | DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1" |
Alan Coopersmith | e1f9adc | 2008-06-20 17:58:53 -0700 | [diff] [blame] | 989 | ;; |
Jon TURNEY | c6e33ca | 2011-03-14 22:08:23 +0000 | [diff] [blame] | 990 | cygwin*) |
Brian Paul | 7f8434b | 2013-02-26 08:49:34 -0700 | [diff] [blame] | 991 | DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1" |
Jon TURNEY | c6e33ca | 2011-03-14 22:08:23 +0000 | [diff] [blame] | 992 | if test "x$DRI_DIRS" = "xyes"; then |
| 993 | DRI_DIRS="swrast" |
| 994 | fi |
| 995 | ;; |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 996 | esac |
Dan Nicholson | 112a40e | 2008-02-21 10:17:19 -0800 | [diff] [blame] | 997 | |
| 998 | # default drivers |
Florent Thoumie | b5095ab | 2008-07-28 14:44:43 +0100 | [diff] [blame] | 999 | if test "x$DRI_DIRS" = "xyes"; then |
Eric Anholt | 2f4c7eb | 2011-10-20 14:55:53 -0700 | [diff] [blame] | 1000 | DRI_DIRS="i915 i965 nouveau r200 radeon swrast" |
Dan Nicholson | 112a40e | 2008-02-21 10:17:19 -0800 | [diff] [blame] | 1001 | fi |
| 1002 | |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 1003 | DRI_DIRS=`echo "$DRI_DIRS" | $SED 's/ */ /g'` |
| 1004 | |
| 1005 | # Check for expat |
Matt Turner | 7de78ce5 | 2013-03-05 10:27:22 -0800 | [diff] [blame] | 1006 | EXPAT_INCLUDES="" |
| 1007 | EXPAT_LIB=-lexpat |
| 1008 | AC_ARG_WITH([expat], |
| 1009 | [AS_HELP_STRING([--with-expat=DIR], |
| 1010 | [expat install directory])],[ |
| 1011 | EXPAT_INCLUDES="-I$withval/include" |
| 1012 | CPPFLAGS="$CPPFLAGS $EXPAT_INCLUDES" |
| 1013 | LDFLAGS="$LDFLAGS -L$withval/$LIB_DIR" |
| 1014 | EXPAT_LIB="-L$withval/$LIB_DIR -lexpat" |
| 1015 | ]) |
| 1016 | AC_CHECK_HEADER([expat.h],[],[AC_MSG_ERROR([Expat required for DRI.])]) |
| 1017 | save_LIBS="$LIBS" |
| 1018 | AC_CHECK_LIB([expat],[XML_ParserCreate],[], |
| 1019 | [AC_MSG_ERROR([Expat required for DRI.])]) |
| 1020 | LIBS="$save_LIBS" |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 1021 | |
Matt Turner | 07f2dee | 2013-03-05 10:25:55 -0800 | [diff] [blame] | 1022 | # If we are building any DRI driver other than swrast. |
Matt Turner | 7de78ce5 | 2013-03-05 10:27:22 -0800 | [diff] [blame] | 1023 | if test -n "$DRI_DIRS" -a x"$DRI_DIRS" != xswrast; then |
Jon TURNEY | ffc8494 | 2012-02-02 10:39:04 +0000 | [diff] [blame] | 1024 | # ... libdrm is required |
Chia-I Wu | 8123934 | 2011-07-02 09:49:17 +0900 | [diff] [blame] | 1025 | if test "x$have_libdrm" != xyes; then |
| 1026 | AC_MSG_ERROR([DRI drivers requires libdrm >= $LIBDRM_REQUIRED]) |
| 1027 | fi |
Jon TURNEY | ffc8494 | 2012-02-02 10:39:04 +0000 | [diff] [blame] | 1028 | # ... and build dricommon |
| 1029 | HAVE_COMMON_DRI=yes |
Chia-I Wu | 8123934 | 2011-07-02 09:49:17 +0900 | [diff] [blame] | 1030 | fi |
| 1031 | |
Matt Turner | 2b3a8cb | 2012-01-13 14:30:36 -0500 | [diff] [blame] | 1032 | # put all the necessary libs together |
Matt Turner | b6651ae | 2012-09-18 21:51:25 -0700 | [diff] [blame] | 1033 | DRI_LIB_DEPS="$DRI_LIB_DEPS $SELINUX_LIBS $LIBDRM_LIBS $EXPAT_LIB -lm $PTHREAD_LIBS $DLOPEN_LIBS" |
Dave Airlie | ec83535 | 2012-12-04 09:25:13 +1000 | [diff] [blame] | 1034 | GALLIUM_DRI_LIB_DEPS="$GALLIUM_DRI_LIB_DEPS $SELINUX_LIBS $LIBDRM_LIBS $EXPAT_LIB -lm $CLOCK_LIB $PTHREAD_LIBS $DLOPEN_LIBS" |
Eric Anholt | 11e494a | 2013-09-20 12:37:04 -0700 | [diff] [blame] | 1035 | |
| 1036 | DRI_DRIVER_LDFLAGS="-module -avoid-version -shared -Wl,-Bsymbolic" |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 1037 | fi |
Matt Turner | 523c015 | 2012-09-20 15:08:02 -0700 | [diff] [blame] | 1038 | AM_CONDITIONAL(NEED_LIBDRICORE, test -n "$DRI_DIRS") |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 1039 | AC_SUBST([EXPAT_INCLUDES]) |
| 1040 | AC_SUBST([DRI_LIB_DEPS]) |
Eric Anholt | 11e494a | 2013-09-20 12:37:04 -0700 | [diff] [blame] | 1041 | AC_SUBST([DRI_DRIVER_LDFLAGS]) |
Jon TURNEY | defadf2 | 2012-07-08 12:19:24 +0100 | [diff] [blame] | 1042 | AC_SUBST([GALLIUM_DRI_LIB_DEPS]) |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 1043 | |
Kristian Høgsberg | 8616cec | 2010-01-01 17:03:33 -0500 | [diff] [blame] | 1044 | case $DRI_DIRS in |
| 1045 | *i915*|*i965*) |
Tormod Volden | 903185b | 2011-01-25 13:25:18 -0800 | [diff] [blame] | 1046 | PKG_CHECK_MODULES([INTEL], [libdrm_intel >= $LIBDRM_INTEL_REQUIRED]) |
Eric Anholt | e326480 | 2012-01-12 14:28:37 -0800 | [diff] [blame] | 1047 | |
Matt Turner | 3c87dfc | 2012-01-14 21:57:32 -0500 | [diff] [blame] | 1048 | for d in $(echo $DRI_DIRS | sed 's/,/ /g'); do |
| 1049 | case $d in |
| 1050 | i915) |
| 1051 | HAVE_I915_DRI=yes; |
| 1052 | ;; |
| 1053 | i965) |
| 1054 | HAVE_I965_DRI=yes; |
| 1055 | ;; |
| 1056 | esac |
| 1057 | done |
Eric Anholt | e326480 | 2012-01-12 14:28:37 -0800 | [diff] [blame] | 1058 | |
Kristian Høgsberg | 8616cec | 2010-01-01 17:03:33 -0500 | [diff] [blame] | 1059 | ;; |
Kristian Høgsberg | 27fe7a7 | 2010-01-07 10:29:29 -0500 | [diff] [blame] | 1060 | esac |
Kristian Høgsberg | 8616cec | 2010-01-01 17:03:33 -0500 | [diff] [blame] | 1061 | |
Matt Turner | e0ee818 | 2012-01-14 22:21:30 -0500 | [diff] [blame] | 1062 | case $DRI_DIRS in |
Matt Turner | 3f96434 | 2012-01-15 10:20:30 -0500 | [diff] [blame] | 1063 | *nouveau*) |
Ben Skeggs | 2e47d01 | 2011-12-23 14:03:49 +1000 | [diff] [blame] | 1064 | PKG_CHECK_MODULES([NOUVEAU], [libdrm_nouveau >= $LIBDRM_NVVIEUX_REQUIRED]) |
Matt Turner | 3f96434 | 2012-01-15 10:20:30 -0500 | [diff] [blame] | 1065 | HAVE_NOUVEAU_DRI=yes; |
| 1066 | ;; |
| 1067 | esac |
| 1068 | |
| 1069 | case $DRI_DIRS in |
Matt Turner | b38d7a0 | 2012-01-15 10:04:58 -0500 | [diff] [blame] | 1070 | *radeon*|*r200*) |
Matt Turner | e0ee818 | 2012-01-14 22:21:30 -0500 | [diff] [blame] | 1071 | PKG_CHECK_MODULES([RADEON], [libdrm_radeon >= $LIBDRM_RADEON_REQUIRED]) |
| 1072 | |
| 1073 | for d in $(echo $DRI_DIRS | sed 's/,/ /g'); do |
| 1074 | case $d in |
| 1075 | radeon) |
| 1076 | HAVE_RADEON_DRI=yes; |
| 1077 | ;; |
Matt Turner | b38d7a0 | 2012-01-15 10:04:58 -0500 | [diff] [blame] | 1078 | r200) |
| 1079 | HAVE_R200_DRI=yes; |
| 1080 | ;; |
Matt Turner | e0ee818 | 2012-01-14 22:21:30 -0500 | [diff] [blame] | 1081 | esac |
| 1082 | done |
| 1083 | |
| 1084 | ;; |
| 1085 | esac |
| 1086 | |
Matt Turner | 349845f | 2012-01-15 11:39:48 -0500 | [diff] [blame] | 1087 | case $DRI_DIRS in |
| 1088 | *swrast*) |
| 1089 | HAVE_SWRAST_DRI=yes; |
| 1090 | ;; |
| 1091 | esac |
| 1092 | |
Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 1093 | dnl |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 1094 | dnl OSMesa configuration |
| 1095 | dnl |
Dan Nicholson | 979ff51 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 1096 | |
Dan Nicholson | 6689f9e | 2007-12-05 21:04:15 -0800 | [diff] [blame] | 1097 | dnl Configure the channel bits for OSMesa (libOSMesa, libOSMesa16, ...) |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 1098 | AC_ARG_WITH([osmesa-bits], |
Dan Nicholson | 6689f9e | 2007-12-05 21:04:15 -0800 | [diff] [blame] | 1099 | [AS_HELP_STRING([--with-osmesa-bits=BITS], |
| 1100 | [OSMesa channel bits and library name: 8, 16, 32 @<:@default=8@:>@])], |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 1101 | [osmesa_bits="$withval"], |
| 1102 | [osmesa_bits=8]) |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 1103 | if test "x$osmesa_bits" != x8; then |
| 1104 | if test "x$enable_dri" = xyes -o "x$enable_glx" = xyes; then |
| 1105 | AC_MSG_WARN([Ignoring OSMesa channel bits because of non-OSMesa driver]) |
| 1106 | osmesa_bits=8 |
| 1107 | fi |
Dan Nicholson | 6689f9e | 2007-12-05 21:04:15 -0800 | [diff] [blame] | 1108 | fi |
| 1109 | case "x$osmesa_bits" in |
| 1110 | x8) |
Tom Fogal | c0573fb | 2011-10-10 10:33:18 -0600 | [diff] [blame] | 1111 | OSMESA_LIB="${OSMESA_LIB}" |
Dan Nicholson | 6689f9e | 2007-12-05 21:04:15 -0800 | [diff] [blame] | 1112 | ;; |
| 1113 | x16|x32) |
Tom Fogal | c0573fb | 2011-10-10 10:33:18 -0600 | [diff] [blame] | 1114 | OSMESA_LIB="${OSMESA_LIB}$osmesa_bits" |
Dan Nicholson | 6689f9e | 2007-12-05 21:04:15 -0800 | [diff] [blame] | 1115 | DEFINES="$DEFINES -DCHAN_BITS=$osmesa_bits -DDEFAULT_SOFTWARE_DEPTH_BITS=31" |
| 1116 | ;; |
| 1117 | *) |
| 1118 | AC_MSG_ERROR([OSMesa bits '$osmesa_bits' is not a valid option]) |
| 1119 | ;; |
| 1120 | esac |
Dan Nicholson | 6689f9e | 2007-12-05 21:04:15 -0800 | [diff] [blame] | 1121 | |
Matt Turner | 2f142d5 | 2013-08-20 14:16:17 -0700 | [diff] [blame] | 1122 | if test "x$enable_osmesa" = xyes -o "x$enable_gallium_osmesa" = xyes; then |
Alan Coopersmith | e1f9adc | 2008-06-20 17:58:53 -0700 | [diff] [blame] | 1123 | # only link libraries with osmesa if shared |
Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 1124 | if test "$enable_static" = no; then |
Matt Turner | b6651ae | 2012-09-18 21:51:25 -0700 | [diff] [blame] | 1125 | OSMESA_LIB_DEPS="-lm $PTHREAD_LIBS $SELINUX_LIBS $DLOPEN_LIBS" |
Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 1126 | else |
| 1127 | OSMESA_LIB_DEPS="" |
| 1128 | fi |
Matt Turner | 7ef94c6 | 2012-01-31 21:34:42 -0500 | [diff] [blame] | 1129 | OSMESA_MESA_DEPS="" |
Matt Turner | b6651ae | 2012-09-18 21:51:25 -0700 | [diff] [blame] | 1130 | OSMESA_PC_LIB_PRIV="-lm $PTHREAD_LIBS $SELINUX_LIBS $DLOPEN_LIBS" |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 1131 | fi |
Laurent Carlier | 284325d | 2012-06-24 09:51:27 +0200 | [diff] [blame] | 1132 | |
Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 1133 | AC_SUBST([OSMESA_LIB_DEPS]) |
Matt Turner | 7ef94c6 | 2012-01-31 21:34:42 -0500 | [diff] [blame] | 1134 | AC_SUBST([OSMESA_MESA_DEPS]) |
| 1135 | AC_SUBST([OSMESA_PC_REQ]) |
Dan Nicholson | 8be02fc | 2008-12-14 09:35:29 -0800 | [diff] [blame] | 1136 | AC_SUBST([OSMESA_PC_LIB_PRIV]) |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 1137 | |
| 1138 | dnl |
Benjamin Franzke | 42cdf40 | 2011-07-25 09:37:02 +0200 | [diff] [blame] | 1139 | dnl gbm configuration |
| 1140 | dnl |
| 1141 | if test "x$enable_gbm" = xauto; then |
| 1142 | case "$with_egl_platforms" in |
| 1143 | *drm*) |
| 1144 | enable_gbm=yes ;; |
| 1145 | *) |
| 1146 | enable_gbm=no ;; |
| 1147 | esac |
| 1148 | fi |
| 1149 | if test "x$enable_gbm" = xyes; then |
Benjamin Franzke | 42cdf40 | 2011-07-25 09:37:02 +0200 | [diff] [blame] | 1150 | PKG_CHECK_MODULES([LIBUDEV], [libudev], [], |
| 1151 | AC_MSG_ERROR([gbm needs udev])) |
Matt Turner | 027ce0c | 2012-01-24 11:34:42 -0500 | [diff] [blame] | 1152 | |
| 1153 | if test "x$enable_dri" = xyes; then |
| 1154 | GBM_BACKEND_DIRS="$GBM_BACKEND_DIRS dri" |
Matt Turner | 8c9b78a | 2012-08-17 14:22:47 -0700 | [diff] [blame] | 1155 | if test "x$enable_shared_glapi" = xno; then |
Matt Turner | 027ce0c | 2012-01-24 11:34:42 -0500 | [diff] [blame] | 1156 | AC_MSG_ERROR([gbm_dri requires --enable-shared-glapi]) |
| 1157 | fi |
| 1158 | fi |
Benjamin Franzke | 42cdf40 | 2011-07-25 09:37:02 +0200 | [diff] [blame] | 1159 | fi |
Matt Turner | a9676ae | 2013-01-18 23:59:49 -0800 | [diff] [blame] | 1160 | AM_CONDITIONAL(HAVE_GBM, test "x$enable_gbm" = xyes) |
Benjamin Franzke | 42cdf40 | 2011-07-25 09:37:02 +0200 | [diff] [blame] | 1161 | GBM_PC_REQ_PRIV="libudev" |
| 1162 | GBM_PC_LIB_PRIV="$DLOPEN_LIBS" |
Benjamin Franzke | 42cdf40 | 2011-07-25 09:37:02 +0200 | [diff] [blame] | 1163 | AC_SUBST([GBM_PC_REQ_PRIV]) |
| 1164 | AC_SUBST([GBM_PC_LIB_PRIV]) |
Benjamin Franzke | 42cdf40 | 2011-07-25 09:37:02 +0200 | [diff] [blame] | 1165 | |
| 1166 | dnl |
Dan Nicholson | 53b3734 | 2009-02-25 17:45:34 -0800 | [diff] [blame] | 1167 | dnl EGL configuration |
| 1168 | dnl |
Marek Olšák | 440d71d | 2011-06-14 05:38:58 +0200 | [diff] [blame] | 1169 | EGL_CLIENT_APIS="" |
| 1170 | |
Dan Nicholson | 66f9786 | 2009-04-29 12:11:43 -0700 | [diff] [blame] | 1171 | if test "x$enable_egl" = xyes; then |
Matt Turner | b6651ae | 2012-09-18 21:51:25 -0700 | [diff] [blame] | 1172 | EGL_LIB_DEPS="$DLOPEN_LIBS $SELINUX_LIBS $PTHREAD_LIBS" |
Marek Olšák | ad50abba | 2011-06-14 05:14:27 +0200 | [diff] [blame] | 1173 | |
Benjamin Franzke | 85fe948 | 2011-08-09 14:23:18 +0200 | [diff] [blame] | 1174 | AC_CHECK_FUNC(mincore, [DEFINES="$DEFINES -DHAVE_MINCORE"]) |
| 1175 | |
Chia-I Wu | 2eb7a2f | 2010-02-05 10:46:11 +0800 | [diff] [blame] | 1176 | if test "$enable_static" != yes; then |
Chia-I Wu | d4c1ee0 | 2009-12-21 11:13:18 +0800 | [diff] [blame] | 1177 | # build egl_glx when libGL is built |
Benjamin Franzke | 184bb09 | 2011-04-30 11:18:23 +0200 | [diff] [blame] | 1178 | PKG_CHECK_MODULES([LIBUDEV], [libudev > 150], |
| 1179 | [have_libudev=yes],[have_libudev=no]) |
Benjamin Franzke | a7cd65f | 2011-05-31 11:14:46 +0200 | [diff] [blame] | 1180 | if test "$have_libudev" = yes; then |
| 1181 | DEFINES="$DEFINES -DHAVE_LIBUDEV" |
| 1182 | fi |
Kristian Høgsberg | 2c4f6ce | 2012-06-01 14:14:20 -0400 | [diff] [blame] | 1183 | |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 1184 | if test "x$enable_dri" = xyes; then |
Kristian Høgsberg | 2c4f6ce | 2012-06-01 14:14:20 -0400 | [diff] [blame] | 1185 | HAVE_EGL_DRIVER_DRI2=1 |
Chia-I Wu | 39ae965 | 2010-07-16 19:48:52 +0800 | [diff] [blame] | 1186 | fi |
Kristian Høgsberg | 2168b87 | 2010-06-02 22:48:06 -0400 | [diff] [blame] | 1187 | |
Kristian Høgsberg | 42fa009 | 2010-02-03 10:18:28 -0500 | [diff] [blame] | 1188 | fi |
Dan Nicholson | 53b3734 | 2009-02-25 17:45:34 -0800 | [diff] [blame] | 1189 | fi |
Matt Turner | a9676ae | 2013-01-18 23:59:49 -0800 | [diff] [blame] | 1190 | AM_CONDITIONAL(HAVE_EGL, test "x$enable_egl" = xyes) |
Dan Nicholson | 53b3734 | 2009-02-25 17:45:34 -0800 | [diff] [blame] | 1191 | AC_SUBST([EGL_LIB_DEPS]) |
| 1192 | |
| 1193 | dnl |
Marek Olšák | 1251e1d | 2011-06-18 20:33:55 +0200 | [diff] [blame] | 1194 | dnl EGL Gallium configuration |
| 1195 | dnl |
| 1196 | if test "x$enable_gallium_egl" = xyes; then |
| 1197 | if test "x$with_gallium_drivers" = x; then |
| 1198 | AC_MSG_ERROR([cannot enable egl_gallium without Gallium]) |
| 1199 | fi |
| 1200 | if test "x$enable_egl" = xno; then |
| 1201 | AC_MSG_ERROR([cannot enable egl_gallium without EGL]) |
| 1202 | fi |
Chia-I Wu | 94ec5fd | 2011-06-27 09:19:02 +0900 | [diff] [blame] | 1203 | if test "x$have_libdrm" != xyes; then |
| 1204 | AC_MSG_ERROR([egl_gallium requires libdrm >= $LIBDRM_REQUIRED]) |
| 1205 | fi |
Marek Olšák | 1251e1d | 2011-06-18 20:33:55 +0200 | [diff] [blame] | 1206 | |
| 1207 | GALLIUM_STATE_TRACKERS_DIRS="egl $GALLIUM_STATE_TRACKERS_DIRS" |
Chia-I Wu | b8f097f | 2011-06-20 12:01:39 +0900 | [diff] [blame] | 1208 | GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS egl-static" |
Marek Olšák | 1251e1d | 2011-06-18 20:33:55 +0200 | [diff] [blame] | 1209 | fi |
Matt Turner | 69b69b1 | 2013-01-19 11:23:51 -0800 | [diff] [blame] | 1210 | AM_CONDITIONAL(HAVE_GALLIUM_EGL, test "x$enable_gallium_egl" = xyes) |
Marek Olšák | 1251e1d | 2011-06-18 20:33:55 +0200 | [diff] [blame] | 1211 | |
| 1212 | dnl |
Benjamin Franzke | 48d4a00 | 2011-05-26 15:11:50 +0200 | [diff] [blame] | 1213 | dnl gbm Gallium configuration |
| 1214 | dnl |
Benjamin Franzke | b18b299 | 2011-07-02 13:45:14 +0200 | [diff] [blame] | 1215 | if test "x$enable_gallium_gbm" = xauto; then |
Matt Turner | 69b69b1 | 2013-01-19 11:23:51 -0800 | [diff] [blame] | 1216 | case "$enable_gbm$enable_gallium_egl$enable_dri$with_egl_platforms" in |
Chia-I Wu | 95ef069 | 2011-11-05 15:09:36 +0800 | [diff] [blame] | 1217 | yesyesyes*drm*) |
Benjamin Franzke | b18b299 | 2011-07-02 13:45:14 +0200 | [diff] [blame] | 1218 | enable_gallium_gbm=yes ;; |
| 1219 | *) |
| 1220 | enable_gallium_gbm=no ;; |
| 1221 | esac |
| 1222 | fi |
Benjamin Franzke | 48d4a00 | 2011-05-26 15:11:50 +0200 | [diff] [blame] | 1223 | if test "x$enable_gallium_gbm" = xyes; then |
| 1224 | if test "x$with_gallium_drivers" = x; then |
| 1225 | AC_MSG_ERROR([cannot enable gbm_gallium without Gallium]) |
| 1226 | fi |
| 1227 | if test "x$enable_gbm" = xno; then |
| 1228 | AC_MSG_ERROR([cannot enable gbm_gallium without gbm]) |
| 1229 | fi |
Chia-I Wu | 95ef069 | 2011-11-05 15:09:36 +0800 | [diff] [blame] | 1230 | # gbm_gallium abuses DRI_LIB_DEPS to link. Make sure it is set. |
| 1231 | if test "x$enable_dri" = xno; then |
| 1232 | AC_MSG_ERROR([gbm_gallium requires --enable-dri to build]) |
| 1233 | fi |
Benjamin Franzke | 48d4a00 | 2011-05-26 15:11:50 +0200 | [diff] [blame] | 1234 | |
| 1235 | GALLIUM_STATE_TRACKERS_DIRS="gbm $GALLIUM_STATE_TRACKERS_DIRS" |
| 1236 | GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS gbm" |
Francisco Jerez | b52a0f2 | 2012-04-20 16:31:23 +0200 | [diff] [blame] | 1237 | enable_gallium_loader=yes |
Benjamin Franzke | 48d4a00 | 2011-05-26 15:11:50 +0200 | [diff] [blame] | 1238 | fi |
Matt Turner | 69b69b1 | 2013-01-19 11:23:51 -0800 | [diff] [blame] | 1239 | AM_CONDITIONAL(HAVE_GALLIUM_GBM, test "x$enable_gallium_gbm" = xyes) |
Benjamin Franzke | 48d4a00 | 2011-05-26 15:11:50 +0200 | [diff] [blame] | 1240 | |
| 1241 | dnl |
Marek Olšák | 440d71d | 2011-06-14 05:38:58 +0200 | [diff] [blame] | 1242 | dnl X.Org DDX configuration |
| 1243 | dnl |
| 1244 | if test "x$enable_xorg" = xyes; then |
| 1245 | PKG_CHECK_MODULES([XORG], [xorg-server >= 1.6.0]) |
| 1246 | PKG_CHECK_MODULES([LIBDRM_XORG], [libdrm >= $LIBDRM_XORG_REQUIRED]) |
| 1247 | PKG_CHECK_MODULES([LIBKMS_XORG], [libkms >= $LIBKMS_XORG_REQUIRED]) |
| 1248 | PKG_CHECK_MODULES(XEXT, [xextproto >= 7.0.99.1], |
| 1249 | HAVE_XEXTPROTO_71="yes"; DEFINES="$DEFINES -DHAVE_XEXTPROTO_71", |
| 1250 | HAVE_XEXTPROTO_71="no") |
| 1251 | GALLIUM_STATE_TRACKERS_DIRS="xorg $GALLIUM_STATE_TRACKERS_DIRS" |
Marek Olšák | 440d71d | 2011-06-14 05:38:58 +0200 | [diff] [blame] | 1252 | fi |
Matt Turner | 69b69b1 | 2013-01-19 11:23:51 -0800 | [diff] [blame] | 1253 | AM_CONDITIONAL(HAVE_ST_XORG, test "x$enable_xorg" = xyes) |
Marek Olšák | 440d71d | 2011-06-14 05:38:58 +0200 | [diff] [blame] | 1254 | |
| 1255 | dnl |
Thomas Hellstrom | 424b121 | 2011-07-04 10:21:35 +0200 | [diff] [blame] | 1256 | dnl XA configuration |
| 1257 | dnl |
| 1258 | if test "x$enable_xa" = xyes; then |
Thomas Hellstrom | 32b1641 | 2011-11-24 21:54:54 +0100 | [diff] [blame] | 1259 | AC_PROG_AWK |
| 1260 | AC_PROG_GREP |
| 1261 | AC_CHECK_PROG(NM, nm, "nm") |
| 1262 | if test "x$AWK" = x || test "x$GREP" = x || test "x$NM" = x; then |
| 1263 | AC_MSG_WARN([Missing one of nm, grep or awk. Disabling xa.]) |
| 1264 | enable_xa=no |
| 1265 | fi |
| 1266 | fi |
| 1267 | if test "x$enable_xa" = xyes; then |
Thomas Hellstrom | 424b121 | 2011-07-04 10:21:35 +0200 | [diff] [blame] | 1268 | GALLIUM_STATE_TRACKERS_DIRS="xa $GALLIUM_STATE_TRACKERS_DIRS" |
Thomas Hellstrom | 32b1641 | 2011-11-24 21:54:54 +0100 | [diff] [blame] | 1269 | AC_SUBST(AWK) |
| 1270 | AC_SUBST(GREP) |
| 1271 | AC_SUBST(NM) |
Thomas Hellstrom | 424b121 | 2011-07-04 10:21:35 +0200 | [diff] [blame] | 1272 | fi |
Matt Turner | 69b69b1 | 2013-01-19 11:23:51 -0800 | [diff] [blame] | 1273 | AM_CONDITIONAL(HAVE_ST_XA, test "x$enable_xa" = xyes) |
Thomas Hellstrom | 424b121 | 2011-07-04 10:21:35 +0200 | [diff] [blame] | 1274 | |
| 1275 | dnl |
Marek Olšák | 440d71d | 2011-06-14 05:38:58 +0200 | [diff] [blame] | 1276 | dnl OpenVG configuration |
| 1277 | dnl |
| 1278 | VG_LIB_DEPS="" |
| 1279 | |
| 1280 | if test "x$enable_openvg" = xyes; then |
| 1281 | if test "x$enable_egl" = xno; then |
| 1282 | AC_MSG_ERROR([cannot enable OpenVG without EGL]) |
| 1283 | fi |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 1284 | if test "x$with_gallium_drivers" = x; then |
Marek Olšák | 440d71d | 2011-06-14 05:38:58 +0200 | [diff] [blame] | 1285 | AC_MSG_ERROR([cannot enable OpenVG without Gallium]) |
| 1286 | fi |
Marek Olšák | 1251e1d | 2011-06-18 20:33:55 +0200 | [diff] [blame] | 1287 | if test "x$enable_gallium_egl" = xno; then |
| 1288 | AC_MSG_ERROR([cannot enable OpenVG without egl_gallium]) |
| 1289 | fi |
Marek Olšák | 440d71d | 2011-06-14 05:38:58 +0200 | [diff] [blame] | 1290 | |
| 1291 | EGL_CLIENT_APIS="$EGL_CLIENT_APIS "'$(VG_LIB)' |
Matt Turner | b6651ae | 2012-09-18 21:51:25 -0700 | [diff] [blame] | 1292 | VG_LIB_DEPS="$VG_LIB_DEPS $SELINUX_LIBS $PTHREAD_LIBS" |
Marek Olšák | 440d71d | 2011-06-14 05:38:58 +0200 | [diff] [blame] | 1293 | GALLIUM_STATE_TRACKERS_DIRS="vega $GALLIUM_STATE_TRACKERS_DIRS" |
Dave Airlie | ec83535 | 2012-12-04 09:25:13 +1000 | [diff] [blame] | 1294 | VG_PC_LIB_PRIV="-lm $CLOCK_LIB $PTHREAD_LIBS $DLOPEN_LIBS" |
Matt Turner | 261719b | 2012-08-22 16:57:38 -0700 | [diff] [blame] | 1295 | AC_SUBST([VG_PC_LIB_PRIV]) |
Marek Olšák | 440d71d | 2011-06-14 05:38:58 +0200 | [diff] [blame] | 1296 | fi |
Matt Turner | cdee0e8 | 2012-09-10 11:21:26 -0700 | [diff] [blame] | 1297 | AM_CONDITIONAL(HAVE_OPENVG, test "x$enable_openvg" = xyes) |
Marek Olšák | 440d71d | 2011-06-14 05:38:58 +0200 | [diff] [blame] | 1298 | |
| 1299 | dnl |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 1300 | dnl Gallium G3DVL configuration |
| 1301 | dnl |
Matt Turner | 34efd929 | 2013-04-17 18:21:47 -0700 | [diff] [blame] | 1302 | if test -n "$with_gallium_drivers"; then |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 1303 | if test "x$enable_xvmc" = xauto; then |
Christian König | a8ae8cf | 2011-07-14 12:42:17 +0200 | [diff] [blame] | 1304 | PKG_CHECK_EXISTS([xvmc], [enable_xvmc=yes], [enable_xvmc=no]) |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 1305 | fi |
| 1306 | |
| 1307 | if test "x$enable_vdpau" = xauto; then |
Christian König | 33bf410 | 2011-07-14 13:57:23 +0200 | [diff] [blame] | 1308 | PKG_CHECK_EXISTS([vdpau], [enable_vdpau=yes], [enable_vdpau=no]) |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 1309 | fi |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 1310 | fi |
| 1311 | |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 1312 | if test "x$enable_xvmc" = xyes; then |
Christian König | 66480c0 | 2012-02-24 16:12:27 +0100 | [diff] [blame] | 1313 | PKG_CHECK_MODULES([XVMC], [xvmc >= 1.0.6 x11-xcb xcb-dri2 >= 1.8]) |
Christian König | dcf8ee7 | 2012-02-15 17:30:58 +0100 | [diff] [blame] | 1314 | GALLIUM_STATE_TRACKERS_DIRS="$GALLIUM_STATE_TRACKERS_DIRS xvmc" |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 1315 | fi |
Matt Turner | 69b69b1 | 2013-01-19 11:23:51 -0800 | [diff] [blame] | 1316 | AM_CONDITIONAL(HAVE_ST_XVMC, test "x$enable_xvmc" = xyes) |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 1317 | |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 1318 | if test "x$enable_vdpau" = xyes; then |
Christian König | 66480c0 | 2012-02-24 16:12:27 +0100 | [diff] [blame] | 1319 | PKG_CHECK_MODULES([VDPAU], [vdpau >= 0.4.1 x11-xcb xcb-dri2 >= 1.8]) |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 1320 | GALLIUM_STATE_TRACKERS_DIRS="$GALLIUM_STATE_TRACKERS_DIRS vdpau" |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 1321 | fi |
Matt Turner | 69b69b1 | 2013-01-19 11:23:51 -0800 | [diff] [blame] | 1322 | AM_CONDITIONAL(HAVE_ST_VDPAU, test "x$enable_vdpau" = xyes) |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 1323 | |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 1324 | dnl |
Francisco Jerez | c6db1b3 | 2012-04-20 16:56:19 +0200 | [diff] [blame] | 1325 | dnl OpenCL configuration |
| 1326 | dnl |
| 1327 | |
Tom Stellard | c79e766 | 2012-03-12 13:53:20 -0400 | [diff] [blame] | 1328 | AC_ARG_WITH([libclc-path], |
| 1329 | [AS_HELP_STRING([--with-libclc-path], |
Johannes Obermayr | 959e83d | 2012-11-30 01:44:56 +0100 | [diff] [blame] | 1330 | [DEPRECATED: See http://dri.freedesktop.org/wiki/GalliumCompute#How_to_Install])], |
Tom Stellard | c79e766 | 2012-03-12 13:53:20 -0400 | [diff] [blame] | 1331 | [LIBCLC_PATH="$withval"], |
| 1332 | [LIBCLC_PATH=""]) |
| 1333 | |
Johannes Obermayr | 959e83d | 2012-11-30 01:44:56 +0100 | [diff] [blame] | 1334 | if test "x$LIBCLC_PATH" != x; then |
| 1335 | AC_MSG_ERROR([The --with-libclc-path option has been deprecated. |
| 1336 | Please review the updated build instructions for clover: |
| 1337 | http://dri.freedesktop.org/wiki/GalliumCompute]) |
| 1338 | fi |
| 1339 | |
| 1340 | |
Tom Stellard | ea76f03 | 2012-06-15 16:52:16 -0400 | [diff] [blame] | 1341 | AC_ARG_WITH([clang-libdir], |
| 1342 | [AS_HELP_STRING([--with-clang-libdir], |
| 1343 | [Path to Clang libraries @<:@default=llvm-config --libdir@:>@])], |
| 1344 | [CLANG_LIBDIR="$withval"], |
| 1345 | [CLANG_LIBDIR=""]) |
| 1346 | |
Tom Stellard | a64d3dd | 2013-09-05 16:26:17 -0700 | [diff] [blame] | 1347 | PKG_CHECK_EXISTS([libclc], [have_libclc=yes], [have_libclc=no]) |
Tom Stellard | c79e766 | 2012-03-12 13:53:20 -0400 | [diff] [blame] | 1348 | |
Francisco Jerez | c6db1b3 | 2012-04-20 16:56:19 +0200 | [diff] [blame] | 1349 | if test "x$enable_opencl" = xyes; then |
| 1350 | if test "x$with_gallium_drivers" = x; then |
| 1351 | AC_MSG_ERROR([cannot enable OpenCL without Gallium]) |
| 1352 | fi |
Tom Stellard | 79d77b3 | 2012-04-20 16:56:46 +0200 | [diff] [blame] | 1353 | |
| 1354 | if test $GCC_VERSION_MAJOR -lt 4 -o $GCC_VERSION_MAJOR -eq 4 -a $GCC_VERSION_MINOR -lt 6; then |
| 1355 | AC_MSG_ERROR([gcc >= 4.6 is required to build clover]) |
| 1356 | fi |
| 1357 | |
Tom Stellard | a64d3dd | 2013-09-05 16:26:17 -0700 | [diff] [blame] | 1358 | if test "x$have_libclc" = xno; then |
| 1359 | AC_MSG_ERROR([pkg-config cannot find libclc.pc which is required to build clover. |
| 1360 | Make sure the directory containing libclc.pc is specified in your |
| 1361 | PKG_CONFIG_PATH environment variable. |
| 1362 | By default libclc.pc is installed to /usr/local/share/pkgconfig/]) |
| 1363 | else |
| 1364 | LIBCLC_INCLUDEDIR=`pkg-config --variable=includedir libclc` |
| 1365 | LIBCLC_LIBEXECDIR=`pkg-config --variable=libexecdir libclc` |
| 1366 | AC_SUBST([LIBCLC_INCLUDEDIR]) |
| 1367 | AC_SUBST([LIBCLC_LIBEXECDIR]) |
Johannes Obermayr | 959e83d | 2012-11-30 01:44:56 +0100 | [diff] [blame] | 1368 | fi |
| 1369 | |
Francisco Jerez | c6db1b3 | 2012-04-20 16:56:19 +0200 | [diff] [blame] | 1370 | GALLIUM_STATE_TRACKERS_DIRS="$GALLIUM_STATE_TRACKERS_DIRS clover" |
| 1371 | GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS opencl" |
Tom Stellard | 79d77b3 | 2012-04-20 16:56:46 +0200 | [diff] [blame] | 1372 | enable_gallium_loader=yes |
Francisco Jerez | c6db1b3 | 2012-04-20 16:56:19 +0200 | [diff] [blame] | 1373 | fi |
Matt Turner | 69b69b1 | 2013-01-19 11:23:51 -0800 | [diff] [blame] | 1374 | AM_CONDITIONAL(HAVE_CLOVER, test "x$enable_opencl" = xyes) |
Francisco Jerez | c6db1b3 | 2012-04-20 16:56:19 +0200 | [diff] [blame] | 1375 | |
| 1376 | dnl |
Jakob Bornecrantz | 7e54d7d | 2009-02-11 02:38:21 +0100 | [diff] [blame] | 1377 | dnl Gallium configuration |
| 1378 | dnl |
Matt Turner | a9676ae | 2013-01-18 23:59:49 -0800 | [diff] [blame] | 1379 | AM_CONDITIONAL(HAVE_GALLIUM, test -n "$with_gallium_drivers") |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 1380 | |
Tom Stellard | a75c616 | 2012-01-06 17:38:37 -0500 | [diff] [blame] | 1381 | AC_SUBST([LLVM_BINDIR]) |
Dave Airlie | 81fe198 | 2010-04-22 14:59:29 +1000 | [diff] [blame] | 1382 | AC_SUBST([LLVM_CFLAGS]) |
Tom Stellard | d416780 | 2012-04-24 10:34:57 -0400 | [diff] [blame] | 1383 | AC_SUBST([LLVM_CPPFLAGS]) |
Tom Stellard | a75c616 | 2012-01-06 17:38:37 -0500 | [diff] [blame] | 1384 | AC_SUBST([LLVM_CXXFLAGS]) |
Tom Stellard | d416780 | 2012-04-24 10:34:57 -0400 | [diff] [blame] | 1385 | AC_SUBST([LLVM_LIBDIR]) |
Dave Airlie | 81fe198 | 2010-04-22 14:59:29 +1000 | [diff] [blame] | 1386 | AC_SUBST([LLVM_LIBS]) |
| 1387 | AC_SUBST([LLVM_LDFLAGS]) |
Tom Stellard | a75c616 | 2012-01-06 17:38:37 -0500 | [diff] [blame] | 1388 | AC_SUBST([LLVM_INCLUDEDIR]) |
Dave Airlie | 81fe198 | 2010-04-22 14:59:29 +1000 | [diff] [blame] | 1389 | AC_SUBST([LLVM_VERSION]) |
Tom Stellard | ea76f03 | 2012-06-15 16:52:16 -0400 | [diff] [blame] | 1390 | AC_SUBST([CLANG_RESOURCE_DIR]) |
Dave Airlie | 81fe198 | 2010-04-22 14:59:29 +1000 | [diff] [blame] | 1391 | |
Chia-I Wu | be5f34a | 2010-10-27 16:14:27 +0800 | [diff] [blame] | 1392 | case "x$enable_opengl$enable_gles1$enable_gles2" in |
| 1393 | x*yes*) |
| 1394 | EGL_CLIENT_APIS="$EGL_CLIENT_APIS "'$(GL_LIB)' |
| 1395 | ;; |
| 1396 | esac |
Chia-I Wu | be5f34a | 2010-10-27 16:14:27 +0800 | [diff] [blame] | 1397 | |
Chia-I Wu | 874ccd5 | 2010-05-04 22:43:05 +0800 | [diff] [blame] | 1398 | AC_SUBST([VG_LIB_DEPS]) |
Chia-I Wu | 63ab250 | 2010-05-05 15:38:02 +0800 | [diff] [blame] | 1399 | AC_SUBST([EGL_CLIENT_APIS]) |
| 1400 | |
Kristian Høgsberg | 2c4f6ce | 2012-06-01 14:14:20 -0400 | [diff] [blame] | 1401 | dnl |
| 1402 | dnl EGL Platforms configuration |
| 1403 | dnl |
Chia-I Wu | da39d5d | 2010-06-17 16:07:46 +0800 | [diff] [blame] | 1404 | AC_ARG_WITH([egl-platforms], |
| 1405 | [AS_HELP_STRING([--with-egl-platforms@<:@=DIRS...@:>@], |
| 1406 | [comma delimited native platforms libEGL supports, e.g. |
Chia-I Wu | e7424d7 | 2010-09-19 16:54:39 +0800 | [diff] [blame] | 1407 | "x11,drm" @<:@default=auto@:>@])], |
Chia-I Wu | da39d5d | 2010-06-17 16:07:46 +0800 | [diff] [blame] | 1408 | [with_egl_platforms="$withval"], |
Eric Anholt | 28d92ef | 2012-02-05 07:54:38 +0100 | [diff] [blame] | 1409 | [if test "x$enable_egl" = xyes; then |
| 1410 | with_egl_platforms="x11" |
| 1411 | else |
| 1412 | with_egl_platforms="" |
| 1413 | fi]) |
Chia-I Wu | 49381d6 | 2010-01-11 01:23:01 +0800 | [diff] [blame] | 1414 | |
Eric Anholt | 28d92ef | 2012-02-05 07:54:38 +0100 | [diff] [blame] | 1415 | if test "x$with_egl_platforms" != "x" -a "x$enable_egl" != xyes; then |
| 1416 | AC_MSG_ERROR([cannot build egl state tracker without EGL library]) |
| 1417 | fi |
| 1418 | |
Kristian Høgsberg | 2c4f6ce | 2012-06-01 14:14:20 -0400 | [diff] [blame] | 1419 | # Do per-EGL platform setups and checks |
Eric Anholt | 28d92ef | 2012-02-05 07:54:38 +0100 | [diff] [blame] | 1420 | egl_platforms=`IFS=', '; echo $with_egl_platforms` |
| 1421 | for plat in $egl_platforms; do |
Kristian Høgsberg | 2c4f6ce | 2012-06-01 14:14:20 -0400 | [diff] [blame] | 1422 | case "$plat" in |
Kristian Høgsberg | 2c4f6ce | 2012-06-01 14:14:20 -0400 | [diff] [blame] | 1423 | wayland) |
Fabio Pedretti | aa39054 | 2013-08-12 13:48:04 +0200 | [diff] [blame] | 1424 | PKG_CHECK_MODULES([WAYLAND], [wayland-client >= 1.2.0 wayland-server >= 1.2.0]) |
Kristian Høgsberg | 2c4f6ce | 2012-06-01 14:14:20 -0400 | [diff] [blame] | 1425 | GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/wayland" |
Benjamin Franzke | 8b90205 | 2012-01-24 20:38:01 +0100 | [diff] [blame] | 1426 | |
Kristian Høgsberg | 426a23a | 2012-07-13 11:06:32 -0400 | [diff] [blame] | 1427 | WAYLAND_PREFIX=`$PKG_CONFIG --variable=prefix wayland-client` |
| 1428 | AC_PATH_PROG([WAYLAND_SCANNER], [wayland-scanner],, |
| 1429 | [${WAYLAND_PREFIX}/bin$PATH_SEPARATOR$PATH]) |
Kristian Høgsberg | 2c4f6ce | 2012-06-01 14:14:20 -0400 | [diff] [blame] | 1430 | ;; |
| 1431 | |
| 1432 | x11) |
Eric Anholt | b477384 | 2012-09-25 09:09:47 -0700 | [diff] [blame] | 1433 | PKG_CHECK_MODULES([XCB_DRI2], [x11-xcb xcb-dri2 >= 1.8 xcb-xfixes]) |
Kristian Høgsberg | b5c5324 | 2012-11-29 15:11:13 -0500 | [diff] [blame] | 1434 | |
| 1435 | if test "x$enable_glx" = xyes; then |
| 1436 | HAVE_EGL_DRIVER_GLX=1 |
| 1437 | fi |
Kristian Høgsberg | 2c4f6ce | 2012-06-01 14:14:20 -0400 | [diff] [blame] | 1438 | ;; |
| 1439 | |
| 1440 | drm) |
| 1441 | test "x$enable_gbm" = "xno" && |
| 1442 | AC_MSG_ERROR([EGL platform drm needs gbm]) |
| 1443 | ;; |
| 1444 | |
Matt Turner | b3f1f66 | 2013-01-20 15:32:08 -0800 | [diff] [blame] | 1445 | android|fbdev|gdi|null) |
Kristian Høgsberg | 2c4f6ce | 2012-06-01 14:14:20 -0400 | [diff] [blame] | 1446 | ;; |
| 1447 | |
| 1448 | *) |
| 1449 | AC_MSG_ERROR([EGL platform '$plat' does not exist]) |
| 1450 | ;; |
| 1451 | esac |
| 1452 | |
Benjamin Franzke | 7ed1826 | 2011-07-02 13:46:42 +0200 | [diff] [blame] | 1453 | case "$plat$have_libudev" in |
| 1454 | waylandno|drmno) |
| 1455 | AC_MSG_ERROR([cannot build $plat platfrom without udev]) ;; |
| 1456 | esac |
Eric Anholt | 28d92ef | 2012-02-05 07:54:38 +0100 | [diff] [blame] | 1457 | done |
| 1458 | |
Eric Anholt | 8861202 | 2012-02-05 10:46:13 +0100 | [diff] [blame] | 1459 | # libEGL wants to default to the first platform specified in |
| 1460 | # ./configure. parse that here. |
| 1461 | if test "x$egl_platforms" != "x"; then |
| 1462 | FIRST_PLATFORM_CAPS=`echo $egl_platforms | sed 's| .*||' | tr 'a-z' 'A-Z'` |
| 1463 | EGL_NATIVE_PLATFORM="_EGL_PLATFORM_$FIRST_PLATFORM_CAPS" |
| 1464 | else |
| 1465 | EGL_NATIVE_PLATFORM="_EGL_INVALID_PLATFORM" |
| 1466 | fi |
| 1467 | |
Matt Turner | b3f1f66 | 2013-01-20 15:32:08 -0800 | [diff] [blame] | 1468 | if echo "$egl_platforms" | grep 'x11' >/dev/null 2>&1; then |
| 1469 | NEED_WINSYS_XLIB=yes |
| 1470 | fi |
Eric Anholt | 8861202 | 2012-02-05 10:46:13 +0100 | [diff] [blame] | 1471 | AM_CONDITIONAL(HAVE_EGL_PLATFORM_X11, echo "$egl_platforms" | grep 'x11' >/dev/null 2>&1) |
| 1472 | AM_CONDITIONAL(HAVE_EGL_PLATFORM_WAYLAND, echo "$egl_platforms" | grep 'wayland' >/dev/null 2>&1) |
| 1473 | AM_CONDITIONAL(HAVE_EGL_PLATFORM_DRM, echo "$egl_platforms" | grep 'drm' >/dev/null 2>&1) |
| 1474 | AM_CONDITIONAL(HAVE_EGL_PLATFORM_FBDEV, echo "$egl_platforms" | grep 'fbdev' >/dev/null 2>&1) |
| 1475 | AM_CONDITIONAL(HAVE_EGL_PLATFORM_NULL, echo "$egl_platforms" | grep 'null' >/dev/null 2>&1) |
| 1476 | |
| 1477 | AM_CONDITIONAL(HAVE_EGL_DRIVER_DRI2, test "x$HAVE_EGL_DRIVER_DRI2" != "x") |
| 1478 | AM_CONDITIONAL(HAVE_EGL_DRIVER_GLX, test "x$HAVE_EGL_DRIVER_GLX" != "x") |
| 1479 | |
| 1480 | AC_SUBST([EGL_NATIVE_PLATFORM]) |
Eric Anholt | 8861202 | 2012-02-05 10:46:13 +0100 | [diff] [blame] | 1481 | AC_SUBST([EGL_CFLAGS]) |
Chia-I Wu | 49381d6 | 2010-01-11 01:23:01 +0800 | [diff] [blame] | 1482 | |
Ross Burton | 1a7275d | 2013-06-27 12:35:07 +0100 | [diff] [blame] | 1483 | # If we don't have the X11 platform, set this define so we don't try to include |
| 1484 | # the X11 headers. |
| 1485 | if ! echo "$egl_platforms" | grep -q 'x11'; then |
| 1486 | DEFINES="$DEFINES -DMESA_EGL_NO_X11_HEADERS" |
| 1487 | GL_PC_CFLAGS="$GL_PC_CFLAGS -DMESA_EGL_NO_X11_HEADERS" |
| 1488 | fi |
| 1489 | |
Chia-I Wu | 28c3e57 | 2010-01-23 20:18:43 +0800 | [diff] [blame] | 1490 | AC_ARG_WITH([egl-driver-dir], |
| 1491 | [AS_HELP_STRING([--with-egl-driver-dir=DIR], |
| 1492 | [directory for EGL drivers [[default=${libdir}/egl]]])], |
| 1493 | [EGL_DRIVER_INSTALL_DIR="$withval"], |
| 1494 | [EGL_DRIVER_INSTALL_DIR='${libdir}/egl']) |
| 1495 | AC_SUBST([EGL_DRIVER_INSTALL_DIR]) |
| 1496 | |
Joel Bosveld | 8acca48 | 2009-03-06 08:46:08 +0900 | [diff] [blame] | 1497 | AC_ARG_WITH([xorg-driver-dir], |
| 1498 | [AS_HELP_STRING([--with-xorg-driver-dir=DIR], |
| 1499 | [Default xorg driver directory[[default=${libdir}/xorg/modules/drivers]]])], |
| 1500 | [XORG_DRIVER_INSTALL_DIR="$withval"], |
| 1501 | [XORG_DRIVER_INSTALL_DIR="${libdir}/xorg/modules/drivers"]) |
| 1502 | AC_SUBST([XORG_DRIVER_INSTALL_DIR]) |
| 1503 | |
Tom Fogal | 7085dce | 2009-08-13 19:40:30 -0600 | [diff] [blame] | 1504 | AC_ARG_WITH([max-width], |
| 1505 | [AS_HELP_STRING([--with-max-width=N], |
| 1506 | [Maximum framebuffer width (4096)])], |
| 1507 | [DEFINES="${DEFINES} -DMAX_WIDTH=${withval}"; |
| 1508 | AS_IF([test "${withval}" -gt "4096"], |
| 1509 | [AC_MSG_WARN([Large framebuffer: see s_tritemp.h comments.])])] |
| 1510 | ) |
| 1511 | AC_ARG_WITH([max-height], |
| 1512 | [AS_HELP_STRING([--with-max-height=N], |
| 1513 | [Maximum framebuffer height (4096)])], |
| 1514 | [DEFINES="${DEFINES} -DMAX_HEIGHT=${withval}"; |
| 1515 | AS_IF([test "${withval}" -gt "4096"], |
| 1516 | [AC_MSG_WARN([Large framebuffer: see s_tritemp.h comments.])])] |
| 1517 | ) |
| 1518 | |
Jakob Bornecrantz | 3ede377 | 2009-02-13 00:57:47 +0100 | [diff] [blame] | 1519 | dnl |
Dave Airlie | 81fe198 | 2010-04-22 14:59:29 +1000 | [diff] [blame] | 1520 | dnl Gallium LLVM |
| 1521 | dnl |
| 1522 | AC_ARG_ENABLE([gallium-llvm], |
| 1523 | [AS_HELP_STRING([--enable-gallium-llvm], |
Marek Olšák | a86fc71 | 2011-04-21 13:27:55 +0200 | [diff] [blame] | 1524 | [build gallium LLVM support @<:@default=enabled on x86/x86_64@:>@])], |
Dave Airlie | 81fe198 | 2010-04-22 14:59:29 +1000 | [diff] [blame] | 1525 | [enable_gallium_llvm="$enableval"], |
| 1526 | [enable_gallium_llvm=auto]) |
Tom Stellard | 7d87c71 | 2012-03-27 22:24:39 -0400 | [diff] [blame] | 1527 | |
| 1528 | AC_ARG_WITH([llvm-shared-libs], |
| 1529 | [AS_HELP_STRING([--with-llvm-shared-libs], |
| 1530 | [link with LLVM shared libraries @<:@default=disabled@:>@])], |
Quentin Glidic | 1e85713 | 2013-01-25 15:02:04 +0100 | [diff] [blame] | 1531 | [], |
Tom Stellard | 7d87c71 | 2012-03-27 22:24:39 -0400 | [diff] [blame] | 1532 | [with_llvm_shared_libs=no]) |
Quentin Glidic | 1e85713 | 2013-01-25 15:02:04 +0100 | [diff] [blame] | 1533 | AS_IF([test x$enable_opencl = xyes], |
| 1534 | [ |
| 1535 | AC_MSG_WARN([OpenCL required, forcing LLVM shared libraries]) |
| 1536 | with_llvm_shared_libs=yes |
| 1537 | ]) |
Tom Stellard | 7d87c71 | 2012-03-27 22:24:39 -0400 | [diff] [blame] | 1538 | |
Tom Stellard | 17f6c91 | 2012-07-17 18:32:56 +0000 | [diff] [blame] | 1539 | AC_ARG_WITH([llvm-prefix], |
| 1540 | [AS_HELP_STRING([--with-llvm-prefix], |
| 1541 | [Prefix for LLVM installations in non-standard locations])], |
| 1542 | [llvm_prefix="$withval"], |
| 1543 | [llvm_prefix=""]) |
| 1544 | |
| 1545 | |
Marek Olšák | 9b67a34 | 2012-11-27 23:38:01 +0100 | [diff] [blame] | 1546 | # Call this inside ` ` to get the return value. |
| 1547 | # $1 is the llvm-config command with arguments. |
| 1548 | strip_unwanted_llvm_flags() { |
Marek Olšák | 3d59cde | 2012-11-27 23:56:04 +0100 | [diff] [blame] | 1549 | # Use \> (marks the end of the word) |
Marek Olšák | 9b67a34 | 2012-11-27 23:38:01 +0100 | [diff] [blame] | 1550 | echo `$1` | sed \ |
| 1551 | -e 's/-DNDEBUG\>//g' \ |
Marek Olšák | 3d59cde | 2012-11-27 23:56:04 +0100 | [diff] [blame] | 1552 | -e 's/-pedantic\>//g' \ |
| 1553 | -e 's/-Wcovered-switch-default\>//g' \ |
| 1554 | -e 's/-O.\>//g' \ |
| 1555 | -e 's/-g\>//g' \ |
Marek Olšák | f9429e3 | 2012-11-28 00:28:18 +0100 | [diff] [blame] | 1556 | -e 's/-Wall\>//g' \ |
| 1557 | -e 's/-fomit-frame-pointer\>//g' |
Marek Olšák | 9b67a34 | 2012-11-27 23:38:01 +0100 | [diff] [blame] | 1558 | } |
| 1559 | |
| 1560 | |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 1561 | if test "x$with_gallium_drivers" = x; then |
| 1562 | enable_gallium_llvm=no |
| 1563 | fi |
Marek Olšák | a86fc71 | 2011-04-21 13:27:55 +0200 | [diff] [blame] | 1564 | if test "x$enable_gallium_llvm" = xauto; then |
| 1565 | case "$host_cpu" in |
Jean-Sébastien Pédron | 148f0de | 2013-06-05 13:27:37 +0200 | [diff] [blame] | 1566 | i*86|x86_64|amd64) enable_gallium_llvm=yes;; |
Marek Olšák | a86fc71 | 2011-04-21 13:27:55 +0200 | [diff] [blame] | 1567 | esac |
| 1568 | fi |
Dave Airlie | 81fe198 | 2010-04-22 14:59:29 +1000 | [diff] [blame] | 1569 | if test "x$enable_gallium_llvm" = xyes; then |
Tom Stellard | 17f6c91 | 2012-07-17 18:32:56 +0000 | [diff] [blame] | 1570 | if test "x$llvm_prefix" != x; then |
| 1571 | AC_PATH_PROG([LLVM_CONFIG], [llvm-config], [no], ["$llvm_prefix/bin"]) |
| 1572 | else |
| 1573 | AC_PATH_PROG([LLVM_CONFIG], [llvm-config], [no]) |
| 1574 | fi |
Marek Olšák | 99fba50 | 2011-07-23 15:57:51 +0200 | [diff] [blame] | 1575 | |
Dave Airlie | 22e8ddc | 2010-04-25 07:48:48 +1000 | [diff] [blame] | 1576 | if test "x$LLVM_CONFIG" != xno; then |
Klemens Baum | 45574ab | 2013-06-27 23:13:37 +0200 | [diff] [blame] | 1577 | LLVM_VERSION=`$LLVM_CONFIG --version | sed 's/svn.*//g'` |
| 1578 | LLVM_LDFLAGS=`$LLVM_CONFIG --ldflags` |
| 1579 | LLVM_BINDIR=`$LLVM_CONFIG --bindir` |
| 1580 | LLVM_CPPFLAGS=`strip_unwanted_llvm_flags "$LLVM_CONFIG --cppflags"` |
| 1581 | LLVM_CFLAGS=$LLVM_CPPFLAGS # CPPFLAGS seem to be sufficient |
| 1582 | LLVM_CXXFLAGS=`strip_unwanted_llvm_flags "$LLVM_CONFIG --cxxflags"` |
| 1583 | LLVM_INCLUDEDIR=`$LLVM_CONFIG --includedir` |
| 1584 | LLVM_LIBDIR=`$LLVM_CONFIG --libdir` |
| 1585 | |
| 1586 | AC_COMPUTE_INT([LLVM_VERSION_MAJOR], [LLVM_VERSION_MAJOR], |
| 1587 | [#include "${LLVM_INCLUDEDIR}/llvm/Config/llvm-config.h"]) |
| 1588 | AC_COMPUTE_INT([LLVM_VERSION_MINOR], [LLVM_VERSION_MINOR], |
| 1589 | [#include "${LLVM_INCLUDEDIR}/llvm/Config/llvm-config.h"]) |
| 1590 | |
| 1591 | if test "x${LLVM_VERSION_MAJOR}" != x; then |
| 1592 | LLVM_VERSION_INT="${LLVM_VERSION_MAJOR}0${LLVM_VERSION_MINOR}" |
| 1593 | else |
| 1594 | LLVM_VERSION_INT=`echo $LLVM_VERSION | sed -e 's/\([[0-9]]\)\.\([[0-9]]\)/\10\2/g'` |
| 1595 | fi |
| 1596 | |
Tom Stellard | 0898047 | 2013-01-25 16:43:11 +0100 | [diff] [blame] | 1597 | LLVM_COMPONENTS="engine bitwriter" |
Jonathan Gray | f96c07a | 2013-06-20 20:14:33 +1000 | [diff] [blame] | 1598 | if $LLVM_CONFIG --components | grep -qw 'mcjit'; then |
Tom Stellard | 0898047 | 2013-01-25 16:43:11 +0100 | [diff] [blame] | 1599 | LLVM_COMPONENTS="${LLVM_COMPONENTS} mcjit" |
| 1600 | fi |
Johannes Obermayr | c295874 | 2013-04-09 17:38:42 +0100 | [diff] [blame] | 1601 | |
Tom Stellard | 0898047 | 2013-01-25 16:43:11 +0100 | [diff] [blame] | 1602 | if test "x$enable_opencl" = xyes; then |
| 1603 | LLVM_COMPONENTS="${LLVM_COMPONENTS} ipo linker instrumentation" |
Niels Ole Salscheider | b336f51 | 2013-04-04 23:26:45 +0200 | [diff] [blame] | 1604 | # LLVM 3.3 >= 177971 requires IRReader |
Jonathan Gray | f96c07a | 2013-06-20 20:14:33 +1000 | [diff] [blame] | 1605 | if $LLVM_CONFIG --components | grep -qw 'irreader'; then |
Niels Ole Salscheider | b336f51 | 2013-04-04 23:26:45 +0200 | [diff] [blame] | 1606 | LLVM_COMPONENTS="${LLVM_COMPONENTS} irreader" |
| 1607 | fi |
Niels Ole Salscheider | 5394ee8 | 2013-08-07 17:48:48 +0200 | [diff] [blame] | 1608 | # LLVM 3.4 requires Option |
| 1609 | if $LLVM_CONFIG --components | grep -qw 'option'; then |
| 1610 | LLVM_COMPONENTS="${LLVM_COMPONENTS} option" |
| 1611 | fi |
Tom Stellard | 0898047 | 2013-01-25 16:43:11 +0100 | [diff] [blame] | 1612 | fi |
Klemens Baum | 45574ab | 2013-06-27 23:13:37 +0200 | [diff] [blame] | 1613 | DEFINES="${DEFINES} -DHAVE_LLVM=0x0$LLVM_VERSION_INT" |
| 1614 | MESA_LLVM=1 |
Tom Stellard | ea76f03 | 2012-06-15 16:52:16 -0400 | [diff] [blame] | 1615 | |
Klemens Baum | 45574ab | 2013-06-27 23:13:37 +0200 | [diff] [blame] | 1616 | dnl Check for Clang internal headers |
Tom Stellard | ea76f03 | 2012-06-15 16:52:16 -0400 | [diff] [blame] | 1617 | if test "x$enable_opencl" = xyes; then |
| 1618 | if test "x$CLANG_LIBDIR" = x; then |
| 1619 | CLANG_LIBDIR=${LLVM_LIBDIR} |
| 1620 | fi |
| 1621 | CLANG_RESOURCE_DIR=$CLANG_LIBDIR/clang/${LLVM_VERSION} |
Jonathan Liu | af16f73 | 2013-06-04 23:04:44 +1000 | [diff] [blame] | 1622 | AS_IF([test ! -f "$CLANG_RESOURCE_DIR/include/stddef.h"], |
| 1623 | [AC_MSG_ERROR([Could not find clang internal header stddef.h in $CLANG_RESOURCE_DIR Use --with-clang-libdir to specify the correct path to the clang libraries.])]) |
Tom Stellard | ea76f03 | 2012-06-15 16:52:16 -0400 | [diff] [blame] | 1624 | fi |
Dave Airlie | 22e8ddc | 2010-04-25 07:48:48 +1000 | [diff] [blame] | 1625 | else |
Klemens Baum | 45574ab | 2013-06-27 23:13:37 +0200 | [diff] [blame] | 1626 | MESA_LLVM=0 |
| 1627 | LLVM_VERSION_INT=0 |
Dave Airlie | 22e8ddc | 2010-04-25 07:48:48 +1000 | [diff] [blame] | 1628 | fi |
| 1629 | else |
| 1630 | MESA_LLVM=0 |
Tom Stellard | 80d290d | 2012-08-24 11:48:32 -0700 | [diff] [blame] | 1631 | LLVM_VERSION_INT=0 |
Dave Airlie | 81fe198 | 2010-04-22 14:59:29 +1000 | [diff] [blame] | 1632 | fi |
| 1633 | |
Alexandre Demers | 3ea3695 | 2012-04-04 10:54:56 +0200 | [diff] [blame] | 1634 | dnl Directory for XVMC libs |
| 1635 | AC_ARG_WITH([xvmc-libdir], |
| 1636 | [AS_HELP_STRING([--with-xvmc-libdir=DIR], |
| 1637 | [directory for the XVMC libraries @<:@default=${libdir}@:>@])], |
| 1638 | [XVMC_LIB_INSTALL_DIR="$withval"], |
| 1639 | [XVMC_LIB_INSTALL_DIR='${libdir}']) |
| 1640 | AC_SUBST([XVMC_LIB_INSTALL_DIR]) |
| 1641 | |
Tom Stellard | 79d77b3 | 2012-04-20 16:56:46 +0200 | [diff] [blame] | 1642 | dnl |
| 1643 | dnl Gallium Tests |
| 1644 | dnl |
| 1645 | if test "x$enable_gallium_tests" = xyes; then |
Tom Stellard | 79d77b3 | 2012-04-20 16:56:46 +0200 | [diff] [blame] | 1646 | enable_gallium_loader=yes |
| 1647 | fi |
Matt Turner | a9676ae | 2013-01-18 23:59:49 -0800 | [diff] [blame] | 1648 | AM_CONDITIONAL(HAVE_GALLIUM_TESTS, test "x$enable_gallium_tests" = xyes) |
Tom Stellard | 79d77b3 | 2012-04-20 16:56:46 +0200 | [diff] [blame] | 1649 | |
Matt Turner | 2f7a37d | 2013-01-20 12:54:31 -0800 | [diff] [blame] | 1650 | if test "x$enable_gallium_loader" = xyes; then |
| 1651 | GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS pipe-loader" |
| 1652 | fi |
Matt Turner | 3a6e548 | 2013-01-20 13:06:24 -0800 | [diff] [blame] | 1653 | AM_CONDITIONAL(NEED_GALLIUM_LOADER, test "x$enable_gallium_loader" = xyes) |
Matt Turner | 2f7a37d | 2013-01-20 12:54:31 -0800 | [diff] [blame] | 1654 | |
Thomas Balling Sørensen | 3299997 | 2010-07-14 00:34:56 +0200 | [diff] [blame] | 1655 | dnl Directory for VDPAU libs |
| 1656 | AC_ARG_WITH([vdpau-libdir], |
| 1657 | [AS_HELP_STRING([--with-vdpau-libdir=DIR], |
| 1658 | [directory for the VDPAU libraries @<:@default=${libdir}/vdpau@:>@])], |
| 1659 | [VDPAU_LIB_INSTALL_DIR="$withval"], |
| 1660 | [VDPAU_LIB_INSTALL_DIR='${libdir}/vdpau']) |
| 1661 | AC_SUBST([VDPAU_LIB_INSTALL_DIR]) |
Younes Manton | 40cd082 | 2010-03-05 23:11:05 -0500 | [diff] [blame] | 1662 | |
Francisco Jerez | c6db1b3 | 2012-04-20 16:56:19 +0200 | [diff] [blame] | 1663 | dnl Directory for OpenCL libs |
| 1664 | AC_ARG_WITH([opencl-libdir], |
| 1665 | [AS_HELP_STRING([--with-opencl-libdir=DIR], |
Francisco Jerez | 4deefd9 | 2013-02-27 12:26:13 +0100 | [diff] [blame] | 1666 | [directory for auxiliary libraries used by the OpenCL implementation @<:@default=${libdir}/opencl@:>@])], |
Francisco Jerez | c6db1b3 | 2012-04-20 16:56:19 +0200 | [diff] [blame] | 1667 | [OPENCL_LIB_INSTALL_DIR="$withval"], |
| 1668 | [OPENCL_LIB_INSTALL_DIR='${libdir}/opencl']) |
| 1669 | AC_SUBST([OPENCL_LIB_INSTALL_DIR]) |
| 1670 | |
Dave Airlie | 81fe198 | 2010-04-22 14:59:29 +1000 | [diff] [blame] | 1671 | dnl |
Jakob Bornecrantz | a82e37b | 2010-03-25 22:21:39 +0100 | [diff] [blame] | 1672 | dnl Gallium helper functions |
| 1673 | dnl |
| 1674 | gallium_check_st() { |
Matt Turner | b3f1f66 | 2013-01-20 15:32:08 -0800 | [diff] [blame] | 1675 | if test "x$NEED_NONNULL_WINSYS" = xyes; then |
Chia-I Wu | 8123934 | 2011-07-02 09:49:17 +0900 | [diff] [blame] | 1676 | if test "x$have_libdrm" != xyes; then |
| 1677 | AC_MSG_ERROR([DRI or Xorg DDX requires libdrm >= $LIBDRM_REQUIRED]) |
| 1678 | fi |
Jakob Bornecrantz | a82e37b | 2010-03-25 22:21:39 +0100 | [diff] [blame] | 1679 | GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS $1" |
| 1680 | fi |
Matt Turner | 69b69b1 | 2013-01-19 11:23:51 -0800 | [diff] [blame] | 1681 | if test "x$enable_dri" = xyes && test "x$2" != x; then |
Jakob Bornecrantz | a82e37b | 2010-03-25 22:21:39 +0100 | [diff] [blame] | 1682 | GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $2" |
Matt Turner | 07f2dee | 2013-03-05 10:25:55 -0800 | [diff] [blame] | 1683 | HAVE_COMMON_DRI=yes |
Jakob Bornecrantz | a82e37b | 2010-03-25 22:21:39 +0100 | [diff] [blame] | 1684 | fi |
Matt Turner | 69b69b1 | 2013-01-19 11:23:51 -0800 | [diff] [blame] | 1685 | if test "x$enable_xorg" = xyes && test "x$3" != x; then |
Jakob Bornecrantz | a82e37b | 2010-03-25 22:21:39 +0100 | [diff] [blame] | 1686 | GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $3" |
| 1687 | fi |
Matt Turner | 69b69b1 | 2013-01-19 11:23:51 -0800 | [diff] [blame] | 1688 | if test "x$enable_xa" = xyes && test "x$4" != x; then |
Thomas Hellstrom | 9f2f5b3 | 2011-06-15 10:46:24 +0200 | [diff] [blame] | 1689 | GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $4" |
| 1690 | fi |
Matt Turner | 69b69b1 | 2013-01-19 11:23:51 -0800 | [diff] [blame] | 1691 | if test "x$enable_xvmc" = xyes && test "x$5" != x; then |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 1692 | GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $5" |
| 1693 | fi |
Matt Turner | 69b69b1 | 2013-01-19 11:23:51 -0800 | [diff] [blame] | 1694 | if test "x$enable_vdpau" = xyes && test "x$6" != x; then |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 1695 | GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $6" |
| 1696 | fi |
Jakob Bornecrantz | a82e37b | 2010-03-25 22:21:39 +0100 | [diff] [blame] | 1697 | } |
| 1698 | |
Marek Olšák | c17fb85 | 2011-06-14 04:03:17 +0200 | [diff] [blame] | 1699 | gallium_require_llvm() { |
| 1700 | if test "x$MESA_LLVM" = x0; then |
| 1701 | case "$host_cpu" in |
Jean-Sébastien Pédron | 148f0de | 2013-06-05 13:27:37 +0200 | [diff] [blame] | 1702 | i*86|x86_64|amd64) AC_MSG_ERROR([LLVM is required to build $1 on x86 and x86_64]);; |
Marek Olšák | c17fb85 | 2011-06-14 04:03:17 +0200 | [diff] [blame] | 1703 | esac |
| 1704 | fi |
| 1705 | } |
| 1706 | |
Tom Stellard | 79d77b3 | 2012-04-20 16:56:46 +0200 | [diff] [blame] | 1707 | gallium_require_drm_loader() { |
| 1708 | if test "x$enable_gallium_loader" = xyes; then |
| 1709 | PKG_CHECK_MODULES([LIBUDEV], [libudev], [], |
Andreas Boll | f416b38 | 2012-11-27 10:25:54 +0100 | [diff] [blame] | 1710 | AC_MSG_ERROR([Gallium drm loader requires libudev])) |
Tom Stellard | 79d77b3 | 2012-04-20 16:56:46 +0200 | [diff] [blame] | 1711 | if test "x$have_libdrm" != xyes; then |
| 1712 | AC_MSG_ERROR([Gallium drm loader requires libdrm >= $LIBDRM_REQUIRED]) |
| 1713 | fi |
| 1714 | enable_gallium_drm_loader=yes |
| 1715 | fi |
| 1716 | } |
| 1717 | |
Tom Stellard | 8d97785 | 2012-05-10 10:21:54 -0400 | [diff] [blame] | 1718 | radeon_llvm_check() { |
Vincent Lejeune | 1feb6b7 | 2012-10-31 21:02:29 +0100 | [diff] [blame] | 1719 | LLVM_REQUIRED_VERSION_MAJOR="3" |
Tom Stellard | a5a7678 | 2013-04-08 07:43:34 -0700 | [diff] [blame] | 1720 | LLVM_REQUIRED_VERSION_MINOR="3" |
Johannes Obermayr | 05c143c | 2012-12-20 20:56:17 +0100 | [diff] [blame] | 1721 | if test "$LLVM_VERSION_INT" -lt "${LLVM_REQUIRED_VERSION_MAJOR}0${LLVM_REQUIRED_VERSION_MINOR}"; then |
Tom Stellard | a5a7678 | 2013-04-08 07:43:34 -0700 | [diff] [blame] | 1722 | AC_MSG_ERROR([LLVM $LLVM_REQUIRED_VERSION_MAJOR.$LLVM_REQUIRED_VERSION_MINOR or newer is required for r600g and radeonsi.]) |
Tom Stellard | 8d97785 | 2012-05-10 10:21:54 -0400 | [diff] [blame] | 1723 | fi |
Jonathan Gray | f96c07a | 2013-06-20 20:14:33 +1000 | [diff] [blame] | 1724 | if test true && $LLVM_CONFIG --targets-built | grep -qvw 'R600' ; then |
Johannes Obermayr | 05c143c | 2012-12-20 20:56:17 +0100 | [diff] [blame] | 1725 | AC_MSG_ERROR([LLVM R600 Target not enabled. You can enable it when building the LLVM |
| 1726 | sources with the --enable-experimental-targets=R600 |
| 1727 | configure flag]) |
Tom Stellard | 8d97785 | 2012-05-10 10:21:54 -0400 | [diff] [blame] | 1728 | fi |
Andreas Hartmetz | f43f07d | 2013-05-28 23:59:41 +0200 | [diff] [blame] | 1729 | LLVM_COMPONENTS="${LLVM_COMPONENTS} r600 bitreader ipo" |
Christian König | 5b2855b | 2013-04-03 10:18:35 +0200 | [diff] [blame] | 1730 | NEED_RADEON_LLVM=yes |
Tom Stellard | 9277b04 | 2013-04-04 13:02:51 -0700 | [diff] [blame] | 1731 | AC_CHECK_LIB([elf], [elf_memory], [ELF_LIB=-lelf], |
| 1732 | [AC_MSG_ERROR([radeonsi and r600g require libelf when using LLVM])]) |
Tom Stellard | 8d97785 | 2012-05-10 10:21:54 -0400 | [diff] [blame] | 1733 | } |
| 1734 | |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 1735 | dnl Gallium drivers |
Matt Turner | b3f1f66 | 2013-01-20 15:32:08 -0800 | [diff] [blame] | 1736 | if test "x$enable_dri" = xyes -o "x$enable_xorg" = xyes -o \ |
| 1737 | "x$enable_xa" = xyes -o "x$enable_xvmc" = xyes -o \ |
| 1738 | "x$enable_vdpau" = xyes; then |
| 1739 | NEED_NONNULL_WINSYS=yes |
| 1740 | fi |
| 1741 | AM_CONDITIONAL(NEED_NONNULL_WINSYS, test "x$NEED_NONNULL_WINSYS" = xyes) |
| 1742 | |
Marek Olšák | 02c8ee2 | 2011-06-27 08:02:31 +0200 | [diff] [blame] | 1743 | dnl Duplicates in GALLIUM_DRIVERS_DIRS are removed by sorting it after this block |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 1744 | if test "x$with_gallium_drivers" != x; then |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 1745 | gallium_drivers=`IFS=', '; echo $with_gallium_drivers` |
| 1746 | for driver in $gallium_drivers; do |
| 1747 | case "x$driver" in |
| 1748 | xsvga) |
Matt Turner | 2cbb94b | 2012-09-07 21:04:44 -0700 | [diff] [blame] | 1749 | HAVE_GALLIUM_SVGA=yes |
Marek Olšák | 02c8ee2 | 2011-06-27 08:02:31 +0200 | [diff] [blame] | 1750 | GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS svga softpipe" |
Thomas Hellstrom | d742a64 | 2011-09-29 21:41:21 +0200 | [diff] [blame] | 1751 | gallium_check_st "svga/drm" "dri-vmwgfx" "" "xa-vmwgfx" |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 1752 | ;; |
| 1753 | xi915) |
Matt Turner | 2cbb94b | 2012-09-07 21:04:44 -0700 | [diff] [blame] | 1754 | HAVE_GALLIUM_I915=yes |
Emil Velikov | c2426bb | 2011-07-14 23:07:19 +0100 | [diff] [blame] | 1755 | PKG_CHECK_MODULES([INTEL], [libdrm_intel >= $LIBDRM_INTEL_REQUIRED]) |
Marek Olšák | 02c8ee2 | 2011-06-27 08:02:31 +0200 | [diff] [blame] | 1756 | GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS i915 softpipe" |
| 1757 | if test "x$MESA_LLVM" = x1; then |
| 1758 | GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS llvmpipe" |
| 1759 | fi |
| 1760 | GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS i915/sw" |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 1761 | gallium_check_st "i915/drm" "dri-i915" "xorg-i915" |
| 1762 | ;; |
Chia-I Wu | 5816a47 | 2012-12-13 06:01:23 +0800 | [diff] [blame] | 1763 | xilo) |
| 1764 | HAVE_GALLIUM_ILO=yes |
| 1765 | PKG_CHECK_MODULES([INTEL], [libdrm_intel >= $LIBDRM_INTEL_REQUIRED]) |
| 1766 | gallium_require_drm_loader |
| 1767 | GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS ilo" |
| 1768 | gallium_check_st "intel/drm" "dri-ilo" |
| 1769 | ;; |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 1770 | xr300) |
Matt Turner | 2cbb94b | 2012-09-07 21:04:44 -0700 | [diff] [blame] | 1771 | HAVE_GALLIUM_R300=yes |
Jerome Glisse | c0c979e | 2012-01-30 17:22:13 -0500 | [diff] [blame] | 1772 | PKG_CHECK_MODULES([RADEON], [libdrm_radeon >= $LIBDRM_RADEON_REQUIRED]) |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 1773 | gallium_require_llvm "Gallium R300" |
Marek Olšák | 02c8ee2 | 2011-06-27 08:02:31 +0200 | [diff] [blame] | 1774 | GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS r300" |
Christian König | 533e9a0 | 2013-09-25 11:49:49 +0200 | [diff] [blame] | 1775 | gallium_check_st "radeon/drm" "r300/dri" "" "" "r300/xvmc" "r300/vdpau" |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 1776 | ;; |
| 1777 | xr600) |
Matt Turner | 2cbb94b | 2012-09-07 21:04:44 -0700 | [diff] [blame] | 1778 | HAVE_GALLIUM_R600=yes |
Jerome Glisse | c0c979e | 2012-01-30 17:22:13 -0500 | [diff] [blame] | 1779 | PKG_CHECK_MODULES([RADEON], [libdrm_radeon >= $LIBDRM_RADEON_REQUIRED]) |
Tom Stellard | 79d77b3 | 2012-04-20 16:56:46 +0200 | [diff] [blame] | 1780 | gallium_require_drm_loader |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 1781 | GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS r600" |
Adam Rak | 6a829a1 | 2011-11-30 22:20:41 +0100 | [diff] [blame] | 1782 | if test "x$enable_r600_llvm" = xyes -o "x$enable_opencl" = xyes; then |
Tom Stellard | 8d97785 | 2012-05-10 10:21:54 -0400 | [diff] [blame] | 1783 | radeon_llvm_check |
Andreas Hartmetz | f43f07d | 2013-05-28 23:59:41 +0200 | [diff] [blame] | 1784 | LLVM_COMPONENTS="${LLVM_COMPONENTS} bitreader asmparser" |
Adam Rak | 6a829a1 | 2011-11-30 22:20:41 +0100 | [diff] [blame] | 1785 | fi |
| 1786 | if test "x$enable_r600_llvm" = xyes; then |
Tom Stellard | ced73ea | 2012-04-17 09:26:28 -0400 | [diff] [blame] | 1787 | USE_R600_LLVM_COMPILER=yes; |
| 1788 | fi |
Tom Stellard | 0898047 | 2013-01-25 16:43:11 +0100 | [diff] [blame] | 1789 | if test "x$enable_opencl" = xyes; then |
| 1790 | LLVM_COMPONENTS="${LLVM_COMPONENTS} bitreader asmparser" |
| 1791 | fi |
Christian König | 015853b | 2013-09-25 11:34:39 +0200 | [diff] [blame] | 1792 | gallium_check_st "radeon/drm" "r600/dri" "r600/xorg" "" "r600/xvmc" "r600/vdpau" |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 1793 | ;; |
Tom Stellard | a75c616 | 2012-01-06 17:38:37 -0500 | [diff] [blame] | 1794 | xradeonsi) |
Matt Turner | 2cbb94b | 2012-09-07 21:04:44 -0700 | [diff] [blame] | 1795 | HAVE_GALLIUM_RADEONSI=yes |
Michel Dänzer | 24bc382 | 2012-05-12 12:12:21 +0200 | [diff] [blame] | 1796 | PKG_CHECK_MODULES([RADEON], [libdrm_radeon >= $LIBDRM_RADEON_REQUIRED]) |
| 1797 | gallium_require_drm_loader |
Tom Stellard | a75c616 | 2012-01-06 17:38:37 -0500 | [diff] [blame] | 1798 | GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS radeonsi" |
Tom Stellard | 8d97785 | 2012-05-10 10:21:54 -0400 | [diff] [blame] | 1799 | radeon_llvm_check |
Christian König | f6e2aa0 | 2013-09-25 12:28:09 +0200 | [diff] [blame] | 1800 | gallium_check_st "radeon/drm" "radeonsi/dri" "radeonsi/xorg" "" "" "radeonsi/vdpau" "" |
Tom Stellard | a75c616 | 2012-01-06 17:38:37 -0500 | [diff] [blame] | 1801 | ;; |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 1802 | xnouveau) |
Matt Turner | 2cbb94b | 2012-09-07 21:04:44 -0700 | [diff] [blame] | 1803 | HAVE_GALLIUM_NOUVEAU=yes |
Emil Velikov | c2426bb | 2011-07-14 23:07:19 +0100 | [diff] [blame] | 1804 | PKG_CHECK_MODULES([NOUVEAU], [libdrm_nouveau >= $LIBDRM_NOUVEAU_REQUIRED]) |
Tom Stellard | 79d77b3 | 2012-04-20 16:56:46 +0200 | [diff] [blame] | 1805 | gallium_require_drm_loader |
Johannes Obermayr | 5eb7ff1 | 2013-08-20 20:14:00 +0200 | [diff] [blame] | 1806 | GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS nouveau" |
Maarten Lankhorst | df8f864 | 2011-10-18 14:24:30 +0200 | [diff] [blame] | 1807 | gallium_check_st "nouveau/drm" "dri-nouveau" "xorg-nouveau" "" "xvmc-nouveau" "vdpau-nouveau" |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 1808 | ;; |
Rob Clark | 6173cc1 | 2012-10-27 11:07:34 -0500 | [diff] [blame] | 1809 | xfreedreno) |
| 1810 | HAVE_GALLIUM_FREEDRENO=yes |
| 1811 | PKG_CHECK_MODULES([FREEDRENO], [libdrm_freedreno >= $LIBDRM_FREEDRENO_REQUIRED]) |
| 1812 | gallium_require_drm_loader |
| 1813 | GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS freedreno" |
| 1814 | gallium_check_st "freedreno/drm" "dri-freedreno" "" "" "" "" |
| 1815 | ;; |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 1816 | xswrast) |
Matt Turner | 2cbb94b | 2012-09-07 21:04:44 -0700 | [diff] [blame] | 1817 | HAVE_GALLIUM_SOFTPIPE=yes |
Marek Olšák | c6f59fc | 2011-07-26 01:05:13 +0200 | [diff] [blame] | 1818 | GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS softpipe" |
| 1819 | if test "x$MESA_LLVM" = x1; then |
Matt Turner | 2cbb94b | 2012-09-07 21:04:44 -0700 | [diff] [blame] | 1820 | HAVE_GALLIUM_LLVMPIPE=yes |
Marek Olšák | c6f59fc | 2011-07-26 01:05:13 +0200 | [diff] [blame] | 1821 | GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS llvmpipe" |
| 1822 | fi |
| 1823 | |
Matt Turner | 69b69b1 | 2013-01-19 11:23:51 -0800 | [diff] [blame] | 1824 | if test "x$enable_dri" = xyes; then |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 1825 | GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS dri-swrast" |
| 1826 | fi |
Matt Turner | 69b69b1 | 2013-01-19 11:23:51 -0800 | [diff] [blame] | 1827 | if test "x$enable_vdpau" = xyes; then |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 1828 | GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS vdpau-softpipe" |
| 1829 | fi |
Matt Turner | 69b69b1 | 2013-01-19 11:23:51 -0800 | [diff] [blame] | 1830 | if test "x$enable_xvmc" = xyes; then |
Christian König | c3b2230 | 2011-07-04 15:04:41 +0200 | [diff] [blame] | 1831 | GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS xvmc-softpipe" |
| 1832 | fi |
Matt Turner | 69b69b1 | 2013-01-19 11:23:51 -0800 | [diff] [blame] | 1833 | if test "x$enable_vdpau" = xyes -o "x$enable_xvmc" = xyes; then |
Matt Turner | b3f1f66 | 2013-01-20 15:32:08 -0800 | [diff] [blame] | 1834 | NEED_WINSYS_XLIB=yes |
| 1835 | GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/xlib" |
Younes Manton | b97816d | 2011-07-14 12:22:20 -0400 | [diff] [blame] | 1836 | fi |
Marek Olšák | 58b6a19 | 2011-06-14 07:46:59 +0200 | [diff] [blame] | 1837 | ;; |
| 1838 | *) |
| 1839 | AC_MSG_ERROR([Unknown Gallium driver: $driver]) |
| 1840 | ;; |
| 1841 | esac |
| 1842 | done |
Chia-I Wu | a1306f4 | 2010-01-22 15:51:51 +0800 | [diff] [blame] | 1843 | fi |
Tom Stellard | 69d639b | 2013-01-18 15:08:28 +0000 | [diff] [blame] | 1844 | |
| 1845 | dnl Set LLVM_LIBS - This is done after the driver configuration so |
| 1846 | dnl that drivers can add additonal components to LLVM_COMPONENTS. |
| 1847 | dnl Previously, gallium drivers were updating LLVM_LIBS directly |
| 1848 | dnl by calling llvm-config --libs ${DRIVER_LLVM_COMPONENTS}, but |
| 1849 | dnl this was causing the same libraries to be appear multiple times |
| 1850 | dnl in LLVM_LIBS. |
| 1851 | |
Tom Stellard | 7a850c5 | 2013-01-25 12:46:55 -0500 | [diff] [blame] | 1852 | if test "x$MESA_LLVM" != x0; then |
Tom Stellard | cf69a59 | 2013-01-18 16:26:12 +0000 | [diff] [blame] | 1853 | |
Tom Stellard | 7a850c5 | 2013-01-25 12:46:55 -0500 | [diff] [blame] | 1854 | LLVM_LIBS="`$LLVM_CONFIG --libs ${LLVM_COMPONENTS}`" |
Tom Stellard | cf69a59 | 2013-01-18 16:26:12 +0000 | [diff] [blame] | 1855 | |
Tom Stellard | 7a850c5 | 2013-01-25 12:46:55 -0500 | [diff] [blame] | 1856 | if test "x$with_llvm_shared_libs" = xyes; then |
| 1857 | dnl We can't use $LLVM_VERSION because it has 'svn' stripped out, |
| 1858 | LLVM_SO_NAME=LLVM-`$LLVM_CONFIG --version` |
Jonathan Liu | af16f73 | 2013-06-04 23:04:44 +1000 | [diff] [blame] | 1859 | AS_IF([test -f "$LLVM_LIBDIR/lib$LLVM_SO_NAME.so"], [llvm_have_one_so=yes]) |
Tom Stellard | 7a850c5 | 2013-01-25 12:46:55 -0500 | [diff] [blame] | 1860 | |
| 1861 | if test "x$llvm_have_one_so" = xyes; then |
| 1862 | dnl LLVM was built using auto*, so there is only one shared object. |
| 1863 | LLVM_LIBS="-l$LLVM_SO_NAME" |
| 1864 | else |
| 1865 | dnl If LLVM was built with CMake, there will be one shared object per |
| 1866 | dnl component. |
Jonathan Liu | af16f73 | 2013-06-04 23:04:44 +1000 | [diff] [blame] | 1867 | AS_IF([test ! -f "$LLVM_LIBDIR/libLLVMTarget.so"], |
| 1868 | [AC_MSG_ERROR([Could not find llvm shared libraries: |
Tom Stellard | cf69a59 | 2013-01-18 16:26:12 +0000 | [diff] [blame] | 1869 | Please make sure you have built llvm with the --enable-shared option |
| 1870 | and that your llvm libraries are installed in $LLVM_LIBDIR |
| 1871 | If you have installed your llvm libraries to a different directory you |
| 1872 | can use the --with-llvm-prefix= configure flag to specify this directory. |
| 1873 | NOTE: Mesa is attempting to use llvm shared libraries because you have |
| 1874 | passed one of the following options to configure: |
| 1875 | --with-llvm-shared-libs |
| 1876 | --enable-opencl |
| 1877 | If you do not want to build with llvm shared libraries and instead want to |
| 1878 | use llvm static libraries then remove these options from your configure |
Jonathan Liu | af16f73 | 2013-06-04 23:04:44 +1000 | [diff] [blame] | 1879 | invocation and reconfigure.])]) |
Tom Stellard | cf69a59 | 2013-01-18 16:26:12 +0000 | [diff] [blame] | 1880 | |
Tom Stellard | 7a850c5 | 2013-01-25 12:46:55 -0500 | [diff] [blame] | 1881 | dnl We don't need to update LLVM_LIBS in this case because the LLVM |
| 1882 | dnl install uses a shared object for each compoenent and we have |
| 1883 | dnl already added all of these objects to LLVM_LIBS. |
| 1884 | fi |
Tom Stellard | cf69a59 | 2013-01-18 16:26:12 +0000 | [diff] [blame] | 1885 | fi |
Tom Stellard | 69d639b | 2013-01-18 15:08:28 +0000 | [diff] [blame] | 1886 | fi |
| 1887 | |
Matt Turner | 2cbb94b | 2012-09-07 21:04:44 -0700 | [diff] [blame] | 1888 | AM_CONDITIONAL(HAVE_GALLIUM_SVGA, test "x$HAVE_GALLIUM_SVGA" = xyes) |
| 1889 | AM_CONDITIONAL(HAVE_GALLIUM_I915, test "x$HAVE_GALLIUM_I915" = xyes) |
Chia-I Wu | 5816a47 | 2012-12-13 06:01:23 +0800 | [diff] [blame] | 1890 | AM_CONDITIONAL(HAVE_GALLIUM_ILO, test "x$HAVE_GALLIUM_ILO" = xyes) |
Matt Turner | 2cbb94b | 2012-09-07 21:04:44 -0700 | [diff] [blame] | 1891 | AM_CONDITIONAL(HAVE_GALLIUM_R300, test "x$HAVE_GALLIUM_R300" = xyes) |
| 1892 | AM_CONDITIONAL(HAVE_GALLIUM_R600, test "x$HAVE_GALLIUM_R600" = xyes) |
| 1893 | AM_CONDITIONAL(HAVE_GALLIUM_RADEONSI, test "x$HAVE_GALLIUM_RADEONSI" = xyes) |
| 1894 | AM_CONDITIONAL(HAVE_GALLIUM_NOUVEAU, test "x$HAVE_GALLIUM_NOUVEAU" = xyes) |
Rob Clark | 6173cc1 | 2012-10-27 11:07:34 -0500 | [diff] [blame] | 1895 | AM_CONDITIONAL(HAVE_GALLIUM_FREEDRENO, test "x$HAVE_GALLIUM_FREEDRENO" = xyes) |
Matt Turner | 2cbb94b | 2012-09-07 21:04:44 -0700 | [diff] [blame] | 1896 | AM_CONDITIONAL(HAVE_GALLIUM_SOFTPIPE, test "x$HAVE_GALLIUM_SOFTPIPE" = xyes) |
| 1897 | AM_CONDITIONAL(HAVE_GALLIUM_LLVMPIPE, test "x$HAVE_GALLIUM_LLVMPIPE" = xyes) |
Chia-I Wu | a1306f4 | 2010-01-22 15:51:51 +0800 | [diff] [blame] | 1898 | |
Matt Turner | 0d3b1b0 | 2013-01-20 11:46:02 -0800 | [diff] [blame] | 1899 | AM_CONDITIONAL(NEED_GALLIUM_SOFTPIPE_DRIVER, test "x$HAVE_GALLIUM_SVGA" = xyes -o \ |
| 1900 | "x$HAVE_GALLIUM_I915" = xyes -o \ |
| 1901 | "x$HAVE_GALLIUM_SOFTPIPE" = xyes) |
| 1902 | AM_CONDITIONAL(NEED_GALLIUM_LLVMPIPE_DRIVER, test "x$HAVE_GALLIUM_I915" = xyes -o \ |
Kristian Lehmann | cec7b5c | 2013-08-26 21:19:50 +0200 | [diff] [blame] | 1903 | "x$HAVE_GALLIUM_SOFTPIPE" = xyes \ |
| 1904 | && test "x$MESA_LLVM" = x1) |
Matt Turner | 0d3b1b0 | 2013-01-20 11:46:02 -0800 | [diff] [blame] | 1905 | |
Francisco Jerez | e136453 | 2012-04-25 22:16:00 +0200 | [diff] [blame] | 1906 | if test "x$enable_gallium_loader" = xyes; then |
| 1907 | GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/null" |
Francisco Jerez | e136453 | 2012-04-25 22:16:00 +0200 | [diff] [blame] | 1908 | |
Francisco Jerez | e136453 | 2012-04-25 22:16:00 +0200 | [diff] [blame] | 1909 | if test "x$enable_gallium_drm_loader" = xyes; then |
| 1910 | GALLIUM_PIPE_LOADER_DEFINES="$GALLIUM_PIPE_LOADER_DEFINES -DHAVE_PIPE_LOADER_DRM" |
Tom Stellard | 044de40 | 2012-07-17 18:36:06 +0000 | [diff] [blame] | 1911 | PKG_CHECK_MODULES([GALLIUM_PIPE_LOADER_XCB], [xcb xcb-dri2], |
| 1912 | pipe_loader_have_xcb=yes, pipe_loader_have_xcb=no) |
| 1913 | if test "x$pipe_loader_have_xcb" = xyes; then |
Matt Turner | 2428099 | 2013-04-22 11:50:29 -0700 | [diff] [blame] | 1914 | GALLIUM_PIPE_LOADER_DEFINES="$GALLIUM_PIPE_LOADER_DEFINES -DHAVE_PIPE_LOADER_XCB" |
Tom Stellard | 044de40 | 2012-07-17 18:36:06 +0000 | [diff] [blame] | 1915 | GALLIUM_PIPE_LOADER_LIBS="$GALLIUM_PIPE_LOADER_LIBS $GALLIUM_PIPE_LOADER_XCB_LIBS $LIBDRM_LIBS" |
| 1916 | fi |
Francisco Jerez | e136453 | 2012-04-25 22:16:00 +0200 | [diff] [blame] | 1917 | fi |
| 1918 | |
| 1919 | AC_SUBST([GALLIUM_PIPE_LOADER_DEFINES]) |
| 1920 | AC_SUBST([GALLIUM_PIPE_LOADER_LIBS]) |
| 1921 | fi |
| 1922 | |
Matt Turner | 07f2dee | 2013-03-05 10:25:55 -0800 | [diff] [blame] | 1923 | AM_CONDITIONAL(HAVE_I915_DRI, test x$HAVE_I915_DRI = xyes) |
| 1924 | AM_CONDITIONAL(HAVE_I965_DRI, test x$HAVE_I965_DRI = xyes) |
| 1925 | AM_CONDITIONAL(HAVE_NOUVEAU_DRI, test x$HAVE_NOUVEAU_DRI = xyes) |
| 1926 | AM_CONDITIONAL(HAVE_R200_DRI, test x$HAVE_R200_DRI = xyes) |
| 1927 | AM_CONDITIONAL(HAVE_RADEON_DRI, test x$HAVE_RADEON_DRI = xyes) |
| 1928 | AM_CONDITIONAL(HAVE_SWRAST_DRI, test x$HAVE_SWRAST_DRI = xyes) |
| 1929 | AM_CONDITIONAL(HAVE_COMMON_DRI, test x$HAVE_COMMON_DRI = xyes) |
| 1930 | |
Matt Turner | b3f1f66 | 2013-01-20 15:32:08 -0800 | [diff] [blame] | 1931 | AM_CONDITIONAL(NEED_RADEON_DRM_WINSYS, test "x$NEED_NONNULL_WINSYS" = xyes -a \ |
| 1932 | "x$HAVE_GALLIUM_R300" = xyes -o \ |
| 1933 | "x$HAVE_GALLIUM_R600" = xyes -o \ |
| 1934 | "x$HAVE_GALLIUM_RADEONSI" = xyes) |
| 1935 | AM_CONDITIONAL(NEED_WINSYS_WRAPPER, test "x$HAVE_GALLIUM_I915" = xyes -o \ |
| 1936 | "x$HAVE_GALLIUM_SVGA" = xyes) |
| 1937 | AM_CONDITIONAL(NEED_WINSYS_XLIB, test "x$NEED_WINSYS_XLIB" = xyes) |
Christian König | 5b2855b | 2013-04-03 10:18:35 +0200 | [diff] [blame] | 1938 | AM_CONDITIONAL(NEED_RADEON_LLVM, test x$NEED_RADEON_LLVM = xyes) |
Tom Stellard | ced73ea | 2012-04-17 09:26:28 -0400 | [diff] [blame] | 1939 | AM_CONDITIONAL(USE_R600_LLVM_COMPILER, test x$USE_R600_LLVM_COMPILER = xyes) |
Francisco Jerez | e136453 | 2012-04-25 22:16:00 +0200 | [diff] [blame] | 1940 | AM_CONDITIONAL(HAVE_LOADER_GALLIUM, test x$enable_gallium_loader = xyes) |
| 1941 | AM_CONDITIONAL(HAVE_DRM_LOADER_GALLIUM, test x$enable_gallium_drm_loader = xyes) |
Tom Stellard | d85e512 | 2012-04-20 14:46:45 -0400 | [diff] [blame] | 1942 | AM_CONDITIONAL(HAVE_GALLIUM_COMPUTE, test x$enable_opencl = xyes) |
Tom Stellard | 80d290d | 2012-08-24 11:48:32 -0700 | [diff] [blame] | 1943 | AM_CONDITIONAL(HAVE_MESA_LLVM, test x$MESA_LLVM = x1) |
| 1944 | AM_CONDITIONAL(LLVM_NEEDS_FNORTTI, test $LLVM_VERSION_INT -ge 302) |
| 1945 | |
Tom Stellard | 9277b04 | 2013-04-04 13:02:51 -0700 | [diff] [blame] | 1946 | AC_SUBST([ELF_LIB]) |
Tom Stellard | 26ab747 | 2012-03-03 20:02:05 -0500 | [diff] [blame] | 1947 | |
Quentin Glidic | c5e9396 | 2012-11-28 16:33:47 +0100 | [diff] [blame] | 1948 | AM_CONDITIONAL(NEED_LIBPROGRAM, test "x$with_gallium_drivers" != x -o \ |
| 1949 | "x$enable_xlib_glx" = xyes -o \ |
Matt Turner | 2f142d5 | 2013-08-20 14:16:17 -0700 | [diff] [blame] | 1950 | "x$enable_osmesa" = xyes -o \ |
| 1951 | "x$enable_gallium_osmesa" = xyes) |
Matt Turner | 13a7010 | 2013-01-19 00:35:43 -0800 | [diff] [blame] | 1952 | AM_CONDITIONAL(HAVE_X11_DRIVER, test "x$enable_xlib_glx" = xyes) |
| 1953 | AM_CONDITIONAL(HAVE_OSMESA, test "x$enable_osmesa" = xyes) |
Matt Turner | 2f142d5 | 2013-08-20 14:16:17 -0700 | [diff] [blame] | 1954 | AM_CONDITIONAL(HAVE_GALLIUM_OSMESA, test "x$enable_gallium_osmesa" = xyes) |
Eric Anholt | f9d1562 | 2012-05-24 13:59:21 -0700 | [diff] [blame] | 1955 | |
Eric Anholt | e426949 | 2012-06-11 10:25:05 -0700 | [diff] [blame] | 1956 | AM_CONDITIONAL(HAVE_X86_ASM, echo "$DEFINES" | grep 'X86_ASM' >/dev/null 2>&1) |
| 1957 | AM_CONDITIONAL(HAVE_X86_64_ASM, echo "$DEFINES" | grep 'X86_64_ASM' >/dev/null 2>&1) |
| 1958 | AM_CONDITIONAL(HAVE_SPARC_ASM, echo "$DEFINES" | grep 'SPARC_ASM' >/dev/null 2>&1) |
Eric Anholt | f9d1562 | 2012-05-24 13:59:21 -0700 | [diff] [blame] | 1959 | |
Matt Turner | cc9f609 | 2013-01-14 16:16:00 -0800 | [diff] [blame] | 1960 | AM_CONDITIONAL(CROSS_COMPILING, test "x$cross_compiling" = xyes) |
| 1961 | |
Matt Turner | 184b2f0 | 2012-09-05 17:06:16 -0700 | [diff] [blame] | 1962 | AC_SUBST([VDPAU_MAJOR], 1) |
| 1963 | AC_SUBST([VDPAU_MINOR], 0) |
| 1964 | |
Matt Turner | 0b132df | 2012-09-07 20:47:04 -0700 | [diff] [blame] | 1965 | AC_SUBST([XVMC_MAJOR], 1) |
| 1966 | AC_SUBST([XVMC_MINOR], 0) |
| 1967 | |
Rob Clark | 890e27e | 2013-06-05 16:16:27 -0400 | [diff] [blame] | 1968 | AC_SUBST([XA_MAJOR], 2) |
Matt Turner | d53901c | 2012-09-07 15:24:24 -0700 | [diff] [blame] | 1969 | AC_SUBST([XA_MINOR], 0) |
| 1970 | AC_SUBST([XA_TINY], 0) |
| 1971 | AC_SUBST([XA_VERSION], "$XA_MAJOR.$XA_MINOR.$XA_TINY") |
| 1972 | |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 1973 | dnl Restore LDFLAGS and CPPFLAGS |
| 1974 | LDFLAGS="$_SAVE_LDFLAGS" |
| 1975 | CPPFLAGS="$_SAVE_CPPFLAGS" |
| 1976 | |
Johannes Obermayr | 6016dab | 2013-09-12 00:32:40 +0200 | [diff] [blame] | 1977 | dnl Suppress clang's warnings about unused CFLAGS and CXXFLAGS |
| 1978 | if test "x$acv_mesa_CLANG" = xyes; then |
| 1979 | CFLAGS="$CFLAGS -Qunused-arguments" |
| 1980 | CXXFLAGS="$CXXFLAGS -Qunused-arguments" |
| 1981 | fi |
| 1982 | |
Marcin Baczyński | ff2efdf | 2011-07-13 21:26:49 +0200 | [diff] [blame] | 1983 | dnl Add user CFLAGS and CXXFLAGS |
| 1984 | CFLAGS="$CFLAGS $USER_CFLAGS" |
| 1985 | CXXFLAGS="$CXXFLAGS $USER_CXXFLAGS" |
| 1986 | |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 1987 | dnl Substitute the config |
Matt Turner | c874740 | 2012-09-05 20:29:20 -0700 | [diff] [blame] | 1988 | AC_CONFIG_FILES([Makefile |
Matt Turner | 63c3a05 | 2012-09-24 14:30:21 -0700 | [diff] [blame] | 1989 | src/Makefile |
Matt Turner | 383a70b | 2012-08-22 10:01:42 -0700 | [diff] [blame] | 1990 | src/egl/Makefile |
Eric Anholt | 8861202 | 2012-02-05 10:46:13 +0100 | [diff] [blame] | 1991 | src/egl/drivers/Makefile |
Eric Anholt | e5f8954 | 2012-02-06 12:12:53 +0100 | [diff] [blame] | 1992 | src/egl/drivers/dri2/Makefile |
| 1993 | src/egl/drivers/glx/Makefile |
Eric Anholt | 8861202 | 2012-02-05 10:46:13 +0100 | [diff] [blame] | 1994 | src/egl/main/Makefile |
| 1995 | src/egl/main/egl.pc |
Benjamin Franzke | 8b90205 | 2012-01-24 20:38:01 +0100 | [diff] [blame] | 1996 | src/egl/wayland/Makefile |
Matt Turner | 383a70b | 2012-08-22 10:01:42 -0700 | [diff] [blame] | 1997 | src/egl/wayland/wayland-drm/Makefile |
Benjamin Franzke | 8b90205 | 2012-01-24 20:38:01 +0100 | [diff] [blame] | 1998 | src/egl/wayland/wayland-egl/Makefile |
| 1999 | src/egl/wayland/wayland-egl/wayland-egl.pc |
Tom Stellard | 80d290d | 2012-08-24 11:48:32 -0700 | [diff] [blame] | 2000 | src/gallium/auxiliary/Makefile |
Matt Turner | 383a70b | 2012-08-22 10:01:42 -0700 | [diff] [blame] | 2001 | src/gallium/auxiliary/pipe-loader/Makefile |
| 2002 | src/gallium/drivers/Makefile |
Matt Turner | 5c6e1e9 | 2013-03-12 17:09:55 -0700 | [diff] [blame] | 2003 | src/gallium/drivers/freedreno/Makefile |
Rob Clark | 18c317b | 2013-05-26 17:13:27 -0400 | [diff] [blame] | 2004 | src/gallium/drivers/freedreno/a2xx/Makefile |
Rob Clark | 2855f3f | 2013-05-26 17:13:44 -0400 | [diff] [blame] | 2005 | src/gallium/drivers/freedreno/a3xx/Makefile |
Emil Velikov | 1918c37 | 2013-06-05 23:42:16 +0100 | [diff] [blame] | 2006 | src/gallium/drivers/galahad/Makefile |
Matt Turner | 7d5496a | 2012-08-29 10:31:29 -0700 | [diff] [blame] | 2007 | src/gallium/drivers/i915/Makefile |
Emil Velikov | d7c66ff | 2013-06-05 23:28:11 +0100 | [diff] [blame] | 2008 | src/gallium/drivers/identity/Makefile |
Chia-I Wu | 5816a47 | 2012-12-13 06:01:23 +0800 | [diff] [blame] | 2009 | src/gallium/drivers/ilo/Makefile |
Matt Turner | 960cbd8 | 2012-08-29 12:04:45 -0700 | [diff] [blame] | 2010 | src/gallium/drivers/llvmpipe/Makefile |
Emil Velikov | 38d80c0 | 2013-06-05 23:33:38 +0100 | [diff] [blame] | 2011 | src/gallium/drivers/noop/Makefile |
Matt Turner | 1cf6632 | 2012-08-29 12:33:57 -0700 | [diff] [blame] | 2012 | src/gallium/drivers/nouveau/Makefile |
Matt Turner | 383a70b | 2012-08-22 10:01:42 -0700 | [diff] [blame] | 2013 | src/gallium/drivers/r300/Makefile |
| 2014 | src/gallium/drivers/r600/Makefile |
Tom Stellard | 0dcb9ae | 2012-08-30 12:55:29 -0400 | [diff] [blame] | 2015 | src/gallium/drivers/radeon/Makefile |
Matt Turner | da2d98f | 2012-08-29 14:29:08 -0700 | [diff] [blame] | 2016 | src/gallium/drivers/radeonsi/Makefile |
Matt Turner | b51cdfa | 2012-08-29 11:42:45 -0700 | [diff] [blame] | 2017 | src/gallium/drivers/rbug/Makefile |
Matt Turner | f781d4c | 2012-08-29 12:17:57 -0700 | [diff] [blame] | 2018 | src/gallium/drivers/softpipe/Makefile |
Matt Turner | 0a42131 | 2012-08-29 12:29:47 -0700 | [diff] [blame] | 2019 | src/gallium/drivers/svga/Makefile |
Tom Stellard | 047fe04 | 2012-08-24 11:46:32 -0700 | [diff] [blame] | 2020 | src/gallium/drivers/trace/Makefile |
Matt Turner | 9b35758 | 2012-08-31 15:45:07 -0700 | [diff] [blame] | 2021 | src/gallium/state_trackers/Makefile |
Matt Turner | 383a70b | 2012-08-22 10:01:42 -0700 | [diff] [blame] | 2022 | src/gallium/state_trackers/clover/Makefile |
Matt Turner | 2ff51cd | 2012-08-29 20:30:22 -0700 | [diff] [blame] | 2023 | src/gallium/state_trackers/dri/Makefile |
Matt Turner | d988481 | 2012-08-29 20:34:39 -0700 | [diff] [blame] | 2024 | src/gallium/state_trackers/dri/drm/Makefile |
Matt Turner | f4b1f28 | 2012-08-29 20:46:02 -0700 | [diff] [blame] | 2025 | src/gallium/state_trackers/dri/sw/Makefile |
Matt Turner | 8443efd | 2012-08-31 17:11:35 -0700 | [diff] [blame] | 2026 | src/gallium/state_trackers/egl/Makefile |
Matt Turner | c0b9081 | 2012-09-04 11:41:22 -0700 | [diff] [blame] | 2027 | src/gallium/state_trackers/gbm/Makefile |
Emil Velikov | 921fdf1 | 2013-09-22 16:14:06 +0100 | [diff] [blame] | 2028 | src/gallium/state_trackers/glx/xlib/Makefile |
Brian Paul | 79eac7d | 2013-03-11 18:31:21 -0600 | [diff] [blame] | 2029 | src/gallium/state_trackers/osmesa/Makefile |
Matt Turner | d2ca32e | 2012-09-04 13:13:51 -0700 | [diff] [blame] | 2030 | src/gallium/state_trackers/vdpau/Makefile |
Matt Turner | 68c0311 | 2012-09-04 13:24:33 -0700 | [diff] [blame] | 2031 | src/gallium/state_trackers/vega/Makefile |
Matt Turner | 2ad2603 | 2012-09-04 15:17:11 -0700 | [diff] [blame] | 2032 | src/gallium/state_trackers/xa/Makefile |
Matt Turner | 405a9da | 2012-09-04 20:59:34 -0700 | [diff] [blame] | 2033 | src/gallium/state_trackers/xorg/Makefile |
Matt Turner | 984562d | 2012-09-04 21:08:19 -0700 | [diff] [blame] | 2034 | src/gallium/state_trackers/xvmc/Makefile |
Matt Turner | 9bf0d49 | 2012-08-23 15:55:53 -0700 | [diff] [blame] | 2035 | src/gallium/targets/Makefile |
Matt Turner | 5c6e1e9 | 2013-03-12 17:09:55 -0700 | [diff] [blame] | 2036 | src/gallium/targets/dri-freedreno/Makefile |
Matt Turner | 2cd5bf7 | 2012-09-04 21:26:39 -0700 | [diff] [blame] | 2037 | src/gallium/targets/dri-i915/Makefile |
Chia-I Wu | 5816a47 | 2012-12-13 06:01:23 +0800 | [diff] [blame] | 2038 | src/gallium/targets/dri-ilo/Makefile |
Matt Turner | 6ed9f9f | 2012-09-05 11:07:30 -0700 | [diff] [blame] | 2039 | src/gallium/targets/dri-nouveau/Makefile |
Matt Turner | b3068d8 | 2012-09-05 11:17:33 -0700 | [diff] [blame] | 2040 | src/gallium/targets/dri-swrast/Makefile |
Matt Turner | c14c801 | 2012-09-05 11:19:11 -0700 | [diff] [blame] | 2041 | src/gallium/targets/dri-vmwgfx/Makefile |
Matt Turner | cdee0e8 | 2012-09-10 11:21:26 -0700 | [diff] [blame] | 2042 | src/gallium/targets/egl-static/Makefile |
Matt Turner | 53c62d3 | 2012-09-13 10:10:14 -0700 | [diff] [blame] | 2043 | src/gallium/targets/gbm/Makefile |
Matt Turner | 383a70b | 2012-08-22 10:01:42 -0700 | [diff] [blame] | 2044 | src/gallium/targets/opencl/Makefile |
Brian Paul | 79eac7d | 2013-03-11 18:31:21 -0600 | [diff] [blame] | 2045 | src/gallium/targets/osmesa/Makefile |
Jon Severinsson | c811190 | 2013-08-23 11:18:59 +0200 | [diff] [blame] | 2046 | src/gallium/targets/osmesa/osmesa.pc |
Matt Turner | 45270fb | 2012-09-13 10:45:01 -0700 | [diff] [blame] | 2047 | src/gallium/targets/pipe-loader/Makefile |
Christian König | f6e2aa0 | 2013-09-25 12:28:09 +0200 | [diff] [blame] | 2048 | src/gallium/targets/radeonsi/dri/Makefile |
| 2049 | src/gallium/targets/radeonsi/vdpau/Makefile |
| 2050 | src/gallium/targets/radeonsi/xorg/Makefile |
Christian König | 533e9a0 | 2013-09-25 11:49:49 +0200 | [diff] [blame] | 2051 | src/gallium/targets/r300/dri/Makefile |
| 2052 | src/gallium/targets/r300/vdpau/Makefile |
| 2053 | src/gallium/targets/r300/xvmc/Makefile |
Christian König | 015853b | 2013-09-25 11:34:39 +0200 | [diff] [blame] | 2054 | src/gallium/targets/r600/dri/Makefile |
| 2055 | src/gallium/targets/r600/vdpau/Makefile |
| 2056 | src/gallium/targets/r600/xorg/Makefile |
| 2057 | src/gallium/targets/r600/xvmc/Makefile |
Matt Turner | 0470fb4 | 2012-09-05 15:19:30 -0700 | [diff] [blame] | 2058 | src/gallium/targets/libgl-xlib/Makefile |
Matt Turner | d0df9e8 | 2012-09-05 15:55:49 -0700 | [diff] [blame] | 2059 | src/gallium/targets/vdpau-nouveau/Makefile |
Matt Turner | 7f24483 | 2012-09-05 16:52:41 -0700 | [diff] [blame] | 2060 | src/gallium/targets/vdpau-softpipe/Makefile |
Matt Turner | d53901c | 2012-09-07 15:24:24 -0700 | [diff] [blame] | 2061 | src/gallium/targets/xa-vmwgfx/Makefile |
| 2062 | src/gallium/targets/xa-vmwgfx/xatracker.pc |
Matt Turner | 1a43491 | 2012-09-06 16:56:06 -0700 | [diff] [blame] | 2063 | src/gallium/targets/xorg-i915/Makefile |
Matt Turner | f984d12 | 2012-09-07 13:19:45 -0700 | [diff] [blame] | 2064 | src/gallium/targets/xorg-nouveau/Makefile |
Matt Turner | b173b16 | 2012-09-07 13:50:43 -0700 | [diff] [blame] | 2065 | src/gallium/targets/xvmc-nouveau/Makefile |
Matt Turner | af6a2e4 | 2012-09-07 14:03:27 -0700 | [diff] [blame] | 2066 | src/gallium/targets/xvmc-softpipe/Makefile |
Andreas Boll | 59088a2 | 2012-11-26 19:58:12 +0100 | [diff] [blame] | 2067 | src/gallium/tests/trivial/Makefile |
Andreas Boll | cb4d502 | 2012-11-27 19:18:25 +0100 | [diff] [blame] | 2068 | src/gallium/tests/unit/Makefile |
Matt Turner | 9bf0d49 | 2012-08-23 15:55:53 -0700 | [diff] [blame] | 2069 | src/gallium/winsys/Makefile |
Matt Turner | 5c6e1e9 | 2013-03-12 17:09:55 -0700 | [diff] [blame] | 2070 | src/gallium/winsys/freedreno/drm/Makefile |
Matt Turner | 266d639 | 2012-08-29 10:37:07 -0700 | [diff] [blame] | 2071 | src/gallium/winsys/i915/drm/Makefile |
Matt Turner | 3bfe7c2 | 2012-08-29 10:53:46 -0700 | [diff] [blame] | 2072 | src/gallium/winsys/i915/sw/Makefile |
Chia-I Wu | 5816a47 | 2012-12-13 06:01:23 +0800 | [diff] [blame] | 2073 | src/gallium/winsys/intel/drm/Makefile |
Matt Turner | 77fc30b | 2012-08-29 14:39:48 -0700 | [diff] [blame] | 2074 | src/gallium/winsys/nouveau/drm/Makefile |
Tom Stellard | 34a6150 | 2012-08-24 11:44:57 -0700 | [diff] [blame] | 2075 | src/gallium/winsys/radeon/drm/Makefile |
Matt Turner | 2b5a1c0 | 2012-08-29 14:48:25 -0700 | [diff] [blame] | 2076 | src/gallium/winsys/svga/drm/Makefile |
Matt Turner | a6b3cd1 | 2012-08-29 15:24:40 -0700 | [diff] [blame] | 2077 | src/gallium/winsys/sw/dri/Makefile |
Matt Turner | 5c4ade5 | 2012-08-29 15:28:45 -0700 | [diff] [blame] | 2078 | src/gallium/winsys/sw/fbdev/Makefile |
Matt Turner | 1c9fb3c | 2012-08-29 15:32:43 -0700 | [diff] [blame] | 2079 | src/gallium/winsys/sw/null/Makefile |
Matt Turner | 1d0ef53 | 2012-08-29 15:44:25 -0700 | [diff] [blame] | 2080 | src/gallium/winsys/sw/wayland/Makefile |
Matt Turner | 24c2fe9 | 2012-08-29 15:46:57 -0700 | [diff] [blame] | 2081 | src/gallium/winsys/sw/wrapper/Makefile |
Matt Turner | 44653c0 | 2012-08-29 15:51:40 -0700 | [diff] [blame] | 2082 | src/gallium/winsys/sw/xlib/Makefile |
Matt Turner | 383a70b | 2012-08-22 10:01:42 -0700 | [diff] [blame] | 2083 | src/gbm/Makefile |
| 2084 | src/gbm/main/gbm.pc |
Jon TURNEY | 68e04cc | 2012-06-28 23:15:48 +0100 | [diff] [blame] | 2085 | src/glsl/Makefile |
Eric Anholt | 8ffb098 | 2012-02-05 06:10:56 +0100 | [diff] [blame] | 2086 | src/glx/Makefile |
Ian Romanick | 2e8c866 | 2012-05-23 15:23:22 -0700 | [diff] [blame] | 2087 | src/glx/tests/Makefile |
Matt Turner | 383a70b | 2012-08-22 10:01:42 -0700 | [diff] [blame] | 2088 | src/gtest/Makefile |
Matt Turner | 691c304 | 2013-01-18 23:43:05 -0800 | [diff] [blame] | 2089 | src/mapi/Makefile |
Matt Turner | a6b8b70 | 2012-08-21 14:36:44 -0700 | [diff] [blame] | 2090 | src/mapi/es1api/Makefile |
| 2091 | src/mapi/es1api/glesv1_cm.pc |
Matt Turner | 0f8110c | 2012-08-21 14:52:59 -0700 | [diff] [blame] | 2092 | src/mapi/es2api/Makefile |
| 2093 | src/mapi/es2api/glesv2.pc |
Jon TURNEY | b2a37e2 | 2012-06-29 18:09:37 +0100 | [diff] [blame] | 2094 | src/mapi/glapi/Makefile |
Eric Anholt | 3a70f75 | 2012-06-11 12:59:21 -0700 | [diff] [blame] | 2095 | src/mapi/glapi/gen/Makefile |
Ian Romanick | a29ad2b | 2012-05-29 11:28:11 -0700 | [diff] [blame] | 2096 | src/mapi/glapi/tests/Makefile |
Matt Turner | 383a70b | 2012-08-22 10:01:42 -0700 | [diff] [blame] | 2097 | src/mapi/shared-glapi/Makefile |
Ian Romanick | 45d3d0a | 2012-08-01 14:48:27 -0700 | [diff] [blame] | 2098 | src/mapi/shared-glapi/tests/Makefile |
Matt Turner | 261719b | 2012-08-22 16:57:38 -0700 | [diff] [blame] | 2099 | src/mapi/vgapi/Makefile |
| 2100 | src/mapi/vgapi/vg.pc |
Eric Anholt | 417c1a6 | 2012-06-12 12:10:58 -0700 | [diff] [blame] | 2101 | src/mesa/Makefile |
Matt Turner | 383a70b | 2012-08-22 10:01:42 -0700 | [diff] [blame] | 2102 | src/mesa/gl.pc |
Matt Turner | 129213e | 2012-01-15 11:50:20 -0500 | [diff] [blame] | 2103 | src/mesa/drivers/dri/dri.pc |
Matt Turner | 80aa781 | 2012-01-26 19:31:12 -0500 | [diff] [blame] | 2104 | src/mesa/drivers/dri/common/Makefile |
Carl Worth | b587a75 | 2012-12-03 15:43:19 -0800 | [diff] [blame] | 2105 | src/mesa/drivers/dri/common/xmlpool/Makefile |
Matt Turner | 3c87dfc | 2012-01-14 21:57:32 -0500 | [diff] [blame] | 2106 | src/mesa/drivers/dri/i915/Makefile |
Eric Anholt | e326480 | 2012-01-12 14:28:37 -0800 | [diff] [blame] | 2107 | src/mesa/drivers/dri/i965/Makefile |
Matt Turner | 383a70b | 2012-08-22 10:01:42 -0700 | [diff] [blame] | 2108 | src/mesa/drivers/dri/Makefile |
Matt Turner | 3f96434 | 2012-01-15 10:20:30 -0500 | [diff] [blame] | 2109 | src/mesa/drivers/dri/nouveau/Makefile |
Matt Turner | b38d7a0 | 2012-01-15 10:04:58 -0500 | [diff] [blame] | 2110 | src/mesa/drivers/dri/r200/Makefile |
Matt Turner | e0ee818 | 2012-01-14 22:21:30 -0500 | [diff] [blame] | 2111 | src/mesa/drivers/dri/radeon/Makefile |
Eric Anholt | 2d4b77c | 2012-06-12 11:38:19 -0700 | [diff] [blame] | 2112 | src/mesa/drivers/dri/swrast/Makefile |
Laurent Carlier | 284325d | 2012-06-24 09:51:27 +0200 | [diff] [blame] | 2113 | src/mesa/drivers/osmesa/Makefile |
Matt Turner | 383a70b | 2012-08-22 10:01:42 -0700 | [diff] [blame] | 2114 | src/mesa/drivers/osmesa/osmesa.pc |
Eric Anholt | fa4cf4d | 2012-05-15 12:23:00 -0700 | [diff] [blame] | 2115 | src/mesa/drivers/x11/Makefile |
Matt Turner | 383a70b | 2012-08-22 10:01:42 -0700 | [diff] [blame] | 2116 | src/mesa/libdricore/Makefile |
| 2117 | src/mesa/main/tests/Makefile |
Eric Anholt | 35fd61b | 2012-11-06 23:18:41 -0800 | [diff] [blame] | 2118 | src/mesa/main/tests/hash_table/Makefile |
Eric Anholt | 9078441 | 2012-11-07 16:33:39 -0800 | [diff] [blame] | 2119 | src/mesa/program/Makefile |
Matt Turner | 383a70b | 2012-08-22 10:01:42 -0700 | [diff] [blame] | 2120 | src/mesa/x86-64/Makefile |
| 2121 | src/mesa/x86/Makefile]) |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 2122 | |
Marek Olšák | 618dbc8 | 2011-06-27 03:12:57 +0200 | [diff] [blame] | 2123 | dnl Sort the dirs alphabetically |
Marek Olšák | 3c79962 | 2011-09-27 16:51:05 +0200 | [diff] [blame] | 2124 | GALLIUM_TARGET_DIRS=`echo $GALLIUM_TARGET_DIRS|tr " " "\n"|sort -u|tr "\n" " "` |
| 2125 | GALLIUM_WINSYS_DIRS=`echo $GALLIUM_WINSYS_DIRS|tr " " "\n"|sort -u|tr "\n" " "` |
| 2126 | GALLIUM_DRIVERS_DIRS=`echo $GALLIUM_DRIVERS_DIRS|tr " " "\n"|sort -u|tr "\n" " "` |
| 2127 | GALLIUM_STATE_TRACKERS_DIRS=`echo $GALLIUM_STATE_TRACKERS_DIRS|tr " " "\n"|sort -u|tr "\n" " "` |
Marek Olšák | 618dbc8 | 2011-06-27 03:12:57 +0200 | [diff] [blame] | 2128 | |
Dan Nicholson | e14ebbc | 2008-05-06 11:28:43 -0700 | [diff] [blame] | 2129 | AC_OUTPUT |
Dan Nicholson | aab38cf | 2007-12-11 08:21:51 -0800 | [diff] [blame] | 2130 | |
Dan Nicholson | 9cad8e3 | 2007-11-30 08:49:57 -0800 | [diff] [blame] | 2131 | dnl |
| 2132 | dnl Output some configuration info for the user |
| 2133 | dnl |
| 2134 | echo "" |
| 2135 | echo " prefix: $prefix" |
| 2136 | echo " exec_prefix: $exec_prefix" |
| 2137 | echo " libdir: $libdir" |
Dan Nicholson | 11ac5b2 | 2008-07-03 09:17:44 -0700 | [diff] [blame] | 2138 | echo " includedir: $includedir" |
Dan Nicholson | 9cad8e3 | 2007-11-30 08:49:57 -0800 | [diff] [blame] | 2139 | |
Chia-I Wu | 815faa4 | 2010-10-29 12:34:44 +0800 | [diff] [blame] | 2140 | dnl API info |
| 2141 | echo "" |
| 2142 | echo " OpenGL: $enable_opengl (ES1: $enable_gles1 ES2: $enable_gles2)" |
Chia-I Wu | 815faa4 | 2010-10-29 12:34:44 +0800 | [diff] [blame] | 2143 | echo " OpenVG: $enable_openvg" |
| 2144 | |
Dan Nicholson | 9cad8e3 | 2007-11-30 08:49:57 -0800 | [diff] [blame] | 2145 | dnl Driver info |
| 2146 | echo "" |
Matt Turner | 2f142d5 | 2013-08-20 14:16:17 -0700 | [diff] [blame] | 2147 | case "x$enable_osmesa$enable_gallium_osmesa" in |
| 2148 | xnoyes) |
| 2149 | echo " OSMesa: lib$OSMESA_LIB (Gallium)" |
| 2150 | ;; |
| 2151 | xyesno) |
Chia-I Wu | 815faa4 | 2010-10-29 12:34:44 +0800 | [diff] [blame] | 2152 | echo " OSMesa: lib$OSMESA_LIB" |
Matt Turner | 2f142d5 | 2013-08-20 14:16:17 -0700 | [diff] [blame] | 2153 | ;; |
| 2154 | xnono) |
Chia-I Wu | 815faa4 | 2010-10-29 12:34:44 +0800 | [diff] [blame] | 2155 | echo " OSMesa: no" |
Matt Turner | 2f142d5 | 2013-08-20 14:16:17 -0700 | [diff] [blame] | 2156 | ;; |
| 2157 | esac |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 2158 | |
| 2159 | if test "x$enable_dri" != xno; then |
Chia-I Wu | 815faa4 | 2010-10-29 12:34:44 +0800 | [diff] [blame] | 2160 | # cleanup the drivers var |
| 2161 | dri_dirs=`echo $DRI_DIRS | $SED 's/^ *//;s/ */ /;s/ *$//'` |
| 2162 | if test "x$DRI_DIRS" = x; then |
| 2163 | echo " DRI drivers: no" |
| 2164 | else |
| 2165 | echo " DRI drivers: $dri_dirs" |
| 2166 | fi |
| 2167 | echo " DRI driver dir: $DRI_DRIVER_INSTALL_DIR" |
Dan Nicholson | 544ab20 | 2007-12-30 08:41:53 -0800 | [diff] [blame] | 2168 | fi |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 2169 | |
| 2170 | case "x$enable_glx$enable_xlib_glx" in |
| 2171 | xyesyes) |
| 2172 | echo " GLX: Xlib-based" |
| 2173 | ;; |
| 2174 | xyesno) |
| 2175 | echo " GLX: DRI-based" |
Chia-I Wu | 9e7a414 | 2011-06-26 13:24:32 +0900 | [diff] [blame] | 2176 | ;; |
| 2177 | *) |
| 2178 | echo " GLX: $enable_glx" |
| 2179 | ;; |
| 2180 | esac |
| 2181 | |
Chia-I Wu | 815faa4 | 2010-10-29 12:34:44 +0800 | [diff] [blame] | 2182 | dnl EGL |
| 2183 | echo "" |
| 2184 | echo " EGL: $enable_egl" |
| 2185 | if test "$enable_egl" = yes; then |
Matt Turner | 3647efa | 2013-03-09 17:26:43 -0800 | [diff] [blame] | 2186 | echo " EGL platforms: $egl_platforms" |
Chia-I Wu | 1230050 | 2010-10-31 21:01:54 +0800 | [diff] [blame] | 2187 | |
| 2188 | egl_drivers="" |
Eric Anholt | 8861202 | 2012-02-05 10:46:13 +0100 | [diff] [blame] | 2189 | if test "x$HAVE_EGL_DRIVER_GLX" != "x"; then |
| 2190 | egl_drivers="$egl_drivers builtin:egl_glx" |
| 2191 | fi |
| 2192 | if test "x$HAVE_EGL_DRIVER_DRI2" != "x"; then |
| 2193 | egl_drivers="$egl_drivers builtin:egl_dri2" |
| 2194 | fi |
Chia-I Wu | 1230050 | 2010-10-31 21:01:54 +0800 | [diff] [blame] | 2195 | |
Matt Turner | 69b69b1 | 2013-01-19 11:23:51 -0800 | [diff] [blame] | 2196 | if test "x$enable_gallium_egl" = xyes; then |
Chia-I Wu | 1230050 | 2010-10-31 21:01:54 +0800 | [diff] [blame] | 2197 | echo " EGL drivers: ${egl_drivers} egl_gallium" |
| 2198 | echo " EGL Gallium STs:$EGL_CLIENT_APIS" |
Chia-I Wu | 815faa4 | 2010-10-29 12:34:44 +0800 | [diff] [blame] | 2199 | else |
Chia-I Wu | 1230050 | 2010-10-31 21:01:54 +0800 | [diff] [blame] | 2200 | echo " EGL drivers: $egl_drivers" |
Chia-I Wu | 815faa4 | 2010-10-29 12:34:44 +0800 | [diff] [blame] | 2201 | fi |
Florent Thoumie | b5095ab | 2008-07-28 14:44:43 +0100 | [diff] [blame] | 2202 | fi |
Dan Nicholson | 9cad8e3 | 2007-11-30 08:49:57 -0800 | [diff] [blame] | 2203 | |
Jakob Bornecrantz | 7e54d7d | 2009-02-11 02:38:21 +0100 | [diff] [blame] | 2204 | echo "" |
Eric Anholt | 1a8b127 | 2010-05-21 12:17:24 -0700 | [diff] [blame] | 2205 | if test "x$MESA_LLVM" = x1; then |
Jakob Bornecrantz | fe0fe67 | 2010-04-28 13:38:58 +0100 | [diff] [blame] | 2206 | echo " llvm: yes" |
| 2207 | echo " llvm-config: $LLVM_CONFIG" |
| 2208 | echo " llvm-version: $LLVM_VERSION" |
| 2209 | else |
| 2210 | echo " llvm: no" |
| 2211 | fi |
| 2212 | |
| 2213 | echo "" |
Matt Turner | a9676ae | 2013-01-18 23:59:49 -0800 | [diff] [blame] | 2214 | if test -n "$with_gallium_drivers"; then |
Jakob Bornecrantz | 7e54d7d | 2009-02-11 02:38:21 +0100 | [diff] [blame] | 2215 | echo " Gallium: yes" |
Keith Whitwell | 51bff09 | 2010-03-11 14:43:00 +0000 | [diff] [blame] | 2216 | echo " Target dirs: $GALLIUM_TARGET_DIRS" |
Jakob Bornecrantz | 7e54d7d | 2009-02-11 02:38:21 +0100 | [diff] [blame] | 2217 | echo " Winsys dirs: $GALLIUM_WINSYS_DIRS" |
Jakob Bornecrantz | d67bd60 | 2009-02-20 11:03:18 +0000 | [diff] [blame] | 2218 | echo " Driver dirs: $GALLIUM_DRIVERS_DIRS" |
Jakob Bornecrantz | 7e54d7d | 2009-02-11 02:38:21 +0100 | [diff] [blame] | 2219 | echo " Trackers dirs: $GALLIUM_STATE_TRACKERS_DIRS" |
| 2220 | else |
| 2221 | echo " Gallium: no" |
| 2222 | fi |
| 2223 | |
Daniel Vetter | 8f15c31 | 2011-11-28 22:24:26 +0100 | [diff] [blame] | 2224 | |
Dan Nicholson | 9cad8e3 | 2007-11-30 08:49:57 -0800 | [diff] [blame] | 2225 | dnl Libraries |
| 2226 | echo "" |
| 2227 | echo " Shared libs: $enable_shared" |
| 2228 | echo " Static libs: $enable_static" |
Matt Turner | 53248e5 | 2012-08-17 11:25:14 -0700 | [diff] [blame] | 2229 | echo " Shared-glapi: $enable_shared_glapi" |
Dan Nicholson | 9cad8e3 | 2007-11-30 08:49:57 -0800 | [diff] [blame] | 2230 | |
Dan Nicholson | 16a07fb | 2007-12-12 09:12:15 -0800 | [diff] [blame] | 2231 | dnl Compiler options |
| 2232 | # cleanup the CFLAGS/CXXFLAGS/DEFINES vars |
Matt Turner | 3ed95dc | 2012-09-05 20:41:08 -0700 | [diff] [blame] | 2233 | cflags=`echo $CFLAGS | \ |
Dan Nicholson | 16a07fb | 2007-12-12 09:12:15 -0800 | [diff] [blame] | 2234 | $SED 's/^ *//;s/ */ /;s/ *$//'` |
Matt Turner | 3ed95dc | 2012-09-05 20:41:08 -0700 | [diff] [blame] | 2235 | cxxflags=`echo $CXXFLAGS | \ |
Dan Nicholson | 16a07fb | 2007-12-12 09:12:15 -0800 | [diff] [blame] | 2236 | $SED 's/^ *//;s/ */ /;s/ *$//'` |
Eric Anholt | e426949 | 2012-06-11 10:25:05 -0700 | [diff] [blame] | 2237 | defines=`echo $DEFINES | $SED 's/^ *//;s/ */ /;s/ *$//'` |
Dan Nicholson | 16a07fb | 2007-12-12 09:12:15 -0800 | [diff] [blame] | 2238 | echo "" |
| 2239 | echo " CFLAGS: $cflags" |
| 2240 | echo " CXXFLAGS: $cxxflags" |
| 2241 | echo " Macros: $defines" |
Kenneth Graunke | 3acc826 | 2010-10-25 13:52:58 -0700 | [diff] [blame] | 2242 | echo "" |
Marek Olšák | a84a8da | 2012-11-27 22:32:50 +0100 | [diff] [blame] | 2243 | if test "x$MESA_LLVM" = x1; then |
| 2244 | echo " LLVM_CFLAGS: $LLVM_CFLAGS" |
| 2245 | echo " LLVM_CXXFLAGS: $LLVM_CXXFLAGS" |
| 2246 | echo " LLVM_CPPFLAGS: $LLVM_CPPFLAGS" |
| 2247 | echo "" |
| 2248 | fi |
Kenneth Graunke | 3acc826 | 2010-10-25 13:52:58 -0700 | [diff] [blame] | 2249 | echo " PYTHON2: $PYTHON2" |
Dan Nicholson | 16a07fb | 2007-12-12 09:12:15 -0800 | [diff] [blame] | 2250 | |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 2251 | echo "" |
Dan Nicholson | b645942 | 2008-03-24 10:01:50 -0700 | [diff] [blame] | 2252 | echo " Run '${MAKE-make}' to build Mesa" |
Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 2253 | echo "" |