mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
6ea8dbba59
- Unbundle ffmpeg and use the distfile from multimedia/ffmpeg (currently on version 2.7.2) - Fix edge case assertion in av_free on 9.x/i386 upon stream close with mencoder (no change in behaviour) - Include LICENSE_FILE - Pet portlint
18 lines
537 B
C
18 lines
537 B
C
--- vidix/mga_vid.c.orig 2014-05-17 01:38:00 UTC
|
|
+++ vidix/mga_vid.c
|
|
@@ -1110,13 +1110,10 @@ static int mga_probe(int verbose,int for
|
|
i, lst[i].vendor, lst[i].device);
|
|
if (lst[i].vendor == VENDOR_MATROX)
|
|
{
|
|
-#if 0
|
|
if ((lst[i].command & PCI_COMMAND_IO) == 0)
|
|
{
|
|
- mp_msg(MSGT_VO, MSGL_STATUS, "[mga] Device is disabled, ignoring\n");
|
|
- continue;
|
|
+ mp_msg(MSGT_VO, MSGL_STATUS, "[mga] Device seems disabled, trying anyway\n");
|
|
}
|
|
-#endif
|
|
switch(lst[i].device)
|
|
{
|
|
case DEVICE_MATROX_MGA_G550_AGP:
|