summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Herrb <matthieu@cvs.openbsd.org>2008-09-21 17:07:40 +0000
committerMatthieu Herrb <matthieu@cvs.openbsd.org>2008-09-21 17:07:40 +0000
commit295517b6ecf73752b90690bbcb93139486475333 (patch)
treea9ce153a8b218948d5705e8fba3f7422d246a46f
parent469201cd941faf69c2a58e0d90bf4b2051c272d9 (diff)
Don't try int10 on macppc.
-rw-r--r--driver/xf86-video-r128/src/r128_driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver/xf86-video-r128/src/r128_driver.c b/driver/xf86-video-r128/src/r128_driver.c
index 8f360a186..a58fe8cbe 100644
--- a/driver/xf86-video-r128/src/r128_driver.c
+++ b/driver/xf86-video-r128/src/r128_driver.c
@@ -1758,7 +1758,7 @@ static Bool R128PreInitAccel(ScrnInfoPtr pScrn)
static Bool R128PreInitInt10(ScrnInfoPtr pScrn, xf86Int10InfoPtr *ppInt10)
{
R128InfoPtr info = R128PTR(pScrn);
-#if 1 && !defined(__alpha__)
+#if 1 && !defined(__alpha__) && !defined(__powerpc__)
/* int10 is broken on some Alphas */
if (xf86LoadSubModule(pScrn, "int10")) {
xf86DrvMsg(pScrn->scrnIndex,X_INFO,"initializing int10\n");