Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 23 Jan 2017 00:52:13 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r432183 - in head/x11-drivers/xf86-video-trident: . files
Message-ID:  <201701230052.v0N0qDWc023135@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Mon Jan 23 00:52:13 2017
New Revision: 432183
URL: https://svnweb.freebsd.org/changeset/ports/432183

Log:
  Update to 1.3.8
  
  PR:		216296
  Submitted by:	matthew@reztek.cz

Added:
  head/x11-drivers/xf86-video-trident/files/
  head/x11-drivers/xf86-video-trident/files/patch-src_trident__dac.c   (contents, props changed)
  head/x11-drivers/xf86-video-trident/files/patch-src_trident__driver.c   (contents, props changed)
Modified:
  head/x11-drivers/xf86-video-trident/Makefile
  head/x11-drivers/xf86-video-trident/distinfo

Modified: head/x11-drivers/xf86-video-trident/Makefile
==============================================================================
--- head/x11-drivers/xf86-video-trident/Makefile	Mon Jan 23 00:49:05 2017	(r432182)
+++ head/x11-drivers/xf86-video-trident/Makefile	Mon Jan 23 00:52:13 2017	(r432183)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	xf86-video-trident
-PORTVERSION=	1.3.7
+PORTVERSION=	1.3.8
 CATEGORIES=	x11-drivers
 
 MAINTAINER=	x11@FreeBSD.org

Modified: head/x11-drivers/xf86-video-trident/distinfo
==============================================================================
--- head/x11-drivers/xf86-video-trident/distinfo	Mon Jan 23 00:49:05 2017	(r432182)
+++ head/x11-drivers/xf86-video-trident/distinfo	Mon Jan 23 00:52:13 2017	(r432183)
@@ -1,2 +1,3 @@
-SHA256 (xorg/driver/xf86-video-trident-1.3.7.tar.bz2) = ecd518de627a0d49e17c158bfc72ab657386c6907c91ef89fa09332558e413ae
-SIZE (xorg/driver/xf86-video-trident-1.3.7.tar.bz2) = 376898
+TIMESTAMP = 1484716004
+SHA256 (xorg/driver/xf86-video-trident-1.3.8.tar.bz2) = 9e5119d974c3e2221994542d35e3a0b3426a441869ddd6dd08a84f324856ac3f
+SIZE (xorg/driver/xf86-video-trident-1.3.8.tar.bz2) = 387742

Added: head/x11-drivers/xf86-video-trident/files/patch-src_trident__dac.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11-drivers/xf86-video-trident/files/patch-src_trident__dac.c	Mon Jan 23 00:52:13 2017	(r432183)
@@ -0,0 +1,15 @@
+# Fix a style warning
+#
+--- src/trident_dac.c.orig	2013-02-07 07:56:43 UTC
++++ src/trident_dac.c
+@@ -1226,8 +1226,8 @@ Tridentddc1Read(ScrnInfoPtr pScrn)
+     OUTW(0x3C4, (temp << 8) | NewMode1);
+ 
+     /* Wait until vertical retrace is in progress. */
+-    while (INB(vgaIOBase + 0xA) & 0x08);
+-    while (!(INB(vgaIOBase + 0xA) & 0x08));
++    while (INB(vgaIOBase + 0xA) & 0x08) {}
++    while (!(INB(vgaIOBase + 0xA) & 0x08)) {}
+ 
+     /* Get the result */
+     OUTB(vgaIOBase + 4, I2C);

Added: head/x11-drivers/xf86-video-trident/files/patch-src_trident__driver.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11-drivers/xf86-video-trident/files/patch-src_trident__driver.c	Mon Jan 23 00:52:13 2017	(r432183)
@@ -0,0 +1,13 @@
+# Correct a string that should be const
+#
+--- src/trident_driver.c.orig	2015-03-30 17:05:53 UTC
++++ src/trident_driver.c
+@@ -1010,7 +1010,7 @@ TRIDENTPreInit(ScrnInfoPtr pScrn, int fl
+     ClockRangePtr clockRanges;
+     Bool ddcLoaded = FALSE;
+     xf86MonPtr pMon = NULL;
+-    char *s;
++    const char *s;
+     Bool tmp_bool;
+ 
+     /* Allocate the TRIDENTRec driverPrivate */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701230052.v0N0qDWc023135>