summaryrefslogtreecommitdiff
path: root/src/i810_driver.c
diff options
context:
space:
mode:
authorAlan Hourihane <alanh@fairlite.demon.co.uk>2006-08-21 12:07:29 +0100
committerAlan Hourihane <alanh@fairlite.demon.co.uk>2006-08-21 12:07:29 +0100
commit361c49ad3cfe58b9ab98dfb6e95de505c0d63730 (patch)
tree179130ffb2688ea0468806344aa72040e9afd26a /src/i810_driver.c
parentcdcc6f23e8cad797e6cfd57e2ff454ec8509b5ba (diff)
Fix bug #7930, i810 doesn't compile without DRI
(Samuel Thibault)
Diffstat (limited to 'src/i810_driver.c')
-rw-r--r--src/i810_driver.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/i810_driver.c b/src/i810_driver.c
index 3481d0b7..22635c86 100644
--- a/src/i810_driver.c
+++ b/src/i810_driver.c
@@ -333,6 +333,8 @@ const char *I810driSymbols[] = {
NULL
};
+#endif /* I830_ONLY */
+
const char *I810shadowSymbols[] = {
"shadowInit",
"shadowSetup",
@@ -340,8 +342,6 @@ const char *I810shadowSymbols[] = {
NULL
};
-#endif /* I830_ONLY */
-
#ifndef I810_DEBUG
int I810_DEBUG = (0
/* | DEBUG_ALWAYS_SYNC */
@@ -408,9 +408,9 @@ i810Setup(pointer module, pointer opts, int *errmaj, int *errmin)
#ifdef XF86DRI
I810drmSymbols,
I810driSymbols,
+#endif
I810shadowSymbols,
I810shadowFBSymbols,
-#endif
I810vbeSymbols, vbeOptionalSymbols,
I810ddcSymbols, I810int10Symbols, NULL);