3 # ffmpeg configure script (c) 2000, 2001, 2002 Fabrice Bellard
6 # make sure we are running under a compatible shell
7 (: ${foo%%bar}) 2>/dev
/null
8 if test "$?" != 0; then
9 if test "x$FFMPEG_CONFIGURE_EXEC" = x
; then
10 FFMPEG_CONFIGURE_EXEC
=1
11 export FFMPEG_CONFIGURE_EXEC
14 exec /usr
/xpg4
/bin
/sh
"$0" "$@"
16 echo "No compatible shell script interpreter found."
21 echo "Usage: configure [options]"
22 echo "Options: [defaults in brackets after descriptions]"
24 echo "Standard options:"
25 echo " --help print this message"
26 echo " --log[=FILE|yes|no] log tests and output to FILE [config.err]"
27 echo " --prefix=PREFIX install in PREFIX [$PREFIX]"
28 echo " --libdir=DIR install libs in DIR [PREFIX/lib]"
29 echo " --shlibdir=DIR install shared libs in DIR [PREFIX/lib]"
30 echo " --incdir=DIR install includes in DIR [PREFIX/include/ffmpeg]"
31 echo " --mandir=DIR install man page in DIR [PREFIX/man]"
32 echo " --enable-mp3lame enable MP3 encoding via libmp3lame [default=no]"
33 echo " --enable-libogg enable Ogg support via libogg [default=no]"
34 echo " --enable-vorbis enable Vorbis support via libvorbis [default=no]"
35 echo " --enable-faad enable FAAD support via libfaad [default=no]"
36 echo " --enable-faadbin build FAAD support with runtime linking [default=no]"
37 echo " --enable-faac enable FAAC support via libfaac [default=no]"
38 echo " --enable-libgsm enable GSM support via libgsm [default=no]"
39 echo " --enable-xvid enable XviD support via xvidcore [default=no]"
40 echo " --enable-x264 enable H.264 encoding via x264 [default=no]"
41 echo " --enable-mingw32 enable MinGW native/cross Windows compile"
42 echo " --enable-mingwce enable MinGW native/cross WinCE compile"
43 echo " --enable-a52 enable GPLed A52 support [default=no]"
44 echo " --enable-a52bin open liba52.so.0 at runtime [default=no]"
45 echo " --enable-dts enable GPLed DTS support [default=no]"
46 echo " --enable-pp enable GPLed postprocessing support [default=no]"
47 echo " --enable-static build static libraries [default=yes]"
48 echo " --disable-static do not build static libraries [default=no]"
49 echo " --enable-shared build shared libraries [default=no]"
50 echo " --disable-shared do not build shared libraries [default=yes]"
51 echo " --enable-amr_nb enable amr_nb float audio codec"
52 echo " --enable-amr_nb-fixed use fixed point for amr-nb codec"
53 echo " --enable-amr_wb enable amr_wb float audio codec"
54 echo " --enable-amr_if2 enable amr_wb IF2 audio codec"
55 echo " --enable-sunmlib use Sun medialib [default=no]"
56 echo " --enable-pthreads use pthreads [default=no]"
57 echo " --enable-dc1394 enable IIDC-1394 grabbing using libdc1394"
58 echo " and libraw1394 [default=no]"
59 echo " --enable-gpl allow use of GPL code, the resulting libav*"
60 echo " and ffmpeg will be under GPL [default=no]"
62 echo "Advanced options (experts only):"
63 echo " --source-path=PATH path to source code [$source_path]"
64 echo " --cross-prefix=PREFIX use PREFIX for compilation tools [$cross_prefix]"
65 echo " --cross-compile assume a cross-compiler is used"
66 echo " --cc=CC use C compiler CC [$cc]"
67 echo " --make=MAKE use specified make [$make]"
68 echo " --extra-cflags=ECFLAGS add ECFLAGS to CFLAGS [$CFLAGS]"
69 echo " --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]"
70 echo " --extra-libs=ELIBS add ELIBS [$ELIBS]"
71 echo " --build-suffix=SUFFIX suffix for application specific build []"
72 echo " --cpu=CPU force cpu to CPU [$cpu]"
73 echo " --tune=CPU tune code for a particular CPU"
74 echo " (may fail or perform badly on other CPUs)"
75 echo " --powerpc-perf-enable enable performance report on PPC"
76 echo " (requires enabling PMC)"
77 echo " --disable-mmx disable MMX usage"
78 echo " --disable-iwmmxt disable iwmmxt usage"
79 echo " --disable-altivec disable AltiVec usage"
80 echo " --disable-audio-oss disable OSS audio support [default=no]"
81 echo " --disable-audio-beos disable BeOS audio support [default=no]"
82 echo " --disable-v4l disable video4linux grabbing [default=no]"
83 echo " --disable-v4l2 disable video4linux2 grabbing [default=no]"
84 echo " --disable-bktr disable bktr video grabbing [default=no]"
85 echo " --disable-dv1394 disable DV1394 grabbing [default=no]"
86 echo " --disable-network disable network support [default=no]"
87 echo " --disable-zlib disable zlib [default=no]"
88 echo " --disable-simple_idct disable simple IDCT routines [default=no]"
89 echo " --disable-vhook disable video hooking support"
90 echo " --enable-gprof enable profiling with gprof [$gprof]"
91 echo " --disable-debug disable debugging symbols"
92 echo " --disable-opts disable compiler optimizations"
93 echo " --disable-mpegaudio-hp faster (but less accurate)"
94 echo " MPEG audio decoding [default=no]"
95 echo " --disable-protocols disable I/O protocols support [default=no]"
96 echo " --disable-ffserver disable ffserver build"
97 echo " --disable-ffplay disable ffplay build"
98 echo " --enable-small optimize for size instead of speed"
99 echo " --enable-memalign-hack emulate memalign, interferes with memory debuggers"
100 echo " --disable-strip disable stripping of executables and shared libraries"
101 echo " --disable-encoder=NAME disables encoder NAME"
102 echo " --enable-encoder=NAME enables encoder NAME"
103 echo " --disable-decoder=NAME disables decoder NAME"
104 echo " --enable-decoder=NAME enables decoder NAME"
105 echo " --disable-encoders disables all encoders"
106 echo " --disable-decoders disables all decoders"
107 echo " --disable-muxer=NAME disables muxer NAME"
108 echo " --enable-muxer=NAME enables muxer NAME"
109 echo " --disable-muxers disables all muxers"
110 echo " --disable-demuxer=NAME disables demuxer NAME"
111 echo " --enable-demuxer=NAME enables demuxer NAME"
112 echo " --disable-demuxers disables all demuxers"
113 echo " --enable-parser=NAME enables parser NAME"
114 echo " --disable-parser=NAME disables parser NAME"
115 echo " --disable-parsers disables all parsers"
117 echo "NOTE: Object files are built at the place where configure is launched."
139 If you think configure made a mistake, make sure you are using the latest
140 version from SVN. If the latest version fails, report the problem to the
141 ffmpeg-devel@mplayerhq.hu mailing list or IRC #ffmpeg on irc.freenode.net.
143 if enabled logging
; then
145 Include the log file "$logfile" produced by configure as this will help
150 Rerun configure with logging enabled (do not use --log=no), and include the
151 log this produces with your report.
154 rm -f
$TMPC $TMPO $TMPE $TMPS $TMPH
159 eval test "\$$1" = "yes"
163 (: ${SAVE_CFLAGS?}) 2>/dev
/null
167 flags_saved
&& return
168 SAVE_CFLAGS
="$CFLAGS"
169 SAVE_LDFLAGS
="$LDFLAGS"
170 SAVE_extralibs
="$extralibs"
174 CFLAGS
="$SAVE_CFLAGS"
175 LDFLAGS
="$SAVE_LDFLAGS"
176 extralibs
="$SAVE_extralibs"
189 LDFLAGS
="$LDFLAGS $*"
194 extralibs
="$extralibs $*"
200 flags_saved
&& eval "SAVE_$var=\"\$SAVE_$var $*\""
201 eval "$var=\"\$$var $*\""
213 append extralibs
"$@"
220 log
$cc $CFLAGS "$@" -c
-o
$TMPO $TMPC
221 $cc $CFLAGS "$@" -c
-o
$TMPO $TMPC >>$logfile 2>&1
228 log
$cc $CFLAGS "$@" -E
-o
$TMPO $TMPC
229 $cc $CFLAGS "$@" -E
-o
$TMPO $TMPC >>$logfile 2>&1
235 log
$cc $LDFLAGS "$@" -o
$TMPE $TMPO $extralibs
236 $cc $LDFLAGS "$@" -o
$TMPE $TMPO $extralibs >>$logfile 2>&1
240 log check_cflags
"$@"
241 check_cc
"$@" <<EOF && add_cflags "$@"
247 log check_ldflags
"$@"
248 check_ld
"$@" <<EOF && add_ldflags "$@"
256 log check_header
"$@"
283 check_header
$header && check_func
$func && add_extralibs
"$@"
290 check_ld
"$@" && { test "$cross_compile" = yes ||
$TMPE >>$logfile 2>&1; }
298 check_lib
$header $func "$@" || die
"ERROR: $name not found"
304 echo "$@" |
sed "s%\\<$pattern\\>%%g"
307 # set temporary file name
308 if test ! -z
"$TMPDIR" ; then
310 elif test ! -z
"$TEMPDIR" ; then
316 TMPC
="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.c"
317 TMPO
="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.o"
318 TMPE
="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}"
319 TMPS
="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.S"
320 TMPH
="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.h"
326 libdir
='${PREFIX}/lib'
328 incdir
='${PREFIX}/include/ffmpeg'
329 mandir
='${PREFIX}/man'
330 bindir
='${PREFIX}/bin'
346 i386|i486|i586|i686|i86pc|BePC
)
351 canon_arch
="`cc -dumpmachine | sed -e 's,\([^-]*\)-.*,\1,'`"
352 if [ x
"$canon_arch" = x
"x86_64" -o x
"$canon_arch" = x
"amd64" ]; then
353 if [ -z
"`echo $CFLAGS | grep -- -m32`" ]; then
358 # armv4l is a subset of armv5tel
365 "Power Macintosh"|ppc|ppc64|powerpc
)
438 SHFLAGS
='-shared -Wl,-soname,$@'
439 VHOOKFLAGS
="$SHFLAGS"
446 FFLDFLAGS
=-Wl
,--warn-common
447 FFSERVERLDFLAGS
=-Wl
,-E
451 LIB
='$(LIBPREF)$(NAME)$(LIBSUF)'
454 SLIBNAME
='$(SLIBPREF)$(NAME)$(SLIBSUF)'
455 SLIBNAME_WITH_VERSION
='$(SLIBNAME).$(LIBVERSION)'
456 SLIBNAME_WITH_MAJOR
='$(SLIBNAME).$(LIBMAJOR)'
472 PREFIX
="/boot/home/config"
473 # helps building libavcodec
474 CFLAGS
="$CFLAGS -DPIC -fomit-frame-pointer"
475 # 3 gcc releases known for BeOS, each with ugly bugs
476 gcc_version
="`$cc -v 2>&1 | grep version | cut -d ' ' -f3-`"
477 case "$gcc_version" in
478 2.9-beos-991026
*|
2.9-beos-000224
*) echo "R5/GG gcc"
481 *20010315*) echo "BeBits gcc"
482 CFLAGS
="$CFLAGS -fno-expensive-optimizations"
486 # disable Linux things
493 # no need for libm, but the inet stuff
495 if (echo $BEINCLUDES|
grep 'headers/be/bone' >/dev
/null
); then
496 extralibs
="-lbind -lsocket"
510 SHFLAGS
="-shared -Wl,-h,\$@"
512 extralibs
="$extralibs -lsocket -lnsl"
521 extralibs
="$extralibs -lossaudio"
530 LIBOBJFLAGS
="\$(PIC)"
531 LDCONFIG
="ldconfig -m \$(libdir)"
532 extralibs
="$extralibs -lossaudio"
541 CFLAGS
="$CFLAGS -pthread"
549 CFLAGS
="$CFLAGS -pthread"
557 extralibs
="-lpoll -lgnugetopt -lm"
568 SHFLAGS
="-dynamiclib -Wl,-single_module -Wl,-install_name,\$(libdir)/\$(SLIBNAME),-current_version,\$(SPPVERSION),-compatibility_version,\$(SPPVERSION)"
569 VHOOKFLAGS
='-dynamiclib -Wl,-single_module -flat_namespace -undefined suppress -Wl,-install_name,$(libdir)/vhook/$@'
573 FFLDFLAGS
="-Wl,-dynamic,-search_paths_first"
575 SLIBNAME_WITH_FULLVERSION
='$(SLIBPREF)$(NAME).$(LIBVERSION)$(SLIBSUF)'
576 SLIBNAME_WITH_MAJOR
='$(SLIBPREF)$(NAME).$(LIBMAJOR)$(SLIBSUF)'
577 FFSERVERLDFLAGS
=-Wl
,-bind_at_load
580 # Note: the rest of the mingw32 config is done afterwards as mingw32
581 # can be forced on the command line for Linux cross compilation.
586 shlibdir
='${PREFIX}/bin'
596 SLIBNAME_WITH_VERSION
='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
597 SLIBNAME_WITH_MAJOR
='$(SLIBPREF)$(NAME)-$(LIBMAJOR)$(SLIBSUF)'
598 SHFLAGS
='-shared -Wl,--out-implib=lib$(NAME).dll.a'
604 ranlib
="echo ignoring ranlib"
613 ranlib
="echo ignoring ranlib"
614 strip
="echo ignoring strip"
615 CFLAGS
="$CFLAGS -Zomf"
616 FFLDFLAGS
="-Zomf -Zstack 16384 -s"
617 SHFLAGS
="-Zdll -Zomf"
636 targetos
="${targetos}-UNKNOWN"
641 source_path
="`dirname $0`"
642 source_path_used
="yes"
643 if test -z
"$source_path" -o
"$source_path" = "." ; then
645 source_path_used
="no"
647 source_path
="`cd \"$source_path\"; pwd`"
650 if test x
"$1" = x
"-h" -o x
"$1" = x
"--help" ; then
654 FFMPEG_CONFIGURATION
=" "
656 FFMPEG_CONFIGURATION
="$FFMPEG_CONFIGURATION""$opt "
659 ENCODER_LIST
=`grep 'register_avcodec(&[a-z0-9_]*_encoder)' $source_path/libavcodec/allcodecs.c | sed 's/.*&\(.*\)).*/\1/'`
660 DECODER_LIST
=`grep 'register_avcodec(&[a-z0-9_]*_decoder)' $source_path/libavcodec/allcodecs.c | sed 's/.*&\(.*\)).*/\1/'`
661 PARSER_LIST
=`grep 'av_register_codec_parser(&[a-z]' $source_path/libavcodec/allcodecs.c | sed 's/.*&\(.*\)).*/\1/'`
662 MUXER_LIST
=`grep 'av_register_output_format(&[a-z]' $source_path/libavformat/allformats.c | sed 's/.*&\(.*\)).*/\1/'`
663 DEMUXER_LIST
=`grep 'av_register_input_format(&[a-z]' $source_path/libavformat/allformats.c | sed 's/.*&\(.*\)).*/\1/'`
670 --log
=*) logging
="$optval"
672 --prefix
=*) PREFIX
="$optval"; force_prefix
=yes
674 --libdir
=*) libdir
="$optval"; force_libdir
=yes
676 --shlibdir
=*) shlibdir
="$optval"
678 --incdir
=*) incdir
="$optval"
680 --mandir
=*) mandir
="$optval"
682 --source-path
=*) source_path
="$optval"
684 --cross-prefix
=*) cross_prefix
="$optval"
686 --cross-compile
) cross_compile
=yes
690 --make=*) make="$optval"
692 --extra-cflags
=*) CFLAGS
="$CFLAGS $optval"
694 --extra-ldflags
=*) EXTRALDFLAGS
="$optval"
696 --extra-libs
=*) extralibs
="$optval"
698 --build-suffix
=*) BUILDSUF
="$optval"
700 --cpu
=*) cpu
="$optval"
702 --tune
=*) tune
="$optval"
704 --powerpc-perf-enable
) powerpc_perf
="yes"
706 --disable-mmx
) mmx
="no"
708 --disable-iwmmxt
) iwmmxt
="no"
710 --disable-altivec
) altivec
="no"
712 --enable-gprof
) gprof
="yes"
714 --disable-v4l
) v4l
="no"
716 --disable-v4l2
) v4l2
="no"
718 --disable-bktr
) bktr
="no"
720 --disable-audio-oss
) audio_oss
="no"
722 --disable-audio-beos
) audio_beos
="no"
724 --disable-dv1394
) dv1394
="no"
726 --disable-network
) network
="no"; ffserver
="no"
728 --disable-zlib
) zlib
="no"
730 --enable-a52
) a52
="yes"
732 --enable-a52bin
) a52bin
="yes"
734 --enable-dts
) dts
="yes"
736 --enable-pp
) pp
="yes"
738 --enable-libgsm
) libgsm
="yes"
740 --enable-mp3lame
) mp3lame
="yes"
742 --enable-libogg
) libogg
="yes"
743 pkg_requires
="$pkg_requires ogg >= 1.1"
745 --enable-vorbis
) vorbis
="yes"
746 pkg_requires
="$pkg_requires vorbis vorbisenc"
748 --enable-faad
) faad
="yes"
750 --enable-faadbin
) faadbin
="yes"
752 --enable-faac
) faac
="yes"
754 --enable-xvid
) xvid
="yes"
756 --enable-x264
) x264
="yes"
758 --enable-dc1394
) dc1394
="yes"
759 pkg_requires
="$pkg_requires libraw1394"
761 --disable-vhook
) vhook
="no"
763 --disable-simple_idct
) simpleidct
="no"
765 --enable-mingw32
) mingw32
="yes"
767 --enable-mingwce
) mingwce
="yes"
769 --enable-static
) lstatic
="yes"
771 --disable-static
) lstatic
="no"
773 --enable-shared
) lshared
="yes"
775 --disable-shared
) lshared
="no"
777 --disable-debug
) debug
="no"
779 --disable-opts
) optimize
="no"
781 --disable-mpegaudio-hp
) mpegaudio_hp
="no"
783 --disable-protocols
) protocols
="no"; network
="no"; ffserver
="no"
785 --disable-ffserver
) ffserver
="no"
787 --disable-ffplay
) ffplay
="no"
789 --enable-small
) optimize
="small"
791 --enable-amr_nb
) amr
="yes"; amr_nb
="yes"; amr_nb_fixed
="no"
793 --enable-amr_nb-fixed
) amr
="yes"; amr_nb_fixed
="yes"; amr_nb
="no"
795 --enable-amr_wb
) amr
="yes"; amr_wb
="yes"
797 --enable-amr_if2
) amr
="yes"; amr_if2
="yes"
799 --enable-sunmlib
) sunmlib
="yes"
801 --enable-pthreads
) pthreads
="yes"
803 --enable-gpl
) gpl
="yes"
805 --enable-memalign-hack
) memalignhack
="yes"
807 --disable-strip
) dostrip
="no"
809 --enable-encoder
=*) ENCODER_LIST
="$ENCODER_LIST ${optval}_encoder"
811 --enable-decoder
=*) DECODER_LIST
="$DECODER_LIST ${optval}_decoder"
813 --disable-encoder
=*) ENCODER_LIST
="`filter_out ${optval}_encoder $ENCODER_LIST`"
815 --disable-decoder
=*) DECODER_LIST
="`filter_out ${optval}_decoder $DECODER_LIST`"
817 --disable-encoders
) ENCODER_LIST
=""
819 --disable-decoders
) DECODER_LIST
=""
821 --enable-muxer
=*) MUXER_LIST
="$MUXER_LIST ${optval}_muxer"
823 --disable-muxer
=*) MUXER_LIST
="`filter_out ${optval}_muxer $MUXER_LIST`"
825 --disable-muxers
) MUXER_LIST
=""; ffserver
="no"
827 --enable-demuxer
=*) DEMUXER_LIST
="$DEMUXER_LIST ${optval}_demuxer"
829 --disable-demuxer
=*) DEMUXER_LIST
="`filter_out ${optval}_demuxer $DEMUXER_LIST`"
831 --disable-demuxers
) DEMUXER_LIST
=""
833 --enable-parser
=*) PARSER_LIST
="$PARSER_LIST ${optval}_parser"
835 --disable-parser
=*) PARSER_LIST
="`filter_out ${optval}_parser $PARSER_LIST`"
837 --disable-parsers
) PARSER_LIST
=""
842 echo "Unknown option \"$opt\"."
843 echo "See $0 --help for available options."
849 if test "$logging" != no
; then
850 test "$logging" = yes || logfile
="$logging"
851 echo "# $0 $@" >$logfile
857 if test "$mingw32" = "yes" -o
"$mingwce" = "yes"; then
858 if test "$lshared" = "yes" && test "$lstatic" = "yes" ; then
860 You can only build one library type at once on MinGW.
861 Specify --disable-static --enable-shared to only build
862 the shared libraries. To build only the static libraries
863 you do not need to pass additional options.
875 if test "$mingwce" = "yes"; then
878 FFLDFLAGS
='-Wl,--output-def,$(@:.dll=.def),--out-implib,lib$(SLIBNAME:$(SLIBSUF)=.dll.a)'
882 SLIBNAME_WITH_VERSION
='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
883 SLIBNAME_WITH_MAJOR
='$(SLIBPREF)$(NAME)-$(LIBMAJOR)$(SLIBSUF)'
884 if test "$force_prefix" != yes; then PREFIX
="$PROGRAMFILES/FFmpeg"; fi
885 if test "$force_libdir" != yes; then bindir
="$PREFIX"; fi
888 # Combine FFLDFLAGS, EXTRALDFLAGS and the LDFLAGS environment variable.
889 LDFLAGS
="$FFLDFLAGS $EXTRALDFLAGS $LDFLAGS"
891 test -n
"$cross_prefix" && cross_compile
=yes
892 cc
="${cross_prefix}${cc}"
893 ar="${cross_prefix}${ar}"
894 ranlib
="${cross_prefix}${ranlib}"
895 strip
="${cross_prefix}${strip}"
897 # we need to build at least one lib type
898 if test "$lstatic" = "no" && test "$lshared" = "no" ; then
900 At least one library type must be built.
901 Specify --enable-static to build the static libraries or --enable-shared to
902 build the shared libraries as well. To only build the shared libraries specify
903 --disable-static in addition to --enable-shared.
908 if test "$theora" = "yes" ; then
909 if test "$libogg" = "no"; then
910 echo "libogg must be enabled to enable Theora."
916 if test "$vorbis" = "yes" ; then
917 if test "$libogg" = "no"; then
918 echo "libogg must be enabled to enable Vorbis."
924 if test "$gpl" != "yes"; then
925 if test "$pp" != "no"; then
926 echo "The Postprocessing code is under GPL and --enable-gpl is not specified."
930 if test "$a52" != "no" -o
"$a52bin" != "no"; then
931 echo "liba52 is under GPL and --enable-gpl is not specified."
935 if test "$xvid" != "no"; then
936 echo "libxvidcore is under GPL and --enable-gpl is not specified."
940 if test "$x264" != "no"; then
941 echo "x264 is under GPL and --enable-gpl is not specified."
945 if test "$dts" != "no"; then
946 echo "libdts is under GPL and --enable-gpl is not specified."
950 if test "$faad" != "no" -o
"$faadbin" != "no"; then
951 if check_header faad.h
; then
954 #ifndef FAAD2_VERSION
957 int main( void ) { return 0; }
959 if test $?
= 0 ; then
960 echo "FAAD2 is under GPL and --enable-gpl is not specified."
966 echo "FAAD test failed."
971 if test "$fail" = "yes"; then
977 if test $mmx = "default"; then
978 if test $cpu = "x86" -o
$cpu = "x86_64"; then
985 # check iwmmxt support
986 if test $iwmmxt = "default" -a
$cpu = "armv4l"; then
988 check_cc
<<EOF && iwmmxt=yes
990 __asm__ __volatile__ ("wunpckelub wr6, wr4");
996 needmdynamicnopic
="no"
997 if test $targetos = Darwin
; then
998 if test -n
"`$cc -v 2>&1 | grep xlc`"; then
999 CFLAGS
="$CFLAGS -qpdf2 -qlanglvl=extc99 -qmaxmem=-1 -qarch=auto -qtune=auto"
1001 gcc_version
="`$cc -v 2>&1 | grep version | cut -d ' ' -f3-`"
1002 case "$gcc_version" in
1004 CFLAGS
="$CFLAGS -no-cpp-precomp -pipe"
1007 CFLAGS
="$CFLAGS -no-cpp-precomp -pipe -force_cpusubtype_ALL -Wno-sign-compare"
1008 if test "$lshared" = no
; then
1009 needmdynamicnopic
="yes"
1013 CFLAGS
="$CFLAGS -no-cpp-precomp -pipe"
1014 if test "$lshared" = no
; then
1015 needmdynamicnopic
="yes"
1020 if test $optimize != "no"; then
1021 CFLAGS
="$CFLAGS -fomit-frame-pointer"
1025 # Can only do AltiVec on PowerPC
1026 if test $altivec = "default"; then
1027 if test $cpu = "powerpc"; then
1034 # Add processor-specific flags
1036 POWERPCMODE
="32bits"
1037 if test $tune != "generic"; then
1039 601|ppc601|PowerPC601
)
1040 CFLAGS
="$CFLAGS -mcpu=601"
1041 if test $altivec = "yes"; then
1042 echo "WARNING: Tuning for PPC601 but AltiVec enabled!";
1046 603*|ppc603
*|PowerPC603
*)
1047 CFLAGS
="$CFLAGS -mcpu=603"
1048 if test $altivec = "yes"; then
1049 echo "WARNING: Tuning for PPC603 but AltiVec enabled!";
1053 604*|ppc604
*|PowerPC604
*)
1054 CFLAGS
="$CFLAGS -mcpu=604"
1055 if test $altivec = "yes"; then
1056 echo "WARNING: Tuning for PPC604 but AltiVec enabled!";
1060 G3|g3|
75*|ppc75
*|PowerPC75
*)
1061 CFLAGS
="$CFLAGS -mcpu=750 -mtune=750 -mpowerpc-gfxopt"
1062 if test $altivec = "yes"; then
1063 echo "WARNING: Tuning for PPC75x but AltiVec enabled!";
1067 G4|g4|
745*|ppc745
*|PowerPC745
*)
1068 CFLAGS
="$CFLAGS -mcpu=7450 -mtune=7450 -mpowerpc-gfxopt"
1069 if test $altivec = "no"; then
1070 echo "WARNING: Tuning for PPC745x but AltiVec disabled!";
1074 74*|ppc74
*|PowerPC74
*)
1075 CFLAGS
="$CFLAGS -mcpu=7400 -mtune=7400 -mpowerpc-gfxopt"
1076 if test $altivec = "no"; then
1077 echo "WARNING: Tuning for PPC74xx but AltiVec disabled!";
1081 G5|g5|
970|ppc970|PowerPC970|power4
*|Power4
*)
1082 CFLAGS
="$CFLAGS -mcpu=970 -mtune=970 -mpowerpc-gfxopt -mpowerpc64"
1083 if test $altivec = "no"; then
1084 echo "WARNING: Tuning for PPC970 but AltiVec disabled!";
1087 POWERPCMODE
="64bits"
1089 i
[3456]86|pentium|pentiumpro|pentium-mmx|pentium
[234]|prescott|k6|k6-
[23]|athlon|athlon-tbird|athlon-4|athlon-
[mx
]p|winchip-c6|winchip2|c3|nocona|athlon64|k8|opteron|athlon-fx
)
1090 CFLAGS
="$CFLAGS -march=$tune"
1093 CFLAGS
="$CFLAGS -mcpu=v9 -mtune=v9"
1096 echo "WARNING: Unknown CPU \"$tune\", ignored."
1101 # compiler sanity check
1107 if test "$?" != 0; then
1108 echo "$cc is unable to create an executable file."
1109 if test -z
"$cross_prefix" -a
"$cross_compile" = no
; then
1110 echo "If $cc is a cross-compiler, use the --cross-compile option."
1112 die
"C compiler test failed."
1115 # check for SIMD availability
1117 # AltiVec flags: The FSF version of GCC differs from the Apple version
1118 if test $cpu = "powerpc"; then
1119 if test $altivec = "yes"; then
1120 if test -n
"`$cc -v 2>&1 | grep version | grep Apple`"; then
1121 CFLAGS
="$CFLAGS -faltivec"
1123 CFLAGS
="$CFLAGS -maltivec -mabi=altivec"
1128 check_header altivec.h
&& _altivec_h
=yes || _altivec_h
=no
1130 # check if our compiler supports Motorola AltiVec C API
1131 if test $altivec = "yes"; then
1132 if test $_altivec_h = "yes"; then
1133 inc_altivec_h
="#include <altivec.h>"
1137 check_cc
<<EOF || altivec=no
1140 vector signed int v1, v2, v3;
1141 v1 = vec_add(v2,v3);
1147 # mmi only available on mips
1148 if test $mmi = "default"; then
1149 if test $cpu = "mips"; then
1156 # check if our compiler supports mmi
1157 enabled mmi
&& check_cc
<<EOF || mmi="no"
1159 __asm__ ("lq \$2, 0(\$2)");
1164 # test gcc version to see if vector builtins can be used
1165 # currently only used on i386 for MMX builtins
1166 check_cc
-msse
<<EOF && builtin_vector=yes || builtin_vector=no
1167 #include <xmmintrin.h>
1169 #if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 2)
1172 #error no vector builtins
1177 # test for mm3dnow.h
1178 test "$cpu" = "x86_64" && march
=k8 || march
=athlon
1179 check_cc
-march
=$march <<EOF && mm3dnow=yes || mm3dnow=no
1180 #include <mm3dnow.h>
1190 # big/little-endian test
1191 if test "$cross_compile" = "no"; then
1192 check_ld
<<EOF || die "endian test failed" && $TMPE && bigendian="yes"
1193 #include <inttypes.h>
1194 int main(int argc, char ** argv){
1195 volatile uint32_t i=0x01234567;
1196 return (*((uint8_t*)(&i))) == 0x67;
1200 # programs cannot be launched if cross compiling, so make a static guess
1201 if test "$cpu" = "powerpc" -o
"$cpu" = "mips" ; then
1208 check_header inttypes.h || inttypes
=no
1212 check_cc
<<EOF || emu_fast_int=yes
1213 #include <inttypes.h>
1214 int main(int argc, char ** argv){
1215 volatile uint_fast64_t i=0x01234567;
1221 # check availability of some header files
1225 if check_header malloc.h
; then
1228 check_func memalign || _memalign
="no"
1231 if test "$_memalign" = "no" -a
"$mmx" = "yes" -a \
1232 "$memalignhack" != "yes" -a
"$targetos" != "Darwin" ; then
1233 die
"Error, no memalign() but SSE enabled, disable it or use --enable-memalign-hack."
1236 check_func localtime_r
&& localtime_r
=yes || localtime_r
=no
1237 enabled zlib
&& check_lib zlib.h zlibVersion
-lz || zlib
="no"
1239 # check for some common methods of building with pthread support
1240 # do this before the optional library checks as some of them require pthreads
1241 if enabled pthreads
; then
1242 { check_cflags
-pthread
&& check_ldflags
-pthread
; } ||
1243 { check_cflags
-pthreads
&& check_ldflags
-pthreads
; } ||
1244 check_lib pthread.h pthread_create
-lpthread ||
1245 check_func pthread_create ||
1246 die
"ERROR: can't find pthreads library"
1249 # these are off by default, so fail if requested and not available
1250 enabled dts
&& require libdts dts.h dts_init
-ldts
1251 enabled libgsm
&& require libgsm gsm.h gsm_create
-lgsm
1252 enabled mp3lame
&& require LAME lame
/lame.h lame_init
-lmp3lame
1253 enabled vorbis
&& require libvorbis vorbis
/vorbisenc.h vorbis_info_init
-lvorbis
-lvorbisenc
-logg
1254 enabled libogg
&& require libogg ogg
/ogg.h ogg_sync_init
-logg
1255 enabled theora
&& require libtheora theora
/theora.h theora_info_init
-ltheora
1256 enabled xvid
&& require XviD xvid.h xvid_global
-lxvidcore
1257 enabled x264
&& require x264 x264.h x264_encoder_open
-lx264
1258 enabled dc1394
&& require libdc1394 libdc1394
/dc1394_control.h dc1394_create_handle
-ldc1394_control
-lraw1394
1259 enabled sunmlib
&& require mediaLib mlib_types.h mlib_VectorSub_S16_U8_Mod
-lmlib
1261 # Ugh, faac uses stdcall calling convention on win32 so we can't use
1262 # the generic test functions
1263 if enabled faac
; then
1265 temp_extralibs
-lfaac
1266 check_ld
<<EOF && add_extralibs -lfaac || die "ERROR: libfaac not found"
1271 faacEncGetVersion(&id, &cpr);
1278 # Ugh, recent faad2 versions have renamed all functions and #define the
1279 # old names in faad.h. Generic tests won't work.
1280 if enabled faad
; then
1282 temp_extralibs
-lfaad
1283 check_ld
<<EOF && add_extralibs -lfaad || die "ERROR: libfaad not found"
1293 # test for lrintf in math.h
1294 check_exec
<<EOF && have_lrintf=yes || have_lrintf=no
1295 #define _ISOC9X_SOURCE 1
1297 int main( void ) { return (lrintf(3.999f) > 0)?0:1; }
1301 for restrict_keyword
in restrict __restrict__ __restrict
; do
1302 check_cc
<<EOF && _restrict=$restrict_keyword && break
1303 void foo(char * $restrict_keyword p);
1307 # dlopen/dlfcn.h probing
1309 check_header dlfcn.h
&& dlfcn
=yes
1312 if check_func dlopen
; then
1318 if check_func dlopen
; then
1323 if test "$vhook" = "default"; then
1327 if test "$vhook" = "yes" -o
"$a52bin" = "yes" -o
"$faadbin" = "yes"; then
1331 if enabled vhook
; then
1332 check_ldflags
-rdynamic
1333 check_ldflags
-export-dynamic
1336 ##########################################
1339 temp_extralibs
-lImlib2
1340 check_ld
<<EOF && imlib2=yes || imlib2=no
1341 #include <X11/Xlib.h>
1343 int main( void ) { return (int) imlib_load_font("foo"); }
1347 ##########################################
1351 if test "x$targetos" != "xBeOS"; then
1352 if (freetype-config
--version
) >/dev
/null
2>&1 ; then
1353 temp_cflags
`freetype-config --cflags`
1354 temp_extralibs
`freetype-config --libs`
1355 check_ld
<<EOF && freetype2=yes
1356 #include <ft2build.h>
1357 int main( void ) { return (int) FT_Init_FreeType(0); }
1363 ##########################################
1368 SDL_CONFIG
="${cross_prefix}sdl-config"
1369 if ("${SDL_CONFIG}" --version
) >/dev
/null
2>&1 ; then
1370 temp_cflags
`"${SDL_CONFIG}" --cflags`
1371 temp_extralibs
`"${SDL_CONFIG}" --libs`
1374 #undef main /* We don't want SDL to override our main() */
1375 int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
1377 if test $?
= 0; then
1378 _sdlversion
=`"${SDL_CONFIG}" --version | sed 's/[^0-9]//g'`
1379 if test "$_sdlversion" -lt
121 ; then
1383 check_cc
<<EOF && sdl_video_size=yes || sdl_video_size=no
1386 const SDL_VideoInfo *vi = SDL_GetVideoInfo();
1387 int w = vi->current_w;
1396 enabled sdl || ffplay
=no
1398 ##########################################
1402 if (texi2html
-version
) >/dev
/null
2>&1; then
1406 ##########################################
1409 enabled network
&& check_ld
<<EOF && ipv6=yes || ipv6=no
1410 #include <sys/types.h>
1411 #include <sys/socket.h>
1412 #include <netinet/in.h>
1415 struct sockaddr_storage saddr;
1416 struct ipv6_mreq mreq6;
1417 getaddrinfo(0,0,0,0);
1418 getnameinfo(0,0,0,0,0,0,0);
1419 IN6_IS_ADDR_MULTICAST((const struct in6_addr *)0);
1423 # check for video4linux2 --- V4L2_PIX_FMT_YUV420
1424 enabled v4l2
&& check_cc
<<EOF || v4l2="no"
1425 #include <sys/time.h>
1426 #include <asm/types.h>
1427 #include <linux/videodev2.h>
1428 int dummy = V4L2_PIX_FMT_YUV420;
1429 struct v4l2_buffer dummy1;
1432 enabled debug
&& add_cflags
-g
1434 # add some useful compiler flags if supported
1435 check_cflags
-Wdeclaration-after-statement
1437 check_cflags
-Wno-switch
1439 # add some linker flags
1440 check_ldflags
'-Wl,--as-needed' '-Wl,-rpath-link,\$(BUILD_ROOT)/libavcodec' '-Wl,-rpath-link,\$(BUILD_ROOT)/libavformat' '-Wl,-rpath-link,\$(BUILD_ROOT)/libavutil'
1442 # not all compilers support -Os
1443 test "$optimize" = "small" && check_cflags
-Os
1445 if enabled optimize
; then
1446 if test -n
"`$cc -v 2>&1 | grep xlc`"; then
1447 CFLAGS
="$CFLAGS -O5"
1448 LDFLAGS
="$LDFLAGS -O5"
1450 CFLAGS
="-O3 $CFLAGS"
1454 # PIC flags for shared library objects where they are needed
1455 if test "$lshared" = "yes" ; then
1456 # LIBOBJFLAGS may have already been set in the OS configuration
1457 if test -z
"$LIBOBJFLAGS" ; then
1459 x86_64|ia64|alpha|sparc
*) LIBOBJFLAGS
="\$(PIC)" ;;
1464 if test "$gprof" = "yes" ; then
1466 LDFLAGS
="$LDFLAGS -p"
1469 echo "install prefix $PREFIX"
1470 echo "source path $source_path"
1471 echo "C compiler $cc"
1473 echo "CPU $cpu ($tune)"
1474 if test "$BUILDSUF" != ""; then
1475 echo "build suffix $BUILDSUF"
1477 echo "big-endian $bigendian"
1478 echo "inttypes.h $inttypes"
1479 echo "broken inttypes.h $emu_fast_int"
1480 if test $cpu = "x86" -o
$cpu = "x86_64"; then
1481 echo "MMX enabled $mmx"
1482 echo "Vector Builtins $builtin_vector"
1483 echo "3DNow! Builtins $mm3dnow"
1485 if test $cpu = "armv4l"; then
1486 echo "IWMMXT enabled $iwmmxt"
1488 if test $cpu = "mips"; then
1489 echo "MMI enabled $mmi"
1491 if test $cpu = "powerpc"; then
1492 echo "AltiVec enabled $altivec"
1494 echo "gprof enabled $gprof"
1495 echo "zlib enabled $zlib"
1496 echo "libgsm enabled $libgsm"
1497 echo "mp3lame enabled $mp3lame"
1498 echo "libogg enabled $libogg"
1499 echo "Vorbis enabled $vorbis"
1500 echo "FAAD enabled $faad"
1501 echo "faadbin enabled $faadbin"
1502 echo "FAAC enabled $faac"
1503 echo "XviD enabled $xvid"
1504 echo "x264 enabled $x264"
1505 echo "a52 support $a52"
1506 echo "a52 dlopened $a52bin"
1507 echo "DTS support $dts"
1508 echo "pp support $pp"
1509 echo "debug symbols $debug"
1510 echo "strip symbols $dostrip"
1511 echo "optimize $optimize"
1512 echo "static $lstatic"
1513 echo "shared $lshared"
1514 echo "video hooking $vhook"
1515 echo "SDL support $sdl"
1516 if test $sdl_too_old = "yes"; then
1517 echo "-> Your SDL version is too old - please upgrade to have FFplay/SDL support."
1520 if test "$vhook" = "yes"; then
1521 echo "Imlib2 support $imlib2"
1522 echo "FreeType support $freetype2"
1524 echo "Sun medialib support" $sunmlib
1525 echo "pthreads support" $pthreads
1526 echo "AMR-NB float support" $amr_nb
1527 echo "AMR-NB fixed support" $amr_nb_fixed
1528 echo "AMR-WB float support" $amr_wb
1529 echo "AMR-WB IF2 support" $amr_if2
1530 echo "network support $network"
1531 if test "$network" = "yes" ; then
1532 echo "IPv6 support $ipv6"
1534 if test "$gpl" = "no" ; then
1535 echo "License: LGPL"
1540 echo "Creating config.mak and config.h..."
1543 echo " $0 $FFMPEG_CONFIGURATION" >> config.log
1544 echo "# Automatically generated by configure - do not modify!" > config.mak
1545 echo "/* Automatically generated by configure - do not modify! */" > $TMPH
1546 echo "#define FFMPEG_CONFIGURATION "'"'"$FFMPEG_CONFIGURATION"'"' >> $TMPH
1548 echo "PREFIX=$PREFIX" >> config.mak
1549 echo "prefix=\$(DESTDIR)\${PREFIX}" >> config.mak
1550 echo "libdir=\$(DESTDIR)$libdir" >> config.mak
1551 echo "shlibdir=\$(DESTDIR)$shlibdir" >> config.mak
1552 echo "incdir=\$(DESTDIR)$incdir" >> config.mak
1553 echo "bindir=\$(DESTDIR)$bindir" >> config.mak
1554 echo "mandir=\$(DESTDIR)$mandir" >> config.mak
1555 echo "MAKE=$make" >> config.mak
1556 echo "CC=$cc" >> config.mak
1557 echo "AR=$ar" >> config.mak
1558 echo "RANLIB=$ranlib" >> config.mak
1559 if test "$dostrip" = "yes" ; then
1560 echo "STRIP=$strip" >> config.mak
1561 echo "INSTALLSTRIP=$installstrip" >> config.mak
1563 echo "STRIP=echo ignoring strip" >> config.mak
1564 echo "INSTALLSTRIP=" >> config.mak
1567 # SHCFLAGS is a copy of CFLAGS without -mdynamic-no-pic, used when building
1568 # shared modules on OS/X (vhook/Makefile).
1570 test "$needmdynamicnopic" = yes && add_cflags
-mdynamic-no-pic
1572 echo "OPTFLAGS=$CFLAGS" >> config.mak
1573 echo "SHCFLAGS=$SHCFLAGS">>config.mak
1574 echo "LDFLAGS=$LDFLAGS" >> config.mak
1575 echo "LDCONFIG=$LDCONFIG" >> config.mak
1576 echo "FFSERVERLDFLAGS=$FFSERVERLDFLAGS" >> config.mak
1577 echo "SHFLAGS=$SHFLAGS" >> config.mak
1578 echo "VHOOKFLAGS=$VHOOKFLAGS" >> config.mak
1579 echo "LIBOBJFLAGS=$LIBOBJFLAGS" >> config.mak
1580 echo "BUILD_STATIC=$lstatic" >> config.mak
1581 echo "BUILDSUF=$BUILDSUF" >> config.mak
1582 echo "LIBPREF=$LIBPREF" >> config.mak
1583 echo "LIBSUF=\${BUILDSUF}$LIBSUF" >> config.mak
1584 if test "$lstatic" = "yes" ; then
1585 echo "LIB=$LIB" >> config.mak
1586 else # Some Make complain if this variable does not exist.
1587 echo "LIB=" >> config.mak
1589 echo "SLIBPREF=$SLIBPREF" >> config.mak
1590 echo "SLIBSUF=\${BUILDSUF}$SLIBSUF" >> config.mak
1591 echo "EXESUF=\${BUILDSUF}$EXESUF" >> config.mak
1592 echo "TARGET_OS=$targetos" >> config.mak
1593 if test "$cpu" = "x86" ; then
1594 echo "TARGET_ARCH_X86=yes" >> config.mak
1595 echo "#define ARCH_X86 1" >> $TMPH
1596 elif test "$cpu" = "x86_64" ; then
1597 echo "TARGET_ARCH_X86_64=yes" >> config.mak
1598 echo "#define ARCH_X86_64 1" >> $TMPH
1599 elif test "$cpu" = "armv4l" ; then
1600 echo "TARGET_ARCH_ARMV4L=yes" >> config.mak
1601 echo "#define ARCH_ARMV4L 1" >> $TMPH
1602 elif test "$cpu" = "alpha" ; then
1603 echo "TARGET_ARCH_ALPHA=yes" >> config.mak
1604 echo "#define ARCH_ALPHA 1" >> $TMPH
1605 elif test "$cpu" = "sparc64" ; then
1606 echo "TARGET_ARCH_SPARC64=yes" >> config.mak
1607 echo "#define ARCH_SPARC64 1" >> $TMPH
1608 echo "TARGET_ARCH_SPARC=yes" >> config.mak
1609 echo "#define ARCH_SPARC 1" >> $TMPH
1610 elif test "$cpu" = "sparc" ; then
1611 echo "TARGET_ARCH_SPARC=yes" >> config.mak
1612 echo "#define ARCH_SPARC 1" >> $TMPH
1613 elif test "$cpu" = "powerpc" ; then
1614 echo "TARGET_ARCH_POWERPC=yes" >> config.mak
1615 echo "#define ARCH_POWERPC 1" >> $TMPH
1616 if test $POWERPCMODE = "32bits"; then
1617 echo "#define POWERPC_MODE_32BITS 1" >> $TMPH
1619 echo "#define POWERPC_MODE_64BITS 1" >> $TMPH
1621 if test "$powerpc_perf" = "yes"; then
1622 echo "#define POWERPC_PERFORMANCE_REPORT 1" >> $TMPH
1624 elif test "$cpu" = "mips" ; then
1625 echo "TARGET_ARCH_MIPS=yes" >> config.mak
1626 echo "#define ARCH_MIPS 1" >> $TMPH
1627 elif test "$cpu" = "sh4" ; then
1628 echo "TARGET_ARCH_SH4=yes" >> config.mak
1629 echo "#define ARCH_SH4 1" >> $TMPH
1630 elif test "$cpu" = "parisc" ; then
1631 echo "TARGET_ARCH_PARISC=yes" >> config.mak
1632 echo "#define ARCH_PARISC 1" >> $TMPH
1633 elif test "$cpu" = "s390" ; then
1634 echo "TARGET_ARCH_S390=yes" >> config.mak
1635 echo "#define ARCH_S390 1" >> $TMPH
1636 elif test "$cpu" = "m68k" ; then
1637 echo "TARGET_ARCH_M68K=yes" >> config.mak
1638 echo "#define ARCH_M68K 1" >> $TMPH
1639 elif test "$cpu" = "ia64" ; then
1640 echo "TARGET_ARCH_IA64=yes" >> config.mak
1641 echo "#define ARCH_IA64 1" >> $TMPH
1643 echo "#define TUNECPU $TUNECPU" >> $TMPH
1644 if test "$bigendian" = "yes" ; then
1645 echo "WORDS_BIGENDIAN=yes" >> config.mak
1646 echo "#define WORDS_BIGENDIAN 1" >> $TMPH
1648 if test "$inttypes" != "yes" ; then
1649 echo "#define EMULATE_INTTYPES 1" >> $TMPH
1651 if test "$emu_fast_int" = "yes" ; then
1652 echo "#define EMULATE_FAST_INT 1" >> $TMPH
1654 if test "$mmx" = "yes" ; then
1655 echo "TARGET_MMX=yes" >> config.mak
1656 echo "#define HAVE_MMX 1" >> $TMPH
1657 echo "#define __CPU__ 586" >> $TMPH
1659 if test "$builtin_vector" = "yes" ; then
1660 echo "TARGET_BUILTIN_VECTOR=yes" >> config.mak
1661 echo "#define HAVE_BUILTIN_VECTOR 1" >> $TMPH
1663 if test "$mm3dnow" = "yes" ; then
1664 echo "TARGET_BUILTIN_3DNOW=yes" >> config.mak
1665 echo "#define HAVE_MM3DNOW 1" >> $TMPH
1667 if test "$iwmmxt" = "yes" ; then
1668 echo "TARGET_IWMMXT=yes" >> config.mak
1669 echo "#define HAVE_IWMMXT 1" >> $TMPH
1671 if test "$mmi" = "yes" ; then
1672 echo "TARGET_MMI=yes" >> config.mak
1673 echo "#define HAVE_MMI 1" >> $TMPH
1675 if test "$altivec" = "yes" ; then
1676 echo "TARGET_ALTIVEC=yes" >> config.mak
1677 echo "#define HAVE_ALTIVEC 1" >> $TMPH
1678 echo "// Enable the next line to use the reference C code instead of AltiVec" >> $TMPH
1679 echo "// #define ALTIVEC_USE_REFERENCE_C_CODE 1" >> $TMPH
1680 if test "$_altivec_h" = "yes" ; then
1681 echo "#define HAVE_ALTIVEC_H 1" >> $TMPH
1683 echo "#undef HAVE_ALTIVEC_H" >> $TMPH
1686 if test "$gprof" = "yes" ; then
1687 echo "#define HAVE_GPROF 1" >> $TMPH
1689 if test "$localtime_r" = "yes" ; then
1690 echo "#define HAVE_LOCALTIME_R 1" >> $TMPH
1692 if test "$imlib2" = "yes" ; then
1693 echo "HAVE_IMLIB2=yes" >> config.mak
1695 if test "$freetype2" = "yes" ; then
1696 echo "HAVE_FREETYPE2=yes" >> config.mak
1698 if test "$sunmlib" = "yes" ; then
1699 echo "HAVE_MLIB=yes" >> config.mak
1700 echo "#define HAVE_MLIB 1" >> $TMPH
1702 if test "$pthreads" = "yes" ; then
1703 echo "HAVE_PTHREADS=yes" >> config.mak
1704 echo "#define HAVE_PTHREADS 1" >> $TMPH
1705 echo "#define HAVE_THREADS 1" >> $TMPH
1707 if test "$sdl" = "yes" ; then
1708 echo "CONFIG_SDL=yes" >> config.mak
1709 echo "SDL_LIBS=`"${SDL_CONFIG}" --libs`" >> config.mak
1710 echo "SDL_CFLAGS=`"${SDL_CONFIG}" --cflags`" >> config.mak
1711 if test "$sdl_video_size" = "yes"; then
1712 echo "#define HAVE_SDL_VIDEO_SIZE 1" >> $TMPH
1715 if test "$texi2html" = "yes"; then
1716 echo "BUILD_DOC=yes" >> config.mak
1718 if test "$have_lrintf" = "yes" ; then
1719 echo "#define HAVE_LRINTF 1" >> $TMPH
1721 if test "$vhook" = "yes" ; then
1722 echo "BUILD_VHOOK=yes" >> config.mak
1723 echo "#define HAVE_VHOOK 1" >> $TMPH
1726 pp_version
=`grep '#define LIBPOSTPROC_VERSION ' "$source_path/libpostproc/postprocess.h" | sed 's/[^0-9\.]//g'`
1727 lavc_version
=`grep '#define LIBAVCODEC_VERSION ' "$source_path/libavcodec/avcodec.h" | sed 's/[^0-9\.]//g'`
1728 lavf_version
=`grep '#define LIBAVFORMAT_VERSION ' "$source_path/libavformat/avformat.h" | sed 's/[^0-9\.]//g'`
1729 lavu_version
=`grep '#define LIBAVUTIL_VERSION ' "$source_path/libavutil/avutil.h" | sed 's/[^0-9\.]//g'`
1733 if test "$lshared" = "yes" ; then
1734 echo "#define BUILD_SHARED_AV 1" >> $TMPH
1735 echo "BUILD_SHARED=yes" >> config.mak
1736 echo "PIC=-fPIC -DPIC" >> config.mak
1737 echo "SPPMAJOR=${lavc_version%%.*}" >> config.mak
1738 echo "SPPVERSION=$lavc_version" >> config.mak
1739 echo "LAVCMAJOR=${lavc_version%%.*}" >> config.mak
1740 echo "LAVCVERSION=$lavc_version" >> config.mak
1741 echo "LAVFMAJOR=${lavf_version%%.*}" >> config.mak
1742 echo "LAVFVERSION=$lavf_version" >> config.mak
1743 echo "LAVUMAJOR=${lavu_version%%.*}" >> config.mak
1744 echo "LAVUVERSION=$lavu_version" >> config.mak
1745 echo "SLIBNAME=${SLIBNAME}" >> config.mak
1746 echo "SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}" >> config.mak
1747 echo "SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}" >> config.mak
1749 echo "EXTRALIBS=$extralibs" >> config.mak
1751 # If you do not want to use encoders, disable them.
1752 if echo "$ENCODER_LIST" |
grep -q encoder
; then
1753 echo "#define CONFIG_ENCODERS 1" >> $TMPH
1754 echo "CONFIG_ENCODERS=yes" >> config.mak
1757 # If you do not want to use decoders, disable them.
1758 if echo "$DECODER_LIST" |
grep -q decoder
; then
1759 echo "#define CONFIG_DECODERS 1" >> $TMPH
1760 echo "CONFIG_DECODERS=yes" >> config.mak
1764 if echo "$MUXER_LIST" |
grep -q muxer
; then
1765 echo "#define CONFIG_MUXERS 1" >> $TMPH
1766 echo "CONFIG_MUXERS=yes" >> config.mak
1770 if echo "$DEMUXER_LIST" |
grep -q demuxer
; then
1771 echo "#define CONFIG_DEMUXERS 1" >> $TMPH
1772 echo "CONFIG_DEMUXERS=yes" >> config.mak
1776 if test "$a52" = "yes" ; then
1777 echo "#define CONFIG_AC3 1" >> $TMPH
1778 echo "CONFIG_AC3=yes" >> config.mak
1780 if test "$a52bin" = "yes" ; then
1781 echo "#define CONFIG_A52BIN 1" >> $TMPH
1782 echo "CONFIG_A52BIN=yes" >> config.mak
1787 if test "$dts" = "yes" ; then
1788 echo "#define CONFIG_DTS 1" >> $TMPH
1789 echo "CONFIG_DTS=yes" >> config.mak
1793 if test "$pp" = "yes" ; then
1794 echo "#define CONFIG_PP 1" >> $TMPH
1795 echo "CONFIG_PP=yes" >> config.mak
1798 # MPEG audio high precision mode
1799 if test "$mpegaudio_hp" = "yes" ; then
1800 echo "#define CONFIG_MPEGAUDIO_HP 1" >> $TMPH
1803 if test "$v4l" = "yes" ; then
1804 echo "#define CONFIG_VIDEO4LINUX 1" >> $TMPH
1805 echo "CONFIG_VIDEO4LINUX=yes" >> config.mak
1808 if test "$v4l2" = "yes" ; then
1809 echo "#define CONFIG_VIDEO4LINUX2 1" >> $TMPH
1810 echo "CONFIG_VIDEO4LINUX2=yes" >> config.mak
1813 if test "$bktr" = "yes" ; then
1814 echo "#define CONFIG_BKTR 1" >> $TMPH
1815 echo "CONFIG_BKTR=yes" >> config.mak
1818 if test "$dv1394" = "yes" ; then
1819 echo "#define CONFIG_DV1394 1" >> $TMPH
1820 echo "CONFIG_DV1394=yes" >> config.mak
1823 if test "$dc1394" = "yes" ; then
1824 echo "#define CONFIG_DC1394 1" >> $TMPH
1825 echo "CONFIG_DC1394=yes" >> config.mak
1828 if test "$dlopen" = "yes" ; then
1829 echo "#define CONFIG_HAVE_DLOPEN 1" >> $TMPH
1832 if test "$dlfcn" = "yes" ; then
1833 echo "#define CONFIG_HAVE_DLFCN 1" >> $TMPH
1836 if test "$audio_oss" = "yes" ; then
1837 echo "#define CONFIG_AUDIO_OSS 1" >> $TMPH
1838 echo "CONFIG_AUDIO_OSS=yes" >> config.mak
1841 if test "$audio_beos" = "yes" ; then
1842 echo "#define CONFIG_AUDIO_BEOS 1" >> $TMPH
1843 echo "CONFIG_AUDIO_BEOS=yes" >> config.mak
1846 if test "$network" = "yes" ; then
1847 echo "#define CONFIG_NETWORK 1" >> $TMPH
1848 echo "CONFIG_NETWORK=yes" >> config.mak
1851 if test "$ipv6" = "yes" ; then
1852 echo "#define CONFIG_IPV6 1" >> $TMPH
1855 if test "$zlib" = "yes" ; then
1856 echo "#define CONFIG_ZLIB 1" >> $TMPH
1857 echo "CONFIG_ZLIB=yes" >> config.mak
1860 if test "$libgsm" = "yes" ; then
1861 echo "#define CONFIG_LIBGSM 1" >> $TMPH
1862 echo "CONFIG_LIBGSM=yes" >> config.mak
1865 if test "$mp3lame" = "yes" ; then
1866 echo "#define CONFIG_MP3LAME 1" >> $TMPH
1867 echo "CONFIG_MP3LAME=yes" >> config.mak
1870 if test "$libogg" = "yes" ; then
1871 echo "#define CONFIG_LIBOGG 1" >> $TMPH
1872 echo "CONFIG_LIBOGG=yes" >> config.mak
1875 if test "$vorbis" = "yes" ; then
1876 echo "#define CONFIG_LIBVORBIS 1" >> $TMPH
1877 echo "CONFIG_LIBVORBIS=yes" >> config.mak
1880 if test "$theora" = "yes" ; then
1881 echo "#define CONFIG_LIBTHEORA 1" >> $TMPH
1882 echo "CONFIG_LIBTHEORA=yes" >> config.mak
1885 if test "$faad" = "yes" ; then
1886 echo "#define CONFIG_FAAD 1" >> $TMPH
1887 echo "CONFIG_FAAD=yes" >> config.mak
1890 if test "$faadbin" = "yes" ; then
1891 echo "#define CONFIG_FAADBIN 1" >> $TMPH
1892 echo "CONFIG_FAADBIN=yes" >> config.mak
1895 if test "$faac" = "yes" ; then
1896 echo "#define CONFIG_FAAC 1" >> $TMPH
1897 echo "CONFIG_FAAC=yes" >> config.mak
1900 if test "$xvid" = "yes" ; then
1901 echo "#define CONFIG_XVID 1" >> $TMPH
1902 echo "CONFIG_XVID=yes" >> config.mak
1905 if test "$x264" = "yes" ; then
1906 echo "#define CONFIG_X264 1" >> $TMPH
1907 echo "CONFIG_X264=yes" >> config.mak
1910 if test "$mingw32" = "yes" ; then
1911 echo "CONFIG_MINGW=yes" >> config.mak
1912 echo "HAVE_W32THREADS=yes" >> config.mak
1913 echo "#define HAVE_W32THREADS 1" >> $TMPH
1914 echo "#define HAVE_THREADS 1" >> $TMPH
1915 echo "#ifndef __MINGW32__" >> $TMPH
1916 echo "#define __MINGW32__ 1" >> $TMPH
1917 echo "#endif" >> $TMPH
1920 if test "$mingwce" = "yes" ; then
1921 echo "CONFIG_MINGW=yes" >> config.mak
1922 echo "#define CONFIG_WINCE 1" >> $TMPH
1923 echo "CONFIG_WINCE=yes" >> config.mak
1924 echo "#ifndef __MINGW32__" >> $TMPH
1925 echo "#define __MINGW32__ 1" >> $TMPH
1926 echo "#endif" >> $TMPH
1929 if test "$os2" = "yes" ; then
1930 echo "#define CONFIG_OS2 1" >> $TMPH
1931 echo "CONFIG_OS2=yes" >> config.mak
1932 echo "HAVE_OS2THREADS=yes" >> config.mak
1933 echo "#define HAVE_OS2THREADS 1" >> $TMPH
1934 echo "#define HAVE_THREADS 1" >> $TMPH
1937 if test "$targetos" = "SunOS" ; then
1938 echo "#define CONFIG_SUNOS 1" >> $TMPH
1941 if test "$targetos" = "BeOS" ; then
1942 echo "HAVE_BEOSTHREADS=yes" >> config.mak
1943 echo "#define HAVE_BEOSTHREADS 1" >> $TMPH
1944 echo "#define HAVE_THREADS 1" >> $TMPH
1947 if test "$targetos" = "Darwin"; then
1948 echo "#define CONFIG_DARWIN 1" >> $TMPH
1949 echo "CONFIG_DARWIN=yes" >> config.mak
1952 if test "$_malloc_h" = "yes" ; then
1953 echo "#define HAVE_MALLOC_H 1" >> $TMPH
1955 echo "#undef HAVE_MALLOC_H" >> $TMPH
1958 if test "$_memalign" = "yes" ; then
1959 echo "#define HAVE_MEMALIGN 1" >> $TMPH
1961 echo "#undef HAVE_MEMALIGN" >> $TMPH
1964 if test "$memalignhack" = "yes" ; then
1965 echo "#define MEMALIGN_HACK 1" >> $TMPH
1969 if test "$netserver" = "yes" ; then
1970 echo "#define CONFIG_BEOS_NETSERVER 1" >> $TMPH
1971 echo "CONFIG_BEOS_NETSERVER=yes" >> config.mak
1974 if test "$need_inet_aton" = "yes" ; then
1975 echo "NEED_INET_ATON=yes" >> config.mak
1978 if test "$simpleidct" = "yes" ; then
1979 echo "#define SIMPLE_IDCT 1" >> $TMPH
1982 if test "$protocols" = "yes" ; then
1983 echo "#define CONFIG_PROTOCOLS 1" >> $TMPH
1984 echo "CONFIG_PROTOCOLS=yes" >> config.mak
1987 if test "$ffserver" = "yes" ; then
1988 echo "#define CONFIG_FFSERVER 1" >> $TMPH
1989 echo "CONFIG_FFSERVER=yes" >> config.mak
1992 if test "$ffplay" = "yes" ; then
1993 echo "CONFIG_FFPLAY=yes" >> config.mak
1996 if test "$gpl" = "yes" ; then
1997 echo "#define CONFIG_GPL 1" >> $TMPH
1998 echo "CONFIG_GPL=yes" >> config.mak
2001 echo "#define restrict $_restrict" >> $TMPH
2003 if test "$optimize" = "small"; then
2004 echo "#define always_inline" >> $TMPH
2005 echo "#define CONFIG_SMALL 1" >> $TMPH
2008 # build tree in object directory if source path is different from current one
2009 if test "$source_path_used" = "yes" ; then
2028 libavformat/Makefile \
2029 libavcodec/Makefile \
2030 libpostproc/Makefile \
2031 libavutil/Makefile \
2037 for dir
in $DIRS ; do
2040 for f
in $FILES ; do
2041 ln -sf
"$source_path/$f" $f
2044 echo "SRC_PATH=$source_path" >> config.mak
2045 echo "BUILD_ROOT=$PWD" >> config.mak
2047 if test "$amr" = "yes" ; then
2048 echo "#define CONFIG_AMR 1" >> $TMPH
2049 echo "CONFIG_AMR=yes" >> config.mak
2052 if test "$amr_wb" = "yes" ; then
2053 echo "#define CONFIG_AMR_WB 1" >> $TMPH
2054 echo "CONFIG_AMR_WB=yes" >> config.mak
2056 echo "AMR WB FLOAT NOTICE ! Make sure you have downloaded TS26.204"
2058 echo "http://www.3gpp.org/ftp/Specs/archive/26_series/26.204/26204-510.zip"
2059 echo "and extracted the source to libavcodec/amrwb_float"
2062 if test "$amr_nb" = "yes" ; then
2063 echo "#define CONFIG_AMR_NB 1" >> $TMPH
2064 echo "CONFIG_AMR_NB=yes" >> config.mak
2066 echo "AMR NB FLOAT NOTICE ! Make sure you have downloaded TS26.104"
2067 echo "REL-5 V5.1.0 from "
2068 echo "http://www.3gpp.org/ftp/Specs/archive/26_series/26.104/26104-510.zip"
2069 echo "and extracted the source to libavcodec/amr_float"
2070 echo "If you try this on alpha, you may need to change Word32 to int in amr/typedef.h"
2073 if test "$amr_nb_fixed" = "yes" ; then
2074 echo "#define CONFIG_AMR_NB_FIXED 1" >> $TMPH
2075 echo "CONFIG_AMR_NB_FIXED=yes" >> config.mak
2077 echo "AMR NB FIXED POINT NOTICE! Make sure you have downloaded TS26.073 "
2078 echo "REL-5 version 5.1.0 from "
2079 echo "http://www.3gpp.org/ftp/Specs/archive/26_series/26.073/26073-510.zip"
2080 echo "and extracted src to libavcodec/amr"
2081 echo "You must also add -DMMS_IO and remove -pedantic-errors to/from CFLAGS in libavcodec/amr/makefile."
2082 echo "i.e. CFLAGS = -Wall -I. \$(CFLAGS_\$(MODE)) -D\$(VAD) -DMMS_IO"
2085 if test "$amr_if2" = "yes" ; then
2086 echo "AMR_CFLAGS=-DIF2=1" >> config.mak
2090 for codec
in $DECODER_LIST $ENCODER_LIST $PARSER_LIST $DEMUXER_LIST $MUXER_LIST; do
2091 echo "#define CONFIG_`echo $codec | tr a-z A-Z` 1" >> $TMPH
2092 echo "CONFIG_`echo $codec | tr a-z A-Z`=yes" >> config.mak
2095 # Do not overwrite config.h if unchanged to avoid superfluous rebuilds.
2096 diff $TMPH config.h
>/dev
/null
2>&1
2097 if test "$?" != "0" ; then
2098 mv -f
$TMPH config.h
2100 echo "config.h is unchanged"
2103 rm -f
$TMPO $TMPC $TMPE $TMPS $TMPH
2106 # build pkg-config files libav*.pc and libpostproc.pc
2108 cat <<EOF >libavutil.pc
2110 exec_prefix=\${prefix}
2111 libdir=\${exec_prefix}/lib
2112 includedir=\${prefix}/include
2115 Description: FFmpeg utility library
2116 Version: $lavu_version
2119 Libs: -L\${libdir} -lavutil
2120 Cflags: -I\${includedir} -I\${includedir}/ffmpeg
2123 cat <<EOF >libavutil-uninstalled.pc
2126 libdir=\${pcfiledir}/libavutil
2127 includedir=\${pcfiledir}/libavutil
2130 Description: FFmpeg utility library
2131 Version: $lavu_version
2134 Libs: \${libdir}/${LIBPREF}avutil${LIBSUF}
2135 Cflags: -I\${includedir}
2139 cat <<EOF >libavcodec.pc
2141 exec_prefix=\${prefix}
2142 libdir=\${exec_prefix}/lib
2143 includedir=\${prefix}/include
2146 Description: FFmpeg codec library
2147 Version: $lavc_version
2148 Requires: $pkg_requires libavutil = $lavu_version
2150 Libs: -L\${libdir} -lavcodec $extralibs
2151 Cflags: -I\${includedir} -I\${includedir}/ffmpeg
2154 cat <<EOF >libavcodec-uninstalled.pc
2157 libdir=\${pcfiledir}/libavcodec
2158 includedir=\${pcfiledir}/libavcodec
2161 Description: FFmpeg codec library
2162 Version: $lavc_version
2163 Requires: $pkg_requires libavutil = $lavu_version
2165 Libs: \${libdir}/${LIBPREF}avcodec${LIBSUF} $extralibs
2166 Cflags: -I\${includedir}
2170 cat <<EOF >libavformat.pc
2172 exec_prefix=\${prefix}
2173 libdir=\${exec_prefix}/lib
2174 includedir=\${prefix}/include
2177 Description: FFmpeg container format library
2178 Version: $lavf_version
2179 Requires: $pkg_requires libavcodec = $lavc_version
2181 Libs: -L\${libdir} -lavformat $extralibs
2182 Cflags: -I\${includedir} -I\${includedir}/ffmpeg
2185 cat <<EOF >libavformat-uninstalled.pc
2188 libdir=\${pcfiledir}/libavformat
2189 includedir=\${pcfiledir}/libavformat
2192 Description: FFmpeg container format library
2193 Version: $lavf_version
2194 Requires: $pkg_requires libavcodec = $lavc_version
2196 Libs: \${libdir}/${LIBPREF}avformat${LIBSUF} $extralibs
2197 Cflags: -I\${includedir}
2202 cat <<EOF >libpostproc.pc
2204 exec_prefix=\${prefix}
2205 libdir=\${exec_prefix}/lib
2206 includedir=\${prefix}/include
2209 Description: FFmpeg post processing library
2210 Version: $lavc_version
2213 Libs: -L\${libdir} -lpostproc
2214 Cflags: -I\${includedir} -I\${includedir}/postproc
2217 cat <<EOF >libpostproc-uninstalled.pc
2220 libdir=\${pcfiledir}/libpostproc
2221 includedir=\${pcfiledir}/libpostproc
2224 Description: FFmpeg post processing library
2225 Version: $lavc_version
2228 Libs: \${libdir}/${LIBPREF}postproc${LIBSUF}
2229 Cflags: -I\${includedir}