| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 1 | dnl Process this file with autoconf to create configure. | 
 | 2 |  | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 3 | AC_PREREQ([2.59]) | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 4 |  | 
| Dan Nicholson | 00994ac | 2008-04-30 15:06:00 -0700 | [diff] [blame] | 5 | dnl Versioning - scrape the version from configs/default | 
 | 6 | m4_define([mesa_version], | 
 | 7 |     [m4_esyscmd([${MAKE-make} -s -f bin/version.mk version | tr -d '\n'])]) | 
| Dan Nicholson | 356f311 | 2009-04-29 06:49:27 -0700 | [diff] [blame] | 8 | m4_ifval(mesa_version,, | 
 | 9 |     [m4_fatal([Failed to get the Mesa version from `make -f bin/version.mk version`])]) | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 10 |  | 
| Dan Nicholson | e97ab72 | 2008-07-01 08:55:42 -0700 | [diff] [blame] | 11 | dnl Tell the user about autoconf.html in the --help output | 
 | 12 | m4_divert_once([HELP_END], [ | 
 | 13 | See docs/autoconf.html for more details on the options for Mesa.]) | 
 | 14 |  | 
| Dan Nicholson | 00994ac | 2008-04-30 15:06:00 -0700 | [diff] [blame] | 15 | AC_INIT([Mesa],[mesa_version], | 
| Dan Nicholson | f64d6fe | 2007-12-12 17:57:45 -0800 | [diff] [blame] | 16 |     [https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa]) | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 17 | AC_CONFIG_AUX_DIR([bin]) | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 18 | AC_CANONICAL_HOST | 
 | 19 |  | 
| Dan Nicholson | cc77e8f | 2008-05-05 14:38:22 -0700 | [diff] [blame] | 20 | dnl Versions for external dependencies | 
| Brian | 44557bf | 2009-01-10 16:32:32 -0700 | [diff] [blame] | 21 | LIBDRM_REQUIRED=2.4.3 | 
| Kristian Høgsberg | 154a9e5 | 2008-12-01 21:44:03 -0500 | [diff] [blame] | 22 | DRI2PROTO_REQUIRED=1.99.3 | 
| Dan Nicholson | cc77e8f | 2008-05-05 14:38:22 -0700 | [diff] [blame] | 23 |  | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 24 | dnl Check for progs | 
 | 25 | AC_PROG_CPP | 
 | 26 | AC_PROG_CC | 
 | 27 | AC_PROG_CXX | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 28 | AC_CHECK_PROGS([MAKE], [gmake make]) | 
 | 29 | AC_PATH_PROG([MKDEP], [makedepend]) | 
 | 30 | AC_PATH_PROG([SED], [sed]) | 
| Dan Nicholson | 41b0070 | 2007-12-12 08:48:30 -0800 | [diff] [blame] | 31 |  | 
| Dan Nicholson | bc302b2 | 2009-05-22 09:39:02 -0700 | [diff] [blame] | 32 | dnl Our fallback install-sh is a symlink to minstall. Use the existing | 
 | 33 | dnl configuration in that case. | 
 | 34 | AC_PROG_INSTALL | 
 | 35 | test "x$INSTALL" = "x$ac_install_sh" && INSTALL='$(MINSTALL)' | 
 | 36 |  | 
| Dan Nicholson | bfb27b5 | 2008-06-30 09:40:30 -0700 | [diff] [blame] | 37 | dnl We need a POSIX shell for parts of the build. Assume we have one | 
 | 38 | dnl in most cases. | 
| Alan Coopersmith | e1f9adc | 2008-06-20 17:58:53 -0700 | [diff] [blame] | 39 | case "$host_os" in | 
 | 40 | solaris*) | 
 | 41 |     # Solaris /bin/sh is too old/non-POSIX compliant | 
 | 42 |     AC_PATH_PROGS(POSIX_SHELL, [ksh93 ksh sh]) | 
| Dan Nicholson | bfb27b5 | 2008-06-30 09:40:30 -0700 | [diff] [blame] | 43 |     SHELL="$POSIX_SHELL" | 
| Alan Coopersmith | e1f9adc | 2008-06-20 17:58:53 -0700 | [diff] [blame] | 44 |     ;; | 
 | 45 | esac | 
 | 46 |  | 
| Dan Nicholson | db7fc63 | 2008-03-07 11:48:09 -0800 | [diff] [blame] | 47 | MKDEP_OPTIONS=-fdepend | 
| Kristian Høgsberg | bcecea6 | 2008-02-25 18:50:26 -0500 | [diff] [blame] | 48 | dnl Ask gcc where it's keeping its secret headers | 
 | 49 | if test "x$GCC" = xyes; then | 
| Dan Nicholson | a3d223f | 2009-01-30 10:52:09 -0800 | [diff] [blame] | 50 |     for dir in include include-fixed; do | 
 | 51 |         GCC_INCLUDES=`$CC -print-file-name=$dir` | 
 | 52 |         if test "x$GCC_INCLUDES" != x && \ | 
 | 53 |            test "$GCC_INCLUDES" != "$dir" && \ | 
 | 54 |            test -d "$GCC_INCLUDES"; then | 
 | 55 |             MKDEP_OPTIONS="$MKDEP_OPTIONS -I$GCC_INCLUDES" | 
 | 56 |         fi | 
 | 57 |     done | 
| Kristian Høgsberg | bcecea6 | 2008-02-25 18:50:26 -0500 | [diff] [blame] | 58 | fi | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 59 | AC_SUBST([MKDEP_OPTIONS]) | 
| Kristian Høgsberg | bcecea6 | 2008-02-25 18:50:26 -0500 | [diff] [blame] | 60 |  | 
| Dan Nicholson | 41b0070 | 2007-12-12 08:48:30 -0800 | [diff] [blame] | 61 | dnl Make sure the pkg-config macros are defined | 
| Dan Nicholson | 356f311 | 2009-04-29 06:49:27 -0700 | [diff] [blame] | 62 | m4_ifndef([PKG_PROG_PKG_CONFIG], | 
 | 63 |     [m4_fatal([Could not locate the pkg-config autoconf macros. | 
 | 64 |   These are usually located in /usr/share/aclocal/pkg.m4. If your macros | 
 | 65 |   are in a different location, try setting the environment variable | 
 | 66 |   ACLOCAL="aclocal -I/other/macro/dir" before running autoreconf.])]) | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 67 | PKG_PROG_PKG_CONFIG() | 
 | 68 |  | 
 | 69 | dnl LIB_DIR - library basename | 
 | 70 | LIB_DIR=`echo $libdir | $SED 's%.*/%%'` | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 71 | AC_SUBST([LIB_DIR]) | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 72 |  | 
 | 73 | dnl Cache LDFLAGS so we can add EXTRA_LIB_PATH and restore it later | 
 | 74 | _SAVE_LDFLAGS="$LDFLAGS" | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 75 | AC_ARG_VAR([EXTRA_LIB_PATH],[Extra -L paths for the linker]) | 
 | 76 | AC_SUBST([EXTRA_LIB_PATH]) | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 77 |  | 
 | 78 | dnl Cache CPPFLAGS so we can add *_INCLUDES and restore it later | 
 | 79 | _SAVE_CPPFLAGS="$CPPFLAGS" | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 80 | AC_ARG_VAR([X11_INCLUDES],[Extra -I paths for X11 headers]) | 
 | 81 | AC_SUBST([X11_INCLUDES]) | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 82 |  | 
 | 83 | dnl Compiler macros | 
 | 84 | DEFINES="" | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 85 | AC_SUBST([DEFINES]) | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 86 | case "$host_os" in | 
| Samuel Thibault | d18dd6a | 2009-04-23 05:43:22 -0700 | [diff] [blame] | 87 | linux*|*-gnu*|gnu*) | 
| Dan Nicholson | 29f603a | 2009-01-12 11:10:31 -0800 | [diff] [blame] | 88 |     DEFINES="$DEFINES -D_GNU_SOURCE -DPTHREADS" | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 89 |     ;; | 
| Alan Coopersmith | e1f9adc | 2008-06-20 17:58:53 -0700 | [diff] [blame] | 90 | solaris*) | 
 | 91 |     DEFINES="$DEFINES -DPTHREADS -DSVR4" | 
 | 92 |     ;; | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 93 | esac | 
 | 94 |  | 
 | 95 | dnl Add flags for gcc and g++ | 
 | 96 | if test "x$GCC" = xyes; then | 
 | 97 |     CFLAGS="$CFLAGS -Wall -Wmissing-prototypes -std=c99 -ffast-math" | 
| Dan Nicholson | 0c275b6 | 2008-01-15 22:52:25 -0800 | [diff] [blame] | 98 |  | 
 | 99 |     # Work around aliasing bugs - developers should comment this out | 
 | 100 |     CFLAGS="$CFLAGS -fno-strict-aliasing" | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 101 | fi | 
 | 102 | if test "x$GXX" = xyes; then | 
 | 103 |     CXXFLAGS="$CXXFLAGS -Wall" | 
| Dan Nicholson | 0c275b6 | 2008-01-15 22:52:25 -0800 | [diff] [blame] | 104 |  | 
 | 105 |     # Work around aliasing bugs - developers should comment this out | 
 | 106 |     CXXFLAGS="$CXXFLAGS -fno-strict-aliasing" | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 107 | fi | 
 | 108 |  | 
 | 109 | dnl These should be unnecessary, but let the user set them if they want | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 110 | AC_ARG_VAR([OPT_FLAGS], [Additional optimization flags for the compiler. | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 111 |     Default is to use CFLAGS.]) | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 112 | AC_ARG_VAR([ARCH_FLAGS], [Additional architecture specific flags for the | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 113 |     compiler. Default is to use CFLAGS.]) | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 114 | AC_SUBST([OPT_FLAGS]) | 
 | 115 | AC_SUBST([ARCH_FLAGS]) | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 116 |  | 
 | 117 | dnl | 
| Dan Nicholson | ab57cba | 2007-12-26 11:12:29 -0600 | [diff] [blame] | 118 | dnl Hacks to enable 32 or 64 bit build | 
 | 119 | dnl | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 120 | AC_ARG_ENABLE([32-bit], | 
| Dan Nicholson | ab57cba | 2007-12-26 11:12:29 -0600 | [diff] [blame] | 121 |     [AS_HELP_STRING([--enable-32-bit], | 
 | 122 |         [build 32-bit libraries @<:@default=auto@:>@])], | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 123 |     [enable_32bit="$enableval"], | 
 | 124 |     [enable_32bit=auto] | 
| Dan Nicholson | ab57cba | 2007-12-26 11:12:29 -0600 | [diff] [blame] | 125 | ) | 
 | 126 | if test "x$enable_32bit" = xyes; then | 
 | 127 |     if test "x$GCC" = xyes; then | 
 | 128 |         CFLAGS="$CFLAGS -m32" | 
| Marc Dietrich | c705e72 | 2009-08-31 08:56:33 -0700 | [diff] [blame] | 129 |         ARCH_FLAGS="$ARCH_FLAGS -m32" | 
| Dan Nicholson | ab57cba | 2007-12-26 11:12:29 -0600 | [diff] [blame] | 130 |     fi | 
 | 131 |     if test "x$GXX" = xyes; then | 
 | 132 |         CXXFLAGS="$CXXFLAGS -m32" | 
 | 133 |     fi | 
 | 134 | fi | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 135 | AC_ARG_ENABLE([64-bit], | 
| Dan Nicholson | ab57cba | 2007-12-26 11:12:29 -0600 | [diff] [blame] | 136 |     [AS_HELP_STRING([--enable-64-bit], | 
 | 137 |         [build 64-bit libraries @<:@default=auto@:>@])], | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 138 |     [enable_64bit="$enableval"], | 
 | 139 |     [enable_64bit=auto] | 
| Dan Nicholson | ab57cba | 2007-12-26 11:12:29 -0600 | [diff] [blame] | 140 | ) | 
 | 141 | if test "x$enable_64bit" = xyes; then | 
 | 142 |     if test "x$GCC" = xyes; then | 
 | 143 |         CFLAGS="$CFLAGS -m64" | 
 | 144 |     fi | 
 | 145 |     if test "x$GXX" = xyes; then | 
 | 146 |         CXXFLAGS="$CXXFLAGS -m64" | 
 | 147 |     fi | 
 | 148 | fi | 
 | 149 |  | 
 | 150 | dnl | 
| Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 151 | dnl shared/static libraries, mimic libtool options | 
 | 152 | dnl | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 153 | AC_ARG_ENABLE([static], | 
| Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 154 |     [AS_HELP_STRING([--enable-static], | 
| Dan Nicholson | 79ad458 | 2007-12-07 19:11:01 -0800 | [diff] [blame] | 155 |         [build static libraries @<:@default=disabled@:>@])], | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 156 |     [enable_static="$enableval"], | 
 | 157 |     [enable_static=no] | 
| Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 158 | ) | 
 | 159 | case "x$enable_static" in | 
 | 160 | xyes|xno ) ;; | 
 | 161 | x ) enable_static=no ;; | 
 | 162 | * ) | 
 | 163 |     AC_MSG_ERROR([Static library option '$enable_static' is not a valid]) | 
 | 164 |     ;; | 
 | 165 | esac | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 166 | AC_ARG_ENABLE([shared], | 
| Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 167 |     [AS_HELP_STRING([--disable-shared], | 
| Dan Nicholson | 79ad458 | 2007-12-07 19:11:01 -0800 | [diff] [blame] | 168 |         [build shared libraries @<:@default=enabled@:>@])], | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 169 |     [enable_shared="$enableval"], | 
 | 170 |     [enable_shared=yes] | 
| Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 171 | ) | 
 | 172 | case "x$enable_shared" in | 
 | 173 | xyes|xno ) ;; | 
 | 174 | x ) enable_shared=yes ;; | 
 | 175 | * ) | 
 | 176 |     AC_MSG_ERROR([Shared library option '$enable_shared' is not a valid]) | 
 | 177 |     ;; | 
 | 178 | esac | 
 | 179 |  | 
 | 180 | dnl Can't have static and shared libraries, default to static if user | 
 | 181 | dnl explicitly requested. If both disabled, set to static since shared | 
 | 182 | dnl was explicitly requirested. | 
 | 183 | case "x$enable_static$enable_shared" in | 
 | 184 | xyesyes ) | 
 | 185 |     AC_MSG_WARN([Can't build static and shared libraries, disabling shared]) | 
 | 186 |     enable_shared=no | 
 | 187 |     ;; | 
 | 188 | xnono ) | 
 | 189 |     AC_MSG_WARN([Can't disable both static and shared libraries, enabling static]) | 
 | 190 |     enable_static=yes | 
 | 191 |     ;; | 
 | 192 | esac | 
 | 193 |  | 
 | 194 | dnl | 
 | 195 | dnl mklib options | 
 | 196 | dnl | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 197 | AC_ARG_VAR([MKLIB_OPTIONS],[Options for the Mesa library script, mklib]) | 
| Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 198 | if test "$enable_static" = yes; then | 
 | 199 |     MKLIB_OPTIONS="$MKLIB_OPTIONS -static" | 
 | 200 | fi | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 201 | AC_SUBST([MKLIB_OPTIONS]) | 
| Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 202 |  | 
| Dan Nicholson | 23656c4 | 2007-12-12 09:02:31 -0800 | [diff] [blame] | 203 | dnl | 
 | 204 | dnl other compiler options | 
 | 205 | dnl | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 206 | AC_ARG_ENABLE([debug], | 
| Dan Nicholson | 23656c4 | 2007-12-12 09:02:31 -0800 | [diff] [blame] | 207 |     [AS_HELP_STRING([--enable-debug], | 
 | 208 |         [use debug compiler flags and macros @<:@default=disabled@:>@])], | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 209 |     [enable_debug="$enableval"], | 
 | 210 |     [enable_debug=no] | 
| Dan Nicholson | 23656c4 | 2007-12-12 09:02:31 -0800 | [diff] [blame] | 211 | ) | 
 | 212 | if test "x$enable_debug" = xyes; then | 
 | 213 |     DEFINES="$DEFINES -DDEBUG" | 
 | 214 |     if test "x$GCC" = xyes; then | 
 | 215 |         CFLAGS="$CFLAGS -g" | 
 | 216 |     fi | 
 | 217 |     if test "x$GXX" = xyes; then | 
 | 218 |         CXXFLAGS="$CXXFLAGS -g" | 
 | 219 |     fi | 
 | 220 | fi | 
| Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 221 |  | 
 | 222 | dnl | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 223 | dnl library names | 
 | 224 | dnl | 
| Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 225 | if test "$enable_static" = yes; then | 
| Dan Nicholson | 8217f24 | 2009-02-11 15:16:00 -0800 | [diff] [blame] | 226 |     LIB_EXTENSION='a' | 
| Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 227 | else | 
| Siddhartha Chaudhuri | 1a46c8a | 2009-02-09 07:58:38 -0700 | [diff] [blame] | 228 |     case "$host_os" in | 
 | 229 |     darwin* ) | 
 | 230 |         LIB_EXTENSION='dylib' ;; | 
| Jon TURNEY | 7eed6ab | 2009-06-08 16:02:18 +0100 | [diff] [blame] | 231 |     cygwin* ) | 
 | 232 |         LIB_EXTENSION='dll' ;; | 
| Tom Fogal | 9282edf | 2009-10-13 10:55:33 -0700 | [diff] [blame] | 233 |     aix* ) | 
 | 234 |         LIB_EXTENSION='a' ;; | 
| Siddhartha Chaudhuri | 1a46c8a | 2009-02-09 07:58:38 -0700 | [diff] [blame] | 235 |     * ) | 
 | 236 |         LIB_EXTENSION='so' ;; | 
 | 237 |     esac | 
| Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 238 | fi | 
| Dan Nicholson | 8217f24 | 2009-02-11 15:16:00 -0800 | [diff] [blame] | 239 |  | 
 | 240 | GL_LIB_NAME='lib$(GL_LIB).'${LIB_EXTENSION} | 
 | 241 | GLU_LIB_NAME='lib$(GLU_LIB).'${LIB_EXTENSION} | 
 | 242 | GLUT_LIB_NAME='lib$(GLUT_LIB).'${LIB_EXTENSION} | 
 | 243 | GLW_LIB_NAME='lib$(GLW_LIB).'${LIB_EXTENSION} | 
 | 244 | OSMESA_LIB_NAME='lib$(OSMESA_LIB).'${LIB_EXTENSION} | 
 | 245 |  | 
 | 246 | GL_LIB_GLOB='lib$(GL_LIB).*'${LIB_EXTENSION}'*' | 
 | 247 | GLU_LIB_GLOB='lib$(GLU_LIB).*'${LIB_EXTENSION}'*' | 
 | 248 | GLUT_LIB_GLOB='lib$(GLUT_LIB).*'${LIB_EXTENSION}'*' | 
 | 249 | GLW_LIB_GLOB='lib$(GLW_LIB).*'${LIB_EXTENSION}'*' | 
 | 250 | OSMESA_LIB_GLOB='lib$(OSMESA_LIB).*'${LIB_EXTENSION}'*' | 
 | 251 |  | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 252 | AC_SUBST([GL_LIB_NAME]) | 
 | 253 | AC_SUBST([GLU_LIB_NAME]) | 
 | 254 | AC_SUBST([GLUT_LIB_NAME]) | 
 | 255 | AC_SUBST([GLW_LIB_NAME]) | 
 | 256 | AC_SUBST([OSMESA_LIB_NAME]) | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 257 |  | 
| Siddhartha Chaudhuri | 1a46c8a | 2009-02-09 07:58:38 -0700 | [diff] [blame] | 258 | AC_SUBST([GL_LIB_GLOB]) | 
 | 259 | AC_SUBST([GLU_LIB_GLOB]) | 
 | 260 | AC_SUBST([GLUT_LIB_GLOB]) | 
 | 261 | AC_SUBST([GLW_LIB_GLOB]) | 
 | 262 | AC_SUBST([OSMESA_LIB_GLOB]) | 
 | 263 |  | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 264 | dnl | 
| Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 265 | dnl Arch/platform-specific settings | 
 | 266 | dnl | 
 | 267 | AC_ARG_ENABLE([asm], | 
 | 268 |     [AS_HELP_STRING([--disable-asm], | 
 | 269 |         [disable assembly usage @<:@default=enabled on supported plaforms@:>@])], | 
 | 270 |     [enable_asm="$enableval"], | 
 | 271 |     [enable_asm=yes] | 
 | 272 | ) | 
 | 273 | asm_arch="" | 
 | 274 | ASM_FLAGS="" | 
| Dan Nicholson | c5bae14 | 2009-02-11 11:04:29 -0800 | [diff] [blame] | 275 | MESA_ASM_SOURCES="" | 
 | 276 | GLAPI_ASM_SOURCES="" | 
| Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 277 | AC_MSG_CHECKING([whether to enable assembly]) | 
 | 278 | test "x$enable_asm" = xno && AC_MSG_RESULT([no]) | 
 | 279 | # disable if cross compiling on x86/x86_64 since we must run gen_matypes | 
 | 280 | if test "x$enable_asm" = xyes && test "x$cross_compiling" = xyes; then | 
 | 281 |     case "$host_cpu" in | 
 | 282 |     i?86 | x86_64) | 
 | 283 |         enable_asm=no | 
 | 284 |         AC_MSG_RESULT([no, cross compiling]) | 
 | 285 |         ;; | 
 | 286 |     esac | 
 | 287 | fi | 
 | 288 | # check for supported arches | 
 | 289 | if test "x$enable_asm" = xyes; then | 
 | 290 |     case "$host_cpu" in | 
 | 291 |     i?86) | 
 | 292 |         case "$host_os" in | 
| Julien Cristau | 98fcdf3 | 2008-10-28 18:56:05 +0100 | [diff] [blame] | 293 |         linux* | *freebsd* | dragonfly*) | 
| Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 294 |             test "x$enable_64bit" = xyes && asm_arch=x86_64 || asm_arch=x86 | 
 | 295 |             ;; | 
 | 296 |         esac | 
 | 297 |         ;; | 
 | 298 |     x86_64) | 
 | 299 |         case "$host_os" in | 
| Julien Cristau | 98fcdf3 | 2008-10-28 18:56:05 +0100 | [diff] [blame] | 300 |         linux* | *freebsd* | dragonfly*) | 
| Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 301 |             test "x$enable_32bit" = xyes && asm_arch=x86 || asm_arch=x86_64 | 
 | 302 |             ;; | 
 | 303 |         esac | 
 | 304 |         ;; | 
 | 305 |     powerpc) | 
 | 306 |         case "$host_os" in | 
 | 307 |         linux*) | 
 | 308 |             asm_arch=ppc | 
 | 309 |             ;; | 
 | 310 |         esac | 
 | 311 |         ;; | 
| David S. Miller | 857ac1e | 2009-02-26 05:35:15 -0800 | [diff] [blame] | 312 |     sparc*) | 
 | 313 |         case "$host_os" in | 
 | 314 |         linux*) | 
 | 315 |             asm_arch=sparc | 
 | 316 |             ;; | 
 | 317 |         esac | 
 | 318 |         ;; | 
| Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 319 |     esac | 
 | 320 |  | 
 | 321 |     case "$asm_arch" in | 
 | 322 |     x86) | 
| Dan Nicholson | 61e925f | 2009-02-11 10:42:34 -0800 | [diff] [blame] | 323 |         ASM_FLAGS="-DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_3DNOW_ASM -DUSE_SSE_ASM" | 
| Dan Nicholson | c5bae14 | 2009-02-11 11:04:29 -0800 | [diff] [blame] | 324 |         MESA_ASM_SOURCES='$(X86_SOURCES)' | 
 | 325 |         GLAPI_ASM_SOURCES='$(X86_API)' | 
| Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 326 |         AC_MSG_RESULT([yes, x86]) | 
 | 327 |         ;; | 
 | 328 |     x86_64) | 
 | 329 |         ASM_FLAGS="-DUSE_X86_64_ASM" | 
| Dan Nicholson | c5bae14 | 2009-02-11 11:04:29 -0800 | [diff] [blame] | 330 |         MESA_ASM_SOURCES='$(X86-64_SOURCES)' | 
 | 331 |         GLAPI_ASM_SOURCES='$(X86-64_API)' | 
| Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 332 |         AC_MSG_RESULT([yes, x86_64]) | 
 | 333 |         ;; | 
 | 334 |     ppc) | 
 | 335 |         ASM_FLAGS="-DUSE_PPC_ASM -DUSE_VMX_ASM" | 
| Dan Nicholson | c5bae14 | 2009-02-11 11:04:29 -0800 | [diff] [blame] | 336 |         MESA_ASM_SOURCES='$(PPC_SOURCES)' | 
| Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 337 |         AC_MSG_RESULT([yes, ppc]) | 
 | 338 |         ;; | 
| David S. Miller | 857ac1e | 2009-02-26 05:35:15 -0800 | [diff] [blame] | 339 |     sparc) | 
 | 340 |         ASM_FLAGS="-DUSE_SPARC_ASM" | 
 | 341 |         MESA_ASM_SOURCES='$(SPARC_SOURCES)' | 
 | 342 |         GLAPI_ASM_SOURCES='$(SPARC_API)' | 
 | 343 |         AC_MSG_RESULT([yes, sparc]) | 
 | 344 |         ;; | 
| Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 345 |     *) | 
 | 346 |         AC_MSG_RESULT([no, platform not supported]) | 
 | 347 |         ;; | 
 | 348 |     esac | 
 | 349 | fi | 
 | 350 | AC_SUBST([ASM_FLAGS]) | 
| Dan Nicholson | c5bae14 | 2009-02-11 11:04:29 -0800 | [diff] [blame] | 351 | AC_SUBST([MESA_ASM_SOURCES]) | 
 | 352 | AC_SUBST([GLAPI_ASM_SOURCES]) | 
| Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 353 |  | 
 | 354 | dnl PIC code macro | 
 | 355 | MESA_PIC_FLAGS | 
 | 356 |  | 
 | 357 | dnl Check to see if dlopen is in default libraries (like Solaris, which | 
 | 358 | dnl has it in libc), or if libdl is needed to get it. | 
 | 359 | AC_CHECK_FUNC([dlopen], [], | 
 | 360 |     [AC_CHECK_LIB([dl], [dlopen], [DLOPEN_LIBS="-ldl"])]) | 
 | 361 |  | 
