summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2012-01-15 11:39:48 -0500
committerMatt Turner <mattst88@gmail.com>2012-01-20 15:54:08 -0500
commit349845f7b2a85bb8589ddc211d36887b2022eee4 (patch)
tree9d3fde72ce5617e322582eb2e5a384c20ea1405d /configure.ac
parent3f96434f86de1641296a9c39b9f75d85e6955207 (diff)
downloadexternal_mesa3d-349845f7b2a85bb8589ddc211d36887b2022eee4.zip
external_mesa3d-349845f7b2a85bb8589ddc211d36887b2022eee4.tar.gz
external_mesa3d-349845f7b2a85bb8589ddc211d36887b2022eee4.tar.bz2
automake: src/mesa/drivers/dri/swrast
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac8
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 2cd1ec4..756c309 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1296,11 +1296,18 @@ case $DRI_DIRS in
;;
esac
+case $DRI_DIRS in
+*swrast*)
+ HAVE_SWRAST_DRI=yes;
+ ;;
+esac
+
AM_CONDITIONAL(HAVE_I915_DRI, test x$HAVE_I915_DRI = xyes)
AM_CONDITIONAL(HAVE_I965_DRI, test x$HAVE_I965_DRI = xyes)
AM_CONDITIONAL(HAVE_NOUVEAU_DRI, test x$HAVE_NOUVEAU_DRI = xyes)
AM_CONDITIONAL(HAVE_R200_DRI, test x$HAVE_R200_DRI = xyes)
AM_CONDITIONAL(HAVE_RADEON_DRI, test x$HAVE_RADEON_DRI = xyes)
+AM_CONDITIONAL(HAVE_SWRAST_DRI, test x$HAVE_SWRAST_DRI = xyes)
dnl
dnl OSMesa configuration
@@ -1930,6 +1937,7 @@ AC_CONFIG_FILES([configs/autoconf
src/mesa/drivers/dri/nouveau/Makefile
src/mesa/drivers/dri/r200/Makefile
src/mesa/drivers/dri/radeon/Makefile
+ src/mesa/drivers/dri/swrast/Makefile
tests/Makefile
tests/glx/Makefile])