aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Op den Kamp <lars@opdenkamp.eu>2011-10-11 01:30:49 +0200
committerLars Op den Kamp <lars@opdenkamp.eu>2011-10-11 01:30:49 +0200
commite5bab641f899e96529ed36cc3baeaaae8b194d6f (patch)
treefc2292e7c44196685bf935abc16e96ae7417638c
parent73d25cb593f9617fff3634a24409c11c07e39a72 (diff)
removed downloading libcec and disabled libcec by default before people go balistic
-rwxr-xr-xbootstrap4
-rwxr-xr-xconfigure.in4
2 files changed, 2 insertions, 6 deletions
diff --git a/bootstrap b/bootstrap
index d666061f5a..fb16f95b6b 100755
--- a/bootstrap
+++ b/bootstrap
@@ -14,10 +14,6 @@ autoreconf -vif lib/cpluff
autoreconf -vif lib/libdvd/libdvdread
autoreconf -vif lib/libdvd/libdvdnav
-# remove the following line if we're keeping a permanent copy in our tree
-make -f Makefile.in -C lib/libcec download
-autoreconf -vif lib/libcec/libcec
-
# Clean the generated files
find . -depth -type d -name "autom4te.cache" -exec rm -rf {} \;
diff --git a/configure.in b/configure.in
index 5fd7eaa9a7..679ff467cb 100755
--- a/configure.in
+++ b/configure.in
@@ -400,9 +400,9 @@ AC_ARG_ENABLE([libusb],
AC_ARG_ENABLE([libcec],
[AS_HELP_STRING([--enable-libcec],
- [enable libcec support (default is yes)])],
+ [enable libcec support (default is no)])],
[use_libcec=$enableval],
- [use_libcec=yes])
+ [use_libcec=no])
### External libraries options
AC_ARG_ENABLE([external-libraries],