| Dan Nicholson | 985e1cd | 2008-06-04 13:17:06 -0700 | [diff] [blame] | 362 | dnl See if posix_memalign is available | 
 | 363 | AC_CHECK_FUNC([posix_memalign], [DEFINES="$DEFINES -DHAVE_POSIX_MEMALIGN"]) | 
 | 364 |  | 
| Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 365 | dnl SELinux awareness. | 
 | 366 | AC_ARG_ENABLE([selinux], | 
 | 367 |     [AS_HELP_STRING([--enable-selinux], | 
 | 368 |         [Build SELinux-aware Mesa @<:@default=disabled@:>@])], | 
 | 369 |     [MESA_SELINUX="$enableval"], | 
 | 370 |     [MESA_SELINUX=no]) | 
 | 371 | if test "x$enable_selinux" = "xyes"; then | 
 | 372 |     AC_CHECK_HEADER([selinux/selinux.h],[], | 
 | 373 |                     [AC_MSG_ERROR([SELinux headers not found])]) | 
 | 374 |     AC_CHECK_LIB([selinux],[is_selinux_enabled],[], | 
 | 375 |                  [AC_MSG_ERROR([SELinux library not found])]) | 
 | 376 |     SELINUX_LIBS="-lselinux" | 
 | 377 |     DEFINES="$DEFINES -DMESA_SELINUX" | 
 | 378 | fi | 
 | 379 |  | 
| Dan Nicholson | 871125a | 2008-06-04 13:00:35 -0700 | [diff] [blame] | 380 | dnl | 
| Dan Nicholson | a130718 | 2007-12-12 17:49:49 -0800 | [diff] [blame] | 381 | dnl Driver configuration. Options are xlib, dri and osmesa right now. | 
| Dan Nicholson | 979ff51 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 382 | dnl More later: directfb, fbdev, ... | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 383 | dnl | 
| Eric Anholt | 711222b | 2008-04-18 15:03:01 -0700 | [diff] [blame] | 384 | default_driver="xlib" | 
 | 385 |  | 
 | 386 | case "$host_os" in | 
 | 387 | linux*) | 
 | 388 |     case "$host_cpu" in | 
| David S. Miller | 32dc28a | 2009-02-24 20:06:05 -0700 | [diff] [blame] | 389 |     i*86|x86_64|powerpc*|sparc*) default_driver="dri";; | 
| Eric Anholt | 711222b | 2008-04-18 15:03:01 -0700 | [diff] [blame] | 390 |     esac | 
 | 391 |     ;; | 
| Julien Cristau | 98fcdf3 | 2008-10-28 18:56:05 +0100 | [diff] [blame] | 392 | *freebsd* | dragonfly*) | 
| Eric Anholt | 711222b | 2008-04-18 15:03:01 -0700 | [diff] [blame] | 393 |     case "$host_cpu" in | 
| Robert Noland | 48f0543 | 2009-04-10 11:41:27 -0500 | [diff] [blame] | 394 |     i*86|x86_64|powerpc*|sparc*) default_driver="dri";; | 
| Eric Anholt | 711222b | 2008-04-18 15:03:01 -0700 | [diff] [blame] | 395 |     esac | 
 | 396 |     ;; | 
 | 397 | esac | 
 | 398 |  | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 399 | AC_ARG_WITH([driver], | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 400 |     [AS_HELP_STRING([--with-driver=DRIVER], | 
| Eric Anholt | 711222b | 2008-04-18 15:03:01 -0700 | [diff] [blame] | 401 |         [driver for Mesa: xlib,dri,osmesa @<:@default=dri when available, or xlib@:>@])], | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 402 |     [mesa_driver="$withval"], | 
 | 403 |     [mesa_driver="$default_driver"]) | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 404 | dnl Check for valid option | 
 | 405 | case "x$mesa_driver" in | 
| Dan Nicholson | a130718 | 2007-12-12 17:49:49 -0800 | [diff] [blame] | 406 | xxlib|xdri|xosmesa) | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 407 |     ;; | 
 | 408 | *) | 
 | 409 |     AC_MSG_ERROR([Driver '$mesa_driver' is not a valid option]) | 
 | 410 |     ;; | 
 | 411 | esac | 
 | 412 |  | 
 | 413 | dnl | 
 | 414 | dnl Driver specific build directories | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 415 | dnl | 
| Dan Nicholson | 66f9786 | 2009-04-29 12:11:43 -0700 | [diff] [blame] | 416 | SRC_DIRS="mesa glew" | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 417 | GLU_DIRS="sgi" | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 418 | WINDOW_SYSTEM="" | 
| Jakob Bornecrantz | 7e54d7d | 2009-02-11 02:38:21 +0100 | [diff] [blame] | 419 | GALLIUM_DIRS="auxiliary drivers state_trackers" | 
| Jerome Glisse | 14f79d4 | 2008-12-18 13:36:07 +0100 | [diff] [blame] | 420 | GALLIUM_WINSYS_DIRS="" | 
| Jakob Bornecrantz | 7e54d7d | 2009-02-11 02:38:21 +0100 | [diff] [blame] | 421 | GALLIUM_WINSYS_DRM_DIRS="" | 
| Jakob Bornecrantz | dfa4ebc | 2009-05-15 01:07:05 +0200 | [diff] [blame] | 422 | GALLIUM_AUXILIARY_DIRS="rbug draw translate cso_cache pipebuffer tgsi sct rtasm util indices" | 
| Jakob Bornecrantz | d60b2c6 | 2009-06-24 02:42:41 +0200 | [diff] [blame] | 423 | GALLIUM_DRIVERS_DIRS="softpipe failover trace identity" | 
| Jakob Bornecrantz | 7e54d7d | 2009-02-11 02:38:21 +0100 | [diff] [blame] | 424 | GALLIUM_STATE_TRACKERS_DIRS="" | 
 | 425 |  | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 426 | case "$mesa_driver" in | 
| Dan Nicholson | a130718 | 2007-12-12 17:49:49 -0800 | [diff] [blame] | 427 | xlib) | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 428 |     DRIVER_DIRS="x11" | 
| Jakob Bornecrantz | 373e671 | 2009-04-18 23:13:56 +0100 | [diff] [blame] | 429 |     GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS xlib" | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 430 |     ;; | 
 | 431 | dri) | 
 | 432 |     SRC_DIRS="glx/x11 $SRC_DIRS" | 
| Jakob Bornecrantz | 7e54d7d | 2009-02-11 02:38:21 +0100 | [diff] [blame] | 433 |     DRIVER_DIRS="dri" | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 434 |     WINDOW_SYSTEM="dri" | 
| Jakob Bornecrantz | 373e671 | 2009-04-18 23:13:56 +0100 | [diff] [blame] | 435 |     GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS drm" | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 436 |     ;; | 
| Dan Nicholson | 979ff51 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 437 | osmesa) | 
 | 438 |     DRIVER_DIRS="osmesa" | 
 | 439 |     ;; | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 440 | esac | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 441 | AC_SUBST([SRC_DIRS]) | 
 | 442 | AC_SUBST([GLU_DIRS]) | 
 | 443 | AC_SUBST([DRIVER_DIRS]) | 
 | 444 | AC_SUBST([WINDOW_SYSTEM]) | 
| Jakob Bornecrantz | 7e54d7d | 2009-02-11 02:38:21 +0100 | [diff] [blame] | 445 | AC_SUBST([GALLIUM_DIRS]) | 
| Jerome Glisse | 14f79d4 | 2008-12-18 13:36:07 +0100 | [diff] [blame] | 446 | AC_SUBST([GALLIUM_WINSYS_DIRS]) | 
| Jakob Bornecrantz | 7e54d7d | 2009-02-11 02:38:21 +0100 | [diff] [blame] | 447 | AC_SUBST([GALLIUM_WINSYS_DRM_DIRS]) | 
| Jakob Bornecrantz | d67bd60 | 2009-02-20 11:03:18 +0000 | [diff] [blame] | 448 | AC_SUBST([GALLIUM_DRIVERS_DIRS]) | 
| Jerome Glisse | 14f79d4 | 2008-12-18 13:36:07 +0100 | [diff] [blame] | 449 | AC_SUBST([GALLIUM_AUXILIARY_DIRS]) | 
| Jakob Bornecrantz | 7e54d7d | 2009-02-11 02:38:21 +0100 | [diff] [blame] | 450 | AC_SUBST([GALLIUM_STATE_TRACKERS_DIRS]) | 
| Dave Airlie | b0e8ac8 | 2009-02-15 17:03:47 +1000 | [diff] [blame] | 451 | AC_SUBST([RADEON_CFLAGS]) | 
 | 452 | AC_SUBST([RADEON_LDFLAGS]) | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 453 |  | 
 | 454 | dnl | 
| Dan Nicholson | 8e4d147 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 455 | dnl User supplied program configuration | 
 | 456 | dnl | 
 | 457 | if test -d "$srcdir/progs/demos"; then | 
 | 458 |     default_demos=yes | 
 | 459 | else | 
 | 460 |     default_demos=no | 
 | 461 | fi | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 462 | AC_ARG_WITH([demos], | 
| Dan Nicholson | 8e4d147 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 463 |     [AS_HELP_STRING([--with-demos@<:@=DIRS...@:>@], | 
 | 464 |         [optional comma delimited demo directories to build | 
| Dan Nicholson | c79c93c | 2007-12-12 18:13:04 -0800 | [diff] [blame] | 465 |         @<:@default=auto if source available@:>@])], | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 466 |     [with_demos="$withval"], | 
 | 467 |     [with_demos="$default_demos"]) | 
| Dan Nicholson | 8e4d147 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 468 | if test "x$with_demos" = x; then | 
 | 469 |     with_demos=no | 
 | 470 | fi | 
 | 471 |  | 
 | 472 | dnl If $with_demos is yes, directories will be added as libs available | 
 | 473 | PROGRAM_DIRS="" | 
 | 474 | case "$with_demos" in | 
| Dan Nicholson | b957655 | 2008-03-10 14:05:46 -0700 | [diff] [blame] | 475 | no) ;; | 
 | 476 | yes) | 
 | 477 |     # If the driver isn't osmesa, we have libGL and can build xdemos | 
 | 478 |     if test "$mesa_driver" != osmesa; then | 
 | 479 |         PROGRAM_DIRS="xdemos" | 
 | 480 |     fi | 
 | 481 |     ;; | 
| Dan Nicholson | 8e4d147 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 482 | *) | 
 | 483 |     # verify the requested demos directories exist | 
 | 484 |     demos=`IFS=,; echo $with_demos` | 
 | 485 |     for demo in $demos; do | 
 | 486 |         test -d "$srcdir/progs/$demo" || \ | 
 | 487 |             AC_MSG_ERROR([Program directory '$demo' doesn't exist]) | 
 | 488 |     done | 
 | 489 |     PROGRAM_DIRS="$demos" | 
 | 490 |     ;; | 
 | 491 | esac | 
 | 492 |  | 
 | 493 | dnl | 
| Dan Nicholson | e6a0609 | 2008-05-05 15:16:22 -0700 | [diff] [blame] | 494 | dnl Find out if X is available. The variable have_x is set if libX11 is | 
| Dan Nicholson | 99803a4 | 2008-07-01 09:03:15 -0700 | [diff] [blame] | 495 | dnl found to mimic AC_PATH_XTRA. | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 496 | dnl | 
 | 497 | if test -n "$PKG_CONFIG"; then | 
 | 498 |     AC_MSG_CHECKING([pkg-config files for X11 are available]) | 
| Dan Nicholson | e6a0609 | 2008-05-05 15:16:22 -0700 | [diff] [blame] | 499 |     PKG_CHECK_EXISTS([x11],[ | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 500 |         x11_pkgconfig=yes | 
 | 501 |         have_x=yes | 
| Dan Nicholson | e6a0609 | 2008-05-05 15:16:22 -0700 | [diff] [blame] | 502 |         ],[ | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 503 |         x11_pkgconfig=no | 
| Dan Nicholson | e6a0609 | 2008-05-05 15:16:22 -0700 | [diff] [blame] | 504 |     ]) | 
 | 505 |     AC_MSG_RESULT([$x11_pkgconfig]) | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 506 | else | 
 | 507 |     x11_pkgconfig=no | 
 | 508 | fi | 
 | 509 | dnl Use the autoconf macro if no pkg-config files | 
 | 510 | if test "$x11_pkgconfig" = no; then | 
 | 511 |     AC_PATH_XTRA | 
 | 512 | fi | 
 | 513 |  | 
| Dan Nicholson | 99803a4 | 2008-07-01 09:03:15 -0700 | [diff] [blame] | 514 | dnl Try to tell the user that the --x-* options are only used when | 
 | 515 | dnl pkg-config is not available. This must be right after AC_PATH_XTRA. | 
 | 516 | m4_divert_once([HELP_BEGIN], | 
 | 517 | [These options are only used when the X libraries cannot be found by the | 
 | 518 | pkg-config utility.]) | 
 | 519 |  | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 520 | dnl We need X for xlib and dri, so bomb now if it's not found | 
 | 521 | case "$mesa_driver" in | 
| Dan Nicholson | a130718 | 2007-12-12 17:49:49 -0800 | [diff] [blame] | 522 | xlib|dri) | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 523 |     if test "$no_x" = yes; then | 
 | 524 |         AC_MSG_ERROR([X11 development libraries needed for $mesa_driver driver]) | 
 | 525 |     fi | 
 | 526 |     ;; | 
 | 527 | esac | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 528 |  | 
| Dan Nicholson | 2d709fe | 2008-05-06 10:51:49 -0700 | [diff] [blame] | 529 | dnl XCB - this is only used for GLX right now | 
 | 530 | AC_ARG_ENABLE([xcb], | 
 | 531 |     [AS_HELP_STRING([--enable-xcb], | 
 | 532 |         [use XCB for GLX @<:@default=disabled@:>@])], | 
 | 533 |     [enable_xcb="$enableval"], | 
 | 534 |     [enable_xcb=no]) | 
 | 535 | if test "x$enable_xcb" = xyes; then | 
 | 536 |     DEFINES="$DEFINES -DUSE_XCB" | 
 | 537 | else | 
 | 538 |     enable_xcb=no | 
 | 539 | fi | 
 | 540 |  | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 541 | dnl | 
 | 542 | dnl libGL configuration per driver | 
 | 543 | dnl | 
 | 544 | case "$mesa_driver" in | 
| Dan Nicholson | a130718 | 2007-12-12 17:49:49 -0800 | [diff] [blame] | 545 | xlib) | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 546 |     if test "$x11_pkgconfig" = yes; then | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 547 |         PKG_CHECK_MODULES([XLIBGL], [x11 xext]) | 
| Dan Nicholson | 71e208b | 2008-11-24 11:01:57 -0800 | [diff] [blame] | 548 |         GL_PC_REQ_PRIV="x11 xext" | 
| Dan Nicholson | a130718 | 2007-12-12 17:49:49 -0800 | [diff] [blame] | 549 |         X11_INCLUDES="$X11_INCLUDES $XLIBGL_CFLAGS" | 
 | 550 |         GL_LIB_DEPS="$XLIBGL_LIBS" | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 551 |     else | 
 | 552 |         # should check these... | 
 | 553 |         X11_INCLUDES="$X11_INCLUDES $X_CFLAGS" | 
 | 554 |         GL_LIB_DEPS="$X_LIBS -lX11 -lXext" | 
