diff options
author | Alessandro Decina <alessandro.d@gmail.com> | 2014-07-02 12:54:45 +0200 |
---|---|---|
committer | Alessandro Decina <alessandro.d@gmail.com> | 2014-07-02 12:56:06 +0200 |
commit | 0258ec0273a253c9fb94a16856228b9cb1f67761 (patch) | |
tree | c1c610590e03487692c7f37ef123693be33ffece /configure.ac | |
parent | 92dbcf2bf9787460d9013e8e89b4bee16388c05f (diff) |
applemedia: enable vtdec and vtenc only on >= 10.8 where VideoToolbox is public
Fixes: https://bugzilla.gnome.org/show_bug.cgi?id=723670
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 614cecde8..a2651bb8a 100644 --- a/configure.ac +++ b/configure.ac @@ -501,6 +501,7 @@ fi AC_CHECK_HEADER(AVFoundation/AVFoundation.h, HAVE_AVFOUNDATION="yes", HAVE_AVFOUNDATION="no", [-]) AC_CHECK_HEADER(MobileCoreServices/MobileCoreServices.h, HAVE_IOS="yes", HAVE_IOS="no", [-]) +AC_CHECK_HEADER(VideoToolbox/VideoToolbox.h, HAVE_VIDEOTOOLBOX="yes", HAVE_VIDEOTOOLBOX="no", [-]) AM_CONDITIONAL(HAVE_AVFOUNDATION, test "x$HAVE_AVFOUNDATION" = "xyes") if test "x$HAVE_AVFOUNDATION" = "xyes"; then @@ -512,6 +513,11 @@ if test "x$HAVE_IOS" = "xyes"; then AC_DEFINE(HAVE_IOS, 1, [Define if building for Apple iOS]) fi +AM_CONDITIONAL(HAVE_VIDEOTOOLBOX, test "x$HAVE_VIDEOTOOLBOX" = "xyes") +if test "x$HAVE_VIDEOTOOLBOX" = "xyes"; then + AC_DEFINE(HAVE_VIDEOTOOLBOX, 1, [Define if building with VideoToolbox]) +fi + dnl disable gst plugins we might not be able to build on this dnl platform: (ugly but minimally invasive) dnl FIXME: maybe move to sys, or make work with winsock2 |