diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2017-01-28 18:39:26 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2017-01-28 18:39:57 +0100 |
commit | 1a97cdb80945a675353ff4e9e01a3b9b0f50d419 (patch) | |
tree | 6841759e2f2c25379bb785651e3f24ae53a435d5 /package/xf86-video-siliconmotion/patches/patch-src_compat-api_h | |
parent | 53eb93657e37ebc5ea45c605bead675ce1faaa76 (diff) |
xf86-video-siliconmotion: fix compile error
Diffstat (limited to 'package/xf86-video-siliconmotion/patches/patch-src_compat-api_h')
-rw-r--r-- | package/xf86-video-siliconmotion/patches/patch-src_compat-api_h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/package/xf86-video-siliconmotion/patches/patch-src_compat-api_h b/package/xf86-video-siliconmotion/patches/patch-src_compat-api_h new file mode 100644 index 000000000..12d994d2f --- /dev/null +++ b/package/xf86-video-siliconmotion/patches/patch-src_compat-api_h @@ -0,0 +1,30 @@ +--- xf86-video-siliconmotion-1.7.8.orig/src/compat-api.h 2015-05-08 13:08:17.000000000 +0200 ++++ xf86-video-siliconmotion-1.7.8/src/compat-api.h 2017-01-26 02:35:36.147052952 +0100 +@@ -48,8 +48,13 @@ + + #define SCREEN_INIT_ARGS_DECL int i, 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 int arg, pointer blockData, pointer pTimeout, pointer pReadmask + #define BLOCKHANDLER_ARGS arg, blockData, pTimeout, pReadmask ++#endif + + #define CLOSE_SCREEN_ARGS_DECL int scrnIndex, ScreenPtr pScreen + #define CLOSE_SCREEN_ARGS scrnIndex, pScreen +@@ -75,8 +80,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 |