View | Details | Raw Unified | Return to bug 216291
Collapse All | Expand All

(-)x11-drivers/xf86-video-savage/Makefile (-3 / +1 lines)
Lines 1-7 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
PORTNAME=	xf86-video-savage
3
PORTNAME=	xf86-video-savage
4
PORTVERSION=	2.3.8
4
PORTVERSION=	2.3.9
5
CATEGORIES=	x11-drivers
5
CATEGORIES=	x11-drivers
6
6
7
MAINTAINER=	x11@FreeBSD.org
7
MAINTAINER=	x11@FreeBSD.org
Lines 8-15 Link Here
8
COMMENT=	X.Org savage display driver
8
COMMENT=	X.Org savage display driver
9
9
10
USE_GL=		gl
10
USE_GL=		gl
11
12
XORG_CAT=	driver
11
XORG_CAT=	driver
13
USE_XORG=	xf86driproto glproto
14
12
15
.include <bsd.port.mk>
13
.include <bsd.port.mk>
(-)x11-drivers/xf86-video-savage/distinfo (-2 / +3 lines)
Lines 1-2 Link Here
1
SHA256 (xorg/driver/xf86-video-savage-2.3.8.tar.bz2) = fdcea4a86532bceb50095eaf0fe2f38bbfa160e98463b815f4b549eb9985fa63
1
TIMESTAMP = 1484716274
2
SIZE (xorg/driver/xf86-video-savage-2.3.8.tar.bz2) = 418649
2
SHA256 (xorg/driver/xf86-video-savage-2.3.9.tar.bz2) = 2c93c4db1f71e725dda0caee5821253129d4b52d7aa0fd720593e7769bceec86
3
SIZE (xorg/driver/xf86-video-savage-2.3.9.tar.bz2) = 433686
(-)x11-drivers/xf86-video-savage/files/patch-src_savage__dri.c (+13 lines)
Line 0 Link Here
1
# Correct types in a format string
2
#
3
--- src/savage_dri.c.orig	2017-01-17 22:43:40 UTC
4
+++ src/savage_dri.c
5
@@ -894,7 +894,7 @@ Bool SAVAGEDRIScreenInit( ScreenPtr pScr
6
    }
7
 
8
    xf86DrvMsg( pScrn->scrnIndex, X_INFO,
9
-	       "[drm] Sarea %d+%d: %d\n",
10
+	       "[drm] Sarea %lu+%lu: %lu\n",
11
 	       sizeof(XF86DRISAREARec), sizeof(SAVAGESAREAPrivRec),
12
 	       sizeof(XF86DRISAREARec) + sizeof(SAVAGESAREAPrivRec) );
13
 
(-)x11-drivers/xf86-video-savage/files/patch-src_savage__video.c (+17 lines)
Line 0 Link Here
1
# Correct type in a couple format strings
2
#
3
--- src/savage_video.c.orig	2017-01-17 22:43:40 UTC
4
+++ src/savage_video.c
5
@@ -303,10 +303,10 @@ unsigned int GetBlendForFourCC2000( int 
6
 
7
 void savageOUTREG( SavagePtr psav, unsigned long offset, unsigned long value )
8
 {
9
-    ErrorF( "MMIO %08lx, was %08lx, want %08lx,", 
10
+    ErrorF( "MMIO %08lx, was %08x, want %08lx,", 
11
 	offset, (CARD32)MMIO_IN32( psav->MapBase, offset ), value );
12
     MMIO_OUT32( psav->MapBase, offset, value );
13
-    ErrorF( " now %08lx\n", (CARD32)MMIO_IN32( psav->MapBase, offset ) );
14
+    ErrorF( " now %08x\n", (CARD32)MMIO_IN32( psav->MapBase, offset ) );
15
 }
16
 
17
 #if 0

Return to bug 216291