summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2015-05-05 12:45:24 +0200
committerSebastian Dröge <sebastian@centricular.com>2015-05-05 12:45:54 +0200
commitc32354e70ec122f20e11a6c3acf7ae44c1e2b259 (patch)
tree58c342bc43f80a9a73309b0d0038ae297ebd153f /configure.ac
parent6f85a17ab326faf7a77b6a7dedd8b0d8abac5a72 (diff)
downloadgstreamer-plugins-bad-c32354e70ec122f20e11a6c3acf7ae44c1e2b259.tar.gz
decklink: Disable decklink plugin on Android
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 2d23b7a00..f5ce28c22 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1867,6 +1867,9 @@ translit(dnm, m, l) AM_CONDITIONAL(USE_DECKLINK, true)
AG_GST_CHECK_FEATURE(DECKLINK, [decklink], decklink, [
HAVE_DECKLINK=no
case "$host" in
+ *android*)
+ HAVE_DECKLINK=no
+ ;;
*-*linux*)
if test "x$HAVE_PTHREAD_H" = "xyes"; then
AC_CHECK_LIB(dl, dlopen,
@@ -1884,7 +1887,7 @@ AG_GST_CHECK_FEATURE(DECKLINK, [decklink], decklink, [
HAVE_DECKLINK=yes
DECKLINK_CXXFLAGS=
DECKLINK_LIBS="-lpthread -ldl"
- HAVE_DECKLINK_OSX=yes
+ HAVE_DECKLINK_OSX=yes
])
fi
;;