summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-06-14 16:15:08 +0200
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-06-14 16:15:08 +0200
commit9f35b93d3ee2a40444c538247cfc5b05b4b0bf89 (patch)
tree4462652b6cd6879c5c46803b592f17e3d0ed1ce1
parentac28cd6ce85dc08ac4bf23f33463b275804b87bb (diff)
downloadxine-lib-9f35b93d3ee2a40444c538247cfc5b05b4b0bf89.tar.gz
xine-lib-9f35b93d3ee2a40444c538247cfc5b05b4b0bf89.tar.bz2
Disable mediaLib support by default.
The licenses probably disallow the distribution of xine binaries built against mediaLib. And on non-VIS capable boxes is probably worse than our own code.
-rw-r--r--ChangeLog3
-rw-r--r--configure.ac4
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index d3a4cf78d..ddb00eabc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,9 @@
xine-lib (1.1.8) (Unreleased)
* Send a channel changed event to the frontend when receiving the SYNC
string from last.fm streaming server.
+ * Disable mediaLib support by default (the licenses probably disallow the
+ distribution of xine binaries built against mediaLib, and on non-VIS
+ capable boxes is probably worse than our own code).
xine-lib (1.1.7)
* Support libdca (new name for libdts) by shuffling around the dts.h file.
diff --git a/configure.ac b/configure.ac
index 0d4736179..3d08dd44b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -451,12 +451,12 @@ AC_ARG_ENABLE([vis],
AS_HELP_STRING([--disable-vis], [do not use assembly codes for Sun UltraSPARC CPUs]))
AC_ARG_ENABLE([mlib],
- AS_HELP_STRING([--disable-mlib], [do not build Sun mediaLib support]))
+ AS_HELP_STRING([--enable-mlib], [build Sun mediaLib support]))
AC_ARG_ENABLE([mlib-lazyload],
AS_HELP_STRING([--enable-mlib-lazyload], [check for Sun mediaLib at runtime]))
-if test "x$enable_mlib" != xno; then
+if test "x$enable_mlib" = xyes; then
if test "x$MLIBHOME" = x; then
mlibhome=/opt/SUNWmlib
else