summaryrefslogtreecommitdiff
path: root/graphics/utah-glx/files/patch-bh
diff options
context:
space:
mode:
authorSam Lawrance <lawrance@FreeBSD.org>2005-12-15 03:18:03 +0000
committerSam Lawrance <lawrance@FreeBSD.org>2005-12-15 03:18:03 +0000
commitdad50d99b195f0597431757a3b8c63f1012e6731 (patch)
tree544072f356f3cefa26a6a5225882423a4ffe98f4 /graphics/utah-glx/files/patch-bh
parent- added the missing .if statement around the IGNORE (diff)
Remove expired ports.
Notes
Notes: svn path=/head/; revision=151214
Diffstat (limited to 'graphics/utah-glx/files/patch-bh')
-rw-r--r--graphics/utah-glx/files/patch-bh15
1 files changed, 0 insertions, 15 deletions
diff --git a/graphics/utah-glx/files/patch-bh b/graphics/utah-glx/files/patch-bh
deleted file mode 100644
index a9679899d5e6..000000000000
--- a/graphics/utah-glx/files/patch-bh
+++ /dev/null
@@ -1,15 +0,0 @@
-diff -druN servGL/hwglx/s3virge/s3virgesymbols.c servGL/hwglx/s3virge/s3virgesymbols.c
---- servGL/hwglx/s3virge/s3virgesymbols.c Sun Jan 16 03:22:47 2000
-+++ servGL/hwglx/s3virge/s3virgesymbols.c Sun Nov 5 19:19:36 2000
-@@ -24,9 +24,8 @@
- static void *my_dlsym(void *handle, const char *name)
- {
- void *tmp = dlsym(handle, name);
-- char *error;
-- if ((error = dlerror()) != 0) {
-- fputs(error, stderr);
-+ if (tmp == NULL) {
-+ fputs(dlerror(), stderr);
- any_error = 1;
- return 0;
- }