diff options
author | Saul Wold <sgw@linux.intel.com> | 2011-07-08 17:55:50 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-10 09:49:17 +0100 |
commit | f974868cadf74d0cf8380b2c6a4152d2fa4590b5 (patch) | |
tree | c227019d0968e4b4c6e60f9e797af99e433ff429 /meta/recipes-graphics | |
parent | 8f49007f281ed22e8706d15aa2fc7eba48b37614 (diff) | |
download | poky-f974868cadf74d0cf8380b2c6a4152d2fa4590b5.tar.gz |
libx11: ensure nativesdk uses correct DEPENDS and XCB flags
The inital patch was for native, but nativesdk also needs the
same change.
(From OE-Core rev: e66c2999afa2b3efbce8bb46c89f9db5e15f35c7)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics')
-rw-r--r-- | meta/recipes-graphics/xorg-lib/libx11_1.3.4.bb | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/meta/recipes-graphics/xorg-lib/libx11_1.3.4.bb b/meta/recipes-graphics/xorg-lib/libx11_1.3.4.bb index 04d4a97b95..f98bbe8139 100644 --- a/meta/recipes-graphics/xorg-lib/libx11_1.3.4.bb +++ b/meta/recipes-graphics/xorg-lib/libx11_1.3.4.bb | |||
@@ -5,7 +5,7 @@ LICENSE = "MIT & MIT-style & BSD" | |||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=bf75bfe4d05068311b5e6862d4b5f2c5" | 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=bf75bfe4d05068311b5e6862d4b5f2c5" |
6 | 6 | ||
7 | PE = "1" | 7 | PE = "1" |
8 | PR = "r3" | 8 | PR = "r4" |
9 | 9 | ||
10 | SRC_URI += "file://x11_disable_makekeys.patch \ | 10 | SRC_URI += "file://x11_disable_makekeys.patch \ |
11 | file://nodolt.patch \ | 11 | file://nodolt.patch \ |
@@ -18,11 +18,18 @@ SRC_URI[sha256sum] = "88d7238ce5f7cd123450567de7a3b56a43556e4ccc45df38b8324147c8 | |||
18 | DEPENDS += "bigreqsproto xproto xextproto xtrans libxau xcmiscproto \ | 18 | DEPENDS += "bigreqsproto xproto xextproto xtrans libxau xcmiscproto \ |
19 | libxdmcp xf86bigfontproto kbproto inputproto xproto-native libxcb" | 19 | libxdmcp xf86bigfontproto kbproto inputproto xproto-native libxcb" |
20 | 20 | ||
21 | DEPENDS_virtclass-native += "bigreqsproto-native xproto-native xextproto-native xtrans-native libxau-native xcmiscproto-native \ | 21 | DEPENDS_virtclass-native += "bigreqsproto-native xextproto-native \ |
22 | libxdmcp-native xf86bigfontproto-native kbproto-native inputproto-native xproto-native" | 22 | xtrans-native libxau-native xcmiscproto-native \ |
23 | libxdmcp-native xf86bigfontproto-native kbproto-native \ | ||
24 | inputproto-native xproto-native" | ||
25 | |||
26 | DEPENDS_virtclass-nativesdk += "bigreqsproto xproto xextproto \ | ||
27 | xtrans libxau xcmiscproto libxdmcp xf86bigfontproto kbproto \ | ||
28 | inputproto xproto-native" | ||
23 | 29 | ||
24 | XCB = "--with-xcb" | 30 | XCB = "--with-xcb" |
25 | XCB_virtclass-native = "--without-xcb" | 31 | XCB_virtclass-native = "--without-xcb" |
32 | XCB_virtclass-nativesdk = "--without-xcb" | ||
26 | EXTRA_OECONF += "${XCB}" | 33 | EXTRA_OECONF += "${XCB}" |
27 | 34 | ||
28 | BBCLASSEXTEND = "native nativesdk" | 35 | BBCLASSEXTEND = "native nativesdk" |