1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
--- configure.in.orig Thu Aug 24 09:53:45 2000
+++ configure.in Mon Oct 9 21:39:56 2000
@@ -846,19 +846,19 @@
AC_HEADER_STDC
AC_CHECK_HEADERS(fcntl.h limits.h sys/ioctl.h unistd.h floatingpoint.h \
sys/types.h sys/mman.h sys/perm.h asm/sigcontext.h)
-AC_CHECK_HEADER(asm/mtrr.h,
+AC_CHECK_HEADER(sys/memrange.h,
[
if test "$enable_mtrr" = "no"
then
echo "disabling mtrr (manual override)"
cflags="$cflags -DNO_MTRR"
else
- dnl For some reason, some <asm/mtrr.h> files are incomplete
+ dnl For some reason, some <sys/memrange.h> files are incomplete
dnl Verify the validity of the file here
- AC_MSG_CHECKING(validity of asm/mtrr.h)
+ AC_MSG_CHECKING(validity of sys/memrange.h)
AC_EGREP_CPP([GLX_maGiC_VALID],[
-#include <asm/mtrr.h>
-#ifdef MTRRIOC_ADD_ENTRY
+#include <sys/memrange.h>
+#ifdef MDF_WRITECOMBINE
GLX_maGiC_VALID
#endif
],
@@ -879,7 +879,7 @@
])
dnl agp driver support
-AC_CHECK_HEADER(linux/agpgart.h,
+AC_CHECK_HEADER(sys/agpio.h,
[
if test "$enable_agp" = "no"
then
@@ -887,9 +887,9 @@
else
dnl see which version of the gart module we've found
AC_MSG_CHECKING(validity of agpgart.h)
- AC_EGREP_CPP([/dev/agpgart],[
-#include <linux/agpgart.h>
-AGP_DEVICE
+ AC_EGREP_CPP([],[
+#include <sys/agpio.h>
+AGPIOC_INFO
],
[
AC_MSG_RESULT([new agpgart module])
@@ -906,7 +906,7 @@
fi
],
[
- dnl *didn't* find linux/agpgart.h on the system
+ dnl *didn't* find sys/agpio.h on the system
if test "$enable_agp" = "yes"
then
AC_MSG_RESULT([ enabling agpgart support anyway (manual override)])
|