| Dan Nicholson | 71e208b | 2008-11-24 11:01:57 -0800 | [diff] [blame] | 555 |         GL_PC_LIB_PRIV="$GL_LIB_DEPS" | 
 | 556 |         GL_PC_CFLAGS="$X11_INCLUDES" | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 557 |     fi | 
| Alan Coopersmith | 3cf6e62 | 2009-03-23 16:51:54 -0700 | [diff] [blame] | 558 |     GL_LIB_DEPS="$GL_LIB_DEPS $SELINUX_LIBS -lm -lpthread" | 
 | 559 |     GL_PC_LIB_PRIV="$GL_PC_LIB_PRIV $SELINUX_LIBS -lm -lpthread" | 
| Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 560 |  | 
 | 561 |     # if static, move the external libraries to the programs | 
 | 562 |     # and empty the libraries for libGL | 
 | 563 |     if test "$enable_static" = yes; then | 
 | 564 |         APP_LIB_DEPS="$APP_LIB_DEPS $GL_LIB_DEPS" | 
 | 565 |         GL_LIB_DEPS="" | 
 | 566 |     fi | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 567 |     ;; | 
 | 568 | dri) | 
| Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 569 |     # DRI must be shared, I think | 
 | 570 |     if test "$enable_static" = yes; then | 
 | 571 |         AC_MSG_ERROR([Can't use static libraries for DRI drivers]) | 
 | 572 |     fi | 
 | 573 |  | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 574 |     # Check for libdrm | 
| Dan Nicholson | cc77e8f | 2008-05-05 14:38:22 -0700 | [diff] [blame] | 575 |     PKG_CHECK_MODULES([LIBDRM], [libdrm >= $LIBDRM_REQUIRED]) | 
 | 576 |     PKG_CHECK_MODULES([DRI2PROTO], [dri2proto >= $DRI2PROTO_REQUIRED]) | 
| Dan Nicholson | 71e208b | 2008-11-24 11:01:57 -0800 | [diff] [blame] | 577 |     GL_PC_REQ_PRIV="libdrm >= $LIBDRM_REQUIRED dri2proto >= $DRI2PROTO_REQUIRED" | 
 | 578 |     DRI_PC_REQ_PRIV="libdrm >= $LIBDRM_REQUIRED" | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 579 |  | 
| Dave Airlie | b0e8ac8 | 2009-02-15 17:03:47 +1000 | [diff] [blame] | 580 |     PKG_CHECK_MODULES([LIBDRM_RADEON], [libdrm_radeon], HAVE_LIBDRM_RADEON=yes, HAVE_LIBDRM_RADEON=no) | 
 | 581 |  | 
 | 582 |     if test "$HAVE_LIBDRM_RADEON" = yes; then | 
 | 583 | 	RADEON_CFLAGS="-DHAVE_LIBDRM_RADEON=1 $LIBDRM_RADEON_CFLAGS" | 
 | 584 | 	RADEON_LDFLAGS=$LIBDRM_RADEON_LIBS | 
 | 585 |     fi | 
 | 586 |  | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 587 |     # find the DRI deps for libGL | 
 | 588 |     if test "$x11_pkgconfig" = yes; then | 
| Dan Nicholson | 2d709fe | 2008-05-06 10:51:49 -0700 | [diff] [blame] | 589 |         # add xcb modules if necessary | 
 | 590 |         dri_modules="x11 xext xxf86vm xdamage xfixes" | 
 | 591 |         if test "$enable_xcb" = yes; then | 
 | 592 |             dri_modules="$dri_modules x11-xcb xcb-glx" | 
 | 593 |         fi | 
 | 594 |  | 
 | 595 |         PKG_CHECK_MODULES([DRIGL], [$dri_modules]) | 
| Dan Nicholson | 71e208b | 2008-11-24 11:01:57 -0800 | [diff] [blame] | 596 |         GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV $dri_modules" | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 597 |         X11_INCLUDES="$X11_INCLUDES $DRIGL_CFLAGS" | 
 | 598 |         GL_LIB_DEPS="$DRIGL_LIBS" | 
 | 599 |     else | 
 | 600 |         # should check these... | 
 | 601 |         X11_INCLUDES="$X11_INCLUDES $X_CFLAGS" | 
 | 602 |         GL_LIB_DEPS="$X_LIBS -lX11 -lXext -lXxf86vm -lXdamage -lXfixes" | 
| Dan Nicholson | 71e208b | 2008-11-24 11:01:57 -0800 | [diff] [blame] | 603 |         GL_PC_LIB_PRIV="$GL_LIB_DEPS" | 
 | 604 |         GL_PC_CFLAGS="$X11_INCLUDES" | 
| Dan Nicholson | 2d709fe | 2008-05-06 10:51:49 -0700 | [diff] [blame] | 605 |  | 
 | 606 |         # XCB can only be used from pkg-config | 
 | 607 |         if test "$enable_xcb" = yes; then | 
 | 608 |             PKG_CHECK_MODULES([XCB],[x11-xcb xcb-glx]) | 
| Dan Nicholson | 71e208b | 2008-11-24 11:01:57 -0800 | [diff] [blame] | 609 |             GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV x11-xcb xcb-glx" | 
| Dan Nicholson | 2d709fe | 2008-05-06 10:51:49 -0700 | [diff] [blame] | 610 |             X11_INCLUDES="$X11_INCLUDES $XCB_CFLAGS" | 
 | 611 |             GL_LIB_DEPS="$GL_LIB_DEPS $XCB_LIBS" | 
 | 612 |         fi | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 613 |     fi | 
 | 614 |  | 
 | 615 |     # need DRM libs, -lpthread, etc. | 
| Alan Coopersmith | 3cf6e62 | 2009-03-23 16:51:54 -0700 | [diff] [blame] | 616 |     GL_LIB_DEPS="$GL_LIB_DEPS $LIBDRM_LIBS -lm -lpthread $DLOPEN_LIBS" | 
 | 617 |     GL_PC_LIB_PRIV="-lm -lpthread $DLOPEN_LIBS" | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 618 |     ;; | 
| Dan Nicholson | 979ff51 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 619 | osmesa) | 
 | 620 |     # No libGL for osmesa | 
| Alan Coopersmith | 3cf6e62 | 2009-03-23 16:51:54 -0700 | [diff] [blame] | 621 |     GL_LIB_DEPS="" | 
| Dan Nicholson | 979ff51 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 622 |     ;; | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 623 | esac | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 624 | AC_SUBST([GL_LIB_DEPS]) | 
| Dan Nicholson | 71e208b | 2008-11-24 11:01:57 -0800 | [diff] [blame] | 625 | AC_SUBST([GL_PC_REQ_PRIV]) | 
 | 626 | AC_SUBST([GL_PC_LIB_PRIV]) | 
 | 627 | AC_SUBST([GL_PC_CFLAGS]) | 
 | 628 | AC_SUBST([DRI_PC_REQ_PRIV]) | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 629 |  | 
 | 630 | dnl | 
 | 631 | dnl More X11 setup | 
 | 632 | dnl | 
| Dan Nicholson | a130718 | 2007-12-12 17:49:49 -0800 | [diff] [blame] | 633 | if test "$mesa_driver" = xlib; then | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 634 |     DEFINES="$DEFINES -DUSE_XSHM" | 
 | 635 | fi | 
 | 636 |  | 
 | 637 | dnl | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 638 | dnl More DRI setup | 
 | 639 | dnl | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 640 | AC_ARG_ENABLE([glx-tls], | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 641 |     [AS_HELP_STRING([--enable-glx-tls], | 
| Dan Nicholson | 79ad458 | 2007-12-07 19:11:01 -0800 | [diff] [blame] | 642 |         [enable TLS support in GLX @<:@default=disabled@:>@])], | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 643 |     [GLX_USE_TLS="$enableval"], | 
 | 644 |     [GLX_USE_TLS=no]) | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 645 | dnl Directory for DRI drivers | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 646 | AC_ARG_WITH([dri-driverdir], | 
| Dan Nicholson | af3d2f2 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 647 |     [AS_HELP_STRING([--with-dri-driverdir=DIR], | 
| Dan Nicholson | 5dbbde5 | 2008-05-06 06:21:41 -0700 | [diff] [blame] | 648 |         [directory for the DRI drivers @<:@${libdir}/dri@:>@])], | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 649 |     [DRI_DRIVER_INSTALL_DIR="$withval"], | 
| Dan Nicholson | 5dbbde5 | 2008-05-06 06:21:41 -0700 | [diff] [blame] | 650 |     [DRI_DRIVER_INSTALL_DIR='${libdir}/dri']) | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 651 | AC_SUBST([DRI_DRIVER_INSTALL_DIR]) | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 652 | dnl Direct rendering or just indirect rendering | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 653 | AC_ARG_ENABLE([driglx-direct], | 
| Dan Nicholson | 79ad458 | 2007-12-07 19:11:01 -0800 | [diff] [blame] | 654 |     [AS_HELP_STRING([--disable-driglx-direct], | 
 | 655 |         [enable direct rendering in GLX for DRI @<:@default=enabled@:>@])], | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 656 |     [driglx_direct="$enableval"], | 
 | 657 |     [driglx_direct="yes"]) | 
| Dan Nicholson | af3d2f2 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 658 | dnl Which drivers to build - default is chosen by platform | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 659 | AC_ARG_WITH([dri-drivers], | 
| Dan Nicholson | af3d2f2 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 660 |     [AS_HELP_STRING([--with-dri-drivers@<:@=DIRS...@:>@], | 
| Dan Nicholson | 5cae1b7 | 2008-06-30 10:28:02 -0700 | [diff] [blame] | 661 |         [comma delimited DRI drivers list, e.g. | 
| Michel Dänzer | cade071 | 2009-07-10 14:49:46 +0200 | [diff] [blame] | 662 |         "swrast,i965,radeon" @<:@default=auto@:>@])], | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 663 |     [with_dri_drivers="$withval"], | 
 | 664 |     [with_dri_drivers=yes]) | 
| Dan Nicholson | af3d2f2 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 665 | if test "x$with_dri_drivers" = x; then | 
 | 666 |     with_dri_drivers=no | 
 | 667 | fi | 
 | 668 |  | 
 | 669 | dnl If $with_dri_drivers is yes, directories will be added through | 
 | 670 | dnl platform checks | 
 | 671 | DRI_DIRS="" | 
 | 672 | case "$with_dri_drivers" in | 
| Florent Thoumie | b5095ab | 2008-07-28 14:44:43 +0100 | [diff] [blame] | 673 | no) ;; | 
 | 674 | yes) | 
 | 675 |     DRI_DIRS="yes" | 
 | 676 |     ;; | 
| Dan Nicholson | af3d2f2 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 677 | *) | 
 | 678 |     # verify the requested driver directories exist | 
