diff options
author | Matt Turner <[email protected]> | 2012-01-15 11:39:48 -0500 |
---|---|---|
committer | Matt Turner <[email protected]> | 2012-01-20 15:54:08 -0500 |
commit | 349845f7b2a85bb8589ddc211d36887b2022eee4 (patch) | |
tree | 9d3fde72ce5617e322582eb2e5a384c20ea1405d /configure.ac | |
parent | 3f96434f86de1641296a9c39b9f75d85e6955207 (diff) |
automake: src/mesa/drivers/dri/swrast
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 2cd1ec4a4d1..756c3092194 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]) |