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