summaryrefslogtreecommitdiff
path: root/pkg/wayland
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2019-11-17 17:05:29 -0800
committerMichael Forney <mforney@mforney.org>2019-11-17 20:09:14 -0800
commit37adb2ae9cd11291254be667c56b3440566d8205 (patch)
tree435965ad20bb79206711cfbedceb710447fcffdb /pkg/wayland
parent2dd81085804912d85affed9df0d2c3f1825ca6ac (diff)
Start to document patch upstream status
Diffstat (limited to 'pkg/wayland')
-rw-r--r--pkg/wayland/patch/0002-Avoid-pointer-arithmetic-on-void.patch1
-rw-r--r--pkg/wayland/patch/0003-Use-wl_container_of-internally.patch1
2 files changed, 2 insertions, 0 deletions
diff --git a/pkg/wayland/patch/0002-Avoid-pointer-arithmetic-on-void.patch b/pkg/wayland/patch/0002-Avoid-pointer-arithmetic-on-void.patch
index 7ccec381..cebbf61c 100644
--- a/pkg/wayland/patch/0002-Avoid-pointer-arithmetic-on-void.patch
+++ b/pkg/wayland/patch/0002-Avoid-pointer-arithmetic-on-void.patch
@@ -2,6 +2,7 @@ From 09b452f0ac177bd95258ec54f9540fec1a1a817d Mon Sep 17 00:00:00 2001
From: Michael Forney <mforney@mforney.org>
Date: Sat, 1 Jun 2019 15:01:23 -0700
Subject: [PATCH] Avoid pointer arithmetic on `void *`
+Upstream: 678c8681e28739da1fea667ae59118cfc0968497
The pointer operand to the binary `+` operator must be to a complete
object type. Since we are working with byte sizes, use `char *` for
diff --git a/pkg/wayland/patch/0003-Use-wl_container_of-internally.patch b/pkg/wayland/patch/0003-Use-wl_container_of-internally.patch
index 31cde0c2..4739dede 100644
--- a/pkg/wayland/patch/0003-Use-wl_container_of-internally.patch
+++ b/pkg/wayland/patch/0003-Use-wl_container_of-internally.patch
@@ -2,6 +2,7 @@ From 1ad3dc70e7961e7bf1d27a9572644a5153fc8e2d Mon Sep 17 00:00:00 2001
From: Michael Forney <mforney@mforney.org>
Date: Sat, 1 Jun 2019 15:11:48 -0700
Subject: [PATCH] Use wl_container_of internally
+Upstream: 55d044810ca32ae24499d2c6aee6084d7e31d576
---
src/event-loop.c | 4 ++--