3 # FFmpeg configure script
5 # Copyright (c) 2000, 2001, 2002 Fabrice Bellard
6 # Copyright (c) 2005-2006 Diego Biurrun
7 # Copyright (c) 2005-2006 Mans Rullgard
10 # make sure we are running under a compatible shell
11 # try to make this part work with most shells
14 echo "Trying shell $1"
15 type "$1" >/dev
/null
2>&1 && exec "$@"
19 (: ${foo%%bar}) 2>/dev
/null
22 (: ${foo?}) 2>/dev
/null
25 if test "$E1" != 0 ||
test "$E2" = 0; then
26 echo "Broken shell detected. Trying alternatives."
28 if test "0$FF_CONF_EXEC" -lt
1; then
30 try_exec bash
"$0" "$@"
32 if test "0$FF_CONF_EXEC" -lt
2; then
34 try_exec ksh
"$0" "$@"
36 if test "0$FF_CONF_EXEC" -lt
3; then
38 try_exec
/usr
/xpg4
/bin
/sh
"$0" "$@"
40 echo "No compatible shell script interpreter found."
41 echo "This configure script requires a POSIX-compatible shell"
42 echo "such as bash or ksh."
43 echo "THIS IS NOT A BUG IN FFMPEG, DO NOT REPORT IT AS SUCH."
44 echo "Instead, install a working POSIX-compatible shell."
45 echo "Disabling this configure test will create a broken FFmpeg."
46 if test "$BASH_VERSION" = '2.04.0(1)-release'; then
47 echo "This bash version ($BASH_VERSION) is broken on your platform."
48 echo "Upgrade to a later version if available."
54 echo "Usage: configure [options]"
55 echo "Options: [defaults in brackets after descriptions]"
57 echo "Standard options:"
58 echo " --help print this message"
59 echo " --log[=FILE|yes|no] log tests and output to FILE [config.err]"
60 echo " --prefix=PREFIX install in PREFIX [$PREFIX]"
61 echo " --libdir=DIR install libs in DIR [PREFIX/lib]"
62 echo " --shlibdir=DIR install shared libs in DIR [PREFIX/lib]"
63 echo " --incdir=DIR install includes in DIR [PREFIX/include/ffmpeg]"
64 echo " --mandir=DIR install man page in DIR [PREFIX/man]"
65 echo " --enable-mingw32 enable MinGW native/cross Windows compile"
66 echo " --enable-mingwce enable MinGW native/cross WinCE compile"
67 echo " --enable-static build static libraries [default=yes]"
68 echo " --disable-static do not build static libraries [default=no]"
69 echo " --enable-shared build shared libraries [default=no]"
70 echo " --disable-shared do not build shared libraries [default=yes]"
71 echo " --enable-pp enable GPLed postprocessing support [default=no]"
72 echo " --enable-swscaler software scaler support [default=no]"
73 echo " --enable-sunmlib use Sun medialib [default=no]"
74 echo " --enable-beosthreads use BeOS threads [default=no]"
75 echo " --enable-os2threads use OS/2 threads [default=no]"
76 echo " --enable-pthreads use pthreads [default=no]"
77 echo " --enable-w32threads use Win32 threads [default=no]"
78 echo " --enable-x11grab enable X11 grabbing [default=no]"
79 echo " --enable-dc1394 enable IIDC-1394 grabbing using libdc1394"
80 echo " and libraw1394 [default=no]"
81 echo " --enable-liba52 enable GPLed liba52 support [default=no]"
82 echo " --enable-liba52bin open liba52.so.0 at runtime [default=no]"
83 echo " --enable-avisynth allow reading AVISynth script files [default=no]"
84 echo " --enable-libdts enable GPLed libdts support [default=no]"
85 echo " --enable-libfaac enable FAAC support via libfaac [default=no]"
86 echo " --enable-libfaad enable FAAD support via libfaad [default=no]"
87 echo " --enable-libfaadbin build FAAD support with runtime linking [default=no]"
88 echo " --enable-libgsm enable GSM support via libgsm [default=no]"
89 echo " --enable-libmp3lame enable MP3 encoding via libmp3lame [default=no]"
90 echo " --enable-libnut enable NUT (de)muxing via libnut,"
91 echo " native demuxer exists [default=no]"
92 echo " --enable-libogg enable Ogg muxing via libogg [default=no]"
93 echo " --enable-libtheora enable Theora encoding via libtheora [default=no]"
94 echo " --enable-libvorbis enable Vorbis en/decoding via libvorbis,"
95 echo " native implementations exist [default=no]"
96 echo " --enable-x264 enable H.264 encoding via x264 [default=no]"
97 echo " --enable-xvid enable Xvid encoding via xvidcore,"
98 echo " native MPEG-4/Xvid encoder exists [default=no]"
99 echo " --enable-amr_nb enable amr_nb float audio codec"
100 echo " --enable-amr_nb-fixed use fixed point for amr-nb codec"
101 echo " --enable-amr_wb enable amr_wb float audio codec"
102 echo " --enable-amr_if2 enable amr_wb IF2 audio codec"
103 echo " --enable-gpl allow use of GPL code, the resulting libav*"
104 echo " and ffmpeg will be under GPL [default=no]"
106 echo "Advanced options (experts only):"
107 echo " --source-path=PATH path to source code [$source_path]"
108 echo " --cross-prefix=PREFIX use PREFIX for compilation tools [$cross_prefix]"
109 echo " --cross-compile assume a cross-compiler is used"
110 echo " --cc=CC use C compiler CC [$cc]"
111 echo " --make=MAKE use specified make [$make]"
112 echo " --extra-cflags=ECFLAGS add ECFLAGS to CFLAGS [$CFLAGS]"
113 echo " --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]"
114 echo " --extra-libs=ELIBS add ELIBS [$ELIBS]"
115 echo " --build-suffix=SUFFIX suffix for application specific build []"
116 echo " --arch=ARCH select architecture [$arch]"
117 echo " --cpu=CPU selects the minimum cpu required (affects"
118 echo " instruction selection, may crash on older CPUs)"
119 echo " --enable-powerpc-perf enable performance report on PPC"
120 echo " (requires enabling PMC)"
121 echo " --disable-mmx disable MMX usage"
122 echo " --disable-armv5te disable armv5te usage"
123 echo " --disable-armv6 disable armv6 usage"
124 echo " --disable-iwmmxt disable iwmmxt usage"
125 echo " --disable-altivec disable AltiVec usage"
126 echo " --disable-audio-oss disable OSS audio support [default=no]"
127 echo " --disable-audio-beos disable BeOS audio support [default=no]"
128 echo " --disable-v4l disable video4linux grabbing [default=no]"
129 echo " --disable-v4l2 disable video4linux2 grabbing [default=no]"
130 echo " --disable-bktr disable bktr video grabbing [default=no]"
131 echo " --disable-dv1394 disable DV1394 grabbing [default=no]"
132 echo " --disable-network disable network support [default=no]"
133 echo " --disable-ipv6 disable ipv6 support [default=no]"
134 echo " --disable-zlib disable zlib [default=no]"
135 echo " --disable-vhook disable video hooking support"
136 echo " --enable-gprof enable profiling with gprof [$gprof]"
137 echo " --disable-debug disable debugging symbols"
138 echo " --disable-opts disable compiler optimizations"
139 echo " --enable-extra-warnings enable more compiler warnings"
140 echo " --disable-mpegaudio-hp faster (but less accurate)"
141 echo " MPEG audio decoding [default=no]"
142 echo " --disable-protocols disable I/O protocols support [default=no]"
143 echo " --disable-ffmpeg disable ffmpeg build"
144 echo " --disable-ffserver disable ffserver build"
145 echo " --disable-ffplay disable ffplay build"
146 echo " --enable-small optimize for size instead of speed"
147 echo " --enable-memalign-hack emulate memalign, interferes with memory debuggers"
148 echo " --disable-strip disable stripping of executables and shared libraries"
149 echo " --disable-encoder=NAME disables encoder NAME"
150 echo " --enable-encoder=NAME enables encoder NAME"
151 echo " --disable-decoder=NAME disables decoder NAME"
152 echo " --enable-decoder=NAME enables decoder NAME"
153 echo " --disable-encoders disables all encoders"
154 echo " --disable-decoders disables all decoders"
155 echo " --disable-muxer=NAME disables muxer NAME"
156 echo " --enable-muxer=NAME enables muxer NAME"
157 echo " --disable-muxers disables all muxers"
158 echo " --disable-demuxer=NAME disables demuxer NAME"
159 echo " --enable-demuxer=NAME enables demuxer NAME"
160 echo " --disable-demuxers disables all demuxers"
161 echo " --enable-parser=NAME enables parser NAME"
162 echo " --disable-parser=NAME disables parser NAME"
163 echo " --disable-parsers disables all parsers"
165 echo "NOTE: Object files are built at the place where configure is launched."
187 If you think configure made a mistake, make sure you are using the latest
188 version from SVN. If the latest version fails, report the problem to the
189 ffmpeg-devel@mplayerhq.hu mailing list or IRC #ffmpeg on irc.freenode.net.
191 if enabled logging
; then
193 Include the log file "$logfile" produced by configure as this will help
198 Rerun configure with logging enabled (do not use --log=no), and include the
199 log this produces with your report.
202 rm -f
$TMPC $TMPO $TMPE $TMPS $TMPH
206 # "tr '[a-z]' '[A-Z]'" is a workaround for Solaris tr not grokking "tr a-z A-Z"
208 echo "$@" |
tr '[a-z]' '[A-Z]'
221 eval level
=\
${${var}_level
:=0}
222 eval ${var}_
${level}="\$$var"
223 eval ${var}_level
=$
(($level+1))
229 eval level
=\
${${var}_level
:-0}
230 test $level = 0 && continue
231 eval level
=$
(($level-1))
232 eval $var="\${${var}_${level}}"
233 eval ${var}_level
=$level
234 eval unset ${var}_
${level}
247 eval test "x\$$1" = "xyes"
251 eval test "x\$$1" = "xno"
256 enabled
$opt ||
return 1
262 disabled
$opt ||
return 1
268 enabled
$opt && return 0
274 disabled
$opt && return 0
280 enabled
${cfg}_checking
&& die
"Circular dependency for $cfg."
281 disabled
${cfg}_checking
&& continue
282 enable ${cfg}_checking
284 eval dep_all
="\$${cfg}_deps"
285 eval dep_any
="\$${cfg}_deps_any"
287 pushvar cfg dep_all dep_any
288 check_deps
$dep_all $dep_any
289 popvar cfg dep_all dep_any
291 enabled_all
$dep_all || disable
$cfg
292 enabled_any
$dep_any || disable
$cfg
294 disable
${cfg}_checking
304 if enabled
$cfg; then
305 ucname
="${pfx}`toupper $cfg`"
306 echo "#define ${ucname} 1" >> $header
307 echo "${ucname}=yes" >> $makefile
313 (: ${SAVE_CFLAGS?}) 2>/dev
/null
317 flags_saved
&& return
318 SAVE_CFLAGS
="$CFLAGS"
319 SAVE_LDFLAGS
="$LDFLAGS"
320 SAVE_extralibs
="$extralibs"
324 flags_saved ||
return
325 CFLAGS
="$SAVE_CFLAGS"
326 LDFLAGS
="$SAVE_LDFLAGS"
327 extralibs
="$SAVE_extralibs"
340 LDFLAGS
="$LDFLAGS $*"
345 extralibs
="$extralibs $*"
351 flags_saved
&& eval "SAVE_$var=\"\$SAVE_$var $*\""
352 eval "$var=\"\$$var $*\""
364 append extralibs
"$@"
376 check_cmd
$cc $CFLAGS "$@" -c
-o
$TMPO $TMPC
383 check_cmd
$cc $CFLAGS "$@" -E
-o
$TMPO $TMPC
389 check_cmd
$cc $LDFLAGS "$@" -o
$TMPE $TMPO $extralibs
393 log check_cflags
"$@"
394 check_cc
"$@" <<EOF && add_cflags "$@"
400 log check_ldflags
"$@"
401 check_ld
"$@" <<EOF && add_ldflags "$@"
409 log check_header
"$@"
417 var
=`echo $header | sed 's/[^A-Za-z0-9_]/_/g'`
418 test "$err" = 0 && enable $var || disable
$var
433 test "$err" = 0 && enable $func || disable
$func
443 check_header
$header && check_func
$func && add_extralibs
"$@"
450 check_ld
"$@" && { enabled cross_compile ||
$TMPE >>$logfile 2>&1; }
458 check_lib
$header $func "$@" || die
"ERROR: $name not found"
464 "$@" < "$file" > "$file.tmp" && mv "$file.tmp" "$file" ||
rm "$file.tmp"
528 dev_bktr_ioctl_bt848_h
529 dev_bktr_ioctl_meteor_h
531 dev_video_meteor_ioctl_meteor_h
532 dev_video_bktr_ioctl_bt848_h
542 machine_ioctl_bt848_h
543 machine_ioctl_meteor_h
583 flashsv_decoder_deps
="zlib"
584 flashsv_encoder_deps
="zlib"
585 mpeg_xvmc_decoder_deps
="xvmc"
586 png_decoder_deps
="zlib"
587 png_encoder_deps
="zlib"
588 x264_encoder_deps
="x264"
589 xvid_encoder_deps
="xvid"
590 zmbv_decoder_deps
="zlib"
591 zmbv_encoder_deps
="zlib"
593 aac_decoder_deps
="libfaad"
594 mpeg4aac_decoder_deps
="libfaad"
595 amr_nb_decoder_deps_any
="amr_nb amr_nb_fixed"
596 amr_nb_encoder_deps_any
="amr_nb amr_nb_fixed"
597 amr_wb_decoder_deps
="amr_wb"
598 amr_wb_encoder_deps
="amr_wb"
599 dts_decoder_deps
="libdts"
600 faac_encoder_deps
="libfaac"
601 liba52_decoder_deps
="liba52"
602 libgsm_decoder_deps
="libgsm"
603 libgsm_encoder_deps
="libgsm"
604 libtheora_encoder_deps
="libtheora"
605 mp3lame_encoder_deps
="libmp3lame"
606 oggvorbis_decoder_deps
="libvorbis"
607 oggvorbis_encoder_deps
="libvorbis"
609 audio_demuxer_deps_any
="audio_oss audio_beos"
610 audio_muxer_deps_any
="audio_oss audio_beos"
611 dc1394_demuxer_deps
="dc1394"
612 dv1394_demuxer_deps
="dv1394"
614 libnut_demuxer_deps
="libnut"
615 libnut_muxer_deps
="libnut"
616 ogg_muxer_deps
="libogg"
617 redir_demuxer_deps
="network"
618 rtp_muxer_deps
="network"
619 rtsp_demuxer_deps
="network"
620 sdp_demuxer_deps
="network"
621 v4l2_demuxer_deps
="video4linux2"
622 video_grab_device_demuxer_deps_any
="video4linux bktr"
623 x11_grab_device_demuxer_deps
="x11grab"
626 ffserver_deps
="network protocols muxers"
627 network_deps
="protocols"
629 # set temporary file name
630 if test ! -z
"$TMPDIR" ; then
632 elif test ! -z
"$TEMPDIR" ; then
638 TMPC
="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.c"
639 TMPO
="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.o"
640 TMPE
="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}"
641 TMPS
="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.S"
642 TMPH
="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.h"
651 libdir
='${PREFIX}/lib'
653 incdir
='${PREFIX}/include/ffmpeg'
654 mandir
='${PREFIX}/man'
655 bindir
='${PREFIX}/bin'
665 asmalign_pot
="unknown"
683 i386|i486|i586|i686|i86pc|BePC
)
688 canon_arch
="`$cc -dumpmachine | sed -e 's,\([^-]*\)-.*,\1,'`"
689 if [ x
"$canon_arch" = x
"x86_64" -o x
"$canon_arch" = x
"amd64" ]; then
690 if [ -z
"`echo $CFLAGS | grep -- -m32`" ]; then
695 # armv4l is a subset of armv[567]*l
702 "Power Macintosh"|ppc|ppc64|powerpc
)
743 # non-library system interfaces
779 # configurable options
809 SHFLAGS
='-shared -Wl,-soname,$@'
810 VHOOKSHFLAGS
='$(SHFLAGS)'
812 FFLDFLAGS
=-Wl
,--warn-common
813 LDLATEFLAGS
='-Wl,-rpath-link,\$(BUILD_ROOT)/libavcodec -Wl,-rpath-link,\$(BUILD_ROOT)/libavformat -Wl,-rpath-link,\$(BUILD_ROOT)/libavutil'
814 FFSERVERLDFLAGS
=-Wl
,-E
818 LIB
='$(LIBPREF)$(NAME)$(LIBSUF)'
821 SLIBNAME
='$(SLIBPREF)$(NAME)$(SLIBSUF)'
822 SLIBNAME_WITH_VERSION
='$(SLIBNAME).$(LIBVERSION)'
823 SLIBNAME_WITH_MAJOR
='$(SLIBNAME).$(LIBMAJOR)'
826 LIB_INSTALL_EXTRA_CMD
='$(RANLIB) "$(libdir)/$(LIB)"'
832 PREFIX
="$HOME/config"
833 # helps building libavcodec
834 add_cflags
"-DPIC -fomit-frame-pointer"
835 # 3 gcc releases known for BeOS, each with ugly bugs
836 gcc_version
="`$cc -v 2>&1 | grep version | cut -d ' ' -f3-`"
837 case "$gcc_version" in
838 2.9-beos-991026
*|
2.9-beos-000224
*) echo "R5/GG gcc"
841 *20010315*) echo "BeBits gcc"
842 add_cflags
"-fno-expensive-optimizations"
845 LDCONFIG
="echo ignoring ldconfig"
847 # disable Linux things
851 # no need for libm, but the inet stuff
853 # XXX: actually should check for NOT net_server
854 if (echo $BEINCLUDES|
grep 'headers/be/bone' >/dev
/null
); then
855 extralibs
="-lbind -lsocket"
864 SHFLAGS
="-shared -Wl,-h,\$@"
865 add_extralibs
"-lsocket -lnsl"
869 add_extralibs
"-lossaudio"
874 LIBOBJFLAGS
="\$(PIC)"
875 LDCONFIG
="ldconfig -m \$(shlibdir)"
877 SLIBNAME
='$(SLIBPREF)$(NAME)$(SLIBSUF).$(LIBVERSION)'
878 SLIBNAME_WITH_VERSION
='$(SLIBNAME)'
879 SLIBNAME_WITH_MAJOR
='$(SLIBNAME)'
880 add_extralibs
"-lossaudio"
885 add_cflags
"-pthread"
889 add_cflags
"-pthread"
893 extralibs
="-lpoll -lgnugetopt -lm"
900 SHFLAGS
="-dynamiclib -Wl,-single_module -Wl,-install_name,\$(shlibdir)/\$(SLIBNAME),-current_version,\$(SPPVERSION),-compatibility_version,\$(SPPVERSION) -Wl,-read_only_relocs,suppress"
901 VHOOKSHFLAGS
='-dynamiclib -Wl,-single_module -flat_namespace -undefined suppress -Wl,-install_name,$(shlibdir)/vhook/$@'
904 FFLDFLAGS
="-Wl,-dynamic,-search_paths_first"
906 SLIBNAME_WITH_VERSION
='$(SLIBPREF)$(NAME).$(LIBVERSION)$(SLIBSUF)'
907 SLIBNAME_WITH_MAJOR
='$(SLIBPREF)$(NAME).$(LIBMAJOR)$(SLIBSUF)'
908 FFSERVERLDFLAGS
=-Wl
,-bind_at_load
911 # Note: the rest of the mingw32 config is done afterwards as mingw32
912 # can be forced on the command line for Linux cross compilation.
919 VHOOKSHFLAGS
='-shared -L$(BUILD_ROOT)/libavformat -L$(BUILD_ROOT)/libavcodec -L$(BUILD_ROOT)/libavutil'
920 VHOOKLIBS
='-lavformat$(BUILDSUF) -lavcodec$(BUILDSUF) -lavutil$(BUILDSUF) $(EXTRALIBS)'
925 SLIBNAME_WITH_VERSION
='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
926 SLIBNAME_WITH_MAJOR
='$(SLIBPREF)$(NAME)-$(LIBMAJOR)$(SLIBSUF)'
927 SHFLAGS
='-shared -Wl,--out-implib=lib$(NAME).dll.a'
930 LDLATEFLAGS
="-Wl,--as-needed $LDLATEFLAGS"
934 ranlib
="echo ignoring ranlib"
939 ranlib
="echo ignoring ranlib"
940 strip
="echo ignoring strip"
942 FFLDFLAGS
="-Zomf -Zstack 16384 -s"
943 SHFLAGS
="-Zdll -Zomf"
958 targetos
="${targetos}-UNKNOWN"
963 source_path
="`dirname \"$0\"`"
964 source_path_used
="yes"
965 if test -z
"$source_path" -o
"$source_path" = "." ; then
967 source_path_used
="no"
969 source_path
="`cd \"$source_path\"; pwd`"
970 echo "$source_path" |
grep -q
'[[:blank:]]' &&
971 die
"Out of tree builds are impossible with whitespace in source path."
974 if test x
"$1" = x
"-h" -o x
"$1" = x
"--help" ; then
978 FFMPEG_CONFIGURATION
="$@"
980 ENCODER_LIST
=`sed -n 's/^[^#]*ENC.*, *\(.*\)).*/\1_encoder/p' "$source_path/libavcodec/allcodecs.c"`
981 DECODER_LIST
=`sed -n 's/^[^#]*DEC.*, *\(.*\)).*/\1_decoder/p' "$source_path/libavcodec/allcodecs.c"`
982 PARSER_LIST
=`sed -n 's/^[^#]*PARSER.*, *\(.*\)).*/\1_parser/p' "$source_path/libavcodec/allcodecs.c"`
983 MUXER_LIST
=`sed -n 's/^[^#]*_MUX.*, *\(.*\)).*/\1_muxer/p' "$source_path/libavformat/allformats.c"`
984 DEMUXER_LIST
=`sed -n 's/^[^#]*DEMUX.*, *\(.*\)).*/\1_demuxer/p' "$source_path/libavformat/allformats.c"`
986 enable $ENCODER_LIST $DECODER_LIST $PARSER_LIST $MUXER_LIST $DEMUXER_LIST
989 echo "Unknown option \"$1\"."
990 echo "See $0 --help for available options."
999 --log
=*) logging
="$optval"
1001 --prefix
=*) PREFIX
="$optval"
1003 --libdir
=*) libdir
="$optval"
1005 --shlibdir
=*) shlibdir
="$optval"
1007 --incdir
=*) incdir
="$optval"
1009 --mandir
=*) mandir
="$optval"
1011 --source-path
=*) source_path
="$optval"
1013 --cross-prefix
=*) cross_prefix
="$optval"
1015 --cross-compile
) cross_compile
="yes"
1017 --cc
=*) cc
="$optval"
1019 --make=*) make="$optval"
1021 --extra-cflags
=*) add_cflags
"$optval"
1023 --extra-ldflags
=*) add_ldflags
"$optval"
1025 --extra-libs
=*) add_extralibs
"$optval"
1027 --build-suffix
=*) BUILDSUF
="$optval"
1029 --arch
=*) arch
="$optval"
1031 --cpu
=*) cpu
="$optval"
1033 --disable-v4l
) video4linux
="no"
1035 --disable-v4l2
) video4linux2
="no"
1037 --enable-mingwce
) wince
="yes"
1039 --disable-opts
) optimize
="no"
1041 --enable-small
) optimize
="small"
1043 --enable-sunmlib
) mlib
="yes"
1045 --disable-strip
) dostrip
="no"
1047 --enable-encoder
=*) enable ${optval}_encoder
1049 --enable-decoder
=*) enable ${optval}_decoder
1051 --disable-encoder
=*) disable
${optval}_encoder
1053 --disable-decoder
=*) disable
${optval}_decoder
1055 --disable-encoders
) disable
$ENCODER_LIST
1057 --disable-decoders
) disable
$DECODER_LIST
1059 --enable-muxer
=*) enable ${optval}_muxer
1061 --disable-muxer
=*) disable
${optval}_muxer
1063 --disable-muxers
) disable
$MUXER_LIST
1065 --enable-demuxer
=*) enable ${optval}_demuxer
1067 --disable-demuxer
=*) disable
${optval}_demuxer
1069 --disable-demuxers
) disable
$DEMUXER_LIST
1071 --enable-parser
=*) enable ${optval}_parser
1073 --disable-parser
=*) disable
${optval}_parser
1075 --disable-parsers
) disable
$PARSER_LIST
1077 --enable-?
*|
--disable-?
*)
1078 eval `echo "${opt#-}" | sed 's/-/action=/;s/-/ option=/;s/-/_/g'`
1079 echo "$CMDLINE_SELECT" |
grep -q
"^ *$option\$" || die_unknown
$opt
1090 if ! disabled logging
; then
1091 enabled logging || logfile
="$logging"
1092 echo "# $0 $@" >$logfile
1098 if enabled_any mingw32 wince
; then
1099 if enabled_all shared static
; then
1101 You can only build one library type at once on MinGW.
1102 Specify --disable-static --enable-shared to only build
1103 the shared libraries. To build only the static libraries
1104 you do not need to pass additional options.
1112 if enabled wince
; then
1118 SLIBNAME_WITH_VERSION
='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
1119 SLIBNAME_WITH_MAJOR
='$(SLIBPREF)$(NAME)-$(LIBMAJOR)$(SLIBSUF)'
1120 SLIB_EXTRA_CMD
="-lib /machine:i386 /def:\$(@:${SLIBSUF}=.def)"
1121 SLIB_INSTALL_EXTRA_CMD
="-install -m 644 \$(SLIBNAME_WITH_MAJOR:\$(SLIBSUF)=.lib) \"\$(shlibdir)/\$(SLIBNAME_WITH_MAJOR:\$(SLIBSUF)=.lib)\""
1122 SHFLAGS
="-shared -Wl,--output-def,\$(@:${SLIBSUF}=.def),--out-implib,lib\$(SLIBNAME:\$(SLIBSUF)=.dll.a) -Wl,--enable-runtime-pseudo-reloc"
1125 # Combine FFLDFLAGS and the LDFLAGS environment variable.
1126 LDFLAGS
="$FFLDFLAGS $LDFLAGS"
1128 test -n
"$cross_prefix" && cross_compile
=yes
1129 cc
="${cross_prefix}${cc}"
1130 ar="${cross_prefix}${ar}"
1131 ranlib
="${cross_prefix}${ranlib}"
1132 strip
="${cross_prefix}${strip}"
1134 # we need to build at least one lib type
1135 if disabled_all static shared
; then
1137 At least one library type must be built.
1138 Specify --enable-static to build the static libraries or --enable-shared to
1139 build the shared libraries as well. To only build the shared libraries specify
1140 --disable-static in addition to --enable-shared.
1145 if disabled libogg
; then
1146 enabled libtheora
&& die
"libogg must be enabled to enable libtheora."
1147 enabled libvorbis
&& die
"libogg must be enabled to enable libvorbis."
1150 if enabled_any libfaad libfaadbin
; then
1151 if check_header faad.h
; then
1154 #ifndef FAAD2_VERSION
1157 int main( void ) { return 0; }
1159 test $?
= 0 && enable libfaad2
1161 die
"FAAD test failed."
1166 if disabled gpl
; then
1170 enabled_any $@
&& die
"$name is under GPL and --enable-gpl is not specified."
1172 die_gpl_disabled
"The Postprocessing code" pp
1173 die_gpl_disabled
"liba52" liba52
1174 die_gpl_disabled
"libxvidcore" xvid
1175 die_gpl_disabled
"x264" x264
1176 die_gpl_disabled
"libdts" libdts
1177 die_gpl_disabled
"FAAD2" libfaad2
1178 die_gpl_disabled
"The X11 grabber" x11grab
1179 die_gpl_disabled
"The software scaler" swscaler
1183 if test $mmx = "default"; then
1184 if test $arch = "x86_32" -o
$arch = "x86_64"; then
1191 test -z
"$need_memalign" && need_memalign
="$mmx"
1194 needmdynamicnopic
="no"
1195 if test $targetos = Darwin
; then
1196 if test -n
"`$cc -v 2>&1 | grep xlc`"; then
1197 add_cflags
"-qpdf2 -qlanglvl=extc99 -qmaxmem=-1 -qarch=auto -qtune=auto"
1199 gcc_version
="`$cc -v 2>&1 | grep version | cut -d ' ' -f3-`"
1200 case "$gcc_version" in
1202 add_cflags
"-no-cpp-precomp -pipe"
1205 add_cflags
"-no-cpp-precomp -pipe -force_cpusubtype_ALL -Wno-sign-compare"
1206 if disabled shared
; then
1207 needmdynamicnopic
="yes"
1211 add_cflags
"-no-cpp-precomp -pipe"
1212 if disabled shared
; then
1213 needmdynamicnopic
="yes"
1220 disabled optimize || add_cflags
-fomit-frame-pointer
1222 # Can only do AltiVec on PowerPC
1223 if test $altivec = "default"; then
1224 if test $arch = "powerpc"; then
1231 # Add processor-specific flags
1232 POWERPCMODE
="32bits"
1233 if test $cpu != "generic"; then
1235 $1 altivec
&& echo "WARNING: Tuning for $2 but AltiVec $1.";
1238 601|ppc601|PowerPC601
)
1239 add_cflags
"-mcpu=601"
1240 warn_altivec enabled PPC601
1242 603*|ppc603
*|PowerPC603
*)
1243 add_cflags
"-mcpu=603"
1244 warn_altivec enabled PPC603
1246 604*|ppc604
*|PowerPC604
*)
1247 add_cflags
"-mcpu=604"
1248 warn_altivec enabled PPC604
1250 G3|g3|
75*|ppc75
*|PowerPC75
*)
1251 add_cflags
"-mcpu=750 -mpowerpc-gfxopt"
1252 warn_altivec enabled PPC75x
1254 G4|g4|
745*|ppc745
*|PowerPC745
*)
1255 add_cflags
"-mcpu=7450 -mpowerpc-gfxopt"
1256 warn_altivec disabled PPC745x
1258 74*|ppc74
*|PowerPC74
*)
1259 add_cflags
"-mcpu=7400 -mpowerpc-gfxopt"
1260 warn_altivec disabled PPC74xx
1262 G5|g5|
970|ppc970|PowerPC970|power4
*|Power4
*)
1263 add_cflags
"-mcpu=970 -mpowerpc-gfxopt -mpowerpc64"
1264 warn_altivec disabled PPC970
1265 POWERPCMODE
="64bits"
1267 # targets that do NOT support conditional mov (cmov)
1268 i
[345]86|pentium|pentium-mmx|k6|k6-
[23]|winchip-c6|winchip2|c3
)
1269 add_cflags
"-march=$cpu"
1272 # targets that do support conditional mov (cmov)
1273 i686|pentiumpro|pentium
[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-
[mx
]p|athlon64|k8|opteron|athlon-fx|core2
)
1274 add_cflags
"-march=$cpu"
1278 # targets that do support conditional mov but on which it's slow
1279 pentium4|prescott|nocona
)
1280 add_cflags
"-march=$cpu"
1285 add_cflags
"-mcpu=v9"
1288 echo "WARNING: Unknown CPU \"$cpu\", ignored."
1294 $1 --version
2>&1 |
grep -q GNU
1297 if ! gnu_make
$make; then
1298 gnu_make gmake
&& make=gmake || die
"GNU make not found."
1301 # make sure we can execute files in $TMPDIR
1302 cat >$TMPE 2>>$logfile <<EOF
1305 chmod +x
$TMPE >>$logfile 2>&1
1306 if ! $TMPE >>$logfile 2>&1; then
1308 Unable to create and execute files in $TMPDIR1. Set the TMPDIR environment
1309 variable to another directory and make sure that $TMPDIR1 is not mounted
1312 die
"Sanity test failed."
1316 # compiler sanity check
1322 if test "$?" != 0; then
1323 echo "$cc is unable to create an executable file."
1324 if test -z
"$cross_prefix" && disabled cross_compile
; then
1325 echo "If $cc is a cross-compiler, use the --cross-compile option."
1326 echo "Only do this if you know what cross compiling means."
1328 die
"C compiler test failed."
1331 # check for assembler specific support
1333 if test $arch = "powerpc"; then
1334 check_cc
<<EOF && dcbzl=yes
1336 register long zero = 0;
1338 asm volatile("dcbzl %0, %1" : : "b" (data), "r" (zero));
1344 # check for SIMD availability
1346 # AltiVec flags: The FSF version of GCC differs from the Apple version
1347 if test $arch = "powerpc"; then
1348 if enabled altivec
; then
1349 if test -n
"`$cc -v 2>&1 | grep version | grep Apple`"; then
1350 add_cflags
"-faltivec"
1352 add_cflags
"-maltivec -mabi=altivec"
1357 check_header altivec.h
1359 # check if our compiler supports Motorola AltiVec C API
1360 if enabled altivec
; then
1361 if enabled altivec_h
; then
1362 inc_altivec_h
="#include <altivec.h>"
1366 check_cc
<<EOF || altivec=no
1369 vector signed int v1, v2, v3;
1370 v1 = vec_add(v2,v3);
1376 # check armv5te instructions support
1377 if test $armv5te = "default" -a
$arch = "armv4l"; then
1379 check_cc
<<EOF && armv5te=yes
1381 __asm__ __volatile__ ("qadd r0, r0, r0");
1386 if test $armv6 = "default" -a
$arch = "armv4l"; then
1387 check_cc
<<EOF && armv6=yes || armv6=no
1389 __asm__ __volatile__ ("sadd16 r0, r0, r0");
1394 # check iwmmxt support
1395 if test $iwmmxt = "default" -a
$arch = "armv4l"; then
1397 check_cc
<<EOF && iwmmxt=yes
1399 __asm__ __volatile__ ("wunpckelub wr6, wr4");
1404 # mmi only available on mips
1405 if test $mmi = "default"; then
1406 if test $arch = "mips"; then
1413 # check if our compiler supports mmi
1414 enabled mmi
&& check_cc
<<EOF || mmi="no"
1416 __asm__ ("lq \$2, 0(\$2)");
1422 # big/little-endian test
1423 if disabled cross_compile
; then
1424 check_ld
<<EOF || die "endian test failed" && $TMPE && bigendian="yes"
1425 #include <inttypes.h>
1426 int main(int argc, char ** argv){
1427 volatile uint32_t i=0x01234567;
1428 return (*((uint8_t*)(&i))) == 0x67;
1432 # programs cannot be launched if cross compiling, so make a static guess
1433 if test "$arch" = "powerpc" -o
"$arch" = "mips" ; then
1439 # check availability of some header files
1441 check_header malloc.h
1444 if disabled_all memalign memalign_hack
&& enabled need_memalign
; then
1445 die
"Error, no memalign() but SSE enabled, disable it or use --enable-memalign-hack."
1448 check_header byteswap.h
1450 check_func inet_aton
1451 check_func localtime_r
1452 enabled zlib
&& check_lib zlib.h zlibVersion
-lz || zlib
="no"
1454 # check for some common methods of building with pthread support
1455 # do this before the optional library checks as some of them require pthreads
1456 if enabled pthreads
; then
1457 if check_func pthread_create
; then
1459 elif check_func pthread_create
-pthread
; then
1461 add_ldflags
-pthread
1462 elif check_func pthread_create
-pthreads
; then
1463 add_cflags
-pthreads
1464 add_ldflags
-pthreads
1465 elif ! check_lib pthread.h pthread_create
-lpthread
; then
1466 die
"ERROR: can't find pthreads library"
1470 for thread
in pthreads beosthreads os2threads w32threads
; do
1471 if enabled
$thread; then
1472 if ! disabled thread_type
; then
1473 die
"ERROR: Only one thread type must be selected."
1475 thread_type
="$thread"
1480 enabled_any amr_nb amr_nb_fixed amr_wb amr_if2
&& enable amr
1481 enabled_all amr_nb amr_nb_fixed
&&
1482 die
"Only one of amr_nb and amr_nb_fixed may be enabled."
1484 # these are off by default, so fail if requested and not available
1485 enabled liba52
&& require liba52 a52dec
/a52.h a52_init
-la52
1486 enabled libdts
&& require libdts dts.h dts_init
-ldts
-lm
1487 enabled libgsm
&& require libgsm gsm.h gsm_create
-lgsm
1488 enabled libmp3lame
&& require LAME lame
/lame.h lame_init
-lmp3lame
-lm
1489 enabled libtheora
&& require libtheora theora
/theora.h theora_info_init
-ltheora
-logg
1490 enabled libvorbis
&& require libvorbis vorbis
/vorbisenc.h vorbis_info_init
-lvorbis
-lvorbisenc
-logg
1491 enabled libogg
&& require libogg ogg
/ogg.h ogg_sync_init
-logg
1492 enabled libnut
&& require libnut libnut.h nut_demuxer_init
-lnut
1493 enabled xvid
&& require XviD xvid.h xvid_global
-lxvidcore
1494 enabled x264
&& require x264 x264.h x264_encoder_open
-lx264
1495 enabled dc1394
&& require libdc1394 libdc1394
/dc1394_control.h dc1394_create_handle
-ldc1394_control
-lraw1394
1496 enabled mlib
&& require mediaLib mlib_types.h mlib_VectorSub_S16_U8_Mod
-lmlib
1498 # Ugh, libfaac uses stdcall calling convention on win32 so we can't use
1499 # the generic test functions
1500 if enabled libfaac
; then
1502 temp_extralibs
-lfaac
1503 check_ld
<<EOF && add_extralibs -lfaac || die "ERROR: libfaac not found"
1508 faacEncGetVersion(&id, &cpr);
1515 # Ugh, recent faad2 versions have renamed all functions and #define the
1516 # old names in faad.h. Generic tests won't work.
1517 if enabled libfaad
; then
1519 temp_extralibs
-lfaad
1520 check_ld
<<EOF && add_extralibs -lfaad || die "ERROR: libfaad not found"
1530 # Ugh, avisynth uses WINAPI calls. Generic tests won't work.
1531 if enabled avisynth
; then
1533 temp_extralibs
-lvfw32
1534 check_ld
<<EOF && add_extralibs -lvfw32 || die "ERROR: vfw32 not found"
1535 #include <windows.h>
1546 # test for lrintf in math.h
1547 check_exec
<<EOF && lrintf=yes || lrintf=no
1548 #define _ISOC9X_SOURCE 1
1550 int main( void ) { return (lrintf(3.999f) > 0)?0:1; }
1554 for restrict_keyword
in restrict __restrict__ __restrict
; do
1555 check_cc
<<EOF && _restrict=$restrict_keyword && break
1556 void foo(char * $restrict_keyword p);
1560 # dlopen/dlfcn.h probing
1562 check_header dlfcn.h
1564 if check_func dlopen
; then
1566 elif check_func dlopen
-ldl
; then
1570 test "$vhook" = "default" && vhook
="$dlopen"
1572 enabled_any vhook liba52bin libfaadbin
&& add_extralibs
$ldl
1574 if test "$targetos" = "CYGWIN" && enabled static
; then
1577 echo "At the moment vhooks don't work on Cygwin static builds."
1578 echo "Patches welcome."
1582 if enabled vhook
; then
1583 check_ldflags
-rdynamic
1584 check_ldflags
-export-dynamic
1587 enabled audio_beos
&& add_extralibs
"-lmedia -lbe"
1589 ##########################################
1593 if imlib2-config
--version
>/dev
/null
2>&1; then
1594 temp_cflags
`imlib2-config --cflags`
1595 temp_extralibs
`imlib2-config --libs`
1596 check_lib Imlib2.h imlib_load_font
&& enable imlib2
1600 ##########################################
1604 if freetype-config
--version
>/dev
/null
2>&1; then
1605 temp_cflags
`freetype-config --cflags`
1606 temp_extralibs
`freetype-config --libs`
1607 check_lib ft2build.h FT_Init_FreeType
&& enable freetype2
1611 ##########################################
1616 SDL_CONFIG
="${cross_prefix}sdl-config"
1617 if "${SDL_CONFIG}" --version
>/dev
/null
2>&1; then
1618 sdl_cflags
=`"${SDL_CONFIG}" --cflags`
1619 temp_cflags
$sdl_cflags
1620 temp_extralibs
`"${SDL_CONFIG}" --libs`
1621 if check_lib SDL.h SDL_Init
; then
1622 _sdlversion
=`"${SDL_CONFIG}" --version | sed 's/[^0-9]//g'`
1623 if test "$_sdlversion" -lt
121 ; then
1627 check_cc
$sdl_cflags <<EOF && enable sdl_video_size
1630 const SDL_VideoInfo *vi = SDL_GetVideoInfo();
1631 int w = vi->current_w;
1640 texi2html
-version
>/dev
/null
2>&1 && enable texi2html || disable texi2html
1642 ##########################################
1645 enabled network
&& enabled ipv6
&& check_ld
<<EOF && ipv6=yes || ipv6=no
1646 #include <sys/types.h>
1647 #include <sys/socket.h>
1648 #include <netinet/in.h>
1651 struct sockaddr_storage saddr;
1652 struct ipv6_mreq mreq6;
1653 getaddrinfo(0,0,0,0);
1654 getnameinfo(0,0,0,0,0,0,0);
1655 IN6_IS_ADDR_MULTICAST((const struct in6_addr *)0);
1659 enabled video4linux
&& check_header linux
/videodev.h || disable video4linux
1660 enabled video4linux2
&& check_header linux
/videodev2.h || disable video4linux2
1662 # check for ioctl_meteor.h, ioctl_bt848.h and alternatives
1663 if enabled bktr
; then
1664 { check_header dev
/bktr
/ioctl_meteor.h
&&
1665 check_header dev
/bktr
/ioctl_bt848.h
; } ||
1666 { check_header machine
/ioctl_meteor.h
&&
1667 check_header machine
/ioctl_bt848.h
; } ||
1668 { check_header dev
/video
/meteor
/ioctl_meteor.h
&&
1669 check_header dev
/video
/bktr
/ioctl_bt848.h
; } ||
1670 check_header dev
/ic
/bt8xx.h ||
1674 enabled audio_oss
&&
1675 check_header sys
/soundcard.h ||
1676 check_header soundcard.h ||
1679 # Deal with the x11 frame grabber
1682 enabled x11_grab_device_demuxer
&&
1683 check_header X11
/Xlib.h
&&
1684 check_header X11
/extensions
/XShm.h
&&
1685 check_func XOpenDisplay
-lX11
&&
1686 check_func XShmCreateImage
-lX11
-lXext
&&
1687 add_extralibs
-lX11
-lXext ||
1688 disable x11_grab_device_demuxer
1690 enabled debug
&& add_cflags
-g
1692 # add some useful compiler flags if supported
1693 check_cflags
-Wdeclaration-after-statement
1695 check_cflags
-Wno-switch
1696 check_cflags
-Wdisabled-optimization
1697 check_cflags
-Wpointer-arith
1698 check_cflags
-Wredundant-decls
1699 check_cflags
-Wno-pointer-sign
1700 enabled extra_warnings
&& check_cflags
-Winline
1702 # add some linker flags
1703 check_ldflags
$LDLATEFLAGS
1705 # not all compilers support -Os
1706 test "$optimize" = "small" && check_cflags
-Os
1708 if enabled optimize
; then
1709 if test -n
"`$cc -v 2>&1 | grep xlc`"; then
1717 # PIC flags for shared library objects where they are needed
1718 if enabled shared
; then
1719 # LIBOBJFLAGS may have already been set in the OS configuration
1720 if test -z
"$LIBOBJFLAGS" ; then
1722 x86_64|ia64|alpha|sparc
*|power
*) LIBOBJFLAGS
="\$(PIC)" ;;
1727 if enabled gprof
; then
1732 VHOOKCFLAGS
="-fPIC $CFLAGS"
1733 enabled needmdynamicnopic
&& add_cflags
-mdynamic-no-pic
1735 # find if .align arg is power-of-two or not
1736 if test $asmalign_pot = "unknown"; then
1738 echo 'asm (".align 3");' | check_cc
&& asmalign_pot
="yes"
1741 enabled_any
$ENCODER_LIST && enable encoders
1742 enabled_any
$DECODER_LIST && enable decoders
1743 enabled_any
$MUXER_LIST && enable muxers
1744 enabled_any
$DEMUXER_LIST && enable demuxers
1746 enabled_any pthreads beosthreads os2threads w32threads
&& enable threads
1748 check_deps
$CONFIG_LIST $HAVE_LIST $DECODER_LIST $ENCODER_LIST $PARSER_LIST \
1749 $DEMUXER_LIST $MUXER_LIST
1751 enabled libogg
&& append pkg_requires
"ogg >= 1.1"
1752 enabled libtheora
&& append pkg_requires
"theora"
1753 enabled libvorbis
&& append pkg_requires
"vorbis vorbisenc"
1754 enabled dc1394
&& append pkg_requires
"libraw1394"
1756 echo "install prefix $PREFIX"
1757 echo "source path $source_path"
1758 echo "C compiler $cc"
1760 echo ".align is power-of-two $asmalign_pot"
1761 echo "ARCH $arch ($cpu)"
1762 if test "$BUILDSUF" != ""; then
1763 echo "build suffix $BUILDSUF"
1765 echo "big-endian $bigendian"
1766 if test $arch = "x86_32" -o
$arch = "x86_64"; then
1767 echo "MMX enabled $mmx"
1768 echo "CMOV enabled $cmov"
1769 echo "CMOV is fast $fast_cmov"
1771 if test $arch = "armv4l"; then
1772 echo "ARMv5TE enabled $armv5te"
1773 echo "ARMv6 enabled $armv6"
1774 echo "IWMMXT enabled $iwmmxt"
1776 if test $arch = "mips"; then
1777 echo "MMI enabled $mmi"
1779 if test $arch = "powerpc"; then
1780 echo "AltiVec enabled $altivec"
1781 echo "dcbzl available $dcbzl"
1783 echo "gprof enabled $gprof"
1784 echo "debug symbols $debug"
1785 echo "strip symbols $dostrip"
1786 echo "optimize $optimize"
1787 echo "static $static"
1788 echo "shared $shared"
1789 echo "postprocessing support $pp"
1790 echo "software scaler enabled $swscaler"
1791 echo "video hooking $vhook"
1792 if enabled vhook
; then
1793 echo "Imlib2 support $imlib2"
1794 echo "FreeType support $freetype2"
1796 echo "network support $network"
1797 if enabled network
; then
1798 echo "IPv6 support $ipv6"
1800 echo "threading support $thread_type"
1801 echo "SDL support $sdl"
1802 if enabled sdl_too_old
; then
1803 echo "-> Your SDL version is too old - please upgrade to have FFplay/SDL support."
1805 echo "Sun medialib support $mlib"
1806 echo "AVISynth enabled $avisynth"
1807 echo "liba52 support $liba52"
1808 echo "liba52 dlopened $liba52bin"
1809 echo "libdts support $libdts"
1810 echo "libfaac enabled $libfaac"
1811 echo "libfaad enabled $libfaad"
1812 echo "faadbin enabled $libfaadbin"
1813 echo "libgsm enabled $libgsm"
1814 echo "libmp3lame enabled $libmp3lame"
1815 echo "libnut enabled $libnut"
1816 echo "libogg enabled $libogg"
1817 echo "libtheora enabled $libtheora"
1818 echo "libvorbis enabled $libvorbis"
1819 echo "x264 enabled $x264"
1820 echo "XviD enabled $xvid"
1821 echo "zlib enabled $zlib"
1822 echo "AMR-NB float support $amr_nb"
1823 echo "AMR-NB fixed support $amr_nb_fixed"
1824 echo "AMR-WB float support $amr_wb"
1825 echo "AMR-WB IF2 support $amr_if2"
1826 if disabled gpl
; then
1827 echo "License: LGPL"
1832 echo "Creating config.mak and config.h..."
1834 echo "# Automatically generated by configure - do not modify!" > config.mak
1835 echo "/* Automatically generated by configure - do not modify! */" > $TMPH
1836 echo "#define FFMPEG_CONFIGURATION \"$FFMPEG_CONFIGURATION\"" >> $TMPH
1838 echo "PREFIX=$PREFIX" >> config.mak
1839 echo "prefix=\$(DESTDIR)\${PREFIX}" >> config.mak
1840 echo "libdir=\$(DESTDIR)$libdir" >> config.mak
1841 echo "shlibdir=\$(DESTDIR)$shlibdir" >> config.mak
1842 echo "incdir=\$(DESTDIR)$incdir" >> config.mak
1843 echo "bindir=\$(DESTDIR)$bindir" >> config.mak
1844 echo "mandir=\$(DESTDIR)$mandir" >> config.mak
1845 echo "MAKE=$make" >> config.mak
1846 echo "CC=$cc" >> config.mak
1847 echo "AR=$ar" >> config.mak
1848 echo "RANLIB=$ranlib" >> config.mak
1849 if enabled dostrip
; then
1850 echo "STRIP=$strip" >> config.mak
1852 echo "STRIP=echo ignoring strip" >> config.mak
1855 echo "OPTFLAGS=$CFLAGS" >> config.mak
1856 echo "VHOOKCFLAGS=$VHOOKCFLAGS">>config.mak
1857 echo "LDFLAGS=$LDFLAGS" >> config.mak
1858 echo "LDCONFIG=$LDCONFIG" >> config.mak
1859 echo "FFSERVERLDFLAGS=$FFSERVERLDFLAGS" >> config.mak
1860 echo "SHFLAGS=$SHFLAGS" >> config.mak
1861 echo "VHOOKSHFLAGS=$VHOOKSHFLAGS" >> config.mak
1862 echo "VHOOKLIBS=$VHOOKLIBS" >> config.mak
1863 echo "LIBOBJFLAGS=$LIBOBJFLAGS" >> config.mak
1864 echo "BUILD_STATIC=$static" >> config.mak
1865 echo "BUILDSUF=$BUILDSUF" >> config.mak
1866 echo "LIBPREF=$LIBPREF" >> config.mak
1867 echo "LIBSUF=\${BUILDSUF}$LIBSUF" >> config.mak
1868 if enabled static
; then
1869 echo "LIB=$LIB" >> config.mak
1870 else # Some Make complain if this variable does not exist.
1871 echo "LIB=" >> config.mak
1873 echo "SLIBPREF=$SLIBPREF" >> config.mak
1874 echo "SLIBSUF=\${BUILDSUF}$SLIBSUF" >> config.mak
1875 echo "EXESUF=\${BUILDSUF}$EXESUF" >> config.mak
1876 echo "TARGET_OS=$targetos" >> config.mak
1878 ucarch
=`toupper $arch`
1879 echo "TARGET_ARCH_${ucarch}=yes" >> config.mak
1880 echo "#define ARCH_${ucarch} 1" >> $TMPH
1885 echo "TARGET_ARCH_X86=yes" >> config.mak
1886 echo "#define ARCH_X86 1" >> $TMPH
1889 if test "$POWERPCMODE" = "64bits"; then
1890 echo "#define POWERPC_MODE_64BITS 1" >> $TMPH
1894 echo "TARGET_ARCH_SPARC=yes" >> config.mak
1895 echo "#define ARCH_SPARC 1" >> $TMPH
1899 if enabled bigendian
; then
1900 echo "WORDS_BIGENDIAN=yes" >> config.mak
1901 echo "#define WORDS_BIGENDIAN 1" >> $TMPH
1903 if enabled mmx
; then
1904 echo "#define __CPU__ 586" >> $TMPH
1907 if enabled sdl
; then
1908 echo "SDL_LIBS=`"${SDL_CONFIG}" --libs`" >> config.mak
1909 echo "SDL_CFLAGS=`"${SDL_CONFIG}" --cflags`" >> config.mak
1911 if enabled texi2html
; then
1912 echo "BUILD_DOC=yes" >> config.mak
1915 sws_version
=`grep '#define LIBSWSCALE_VERSION ' "$source_path/libswscale/swscale.h" | sed 's/[^0-9\.]//g'`
1916 pp_version
=`grep '#define LIBPOSTPROC_VERSION ' "$source_path/libpostproc/postprocess.h" | sed 's/[^0-9\.]//g'`
1917 lavc_version
=`grep '#define LIBAVCODEC_VERSION ' "$source_path/libavcodec/avcodec.h" | sed 's/[^0-9\.]//g'`
1918 lavf_version
=`grep '#define LIBAVFORMAT_VERSION ' "$source_path/libavformat/avformat.h" | sed 's/[^0-9\.]//g'`
1919 lavu_version
=`grep '#define LIBAVUTIL_VERSION ' "$source_path/libavutil/avutil.h" | sed 's/[^0-9\.]//g'`
1923 if enabled shared
; then
1924 echo "BUILD_SHARED=yes" >> config.mak
1925 echo "PIC=-fPIC -DPIC" >> config.mak
1926 echo "SPPMAJOR=${pp_version%%.*}" >> config.mak
1927 echo "SPPVERSION=$pp_version" >> config.mak
1928 echo "LAVCMAJOR=${lavc_version%%.*}" >> config.mak
1929 echo "LAVCVERSION=$lavc_version" >> config.mak
1930 echo "LAVFMAJOR=${lavf_version%%.*}" >> config.mak
1931 echo "LAVFVERSION=$lavf_version" >> config.mak
1932 echo "LAVUMAJOR=${lavu_version%%.*}" >> config.mak
1933 echo "LAVUVERSION=$lavu_version" >> config.mak
1934 echo "SWSMAJOR=${sws_version%%.*}" >> config.mak
1935 echo "SWSVERSION=$sws_version" >> config.mak
1936 echo "SLIBNAME=${SLIBNAME}" >> config.mak
1937 echo "SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}" >> config.mak
1938 echo "SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}" >> config.mak
1939 echo "SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}" >> config.mak
1940 echo "SLIB_INSTALL_EXTRA_CMD=${SLIB_INSTALL_EXTRA_CMD}" >> config.mak
1942 echo "LIB_INSTALL_EXTRA_CMD=${LIB_INSTALL_EXTRA_CMD}" >> config.mak
1943 echo "EXTRALIBS=$extralibs" >> config.mak
1945 print_config HAVE_
$TMPH config.mak
$HAVE_LIST
1946 print_config CONFIG_
$TMPH config.mak
$CONFIG_LIST
1947 print_config TARGET_
$TMPH config.mak
$TARGET_LIST
1949 if test "$targetos" = "Darwin"; then
1950 echo "#define CONFIG_DARWIN 1" >> $TMPH
1953 echo "#define restrict $_restrict" >> $TMPH
1955 if test "$optimize" = "small"; then
1956 echo "#define always_inline" >> $TMPH
1957 echo "#define CONFIG_SMALL 1" >> $TMPH
1960 echo "SRC_PATH=\"$source_path\"" >> config.mak
1961 echo "SRC_PATH_BARE=$source_path" >> config.mak
1962 echo "BUILD_ROOT=\"$PWD\"" >> config.mak
1964 if enabled amr_if2
; then
1965 echo "AMR_CFLAGS=-DIF2=1" >> config.mak
1968 # Apparently it's not possible to portably echo a backslash.
1969 if enabled asmalign_pot
; then
1970 printf '#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\\n\\t"\n' >> $TMPH
1972 printf '#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\\n\\t"\n' >> $TMPH
1976 for codec
in $DECODER_LIST $ENCODER_LIST $PARSER_LIST $DEMUXER_LIST $MUXER_LIST; do
1977 ucname
="`toupper $codec`"
1978 config_name
="CONFIG_$ucname"
1979 enabled_name
="ENABLE_$ucname"
1980 if enabled
$codec; then
1981 echo "#define $config_name 1" >> $TMPH
1982 echo "#define $enabled_name 1" >> $TMPH
1983 echo "$config_name=yes" >> config.mak
1985 echo "#define $enabled_name 0" >> $TMPH
1989 # Do not overwrite config.h if unchanged to avoid superfluous rebuilds.
1990 if ! cmp -s
$TMPH config.h
; then
1991 mv -f
$TMPH config.h
1993 echo "config.h is unchanged"
1996 rm -f
$TMPO $TMPC $TMPE $TMPS $TMPH
1998 # build tree in object directory if source path is different from current one
1999 if enabled source_path_used
; then
2012 libavcodec/amr_float \
2013 libavcodec/amrwb_float \
2023 libavformat/Makefile \
2024 libavcodec/Makefile \
2025 libpostproc/Makefile \
2026 libavutil/Makefile \
2027 libswscale/Makefile \
2033 for dir
in $DIRS ; do
2036 for f
in $FILES ; do
2037 ln -sf
"$source_path/$f" $f
2042 # build pkg-config files
2043 # FIXME: libdir and includedir are hardcoded and may differ from the real path.
2045 pkgconfig_generate
(){
2054 exec_prefix=\${prefix}
2055 libdir=\${exec_prefix}/lib
2056 includedir=\${prefix}/include
2059 Description: $comment
2063 Libs: -L\${libdir} $libs
2064 Cflags: -I\${includedir} -I\${includedir}/$include
2068 pkgconfig_generate_uninstalled
(){
2070 shortname
=${name#lib}
2075 cat <<EOF >$name-uninstalled.pc
2078 libdir=\${pcfiledir}/$name
2079 includedir=\${pcfiledir}/$name
2082 Description: $comment
2086 Libs: \${libdir}/${LIBPREF}${shortname}${LIBSUF} $libs
2087 Cflags: -I\${includedir}
2091 pkgconfig_generate libavutil
"FFmpeg utility library" "$lavu_version" -lavutil
"" ffmpeg
2092 pkgconfig_generate_uninstalled libavutil
"FFmpeg utility library" "$lavu_version"
2094 pkgconfig_generate libavcodec
"FFmpeg codec library" "$lavc_version" "-lavcodec $extralibs" "$pkg_requires libavutil = $lavu_version" ffmpeg
2095 pkgconfig_generate_uninstalled libavcodec
"FFmpeg codec library" "$lavc_version" "$extralibs" "$pkg_requires libavutil = $lavu_version"
2097 pkgconfig_generate libavformat
"FFmpeg container format library" "$lavf_version" "-lavformat $extralibs" "$pkg_requires libavcodec = $lavc_version" ffmpeg
2098 pkgconfig_generate_uninstalled libavformat
"FFmpeg container format library" "$lavf_version" "$extralibs" "$pkg_requires libavcodec = $lavc_version"
2101 pkgconfig_generate libpostproc
"FFmpeg post processing library" "$pp_version" -lpostproc
"" postproc
2102 pkgconfig_generate_uninstalled libpostproc
"FFmpeg post processing library" "$pp_version"
2105 if enabled swscaler
; then
2106 pkgconfig_generate libswscale
"FFmpeg image rescaling library" "$sws_version" "-lswscale" "libavutil = $lavu_version" swscale
2107 pkgconfig_generate_uninstalled libswscale
"FFmpeg image rescaling library" "$sws_version" "" "libavutil = $lavu_version"
2109 pkgconfig_generate libswscale
"FFmpeg image rescaling library" "$sws_version" "" "$pkg_requires libavcodec = $lavc_version" swscale
2110 pkgconfig_generate_uninstalled libswscale
"FFmpeg image rescaling library" "$sws_version" "" "$pkg_requires libavcodec = $lavc_version"
2111 apply libswscale.pc
sed s
/^Libs
:.
*$
/Libs
:/
2112 apply libswscale-uninstalled.pc
sed s
/^Libs
:.
*$
/Libs
:/