diff options
author | gallatin <gallatin@FreeBSD.org> | 2001-08-30 03:20:13 +0800 |
---|---|---|
committer | gallatin <gallatin@FreeBSD.org> | 2001-08-30 03:20:13 +0800 |
commit | a656fcb7df75941fcb92697c5acfa7625a140d04 (patch) | |
tree | ec7e5a79f661531e924d2750db53251c9158640b /x11 | |
parent | ebe6d50d6c0b0459f6fe8e5c9bd981bc2f42b93e (diff) | |
download | freebsd-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-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; + } |