diff options
author | Andreas Müller <schnitzeltony@googlemail.com> | 2016-04-29 22:59:46 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-11 10:33:41 +0100 |
commit | 1e88c74650a2c860180e780527672385e217d933 (patch) | |
tree | c185a11bda5abab9212f6c69a30d15c94b0315f3 /meta/recipes-graphics/xorg-xserver/xserver-xorg | |
parent | b86f8a0a66f268aec8bb872058e886e99e3111cb (diff) | |
download | poky-1e88c74650a2c860180e780527672385e217d933.tar.gz |
xserver-xorg: update 1.18.3 and add PACKAGECONFIG for glamor
* drm-version patch was applied mainline
* libsystemd was solved similar to patch upstream
* glamor was enhanced twice by Eric Anholt and makes vc4 work on Raspberry Pi
* glamor does not link against libegl but won't work without libegl
(From OE-Core rev: 7fc6e5e816434fb6e35c137d5440b92a1cc4d9c2)
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/xorg-xserver/xserver-xorg')
2 files changed, 0 insertions, 80 deletions
diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xorg/configure.ac-Use-libsystemd-in-REQUIRED_LIBS-check.patch b/meta/recipes-graphics/xorg-xserver/xserver-xorg/configure.ac-Use-libsystemd-in-REQUIRED_LIBS-check.patch deleted file mode 100644 index cd30999520..0000000000 --- a/meta/recipes-graphics/xorg-xserver/xserver-xorg/configure.ac-Use-libsystemd-in-REQUIRED_LIBS-check.patch +++ /dev/null | |||
@@ -1,50 +0,0 @@ | |||
1 | From 0c2153d468229f56e6fef71d2f002e0cae14aa55 Mon Sep 17 00:00:00 2001 | ||
2 | From: Jussi Kukkonen <jussi.kukkonen@intel.com> | ||
3 | Date: Mon, 16 Nov 2015 16:18:40 +0200 | ||
4 | Subject: [PATCH] configure.ac: Use libsystemd in REQUIRED_LIBS check | ||
5 | |||
6 | REQUIRED_LIBS needs to be set to the correct systemd library, | ||
7 | otherwise the later check will either fail or use the wrong | ||
8 | pc file. | ||
9 | |||
10 | Upstream-Status: Submitted [xorg-devel@lists.x.org] | ||
11 | Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com> | ||
12 | --- | ||
13 | configure.ac | 13 ++++++++++--- | ||
14 | 1 file changed, 10 insertions(+), 3 deletions(-) | ||
15 | |||
16 | diff --git a/configure.ac b/configure.ac | ||
17 | index 96c0242..f63eca1 100644 | ||
18 | --- a/configure.ac | ||
19 | +++ b/configure.ac | ||
20 | @@ -837,9 +837,16 @@ AC_ARG_WITH([systemd-daemon], | ||
21 | [support systemd socket activation (default: auto)]), | ||
22 | [WITH_SYSTEMD_DAEMON=$withval], [WITH_SYSTEMD_DAEMON=auto]) | ||
23 | PKG_CHECK_MODULES([SYSTEMD_DAEMON], [libsystemd-daemon], | ||
24 | - [HAVE_SYSTEMD_DAEMON=yes], | ||
25 | + [REQUIRED_SYSTEMD_DAEMON=libsystemd-daemon], | ||
26 | [PKG_CHECK_MODULES([SYSTEMD_DAEMON], [libsystemd], | ||
27 | - [HAVE_SYSTEMD_DAEMON=yes], [HAVE_SYSTEMD_DAEMON=no])]) | ||
28 | + [REQUIRED_SYSTEMD_DAEMON=libsystemd], | ||
29 | + [REQUIRED_SYSTEMD_DAEMON=])]) | ||
30 | +if test "x$REQUIRED_SYSTEMD_DAEMON" = x; then | ||
31 | + HAVE_SYSTEMD_DAEMON=no | ||
32 | +else | ||
33 | + HAVE_SYSTEMD_DAEMON=yes | ||
34 | +fi | ||
35 | + | ||
36 | if test "x$WITH_SYSTEMD_DAEMON" = xauto; then | ||
37 | WITH_SYSTEMD_DAEMON="$HAVE_SYSTEMD_DAEMON" | ||
38 | fi | ||
39 | @@ -848,7 +855,7 @@ if test "x$WITH_SYSTEMD_DAEMON" = xyes; then | ||
40 | AC_MSG_ERROR([systemd support requested but no library has been found]) | ||
41 | fi | ||
42 | AC_DEFINE(HAVE_SYSTEMD_DAEMON, 1, [Define to 1 if libsystemd-daemon is available]) | ||
43 | - REQUIRED_LIBS="$REQUIRED_LIBS libsystemd-daemon" | ||
44 | + REQUIRED_LIBS="$REQUIRED_LIBS $REQUIRED_SYSTEMD_DAEMON" | ||
45 | fi | ||
46 | AM_CONDITIONAL([HAVE_SYSTEMD_DAEMON], [test "x$HAVE_SYSTEMD_DAEMON" = "xyes"]) | ||
47 | |||
48 | -- | ||
49 | 2.1.4 | ||
50 | |||
diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xorg/modesetting_libdrm_requirements.patch b/meta/recipes-graphics/xorg-xserver/xserver-xorg/modesetting_libdrm_requirements.patch deleted file mode 100644 index 5f186cb843..0000000000 --- a/meta/recipes-graphics/xorg-xserver/xserver-xorg/modesetting_libdrm_requirements.patch +++ /dev/null | |||
@@ -1,30 +0,0 @@ | |||
1 | From bf23db42a4e5943129501223a47b48884cdeb62f Mon Sep 17 00:00:00 2001 | ||
2 | From: Adam Jackson <ajax@redhat.com> | ||
3 | Date: Wed, 27 Jan 2016 11:50:13 -0500 | ||
4 | Subject: modesetting: Require sufficiently new libdrm | ||
5 | |||
6 | Bugzilla: https://bugs.freedesktop.org/93883 | ||
7 | Signed-off-by: Adam Jackson <ajax@redhat.com> | ||
8 | Reviewed-by: Alex Deucher <alexander.deucher@amd.com> | ||
9 | Reviewed-by: Julien Cristau <jcristau@debian.org> | ||
10 | |||
11 | Upstream-Status: Backport | ||
12 | Signed-off-by: Johannes Pointner <johannes.pointner@gmail.com> | ||
13 | |||
14 | diff --git a/configure.ac b/configure.ac | ||
15 | index ac3bb64..312fc69 100644 | ||
16 | --- a/configure.ac | ||
17 | +++ b/configure.ac | ||
18 | @@ -2035,8 +2035,7 @@ if test "x$XORG" = xyes; then | ||
19 | |||
20 | if test "x$DRM" = xyes; then | ||
21 | dnl 2.4.46 is required for cursor hotspot support. | ||
22 | - PKG_CHECK_EXISTS(libdrm >= 2.4.46) | ||
23 | - XORG_DRIVER_MODESETTING=yes | ||
24 | + PKG_CHECK_EXISTS(libdrm >= 2.4.46, XORG_DRIVER_MODESETTING=yes, XORG_DRIVER_MODESETTING=no) | ||
25 | fi | ||
26 | |||
27 | AC_SUBST([XORG_LIBS]) | ||
28 | -- | ||
29 | cgit v0.10.2 | ||
30 | |||