From: Mark Hatle Date: Thu, 26 Aug 2010 18:49:37 +0000 (-0700) Subject: qemu: On some older machines SDL is available X-Git-Tag: 2011-1~4758 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=4a310f203dd982ee9750bd1b5e92ea3746219395;p=openembedded-core.git qemu: On some older machines SDL is available On some older machines SDL is available, even if a pkgconfig file for SDL is not there. (See RHEL5.1) Extend the check, to see if the primary SDL header is there, if the pkgconfig check fails. Signed-off-by: Mark Hatle --- diff --git a/meta/packages/qemu/qemu.inc b/meta/packages/qemu/qemu.inc index 5711596cc2..5425aaf4a5 100644 --- a/meta/packages/qemu/qemu.inc +++ b/meta/packages/qemu/qemu.inc @@ -16,7 +16,8 @@ do_configure_prepend_virtclass-native() { test -e /usr/lib/libGL.so -a -e /usr/lib/libGLU.so && libgl='yes' test -e /usr/lib64/libGL.so -a -e /usr/lib64/libGLU.so && libgl='yes' - test -e /usr/lib/pkgconfig/sdl.pc -o -e /usr/lib64/pkgconfig/sdl.pc && libsdl='yes' + test -e /usr/lib/pkgconfig/sdl.pc -o -e /usr/lib64/pkgconfig/sdl.pc -o -e /usr/include/SDL/SDL.h && libsdl='yes' + if [ "$libsdl" != 'yes' -o "$libgl" != 'yes' ]; then echo "You need libGL.so and libGLU.so to exist in your library path and the development headers for SDL installed to build qemu-native.