mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-17 05:46:36 +00:00
Add dvb detection and allow dvbsrc to be built.
Original commit message from CVS: 2006-10-10 Zaheer Abbas Merali <zaheerabbas at merali dot org> * configure.ac: * sys/Makefile.am: Add dvb detection and allow dvbsrc to be built.
This commit is contained in:
parent
eb54f03b27
commit
808736b805
3 changed files with 21 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2006-10-10 Zaheer Abbas Merali <zaheerabbas at merali dot org>
|
||||||
|
|
||||||
|
* configure.ac:
|
||||||
|
* sys/Makefile.am:
|
||||||
|
Add dvb detection and allow dvbsrc to be built.
|
||||||
|
|
||||||
2006-10-10 Zaheer Abbas Merali <zaheerabbas at merali dot org>
|
2006-10-10 Zaheer Abbas Merali <zaheerabbas at merali dot org>
|
||||||
|
|
||||||
* configure.ac:
|
* configure.ac:
|
||||||
|
|
|
@ -701,6 +701,13 @@ GST_CHECK_FEATURE(WAVPACK, [wavpack plug-in], wavpack, [
|
||||||
AC_SUBST(WAVPACK_LIBS)
|
AC_SUBST(WAVPACK_LIBS)
|
||||||
])
|
])
|
||||||
|
|
||||||
|
dnl *** dvb ***
|
||||||
|
translit(dnm, m, l) AM_CONDITIONAL(USE_DVB, true)
|
||||||
|
GST_CHECK_FEATURE(DVB, [DVB Source], dvb, [
|
||||||
|
AC_MSG_CHECKING([Checking for up to date dvb installation])
|
||||||
|
AC_CHECK_HEADER(linux/dvb/frontend.h, [HAVE_DVB="yes"], [HAVE_DVB="no"])
|
||||||
|
])
|
||||||
|
|
||||||
else
|
else
|
||||||
|
|
||||||
dnl not building plugins with external dependencies,
|
dnl not building plugins with external dependencies,
|
||||||
|
@ -729,6 +736,7 @@ AM_CONDITIONAL(USE_SWFDEC, false)
|
||||||
AM_CONDITIONAL(USE_THEORADEC, false)
|
AM_CONDITIONAL(USE_THEORADEC, false)
|
||||||
AM_CONDITIONAL(USE_XVID, false)
|
AM_CONDITIONAL(USE_XVID, false)
|
||||||
AM_CONDITIONAL(USE_WAVPACK, false)
|
AM_CONDITIONAL(USE_WAVPACK, false)
|
||||||
|
AM_CONDITIONAL(USE_DVB, false)
|
||||||
|
|
||||||
fi dnl of EXT plugins
|
fi dnl of EXT plugins
|
||||||
|
|
||||||
|
|
|
@ -28,6 +28,12 @@ else
|
||||||
GL_DIR=
|
GL_DIR=
|
||||||
endif
|
endif
|
||||||
|
|
||||||
SUBDIRS = $(GL_DIR)
|
if USE_DVB
|
||||||
|
DVB_DIR=dvb
|
||||||
|
else
|
||||||
|
DVB_DIR=
|
||||||
|
endif
|
||||||
|
|
||||||
|
SUBDIRS = $(GL_DIR) $(DVB_DIR)
|
||||||
|
|
||||||
DIST_SUBDIRS = glsink dvb
|
DIST_SUBDIRS = glsink dvb
|
||||||
|
|
Loading…
Reference in a new issue