| Dan Nicholson | e6e4f25 | 2008-07-06 14:17:39 -0700 | [diff] [blame] | 679 |     dri_drivers=`IFS=', '; echo $with_dri_drivers` | 
| Dan Nicholson | af3d2f2 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 680 |     for driver in $dri_drivers; do | 
 | 681 |         test -d "$srcdir/src/mesa/drivers/dri/$driver" || \ | 
 | 682 |             AC_MSG_ERROR([DRI driver directory '$driver' doesn't exist]) | 
 | 683 |     done | 
 | 684 |     DRI_DIRS="$dri_drivers" | 
 | 685 |     ;; | 
 | 686 | esac | 
 | 687 |  | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 688 | dnl Just default to no EGL for now | 
 | 689 | USING_EGL=0 | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 690 | AC_SUBST([USING_EGL]) | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 691 |  | 
 | 692 | dnl Set DRI_DIRS, DEFINES and LIB_DEPS | 
 | 693 | if test "$mesa_driver" = dri; then | 
 | 694 |     # Use TLS in GLX? | 
 | 695 |     if test "x$GLX_USE_TLS" = xyes; then | 
 | 696 |         DEFINES="$DEFINES -DGLX_USE_TLS -DPTHREADS" | 
 | 697 |     fi | 
 | 698 |  | 
 | 699 |     if test "x$USING_EGL" = x1; then | 
 | 700 |         PROGRAM_DIRS="egl" | 
 | 701 |     fi | 
 | 702 |  | 
 | 703 |     # Platform specific settings and drivers to build | 
 | 704 |     case "$host_os" in | 
 | 705 |     linux*) | 
 | 706 |         DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER" | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 707 |         if test "x$driglx_direct" = xyes; then | 
 | 708 |             DEFINES="$DEFINES -DGLX_DIRECT_RENDERING" | 
 | 709 |         fi | 
| Jerome Glisse | 14f79d4 | 2008-12-18 13:36:07 +0100 | [diff] [blame] | 710 |         DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING -DHAVE_ALIAS" | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 711 |  | 
 | 712 |         case "$host_cpu" in | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 713 |         x86_64) | 
| Dan Nicholson | a76e245 | 2007-12-07 11:25:08 -0800 | [diff] [blame] | 714 |             # ffb, gamma, and sis are missing because they have not be | 
 | 715 |             # converted to use the new interface.  i810 are missing | 
 | 716 |             # because there is no x86-64 system where they could *ever* | 
 | 717 |             # be used. | 
| Florent Thoumie | b5095ab | 2008-07-28 14:44:43 +0100 | [diff] [blame] | 718 |             if test "x$DRI_DIRS" = "xyes"; then | 
| Alex Deucher | 4138bdb | 2009-04-08 15:16:35 -0400 | [diff] [blame] | 719 |                 DRI_DIRS="i915 i965 mach64 mga r128 r200 r300 r600 radeon \ | 
| George Sapountzis | 280bf89 | 2008-05-11 14:43:40 +0300 | [diff] [blame] | 720 |                     savage tdfx unichrome swrast" | 
| Dan Nicholson | af3d2f2 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 721 |             fi | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 722 |             ;; | 
 | 723 |         powerpc*) | 
| Dan Nicholson | a76e245 | 2007-12-07 11:25:08 -0800 | [diff] [blame] | 724 |             # Build only the drivers for cards that exist on PowerPC. | 
 | 725 |             # At some point MGA will be added, but not yet. | 
| Florent Thoumie | b5095ab | 2008-07-28 14:44:43 +0100 | [diff] [blame] | 726 |             if test "x$DRI_DIRS" = "xyes"; then | 
| Alex Deucher | 4138bdb | 2009-04-08 15:16:35 -0400 | [diff] [blame] | 727 |                 DRI_DIRS="mach64 r128 r200 r300 r600 radeon tdfx swrast" | 
| Dan Nicholson | af3d2f2 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 728 |             fi | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 729 |             ;; | 
| Dave Airlie | 2b0e75e | 2008-06-12 12:06:50 +1000 | [diff] [blame] | 730 |         sparc*) | 
 | 731 |             # Build only the drivers for cards that exist on sparc` | 
| Florent Thoumie | b5095ab | 2008-07-28 14:44:43 +0100 | [diff] [blame] | 732 |             if test "x$DRI_DIRS" = "xyes"; then | 
| Alex Deucher | 4138bdb | 2009-04-08 15:16:35 -0400 | [diff] [blame] | 733 |                 DRI_DIRS="mach64 r128 r200 r300 r600 radeon ffb swrast" | 
| Dave Airlie | 2b0e75e | 2008-06-12 12:06:50 +1000 | [diff] [blame] | 734 |             fi | 
 | 735 |             ;; | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 736 |         esac | 
 | 737 |         ;; | 
| Hasso Tepper | 9f8df2d | 2008-04-09 10:51:21 -0700 | [diff] [blame] | 738 |     freebsd* | dragonfly*) | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 739 |         DEFINES="$DEFINES -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1" | 
 | 740 |         DEFINES="$DEFINES -DIN_DRI_DRIVER -DHAVE_ALIAS" | 
 | 741 |         DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING" | 
 | 742 |         if test "x$driglx_direct" = xyes; then | 
 | 743 |             DEFINES="$DEFINES -DGLX_DIRECT_RENDERING" | 
 | 744 |         fi | 
 | 745 |         if test "x$GXX" = xyes; then | 
 | 746 |             CXXFLAGS="$CXXFLAGS -ansi -pedantic" | 
 | 747 |         fi | 
 | 748 |  | 
| Dan Nicholson | a76e245 | 2007-12-07 11:25:08 -0800 | [diff] [blame] | 749 |         # ffb and gamma are missing because they have not been converted | 
 | 750 |         # to use the new interface. | 
| Florent Thoumie | b5095ab | 2008-07-28 14:44:43 +0100 | [diff] [blame] | 751 |         if test "x$DRI_DIRS" = "xyes"; then | 
| Alex Deucher | 4138bdb | 2009-04-08 15:16:35 -0400 | [diff] [blame] | 752 |             DRI_DIRS="i810 i915 i965 mach64 mga r128 r200 r300 r600 radeon tdfx \ | 
| George Sapountzis | 280bf89 | 2008-05-11 14:43:40 +0300 | [diff] [blame] | 753 |                 unichrome savage sis swrast" | 
| Dan Nicholson | af3d2f2 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 754 |         fi | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 755 |         ;; | 
| Samuel Thibault | d18dd6a | 2009-04-23 05:43:22 -0700 | [diff] [blame] | 756 |     gnu*) | 
 | 757 |         DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER" | 
 | 758 |         DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING -DHAVE_ALIAS" | 
 | 759 | 	;; | 
| Alan Coopersmith | e1f9adc | 2008-06-20 17:58:53 -0700 | [diff] [blame] | 760 |     solaris*) | 
 | 761 |         DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER" | 
 | 762 |         DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING" | 
 | 763 |         if test "x$driglx_direct" = xyes; then | 
 | 764 |             DEFINES="$DEFINES -DGLX_DIRECT_RENDERING" | 
 | 765 |         fi | 
 | 766 |         ;; | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 767 |     esac | 
| Dan Nicholson | 112a40e | 2008-02-21 10:17:19 -0800 | [diff] [blame] | 768 |  | 
 | 769 |     # default drivers | 
| Florent Thoumie | b5095ab | 2008-07-28 14:44:43 +0100 | [diff] [blame] | 770 |     if test "x$DRI_DIRS" = "xyes"; then | 
| Alex Deucher | 4138bdb | 2009-04-08 15:16:35 -0400 | [diff] [blame] | 771 |         DRI_DIRS="i810 i915 i965 mach64 mga r128 r200 r300 r600 radeon s3v \ | 
| George Sapountzis | 280bf89 | 2008-05-11 14:43:40 +0300 | [diff] [blame] | 772 |             savage sis tdfx trident unichrome ffb swrast" | 
| Dan Nicholson | 112a40e | 2008-02-21 10:17:19 -0800 | [diff] [blame] | 773 |     fi | 
 | 774 |  | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 775 |     DRI_DIRS=`echo "$DRI_DIRS" | $SED 's/  */ /g'` | 
 | 776 |  | 
 | 777 |     # Check for expat | 
 | 778 |     EXPAT_INCLUDES="" | 
 | 779 |     EXPAT_LIB=-lexpat | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 780 |     AC_ARG_WITH([expat], | 
 | 781 |         [AS_HELP_STRING([--with-expat=DIR], | 
 | 782 |             [expat install directory])],[ | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 783 |         EXPAT_INCLUDES="-I$withval/include" | 
 | 784 |         CPPFLAGS="$CPPFLAGS $EXPAT_INCLUDES" | 
 | 785 |         LDFLAGS="$LDFLAGS -L$withval/$LIB_DIR" | 
 | 786 |         EXPAT_LIB="-L$withval/$LIB_DIR -lexpat" | 
 | 787 |         ]) | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 788 |     AC_CHECK_HEADER([expat.h],[],[AC_MSG_ERROR([Expat required for DRI.])]) | 
 | 789 |     AC_CHECK_LIB([expat],[XML_ParserCreate],[], | 
 | 790 |         [AC_MSG_ERROR([Expat required for DRI.])]) | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 791 |  | 
 | 792 |     # put all the necessary libs together | 
| Eric Anholt | 050c533 | 2008-03-20 17:28:58 -0700 | [diff] [blame] | 793 |     DRI_LIB_DEPS="$SELINUX_LIBS $LIBDRM_LIBS $EXPAT_LIB -lm -lpthread $DLOPEN_LIBS" | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 794 | fi | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 795 | AC_SUBST([DRI_DIRS]) | 
 | 796 | AC_SUBST([EXPAT_INCLUDES]) | 
 | 797 | AC_SUBST([DRI_LIB_DEPS]) | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 798 |  | 
 | 799 | dnl | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 800 | dnl OSMesa configuration | 
 | 801 | dnl | 
| Dan Nicholson | a130718 | 2007-12-12 17:49:49 -0800 | [diff] [blame] | 802 | if test "$mesa_driver" = xlib; then | 
| Dan Nicholson | 544ab20 | 2007-12-30 08:41:53 -0800 | [diff] [blame] | 803 |     default_gl_osmesa=yes | 
| Dan Nicholson | 979ff51 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 804 | else | 
| Dan Nicholson | 544ab20 | 2007-12-30 08:41:53 -0800 | [diff] [blame] | 805 |     default_gl_osmesa=no | 
| Dan Nicholson | 44d9914 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 806 | fi | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 807 | AC_ARG_ENABLE([gl-osmesa], | 
| Dan Nicholson | 544ab20 | 2007-12-30 08:41:53 -0800 | [diff] [blame] | 808 |     [AS_HELP_STRING([--enable-gl-osmesa], | 
 | 809 |         [enable OSMesa on libGL @<:@default=enabled for xlib driver@:>@])], | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 810 |     [gl_osmesa="$enableval"], | 
 | 811 |     [gl_osmesa="$default_gl_osmesa"]) | 
| Dan Nicholson | 544ab20 | 2007-12-30 08:41:53 -0800 | [diff] [blame] | 812 | if test "x$gl_osmesa" = xyes; then | 
 | 813 |     if test "$mesa_driver" = osmesa; then | 
 | 814 |         AC_MSG_ERROR([libGL is not available for OSMesa driver]) | 
| Dan Nicholson | 979ff51 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 815 |     else | 
| Dan Nicholson | 544ab20 | 2007-12-30 08:41:53 -0800 | [diff] [blame] | 816 |         DRIVER_DIRS="$DRIVER_DIRS osmesa" | 
| Dan Nicholson | 979ff51 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 817 |     fi | 
 | 818 | fi | 
 | 819 |  | 
| Dan Nicholson | 6689f9e | 2007-12-05 21:04:15 -0800 | [diff] [blame] | 820 | dnl Configure the channel bits for OSMesa (libOSMesa, libOSMesa16, ...) | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 821 | AC_ARG_WITH([osmesa-bits], | 
| Dan Nicholson | 6689f9e | 2007-12-05 21:04:15 -0800 | [diff] [blame] | 822 |     [AS_HELP_STRING([--with-osmesa-bits=BITS], | 
 | 823 |         [OSMesa channel bits and library name: 8, 16, 32 @<:@default=8@:>@])], | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 824 |     [osmesa_bits="$withval"], | 
 | 825 |     [osmesa_bits=8]) | 
| Dan Nicholson | 6689f9e | 2007-12-05 21:04:15 -0800 | [diff] [blame] | 826 | if test "$mesa_driver" != osmesa && test "x$osmesa_bits" != x8; then | 
 | 827 |     AC_MSG_WARN([Ignoring OSMesa channel bits for non-OSMesa driver]) | 
 | 828 |     osmesa_bits=8 | 
 | 829 | fi | 
 | 830 | case "x$osmesa_bits" in | 
 | 831 | x8) | 
 | 832 |     OSMESA_LIB=OSMesa | 
 | 833 |     ;; | 
 | 834 | x16|x32) | 
 | 835 |     OSMESA_LIB="OSMesa$osmesa_bits" | 
 | 836 |     DEFINES="$DEFINES -DCHAN_BITS=$osmesa_bits -DDEFAULT_SOFTWARE_DEPTH_BITS=31" | 
 | 837 |     ;; | 
 | 838 | *) | 
 | 839 |     AC_MSG_ERROR([OSMesa bits '$osmesa_bits' is not a valid option]) | 
 | 840 |     ;; | 
 | 841 | esac | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 842 | AC_SUBST([OSMESA_LIB]) | 
