aboutsummaryrefslogtreecommitdiffstats
path: root/x11
diff options
context:
space:
mode:
authorgallatin <gallatin@FreeBSD.org>2001-08-30 03:20:13 +0800
committergallatin <gallatin@FreeBSD.org>2001-08-30 03:20:13 +0800
commita656fcb7df75941fcb92697c5acfa7625a140d04 (patch)
treeec7e5a79f661531e924d2750db53251c9158640b /x11
parentebe6d50d6c0b0459f6fe8e5c9bd981bc2f42b93e (diff)
downloadfreebsd-ports-gnome-a656fcb7df75941fcb92697c5acfa7625a140d04.tar.gz
freebsd-ports-gnome-a656fcb7df75941fcb92697c5acfa7625a140d04.tar.zst
freebsd-ports-gnome-a656fcb7df75941fcb92697c5acfa7625a140d04.zip
Allow the tga driver to load the "fb" module; without this, the driver
gets unresolved symbols when accessing fb routines at server startup. Note, this is apparently already in the mainline XFree86 sources, so this patch may need to be removed when the port is updated for the next release of XFree86 Tested by: "Eric S. Van Gyzen" <eric@stat.Duke.EDU>
Diffstat (limited to 'x11')
-rw-r--r--x11/XFree86-4/files/patch-tga11
1 files changed, 11 insertions, 0 deletions
diff --git a/x11/XFree86-4/files/patch-tga b/x11/XFree86-4/files/patch-tga
new file mode 100644
index 000000000000..eb0cb8098333
--- /dev/null
+++ b/x11/XFree86-4/files/patch-tga
@@ -0,0 +1,11 @@
+--- programs/Xserver/hw/xfree86/drivers/tga/tga_driver.c.orig Wed Aug 29 11:38:09 2001
++++ programs/Xserver/hw/xfree86/drivers/tga/tga_driver.c Wed Aug 29 11:39:09 2001
+@@ -758,7 +758,7 @@
+
+ pTga->FbMapSize = pScrn->videoRam * 1024;
+
+- if (mod && xf86LoadSubModule(pScrn, "fb") == NULL) {
++ if (xf86LoadSubModule(pScrn, "fb") == NULL) {
+ TGAFreeRec(pScrn);
+ return FALSE;
+ }