diff options
| author | Loïc Minier | 2010-01-28 22:15:18 +0100 |
|---|---|---|
| committer | Blue Swirl | 2010-01-28 22:15:18 +0100 |
| commit | a0dfd8a4152ff33f98f4a94218a25c960d301114 (patch) | |
| tree | c2852e05399ab2c6ab447e1cddcaa4bccfa81a1c | |
| parent | Monitor: Fix command execution regression (diff) | |
| download | qemu-a0dfd8a4152ff33f98f4a94218a25c960d301114.tar.gz qemu-a0dfd8a4152ff33f98f4a94218a25c960d301114.tar.xz qemu-a0dfd8a4152ff33f98f4a94218a25c960d301114.zip | |
Check for sdl-config before calling it
Check whether sdl-config is available before calling it, otherwise
./configure triggers a warning:
./configure: 957: sdl-config: not found
If neither the .pc file not sdl-config are present, disable SDL support.
Signed-off-by: Loïc Minier <lool@dooz.org>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
| -rwxr-xr-x | configure | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -997,9 +997,14 @@ fi if $pkgconfig sdl --modversion >/dev/null 2>&1; then sdlconfig="$pkgconfig sdl" _sdlversion=`$sdlconfig --modversion 2>/dev/null | sed 's/[^0-9]//g'` -else +elif which sdl-config >/dev/null 2>&1; then sdlconfig='sdl-config' _sdlversion=`$sdlconfig --version | sed 's/[^0-9]//g'` +else + if test "$sdl" = "yes" ; then + feature_not_found "sdl" + fi + sdl=no fi sdl_too_old=no |
