osxvideosink: Improve configure check for OSX >= 10.6

https://bugzilla.gnome.org/show_bug.cgi?id=721245
This commit is contained in:
Sebastian Dröge 2014-01-08 10:31:18 +01:00
parent 441f286e28
commit ae08e9a4cf

View file

@ -488,14 +488,13 @@ AG_GST_CHECK_FEATURE(OSX_VIDEO, [OSX video], osxvideosink, [
AC_CHECK_HEADER(OpenGL/gl.h, HAVE_OSX_VIDEO="yes", HAVE_OSX_VIDEO="no")
dnl in case header OpenGL/gl.h is found on other platforms (or older, unsupported OS X)
case "$host" in
*-*darwin1*)
dnl do nothing on Snow Leopard or newer
;;
*)
HAVE_OSX_VIDEO="no"
;;
esac
dnl also require Snow Leopard or newer
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <faad.h>]], [[
#if MAC_OS_X_VERSION_MIN_REQUIRED < 1060
#error Too old OSX version
#endif
]])],[HAVE_OSX_VIDEO="yes"],[HAVE_OSX_VIDEO="no"])
])
dnl *** Video 4 Linux 2 ***