diff options
author | wiz <wiz@pkgsrc.org> | 2017-01-18 18:31:17 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2017-01-18 18:31:17 +0000 |
commit | d9c4034033ac7ab5a527e5c108f2724e72f7fc77 (patch) | |
tree | 5f0a3037510863174bf0d252d9695e432b8d4954 /x11 | |
parent | 3d1ed01ada49b81303ada7b5432bee6f53c1e0b7 (diff) | |
download | pkgsrc-d9c4034033ac7ab5a527e5c108f2724e72f7fc77.tar.gz |
Updated xf86-video-siliconmotion to 1.7.9.
Adam Jackson (1):
Adapt Block/WakeupHandler signature for ABI 23
Connor Behan (1):
Check for drawables before compositing
Matt Turner (1):
xf86-video-siliconmotion 1.7.9
Thomas Klausner (1):
Use X11/Xarch.h for endian detection.
Diffstat (limited to 'x11')
-rw-r--r-- | x11/xf86-video-siliconmotion/Makefile | 5 | ||||
-rw-r--r-- | x11/xf86-video-siliconmotion/distinfo | 11 | ||||
-rw-r--r-- | x11/xf86-video-siliconmotion/patches/patch-src_compat-api.h | 20 |
3 files changed, 7 insertions, 29 deletions
diff --git a/x11/xf86-video-siliconmotion/Makefile b/x11/xf86-video-siliconmotion/Makefile index 346cbb28278..6dbf7f4c628 100644 --- a/x11/xf86-video-siliconmotion/Makefile +++ b/x11/xf86-video-siliconmotion/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.19 2016/02/26 11:27:20 jperkin Exp $ +# $NetBSD: Makefile,v 1.20 2017/01/18 18:31:17 wiz Exp $ -DISTNAME= xf86-video-siliconmotion-1.7.8 -PKGREVISION= 1 +DISTNAME= xf86-video-siliconmotion-1.7.9 CATEGORIES= x11 MASTER_SITES= ${MASTER_SITE_XORG:=driver/} EXTRACT_SUFX= .tar.bz2 diff --git a/x11/xf86-video-siliconmotion/distinfo b/x11/xf86-video-siliconmotion/distinfo index a43be76dc39..1f23f61f929 100644 --- a/x11/xf86-video-siliconmotion/distinfo +++ b/x11/xf86-video-siliconmotion/distinfo @@ -1,7 +1,6 @@ -$NetBSD: distinfo,v 1.9 2016/11/16 21:56:46 wiz Exp $ +$NetBSD: distinfo,v 1.10 2017/01/18 18:31:17 wiz Exp $ -SHA1 (xf86-video-siliconmotion-1.7.8.tar.bz2) = d620309a9068437df2a9c83dc1384571ed7754f2 -RMD160 (xf86-video-siliconmotion-1.7.8.tar.bz2) = 749437c70b1d1e0d48ab13ee42147265fafe723d -SHA512 (xf86-video-siliconmotion-1.7.8.tar.bz2) = 8343982399737bbc09802ba17805b4111468d0241d4b2326ec32b237ca84e31dd02e4788c4e7fe508b032af9533765fb60ac8093877dc83f97709dc094bfa48e -Size (xf86-video-siliconmotion-1.7.8.tar.bz2) = 398928 bytes -SHA1 (patch-src_compat-api.h) = 4277dacb89deb87f31b51f1612a5da7226e4a3c6 +SHA1 (xf86-video-siliconmotion-1.7.9.tar.bz2) = 8b694bf2b64a1c6808708ed8cb4b013493ea5ffa +RMD160 (xf86-video-siliconmotion-1.7.9.tar.bz2) = 2cf9a271a705833d2a0a5e87b8c1333fa8a8e899 +SHA512 (xf86-video-siliconmotion-1.7.9.tar.bz2) = 13085945ca496f83521c28b25c394077e010031dbdc2374347a932a52650ada02f525269a81d0b0bb20b48e371d5435a7a73cb7555a07dc5a784e77152608c63 +Size (xf86-video-siliconmotion-1.7.9.tar.bz2) = 416351 bytes diff --git a/x11/xf86-video-siliconmotion/patches/patch-src_compat-api.h b/x11/xf86-video-siliconmotion/patches/patch-src_compat-api.h deleted file mode 100644 index 8354c7dd041..00000000000 --- a/x11/xf86-video-siliconmotion/patches/patch-src_compat-api.h +++ /dev/null @@ -1,20 +0,0 @@ -$NetBSD: patch-src_compat-api.h,v 1.1 2016/11/16 21:56:46 wiz Exp $ - -Adapt Block/WakeupHandler signature for ABI 23. - ---- src/compat-api.h.orig 2015-05-08 11:08:17.000000000 +0000 -+++ src/compat-api.h -@@ -75,8 +75,13 @@ - - #define SCREEN_INIT_ARGS_DECL ScreenPtr pScreen, int argc, char **argv - -+#if ABI_VIDEODRV_VERSION >= SET_ABI_VERSION(23, 0) -+#define BLOCKHANDLER_ARGS_DECL ScreenPtr arg, pointer pTimeout -+#define BLOCKHANDLER_ARGS arg, pTimeout -+#else - #define BLOCKHANDLER_ARGS_DECL ScreenPtr arg, pointer pTimeout, pointer pReadmask - #define BLOCKHANDLER_ARGS arg, pTimeout, pReadmask -+#endif - - #define CLOSE_SCREEN_ARGS_DECL ScreenPtr pScreen - #define CLOSE_SCREEN_ARGS pScreen |