Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id D55817A2EC for ; Wed, 16 Nov 2016 21:56:55 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 4B1A5855D5; Wed, 16 Nov 2016 21:56:55 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CF6C4855D3 for ; Wed, 16 Nov 2016 21:56:54 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id ivsQqNby7g_M for ; Wed, 16 Nov 2016 21:56:54 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 3F3B684CFD for ; Wed, 16 Nov 2016 21:56:54 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E9D10FBA6; Wed, 16 Nov 2016 21:56:46 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1479333406155250" MIME-Version: 1.0 Date: Wed, 16 Nov 2016 21:56:46 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/x11/xf86-video-siliconmotion To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20161116215646.E9D10FBA6@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1479333406155250 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Wed Nov 16 21:56:46 UTC 2016 Modified Files: pkgsrc/x11/xf86-video-siliconmotion: distinfo Added Files: pkgsrc/x11/xf86-video-siliconmotion/patches: patch-src_compat-api.h Log Message: Fix build with xorg-server-1.19. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/x11/xf86-video-siliconmotion/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/x11/xf86-video-siliconmotion/patches/patch-src_compat-api.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1479333406155250 Content-Disposition: inline Content-Length: 1994 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/xf86-video-siliconmotion/distinfo diff -u pkgsrc/x11/xf86-video-siliconmotion/distinfo:1.8 pkgsrc/x11/xf86-video-siliconmotion/distinfo:1.9 --- pkgsrc/x11/xf86-video-siliconmotion/distinfo:1.8 Wed Nov 4 03:29:03 2015 +++ pkgsrc/x11/xf86-video-siliconmotion/distinfo Wed Nov 16 21:56:46 2016 @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.8 2015/11/04 03:29:03 agc Exp $ +$NetBSD: distinfo,v 1.9 2016/11/16 21:56:46 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 Added files: Index: pkgsrc/x11/xf86-video-siliconmotion/patches/patch-src_compat-api.h diff -u /dev/null pkgsrc/x11/xf86-video-siliconmotion/patches/patch-src_compat-api.h:1.1 --- /dev/null Wed Nov 16 21:56:46 2016 +++ pkgsrc/x11/xf86-video-siliconmotion/patches/patch-src_compat-api.h Wed Nov 16 21:56:46 2016 @@ -0,0 +1,20 @@ +$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 --_----------=_1479333406155250--