diff options
author | Dave Airlie <airlied@linux.ie> | 2005-08-28 11:15:57 +0000 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2005-08-28 11:15:57 +0000 |
commit | 16d4aea602d9c064bc169a2fa2dfd5c349cf4942 (patch) | |
tree | b9d957b4eac6c1e9c520f93f1f5824e5270e5070 | |
parent | ed57ccf731777e97e72a7d8fbd5ccc95e211030d (diff) |
fix up dri autodetect
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 86527c3..17ea7d7 100644 --- a/configure.ac +++ b/configure.ac @@ -70,9 +70,9 @@ fi AC_MSG_CHECKING([whether to include DRI support]) if test x$DRI = xauto; then - if test "$ac_cv_header_dri_h" = yes -a \ - "$ac_cv_header_sarea_h" = yes -a \ - "$ac_cv_header_dristruct_h" = yes; then + if test "$have_dri_h" = yes -a \ + "$have_sarea_h" = yes -a \ + "$have_dristruct_h" = yes; then DRI="yes" else DRI="no" |