diff options
author | Jussi Kukkonen <jussi.kukkonen@intel.com> | 2015-05-21 13:51:59 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-08 17:34:05 +0100 |
commit | 1a6bcd7037e5288823a42eb83bfa07104b91ae13 (patch) | |
tree | e46dd14762d4023b8c62f344581f9114312eafe9 /meta/recipes-graphics/xorg-driver/xf86-video-vmware | |
parent | 01319863b649277b74e72ad39e0f63c74ed2a3fa (diff) | |
download | poky-1a6bcd7037e5288823a42eb83bfa07104b91ae13.tar.gz |
xf86-video-vmware: Upgrade 13.0.2 -> 13.1.0
Remove one upstreamed patch.
(From OE-Core rev: 42a4a7b817b3355a9d5c05c2127585d8d449464f)
Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/xorg-driver/xf86-video-vmware')
-rw-r--r-- | meta/recipes-graphics/xorg-driver/xf86-video-vmware/0001-configure-fix-build-without-xatracker.patch | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/meta/recipes-graphics/xorg-driver/xf86-video-vmware/0001-configure-fix-build-without-xatracker.patch b/meta/recipes-graphics/xorg-driver/xf86-video-vmware/0001-configure-fix-build-without-xatracker.patch deleted file mode 100644 index cf66403e89..0000000000 --- a/meta/recipes-graphics/xorg-driver/xf86-video-vmware/0001-configure-fix-build-without-xatracker.patch +++ /dev/null | |||
@@ -1,37 +0,0 @@ | |||
1 | Upstream-Status: Backport | ||
2 | Signed-off-by: Ross Burton <ross.burton@intel.com> | ||
3 | |||
4 | From bdaa9de44a197ba1297b990422ed9e515289f141 Mon Sep 17 00:00:00 2001 | ||
5 | From: Julien Cristau <jcristau@debian.org> | ||
6 | Date: Tue, 1 Apr 2014 10:11:13 +0200 | ||
7 | Subject: [PATCH 1/2] configure: fix build without xatracker | ||
8 | |||
9 | ACTION-IF-NOT-FOUND is the fourth argument to PKG_CHECK_MODULES, not the | ||
10 | fifth. | ||
11 | |||
12 | Debian bug#743239 <https://bugs.debian.org/743239> | ||
13 | |||
14 | Reviewed-by: Thomas Klausner <wiz@NetBSD.org> | ||
15 | Reviewed-by: Jakob Bornecrantz <jakob@vmware.com> | ||
16 | Signed-off-by: Julien Cristau <jcristau@debian.org> | ||
17 | Signed-off-by: Jakob Bornecrantz <jakob@vmware.com> | ||
18 | --- | ||
19 | configure.ac | 2 +- | ||
20 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
21 | |||
22 | diff --git a/configure.ac b/configure.ac | ||
23 | index dd3ad4e..be40ed7 100644 | ||
24 | --- a/configure.ac | ||
25 | +++ b/configure.ac | ||
26 | @@ -126,7 +126,7 @@ if test x$BUILD_VMWGFX = xyes; then | ||
27 | [PKG_CHECK_EXISTS([xatracker = 2.0.0], | ||
28 | [AC_DEFINE([HAVE_XA_2], 1, | ||
29 | [Has version 2 of XA])])], | ||
30 | - [],[BUILD_VMWGFX=no]) | ||
31 | + [BUILD_VMWGFX=no]) | ||
32 | # | ||
33 | # Check for prime. | ||
34 | # | ||
35 | -- | ||
36 | 1.7.10.4 | ||
37 | |||