From 27c10a661bfa99b67f44fe6c6c5428bf14247c68 Mon Sep 17 00:00:00 2001 From: Daniel Caujolle-Bert Date: Sat, 8 Dec 2001 13:48:26 +0000 Subject: Turned altivec on by default. Made asf build optional. CVS patchset: 1182 CVS date: 2001/12/08 13:48:26 --- configure.in | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) (limited to 'configure.in') 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], @@ -400,6 +400,14 @@ AC_CHECK_LIB(z, gzsetparams, [AC_CHECK_HEADER(zlib.h,have_zlib=yes,)]) 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 @@ -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 "---" -- cgit v1.2.3