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