summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in19
1 files changed, 15 insertions, 4 deletions
diff --git a/configure.in b/configure.in
index b7d58b110..293f7594e 100644
--- a/configure.in
+++ b/configure.in
@@ -177,9 +177,9 @@ LIBMPEG2_CFLAGS="" dnl default include path removed, no more needed.
LIBA52_CFLAGS=""
LIBFFMPEG_CFLAGS=""
-AC_ARG_ENABLE(altivec, [ --enable-altivec use assembly codes for Motorola 74xx CPUs],
- enable_altivec=yes, enable_altivec=no)
-
+AC_ARG_ENABLE(altivec, [ --disable-altivec use assembly codes for Motorola 74xx CPUs],
+ enable_altivec=no, enable_altivec=yes)
+
if test x$enable_mlib = x; then
AC_ARG_ENABLE(mlib,
[ --disable-mlib make a version not using mediaLib],
@@ -401,6 +401,14 @@ AM_CONDITIONAL(HAVE_ZLIB, [test x"$have_zlib" = "xyes"])
dnl
+dnl ASF build can be optional
+dnl
+AC_ARG_ENABLE(asf, [ --disable-asf do not build ASF demuxer],
+ enable_asf=no, enable_asf=yes)
+AM_CONDITIONAL(BUILD_ASF, test x"$enable_asf" = "xyes")
+
+
+dnl
dnl ip_mreqn
dnl
AC_CHECK_IP_MREQN
@@ -912,7 +920,9 @@ echo " - avi - mpeg"
echo " - mpeg_block - mpeg_audio"
echo " - mpeg_elem - mpeg_pes"
echo " - mpeg_ts - qt"
-echo " - asf"
+if test x"$enable_asf" = "xyes"; then
+ echo " - asf"
+fi
if test x"$no_oggvorbis" = "xno"; then
echo " - ogg"
fi
@@ -925,5 +935,6 @@ echo " - stdin - rtp"
echo " - http"
if test x"$have_cdrom_ioctls" = "xyes"; then
echo " - dvd - vcd"
+ echo " - cda"
fi
echo "---"