Hello community, here is the log from the commit of package xf86-video-tdfx for openSUSE:Factory checked in at 2015-02-10 20:17:13 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/xf86-video-tdfx (Old) and /work/SRC/openSUSE:Factory/.xf86-video-tdfx.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xf86-video-tdfx" Changes: -------- --- /work/SRC/openSUSE:Factory/xf86-video-tdfx/xf86-video-tdfx.changes 2013-08-23 11:09:55.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.xf86-video-tdfx.new/xf86-video-tdfx.changes 2015-02-10 20:17:14.000000000 +0100 @@ -1,0 +2,7 @@ +Fri Feb 6 13:35:15 UTC 2015 - [email protected] + +- U_Rename-XSERVER_PCIACCESS-to-XSERVER_LIBPCIACCESS.patch/ + U_dri-Stop-uselessly-initializing-the-ValidateTree-hoo.patch + * fixes build against xorg-server 1.17 + +------------------------------------------------------------------- New: ---- U_Rename-XSERVER_PCIACCESS-to-XSERVER_LIBPCIACCESS.patch U_dri-Stop-uselessly-initializing-the-ValidateTree-hoo.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ xf86-video-tdfx.spec ++++++ --- /var/tmp/diff_new_pack.Glr4jR/_old 2015-02-10 20:17:15.000000000 +0100 +++ /var/tmp/diff_new_pack.Glr4jR/_new 2015-02-10 20:17:15.000000000 +0100 @@ -1,7 +1,7 @@ # # spec file for package xf86-video-tdfx # -# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -25,6 +25,8 @@ Url: http://xorg.freedesktop.org/ Source0: http://xorg.freedesktop.org/releases/individual/driver/%{name}-%{version}.tar.bz2 Patch0: U_Remove-mibstore.h.patch +Patch1: U_Rename-XSERVER_PCIACCESS-to-XSERVER_LIBPCIACCESS.patch +Patch2: U_dri-Stop-uselessly-initializing-the-ValidateTree-hoo.patch BuildRequires: Mesa-devel BuildRequires: pkg-config BuildRequires: pkgconfig(fontsproto) @@ -51,6 +53,8 @@ %prep %setup -q %patch0 -p1 +%patch1 -p1 +%patch2 -p1 %build %configure ++++++ U_Rename-XSERVER_PCIACCESS-to-XSERVER_LIBPCIACCESS.patch ++++++ >From 646137de571a9df950d3a3edb454803268fd5f98 Mon Sep 17 00:00:00 2001 From: Guillem Jover <[email protected]> Date: Fri, 27 Sep 2013 19:06:31 +0200 Subject: [PATCH] Rename XSERVER_PCIACCESS to XSERVER_LIBPCIACCESS Using the wrong macro name means that the code uses an obsolete typedef that issues warnings. Signed-off-by: Guillem Jover <[email protected]> Reviewed-by: Adam Jackson <[email protected]> --- src/tdfx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tdfx.h b/src/tdfx.h index 7e3be81..d8a72db 100644 --- a/src/tdfx.h +++ b/src/tdfx.h @@ -226,7 +226,7 @@ typedef struct _TDFXRec { unsigned long MMIOAddr[MAXCHIPS]; EntityInfoPtr pEnt; int numChips; -#ifndef XSERVER_PCIACCESS +#ifndef XSERVER_LIBPCIACCESS PCITAG PciTag[MAXCHIPS]; #endif Bool Primary; -- 1.8.4.5 ++++++ U_dri-Stop-uselessly-initializing-the-ValidateTree-hoo.patch ++++++ >From 2f71b05e29ae13a0fb6fbc74f4f76c78b6ddb0d7 Mon Sep 17 00:00:00 2001 From: Adam Jackson <[email protected]> Date: Tue, 29 Jul 2014 09:15:49 -0400 Subject: [PATCH] dri: Stop (uselessly) initializing the ValidateTree hooks Signed-off-by: Adam Jackson <[email protected]> --- src/tdfx_dri.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/tdfx_dri.c b/src/tdfx_dri.c index 87ec0e8..981867a 100644 --- a/src/tdfx_dri.c +++ b/src/tdfx_dri.c @@ -361,8 +361,6 @@ Bool TDFXDRIScreenInit(ScreenPtr pScreen) pDRIInfo->frameBufferStride = pTDFX->stride; pDRIInfo->ddxDrawableTableEntry = TDFX_MAX_DRAWABLES; - pDRIInfo->wrap.ValidateTree = 0; - pDRIInfo->wrap.PostValidateTree = 0; pTDFX->coreBlockHandler = pDRIInfo->wrap.BlockHandler; pDRIInfo->wrap.BlockHandler = TDFXDoBlockHandler; pTDFX->coreWakeupHandler = pDRIInfo->wrap.WakeupHandler; -- 1.8.4.5 -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