| Dan Nicholson | 6689f9e | 2007-12-05 21:04:15 -0800 | [diff] [blame] | 843 |  | 
| Dan Nicholson | 979ff51 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 844 | case "$mesa_driver" in | 
 | 845 | osmesa) | 
| Alan Coopersmith | e1f9adc | 2008-06-20 17:58:53 -0700 | [diff] [blame] | 846 |     # only link libraries with osmesa if shared | 
| Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 847 |     if test "$enable_static" = no; then | 
| Dan Nicholson | 4795dd5 | 2009-06-04 19:42:08 -0700 | [diff] [blame] | 848 |         OSMESA_LIB_DEPS="-lm -lpthread $SELINUX_LIBS $DLOPEN_LIBS" | 
| Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 849 |     else | 
 | 850 |         OSMESA_LIB_DEPS="" | 
 | 851 |     fi | 
| Dan Nicholson | 979ff51 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 852 |     OSMESA_MESA_DEPS="" | 
| Dan Nicholson | 4795dd5 | 2009-06-04 19:42:08 -0700 | [diff] [blame] | 853 |     OSMESA_PC_LIB_PRIV="-lm -lpthread $SELINUX_LIBS $DLOPEN_LIBS" | 
| Dan Nicholson | 979ff51 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 854 |     ;; | 
 | 855 | *) | 
 | 856 |     # Link OSMesa to libGL otherwise | 
 | 857 |     OSMESA_LIB_DEPS="" | 
| Alan Coopersmith | e1f9adc | 2008-06-20 17:58:53 -0700 | [diff] [blame] | 858 |     # only link libraries with osmesa if shared | 
| Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 859 |     if test "$enable_static" = no; then | 
 | 860 |         OSMESA_MESA_DEPS='-l$(GL_LIB)' | 
 | 861 |     else | 
 | 862 |         OSMESA_MESA_DEPS="" | 
 | 863 |     fi | 
| Dan Nicholson | 8be02fc | 2008-12-14 09:35:29 -0800 | [diff] [blame] | 864 |     OSMESA_PC_REQ="gl" | 
| Dan Nicholson | 979ff51 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 865 |     ;; | 
 | 866 | esac | 
| Alan Coopersmith | 3cf6e62 | 2009-03-23 16:51:54 -0700 | [diff] [blame] | 867 | OSMESA_PC_LIB_PRIV="$OSMESA_PC_LIB_PRIV" | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 868 | AC_SUBST([OSMESA_LIB_DEPS]) | 
 | 869 | AC_SUBST([OSMESA_MESA_DEPS]) | 
| Dan Nicholson | 8be02fc | 2008-12-14 09:35:29 -0800 | [diff] [blame] | 870 | AC_SUBST([OSMESA_PC_REQ]) | 
 | 871 | AC_SUBST([OSMESA_PC_LIB_PRIV]) | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 872 |  | 
 | 873 | dnl | 
| Dan Nicholson | 53b3734 | 2009-02-25 17:45:34 -0800 | [diff] [blame] | 874 | dnl EGL configuration | 
 | 875 | dnl | 
| Dan Nicholson | 66f9786 | 2009-04-29 12:11:43 -0700 | [diff] [blame] | 876 | AC_ARG_ENABLE([egl], | 
 | 877 |     [AS_HELP_STRING([--disable-egl], | 
 | 878 |         [disable EGL library @<:@default=enabled@:>@])], | 
 | 879 |     [enable_egl="$enableval"], | 
 | 880 |     [enable_egl=yes]) | 
 | 881 | if test "x$enable_egl" = xyes; then | 
 | 882 |     SRC_DIRS="$SRC_DIRS egl" | 
 | 883 |  | 
 | 884 |     if test "$x11_pkgconfig" = yes; then | 
 | 885 |         PKG_CHECK_MODULES([EGL], [x11]) | 
 | 886 |         EGL_LIB_DEPS="$EGL_LIBS" | 
 | 887 |     else | 
 | 888 |         # should check these... | 
 | 889 |         EGL_LIB_DEPS="$X_LIBS -lX11" | 
 | 890 |     fi | 
 | 891 |     EGL_LIB_DEPS="$EGL_LIB_DEPS $DLOPEN_LIBS" | 
| Dan Nicholson | 53b3734 | 2009-02-25 17:45:34 -0800 | [diff] [blame] | 892 | fi | 
| Dan Nicholson | 53b3734 | 2009-02-25 17:45:34 -0800 | [diff] [blame] | 893 | AC_SUBST([EGL_LIB_DEPS]) | 
 | 894 |  | 
 | 895 | dnl | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 896 | dnl GLU configuration | 
 | 897 | dnl | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 898 | AC_ARG_ENABLE([glu], | 
| Dan Nicholson | 79ad458 | 2007-12-07 19:11:01 -0800 | [diff] [blame] | 899 |     [AS_HELP_STRING([--disable-glu], | 
 | 900 |         [enable OpenGL Utility library @<:@default=enabled@:>@])], | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 901 |     [enable_glu="$enableval"], | 
 | 902 |     [enable_glu=yes]) | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 903 | if test "x$enable_glu" = xyes; then | 
 | 904 |     SRC_DIRS="$SRC_DIRS glu" | 
 | 905 |  | 
| Dan Nicholson | 979ff51 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 906 |     case "$mesa_driver" in | 
 | 907 |     osmesa) | 
| Dan Nicholson | 6689f9e | 2007-12-05 21:04:15 -0800 | [diff] [blame] | 908 |         # If GLU is available and we have libOSMesa (not 16 or 32), | 
 | 909 |         # we can build the osdemos | 
| Dan Nicholson | 8e4d147 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 910 |         if test "$with_demos" = yes && test "$osmesa_bits" = 8; then | 
| Dan Nicholson | 6689f9e | 2007-12-05 21:04:15 -0800 | [diff] [blame] | 911 |             PROGRAM_DIRS="$PROGRAM_DIRS osdemos" | 
 | 912 |         fi | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 913 |  | 
| Dan Nicholson | 979ff51 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 914 |         # Link libGLU to libOSMesa instead of libGL | 
 | 915 |         GLU_LIB_DEPS="" | 
| Dan Nicholson | 8be02fc | 2008-12-14 09:35:29 -0800 | [diff] [blame] | 916 |         GLU_PC_REQ="osmesa" | 
| Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 917 |         if test "$enable_static" = no; then | 
 | 918 |             GLU_MESA_DEPS='-l$(OSMESA_LIB)' | 
 | 919 |         else | 
 | 920 |             GLU_MESA_DEPS="" | 
 | 921 |         fi | 
| Dan Nicholson | 979ff51 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 922 |         ;; | 
 | 923 |     *) | 
| Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 924 |         # If static, empty GLU_LIB_DEPS and add libs for programs to link | 
| Dan Nicholson | 71e208b | 2008-11-24 11:01:57 -0800 | [diff] [blame] | 925 |         GLU_PC_REQ="gl" | 
 | 926 |         GLU_PC_LIB_PRIV="-lm" | 
| Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 927 |         if test "$enable_static" = no; then | 
 | 928 |             GLU_LIB_DEPS="-lm" | 
 | 929 |             GLU_MESA_DEPS='-l$(GL_LIB)' | 
 | 930 |         else | 
 | 931 |             GLU_LIB_DEPS="" | 
 | 932 |             GLU_MESA_DEPS="" | 
 | 933 |             APP_LIB_DEPS="$APP_LIB_DEPS -lstdc++" | 
 | 934 |         fi | 
| Dan Nicholson | 979ff51 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 935 |         ;; | 
 | 936 |     esac | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 937 | fi | 
| Alan Coopersmith | e1f9adc | 2008-06-20 17:58:53 -0700 | [diff] [blame] | 938 | if test "$enable_static" = no; then | 
 | 939 |     GLU_LIB_DEPS="$GLU_LIB_DEPS $OS_CPLUSPLUS_LIBS" | 
 | 940 | fi | 
| Dan Nicholson | 71e208b | 2008-11-24 11:01:57 -0800 | [diff] [blame] | 941 | GLU_PC_LIB_PRIV="$GLU_PC_LIB_PRIV $OS_CPLUSPLUS_LIBS" | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 942 | AC_SUBST([GLU_LIB_DEPS]) | 
 | 943 | AC_SUBST([GLU_MESA_DEPS]) | 
| Dan Nicholson | 71e208b | 2008-11-24 11:01:57 -0800 | [diff] [blame] | 944 | AC_SUBST([GLU_PC_REQ]) | 
 | 945 | AC_SUBST([GLU_PC_REQ_PRIV]) | 
| Dan Nicholson | 71e208b | 2008-11-24 11:01:57 -0800 | [diff] [blame] | 946 | AC_SUBST([GLU_PC_LIB_PRIV]) | 
 | 947 | AC_SUBST([GLU_PC_CFLAGS]) | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 948 |  | 
 | 949 | dnl | 
 | 950 | dnl GLw configuration | 
 | 951 | dnl | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 952 | AC_ARG_ENABLE([glw], | 
| Dan Nicholson | 79ad458 | 2007-12-07 19:11:01 -0800 | [diff] [blame] | 953 |     [AS_HELP_STRING([--disable-glw], | 
 | 954 |         [enable Xt/Motif widget library @<:@default=enabled@:>@])], | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 955 |     [enable_glw="$enableval"], | 
 | 956 |     [enable_glw=yes]) | 
| Dan Nicholson | 979ff51 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 957 | dnl Don't build GLw on osmesa | 
 | 958 | if test "x$enable_glw" = xyes && test "$mesa_driver" = osmesa; then | 
 | 959 |     AC_MSG_WARN([Disabling GLw since the driver is OSMesa]) | 
 | 960 |     enable_glw=no | 
 | 961 | fi | 
| Dan Nicholson | 776c60d | 2008-07-18 07:40:41 -0700 | [diff] [blame] | 962 | AC_ARG_ENABLE([motif], | 
 | 963 |     [AS_HELP_STRING([--enable-motif], | 
 | 964 |         [use Motif widgets in GLw @<:@default=disabled@:>@])], | 
 | 965 |     [enable_motif="$enableval"], | 
 | 966 |     [enable_motif=no]) | 
 | 967 |  | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 968 | if test "x$enable_glw" = xyes; then | 
 | 969 |     SRC_DIRS="$SRC_DIRS glw" | 
 | 970 |     if test "$x11_pkgconfig" = yes; then | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 971 |         PKG_CHECK_MODULES([GLW],[x11 xt]) | 
| Dan Nicholson | 71e208b | 2008-11-24 11:01:57 -0800 | [diff] [blame] | 972 |         GLW_PC_REQ_PRIV="x11 xt" | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 973 |         GLW_LIB_DEPS="$GLW_LIBS" | 
 | 974 |     else | 
 | 975 |         # should check these... | 
| Dan Nicholson | 776c60d | 2008-07-18 07:40:41 -0700 | [diff] [blame] | 976 |         GLW_LIB_DEPS="$X_LIBS -lXt -lX11" | 
| Dan Nicholson | 71e208b | 2008-11-24 11:01:57 -0800 | [diff] [blame] | 977 |         GLW_PC_LIB_PRIV="$GLW_LIB_DEPS" | 
 | 978 |         GLW_PC_CFLAGS="$X11_INCLUDES" | 
