diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2014-03-14 15:31:27 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-21 12:05:32 +0000 |
commit | a7641a2bc3f3f7e661f71b17f91382fb9a1cde55 (patch) | |
tree | c94108d786751e280a7e0b777d03525e7eec00c2 /meta/recipes-graphics/libsdl | |
parent | 0b891265716c414ade29d587fc1a3c4ea7beadbe (diff) | |
download | openembedded-core-a7641a2bc3f3f7e661f71b17f91382fb9a1cde55.tar.gz openembedded-core-a7641a2bc3f3f7e661f71b17f91382fb9a1cde55.tar.bz2 openembedded-core-a7641a2bc3f3f7e661f71b17f91382fb9a1cde55.zip |
libsdl: add missing libglu dependency for openGL
Configure checks for glu.h to determine if openGL is available.
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/libsdl')
-rw-r--r-- | meta/recipes-graphics/libsdl/libsdl_1.2.15.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-graphics/libsdl/libsdl_1.2.15.bb b/meta/recipes-graphics/libsdl/libsdl_1.2.15.bb index dd2c5405fb..e19c3882ad 100644 --- a/meta/recipes-graphics/libsdl/libsdl_1.2.15.bb +++ b/meta/recipes-graphics/libsdl/libsdl_1.2.15.bb @@ -13,7 +13,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=27818cd7fd83877a8e3ef82b82798ef4" PROVIDES = "virtual/libsdl" DEPENDS = "${@base_contains('DISTRO_FEATURES', 'directfb', 'directfb', '', d)} \ - ${@base_contains('DISTRO_FEATURES', 'opengl', 'virtual/libgl', '', d)} \ + ${@base_contains('DISTRO_FEATURES', 'opengl', 'virtual/libgl libglu', '', d)} \ ${@base_contains('DISTRO_FEATURES', 'x11', 'virtual/libx11 libxext libxrandr libxrender', '', d)} \ tslib" DEPENDS_class-nativesdk = "${@base_contains('DISTRO_FEATURES', 'x11', 'virtual/nativesdk-libx11 nativesdk-libxrandr nativesdk-libxrender nativesdk-libxext', '', d)}" |