summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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