| Dan Nicholson | 776c60d | 2008-07-18 07:40:41 -0700 | [diff] [blame] | 979 |     fi | 
 | 980 |  | 
 | 981 |     GLW_SOURCES="GLwDrawA.c" | 
 | 982 |     MOTIF_CFLAGS= | 
 | 983 |     if test "x$enable_motif" = xyes; then | 
 | 984 |         GLW_SOURCES="$GLW_SOURCES GLwMDrawA.c" | 
 | 985 |         AC_PATH_PROG([MOTIF_CONFIG], [motif-config], [no]) | 
 | 986 |         if test "x$MOTIF_CONFIG" != xno; then | 
 | 987 |             MOTIF_CFLAGS=`$MOTIF_CONFIG --cflags` | 
 | 988 |             MOTIF_LIBS=`$MOTIF_CONFIG --libs` | 
 | 989 |         else | 
 | 990 |             AC_CHECK_HEADER([Xm/PrimitiveP.h], [], | 
 | 991 |                 [AC_MSG_ERROR([Can't locate Motif headers])]) | 
 | 992 |             AC_CHECK_LIB([Xm], [XmGetPixmap], [MOTIF_LIBS="-lXm"], | 
 | 993 |                 [AC_MSG_ERROR([Can't locate Motif Xm library])]) | 
 | 994 |         fi | 
 | 995 |         # MOTIF_LIBS is prepended to GLW_LIB_DEPS since Xm needs Xt/X11 | 
 | 996 |         GLW_LIB_DEPS="$MOTIF_LIBS $GLW_LIB_DEPS" | 
| Dan Nicholson | 71e208b | 2008-11-24 11:01:57 -0800 | [diff] [blame] | 997 |         GLW_PC_LIB_PRIV="$MOTIF_LIBS $GLW_PC_LIB_PRIV" | 
 | 998 |         GLW_PC_CFLAGS="$MOTIF_CFLAGS $GLW_PC_CFLAGS" | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 999 |     fi | 
 | 1000 |  | 
| Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 1001 |     # If static, empty GLW_LIB_DEPS and add libs for programs to link | 
| Alan Coopersmith | 3cf6e62 | 2009-03-23 16:51:54 -0700 | [diff] [blame] | 1002 |     GLW_PC_LIB_PRIV="$GLW_PC_LIB_PRIV" | 
| Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 1003 |     if test "$enable_static" = no; then | 
 | 1004 |         GLW_MESA_DEPS='-l$(GL_LIB)' | 
| Alan Coopersmith | 3cf6e62 | 2009-03-23 16:51:54 -0700 | [diff] [blame] | 1005 |         GLW_LIB_DEPS="$GLW_LIB_DEPS" | 
| Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 1006 |     else | 
 | 1007 |         APP_LIB_DEPS="$APP_LIB_DEPS $GLW_LIB_DEPS" | 
 | 1008 |         GLW_LIB_DEPS="" | 
 | 1009 |         GLW_MESA_DEPS="" | 
 | 1010 |     fi | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 1011 | fi | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 1012 | AC_SUBST([GLW_LIB_DEPS]) | 
 | 1013 | AC_SUBST([GLW_MESA_DEPS]) | 
| Dan Nicholson | 776c60d | 2008-07-18 07:40:41 -0700 | [diff] [blame] | 1014 | AC_SUBST([GLW_SOURCES]) | 
 | 1015 | AC_SUBST([MOTIF_CFLAGS]) | 
| Dan Nicholson | 71e208b | 2008-11-24 11:01:57 -0800 | [diff] [blame] | 1016 | AC_SUBST([GLW_PC_REQ_PRIV]) | 
 | 1017 | AC_SUBST([GLW_PC_LIB_PRIV]) | 
 | 1018 | AC_SUBST([GLW_PC_CFLAGS]) | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 1019 |  | 
 | 1020 | dnl | 
 | 1021 | dnl GLUT configuration | 
 | 1022 | dnl | 
 | 1023 | if test -f "$srcdir/include/GL/glut.h"; then | 
 | 1024 |     default_glut=yes | 
 | 1025 | else | 
 | 1026 |     default_glut=no | 
 | 1027 | fi | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 1028 | AC_ARG_ENABLE([glut], | 
| Dan Nicholson | 79ad458 | 2007-12-07 19:11:01 -0800 | [diff] [blame] | 1029 |     [AS_HELP_STRING([--disable-glut], | 
 | 1030 |         [enable GLUT library @<:@default=enabled if source available@:>@])], | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 1031 |     [enable_glut="$enableval"], | 
 | 1032 |     [enable_glut="$default_glut"]) | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 1033 |  | 
 | 1034 | dnl Can't build glut if GLU not available | 
 | 1035 | if test "x$enable_glu$enable_glut" = xnoyes; then | 
 | 1036 |     AC_MSG_WARN([Disabling glut since GLU is disabled]) | 
 | 1037 |     enable_glut=no | 
 | 1038 | fi | 
| Dan Nicholson | 979ff51 | 2007-12-05 18:47:01 -0800 | [diff] [blame] | 1039 | dnl Don't build glut on osmesa | 
 | 1040 | if test "x$enable_glut" = xyes && test "$mesa_driver" = osmesa; then | 
 | 1041 |     AC_MSG_WARN([Disabling glut since the driver is OSMesa]) | 
 | 1042 |     enable_glut=no | 
 | 1043 | fi | 
 | 1044 |  | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 1045 | if test "x$enable_glut" = xyes; then | 
 | 1046 |     SRC_DIRS="$SRC_DIRS glut/glx" | 
 | 1047 |     GLUT_CFLAGS="" | 
 | 1048 |     if test "x$GCC" = xyes; then | 
 | 1049 |         GLUT_CFLAGS="-fexceptions" | 
 | 1050 |     fi | 
 | 1051 |     if test "$x11_pkgconfig" = yes; then | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 1052 |         PKG_CHECK_MODULES([GLUT],[x11 xmu xi]) | 
| Dan Nicholson | 71e208b | 2008-11-24 11:01:57 -0800 | [diff] [blame] | 1053 |         GLUT_PC_REQ_PRIV="x11 xmu xi" | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 1054 |         GLUT_LIB_DEPS="$GLUT_LIBS" | 
 | 1055 |     else | 
 | 1056 |         # should check these... | 
| Dan Nicholson | 70d0c83 | 2007-12-07 11:12:20 -0800 | [diff] [blame] | 1057 |         GLUT_LIB_DEPS="$X_LIBS -lX11 -lXmu -lXi" | 
| Dan Nicholson | 71e208b | 2008-11-24 11:01:57 -0800 | [diff] [blame] | 1058 |         GLUT_PC_LIB_PRIV="$GLUT_LIB_DEPS" | 
 | 1059 |         GLUT_PC_CFLAGS="$X11_INCLUDES" | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 1060 |     fi | 
| Alan Coopersmith | 3cf6e62 | 2009-03-23 16:51:54 -0700 | [diff] [blame] | 1061 |     GLUT_LIB_DEPS="$GLUT_LIB_DEPS -lm" | 
 | 1062 |     GLUT_PC_LIB_PRIV="$GLUT_PC_LIB_PRIV -lm" | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 1063 |  | 
 | 1064 |     # If glut is available, we can build most programs | 
| Dan Nicholson | 8e4d147 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 1065 |     if test "$with_demos" = yes; then | 
 | 1066 |         PROGRAM_DIRS="$PROGRAM_DIRS demos redbook samples glsl" | 
 | 1067 |     fi | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 1068 |  | 
| Dan Nicholson | 8858633 | 2007-11-15 08:59:57 -0800 | [diff] [blame] | 1069 |     # If static, empty GLUT_LIB_DEPS and add libs for programs to link | 
 | 1070 |     if test "$enable_static" = no; then | 
 | 1071 |         GLUT_MESA_DEPS='-l$(GLU_LIB) -l$(GL_LIB)' | 
 | 1072 |     else | 
 | 1073 |         APP_LIB_DEPS="$APP_LIB_DEPS $GLUT_LIB_DEPS" | 
 | 1074 |         GLUT_LIB_DEPS="" | 
 | 1075 |         GLUT_MESA_DEPS="" | 
 | 1076 |     fi | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 1077 | fi | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 1078 | AC_SUBST([GLUT_LIB_DEPS]) | 
 | 1079 | AC_SUBST([GLUT_MESA_DEPS]) | 
 | 1080 | AC_SUBST([GLUT_CFLAGS]) | 
| Dan Nicholson | 71e208b | 2008-11-24 11:01:57 -0800 | [diff] [blame] | 1081 | AC_SUBST([GLUT_PC_REQ_PRIV]) | 
 | 1082 | AC_SUBST([GLUT_PC_LIB_PRIV]) | 
 | 1083 | AC_SUBST([GLUT_PC_CFLAGS]) | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 1084 |  | 
 | 1085 | dnl | 
 | 1086 | dnl Program library dependencies | 
 | 1087 | dnl    Only libm is added here if necessary as the libraries should | 
 | 1088 | dnl    be pulled in by the linker | 
 | 1089 | dnl | 
 | 1090 | if test "x$APP_LIB_DEPS" = x; then | 
| Alan Coopersmith | e1f9adc | 2008-06-20 17:58:53 -0700 | [diff] [blame] | 1091 |     case "$host_os" in | 
 | 1092 |     solaris*) | 
 | 1093 |         APP_LIB_DEPS="-lX11 -lsocket -lnsl -lm" | 
 | 1094 |         ;; | 
| Jon TURNEY | 7eed6ab | 2009-06-08 16:02:18 +0100 | [diff] [blame] | 1095 |     cygwin*) | 
 | 1096 |         APP_LIB_DEPS="-lX11" | 
 | 1097 |         ;; | 
| Alan Coopersmith | e1f9adc | 2008-06-20 17:58:53 -0700 | [diff] [blame] | 1098 |     *) | 
 | 1099 |         APP_LIB_DEPS="-lm" | 
 | 1100 |         ;; | 
 | 1101 |     esac | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 1102 | fi | 
| Dan Nicholson | 297e16c | 2008-05-05 15:42:53 -0700 | [diff] [blame] | 1103 | AC_SUBST([APP_LIB_DEPS]) | 
 | 1104 | AC_SUBST([PROGRAM_DIRS]) | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 1105 |  | 
| Jakob Bornecrantz | 7e54d7d | 2009-02-11 02:38:21 +0100 | [diff] [blame] | 1106 | dnl | 
 | 1107 | dnl Gallium configuration | 
 | 1108 | dnl | 
 | 1109 | AC_ARG_ENABLE([gallium], | 
 | 1110 |     [AS_HELP_STRING([--disable-gallium], | 
 | 1111 |         [build gallium @<:@default=enabled@:>@])], | 
 | 1112 |     [enable_gallium="$enableval"], | 
 | 1113 |     [enable_gallium=yes]) | 
 | 1114 | if test "x$enable_gallium" = xyes; then | 
 | 1115 |     SRC_DIRS="$SRC_DIRS gallium gallium/winsys" | 
 | 1116 | fi | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 1117 |  | 
| Jakob Bornecrantz | 3ede377 | 2009-02-13 00:57:47 +0100 | [diff] [blame] | 1118 | dnl | 
 | 1119 | dnl Gallium state trackers configuration | 
 | 1120 | dnl | 
 | 1121 | AC_ARG_WITH([state-trackers], | 
 | 1122 |     [AS_HELP_STRING([--with-state-trackers@<:@=DIRS...@:>@], | 
 | 1123 |         [comma delimited state_trackers list, e.g. | 
 | 1124 |         "egl,glx" @<:@default=auto@:>@])], | 
 | 1125 |     [with_state_trackers="$withval"], | 
 | 1126 |     [with_state_trackers=yes]) | 
 | 1127 |  | 
 | 1128 | case "$with_state_trackers" in | 
 | 1129 | no) | 
 | 1130 |     GALLIUM_STATE_TRACKERS_DIRS="" | 
 | 1131 |     ;; | 
 | 1132 | yes) | 
 | 1133 |     # look at what else is built | 
 | 1134 |     case "$mesa_driver" in | 
| Jakob Bornecrantz | 373e671 | 2009-04-18 23:13:56 +0100 | [diff] [blame] | 1135 |     xlib) | 
 | 1136 |         GALLIUM_STATE_TRACKERS_DIRS=glx | 
 | 1137 |         ;; | 
| Jakob Bornecrantz | 3ede377 | 2009-02-13 00:57:47 +0100 | [diff] [blame] | 1138 |     dri) | 
| Dan Nicholson | 66f9786 | 2009-04-29 12:11:43 -0700 | [diff] [blame] | 1139 |         test "x$enable_egl" = xyes && GALLIUM_STATE_TRACKERS_DIRS=egl | 
| Jakob Bornecrantz | 3ede377 | 2009-02-13 00:57:47 +0100 | [diff] [blame] | 1140 |         ;; | 
 | 1141 |     esac | 
 | 1142 |     ;; | 
 | 1143 | *) | 
 | 1144 |     # verify the requested state tracker exist | 
 | 1145 |     state_trackers=`IFS=', '; echo $with_state_trackers` | 
 | 1146 |     for tracker in $state_trackers; do | 
 | 1147 |         test -d "$srcdir/src/gallium/state_trackers/$tracker" || \ | 
 | 1148 |             AC_MSG_ERROR([state tracker '$tracker' doesn't exist]) | 
| Dan Nicholson | 66f9786 | 2009-04-29 12:11:43 -0700 | [diff] [blame] | 1149 |  | 
 | 1150 |         if test "$tracker" = egl && test "x$enable_egl" != xyes; then | 
 | 1151 |             AC_MSG_ERROR([cannot build egl state tracker without EGL library]) | 
 | 1152 |         fi | 
| Jakob Bornecrantz | 3ede377 | 2009-02-13 00:57:47 +0100 | [diff] [blame] | 1153 |     done | 
 | 1154 |     GALLIUM_STATE_TRACKERS_DIRS="$state_trackers" | 
 | 1155 |     ;; | 
 | 1156 | esac | 
 | 1157 |  | 
| Joel Bosveld | 8acca48 | 2009-03-06 08:46:08 +0900 | [diff] [blame] | 1158 | AC_ARG_WITH([xorg-driver-dir], | 
 | 1159 |     [AS_HELP_STRING([--with-xorg-driver-dir=DIR], | 
 | 1160 |                     [Default xorg driver directory[[default=${libdir}/xorg/modules/drivers]]])], | 
 | 1161 |     [XORG_DRIVER_INSTALL_DIR="$withval"], | 
 | 1162 |     [XORG_DRIVER_INSTALL_DIR="${libdir}/xorg/modules/drivers"]) | 
 | 1163 | AC_SUBST([XORG_DRIVER_INSTALL_DIR]) | 
 | 1164 |  | 
| Tom Fogal | 7085dce | 2009-08-13 19:40:30 -0600 | [diff] [blame] | 1165 | AC_ARG_WITH([max-width], | 
 | 1166 |     [AS_HELP_STRING([--with-max-width=N], | 
 | 1167 |                     [Maximum framebuffer width (4096)])], | 
 | 1168 |     [DEFINES="${DEFINES} -DMAX_WIDTH=${withval}"; | 
 | 1169 |      AS_IF([test "${withval}" -gt "4096"], | 
 | 1170 |            [AC_MSG_WARN([Large framebuffer: see s_tritemp.h comments.])])] | 
 | 1171 | ) | 
 | 1172 | AC_ARG_WITH([max-height], | 
 | 1173 |     [AS_HELP_STRING([--with-max-height=N], | 
 | 1174 |                     [Maximum framebuffer height (4096)])], | 
 | 1175 |     [DEFINES="${DEFINES} -DMAX_HEIGHT=${withval}"; | 
 | 1176 |      AS_IF([test "${withval}" -gt "4096"], | 
 | 1177 |            [AC_MSG_WARN([Large framebuffer: see s_tritemp.h comments.])])] | 
 | 1178 | ) | 
 | 1179 |  | 
| Jakob Bornecrantz | 3ede377 | 2009-02-13 00:57:47 +0100 | [diff] [blame] | 1180 | dnl | 
 | 1181 | dnl Gallium Intel configuration | 
 | 1182 | dnl | 
 | 1183 | AC_ARG_ENABLE([gallium-intel], | 
 | 1184 |     [AS_HELP_STRING([--disable-gallium-intel], | 
 | 1185 |         [build gallium intel @<:@default=enabled@:>@])], | 
 | 1186 |     [enable_gallium_intel="$enableval"], | 
 | 1187 |     [enable_gallium_intel=yes]) | 
 | 1188 | if test "x$enable_gallium_intel" = xyes; then | 
 | 1189 |     GALLIUM_WINSYS_DRM_DIRS="$GALLIUM_WINSYS_DRM_DIRS intel" | 
| Jakob Bornecrantz | d67bd60 | 2009-02-20 11:03:18 +0000 | [diff] [blame] | 1190 |     GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS i915simple" | 
| Jakob Bornecrantz | 3ede377 | 2009-02-13 00:57:47 +0100 | [diff] [blame] | 1191 | fi | 
 | 1192 |  | 
 | 1193 | dnl | 
 | 1194 | dnl Gallium Radeon configuration | 
 | 1195 | dnl | 
 | 1196 | AC_ARG_ENABLE([gallium-radeon], | 
 | 1197 |     [AS_HELP_STRING([--enable-gallium-radeon], | 
 | 1198 |         [build gallium radeon @<:@default=disabled@:>@])], | 
 | 1199 |     [enable_gallium_radeon="$enableval"], | 
 | 1200 |     [enable_gallium_radeon=no]) | 
 | 1201 | if test "x$enable_gallium_radeon" = xyes; then | 
 | 1202 |     GALLIUM_WINSYS_DRM_DIRS="$GALLIUM_WINSYS_DRM_DIRS radeon" | 
| Jakob Bornecrantz | d67bd60 | 2009-02-20 11:03:18 +0000 | [diff] [blame] | 1203 |     GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS r300" | 
| Jakob Bornecrantz | 3ede377 | 2009-02-13 00:57:47 +0100 | [diff] [blame] | 1204 | fi | 
 | 1205 |  | 
 | 1206 | dnl | 
| Thierry Vignaud | 1402ea8 | 2009-09-14 11:48:51 -0600 | [diff] [blame] | 1207 | dnl Gallium Nouveau configuration | 
| Jakob Bornecrantz | 3ede377 | 2009-02-13 00:57:47 +0100 | [diff] [blame] | 1208 | dnl | 
 | 1209 | AC_ARG_ENABLE([gallium-nouveau], | 
 | 1210 |     [AS_HELP_STRING([--enable-gallium-nouveau], | 
 | 1211 |         [build gallium nouveau @<:@default=disabled@:>@])], | 
 | 1212 |     [enable_gallium_nouveau="$enableval"], | 
 | 1213 |     [enable_gallium_nouveau=no]) | 
 | 1214 | if test "x$enable_gallium_nouveau" = xyes; then | 
 | 1215 |     GALLIUM_WINSYS_DRM_DIRS="$GALLIUM_WINSYS_DRM_DIRS nouveau" | 
| Ben Skeggs | bc466be | 2009-06-04 10:19:04 +1000 | [diff] [blame] | 1216 |     GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS nouveau nv04 nv10 nv20 nv30 nv40 nv50" | 
| Jakob Bornecrantz | 3ede377 | 2009-02-13 00:57:47 +0100 | [diff] [blame] | 1217 | fi | 
 | 1218 |  | 
 | 1219 |  | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 1220 | dnl Restore LDFLAGS and CPPFLAGS | 
 | 1221 | LDFLAGS="$_SAVE_LDFLAGS" | 
 | 1222 | CPPFLAGS="$_SAVE_CPPFLAGS" | 
 | 1223 |  | 
 | 1224 | dnl Substitute the config | 
| Dan Nicholson | f64d6fe | 2007-12-12 17:57:45 -0800 | [diff] [blame] | 1225 | AC_CONFIG_FILES([configs/autoconf]) | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 1226 |  | 
| Dan Nicholson | aab38cf | 2007-12-11 08:21:51 -0800 | [diff] [blame] | 1227 | dnl Replace the configs/current symlink | 
| Dan Nicholson | e14ebbc | 2008-05-06 11:28:43 -0700 | [diff] [blame] | 1228 | AC_CONFIG_COMMANDS([configs],[ | 
| Dan Nicholson | aab38cf | 2007-12-11 08:21:51 -0800 | [diff] [blame] | 1229 | if test -f configs/current || test -L configs/current; then | 
 | 1230 |     rm -f configs/current | 
 | 1231 | fi | 
 | 1232 | ln -s autoconf configs/current | 
| Dan Nicholson | e14ebbc | 2008-05-06 11:28:43 -0700 | [diff] [blame] | 1233 | ]) | 
 | 1234 |  | 
 | 1235 | AC_OUTPUT | 
| Dan Nicholson | aab38cf | 2007-12-11 08:21:51 -0800 | [diff] [blame] | 1236 |  | 
| Dan Nicholson | 9cad8e3 | 2007-11-30 08:49:57 -0800 | [diff] [blame] | 1237 | dnl | 
 | 1238 | dnl Output some configuration info for the user | 
 | 1239 | dnl | 
 | 1240 | echo "" | 
 | 1241 | echo "        prefix:          $prefix" | 
 | 1242 | echo "        exec_prefix:     $exec_prefix" | 
 | 1243 | echo "        libdir:          $libdir" | 
| Dan Nicholson | 11ac5b2 | 2008-07-03 09:17:44 -0700 | [diff] [blame] | 1244 | echo "        includedir:      $includedir" | 
| Dan Nicholson | 9cad8e3 | 2007-11-30 08:49:57 -0800 | [diff] [blame] | 1245 |  | 
 | 1246 | dnl Driver info | 
 | 1247 | echo "" | 
 | 1248 | echo "        Driver:          $mesa_driver" | 
| Dan Nicholson | 544ab20 | 2007-12-30 08:41:53 -0800 | [diff] [blame] | 1249 | if echo "$DRIVER_DIRS" | grep 'osmesa' >/dev/null 2>&1; then | 
 | 1250 |     echo "        OSMesa:          lib$OSMESA_LIB" | 
 | 1251 | else | 
 | 1252 |     echo "        OSMesa:          no" | 
 | 1253 | fi | 
 | 1254 | if test "$mesa_driver" = dri; then | 
| Dan Nicholson | 9cad8e3 | 2007-11-30 08:49:57 -0800 | [diff] [blame] | 1255 |     # cleanup the drivers var | 
 | 1256 |     dri_dirs=`echo $DRI_DIRS | $SED 's/^ *//;s/  */ /;s/ *$//'` | 
| Florent Thoumie | b5095ab | 2008-07-28 14:44:43 +0100 | [diff] [blame] | 1257 | if test "x$DRI_DIRS" = x; then | 
 | 1258 |     echo "        DRI drivers:     no" | 
 | 1259 | else | 
| Dan Nicholson | 9cad8e3 | 2007-11-30 08:49:57 -0800 | [diff] [blame] | 1260 |     echo "        DRI drivers:     $dri_dirs" | 
| Florent Thoumie | b5095ab | 2008-07-28 14:44:43 +0100 | [diff] [blame] | 1261 | fi | 
| Dan Nicholson | 9cad8e3 | 2007-11-30 08:49:57 -0800 | [diff] [blame] | 1262 |     echo "        DRI driver dir:  $DRI_DRIVER_INSTALL_DIR" | 
| Dan Nicholson | 544ab20 | 2007-12-30 08:41:53 -0800 | [diff] [blame] | 1263 | fi | 
| RALOVICH, Kristóf | 5f19f5c | 2008-11-04 11:53:32 +0100 | [diff] [blame] | 1264 | echo "        Use XCB:         $enable_xcb" | 
| Dan Nicholson | 9cad8e3 | 2007-11-30 08:49:57 -0800 | [diff] [blame] | 1265 |  | 
| Jakob Bornecrantz | 7e54d7d | 2009-02-11 02:38:21 +0100 | [diff] [blame] | 1266 | echo "" | 
 | 1267 | if echo "$SRC_DIRS" | grep 'gallium' >/dev/null 2>&1; then | 
 | 1268 |     echo "        Gallium:         yes" | 
 | 1269 |     echo "        Gallium dirs:    $GALLIUM_DIRS" | 
 | 1270 |     echo "        Winsys dirs:     $GALLIUM_WINSYS_DIRS" | 
| Jakob Bornecrantz | 3ede377 | 2009-02-13 00:57:47 +0100 | [diff] [blame] | 1271 |     echo "        Winsys drm dirs:$GALLIUM_WINSYS_DRM_DIRS" | 
| Jakob Bornecrantz | 7e54d7d | 2009-02-11 02:38:21 +0100 | [diff] [blame] | 1272 |     echo "        Auxiliary dirs:  $GALLIUM_AUXILIARY_DIRS" | 
| Jakob Bornecrantz | d67bd60 | 2009-02-20 11:03:18 +0000 | [diff] [blame] | 1273 |     echo "        Driver dirs:     $GALLIUM_DRIVERS_DIRS" | 
| Jakob Bornecrantz | 7e54d7d | 2009-02-11 02:38:21 +0100 | [diff] [blame] | 1274 |     echo "        Trackers dirs:   $GALLIUM_STATE_TRACKERS_DIRS" | 
 | 1275 | else | 
 | 1276 |     echo "        Gallium:         no" | 
 | 1277 | fi | 
 | 1278 |  | 
| Dan Nicholson | 9cad8e3 | 2007-11-30 08:49:57 -0800 | [diff] [blame] | 1279 | dnl Libraries | 
 | 1280 | echo "" | 
 | 1281 | echo "        Shared libs:     $enable_shared" | 
 | 1282 | echo "        Static libs:     $enable_static" | 
| Dan Nicholson | 66f9786 | 2009-04-29 12:11:43 -0700 | [diff] [blame] | 1283 | echo "        EGL:             $enable_egl" | 
| Dan Nicholson | 9cad8e3 | 2007-11-30 08:49:57 -0800 | [diff] [blame] | 1284 | echo "        GLU:             $enable_glu" | 
| Dan Nicholson | 776c60d | 2008-07-18 07:40:41 -0700 | [diff] [blame] | 1285 | echo "        GLw:             $enable_glw (Motif: $enable_motif)" | 
| Dan Nicholson | 9cad8e3 | 2007-11-30 08:49:57 -0800 | [diff] [blame] | 1286 | echo "        glut:            $enable_glut" | 
 | 1287 |  | 
 | 1288 | dnl Programs | 
 | 1289 | # cleanup the programs var for display | 
 | 1290 | program_dirs=`echo $PROGRAM_DIRS | $SED 's/^ *//;s/  */ /;s/ *$//'` | 
 | 1291 | if test "x$program_dirs" = x; then | 
 | 1292 |     echo "        Demos:           no" | 
 | 1293 | else | 
 | 1294 |     echo "        Demos:           $program_dirs" | 
 | 1295 | fi | 
 | 1296 |  | 
| Dan Nicholson | 16a07fb | 2007-12-12 09:12:15 -0800 | [diff] [blame] | 1297 | dnl Compiler options | 
 | 1298 | # cleanup the CFLAGS/CXXFLAGS/DEFINES vars | 
 | 1299 | cflags=`echo $CFLAGS $OPT_FLAGS $PIC_FLAGS $ARCH_FLAGS | \ | 
 | 1300 |     $SED 's/^ *//;s/  */ /;s/ *$//'` | 
 | 1301 | cxxflags=`echo $CXXFLAGS $OPT_FLAGS $PIC_FLAGS $ARCH_FLAGS | \ | 
 | 1302 |     $SED 's/^ *//;s/  */ /;s/ *$//'` | 
 | 1303 | defines=`echo $DEFINES $ASM_FLAGS | $SED 's/^ *//;s/  */ /;s/ *$//'` | 
 | 1304 | echo "" | 
 | 1305 | echo "        CFLAGS:          $cflags" | 
 | 1306 | echo "        CXXFLAGS:        $cxxflags" | 
 | 1307 | echo "        Macros:          $defines" | 
 | 1308 |  | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 1309 | echo "" | 
| Dan Nicholson | b645942 | 2008-03-24 10:01:50 -0700 | [diff] [blame] | 1310 | echo "        Run '${MAKE-make}' to build Mesa" | 
| Dan Nicholson | dca1b79 | 2007-10-23 09:25:58 -0700 | [diff] [blame] | 1311 | echo "" |