diff options
author | mrg <mrg@pkgsrc.org> | 2003-08-13 13:58:57 +0000 |
---|---|---|
committer | mrg <mrg@pkgsrc.org> | 2003-08-13 13:58:57 +0000 |
commit | 964c40cf5758749d3bba4210faf165c14a90bd29 (patch) | |
tree | c5602957e73c33ec7b391672ecb9c6d06a11f4eb /sysutils | |
parent | 437125a1246712fcfbd8c29fbf54c229bc9b0aa6 (diff) | |
download | pkgsrc-964c40cf5758749d3bba4210faf165c14a90bd29.tar.gz |
automatically detect how to talk to a mobility radeon 9000
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/atitvout/distinfo | 4 | ||||
-rw-r--r-- | sysutils/atitvout/patches/patch-aa | 13 |
2 files changed, 13 insertions, 4 deletions
diff --git a/sysutils/atitvout/distinfo b/sysutils/atitvout/distinfo index 29021ac4870..c86b21bc047 100644 --- a/sysutils/atitvout/distinfo +++ b/sysutils/atitvout/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.1.1.1 2003/08/13 05:22:59 mrg Exp $ +$NetBSD: distinfo,v 1.2 2003/08/13 13:58:57 mrg Exp $ SHA1 (atitvout-0.4.tar.gz) = ac0d3f19119fa0c096099f952c9c59ac44ccc840 Size (atitvout-0.4.tar.gz) = 27163 bytes -SHA1 (patch-aa) = 4a9dd24f5d1bb5db4cd1093c9c9e5a8d5e74e627 +SHA1 (patch-aa) = 68e79e289b1aadbba3aa1dbf3137fdf90c486afa diff --git a/sysutils/atitvout/patches/patch-aa b/sysutils/atitvout/patches/patch-aa index 72d0abb5cea..6292e059c51 100644 --- a/sysutils/atitvout/patches/patch-aa +++ b/sysutils/atitvout/patches/patch-aa @@ -1,7 +1,7 @@ -$NetBSD: patch-aa,v 1.1.1.1 2003/08/13 05:23:00 mrg Exp $ +$NetBSD: patch-aa,v 1.2 2003/08/13 13:58:57 mrg Exp $ --- atitvout.c.orig 2002-09-17 05:37:08.000000000 +1000 -+++ atitvout.c 2003-08-13 14:58:15.000000000 +1000 ++++ atitvout.c 2003-08-13 23:53:57.000000000 +1000 @@ -17,7 +17,13 @@ */ @@ -38,3 +38,12 @@ $NetBSD: patch-aa,v 1.1.1.1 2003/08/13 05:23:00 mrg Exp $ if (!LRMI_init()) { fprintf(stderr, "Could not initialise LRMI.\n"); +@@ -118,6 +137,8 @@ + } else { + if (strncmp(oem, "ATI MACH64", 10) == 0) + radeon = 0; ++ else if (strcmp(oem, "ATI MOBILITY RADEON 9000") == 0) ++ radeon = 0; + else if (strncmp(oem, "ATI RAGE128", 11) == 0) + radeon = 1; + /* Note: Also it's possible to have here 'RG6' for first radeons */ |