2007-10-23 09:25:58 -07:00
dnl Process this file with autoconf to create configure.
2008-05-05 15:42:53 -07:00
AC_PREREQ([2.59])
2007-10-23 09:25:58 -07:00
2008-04-30 15:06:00 -07:00
dnl Versioning - scrape the version from configs/default
m4_define([mesa_version],
2010-05-11 12:33:30 -07:00
[m4_esyscmd([${MAKE-make} -s -f bin/version.mk version | tr -d '\n' | tr -d '\r'])])
2009-04-29 06:49:27 -07:00
m4_ifval(mesa_version,,
[m4_fatal([Failed to get the Mesa version from `make -f bin/version.mk version`])])
2007-10-23 09:25:58 -07:00
2008-07-01 08:55:42 -07:00
dnl Tell the user about autoconf.html in the --help output
m4_divert_once([HELP_END], [
See docs/autoconf.html for more details on the options for Mesa.])
2008-04-30 15:06:00 -07:00
AC_INIT([Mesa],[mesa_version],
2007-12-12 17:57:45 -08:00
[https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa])
2008-05-05 15:42:53 -07:00
AC_CONFIG_AUX_DIR([bin])
2007-10-23 09:25:58 -07:00
AC_CANONICAL_HOST
2008-05-05 14:38:22 -07:00
dnl Versions for external dependencies
2011-03-01 18:39:15 +00:00
LIBDRM_REQUIRED=2.4.24
LIBDRM_RADEON_REQUIRED=2.4.24
LIBDRM_INTEL_REQUIRED=2.4.24
2010-02-15 10:44:05 -05:00
DRI2PROTO_REQUIRED=2.1
2010-01-11 17:28:10 -05:00
GLPROTO_REQUIRED=1.4.11
2011-03-01 18:39:15 +00:00
LIBDRM_XORG_REQUIRED=2.4.24
2010-03-11 19:23:15 +00:00
LIBKMS_XORG_REQUIRED=1.0.0
2008-05-05 14:38:22 -07:00
2007-10-23 09:25:58 -07:00
dnl Check for progs
AC_PROG_CPP
AC_PROG_CC
AC_PROG_CXX
2008-05-05 15:42:53 -07:00
AC_CHECK_PROGS([MAKE], [gmake make])
2010-10-25 13:52:58 -07:00
AC_CHECK_PROGS([PYTHON2], [python2 python])
2008-05-05 15:42:53 -07:00
AC_PATH_PROG([MKDEP], [makedepend])
AC_PATH_PROG([SED], [sed])
2007-12-12 08:48:30 -08:00
2010-09-24 10:10:09 +02:00
if test "x$MKDEP" = "x"; then
AC_MSG_ERROR([makedepend is required to build Mesa])
fi
2011-05-18 07:50:21 -06:00
AC_PATH_PROG([FLEX], [flex])
test "x$FLEX" = "x" && AC_MSG_ERROR([flex is needed to build Mesa])
AC_PATH_PROG([BISON], [bison])
test "x$BISON" = "x" && AC_MSG_ERROR([bison is needed to build Mesa])
2009-05-22 09:39:02 -07:00
dnl Our fallback install-sh is a symlink to minstall. Use the existing
dnl configuration in that case.
AC_PROG_INSTALL
test "x$INSTALL" = "x$ac_install_sh" && INSTALL='$(MINSTALL)'
2008-06-30 09:40:30 -07:00
dnl We need a POSIX shell for parts of the build. Assume we have one
dnl in most cases.
2008-06-20 17:58:53 -07:00
case "$host_os" in
solaris*)
# Solaris /bin/sh is too old/non-POSIX compliant
AC_PATH_PROGS(POSIX_SHELL, [ksh93 ksh sh])
2008-06-30 09:40:30 -07:00
SHELL="$POSIX_SHELL"
2008-06-20 17:58:53 -07:00
;;
esac
2010-08-29 20:03:37 -04:00
dnl clang is mostly GCC-compatible, but its version is much lower,
dnl so we have to check for it.
AC_MSG_CHECKING([if compiling with clang])
AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM([], [[
#ifndef __clang__
not clang
#endif
]])],
[CLANG=yes], [CLANG=no])
AC_MSG_RESULT([$CLANG])
2010-03-03 15:59:37 -08:00
dnl If we're using GCC, make sure that it is at least version 3.3.0. Older
dnl versions are explictly not supported.
2010-08-29 20:03:37 -04:00
if test "x$GCC" = xyes -a "x$CLANG" = xno; then
2010-03-03 15:59:37 -08:00
AC_MSG_CHECKING([whether gcc version is sufficient])
major=0
minor=0
GCC_VERSION=`$CC -dumpversion`
if test $? -eq 0; then
major=`echo $GCC_VERSION | cut -d. -f1`
minor=`echo $GCC_VERSION | cut -d. -f1`
fi
if test $major -lt 3 -o $major -eq 3 -a $minor -lt 3 ; then
AC_MSG_RESULT([no])
AC_MSG_ERROR([If using GCC, version 3.3.0 or later is required.])
else
AC_MSG_RESULT([yes])
fi
fi
2008-03-07 11:48:09 -08:00
MKDEP_OPTIONS=-fdepend
2008-02-25 18:50:26 -05:00
dnl Ask gcc where it's keeping its secret headers
if test "x$GCC" = xyes; then
2009-01-30 10:52:09 -08:00
for dir in include include-fixed; do
GCC_INCLUDES=`$CC -print-file-name=$dir`
if test "x$GCC_INCLUDES" != x && \
test "$GCC_INCLUDES" != "$dir" && \
test -d "$GCC_INCLUDES"; then
MKDEP_OPTIONS="$MKDEP_OPTIONS -I$GCC_INCLUDES"
fi
done
2008-02-25 18:50:26 -05:00
fi
2008-05-05 15:42:53 -07:00
AC_SUBST([MKDEP_OPTIONS])
2008-02-25 18:50:26 -05:00
2007-12-12 08:48:30 -08:00
dnl Make sure the pkg-config macros are defined
2009-04-29 06:49:27 -07:00
m4_ifndef([PKG_PROG_PKG_CONFIG],
[m4_fatal([Could not locate the pkg-config autoconf macros.
These are usually located in /usr/share/aclocal/pkg.m4. If your macros
are in a different location, try setting the environment variable
ACLOCAL="aclocal -I/other/macro/dir" before running autoreconf.])])
2007-10-23 09:25:58 -07:00
PKG_PROG_PKG_CONFIG()
dnl LIB_DIR - library basename
LIB_DIR=`echo $libdir | $SED 's%.*/%%'`
2008-05-05 15:42:53 -07:00
AC_SUBST([LIB_DIR])
2007-10-23 09:25:58 -07:00
dnl Cache LDFLAGS so we can add EXTRA_LIB_PATH and restore it later
_SAVE_LDFLAGS="$LDFLAGS"
2008-05-05 15:42:53 -07:00
AC_ARG_VAR([EXTRA_LIB_PATH],[Extra -L paths for the linker])
AC_SUBST([EXTRA_LIB_PATH])
2007-10-23 09:25:58 -07:00
dnl Cache CPPFLAGS so we can add *_INCLUDES and restore it later
_SAVE_CPPFLAGS="$CPPFLAGS"
2008-05-05 15:42:53 -07:00
AC_ARG_VAR([X11_INCLUDES],[Extra -I paths for X11 headers])
AC_SUBST([X11_INCLUDES])
2007-10-23 09:25:58 -07:00
dnl Compiler macros
DEFINES=""
2008-05-05 15:42:53 -07:00
AC_SUBST([DEFINES])
2007-10-23 09:25:58 -07:00
case "$host_os" in
2009-04-23 05:43:22 -07:00
linux*|*-gnu*|gnu*)
2009-01-12 11:10:31 -08:00
DEFINES="$DEFINES -D_GNU_SOURCE -DPTHREADS"
2007-10-23 09:25:58 -07:00
;;
2008-06-20 17:58:53 -07:00
solaris*)
DEFINES="$DEFINES -DPTHREADS -DSVR4"
;;
2010-02-18 12:46:12 -07:00
cygwin*)
DEFINES="$DEFINES -DPTHREADS"
;;
2007-10-23 09:25:58 -07:00
esac
dnl Add flags for gcc and g++
if test "x$GCC" = xyes; then
2010-08-30 14:19:23 -07:00
CFLAGS="$CFLAGS -Wall -Wmissing-prototypes -std=c99"
if test "x$CLANG" = "xno"; then
CFLAGS="$CFLAGS -ffast-math"
fi
2008-01-15 22:52:25 -08:00
2010-01-16 18:34:23 -08:00
# Enable -fvisibility=hidden if using a gcc that supports it
save_CFLAGS="$CFLAGS"
2010-01-21 16:42:58 -08:00
AC_MSG_CHECKING([whether $CC supports -fvisibility=hidden])
2011-02-03 11:19:32 +11:00
VISIBILITY_CFLAGS="-fvisibility=hidden"
CFLAGS="$CFLAGS $VISIBILITY_CFLAGS"
2010-01-16 18:34:23 -08:00
AC_LINK_IFELSE([AC_LANG_PROGRAM()], AC_MSG_RESULT([yes]),
2011-02-03 11:19:32 +11:00
[VISIBILITY_CFLAGS=""; AC_MSG_RESULT([no])]);
# Restore CFLAGS; VISIBILITY_CFLAGS are added to it where needed.
CFLAGS=$save_CFLAGS
2008-01-15 22:52:25 -08:00
# Work around aliasing bugs - developers should comment this out
CFLAGS="$CFLAGS -fno-strict-aliasing"
2007-10-23 09:25:58 -07:00
fi
if test "x$GXX" = xyes; then
CXXFLAGS="$CXXFLAGS -Wall"
2008-01-15 22:52:25 -08:00
2010-09-08 20:34:07 -04:00
# Enable -fvisibility=hidden if using a gcc that supports it
save_CXXFLAGS="$CXXFLAGS"
AC_MSG_CHECKING([whether $CXX supports -fvisibility=hidden])
2011-02-03 11:19:32 +11:00
VISIBILITY_CXXFLAGS="-fvisibility=hidden"
CXXFLAGS="$CXXFLAGS $VISIBILITY_CXXFLAGS"
2010-09-08 20:34:07 -04:00
AC_LINK_IFELSE([AC_LANG_PROGRAM()], AC_MSG_RESULT([yes]),
2011-02-03 11:19:32 +11:00
[VISIBILITY_CXXFLAGS="" ; AC_MSG_RESULT([no])]);
# Restore CXXFLAGS; VISIBILITY_CXXFLAGS are added to it where needed.
CXXFLAGS=$save_CXXFLAGS
2010-09-08 20:34:07 -04:00
2008-01-15 22:52:25 -08:00
# Work around aliasing bugs - developers should comment this out
CXXFLAGS="$CXXFLAGS -fno-strict-aliasing"
2007-10-23 09:25:58 -07:00
fi
2011-02-03 11:19:32 +11:00
AC_SUBST([VISIBILITY_CFLAGS])
AC_SUBST([VISIBILITY_CXXFLAGS])
2007-10-23 09:25:58 -07:00
dnl These should be unnecessary, but let the user set them if they want
2008-05-05 15:42:53 -07:00
AC_ARG_VAR([OPT_FLAGS], [Additional optimization flags for the compiler.
2007-10-23 09:25:58 -07:00
Default is to use CFLAGS.])
2008-05-05 15:42:53 -07:00
AC_ARG_VAR([ARCH_FLAGS], [Additional architecture specific flags for the
2007-10-23 09:25:58 -07:00
compiler. Default is to use CFLAGS.])
2008-05-05 15:42:53 -07:00
AC_SUBST([OPT_FLAGS])
AC_SUBST([ARCH_FLAGS])
2007-10-23 09:25:58 -07:00
2007-12-26 11:12:29 -06:00
dnl
dnl Hacks to enable 32 or 64 bit build
dnl
2008-05-05 15:42:53 -07:00
AC_ARG_ENABLE([32-bit],
2007-12-26 11:12:29 -06:00
[AS_HELP_STRING([--enable-32-bit],
[build 32-bit libraries @<:@default=auto@:>@])],
2008-05-05 15:42:53 -07:00
[enable_32bit="$enableval"],
[enable_32bit=auto]
2007-12-26 11:12:29 -06:00
)
if test "x$enable_32bit" = xyes; then
if test "x$GCC" = xyes; then
CFLAGS="$CFLAGS -m32"
2009-08-31 08:56:33 -07:00
ARCH_FLAGS="$ARCH_FLAGS -m32"
2007-12-26 11:12:29 -06:00
fi
if test "x$GXX" = xyes; then
CXXFLAGS="$CXXFLAGS -m32"
fi
fi
2008-05-05 15:42:53 -07:00
AC_ARG_ENABLE([64-bit],
2007-12-26 11:12:29 -06:00
[AS_HELP_STRING([--enable-64-bit],
[build 64-bit libraries @<:@default=auto@:>@])],
2008-05-05 15:42:53 -07:00
[enable_64bit="$enableval"],
[enable_64bit=auto]
2007-12-26 11:12:29 -06:00
)
if test "x$enable_64bit" = xyes; then
if test "x$GCC" = xyes; then
CFLAGS="$CFLAGS -m64"
fi
if test "x$GXX" = xyes; then
CXXFLAGS="$CXXFLAGS -m64"
fi
fi
2007-11-15 08:59:57 -08:00
dnl
dnl shared/static libraries, mimic libtool options
dnl
2008-05-05 15:42:53 -07:00
AC_ARG_ENABLE([static],
2007-11-15 08:59:57 -08:00
[AS_HELP_STRING([--enable-static],
2007-12-07 19:11:01 -08:00
[build static libraries @<:@default=disabled@:>@])],
2008-05-05 15:42:53 -07:00
[enable_static="$enableval"],
[enable_static=no]
2007-11-15 08:59:57 -08:00
)
case "x$enable_static" in
xyes|xno ) ;;
x ) enable_static=no ;;
* )
AC_MSG_ERROR([Static library option '$enable_static' is not a valid])
;;
esac
2008-05-05 15:42:53 -07:00
AC_ARG_ENABLE([shared],
2007-11-15 08:59:57 -08:00
[AS_HELP_STRING([--disable-shared],
2007-12-07 19:11:01 -08:00
[build shared libraries @<:@default=enabled@:>@])],
2008-05-05 15:42:53 -07:00
[enable_shared="$enableval"],
[enable_shared=yes]
2007-11-15 08:59:57 -08:00
)
case "x$enable_shared" in
xyes|xno ) ;;
x ) enable_shared=yes ;;
* )
AC_MSG_ERROR([Shared library option '$enable_shared' is not a valid])
;;
esac
dnl Can't have static and shared libraries, default to static if user
dnl explicitly requested. If both disabled, set to static since shared
dnl was explicitly requirested.
case "x$enable_static$enable_shared" in
xyesyes )
AC_MSG_WARN([Can't build static and shared libraries, disabling shared])
enable_shared=no
;;
xnono )
AC_MSG_WARN([Can't disable both static and shared libraries, enabling static])
enable_static=yes
;;
esac
dnl
dnl mklib options
dnl
2008-05-05 15:42:53 -07:00
AC_ARG_VAR([MKLIB_OPTIONS],[Options for the Mesa library script, mklib])
2007-11-15 08:59:57 -08:00
if test "$enable_static" = yes; then
MKLIB_OPTIONS="$MKLIB_OPTIONS -static"
fi
2008-05-05 15:42:53 -07:00
AC_SUBST([MKLIB_OPTIONS])
2007-11-15 08:59:57 -08:00
2007-12-12 09:02:31 -08:00
dnl
dnl other compiler options
dnl
2008-05-05 15:42:53 -07:00
AC_ARG_ENABLE([debug],
2007-12-12 09:02:31 -08:00
[AS_HELP_STRING([--enable-debug],
[use debug compiler flags and macros @<:@default=disabled@:>@])],
2008-05-05 15:42:53 -07:00
[enable_debug="$enableval"],
[enable_debug=no]
2007-12-12 09:02:31 -08:00
)
if test "x$enable_debug" = xyes; then
DEFINES="$DEFINES -DDEBUG"
if test "x$GCC" = xyes; then
CFLAGS="$CFLAGS -g"
fi
if test "x$GXX" = xyes; then
CXXFLAGS="$CXXFLAGS -g"
fi
fi
2007-11-15 08:59:57 -08:00
2007-10-23 09:25:58 -07:00
dnl
dnl library names
dnl
2010-07-24 12:05:34 +01:00
LIB_PREFIX_GLOB='lib'
LIB_VERSION_SEPARATOR='.'
2007-11-15 08:59:57 -08:00
if test "$enable_static" = yes; then
2009-02-11 15:16:00 -08:00
LIB_EXTENSION='a'
2007-11-15 08:59:57 -08:00
else
2009-02-09 07:58:38 -07:00
case "$host_os" in
darwin* )
LIB_EXTENSION='dylib' ;;
2009-06-08 16:02:18 +01:00
cygwin* )
2010-07-24 12:05:34 +01:00
dnl prefix can be 'cyg' or 'lib'
LIB_PREFIX_GLOB='???'
LIB_VERSION_SEPARATOR='-'
2009-06-08 16:02:18 +01:00
LIB_EXTENSION='dll' ;;
2009-10-13 10:55:33 -07:00
aix* )
LIB_EXTENSION='a' ;;
2009-02-09 07:58:38 -07:00
* )
LIB_EXTENSION='so' ;;
esac
2009-02-11 15:16:00 -08:00
fi
2009-02-09 07:58:38 -07:00
2011-04-01 01:12:41 +02:00
dnl
dnl potentially-infringing-but-nobody-knows-for-sure stuff
dnl
AC_ARG_ENABLE([texture-float],
[AS_HELP_STRING([--enable-texture-float],
[enable floating-point textures and renderbuffers @<:@default=disabled@:>@])],
[enable_texture_float="$enableval"],
[enable_texture_float=no]
)
if test "x$enable_texture_float" = xyes; then
AC_MSG_WARN([Floating-point textures enabled.])
AC_MSG_WARN([Please consult docs/patents.txt with your lawyer before building Mesa.])
DEFINES="$DEFINES -DTEXTURE_FLOAT_ENABLED"
fi
2009-02-11 15:16:00 -08:00
GL_LIB_NAME='lib$(GL_LIB).'${LIB_EXTENSION}
GLU_LIB_NAME='lib$(GLU_LIB).'${LIB_EXTENSION}
GLUT_LIB_NAME='lib$(GLUT_LIB).'${LIB_EXTENSION}
GLW_LIB_NAME='lib$(GLW_LIB).'${LIB_EXTENSION}
OSMESA_LIB_NAME='lib$(OSMESA_LIB).'${LIB_EXTENSION}
2009-12-21 11:13:18 +08:00
EGL_LIB_NAME='lib$(EGL_LIB).'${LIB_EXTENSION}
2010-03-05 19:01:43 -05:00
GLESv1_CM_LIB_NAME='lib$(GLESv1_CM_LIB).'${LIB_EXTENSION}
GLESv2_LIB_NAME='lib$(GLESv2_LIB).'${LIB_EXTENSION}
2010-05-04 22:43:05 +08:00
VG_LIB_NAME='lib$(VG_LIB).'${LIB_EXTENSION}
2010-12-26 18:02:59 +08:00
GLAPI_LIB_NAME='lib$(GLAPI_LIB).'${LIB_EXTENSION}
2011-02-04 12:24:08 +01:00
WAYLAND_EGL_LIB_NAME='lib$(WAYLAND_EGL_LIB).'${LIB_EXTENSION}
2009-02-11 15:16:00 -08:00
2010-07-24 12:05:34 +01:00
GL_LIB_GLOB=${LIB_PREFIX_GLOB}'$(GL_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
GLU_LIB_GLOB=${LIB_PREFIX_GLOB}'$(GLU_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
GLUT_LIB_GLOB=${LIB_PREFIX_GLOB}'$(GLUT_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
GLW_LIB_GLOB=${LIB_PREFIX_GLOB}'$(GLW_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
OSMESA_LIB_GLOB=${LIB_PREFIX_GLOB}'$(OSMESA_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
EGL_LIB_GLOB=${LIB_PREFIX_GLOB}'$(EGL_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
EGL_LIB_GLOB=${LIB_PREFIX_GLOB}'$(EGL_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
GLESv1_CM_LIB_GLOB=${LIB_PREFIX_GLOB}'$(GLESv1_CM_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
GLESv2_LIB_GLOB=${LIB_PREFIX_GLOB}'$(GLESv2_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
VG_LIB_GLOB=${LIB_PREFIX_GLOB}'$(VG_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
2010-12-26 18:02:59 +08:00
GLAPI_LIB_GLOB=${LIB_PREFIX_GLOB}'$(GLAPI_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
2011-02-04 12:24:08 +01:00
WAYLAND_EGL_LIB_GLOB=${LIB_PREFIX_GLOB}'$(WAYLAND_EGL_LIB)'${LIB_VERSION_SEPARATOR}'*'${LIB_EXTENSION}'*'
2009-02-09 07:58:38 -07:00
2008-05-05 15:42:53 -07:00
AC_SUBST([GL_LIB_NAME])
AC_SUBST([GLU_LIB_NAME])
AC_SUBST([GLUT_LIB_NAME])
AC_SUBST([GLW_LIB_NAME])
AC_SUBST([OSMESA_LIB_NAME])
2009-12-21 11:13:18 +08:00
AC_SUBST([EGL_LIB_NAME])
2010-03-05 19:01:43 -05:00
AC_SUBST([GLESv1_CM_LIB_NAME])
AC_SUBST([GLESv2_LIB_NAME])
2010-05-04 22:43:05 +08:00
AC_SUBST([VG_LIB_NAME])
2010-12-26 18:02:59 +08:00
AC_SUBST([GLAPI_LIB_NAME])
2011-02-04 12:24:08 +01:00
AC_SUBST([WAYLAND_EGL_LIB_NAME])
2007-10-23 09:25:58 -07:00
2009-02-09 07:58:38 -07:00
AC_SUBST([GL_LIB_GLOB])
AC_SUBST([GLU_LIB_GLOB])
AC_SUBST([GLUT_LIB_GLOB])
AC_SUBST([GLW_LIB_GLOB])
AC_SUBST([OSMESA_LIB_GLOB])
2009-12-21 11:13:18 +08:00
AC_SUBST([EGL_LIB_GLOB])
2010-03-05 19:01:43 -05:00
AC_SUBST([GLESv1_CM_LIB_GLOB])
AC_SUBST([GLESv2_LIB_GLOB])
2010-05-04 22:43:05 +08:00
AC_SUBST([VG_LIB_GLOB])
2010-12-26 18:02:59 +08:00
AC_SUBST([GLAPI_LIB_GLOB])
2011-02-04 12:24:08 +01:00
AC_SUBST([WAYLAND_EGL_LIB_GLOB])
2009-02-09 07:58:38 -07:00
2008-06-04 13:00:35 -07:00
dnl
dnl Arch/platform-specific settings
dnl
AC_ARG_ENABLE([asm],
[AS_HELP_STRING([--disable-asm],
[disable assembly usage @<:@default=enabled on supported plaforms@:>@])],
[enable_asm="$enableval"],
[enable_asm=yes]
)
asm_arch=""
ASM_FLAGS=""
2009-02-11 11:04:29 -08:00
MESA_ASM_SOURCES=""
GLAPI_ASM_SOURCES=""
2008-06-04 13:00:35 -07:00
AC_MSG_CHECKING([whether to enable assembly])
test "x$enable_asm" = xno && AC_MSG_RESULT([no])
# disable if cross compiling on x86/x86_64 since we must run gen_matypes
if test "x$enable_asm" = xyes && test "x$cross_compiling" = xyes; then
case "$host_cpu" in
i?86 | x86_64)
enable_asm=no
AC_MSG_RESULT([no, cross compiling])
;;
esac
fi
# check for supported arches
if test "x$enable_asm" = xyes; then
case "$host_cpu" in
i?86)
case "$host_os" in
2011-01-06 07:58:57 -07:00
linux* | *freebsd* | dragonfly* | *netbsd*)
2008-06-04 13:00:35 -07:00
test "x$enable_64bit" = xyes && asm_arch=x86_64 || asm_arch=x86
;;
esac
;;
x86_64)
case "$host_os" in
2011-01-06 07:58:57 -07:00
linux* | *freebsd* | dragonfly* | *netbsd*)
2008-06-04 13:00:35 -07:00
test "x$enable_32bit" = xyes && asm_arch=x86 || asm_arch=x86_64
;;
esac
;;
powerpc)
case "$host_os" in
linux*)
asm_arch=ppc
;;
esac
;;
mesa: Resurrect SPARC asm code.
This rewrites the sparc GLAPI code so that it's PIC friendly and works
with all of the TLS/PTHREADS/64-bit/32-bit combinations properly.
As a result we can turn SPARC asm back on. Currently it's only
enabled on Linux, as that's the only place where I can test this
stuff out.
For the moment the cliptest SPARC asm routines are disabled as they
are non-working. The problem is that they use register %g7 as a
temporary which is where the threading libraries store the thread
pointer on SPARC. I will fix that code up in a future change as it's
a pretty important routine to optimize.
Like x86 we do the runtime patch as a pthread once-invoked initializer
in init_glapi_relocs().
Unlike x86, however, our GLAPI stubs on SPARC are just two instruction
sequences that branch to a trampoline and put the GLAPI offset into a
register. The trampoline is what we run-time patch. The stubs thus
all look like:
glFoo:
ba __glapi_sparc_foo_stub
sethi GLAPI_OFFSET(glFOO) * PTR_SIZE, %g3
This actually makes generate_entrypoint() a lot simpler on SPARC. For
this case in generate_entrypoint() we generate stubs using a 'call'
instead of the 'ba' above to make sure it can reach.
In order to get a proper tail call going here, in the unpatched case,
we do several tricks. To get the current PC, for example, we save the
return address register into a temporary, do a call, save the return
address register written by the call to another temporary, then
restore the original return address register value. This is to
avoid having to allocate a stack frame.
This is necessary for PIC address formation.
This new GLAPI scheme lets us get rid of the ugly SPARC GLAPI hacks in
__glXInitialize() and one_time_init().
Signed-off-by: David S. Miller <davem@davemloft.net>
2009-02-26 05:35:15 -08:00
sparc*)
case "$host_os" in
linux*)
asm_arch=sparc
;;
esac
;;
2008-06-04 13:00:35 -07:00
esac
case "$asm_arch" in
x86)
2009-02-11 10:42:34 -08:00
ASM_FLAGS="-DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_3DNOW_ASM -DUSE_SSE_ASM"
2009-02-11 11:04:29 -08:00
MESA_ASM_SOURCES='$(X86_SOURCES)'
GLAPI_ASM_SOURCES='$(X86_API)'
2008-06-04 13:00:35 -07:00
AC_MSG_RESULT([yes, x86])
;;
x86_64)
ASM_FLAGS="-DUSE_X86_64_ASM"
2009-02-11 11:04:29 -08:00
MESA_ASM_SOURCES='$(X86-64_SOURCES)'
GLAPI_ASM_SOURCES='$(X86-64_API)'
2008-06-04 13:00:35 -07:00
AC_MSG_RESULT([yes, x86_64])
;;
ppc)
ASM_FLAGS="-DUSE_PPC_ASM -DUSE_VMX_ASM"
2009-02-11 11:04:29 -08:00
MESA_ASM_SOURCES='$(PPC_SOURCES)'
2008-06-04 13:00:35 -07:00
AC_MSG_RESULT([yes, ppc])
;;
mesa: Resurrect SPARC asm code.
This rewrites the sparc GLAPI code so that it's PIC friendly and works
with all of the TLS/PTHREADS/64-bit/32-bit combinations properly.
As a result we can turn SPARC asm back on. Currently it's only
enabled on Linux, as that's the only place where I can test this
stuff out.
For the moment the cliptest SPARC asm routines are disabled as they
are non-working. The problem is that they use register %g7 as a
temporary which is where the threading libraries store the thread
pointer on SPARC. I will fix that code up in a future change as it's
a pretty important routine to optimize.
Like x86 we do the runtime patch as a pthread once-invoked initializer
in init_glapi_relocs().
Unlike x86, however, our GLAPI stubs on SPARC are just two instruction
sequences that branch to a trampoline and put the GLAPI offset into a
register. The trampoline is what we run-time patch. The stubs thus
all look like:
glFoo:
ba __glapi_sparc_foo_stub
sethi GLAPI_OFFSET(glFOO) * PTR_SIZE, %g3
This actually makes generate_entrypoint() a lot simpler on SPARC. For
this case in generate_entrypoint() we generate stubs using a 'call'
instead of the 'ba' above to make sure it can reach.
In order to get a proper tail call going here, in the unpatched case,
we do several tricks. To get the current PC, for example, we save the
return address register into a temporary, do a call, save the return
address register written by the call to another temporary, then
restore the original return address register value. This is to
avoid having to allocate a stack frame.
This is necessary for PIC address formation.
This new GLAPI scheme lets us get rid of the ugly SPARC GLAPI hacks in
__glXInitialize() and one_time_init().
Signed-off-by: David S. Miller <davem@davemloft.net>
2009-02-26 05:35:15 -08:00
sparc)
ASM_FLAGS="-DUSE_SPARC_ASM"
MESA_ASM_SOURCES='$(SPARC_SOURCES)'
GLAPI_ASM_SOURCES='$(SPARC_API)'
AC_MSG_RESULT([yes, sparc])
;;
2008-06-04 13:00:35 -07:00
*)
AC_MSG_RESULT([no, platform not supported])
;;
esac
fi
AC_SUBST([ASM_FLAGS])
2009-02-11 11:04:29 -08:00
AC_SUBST([MESA_ASM_SOURCES])
AC_SUBST([GLAPI_ASM_SOURCES])
2008-06-04 13:00:35 -07:00
dnl PIC code macro
MESA_PIC_FLAGS
dnl Check to see if dlopen is in default libraries (like Solaris, which
dnl has it in libc), or if libdl is needed to get it.
AC_CHECK_FUNC([dlopen], [],
[AC_CHECK_LIB([dl], [dlopen], [DLOPEN_LIBS="-ldl"])])
2010-07-16 20:09:29 +08:00
AC_SUBST([DLOPEN_LIBS])
2008-06-04 13:00:35 -07:00
2008-06-04 13:17:06 -07:00
dnl See if posix_memalign is available
AC_CHECK_FUNC([posix_memalign], [DEFINES="$DEFINES -DHAVE_POSIX_MEMALIGN"])
2008-06-04 13:00:35 -07:00
dnl SELinux awareness.
AC_ARG_ENABLE([selinux],
[AS_HELP_STRING([--enable-selinux],
[Build SELinux-aware Mesa @<:@default=disabled@:>@])],
[MESA_SELINUX="$enableval"],
[MESA_SELINUX=no])
if test "x$enable_selinux" = "xyes"; then
AC_CHECK_HEADER([selinux/selinux.h],[],
[AC_MSG_ERROR([SELinux headers not found])])
AC_CHECK_LIB([selinux],[is_selinux_enabled],[],
[AC_MSG_ERROR([SELinux library not found])])
SELINUX_LIBS="-lselinux"
DEFINES="$DEFINES -DMESA_SELINUX"
fi
2010-10-27 16:14:27 +08:00
dnl Determine which APIs to support
AC_ARG_ENABLE([opengl],
[AS_HELP_STRING([--disable-opengl],
[disable support for standard OpenGL API @<:@default=no@:>@])],
[enable_opengl="$enableval"],
[enable_opengl=yes])
AC_ARG_ENABLE([gles1],
[AS_HELP_STRING([--enable-gles1],
[enable support for OpenGL ES 1.x API @<:@default=no@:>@])],
[enable_gles1="$enableval"],
[enable_gles1=no])
AC_ARG_ENABLE([gles2],
[AS_HELP_STRING([--enable-gles2],
[enable support for OpenGL ES 2.x API @<:@default=no@:>@])],
[enable_gles2="$enableval"],
[enable_gles2=no])
AC_ARG_ENABLE([gles-overlay],
[AS_HELP_STRING([--enable-gles-overlay],
2011-01-07 17:24:16 +08:00
[DEPRECATED. Same as --enable-gles1 and --enable-gles2])],
[enable_gles1="$enableval"; enable_gles2="$enableval"],
[])
2010-10-27 16:14:27 +08:00
AC_ARG_ENABLE([openvg],
[AS_HELP_STRING([--enable-openvg],
[enable support for OpenVG API @<:@default=no@:>@])],
[enable_openvg="$enableval"],
[enable_openvg=no])
2010-10-30 14:26:01 +08:00
dnl smooth the transition; should be removed eventually
if test "x$enable_openvg" = xno; then
case "x$with_state_trackers" in
x*vega*)
AC_MSG_WARN([vega state tracker is enabled without --enable-openvg])
enable_openvg=yes
;;
esac
fi
2010-10-27 16:14:27 +08:00
if test "x$enable_opengl" = xno -a \
"x$enable_gles1" = xno -a \
"x$enable_gles2" = xno -a \
"x$enable_openvg" = xno; then
AC_MSG_ERROR([at least one API should be enabled])
fi
API_DEFINES=""
if test "x$enable_opengl" = xno; then
API_DEFINES="$API_DEFINES -DFEATURE_GL=0"
else
API_DEFINES="$API_DEFINES -DFEATURE_GL=1"
fi
if test "x$enable_gles1" = xyes; then
API_DEFINES="$API_DEFINES -DFEATURE_ES1=1"
fi
if test "x$enable_gles2" = xyes; then
API_DEFINES="$API_DEFINES -DFEATURE_ES2=1"
fi
AC_SUBST([API_DEFINES])
2010-12-26 18:24:13 +08:00
AC_ARG_ENABLE([shared-glapi],
[AS_HELP_STRING([--enable-shared-glapi],
[EXPERIMENTAL. Enable shared glapi for OpenGL @<:@default=no@:>@])],
[enable_shared_glapi="$enableval"],
[enable_shared_glapi=no])
SHARED_GLAPI="0"
if test "x$enable_shared_glapi" = xyes; then
SHARED_GLAPI="1"
fi
AC_SUBST([SHARED_GLAPI])
2007-10-23 09:25:58 -07:00
dnl
2007-12-12 17:49:49 -08:00
dnl Driver configuration. Options are xlib, dri and osmesa right now.
2010-02-25 15:49:18 -05:00
dnl More later: fbdev, ...
2007-12-05 18:47:01 -08:00
dnl
2008-04-18 15:03:01 -07:00
default_driver="xlib"
case "$host_os" in
linux*)
case "$host_cpu" in
2009-02-24 20:06:05 -07:00
i*86|x86_64|powerpc*|sparc*) default_driver="dri";;
2008-04-18 15:03:01 -07:00
esac
;;
2011-01-06 07:58:57 -07:00
*freebsd* | dragonfly* | *netbsd*)
2008-04-18 15:03:01 -07:00
case "$host_cpu" in
2009-04-10 11:41:27 -05:00
i*86|x86_64|powerpc*|sparc*) default_driver="dri";;
2008-04-18 15:03:01 -07:00
esac
;;
esac
2010-10-27 16:14:27 +08:00
if test "x$enable_opengl" = xno; then
default_driver="no"
fi
2008-05-05 15:42:53 -07:00
AC_ARG_WITH([driver],
2007-12-05 18:47:01 -08:00
[AS_HELP_STRING([--with-driver=DRIVER],
2008-04-18 15:03:01 -07:00
[driver for Mesa: xlib,dri,osmesa @<:@default=dri when available, or xlib@:>@])],
2008-05-05 15:42:53 -07:00
[mesa_driver="$withval"],
[mesa_driver="$default_driver"])
2007-12-05 18:47:01 -08:00
dnl Check for valid option
case "x$mesa_driver" in
2007-12-12 17:49:49 -08:00
xxlib|xdri|xosmesa)
2010-10-27 16:14:27 +08:00
if test "x$enable_opengl" = xno; then
AC_MSG_ERROR([Driver '$mesa_driver' requires OpenGL enabled])
fi
;;
xno)
2007-12-05 18:47:01 -08:00
;;
*)
AC_MSG_ERROR([Driver '$mesa_driver' is not a valid option])
;;
esac
dnl
dnl Driver specific build directories
2007-10-23 09:25:58 -07:00
dnl
2010-01-05 17:39:05 +08:00
dnl this variable will be prepended to SRC_DIRS and is not exported
2010-10-27 16:14:27 +08:00
CORE_DIRS=""
2010-01-05 17:39:05 +08:00
2010-06-05 13:33:58 +02:00
SRC_DIRS=""
2007-10-23 09:25:58 -07:00
GLU_DIRS="sgi"
2009-02-11 02:38:21 +01:00
GALLIUM_DIRS="auxiliary drivers state_trackers"
2010-03-11 14:43:00 +00:00
GALLIUM_TARGET_DIRS=""
2010-03-16 13:54:18 +00:00
GALLIUM_WINSYS_DIRS="sw"
2011-01-09 21:04:41 -05:00
GALLIUM_DRIVERS_DIRS="softpipe failover galahad trace rbug noop identity"
2009-02-11 02:38:21 +01:00
GALLIUM_STATE_TRACKERS_DIRS=""
2010-12-26 18:24:13 +08:00
# build shared-glapi if enabled for OpenGL or if OpenGL ES is enabled
2011-02-16 13:37:57 +00:00
case "x$enable_shared_glapi$enable_gles1$enable_gles2" in
2010-12-26 18:02:59 +08:00
x*yes*)
CORE_DIRS="$CORE_DIRS mapi/shared-glapi"
;;
esac
2010-10-27 16:14:27 +08:00
# build glapi if OpenGL is enabled
if test "x$enable_opengl" = xyes; then
CORE_DIRS="$CORE_DIRS mapi/glapi"
fi
2011-01-07 17:24:16 +08:00
# build es1api if OpenGL ES 1.x is enabled
if test "x$enable_gles1" = xyes; then
CORE_DIRS="$CORE_DIRS mapi/es1api"
fi
# build es2api if OpenGL ES 2.x is enabled
if test "x$enable_gles2" = xyes; then
CORE_DIRS="$CORE_DIRS mapi/es2api"
fi
2010-10-27 16:14:27 +08:00
# build vgapi if OpenVG is enabled
if test "x$enable_openvg" = xyes; then
CORE_DIRS="$CORE_DIRS mapi/vgapi"
fi
# build glsl and mesa if OpenGL or OpenGL ES is enabled
2011-01-07 17:24:16 +08:00
case "x$enable_opengl$enable_gles1$enable_gles2" in
2010-10-27 16:14:27 +08:00
x*yes*)
CORE_DIRS="$CORE_DIRS glsl mesa"
;;
esac
2007-12-05 18:47:01 -08:00
case "$mesa_driver" in
2007-12-12 17:49:49 -08:00
xlib)
2007-12-05 18:47:01 -08:00
DRIVER_DIRS="x11"
2010-03-16 13:54:18 +00:00
GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/xlib"
2010-03-11 14:43:00 +00:00
GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS libgl-xlib"
2007-12-05 18:47:01 -08:00
;;
dri)
2010-02-09 09:58:36 -05:00
SRC_DIRS="$SRC_DIRS glx"
2009-02-11 02:38:21 +01:00
DRIVER_DIRS="dri"
2010-06-23 03:31:18 +02:00
GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/xlib sw/dri"
2007-12-05 18:47:01 -08:00
;;
2007-12-05 18:47:01 -08:00
osmesa)
DRIVER_DIRS="osmesa"
;;
2010-10-27 16:14:27 +08:00
no)
DRIVER_DRIS=""
;;
2007-12-05 18:47:01 -08:00
esac
2008-05-05 15:42:53 -07:00
AC_SUBST([SRC_DIRS])
AC_SUBST([GLU_DIRS])
AC_SUBST([DRIVER_DIRS])
2009-02-11 02:38:21 +01:00
AC_SUBST([GALLIUM_DIRS])
2010-03-11 14:43:00 +00:00
AC_SUBST([GALLIUM_TARGET_DIRS])
2008-12-18 13:36:07 +01:00
AC_SUBST([GALLIUM_WINSYS_DIRS])
2009-02-20 11:03:18 +00:00
AC_SUBST([GALLIUM_DRIVERS_DIRS])
2009-02-11 02:38:21 +01:00
AC_SUBST([GALLIUM_STATE_TRACKERS_DIRS])
2010-04-22 14:59:29 +10:00
AC_SUBST([MESA_LLVM])
2007-10-23 09:25:58 -07:00
dnl
2008-05-05 15:16:22 -07:00
dnl Find out if X is available. The variable have_x is set if libX11 is
2008-07-01 09:03:15 -07:00
dnl found to mimic AC_PATH_XTRA.
2007-10-23 09:25:58 -07:00
dnl
if test -n "$PKG_CONFIG"; then
AC_MSG_CHECKING([pkg-config files for X11 are available])
2008-05-05 15:16:22 -07:00
PKG_CHECK_EXISTS([x11],[
2007-10-23 09:25:58 -07:00
x11_pkgconfig=yes
have_x=yes
2008-05-05 15:16:22 -07:00
],[
2007-10-23 09:25:58 -07:00
x11_pkgconfig=no
2008-05-05 15:16:22 -07:00
])
AC_MSG_RESULT([$x11_pkgconfig])
2007-10-23 09:25:58 -07:00
else
x11_pkgconfig=no
fi
dnl Use the autoconf macro if no pkg-config files
2010-03-12 18:55:09 -06:00
if test "$x11_pkgconfig" = yes; then
2010-03-15 20:53:56 -07:00
PKG_CHECK_MODULES([X11], [x11])
2010-03-12 18:55:09 -06:00
else
2007-10-23 09:25:58 -07:00
AC_PATH_XTRA
2010-03-15 20:53:56 -07:00
test -z "$X11_CFLAGS" && X11_CFLAGS="$X_CFLAGS"
test -z "$X11_LIBS" && X11_LIBS="$X_LIBS -lX11"
AC_SUBST([X11_CFLAGS])
AC_SUBST([X11_LIBS])
2007-10-23 09:25:58 -07:00
fi
2008-07-01 09:03:15 -07:00
dnl Try to tell the user that the --x-* options are only used when
dnl pkg-config is not available. This must be right after AC_PATH_XTRA.
m4_divert_once([HELP_BEGIN],
[These options are only used when the X libraries cannot be found by the
pkg-config utility.])
2007-12-05 18:47:01 -08:00
dnl We need X for xlib and dri, so bomb now if it's not found
case "$mesa_driver" in
2007-12-12 17:49:49 -08:00
xlib|dri)
2007-12-05 18:47:01 -08:00
if test "$no_x" = yes; then
AC_MSG_ERROR([X11 development libraries needed for $mesa_driver driver])
fi
;;
esac
2008-05-06 10:51:49 -07:00
dnl XCB - this is only used for GLX right now
AC_ARG_ENABLE([xcb],
[AS_HELP_STRING([--enable-xcb],
[use XCB for GLX @<:@default=disabled@:>@])],
[enable_xcb="$enableval"],
[enable_xcb=no])
if test "x$enable_xcb" = xyes; then
DEFINES="$DEFINES -DUSE_XCB"
else
enable_xcb=no
fi
2011-03-14 22:08:21 +00:00
dnl Direct rendering or just indirect rendering
2011-03-14 22:08:22 +00:00
case "$host_os" in
gnu*)
dnl Disable by default on GNU/Hurd
driglx_direct_default="no"
;;
2011-03-14 22:08:23 +00:00
cygwin*)
dnl Disable by default on cygwin
driglx_direct_default="no"
;;
2011-03-14 22:08:22 +00:00
*)
driglx_direct_default="yes"
;;
esac
2011-03-14 22:08:21 +00:00
AC_ARG_ENABLE([driglx-direct],
[AS_HELP_STRING([--disable-driglx-direct],
[enable direct rendering in GLX and EGL for DRI \
2011-03-14 22:08:22 +00:00
@<:@default=auto@:>@])],
2011-03-14 22:08:21 +00:00
[driglx_direct="$enableval"],
2011-03-14 22:08:22 +00:00
[driglx_direct="$driglx_direct_default"])
2011-03-14 22:08:21 +00:00
2007-10-23 09:25:58 -07:00
dnl
2007-12-05 18:47:01 -08:00
dnl libGL configuration per driver
2007-10-23 09:25:58 -07:00
dnl
2007-12-05 18:47:01 -08:00
case "$mesa_driver" in
2007-12-12 17:49:49 -08:00
xlib)
2007-12-05 18:47:01 -08:00
if test "$x11_pkgconfig" = yes; then
2008-05-05 15:42:53 -07:00
PKG_CHECK_MODULES([XLIBGL], [x11 xext])
2008-11-24 11:01:57 -08:00
GL_PC_REQ_PRIV="x11 xext"
2007-12-12 17:49:49 -08:00
X11_INCLUDES="$X11_INCLUDES $XLIBGL_CFLAGS"
GL_LIB_DEPS="$XLIBGL_LIBS"
2007-12-05 18:47:01 -08:00
else
# should check these...
X11_INCLUDES="$X11_INCLUDES $X_CFLAGS"
GL_LIB_DEPS="$X_LIBS -lX11 -lXext"
2008-11-24 11:01:57 -08:00
GL_PC_LIB_PRIV="$GL_LIB_DEPS"
GL_PC_CFLAGS="$X11_INCLUDES"
2007-12-05 18:47:01 -08:00
fi
2011-01-16 16:01:54 -08:00
GL_LIB_DEPS="$GL_LIB_DEPS $SELINUX_LIBS -lm -lpthread"
GL_PC_LIB_PRIV="$GL_PC_LIB_PRIV $SELINUX_LIBS -lm -lpthread"
2007-11-15 08:59:57 -08:00
# if static, move the external libraries to the programs
# and empty the libraries for libGL
if test "$enable_static" = yes; then
APP_LIB_DEPS="$APP_LIB_DEPS $GL_LIB_DEPS"
GL_LIB_DEPS=""
fi
2007-12-05 18:47:01 -08:00
;;
2010-10-27 16:14:27 +08:00
dri|no) # these checks are still desired when there is no mesa_driver
2007-11-15 08:59:57 -08:00
# DRI must be shared, I think
if test "$enable_static" = yes; then
AC_MSG_ERROR([Can't use static libraries for DRI drivers])
fi
2010-01-11 17:28:10 -05:00
PKG_CHECK_MODULES([GLPROTO], [glproto >= $GLPROTO_REQUIRED])
2011-03-14 22:08:21 +00:00
GL_PC_REQ_PRIV="glproto >= $GLPROTO_REQUIRED"
DRI_PC_REQ_PRIV=""
if test x"$driglx_direct" = xyes; then
# Check for libdrm
PKG_CHECK_MODULES([LIBDRM], [libdrm >= $LIBDRM_REQUIRED])
PKG_CHECK_MODULES([DRI2PROTO], [dri2proto >= $DRI2PROTO_REQUIRED])
GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV libdrm >= $LIBDRM_REQUIRED dri2proto >= $DRI2PROTO_REQUIRED"
DRI_PC_REQ_PRIV="libdrm >= $LIBDRM_REQUIRED"
fi
2007-10-23 09:25:58 -07:00
2007-12-05 18:47:01 -08:00
# find the DRI deps for libGL
if test "$x11_pkgconfig" = yes; then
2010-04-21 12:58:54 +01:00
dri_modules="x11 xext xdamage xfixes"
# add xf86vidmode if available
PKG_CHECK_MODULES([XF86VIDMODE], [xxf86vm], HAVE_XF86VIDMODE=yes, HAVE_XF86VIDMODE=no)
if test "$HAVE_XF86VIDMODE" = yes ; then
dri_modules="$dri_modules xxf86vm"
fi
2008-05-06 10:51:49 -07:00
# add xcb modules if necessary
if test "$enable_xcb" = yes; then
dri_modules="$dri_modules x11-xcb xcb-glx"
fi
PKG_CHECK_MODULES([DRIGL], [$dri_modules])
2008-11-24 11:01:57 -08:00
GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV $dri_modules"
2007-12-05 18:47:01 -08:00
X11_INCLUDES="$X11_INCLUDES $DRIGL_CFLAGS"
GL_LIB_DEPS="$DRIGL_LIBS"
else
# should check these...
X11_INCLUDES="$X11_INCLUDES $X_CFLAGS"
GL_LIB_DEPS="$X_LIBS -lX11 -lXext -lXxf86vm -lXdamage -lXfixes"
2008-11-24 11:01:57 -08:00
GL_PC_LIB_PRIV="$GL_LIB_DEPS"
GL_PC_CFLAGS="$X11_INCLUDES"
2008-05-06 10:51:49 -07:00
# XCB can only be used from pkg-config
if test "$enable_xcb" = yes; then
PKG_CHECK_MODULES([XCB],[x11-xcb xcb-glx])
2008-11-24 11:01:57 -08:00
GL_PC_REQ_PRIV="$GL_PC_REQ_PRIV x11-xcb xcb-glx"
2008-05-06 10:51:49 -07:00
X11_INCLUDES="$X11_INCLUDES $XCB_CFLAGS"
GL_LIB_DEPS="$GL_LIB_DEPS $XCB_LIBS"
fi
2007-12-05 18:47:01 -08:00
fi
# need DRM libs, -lpthread, etc.
2009-03-23 16:51:54 -07:00
GL_LIB_DEPS="$GL_LIB_DEPS $LIBDRM_LIBS -lm -lpthread $DLOPEN_LIBS"
GL_PC_LIB_PRIV="-lm -lpthread $DLOPEN_LIBS"
2010-03-05 19:01:43 -05:00
GLESv1_CM_LIB_DEPS="$LIBDRM_LIBS -lm -lpthread $DLOPEN_LIBS"
2010-05-02 09:51:13 -04:00
GLESv1_CM_PC_LIB_PRIV="-lm -lpthread $DLOPEN_LIBS"
2010-03-05 19:01:43 -05:00
GLESv2_LIB_DEPS="$LIBDRM_LIBS -lm -lpthread $DLOPEN_LIBS"
2010-05-02 09:51:13 -04:00
GLESv2_PC_LIB_PRIV="-lm -lpthread $DLOPEN_LIBS"
2007-12-05 18:47:01 -08:00
;;
2007-12-05 18:47:01 -08:00
osmesa)
# No libGL for osmesa
2009-03-23 16:51:54 -07:00
GL_LIB_DEPS=""
2007-12-05 18:47:01 -08:00
;;
2007-12-05 18:47:01 -08:00
esac
2008-05-05 15:42:53 -07:00
AC_SUBST([GL_LIB_DEPS])
2008-11-24 11:01:57 -08:00
AC_SUBST([GL_PC_REQ_PRIV])
AC_SUBST([GL_PC_LIB_PRIV])
AC_SUBST([GL_PC_CFLAGS])
AC_SUBST([DRI_PC_REQ_PRIV])
2010-07-30 12:26:15 +08:00
AC_SUBST([GLESv1_CM_LIB_DEPS])
2010-05-04 14:13:11 -04:00
AC_SUBST([GLESv1_CM_PC_LIB_PRIV])
2010-03-05 19:01:43 -05:00
AC_SUBST([GLESv2_LIB_DEPS])
2010-05-04 14:13:11 -04:00
AC_SUBST([GLESv2_PC_LIB_PRIV])
2010-12-26 18:02:59 +08:00
GLAPI_LIB_DEPS="-lpthread"
AC_SUBST([GLAPI_LIB_DEPS])
2007-10-23 09:25:58 -07:00
2011-02-03 11:19:32 +11:00
dnl Setup default DRI CFLAGS
DRI_CFLAGS='$(CFLAGS)'
DRI_CXXFLAGS='$(CXXFLAGS)'
DRI_LIB_DEPS='$(TOP)/src/mesa/libmesa.a'
MESA_MODULES='$(TOP)/src/mesa/libmesa.a'
AC_ARG_ENABLE([shared-dricore],
[AS_HELP_STRING([--enable-shared-dricore],
[link DRI modules with shared core DRI routines @<:@default=disabled@:>@])],
[enable_dricore="$enableval"],
[enable_dricore=no])
if test "$mesa_driver" = dri ; then
if test "$enable_dricore" = yes ; then
if test "$GCC$GXX" != yesyes ; then
AC_MSG_WARN([Shared dricore requires GCC-compatible rpath handling. Disabling shared dricore])
enable_dricore=no
else
DRICORE_GLSL_LIBS='$(TOP)/$(LIB_DIR)/libglsl.so'
DRICORE_LIBS='$(TOP)/$(LIB_DIR)/libdricore.so'
DRICORE_LIB_DEPS='-L$(TOP)/$(LIB_DIR) -Wl,-R$(DRI_DRIVER_INSTALL_DIR) -lglsl'
DRI_LIB_DEPS='-L$(TOP)/$(LIB_DIR) -Wl,-R$(DRI_DRIVER_INSTALL_DIR) -ldricore -lglsl'
DRI_CFLAGS='$(CFLAGS_NOVISIBILITY) -DUSE_DRICORE'
DRI_CXXFLAGS='$(CXXFLAGS_NOVISIBILITY) -DUSE_DRICORE'
MESA_MODULES='$(DRICORE_LIBS) $(DRICORE_GLSL_LIBS)'
fi
fi
fi
AC_SUBST([DRICORE_LIBS])
AC_SUBST([DRICORE_GLSL_LIBS])
AC_SUBST([DRICORE_LIB_DEPS])
AC_SUBST([DRI_CXXFLAGS])
AC_SUBST([DRI_CFLAGS])
AC_SUBST([MESA_MODULES])
2010-04-21 12:58:54 +01:00
AC_SUBST([HAVE_XF86VIDMODE])
2010-09-26 17:52:58 +02:00
PKG_CHECK_MODULES([LIBDRM_RADEON],
2011-02-06 15:42:55 +01:00
[libdrm_radeon >= $LIBDRM_RADEON_REQUIRED],
2010-09-26 17:52:58 +02:00
HAVE_LIBDRM_RADEON=yes,
HAVE_LIBDRM_RADEON=no)
2007-10-23 09:25:58 -07:00
dnl
dnl More X11 setup
dnl
2007-12-12 17:49:49 -08:00
if test "$mesa_driver" = xlib; then
2007-10-23 09:25:58 -07:00
DEFINES="$DEFINES -DUSE_XSHM"
fi
2007-12-05 18:47:01 -08:00
dnl
2010-12-05 17:58:32 -07:00
dnl TLS detection
2007-12-05 18:47:01 -08:00
dnl
2010-12-05 17:58:32 -07:00
2008-05-05 15:42:53 -07:00
AC_ARG_ENABLE([glx-tls],
2007-12-05 18:47:01 -08:00
[AS_HELP_STRING([--enable-glx-tls],
2007-12-07 19:11:01 -08:00
[enable TLS support in GLX @<:@default=disabled@:>@])],
2008-05-05 15:42:53 -07:00
[GLX_USE_TLS="$enableval"],
[GLX_USE_TLS=no])
2010-12-05 17:58:32 -07:00
AC_SUBST(GLX_TLS, ${GLX_USE_TLS})
2011-02-21 22:32:18 -07:00
AS_IF([test "x$GLX_USE_TLS" = xyes],
[DEFINES="${DEFINES} -DGLX_USE_TLS -DPTHREADS"])
2010-12-05 17:58:32 -07:00
dnl
dnl More DRI setup
dnl
2007-12-05 18:47:01 -08:00
dnl Directory for DRI drivers
2008-05-05 15:42:53 -07:00
AC_ARG_WITH([dri-driverdir],
2007-11-15 08:59:57 -08:00
[AS_HELP_STRING([--with-dri-driverdir=DIR],
2008-05-06 06:21:41 -07:00
[directory for the DRI drivers @<:@${libdir}/dri@:>@])],
2008-05-05 15:42:53 -07:00
[DRI_DRIVER_INSTALL_DIR="$withval"],
2008-05-06 06:21:41 -07:00
[DRI_DRIVER_INSTALL_DIR='${libdir}/dri'])
2008-05-05 15:42:53 -07:00
AC_SUBST([DRI_DRIVER_INSTALL_DIR])
2009-10-28 14:34:14 +08:00
dnl Extra search path for DRI drivers
AC_ARG_WITH([dri-searchpath],
[AS_HELP_STRING([--with-dri-searchpath=DIRS...],
[semicolon delimited DRI driver search directories @<:@${libdir}/dri@:>@])],
[DRI_DRIVER_SEARCH_DIR="$withval"],
[DRI_DRIVER_SEARCH_DIR='${DRI_DRIVER_INSTALL_DIR}'])
AC_SUBST([DRI_DRIVER_SEARCH_DIR])
2007-11-15 08:59:57 -08:00
dnl Which drivers to build - default is chosen by platform
2008-05-05 15:42:53 -07:00
AC_ARG_WITH([dri-drivers],
2007-11-15 08:59:57 -08:00
[AS_HELP_STRING([--with-dri-drivers@<:@=DIRS...@:>@],
2008-06-30 10:28:02 -07:00
[comma delimited DRI drivers list, e.g.
2009-07-10 14:49:46 +02:00
"swrast,i965,radeon" @<:@default=auto@:>@])],
2008-05-05 15:42:53 -07:00
[with_dri_drivers="$withval"],
[with_dri_drivers=yes])
2007-11-15 08:59:57 -08:00
if test "x$with_dri_drivers" = x; then
with_dri_drivers=no
fi
dnl If $with_dri_drivers is yes, directories will be added through
dnl platform checks
DRI_DIRS=""
case "$with_dri_drivers" in
2008-07-28 14:44:43 +01:00
no) ;;
yes)
DRI_DIRS="yes"
;;
2007-11-15 08:59:57 -08:00
*)
# verify the requested driver directories exist
2008-07-06 14:17:39 -07:00
dri_drivers=`IFS=', '; echo $with_dri_drivers`
2007-11-15 08:59:57 -08:00
for driver in $dri_drivers; do
test -d "$srcdir/src/mesa/drivers/dri/$driver" || \
AC_MSG_ERROR([DRI driver directory '$driver' doesn't exist])
done
DRI_DIRS="$dri_drivers"
;;
esac
2007-12-05 18:47:01 -08:00
dnl Set DRI_DIRS, DEFINES and LIB_DEPS
2010-10-27 16:14:27 +08:00
if test "$mesa_driver" = dri -o "$mesa_driver" = no; then
2007-12-05 18:47:01 -08:00
# Platform specific settings and drivers to build
case "$host_os" in
linux*)
DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
if test "x$driglx_direct" = xyes; then
DEFINES="$DEFINES -DGLX_DIRECT_RENDERING"
fi
2008-12-18 13:36:07 +01:00
DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING -DHAVE_ALIAS"
2007-12-05 18:47:01 -08:00
case "$host_cpu" in
x86_64)
2010-02-25 16:12:58 -05:00
# sis is missing because they have not be converted to use
# the new interface. i810 are missing because there is no
# x86-64 system where they could *ever* be used.
2008-07-28 14:44:43 +01:00
if test "x$DRI_DIRS" = "xyes"; then
2009-04-08 15:16:35 -04:00
DRI_DIRS="i915 i965 mach64 mga r128 r200 r300 r600 radeon \
2008-05-11 14:43:40 +03:00
savage tdfx unichrome swrast"
2007-11-15 08:59:57 -08:00
fi
2007-12-05 18:47:01 -08:00
;;
powerpc*)
2007-12-07 11:25:08 -08:00
# Build only the drivers for cards that exist on PowerPC.
# At some point MGA will be added, but not yet.
2008-07-28 14:44:43 +01:00
if test "x$DRI_DIRS" = "xyes"; then
2009-04-08 15:16:35 -04:00
DRI_DIRS="mach64 r128 r200 r300 r600 radeon tdfx swrast"
2007-11-15 08:59:57 -08:00
fi
2007-12-05 18:47:01 -08:00
;;
2008-06-12 12:06:50 +10:00
sparc*)
# Build only the drivers for cards that exist on sparc`
2008-07-28 14:44:43 +01:00
if test "x$DRI_DIRS" = "xyes"; then
2010-02-25 16:12:58 -05:00
DRI_DIRS="mach64 r128 r200 r300 r600 radeon swrast"
2008-06-12 12:06:50 +10:00
fi
;;
2007-12-05 18:47:01 -08:00
esac
;;
2011-01-06 07:58:57 -07:00
freebsd* | dragonfly* | *netbsd*)
2007-12-05 18:47:01 -08:00
DEFINES="$DEFINES -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1"
DEFINES="$DEFINES -DIN_DRI_DRIVER -DHAVE_ALIAS"
DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING"
if test "x$driglx_direct" = xyes; then
DEFINES="$DEFINES -DGLX_DIRECT_RENDERING"
fi
2008-07-28 14:44:43 +01:00
if test "x$DRI_DIRS" = "xyes"; then
2009-04-08 15:16:35 -04:00
DRI_DIRS="i810 i915 i965 mach64 mga r128 r200 r300 r600 radeon tdfx \
2008-05-11 14:43:40 +03:00
unichrome savage sis swrast"
2007-11-15 08:59:57 -08:00
fi
2007-12-05 18:47:01 -08:00
;;
2009-04-23 05:43:22 -07:00
gnu*)
DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING -DHAVE_ALIAS"
;;
2008-06-20 17:58:53 -07:00
solaris*)
DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING"
if test "x$driglx_direct" = xyes; then
DEFINES="$DEFINES -DGLX_DIRECT_RENDERING"
fi
;;
2011-03-14 22:08:23 +00:00
cygwin*)
DEFINES="$DEFINES -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER"
DEFINES="$DEFINES -DGLX_INDIRECT_RENDERING"
if test "x$driglx_direct" = xyes; then
DEFINES="$DEFINES -DGLX_DIRECT_RENDERING"
fi
if test "x$DRI_DIRS" = "xyes"; then
DRI_DIRS="swrast"
fi
;;
2007-12-05 18:47:01 -08:00
esac
2008-02-21 10:17:19 -08:00
# default drivers
2008-07-28 14:44:43 +01:00
if test "x$DRI_DIRS" = "xyes"; then
2009-10-22 12:29:30 -07:00
DRI_DIRS="i810 i915 i965 mach64 mga r128 r200 r300 r600 radeon \
2010-02-25 16:12:58 -05:00
savage sis tdfx unichrome swrast"
2008-02-21 10:17:19 -08:00
fi
2007-12-05 18:47:01 -08:00
DRI_DIRS=`echo "$DRI_DIRS" | $SED 's/ */ /g'`
# Check for expat
2010-10-27 16:14:27 +08:00
if test "$mesa_driver" = dri; then
EXPAT_INCLUDES=""
EXPAT_LIB=-lexpat
AC_ARG_WITH([expat],
[AS_HELP_STRING([--with-expat=DIR],
[expat install directory])],[
EXPAT_INCLUDES="-I$withval/include"
CPPFLAGS="$CPPFLAGS $EXPAT_INCLUDES"
LDFLAGS="$LDFLAGS -L$withval/$LIB_DIR"
EXPAT_LIB="-L$withval/$LIB_DIR -lexpat"
])
AC_CHECK_HEADER([expat.h],[],[AC_MSG_ERROR([Expat required for DRI.])])
AC_CHECK_LIB([expat],[XML_ParserCreate],[],
[AC_MSG_ERROR([Expat required for DRI.])])
fi
2007-12-05 18:47:01 -08:00
2011-02-03 11:19:32 +11:00
# put all the necessary libs together, including possibly libdricore
DRI_LIB_DEPS="$DRI_LIB_DEPS $SELINUX_LIBS $LIBDRM_LIBS $EXPAT_LIB -lm -lpthread $DLOPEN_LIBS"
2007-12-05 18:47:01 -08:00
fi
2008-05-05 15:42:53 -07:00
AC_SUBST([DRI_DIRS])
AC_SUBST([EXPAT_INCLUDES])
AC_SUBST([DRI_LIB_DEPS])
2007-12-05 18:47:01 -08:00
2010-01-01 17:03:33 -05:00
case $DRI_DIRS in
*i915*|*i965*)
2011-01-25 13:25:18 -08:00
PKG_CHECK_MODULES([INTEL], [libdrm_intel >= $LIBDRM_INTEL_REQUIRED])
2010-01-01 17:03:33 -05:00
;;
2010-01-07 10:29:29 -05:00
esac
2010-01-01 17:03:33 -05:00
2010-01-07 10:29:29 -05:00
case $DRI_DIRS in
2010-01-01 17:03:33 -05:00
*radeon*|*r200*|*r300*|*r600*)
2010-09-26 17:52:58 +02:00
if test "x$HAVE_LIBDRM_RADEON" = xyes; then
2010-01-01 17:03:33 -05:00
RADEON_CFLAGS="-DHAVE_LIBDRM_RADEON=1 $LIBDRM_RADEON_CFLAGS"
RADEON_LDFLAGS=$LIBDRM_RADEON_LIBS
fi
;;
esac
AC_SUBST([RADEON_CFLAGS])
AC_SUBST([RADEON_LDFLAGS])
2007-10-23 09:25:58 -07:00
dnl
dnl OSMesa configuration
dnl
2007-12-12 17:49:49 -08:00
if test "$mesa_driver" = xlib; then
2007-12-30 08:41:53 -08:00
default_gl_osmesa=yes
2007-12-05 18:47:01 -08:00
else
2007-12-30 08:41:53 -08:00
default_gl_osmesa=no
2007-12-05 18:47:01 -08:00
fi
2008-05-05 15:42:53 -07:00
AC_ARG_ENABLE([gl-osmesa],
2007-12-30 08:41:53 -08:00
[AS_HELP_STRING([--enable-gl-osmesa],
2010-06-16 09:23:17 -07:00
[enable OSMesa with libGL @<:@default=enabled for xlib driver@:>@])],
2008-05-05 15:42:53 -07:00
[gl_osmesa="$enableval"],
[gl_osmesa="$default_gl_osmesa"])
2007-12-30 08:41:53 -08:00
if test "x$gl_osmesa" = xyes; then
2010-10-27 16:14:27 +08:00
if test "x$enable_opengl" = xno; then
AC_MSG_ERROR([OpenGL is not available for OSMesa driver])
fi
2007-12-30 08:41:53 -08:00
if test "$mesa_driver" = osmesa; then
AC_MSG_ERROR([libGL is not available for OSMesa driver])
2007-12-05 18:47:01 -08:00
else
2007-12-30 08:41:53 -08:00
DRIVER_DIRS="$DRIVER_DIRS osmesa"
2007-12-05 18:47:01 -08:00
fi
2007-12-05 18:47:01 -08:00
fi
2007-12-05 18:47:01 -08:00
2007-12-05 21:04:15 -08:00
dnl Configure the channel bits for OSMesa (libOSMesa, libOSMesa16, ...)
2008-05-05 15:42:53 -07:00
AC_ARG_WITH([osmesa-bits],
2007-12-05 21:04:15 -08:00
[AS_HELP_STRING([--with-osmesa-bits=BITS],
[OSMesa channel bits and library name: 8, 16, 32 @<:@default=8@:>@])],
2008-05-05 15:42:53 -07:00
[osmesa_bits="$withval"],
[osmesa_bits=8])
2007-12-05 21:04:15 -08:00
if test "$mesa_driver" != osmesa && test "x$osmesa_bits" != x8; then
AC_MSG_WARN([Ignoring OSMesa channel bits for non-OSMesa driver])
osmesa_bits=8
fi
case "x$osmesa_bits" in
x8)
OSMESA_LIB=OSMesa
;;
x16|x32)
OSMESA_LIB="OSMesa$osmesa_bits"
DEFINES="$DEFINES -DCHAN_BITS=$osmesa_bits -DDEFAULT_SOFTWARE_DEPTH_BITS=31"
;;
*)
AC_MSG_ERROR([OSMesa bits '$osmesa_bits' is not a valid option])
;;
esac
2008-05-05 15:42:53 -07:00
AC_SUBST([OSMESA_LIB])
2007-12-05 21:04:15 -08:00
2010-06-16 09:23:17 -07:00
case "$DRIVER_DIRS" in
*osmesa*)
2008-06-20 17:58:53 -07:00
# only link libraries with osmesa if shared
2007-11-15 08:59:57 -08:00
if test "$enable_static" = no; then
2011-01-16 16:01:54 -08:00
OSMESA_LIB_DEPS="-lm -lpthread $SELINUX_LIBS $DLOPEN_LIBS"
2007-11-15 08:59:57 -08:00
else
OSMESA_LIB_DEPS=""
fi
2007-12-05 18:47:01 -08:00
OSMESA_MESA_DEPS=""
2011-01-16 16:01:54 -08:00
OSMESA_PC_LIB_PRIV="-lm -lpthread $SELINUX_LIBS $DLOPEN_LIBS"
2007-12-05 18:47:01 -08:00
;;
esac
2008-05-05 15:42:53 -07:00
AC_SUBST([OSMESA_LIB_DEPS])
AC_SUBST([OSMESA_MESA_DEPS])
2008-12-14 09:35:29 -08:00
AC_SUBST([OSMESA_PC_REQ])
AC_SUBST([OSMESA_PC_LIB_PRIV])
2007-10-23 09:25:58 -07:00
2009-02-25 17:45:34 -08:00
dnl
dnl EGL configuration
dnl
2009-04-29 12:11:43 -07:00
AC_ARG_ENABLE([egl],
[AS_HELP_STRING([--disable-egl],
[disable EGL library @<:@default=enabled@:>@])],
[enable_egl="$enableval"],
[enable_egl=yes])
2010-10-27 16:14:27 +08:00
if test "x$enable_egl" = xno; then
if test "x$mesa_driver" = xno; then
AC_MSG_ERROR([cannot disable EGL when there is no mesa driver])
fi
if test "x$enable_openvg" = xyes; then
AC_MSG_ERROR([cannot enable OpenVG without EGL])
fi
fi
2009-04-29 12:11:43 -07:00
if test "x$enable_egl" = xyes; then
SRC_DIRS="$SRC_DIRS egl"
2011-05-16 16:56:43 +03:00
EGL_LIB_DEPS="$DLOPEN_LIBS $SELINUX_LIBS -lpthread"
2009-12-21 11:13:18 +08:00
EGL_DRIVERS_DIRS=""
2010-02-05 10:46:11 +08:00
if test "$enable_static" != yes; then
2009-12-21 11:13:18 +08:00
# build egl_glx when libGL is built
2010-10-27 16:14:27 +08:00
if test "$mesa_driver" = xlib -o "$mesa_driver" = dri; then
2010-02-05 10:46:11 +08:00
EGL_DRIVERS_DIRS="glx"
fi
2009-04-29 12:11:43 -07:00
2011-04-30 11:18:23 +02:00
PKG_CHECK_MODULES([LIBUDEV], [libudev > 150],
[have_libudev=yes],[have_libudev=no])
2010-07-16 19:48:52 +08:00
if test "$mesa_driver" = dri; then
# build egl_dri2 when xcb-dri2 is available
PKG_CHECK_MODULES([XCB_DRI2], [x11-xcb xcb-dri2 xcb-xfixes],
[have_xcb_dri2=yes],[have_xcb_dri2=no])
if test "$have_xcb_dri2" = yes; then
EGL_DRIVER_DRI2=dri2
DEFINES="$DEFINES -DHAVE_XCB_DRI2"
if test "$have_libudev" = yes; then
DEFINES="$DEFINES -DHAVE_LIBUDEV"
fi
2011-03-02 21:23:04 +01:00
# workaround a bug in xcb-dri2 generated by xcb-proto 1.6
AC_CHECK_LIB(xcb-dri2, xcb_dri2_connect_alignment_pad, [],
[DEFINES="$DEFINES -DXCB_DRI2_CONNECT_DEVICE_NAME_BROKEN"])
2010-07-16 19:48:52 +08:00
fi
fi
2010-02-09 15:54:59 -05:00
2010-06-02 22:48:06 -04:00
EGL_DRIVERS_DIRS="$EGL_DRIVERS_DIRS $EGL_DRIVER_DRI2"
2009-04-29 12:11:43 -07:00
fi
2009-02-25 17:45:34 -08:00
fi
AC_SUBST([EGL_LIB_DEPS])
2009-12-21 11:13:18 +08:00
AC_SUBST([EGL_DRIVERS_DIRS])
2009-02-25 17:45:34 -08:00
2007-10-23 09:25:58 -07:00
dnl
dnl GLU configuration
dnl
2008-05-05 15:42:53 -07:00
AC_ARG_ENABLE([glu],
2007-12-07 19:11:01 -08:00
[AS_HELP_STRING([--disable-glu],
[enable OpenGL Utility library @<:@default=enabled@:>@])],
2008-05-05 15:42:53 -07:00
[enable_glu="$enableval"],
[enable_glu=yes])
2010-10-27 16:14:27 +08:00
if test "x$enable_glu" = xyes -a "x$mesa_driver" = xno; then
AC_MSG_NOTICE([Disabling GLU since there is no OpenGL driver])
enable_glu=no
fi
2007-10-23 09:25:58 -07:00
if test "x$enable_glu" = xyes; then
SRC_DIRS="$SRC_DIRS glu"
2007-12-05 18:47:01 -08:00
case "$mesa_driver" in
osmesa)
# Link libGLU to libOSMesa instead of libGL
GLU_LIB_DEPS=""
2008-12-14 09:35:29 -08:00
GLU_PC_REQ="osmesa"
2007-11-15 08:59:57 -08:00
if test "$enable_static" = no; then
GLU_MESA_DEPS='-l$(OSMESA_LIB)'
else
GLU_MESA_DEPS=""
fi
2007-12-05 18:47:01 -08:00
;;
*)
2007-11-15 08:59:57 -08:00
# If static, empty GLU_LIB_DEPS and add libs for programs to link
2008-11-24 11:01:57 -08:00
GLU_PC_REQ="gl"
GLU_PC_LIB_PRIV="-lm"
2007-11-15 08:59:57 -08:00
if test "$enable_static" = no; then
GLU_LIB_DEPS="-lm"
GLU_MESA_DEPS='-l$(GL_LIB)'
else
GLU_LIB_DEPS=""
GLU_MESA_DEPS=""
APP_LIB_DEPS="$APP_LIB_DEPS -lstdc++"
fi
2007-12-05 18:47:01 -08:00
;;
esac
2007-10-23 09:25:58 -07:00
fi
2008-06-20 17:58:53 -07:00
if test "$enable_static" = no; then
GLU_LIB_DEPS="$GLU_LIB_DEPS $OS_CPLUSPLUS_LIBS"
fi
2008-11-24 11:01:57 -08:00
GLU_PC_LIB_PRIV="$GLU_PC_LIB_PRIV $OS_CPLUSPLUS_LIBS"
2008-05-05 15:42:53 -07:00
AC_SUBST([GLU_LIB_DEPS])
AC_SUBST([GLU_MESA_DEPS])
2008-11-24 11:01:57 -08:00
AC_SUBST([GLU_PC_REQ])
AC_SUBST([GLU_PC_REQ_PRIV])
AC_SUBST([GLU_PC_LIB_PRIV])
AC_SUBST([GLU_PC_CFLAGS])
2007-10-23 09:25:58 -07:00
dnl
dnl GLw configuration
dnl
2008-05-05 15:42:53 -07:00
AC_ARG_ENABLE([glw],
2007-12-07 19:11:01 -08:00
[AS_HELP_STRING([--disable-glw],
[enable Xt/Motif widget library @<:@default=enabled@:>@])],
2008-05-05 15:42:53 -07:00
[enable_glw="$enableval"],
[enable_glw=yes])
2007-12-05 18:47:01 -08:00
dnl Don't build GLw on osmesa
2010-10-27 16:14:27 +08:00
if test "x$enable_glw" = xyes; then
case "$mesa_driver" in
osmesa|no)
AC_MSG_NOTICE([Disabling GLw since there is no OpenGL driver])
enable_glw=no
;;
esac
2007-12-05 18:47:01 -08:00
fi
2008-07-18 07:40:41 -07:00
AC_ARG_ENABLE([motif],
[AS_HELP_STRING([--enable-motif],
[use Motif widgets in GLw @<:@default=disabled@:>@])],
[enable_motif="$enableval"],
[enable_motif=no])
2007-10-23 09:25:58 -07:00
if test "x$enable_glw" = xyes; then
SRC_DIRS="$SRC_DIRS glw"
if test "$x11_pkgconfig" = yes; then
2008-05-05 15:42:53 -07:00
PKG_CHECK_MODULES([GLW],[x11 xt])
2008-11-24 11:01:57 -08:00
GLW_PC_REQ_PRIV="x11 xt"
2007-10-23 09:25:58 -07:00
GLW_LIB_DEPS="$GLW_LIBS"
else
# should check these...
2008-07-18 07:40:41 -07:00
GLW_LIB_DEPS="$X_LIBS -lXt -lX11"
2008-11-24 11:01:57 -08:00
GLW_PC_LIB_PRIV="$GLW_LIB_DEPS"
GLW_PC_CFLAGS="$X11_INCLUDES"
2008-07-18 07:40:41 -07:00
fi
GLW_SOURCES="GLwDrawA.c"
MOTIF_CFLAGS=
if test "x$enable_motif" = xyes; then
GLW_SOURCES="$GLW_SOURCES GLwMDrawA.c"
AC_PATH_PROG([MOTIF_CONFIG], [motif-config], [no])
if test "x$MOTIF_CONFIG" != xno; then
MOTIF_CFLAGS=`$MOTIF_CONFIG --cflags`
MOTIF_LIBS=`$MOTIF_CONFIG --libs`
else
AC_CHECK_HEADER([Xm/PrimitiveP.h], [],
[AC_MSG_ERROR([Can't locate Motif headers])])
AC_CHECK_LIB([Xm], [XmGetPixmap], [MOTIF_LIBS="-lXm"],
[AC_MSG_ERROR([Can't locate Motif Xm library])])
fi
# MOTIF_LIBS is prepended to GLW_LIB_DEPS since Xm needs Xt/X11
GLW_LIB_DEPS="$MOTIF_LIBS $GLW_LIB_DEPS"
2008-11-24 11:01:57 -08:00
GLW_PC_LIB_PRIV="$MOTIF_LIBS $GLW_PC_LIB_PRIV"
GLW_PC_CFLAGS="$MOTIF_CFLAGS $GLW_PC_CFLAGS"
2007-10-23 09:25:58 -07:00
fi
2007-11-15 08:59:57 -08:00
# If static, empty GLW_LIB_DEPS and add libs for programs to link
2009-03-23 16:51:54 -07:00
GLW_PC_LIB_PRIV="$GLW_PC_LIB_PRIV"
2007-11-15 08:59:57 -08:00
if test "$enable_static" = no; then
GLW_MESA_DEPS='-l$(GL_LIB)'
2009-03-23 16:51:54 -07:00
GLW_LIB_DEPS="$GLW_LIB_DEPS"
2007-11-15 08:59:57 -08:00
else
APP_LIB_DEPS="$APP_LIB_DEPS $GLW_LIB_DEPS"
GLW_LIB_DEPS=""
GLW_MESA_DEPS=""
fi
2007-10-23 09:25:58 -07:00
fi
2008-05-05 15:42:53 -07:00
AC_SUBST([GLW_LIB_DEPS])
AC_SUBST([GLW_MESA_DEPS])
2008-07-18 07:40:41 -07:00
AC_SUBST([GLW_SOURCES])
AC_SUBST([MOTIF_CFLAGS])
2008-11-24 11:01:57 -08:00
AC_SUBST([GLW_PC_REQ_PRIV])
AC_SUBST([GLW_PC_LIB_PRIV])
AC_SUBST([GLW_PC_CFLAGS])
2007-10-23 09:25:58 -07:00
dnl
dnl GLUT configuration
dnl
if test -f "$srcdir/include/GL/glut.h"; then
default_glut=yes
else
default_glut=no
fi
2008-05-05 15:42:53 -07:00
AC_ARG_ENABLE([glut],
2007-12-07 19:11:01 -08:00
[AS_HELP_STRING([--disable-glut],
[enable GLUT library @<:@default=enabled if source available@:>@])],
2008-05-05 15:42:53 -07:00
[enable_glut="$enableval"],
[enable_glut="$default_glut"])
2007-10-23 09:25:58 -07:00
2010-10-27 16:14:27 +08:00
dnl Don't build glut on osmesa
if test "x$enable_glut" = xyes; then
case "$mesa_driver" in
osmesa|no)
AC_MSG_NOTICE([Disabling glut since there is no OpenGL driver])
enable_glut=no
;;
esac
fi
2007-10-23 09:25:58 -07:00
dnl Can't build glut if GLU not available
if test "x$enable_glu$enable_glut" = xnoyes; then
AC_MSG_WARN([Disabling glut since GLU is disabled])
enable_glut=no
fi
2007-12-05 18:47:01 -08:00
2007-10-23 09:25:58 -07:00
if test "x$enable_glut" = xyes; then
SRC_DIRS="$SRC_DIRS glut/glx"
if test "$x11_pkgconfig" = yes; then
2008-05-05 15:42:53 -07:00
PKG_CHECK_MODULES([GLUT],[x11 xmu xi])
2008-11-24 11:01:57 -08:00
GLUT_PC_REQ_PRIV="x11 xmu xi"
2007-10-23 09:25:58 -07:00
GLUT_LIB_DEPS="$GLUT_LIBS"
else
# should check these...
2007-12-07 11:12:20 -08:00
GLUT_LIB_DEPS="$X_LIBS -lX11 -lXmu -lXi"
2008-11-24 11:01:57 -08:00
GLUT_PC_LIB_PRIV="$GLUT_LIB_DEPS"
GLUT_PC_CFLAGS="$X11_INCLUDES"
2007-10-23 09:25:58 -07:00
fi
2010-07-01 12:53:28 -07:00
if test "x$GCC" = xyes; then
GLUT_CFLAGS="$GLUT_CFLAGS -fexceptions"
fi
2009-03-23 16:51:54 -07:00
GLUT_LIB_DEPS="$GLUT_LIB_DEPS -lm"
GLUT_PC_LIB_PRIV="$GLUT_PC_LIB_PRIV -lm"
2007-10-23 09:25:58 -07:00
2007-11-15 08:59:57 -08:00
# If static, empty GLUT_LIB_DEPS and add libs for programs to link
if test "$enable_static" = no; then
GLUT_MESA_DEPS='-l$(GLU_LIB) -l$(GL_LIB)'
else
APP_LIB_DEPS="$APP_LIB_DEPS $GLUT_LIB_DEPS"
GLUT_LIB_DEPS=""
GLUT_MESA_DEPS=""
fi
2007-10-23 09:25:58 -07:00
fi
2008-05-05 15:42:53 -07:00
AC_SUBST([GLUT_LIB_DEPS])
AC_SUBST([GLUT_MESA_DEPS])
AC_SUBST([GLUT_CFLAGS])
2008-11-24 11:01:57 -08:00
AC_SUBST([GLUT_PC_REQ_PRIV])
AC_SUBST([GLUT_PC_LIB_PRIV])
AC_SUBST([GLUT_PC_CFLAGS])
2007-10-23 09:25:58 -07:00
dnl
dnl Program library dependencies
dnl Only libm is added here if necessary as the libraries should
dnl be pulled in by the linker
dnl
if test "x$APP_LIB_DEPS" = x; then
2008-06-20 17:58:53 -07:00
case "$host_os" in
solaris*)
APP_LIB_DEPS="-lX11 -lsocket -lnsl -lm"
;;
2009-06-08 16:02:18 +01:00
cygwin*)
APP_LIB_DEPS="-lX11"
;;
2008-06-20 17:58:53 -07:00
*)
APP_LIB_DEPS="-lm"
;;
esac
2007-10-23 09:25:58 -07:00
fi
2008-05-05 15:42:53 -07:00
AC_SUBST([APP_LIB_DEPS])
AC_SUBST([PROGRAM_DIRS])
2007-10-23 09:25:58 -07:00
2009-02-11 02:38:21 +01:00
dnl
dnl Gallium configuration
dnl
AC_ARG_ENABLE([gallium],
[AS_HELP_STRING([--disable-gallium],
[build gallium @<:@default=enabled@:>@])],
[enable_gallium="$enableval"],
[enable_gallium=yes])
2010-10-27 16:14:27 +08:00
if test "x$enable_gallium" = xno -a "x$enable_openvg" = xyes; then
AC_MSG_ERROR([cannot enable OpenVG without Gallium])
fi
2009-02-11 02:38:21 +01:00
if test "x$enable_gallium" = xyes; then
2010-03-23 13:23:26 +00:00
SRC_DIRS="$SRC_DIRS gallium gallium/winsys gallium/targets"
2010-04-22 14:59:29 +10:00
AC_PATH_PROG([LLVM_CONFIG], [llvm-config], [no])
2009-02-11 02:38:21 +01:00
fi
2007-10-23 09:25:58 -07:00
2010-04-22 14:59:29 +10:00
AC_SUBST([LLVM_CFLAGS])
AC_SUBST([LLVM_LIBS])
AC_SUBST([LLVM_LDFLAGS])
AC_SUBST([LLVM_VERSION])
2009-02-13 00:57:47 +01:00
dnl
dnl Gallium state trackers configuration
dnl
2010-11-02 02:00:36 +08:00
AC_ARG_ENABLE([gallium-egl],
[AS_HELP_STRING([--enable-gallium-egl],
[enable gallium EGL state tracker @<:@default=auto@:>@])],
[enable_gallium_egl="$enableval"],
[enable_gallium_egl=auto])
if test "x$enable_gallium_egl" = xauto; then
case "$mesa_driver" in
dri|no)
enable_gallium_egl=$enable_egl
;;
*)
2011-01-04 01:05:22 +08:00
enable_gallium_egl=$enable_openvg
2010-11-02 02:00:36 +08:00
;;
esac
fi
case "x$enable_egl$enable_gallium_egl" in
xnoyes)
AC_MSG_ERROR([cannot build Gallium EGL state tracker without EGL])
esac
2009-02-13 00:57:47 +01:00
AC_ARG_WITH([state-trackers],
[AS_HELP_STRING([--with-state-trackers@<:@=DIRS...@:>@],
[comma delimited state_trackers list, e.g.
"egl,glx" @<:@default=auto@:>@])],
[with_state_trackers="$withval"],
[with_state_trackers=yes])
case "$with_state_trackers" in
no)
GALLIUM_STATE_TRACKERS_DIRS=""
;;
yes)
# look at what else is built
case "$mesa_driver" in
2009-04-18 23:13:56 +01:00
xlib)
GALLIUM_STATE_TRACKERS_DIRS=glx
;;
2009-02-13 00:57:47 +01:00
dri)
2009-12-04 18:50:29 +00:00
GALLIUM_STATE_TRACKERS_DIRS="dri"
2010-03-25 22:21:39 +01:00
HAVE_ST_DRI="yes"
2009-12-04 18:50:29 +00:00
# Have only tested st/xorg on 1.6.0 servers
2010-03-11 19:23:15 +00:00
PKG_CHECK_MODULES(XORG, [xorg-server >= 1.6.0 libdrm >= $LIBDRM_XORG_REQUIRED libkms >= $LIBKMS_XORG_REQUIRED],
2010-03-25 22:21:39 +01:00
HAVE_ST_XORG="yes"; GALLIUM_STATE_TRACKERS_DIRS="$GALLIUM_STATE_TRACKERS_DIRS xorg",
HAVE_ST_XORG="no")
2009-02-13 00:57:47 +01:00
;;
esac
2010-10-27 16:14:27 +08:00
if test "x$enable_egl" = xyes; then
if test "$enable_openvg" = yes; then
GALLIUM_STATE_TRACKERS_DIRS="$GALLIUM_STATE_TRACKERS_DIRS vega"
st_egl="yes"
fi
2010-11-02 02:00:36 +08:00
if test "$enable_gallium_egl" = yes; then
2010-10-27 16:14:27 +08:00
GALLIUM_STATE_TRACKERS_DIRS="$GALLIUM_STATE_TRACKERS_DIRS egl"
HAVE_ST_EGL="yes"
fi
fi
2009-02-13 00:57:47 +01:00
;;
*)
# verify the requested state tracker exist
2010-05-05 15:38:02 +08:00
state_trackers=""
_state_trackers=`IFS=', '; echo $with_state_trackers`
for tracker in $_state_trackers; do
2009-12-23 11:18:00 +08:00
case "$tracker" in
2010-03-25 22:21:39 +01:00
dri)
if test "x$mesa_driver" != xdri; then
AC_MSG_ERROR([cannot build dri state tracker without mesa driver set to dri])
fi
HAVE_ST_DRI="yes"
;;
2010-01-22 16:31:43 +08:00
egl)
2009-12-23 11:18:00 +08:00
if test "x$enable_egl" != xyes; then
2010-01-22 16:31:43 +08:00
AC_MSG_ERROR([cannot build egl state tracker without EGL library])
2009-12-23 11:18:00 +08:00
fi
2010-03-25 22:21:39 +01:00
HAVE_ST_EGL="yes"
2009-12-23 11:18:00 +08:00
;;
xorg)
2010-07-13 07:40:47 -07:00
PKG_CHECK_MODULES([XORG], [xorg-server >= 1.6.0])
2010-03-11 19:23:15 +00:00
PKG_CHECK_MODULES([LIBDRM_XORG], [libdrm >= $LIBDRM_XORG_REQUIRED])
PKG_CHECK_MODULES([LIBKMS_XORG], [libkms >= $LIBKMS_XORG_REQUIRED])
2010-03-25 22:21:39 +01:00
HAVE_ST_XORG="yes"
2009-12-23 11:18:00 +08:00
;;
2010-04-16 18:12:37 +08:00
vega)
2010-10-30 14:26:01 +08:00
if test "x$enable_openvg" != xyes; then
AC_MSG_ERROR([cannot build vega state tracker without --enable-openvg])
fi
2011-01-20 14:19:13 +08:00
have_st_vega="yes"
2009-12-23 11:18:00 +08:00
;;
2010-07-14 00:34:56 +02:00
xorg/xvmc)
# Check for xvmc?
2010-05-29 19:22:14 -04:00
if test "x$enable_gallium_g3dvl" != xyes; then
AC_MSG_ERROR([cannot build XvMC state tracker without --enable-gallium-g3dvl])
fi
HAVE_ST_XVMC="yes"
;;
2010-07-14 00:34:56 +02:00
vdpau)
# Check for libvdpau?
if test "x$enable_gallium_g3dvl" != xyes; then
AC_MSG_ERROR([cannot build vdpau state tracker without --enable-gallium-g3dvl])
fi
HAVE_ST_VDPAU="yes"
;;
2010-10-24 19:27:29 +02:00
va)
# Check for libva?
if test "x$enable_gallium_g3dvl" != xyes; then
AC_MSG_ERROR([cannot build va state tracker without --enable-gallium-g3dvl])
fi
HAVE_ST_VA="yes"
;;
2009-12-23 11:18:00 +08:00
esac
2010-05-05 15:38:02 +08:00
if test -n "$tracker"; then
test -d "$srcdir/src/gallium/state_trackers/$tracker" || \
AC_MSG_ERROR([state tracker '$tracker' doesn't exist])
if test -n "$state_trackers"; then
state_trackers="$state_trackers $tracker"
else
state_trackers="$tracker"
fi
fi
2009-02-13 00:57:47 +01:00
done
GALLIUM_STATE_TRACKERS_DIRS="$state_trackers"
2011-01-20 14:19:13 +08:00
# append --enable-openvg/--enable-gallium-egl to --with-state-trackers
if test "x$have_st_vega" != xyes -a "x$enable_openvg" = xyes; then
AC_MSG_ERROR([--with-state-trackers specified but vega is missing])
fi
if test "x$HAVE_ST_EGL" != xyes -a "x$enable_gallium_egl" = xyes; then
AC_MSG_ERROR([--with-state-trackers specified but egl is missing])
fi
2009-02-13 00:57:47 +01:00
;;
esac
2010-10-27 16:14:27 +08:00
EGL_CLIENT_APIS=""
VG_LIB_DEPS=""
case "x$enable_opengl$enable_gles1$enable_gles2" in
x*yes*)
EGL_CLIENT_APIS="$EGL_CLIENT_APIS "'$(GL_LIB)'
;;
esac
if test "x$enable_openvg" = xyes; then
EGL_CLIENT_APIS="$EGL_CLIENT_APIS "'$(VG_LIB)'
2011-05-16 16:56:43 +03:00
VG_LIB_DEPS="$VG_LIB_DEPS $SELINUX_LIBS -lpthread"
2010-10-27 16:14:27 +08:00
fi
2010-05-04 22:43:05 +08:00
AC_SUBST([VG_LIB_DEPS])
2010-05-05 15:38:02 +08:00
AC_SUBST([EGL_CLIENT_APIS])
if test "x$HAVE_ST_EGL" = xyes; then
2010-06-29 14:04:27 +08:00
GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS egl"
2010-05-05 15:38:02 +08:00
fi
2010-05-04 22:43:05 +08:00
2010-03-25 22:21:39 +01:00
if test "x$HAVE_ST_XORG" = xyes; then
2010-03-11 19:23:15 +00:00
PKG_CHECK_MODULES(XEXT, [xextproto >= 7.0.99.1],
HAVE_XEXTPROTO_71="yes"; DEFINES="$DEFINES -DHAVE_XEXTPROTO_71",
HAVE_XEXTPROTO_71="no")
fi
2010-06-17 16:07:46 +08:00
AC_ARG_WITH([egl-platforms],
[AS_HELP_STRING([--with-egl-platforms@<:@=DIRS...@:>@],
[comma delimited native platforms libEGL supports, e.g.
2010-09-19 16:54:39 +08:00
"x11,drm" @<:@default=auto@:>@])],
2010-06-17 16:07:46 +08:00
[with_egl_platforms="$withval"],
[with_egl_platforms=yes])
2010-01-11 01:23:01 +08:00
AC_ARG_WITH([egl-displays],
[AS_HELP_STRING([--with-egl-displays@<:@=DIRS...@:>@],
2010-06-17 16:07:46 +08:00
[DEPRECATED. Use --with-egl-platforms instead])],
[with_egl_platforms="$withval"])
2010-01-11 01:23:01 +08:00
2010-06-17 16:07:46 +08:00
EGL_PLATFORMS=""
2011-02-04 12:24:08 +01:00
WAYLAND_EGL_LIB_DEPS=""
2010-06-17 16:07:46 +08:00
case "$with_egl_platforms" in
2010-01-11 01:23:01 +08:00
yes)
if test "x$enable_egl" = xyes && test "x$mesa_driver" != xosmesa; then
2010-06-17 16:07:46 +08:00
EGL_PLATFORMS="x11"
2010-09-19 17:31:34 +08:00
if test "$mesa_driver" = dri; then
EGL_PLATFORMS="$EGL_PLATFORMS drm"
fi
2010-01-11 01:23:01 +08:00
fi
;;
*)
if test "x$enable_egl" != xyes; then
AC_MSG_ERROR([cannot build egl state tracker without EGL library])
fi
# verify the requested driver directories exist
2010-06-17 16:07:46 +08:00
egl_platforms=`IFS=', '; echo $with_egl_platforms`
for plat in $egl_platforms; do
test -d "$srcdir/src/gallium/state_trackers/egl/$plat" || \
2011-02-10 10:45:06 -05:00
AC_MSG_ERROR([EGL platform '$plat' doesn't exist])
2010-06-17 16:07:46 +08:00
if test "$plat" = "fbdev"; then
2010-06-17 14:10:53 +08:00
GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/fbdev"
fi
2011-02-04 12:22:58 +01:00
if test "$plat" = "wayland"; then
2011-02-21 16:22:34 +01:00
PKG_CHECK_MODULES([WAYLAND], [wayland-client wayland-server],, \
2011-02-04 12:22:58 +01:00
[AC_MSG_ERROR([cannot find libwayland-client])])
2011-02-04 12:24:08 +01:00
WAYLAND_EGL_LIB_DEPS="$WAYLAND_LIBS $LIBDRM_LIBS"
2011-04-23 14:14:29 +02:00
GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS sw/wayland"
2011-02-04 12:22:58 +01:00
fi
2010-01-11 01:23:01 +08:00
done
2010-06-17 16:07:46 +08:00
EGL_PLATFORMS="$egl_platforms"
2010-01-11 01:23:01 +08:00
;;
esac
2010-06-17 16:07:46 +08:00
AC_SUBST([EGL_PLATFORMS])
2010-01-11 01:23:01 +08:00
2011-02-04 12:24:08 +01:00
AC_SUBST([WAYLAND_EGL_LIB_DEPS])
WAYLAND_EGL_PC_REQ_PRIV="wayland-client libdrm"
WAYLAND_EGL_PC_LIB_PRIV=
WAYLAND_EGL_PC_CFLAGS=
AC_SUBST([WAYLAND_EGL_PC_REQ_PRIV])
AC_SUBST([WAYLAND_EGL_PC_LIB_PRIV])
AC_SUBST([WAYLAND_EGL_PC_CFLAGS])
2010-01-23 20:18:43 +08:00
AC_ARG_WITH([egl-driver-dir],
[AS_HELP_STRING([--with-egl-driver-dir=DIR],
[directory for EGL drivers [[default=${libdir}/egl]]])],
[EGL_DRIVER_INSTALL_DIR="$withval"],
[EGL_DRIVER_INSTALL_DIR='${libdir}/egl'])
AC_SUBST([EGL_DRIVER_INSTALL_DIR])
2009-03-06 08:46:08 +09:00
AC_ARG_WITH([xorg-driver-dir],
[AS_HELP_STRING([--with-xorg-driver-dir=DIR],
[Default xorg driver directory[[default=${libdir}/xorg/modules/drivers]]])],
[XORG_DRIVER_INSTALL_DIR="$withval"],
[XORG_DRIVER_INSTALL_DIR="${libdir}/xorg/modules/drivers"])
AC_SUBST([XORG_DRIVER_INSTALL_DIR])
2009-08-13 19:40:30 -06:00
AC_ARG_WITH([max-width],
[AS_HELP_STRING([--with-max-width=N],
[Maximum framebuffer width (4096)])],
[DEFINES="${DEFINES} -DMAX_WIDTH=${withval}";
AS_IF([test "${withval}" -gt "4096"],
[AC_MSG_WARN([Large framebuffer: see s_tritemp.h comments.])])]
)
AC_ARG_WITH([max-height],
[AS_HELP_STRING([--with-max-height=N],
[Maximum framebuffer height (4096)])],
[DEFINES="${DEFINES} -DMAX_HEIGHT=${withval}";
AS_IF([test "${withval}" -gt "4096"],
[AC_MSG_WARN([Large framebuffer: see s_tritemp.h comments.])])]
)
2010-04-22 14:59:29 +10:00
dnl
dnl Gallium LLVM
dnl
AC_ARG_ENABLE([gallium-llvm],
[AS_HELP_STRING([--enable-gallium-llvm],
2011-04-21 13:27:55 +02:00
[build gallium LLVM support @<:@default=enabled on x86/x86_64@:>@])],
2010-04-22 14:59:29 +10:00
[enable_gallium_llvm="$enableval"],
[enable_gallium_llvm=auto])
2011-04-21 13:27:55 +02:00
if test "x$enable_gallium_llvm" = xauto; then
case "$host_cpu" in
i*86|x86_64) enable_gallium_llvm=yes;;
esac
fi
2010-04-22 14:59:29 +10:00
if test "x$enable_gallium_llvm" = xyes; then
2010-04-25 07:48:48 +10:00
if test "x$LLVM_CONFIG" != xno; then
LLVM_VERSION=`$LLVM_CONFIG --version`
2010-12-08 06:44:42 -07:00
LLVM_CFLAGS=`$LLVM_CONFIG --cppflags`
2011-03-14 19:58:22 +00:00
LLVM_LIBS="`$LLVM_CONFIG --libs` -lstdc++"
2010-04-25 07:48:48 +10:00
LLVM_LDFLAGS=`$LLVM_CONFIG --ldflags`
GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS llvmpipe"
2010-05-11 12:36:49 +08:00
DEFINES="$DEFINES -DGALLIUM_LLVMPIPE -D__STDC_CONSTANT_MACROS"
2010-04-25 07:48:48 +10:00
MESA_LLVM=1
else
2010-04-22 14:59:29 +10:00
MESA_LLVM=0
2010-04-25 07:48:48 +10:00
fi
else
MESA_LLVM=0
2010-04-22 14:59:29 +10:00
fi
2010-03-25 22:21:39 +01:00
dnl
dnl Gallium helper functions
dnl
gallium_check_st() {
2010-10-26 13:44:19 +02:00
if test "x$HAVE_ST_DRI" = xyes || test "x$HAVE_ST_XORG" = xyes || test "x$HAVE_ST_XVMC" = xyes || test "x$HAVE_ST_VDPAU" = xyes || test "x$HAVE_ST_VA" = xyes; then
2010-03-25 22:21:39 +01:00
GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS $1"
fi
if test "x$HAVE_ST_DRI" = xyes && test "x$2" != x; then
GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $2"
fi
2010-06-29 14:04:27 +08:00
if test "x$HAVE_ST_XORG" = xyes && test "x$3" != x; then
2010-03-25 22:21:39 +01:00
GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $3"
fi
2010-10-26 13:44:19 +02:00
if test "x$HAVE_ST_XVMC" = xyes && test "x$4" != x; then
2010-03-25 22:21:39 +01:00
GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $4"
fi
2010-10-26 13:44:19 +02:00
if test "x$HAVE_ST_VDPAU" = xyes && test "x$5" != x; then
2010-05-29 19:22:14 -04:00
GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $5"
fi
2010-10-26 13:44:19 +02:00
if test "x$HAVE_ST_VA" = xyes && test "x$6" != x; then
2010-07-14 00:34:56 +02:00
GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS $6"
fi
2010-03-25 22:21:39 +01:00
}
2009-11-12 01:28:26 +01:00
dnl
dnl Gallium SVGA configuration
dnl
AC_ARG_ENABLE([gallium-svga],
2009-07-19 09:22:31 +02:00
[AS_HELP_STRING([--enable-gallium-svga],
[build gallium SVGA @<:@default=disabled@:>@])],
2009-11-12 01:28:26 +01:00
[enable_gallium_svga="$enableval"],
2009-07-19 09:22:31 +02:00
[enable_gallium_svga=auto])
2009-11-12 01:28:26 +01:00
if test "x$enable_gallium_svga" = xyes; then
GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS svga"
2010-06-29 14:04:27 +08:00
gallium_check_st "svga/drm" "dri-vmwgfx" "xorg-vmwgfx"
2009-07-19 09:22:31 +02:00
elif test "x$enable_gallium_svga" = xauto; then
GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS svga"
2009-11-12 01:28:26 +01:00
fi
2009-02-13 00:57:47 +01:00
dnl
2010-06-11 13:00:16 +02:00
dnl Gallium i915 configuration
2009-02-13 00:57:47 +01:00
dnl
2010-06-11 13:00:16 +02:00
AC_ARG_ENABLE([gallium-i915],
[AS_HELP_STRING([--enable-gallium-i915],
[build gallium i915 @<:@default=disabled@:>@])],
[enable_gallium_i915="$enableval"],
[enable_gallium_i915=auto])
if test "x$enable_gallium_i915" = xyes; then
2010-04-17 15:17:33 +01:00
GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS i915/sw"
2010-06-11 13:00:16 +02:00
GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS i915"
2010-06-29 14:04:27 +08:00
gallium_check_st "i915/drm" "dri-i915" "xorg-i915"
2010-06-11 13:00:16 +02:00
elif test "x$enable_gallium_i915" = xauto; then
2010-04-17 15:17:33 +01:00
GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS i915/sw"
2010-06-11 13:00:16 +02:00
GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS i915"
2009-02-13 00:57:47 +01:00
fi
dnl
2010-06-11 13:00:16 +02:00
dnl Gallium i965 configuration
dnl
AC_ARG_ENABLE([gallium-i965],
[AS_HELP_STRING([--enable-gallium-i965],
[build gallium i965 @<:@default=disabled@:>@])],
[enable_gallium_i965="$enableval"],
[enable_gallium_i965=auto])
if test "x$enable_gallium_i965" = xyes; then
GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS i965"
2010-06-29 14:04:27 +08:00
gallium_check_st "i965/drm" "dri-i965" "xorg-i965"
2010-06-11 13:00:16 +02:00
elif test "x$enable_gallium_i965" = xauto; then
GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS i965"
2009-02-13 00:57:47 +01:00
fi
dnl
2010-09-23 21:50:43 +02:00
dnl Gallium Radeon r300g configuration
2009-02-13 00:57:47 +01:00
dnl
2011-04-19 12:28:51 +02:00
AC_ARG_ENABLE([gallium-r300],
[AS_HELP_STRING([--enable-gallium-r300],
2011-04-21 13:33:29 +02:00
[build gallium r300 @<:@default=build DRI driver only@:>@])],
2011-04-19 12:28:51 +02:00
[enable_gallium_r300="$enableval"],
[enable_gallium_r300=auto])
2011-04-29 12:52:10 +01:00
if test "$mesa_driver" != dri ; then
if test "x$enable_gallium_r300" = xauto; then
enable_gallium_r300=no
fi
fi
2011-04-21 13:33:29 +02:00
if test "x$enable_gallium_r300" != xno; then
if test "x$MESA_LLVM" = x0; then
case "$host_cpu" in
i*86|x86_64) AC_MSG_ERROR([LLVM is required to build Gallium R300 on x86 and x86_64]);;
esac
fi
fi
2011-04-19 12:28:51 +02:00
if test "x$enable_gallium_r300" = xauto; then
2011-02-11 01:16:06 +01:00
GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS r300"
gallium_check_st "radeon/drm" "dri-r300"
2011-04-19 12:28:51 +02:00
elif test "x$enable_gallium_r300" = xyes; then
2011-02-11 01:16:06 +01:00
GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS r300"
gallium_check_st "radeon/drm" "dri-r300" "xorg-radeon"
2010-09-28 19:32:32 +02:00
fi
2009-02-13 00:57:47 +01:00
2010-05-13 20:29:18 +01:00
dnl
dnl Gallium Radeon r600g configuration
dnl
AC_ARG_ENABLE([gallium-r600],
[AS_HELP_STRING([--enable-gallium-r600],
2011-04-19 12:28:51 +02:00
[build gallium r600 @<:@default=disabled@:>@])],
2010-05-13 20:29:18 +01:00
[enable_gallium_r600="$enableval"],
[enable_gallium_r600=auto])
if test "x$enable_gallium_r600" = xyes; then
2011-02-11 01:16:06 +01:00
GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS r600"
2011-03-22 21:58:28 +01:00
gallium_check_st "r600/drm" "dri-r600" "" "xvmc-r600" "vdpau-r600" "va-r600"
2009-02-13 00:57:47 +01:00
fi
dnl
2009-09-14 11:48:51 -06:00
dnl Gallium Nouveau configuration
2009-02-13 00:57:47 +01:00
dnl
AC_ARG_ENABLE([gallium-nouveau],
[AS_HELP_STRING([--enable-gallium-nouveau],
[build gallium nouveau @<:@default=disabled@:>@])],
[enable_gallium_nouveau="$enableval"],
[enable_gallium_nouveau=no])
if test "x$enable_gallium_nouveau" = xyes; then
2010-11-12 15:17:40 +01:00
GALLIUM_DRIVERS_DIRS="$GALLIUM_DRIVERS_DIRS nouveau nvfx nv50 nvc0"
2010-10-12 23:05:25 +02:00
gallium_check_st "nouveau/drm" "dri-nouveau" "xorg-nouveau" "xvmc-nouveau"
2009-02-13 00:57:47 +01:00
fi
2010-03-05 23:11:05 -05:00
dnl
dnl Gallium G3DVL configuration
dnl
AC_ARG_ENABLE([gallium-g3dvl],
[AS_HELP_STRING([--enable-gallium-g3dvl],
[build gallium g3dvl @<:@default=disabled@:>@])],
[enable_gallium_g3dvl="$enableval"],
[enable_gallium_g3dvl=no])
if test "x$enable_gallium_g3dvl" = xyes; then
2010-05-29 19:22:14 -04:00
case "$mesa_driver" in
xlib)
2010-10-24 19:27:29 +02:00
if test "x$HAVE_ST_VDPAU" = xyes; then
2010-07-14 00:34:56 +02:00
GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS vdpau-softpipe"
2010-10-24 19:27:29 +02:00
fi
2010-10-27 11:00:11 +02:00
if test "x$HAVE_ST_XVMC" = xyes; then
2010-05-29 19:22:14 -04:00
GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS xvmc-softpipe"
2010-10-27 11:00:11 +02:00
fi
2010-10-24 19:27:29 +02:00
if test "x$HAVE_ST_VA" = xyes; then
GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS va-softpipe"
fi
;;
2010-05-29 19:22:14 -04:00
dri)
GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS g3dvl/dri"
;;
esac
2010-03-05 23:11:05 -05:00
fi
2010-07-14 00:34:56 +02:00
dnl Directory for VDPAU libs
AC_ARG_WITH([vdpau-libdir],
[AS_HELP_STRING([--with-vdpau-libdir=DIR],
[directory for the VDPAU libraries @<:@default=${libdir}/vdpau@:>@])],
[VDPAU_LIB_INSTALL_DIR="$withval"],
[VDPAU_LIB_INSTALL_DIR='${libdir}/vdpau'])
AC_SUBST([VDPAU_LIB_INSTALL_DIR])
2010-03-05 23:11:05 -05:00
2010-10-24 19:27:29 +02:00
dnl Directory for VA libs
AC_ARG_WITH([va-libdir],
[AS_HELP_STRING([--with-va-libdir=DIR],
[directory for the VA libraries @<:@default=${libdir}/va@:>@])],
[VA_LIB_INSTALL_DIR="$withval"],
[VA_LIB_INSTALL_DIR='${libdir}/va'])
AC_SUBST([VA_LIB_INSTALL_DIR])
2010-03-05 23:11:05 -05:00
2010-04-24 13:52:23 -04:00
dnl
2010-01-22 15:51:51 +08:00
dnl Gallium swrast configuration
dnl
AC_ARG_ENABLE([gallium-swrast],
[AS_HELP_STRING([--enable-gallium-swrast],
2010-03-24 10:58:45 +01:00
[build gallium swrast @<:@default=auto@:>@])],
2010-01-22 15:51:51 +08:00
[enable_gallium_swrast="$enableval"],
[enable_gallium_swrast=auto])
2010-03-25 17:01:54 +02:00
if test "x$enable_gallium_swrast" = xyes || test "x$enable_gallium_swrast" = xauto; then
2010-03-25 18:29:51 +01:00
if test "x$HAVE_ST_DRI" = xyes; then
2010-03-25 17:01:54 +02:00
GALLIUM_TARGET_DIRS="$GALLIUM_TARGET_DIRS dri-swrast"
2010-03-24 10:58:45 +01:00
fi
2010-01-22 15:51:51 +08:00
fi
2010-01-05 17:39:05 +08:00
dnl prepend CORE_DIRS to SRC_DIRS
SRC_DIRS="$CORE_DIRS $SRC_DIRS"
2009-02-13 00:57:47 +01:00
2007-10-23 09:25:58 -07:00
dnl Restore LDFLAGS and CPPFLAGS
LDFLAGS="$_SAVE_LDFLAGS"
CPPFLAGS="$_SAVE_CPPFLAGS"
dnl Substitute the config
2007-12-12 17:57:45 -08:00
AC_CONFIG_FILES([configs/autoconf])
2007-10-23 09:25:58 -07:00
2007-12-11 08:21:51 -08:00
dnl Replace the configs/current symlink
2008-05-06 11:28:43 -07:00
AC_CONFIG_COMMANDS([configs],[
2007-12-11 08:21:51 -08:00
if test -f configs/current || test -L configs/current; then
rm -f configs/current
fi
ln -s autoconf configs/current
2008-05-06 11:28:43 -07:00
])
AC_OUTPUT
2007-12-11 08:21:51 -08:00
2007-11-30 08:49:57 -08:00
dnl
dnl Output some configuration info for the user
dnl
echo ""
echo " prefix: $prefix"
echo " exec_prefix: $exec_prefix"
echo " libdir: $libdir"
2008-07-03 09:17:44 -07:00
echo " includedir: $includedir"
2007-11-30 08:49:57 -08:00
2010-10-29 12:34:44 +08:00
dnl API info
echo ""
echo " OpenGL: $enable_opengl (ES1: $enable_gles1 ES2: $enable_gles2)"
echo " OpenVG: $enable_openvg"
2007-11-30 08:49:57 -08:00
dnl Driver info
echo ""
echo " Driver: $mesa_driver"
2010-10-29 12:34:44 +08:00
if test "$mesa_driver" != no; then
if echo "$DRIVER_DIRS" | grep 'osmesa' >/dev/null 2>&1; then
echo " OSMesa: lib$OSMESA_LIB"
else
echo " OSMesa: no"
fi
if test "$mesa_driver" = dri; then
# cleanup the drivers var
dri_dirs=`echo $DRI_DIRS | $SED 's/^ *//;s/ */ /;s/ *$//'`
if test "x$DRI_DIRS" = x; then
echo " DRI drivers: no"
else
echo " DRI drivers: $dri_dirs"
fi
echo " DRI driver dir: $DRI_DRIVER_INSTALL_DIR"
echo " Use XCB: $enable_xcb"
2011-02-03 11:19:32 +11:00
echo " Shared dricore: $enable_dricore"
2010-10-29 12:34:44 +08:00
fi
2008-07-28 14:44:43 +01:00
fi
2010-10-29 12:34:44 +08:00
echo ""
echo " GLU: $enable_glu"
echo " GLw: $enable_glw (Motif: $enable_motif)"
echo " glut: $enable_glut"
dnl EGL
echo ""
echo " EGL: $enable_egl"
if test "$enable_egl" = yes; then
echo " EGL platforms: $EGL_PLATFORMS"
2010-10-31 21:01:54 +08:00
egl_drivers=""
for d in $EGL_DRIVERS_DIRS; do
2011-01-07 16:30:08 +08:00
egl_drivers="$egl_drivers builtin:egl_$d"
2010-10-31 21:01:54 +08:00
done
2010-10-29 12:34:44 +08:00
if test "$enable_gallium" = yes -a "$HAVE_ST_EGL" = yes; then
2010-10-31 21:01:54 +08:00
echo " EGL drivers: ${egl_drivers} egl_gallium"
echo " EGL Gallium STs:$EGL_CLIENT_APIS"
2010-10-29 12:34:44 +08:00
else
2010-10-31 21:01:54 +08:00
echo " EGL drivers: $egl_drivers"
2010-10-29 12:34:44 +08:00
fi
2007-12-30 08:41:53 -08:00
fi
2007-11-30 08:49:57 -08:00
2010-04-28 13:38:58 +01:00
echo ""
2010-05-21 12:17:24 -07:00
if test "x$MESA_LLVM" = x1; then
2010-04-28 13:38:58 +01:00
echo " llvm: yes"
echo " llvm-config: $LLVM_CONFIG"
echo " llvm-version: $LLVM_VERSION"
else
echo " llvm: no"
fi
2009-02-11 02:38:21 +01:00
echo ""
if echo "$SRC_DIRS" | grep 'gallium' >/dev/null 2>&1; then
echo " Gallium: yes"
echo " Gallium dirs: $GALLIUM_DIRS"
2010-03-11 14:43:00 +00:00
echo " Target dirs: $GALLIUM_TARGET_DIRS"
2009-02-11 02:38:21 +01:00
echo " Winsys dirs: $GALLIUM_WINSYS_DIRS"
2009-02-20 11:03:18 +00:00
echo " Driver dirs: $GALLIUM_DRIVERS_DIRS"
2009-02-11 02:38:21 +01:00
echo " Trackers dirs: $GALLIUM_STATE_TRACKERS_DIRS"
else
echo " Gallium: no"
fi
2007-11-30 08:49:57 -08:00
dnl Libraries
echo ""
echo " Shared libs: $enable_shared"
echo " Static libs: $enable_static"
2007-12-12 09:12:15 -08:00
dnl Compiler options
# cleanup the CFLAGS/CXXFLAGS/DEFINES vars
cflags=`echo $CFLAGS $OPT_FLAGS $PIC_FLAGS $ARCH_FLAGS | \
$SED 's/^ *//;s/ */ /;s/ *$//'`
cxxflags=`echo $CXXFLAGS $OPT_FLAGS $PIC_FLAGS $ARCH_FLAGS | \
$SED 's/^ *//;s/ */ /;s/ *$//'`
defines=`echo $DEFINES $ASM_FLAGS | $SED 's/^ *//;s/ */ /;s/ *$//'`
echo ""
echo " CFLAGS: $cflags"
echo " CXXFLAGS: $cxxflags"
echo " Macros: $defines"
2010-10-25 13:52:58 -07:00
echo ""
echo " PYTHON2: $PYTHON2"
2007-12-12 09:12:15 -08:00
2007-10-23 09:25:58 -07:00
echo ""
2008-03-24 10:01:50 -07:00
echo " Run '${MAKE-make}' to build Mesa"
2007-10-23 09:25:58 -07:00
echo ""