From owner-svn-ports-all@freebsd.org Mon Jan 23 00:52:14 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F1256CBC32C; Mon, 23 Jan 2017 00:52:14 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CBCF88D1; Mon, 23 Jan 2017 00:52:14 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0N0qDL8023139; Mon, 23 Jan 2017 00:52:13 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0N0qDWc023135; Mon, 23 Jan 2017 00:52:13 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201701230052.v0N0qDWc023135@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Mon, 23 Jan 2017 00:52:13 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Jan 2017 00:52:15 -0000 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 */