Commit f79c8d43 authored by Jean-Paul Saman's avatar Jean-Paul Saman

Updated LIST of modules and configuration options for building.

parent 485e4dd6
dnl Autoconf settings for vlc dnl Autoconf settings for vlc
dnl $Id: configure.ac,v 1.48 2003/07/29 23:50:39 gbazin Exp $ dnl $Id: configure.ac,v 1.49 2003/07/31 15:31:58 jpsaman Exp $
AC_INIT(vlc,0.6.1) AC_INIT(vlc,0.6.1)
...@@ -1358,6 +1358,28 @@ AC_ARG_ENABLE(satellite, ...@@ -1358,6 +1358,28 @@ AC_ARG_ENABLE(satellite,
AX_ADD_PLUGINS([satellite]) AX_ADD_PLUGINS([satellite])
fi]) fi])
dnl
dnl DVB-S/DVB-T/DVB-C satellite/teresterial/cable input using v4l2
dnl
AC_ARG_ENABLE(dvb,
[ --enable-dvb DVB-S/T/C card support (default disabled)])
if test "${enable_dvb}" = "yes"
then
AC_ARG_WITH(dvb,
[ --with-dvb=PATH path to a dvb- and v4l2-enabled kernel tree],[],[])
if test "${with_dvb}" != "no" -a -n "${with_dvb}"
then
AX_ADD_CFLAGS([dvb],[-I${with_dvb}/include])
fi
CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_dvb}"
AC_CHECK_HEADERS(linux/dvb/version.h linux/dvb/frontend.h, [
AX_ADD_PLUGINS([dvb])
],[])
CPPFLAGS="${CPPFLAGS_save}"
fi
dnl dnl
dnl ipv6 plugin - not for QNX yet dnl ipv6 plugin - not for QNX yet
dnl dnl
...@@ -3248,6 +3270,7 @@ AC_OUTPUT([ ...@@ -3248,6 +3270,7 @@ AC_OUTPUT([
src/Makefile src/Makefile
modules/access/Makefile modules/access/Makefile
modules/access/dvb/Makefile
modules/access/dvd/Makefile modules/access/dvd/Makefile
modules/access/dvdplay/Makefile modules/access/dvdplay/Makefile
modules/access/dvdread/Makefile modules/access/dvdread/Makefile
......
List of vlc plugins List of vlc plugins
$Id: LIST,v 1.7 2003/07/23 22:02:56 jpsaman Exp $ $Id: LIST,v 1.8 2003/07/31 15:31:58 jpsaman Exp $
* a52_system: input module for A52 decapsulation. * a52_system: input module for A52 decapsulation.
...@@ -37,6 +37,8 @@ $Id: LIST,v 1.7 2003/07/23 22:02:56 jpsaman Exp $ ...@@ -37,6 +37,8 @@ $Id: LIST,v 1.7 2003/07/23 22:02:56 jpsaman Exp $
* dummy: dummy audio output, video output, interface and input modules. * dummy: dummy audio output, video output, interface and input modules.
* dvb: input module for DVB streaming using v4l2 API
* dvd: input module for accessing DVDs. * dvd: input module for accessing DVDs.
* dvdread: input module for accessing DVDs, uses libdvdread. * dvdread: input module for accessing DVDs, uses libdvdread.
...@@ -129,7 +131,7 @@ $Id: LIST,v 1.7 2003/07/23 22:02:56 jpsaman Exp $ ...@@ -129,7 +131,7 @@ $Id: LIST,v 1.7 2003/07/23 22:02:56 jpsaman Exp $
* ogg: input module for OGG decapsulation. * ogg: input module for OGG decapsulation.
* pda-gtk2: interface for iPaq using the Gtk2+ widget set. * pda: interface for iPaq using the Gtk2+ widget set.
* qt: interface module using the Qt widget set. * qt: interface module using the Qt widget set.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment