[vlc-devel] commit: Default enable the dvb and v4l2 modules. (Antoine Cellerier )

git version control git at videolan.org
Thu Jun 5 01:21:54 CEST 2008


vlc | branch: master | Antoine Cellerier <dionoea at videolan.org> | Thu Jun  5 01:23:17 2008 +0200| [778665b00ee9e8788174eaa540f050276b18cf0f]

Default enable the dvb and v4l2 modules.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=778665b00ee9e8788174eaa540f050276b18cf0f
---

 configure.ac |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/configure.ac b/configure.ac
index 36e4317..a23ef19 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2336,8 +2336,8 @@ dnl
 dnl  Video4Linux2 plugin
 dnl
 AC_ARG_ENABLE(v4l2,
-  [  --enable-v4l2           Video4Linux2 input support (default disabled)])
-if test "${enable_v4l2}" = "yes"
+  [  --enable-v4l2           Video4Linux2 input support (default enabled)])
+if test "${enable_v4l2}" != "no"
 then
   AC_ARG_WITH(v4l2,
     [    --with-v4l2=PATH       path to a v4l2-enabled kernel tree],[],[])
@@ -2579,9 +2579,9 @@ 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)])
+  [  --enable-dvb            DVB-S/T/C card support (default enabled)])
 
-if test "${enable_dvb}" = "yes"
+if test "${enable_dvb}" != "no"
 then
   AC_ARG_WITH(dvb,
   [    --with-dvb=PATH       path to a dvb- and v4l2-enabled kernel tree],[],[])




More information about the vlc-devel mailing list