提交 3ec87ffe 编写于 作者: P Paolo Bonzini 提交者: Blue Swirl

reorganize sdl-config tests

This also allows overriding it with SDL_CONFIG, and warning in suspicious
cross-compilation scenarios.
Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
Signed-off-by: NBlue Swirl <blauwirbel@gmail.com>
上级 08421541
...@@ -210,6 +210,7 @@ ld="${cross_prefix}${LD-ld}" ...@@ -210,6 +210,7 @@ ld="${cross_prefix}${LD-ld}"
strip="${cross_prefix}${STRIP-strip}" strip="${cross_prefix}${STRIP-strip}"
windres="${cross_prefix}${WINDRES-windres}" windres="${cross_prefix}${WINDRES-windres}"
pkg_config="${cross_prefix}${PKG_CONFIG-pkg-config}" pkg_config="${cross_prefix}${PKG_CONFIG-pkg-config}"
sdl_config="${cross_prefix}${SDL_CONFIG-sdl-config}"
# default flags for all hosts # default flags for all hosts
QEMU_CFLAGS="-fno-strict-aliasing $QEMU_CFLAGS" QEMU_CFLAGS="-fno-strict-aliasing $QEMU_CFLAGS"
...@@ -1183,21 +1184,17 @@ fi ...@@ -1183,21 +1184,17 @@ fi
########################################## ##########################################
# SDL probe # SDL probe
# Look for sdl configuration program (pkg-config or sdl-config). # Look for sdl configuration program (pkg-config or sdl-config). Try
# Prefer variant with cross prefix if cross compiling, # sdl-config even without cross prefix, and favour pkg-config over sdl-config.
# and favour pkg-config with sdl over sdl-config. if test "`basename $sdl_config`" != sdl-config && ! has ${sdl_config}; then
if test -n "$cross_prefix" -a $pkg_config != pkg-config && \ sdl_config=sdl-config
$pkg_config sdl --modversion >/dev/null 2>&1; then fi
sdlconfig="$pkg_config sdl"
_sdlversion=`$sdlconfig --modversion 2>/dev/null | sed 's/[^0-9]//g'` if $pkg_config sdl --modversion >/dev/null 2>&1; then
elif test -n "$cross_prefix" && has ${cross_prefix}sdl-config; then
sdlconfig="${cross_prefix}sdl-config"
_sdlversion=`$sdlconfig --version | sed 's/[^0-9]//g'`
elif $pkg_config sdl --modversion >/dev/null 2>&1; then
sdlconfig="$pkg_config sdl" sdlconfig="$pkg_config sdl"
_sdlversion=`$sdlconfig --modversion 2>/dev/null | sed 's/[^0-9]//g'` _sdlversion=`$sdlconfig --modversion 2>/dev/null | sed 's/[^0-9]//g'`
elif has sdl-config; then elif has ${sdl_config}; then
sdlconfig='sdl-config' sdlconfig="$sdl_config"
_sdlversion=`$sdlconfig --version | sed 's/[^0-9]//g'` _sdlversion=`$sdlconfig --version | sed 's/[^0-9]//g'`
else else
if test "$sdl" = "yes" ; then if test "$sdl" = "yes" ; then
...@@ -1205,6 +1202,9 @@ else ...@@ -1205,6 +1202,9 @@ else
fi fi
sdl=no sdl=no
fi fi
if test -n "$cross_prefix" && test "`basename $sdlconfig`" = sdl-config; then
echo warning: using "\"$sdlconfig\"" to detect cross-compiled sdl >&2
fi
sdl_too_old=no sdl_too_old=no
if test "$sdl" != "no" ; then if test "$sdl" != "no" ; then
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册