summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stone <daniel@fooishbar.org>2005-08-22 03:44:04 +0000
committerDaniel Stone <daniel@fooishbar.org>2005-08-22 03:44:04 +0000
commit2f0a836a7bc6de48e37fdf7014e6b1b8f78851bf (patch)
treecb20a56d18a1be49ff3803bd7ea41730c7606095
parent04ae3ba94c6e58afbb6c830e191fe9fe658f2cb4 (diff)
Fix test for DRI headers, bump to 2.0.1.
-rw-r--r--configure.ac8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 003322d..c13cbd6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@
AC_PREREQ(2.57)
AC_INIT([xf86-video-savage],
- 2.0.0,
+ 2.0.1,
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
xf86-video-savage)
@@ -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"