You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
configure: favor pkg_config over sdl_config
This fixes linking issues on ubuntu. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
14
configure
vendored
14
configure
vendored
@@ -2943,19 +2943,19 @@ if enabled libdc1394; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
SDL_CONFIG="${cross_prefix}sdl-config"
|
SDL_CONFIG="${cross_prefix}sdl-config"
|
||||||
if "${SDL_CONFIG}" --version > /dev/null 2>&1; then
|
if check_pkg_config sdl SDL_version.h SDL_Linked_Version; then
|
||||||
|
check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
|
||||||
|
enable sdl &&
|
||||||
|
check_struct SDL.h SDL_VideoInfo current_w $sdl_cflags && enable sdl_video_size
|
||||||
|
else
|
||||||
|
if "${SDL_CONFIG}" --version > /dev/null 2>&1; then
|
||||||
sdl_cflags=$("${SDL_CONFIG}" --cflags)
|
sdl_cflags=$("${SDL_CONFIG}" --cflags)
|
||||||
sdl_libs=$("${SDL_CONFIG}" --libs)
|
sdl_libs=$("${SDL_CONFIG}" --libs)
|
||||||
check_func_headers SDL_version.h SDL_Linked_Version $sdl_cflags $sdl_libs &&
|
check_func_headers SDL_version.h SDL_Linked_Version $sdl_cflags $sdl_libs &&
|
||||||
check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
|
check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
|
||||||
enable sdl &&
|
enable sdl &&
|
||||||
check_struct SDL.h SDL_VideoInfo current_w $sdl_cflags && enable sdl_video_size
|
check_struct SDL.h SDL_VideoInfo current_w $sdl_cflags && enable sdl_video_size
|
||||||
else
|
fi
|
||||||
if check_pkg_config sdl SDL_version.h SDL_Linked_Version; then
|
|
||||||
check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
|
|
||||||
enable sdl &&
|
|
||||||
check_struct SDL.h SDL_VideoInfo current_w $sdl_cflags && enable sdl_video_size
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
texi2html -version > /dev/null 2>&1 && enable texi2html || disable texi2html
|
texi2html -version > /dev/null 2>&1 && enable texi2html || disable texi2html
|
||||||
|
Reference in New Issue
Block a user