diff options
author | Andrew Gallatin <gallatin@FreeBSD.org> | 2001-08-29 19:20:13 +0000 |
---|---|---|
committer | Andrew Gallatin <gallatin@FreeBSD.org> | 2001-08-29 19:20:13 +0000 |
commit | 7148fe93a44cef625fc4816d542e0f6e16d6174f (patch) | |
tree | a68d3d9bf681a8d92877f9623d9ce347e9b7422e /x11/XFree86-4 | |
parent | Remove FTP site which no longer has the distfiles. (diff) |
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>
Notes
Notes:
svn path=/head/; revision=47110
Diffstat (limited to 'x11/XFree86-4')
-rw-r--r-- | x11/XFree86-4/files/patch-tga | 11 |
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; + } |