Browse Source

libdrm: fix bad formats for mips64 and ppc64

Signed-off-by: Rosen Penev <rosenp@gmail.com>
lilik-openwrt-22.03
Rosen Penev 2 years ago
parent
commit
00af0fa946
1 changed files with 12 additions and 0 deletions
  1. +12
    -0
      libs/libdrm/patches/010-64bit.patch

+ 12
- 0
libs/libdrm/patches/010-64bit.patch View File

@ -0,0 +1,12 @@
--- a/include/drm/drm.h
+++ b/include/drm/drm.h
@@ -38,6 +38,9 @@
#if defined(__linux__)
+#ifndef __SANE_USERSPACE_TYPES__
+#define __SANE_USERSPACE_TYPES__ /* For PPC64, to get LL64 types */
+#endif
#include <linux/types.h>
#include <asm/ioctl.h>
typedef unsigned int drm_handle_t;

Loading…
Cancel
Save