Martin Storsjö <[email protected]> writes:

> SDL 1.3 (which is the current version available e.g. in
> macports) doesn't contain SDL_Linked_Version.
>
> The current check for SDL_Linked_Version (available since SDL
> 1.2.13) was added 8f1b06c8, because including the headers for
> SDL_Init redirects the main function, requiring linking the
> SDLmain library for linking to work. When using the normal
> function checks in configure, we don't link to any extra
> libraries.
> ---
>  configure |    3 ++-
>  1 files changed, 2 insertions(+), 1 deletions(-)
>
> diff --git a/configure b/configure
> index 7418bca..3e24f00 100755
> --- a/configure
> +++ b/configure
> @@ -2983,7 +2983,8 @@ if enabled libdc1394; then
>      die "ERROR: No version of libdc1394 found "
>  fi
>
> -if check_pkg_config sdl SDL_version.h SDL_Linked_Version; then
> +if check_pkg_config sdl SDL_version.h SDL_Linked_Version ||
> +   check_pkg_config sdl SDL.h SDL_Init; then

If checking for SDL_Init works at all, then there should be no need to
check for SDL_Linked_Version.

-- 
Måns Rullgård
[email protected]
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to