comparison configure.ac @ 2:6efb9e514224 trunk

[svn] Import AAC stuff.
author nenolod
date Mon, 24 Oct 2005 10:44:27 -0700
parents cb178e5ad177
children 31a41ed0ff71
comparison
equal deleted inserted replaced
1:cc6293c827ec 2:6efb9e514224
27 27
28 28
29 dnl Check for C compiler 29 dnl Check for C compiler
30 30
31 AC_LANG([C]) 31 AC_LANG([C])
32 AC_LANG([C++])
32 AC_ISC_POSIX 33 AC_ISC_POSIX
33 AC_C_BIGENDIAN 34 AC_C_BIGENDIAN
34 35
35 36
36 dnl Check for assembler 37 dnl Check for assembler
47 dnl Libtool 48 dnl Libtool
48 dnl FIXME: find a way to allow building static libbeep, 49 dnl FIXME: find a way to allow building static libbeep,
49 dnl without building static plugins 50 dnl without building static plugins
50 51
51 dnl Next four lines is a hack to prevent libtool checking for C++/F77 52 dnl Next four lines is a hack to prevent libtool checking for C++/F77
52 m4_undefine([AC_PROG_CXX])
53 m4_defun([AC_PROG_CXX],[])
54 m4_undefine([AC_PROG_F77]) 53 m4_undefine([AC_PROG_F77])
55 m4_defun([AC_PROG_F77],[]) 54 m4_defun([AC_PROG_F77],[])
56 55
57 AC_DISABLE_STATIC 56 AC_DISABLE_STATIC
58 AC_ENABLE_SHARED 57 AC_ENABLE_SHARED
326 have_oggvorbis=no 325 have_oggvorbis=no
327 fi 326 fi
328 327
329 AM_CONDITIONAL(HAVE_OGGVORBIS, [test "$have_oggvorbis" = "yes"]) 328 AM_CONDITIONAL(HAVE_OGGVORBIS, [test "$have_oggvorbis" = "yes"])
330 329
330 dnl *** AAC
331
332 AC_ARG_ENABLE(aac,
333 [ --disable-aac disable aac plugin. [default=enabled] ],
334 [enable_aac=$enableval],
335 [enable_aac=yes]
336 )
337
338 AM_CONDITIONAL(ENABLE_AAC, test "$enable_aac" = "yes")
331 339
332 dnl *** OSS output 340 dnl *** OSS output
333 341
334 AC_ARG_ENABLE(oss, 342 AC_ARG_ENABLE(oss,
335 [ --disable-oss disable the OSS output plugin], 343 [ --disable-oss disable the OSS output plugin],
588 Output/OSS/Makefile 596 Output/OSS/Makefile
589 Output/esd/Makefile 597 Output/esd/Makefile
590 Output/alsa/Makefile 598 Output/alsa/Makefile
591 Input/Makefile 599 Input/Makefile
592 Input/mpg123/Makefile 600 Input/mpg123/Makefile
601 Input/aac/Makefile
602 Input/aac/libmp4v2/Makefile
603 Input/aac/libfaad2/Makefile
593 Input/vorbis/Makefile 604 Input/vorbis/Makefile
594 Input/cdaudio/Makefile 605 Input/cdaudio/Makefile
595 Input/wav/Makefile 606 Input/wav/Makefile
596 Visualization/Makefile 607 Visualization/Makefile
597 Visualization/blur_scope/Makefile 608 Visualization/blur_scope/Makefile
635 echo 646 echo
636 echo " Input Plugins" 647 echo " Input Plugins"
637 echo " -------------" 648 echo " -------------"
638 echo " MPEG 1/2/3 (mpg123): $enable_mp3" 649 echo " MPEG 1/2/3 (mpg123): $enable_mp3"
639 echo " + id3v2 editing: $have_id3lib" 650 echo " + id3v2 editing: $have_id3lib"
651 echo " MPEG 4 Audio (AAC): $enable_aac"
640 echo " CD Digital Audio (cdda): yes" 652 echo " CD Digital Audio (cdda): yes"
641 echo " Microsoft WAV (wav): yes" 653 echo " Microsoft WAV (wav): yes"
642 echo " Ogg Vorbis (vorbis): $have_oggvorbis" 654 echo " Ogg Vorbis (vorbis): $have_oggvorbis"
643 echo "" 655 echo ""
644 echo " Visualization" 656 echo " Visualization"