userland: Bump to latest and add ASNEEDED = ""

ASNEEDED does not work with userland libraries as
noted in see
https://lists.yoctoproject.org/pipermail/yocto/2014-June/019933.html

Helps with running kodi using gles2

Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Khem Raj 2016-11-06 00:25:15 -07:00 committed by Andrei Gherzan
parent 716b6a9cd7
commit a5f95f4233
2 changed files with 10 additions and 8 deletions

View File

@ -1,4 +1,4 @@
From 7f52662a4d1965988ee5ada28ce3525c38ebf164 Mon Sep 17 00:00:00 2001 From 6ee44bd040bf8e8abf9c5a7be7f6ea4b82d5671a Mon Sep 17 00:00:00 2001
From: Tomeu Vizoso <tomeu.vizoso@collabora.com> From: Tomeu Vizoso <tomeu.vizoso@collabora.com>
Date: Tue, 1 Oct 2013 13:19:20 +0200 Date: Tue, 1 Oct 2013 13:19:20 +0200
Subject: [PATCH 03/13] wayland: Add Wayland example Subject: [PATCH 03/13] wayland: Add Wayland example
@ -844,23 +844,23 @@ index 0000000..1a7bfc4
+} +}
+ +
diff --git a/host_applications/linux/apps/hello_pi/rebuild.sh b/host_applications/linux/apps/hello_pi/rebuild.sh diff --git a/host_applications/linux/apps/hello_pi/rebuild.sh b/host_applications/linux/apps/hello_pi/rebuild.sh
index fa4539e..37120ac 100755 index 8225dd5..0be6ce7 100755
--- a/host_applications/linux/apps/hello_pi/rebuild.sh --- a/host_applications/linux/apps/hello_pi/rebuild.sh
+++ b/host_applications/linux/apps/hello_pi/rebuild.sh +++ b/host_applications/linux/apps/hello_pi/rebuild.sh
@@ -13,6 +13,7 @@ make -C hello_jpeg clean @@ -14,6 +14,7 @@ make -C hello_videocube clean
make -C hello_videocube clean
make -C hello_teapot clean make -C hello_teapot clean
make -C hello_fft clean make -C hello_fft clean
make -C hello_mmal_encode clean
+make -C hello_wayland clean +make -C hello_wayland clean
make -C libs/ilclient make -C libs/ilclient
make -C libs/vgfont make -C libs/vgfont
@@ -29,4 +30,4 @@ make -C hello_jpeg @@ -31,4 +32,4 @@ make -C hello_videocube
make -C hello_videocube
make -C hello_teapot make -C hello_teapot
make -C hello_fft make -C hello_fft
make -C hello_mmal_encode
- -
+make -C hello_wayland +make -C hello_wayland
-- --
2.10.0 2.10.2

View File

@ -16,7 +16,7 @@ COMPATIBLE_MACHINE = "raspberrypi"
SRCBRANCH = "master" SRCBRANCH = "master"
SRCFORK = "raspberrypi" SRCFORK = "raspberrypi"
SRCREV = "2852d9ff5a9038021f1c22d95e8a9e3aad09893f" SRCREV = "100f8bb3e74e29d04fb99857183cc34aaa712e3f"
SRC_URI = "\ SRC_URI = "\
git://github.com/${SRCFORK}/userland.git;protocol=git;branch=${SRCBRANCH} \ git://github.com/${SRCFORK}/userland.git;protocol=git;branch=${SRCBRANCH} \
@ -38,6 +38,8 @@ S = "${WORKDIR}/git"
inherit cmake pkgconfig inherit cmake pkgconfig
ASNEEDED = ""
EXTRA_OECMAKE = "-DCMAKE_BUILD_TYPE=Release -DCMAKE_EXE_LINKER_FLAGS='-Wl,--no-as-needed' \ EXTRA_OECMAKE = "-DCMAKE_BUILD_TYPE=Release -DCMAKE_EXE_LINKER_FLAGS='-Wl,--no-as-needed' \
-DVMCS_INSTALL_PREFIX=${exec_prefix} \ -DVMCS_INSTALL_PREFIX=${exec_prefix} \
" "