mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
configure: Fix linsys/decklink checks for Linux
This commit is contained in:
parent
697d7df80e
commit
232e840ba5
1 changed files with 16 additions and 6 deletions
22
configure.ac
22
configure.ac
|
@ -710,9 +710,14 @@ AG_GST_CHECK_FEATURE(DC1394, [libdc1394], dc1394, [
|
|||
dnl *** decklink ***
|
||||
translit(dnm, m, l) AM_CONDITIONAL(USE_DECKLINK, true)
|
||||
AG_GST_CHECK_FEATURE(DECKLINK, [decklink], decklink, [
|
||||
if test "x$host" = "xlinux" ; then
|
||||
HAVE_DECKLINK=yes
|
||||
fi
|
||||
case "$host" in
|
||||
*-*linux*)
|
||||
HAVE_DECKLINK=yes
|
||||
;;
|
||||
*)
|
||||
HAVE_DECKLINK=no
|
||||
;;
|
||||
esac
|
||||
DECKLINK_CXXFLAGS=
|
||||
DECKLINK_LIBS=
|
||||
AC_SUBST(DECKLINK_CXXFLAGS)
|
||||
|
@ -986,9 +991,14 @@ AC_SUBST(LIBMMS_LIBS)
|
|||
dnl *** linsys ***
|
||||
translit(dnm, m, l) AM_CONDITIONAL(USE_LINSYS, true)
|
||||
AG_GST_CHECK_FEATURE(LINSYS, [Linear Systems SDI plugin], linsys, [
|
||||
if test "x$host" = "xlinux" ; then
|
||||
HAVE_LINSYS="yes"
|
||||
fi
|
||||
case "$host" in
|
||||
*-*linux*)
|
||||
HAVE_LINSYS=yes
|
||||
;;
|
||||
*)
|
||||
HAVE_LINSYS=no
|
||||
;;
|
||||
esac
|
||||
])
|
||||
|
||||
dnl *** modplug ***
|
||||
|
|
Loading…
Reference in a new issue