diff options
author | Andreas Müller <schnitzeltony@googlemail.com> | 2014-01-16 19:09:44 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-19 16:32:09 +0000 |
commit | fa9f89c1e035cc1a5bfd4a1639fd7af982e5596d (patch) | |
tree | cec5e37e5b9927a3114e7b3fd869aea6a1ea1cf7 /meta | |
parent | c76bf26d311a7fb74ab7a6e3f6ca3d171daa21d6 (diff) | |
download | poky-fa9f89c1e035cc1a5bfd4a1639fd7af982e5596d.tar.gz |
weston: depend on drm for 'launch' packageconfig enabled
configure fails with:
| configure:15654: checking for WESTON_LAUNCH
| configure:15661: $PKG_CONFIG --exists --print-errors "libdrm"
| Package libdrm was not found in the pkg-config search path.
| Perhaps you should add the directory containing `libdrm.pc'
| to the PKG_CONFIG_PATH environment variable
| No package 'libdrm' found
| configure:15664: $? = 1
| configure:15678: $PKG_CONFIG --exists --print-errors "libdrm"
| Package libdrm was not found in the pkg-config search path.
| Perhaps you should add the directory containing `libdrm.pc'
| to the PKG_CONFIG_PATH environment variable
| No package 'libdrm' found
| configure:15681: $? = 1
| configure:15695: result: no
| No package 'libdrm' found
| configure:15711: error: Package requirements (libdrm) were not met:
|
| No package 'libdrm' found
and configure.ac says:
| if test x$enable_weston_launch == xyes; then
| PKG_CHECK_MODULES(WESTON_LAUNCH, [libdrm])
(From OE-Core rev: 6d0625a5a2ddd34760b2f85366810f20ad4ea15e)
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-graphics/wayland/weston_1.3.1.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-graphics/wayland/weston_1.3.1.bb b/meta/recipes-graphics/wayland/weston_1.3.1.bb index 8e555ee9a6..585de66261 100644 --- a/meta/recipes-graphics/wayland/weston_1.3.1.bb +++ b/meta/recipes-graphics/wayland/weston_1.3.1.bb | |||
@@ -47,7 +47,7 @@ PACKAGECONFIG[headless] = "--enable-headless-compositor,--disable-headless-compo | |||
47 | # Weston on framebuffer | 47 | # Weston on framebuffer |
48 | PACKAGECONFIG[fbdev] = "--enable-fbdev-compositor,--disable-fbdev-compositor,udev mtdev" | 48 | PACKAGECONFIG[fbdev] = "--enable-fbdev-compositor,--disable-fbdev-compositor,udev mtdev" |
49 | # weston-launch | 49 | # weston-launch |
50 | PACKAGECONFIG[launch] = "--enable-weston-launch,--disable-weston-launch,libpam" | 50 | PACKAGECONFIG[launch] = "--enable-weston-launch,--disable-weston-launch,libpam drm" |
51 | # VA-API desktop recorder | 51 | # VA-API desktop recorder |
52 | PACKAGECONFIG[vaapi] = "--enable-vaapi-recorder,--disable-vaapi-recorder,libva" | 52 | PACKAGECONFIG[vaapi] = "--enable-vaapi-recorder,--disable-vaapi-recorder,libva" |
53 | 53 | ||