mirror of
https://github.com/qemu/qemu.git
synced 2025-08-09 10:25:06 +00:00
fix spelling of $pkg_config, move default together with other cross tools
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
70be1a2e1a
commit
a8bd70ad3b
34
configure
vendored
34
configure
vendored
@ -209,6 +209,7 @@ objcopy="${cross_prefix}${OBJCOPY-objcopy}"
|
|||||||
ld="${cross_prefix}${LD-ld}"
|
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}"
|
||||||
|
|
||||||
# default flags for all hosts
|
# default flags for all hosts
|
||||||
QEMU_CFLAGS="-fno-strict-aliasing $QEMU_CFLAGS"
|
QEMU_CFLAGS="-fno-strict-aliasing $QEMU_CFLAGS"
|
||||||
@ -1159,12 +1160,11 @@ EOF
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
##########################################
|
##########################################
|
||||||
# pkgconfig probe
|
# pkg-config probe
|
||||||
|
|
||||||
pkgconfig="${cross_prefix}pkg-config"
|
if ! has $pkg_config; then
|
||||||
if ! has $pkgconfig; then
|
|
||||||
# likely not cross compiling, or hope for the best
|
# likely not cross compiling, or hope for the best
|
||||||
pkgconfig=pkg-config
|
pkg_config=pkg-config
|
||||||
fi
|
fi
|
||||||
|
|
||||||
##########################################
|
##########################################
|
||||||
@ -1186,15 +1186,15 @@ fi
|
|||||||
# Look for sdl configuration program (pkg-config or sdl-config).
|
# Look for sdl configuration program (pkg-config or sdl-config).
|
||||||
# Prefer variant with cross prefix if cross compiling,
|
# Prefer variant with cross prefix if cross compiling,
|
||||||
# and favour pkg-config with sdl over sdl-config.
|
# and favour pkg-config with sdl over sdl-config.
|
||||||
if test -n "$cross_prefix" -a $pkgconfig != pkg-config && \
|
if test -n "$cross_prefix" -a $pkg_config != pkg-config && \
|
||||||
$pkgconfig sdl --modversion >/dev/null 2>&1; then
|
$pkg_config sdl --modversion >/dev/null 2>&1; then
|
||||||
sdlconfig="$pkgconfig 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 test -n "$cross_prefix" && has ${cross_prefix}sdl-config; then
|
elif test -n "$cross_prefix" && has ${cross_prefix}sdl-config; then
|
||||||
sdlconfig="${cross_prefix}sdl-config"
|
sdlconfig="${cross_prefix}sdl-config"
|
||||||
_sdlversion=`$sdlconfig --version | sed 's/[^0-9]//g'`
|
_sdlversion=`$sdlconfig --version | sed 's/[^0-9]//g'`
|
||||||
elif $pkgconfig sdl --modversion >/dev/null 2>&1; then
|
elif $pkg_config sdl --modversion >/dev/null 2>&1; then
|
||||||
sdlconfig="$pkgconfig 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'
|
||||||
@ -1274,8 +1274,8 @@ if test "$vnc_tls" != "no" ; then
|
|||||||
#include <gnutls/gnutls.h>
|
#include <gnutls/gnutls.h>
|
||||||
int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
|
int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
|
||||||
EOF
|
EOF
|
||||||
vnc_tls_cflags=`$pkgconfig --cflags gnutls 2> /dev/null`
|
vnc_tls_cflags=`$pkg_config --cflags gnutls 2> /dev/null`
|
||||||
vnc_tls_libs=`$pkgconfig --libs gnutls 2> /dev/null`
|
vnc_tls_libs=`$pkg_config --libs gnutls 2> /dev/null`
|
||||||
if compile_prog "$vnc_tls_cflags" "$vnc_tls_libs" ; then
|
if compile_prog "$vnc_tls_cflags" "$vnc_tls_libs" ; then
|
||||||
vnc_tls=yes
|
vnc_tls=yes
|
||||||
libs_softmmu="$vnc_tls_libs $libs_softmmu"
|
libs_softmmu="$vnc_tls_libs $libs_softmmu"
|
||||||
@ -1589,8 +1589,8 @@ fi
|
|||||||
##########################################
|
##########################################
|
||||||
# curl probe
|
# curl probe
|
||||||
|
|
||||||
if $pkgconfig libcurl --modversion >/dev/null 2>&1; then
|
if $pkg_config libcurl --modversion >/dev/null 2>&1; then
|
||||||
curlconfig="$pkgconfig libcurl"
|
curlconfig="$pkg_config libcurl"
|
||||||
else
|
else
|
||||||
curlconfig=curl-config
|
curlconfig=curl-config
|
||||||
fi
|
fi
|
||||||
@ -1622,7 +1622,7 @@ if test "$check_utests" != "no" ; then
|
|||||||
#include <check.h>
|
#include <check.h>
|
||||||
int main(void) { suite_create("qemu test"); return 0; }
|
int main(void) { suite_create("qemu test"); return 0; }
|
||||||
EOF
|
EOF
|
||||||
check_libs=`$pkgconfig --libs check`
|
check_libs=`$pkg_config --libs check`
|
||||||
if compile_prog "" $check_libs ; then
|
if compile_prog "" $check_libs ; then
|
||||||
check_utests=yes
|
check_utests=yes
|
||||||
libs_tools="$check_libs $libs_tools"
|
libs_tools="$check_libs $libs_tools"
|
||||||
@ -1641,8 +1641,8 @@ if test "$bluez" != "no" ; then
|
|||||||
#include <bluetooth/bluetooth.h>
|
#include <bluetooth/bluetooth.h>
|
||||||
int main(void) { return bt_error(0); }
|
int main(void) { return bt_error(0); }
|
||||||
EOF
|
EOF
|
||||||
bluez_cflags=`$pkgconfig --cflags bluez 2> /dev/null`
|
bluez_cflags=`$pkg_config --cflags bluez 2> /dev/null`
|
||||||
bluez_libs=`$pkgconfig --libs bluez 2> /dev/null`
|
bluez_libs=`$pkg_config --libs bluez 2> /dev/null`
|
||||||
if compile_prog "$bluez_cflags" "$bluez_libs" ; then
|
if compile_prog "$bluez_cflags" "$bluez_libs" ; then
|
||||||
bluez=yes
|
bluez=yes
|
||||||
libs_softmmu="$bluez_libs $libs_softmmu"
|
libs_softmmu="$bluez_libs $libs_softmmu"
|
||||||
@ -1686,7 +1686,7 @@ EOF
|
|||||||
kvm_cflags="$kvm_cflags -I$kerneldir/arch/$cpu/include"
|
kvm_cflags="$kvm_cflags -I$kerneldir/arch/$cpu/include"
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
kvm_cflags=`$pkgconfig --cflags kvm-kmod 2>/dev/null`
|
kvm_cflags=`$pkg_config --cflags kvm-kmod 2>/dev/null`
|
||||||
fi
|
fi
|
||||||
if compile_prog "$kvm_cflags" "" ; then
|
if compile_prog "$kvm_cflags" "" ; then
|
||||||
kvm=yes
|
kvm=yes
|
||||||
|
Loading…
Reference in New Issue
Block a user