From 4a310f203dd982ee9750bd1b5e92ea3746219395 Mon Sep 17 00:00:00 2001 From: Mark Hatle Date: Thu, 26 Aug 2010 11:49:37 -0700 Subject: 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 --- meta/packages/qemu/qemu.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'meta') 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. -- cgit 1.2.3-korg