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/share/man]"
65 echo " --enable-static build static libraries [default=yes]"
66 echo " --disable-static do not build static libraries [default=no]"
67 echo " --enable-shared build shared libraries [default=no]"
68 echo " --disable-shared do not build shared libraries [default=yes]"
69 echo " --enable-gpl allow use of GPL code, the resulting libav*"
70 echo " and ffmpeg will be under GPL [default=no]"
71 echo " --enable-nonfree allow use of nonfree code, the resulting libav*"
72 echo " and ffmpeg will be unredistributable [default=no]"
73 echo " --enable-postproc enable GPLed postprocessing support [default=no]"
74 echo " --enable-swscale software scaler support [default=no]"
75 echo " --enable-avfilter video filter support (replaces vhook) [default=no]"
76 echo " --enable-avfilter-lavf video filters dependant on avformat [default=no]"
77 echo " --enable-beosthreads use BeOS threads [default=no]"
78 echo " --enable-os2threads use OS/2 threads [default=no]"
79 echo " --enable-pthreads use pthreads [default=no]"
80 echo " --enable-w32threads use Win32 threads [default=no]"
81 echo " --enable-x11grab enable X11 grabbing [default=no]"
83 echo "External library support:"
84 echo " --enable-sunmlib use Sun medialib [default=no]"
85 echo " --enable-liba52 enable GPLed liba52 support [default=no]"
86 echo " --enable-liba52bin open liba52.so.0 at runtime [default=no]"
87 echo " --enable-avisynth allow reading AVISynth script files [default=no]"
88 echo " --enable-libamr-nb enable libamr-nb floating point audio codec"
89 echo " --enable-libamr-wb enable libamr-wb floating point audio codec"
90 echo " --enable-libdc1394 enable IIDC-1394 grabbing using libdc1394"
91 echo " and libraw1394 [default=no]"
92 echo " --enable-libfaac enable FAAC support via libfaac [default=no]"
93 echo " --enable-libfaad enable FAAD support via libfaad [default=no]"
94 echo " --enable-libfaadbin open libfaad.so.0 at runtime [default=no]"
95 echo " --enable-libgsm enable GSM support via libgsm [default=no]"
96 echo " --enable-libmp3lame enable MP3 encoding via libmp3lame [default=no]"
97 echo " --enable-libnut enable NUT (de)muxing via libnut,"
98 echo " native demuxer exists [default=no]"
99 echo " --enable-libtheora enable Theora encoding via libtheora [default=no]"
100 echo " --enable-libvorbis enable Vorbis encoding via libvorbis,"
101 echo " native implementation exists [default=no]"
102 echo " --enable-libx264 enable H.264 encoding via x264 [default=no]"
103 echo " --enable-libxvid enable Xvid encoding via xvidcore,"
104 echo " native MPEG-4/Xvid encoder exists [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 " --target-os=OS compiler targets OS [$targetos]"
111 echo " --cc=CC use C compiler CC [$cc]"
112 echo " --make=MAKE use specified make [$make]"
113 echo " --extra-cflags=ECFLAGS add ECFLAGS to CFLAGS [$CFLAGS]"
114 echo " --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]"
115 echo " --extra-libs=ELIBS add ELIBS [$ELIBS]"
116 echo " --build-suffix=SUFFIX suffix for application specific build []"
117 echo " --arch=ARCH select architecture [$arch]"
118 echo " --cpu=CPU selects the minimum cpu required (affects"
119 echo " instruction selection, may crash on older CPUs)"
120 echo " --enable-powerpc-perf enable performance report on PPC"
121 echo " (requires enabling PMC)"
122 echo " --disable-mmx disable MMX usage"
123 echo " --disable-armv5te disable armv5te usage"
124 echo " --disable-armv6 disable armv6 usage"
125 echo " --disable-iwmmxt disable iwmmxt usage"
126 echo " --disable-altivec disable AltiVec usage"
127 echo " --disable-network disable network support [default=no]"
128 echo " --disable-ipv6 disable ipv6 support [default=no]"
129 echo " --disable-zlib disable zlib [default=no]"
130 echo " --disable-vhook disable video hooking support"
131 echo " --disable-debug disable debugging symbols"
132 echo " --disable-mpegaudio-hp faster (but less accurate)"
133 echo " MPEG audio decoding [default=no]"
134 echo " --enable-gray enable full grayscale support (slower color)"
135 echo " --disable-ffmpeg disable ffmpeg build"
136 echo " --disable-ffserver disable ffserver build"
137 echo " --disable-ffplay disable ffplay build"
138 echo " --enable-small optimize for size instead of speed"
139 echo " --enable-hardcoded-tables use hardcoded tables instead of runtime generation"
140 echo " --enable-memalign-hack emulate memalign, interferes with memory debuggers"
141 echo " --disable-encoder=NAME disables encoder NAME"
142 echo " --enable-encoder=NAME enables encoder NAME"
143 echo " --disable-decoder=NAME disables decoder NAME"
144 echo " --enable-decoder=NAME enables decoder NAME"
145 echo " --disable-encoders disables all encoders"
146 echo " --disable-decoders disables all decoders"
147 echo " --disable-muxer=NAME disables muxer NAME"
148 echo " --enable-muxer=NAME enables muxer NAME"
149 echo " --disable-muxers disables all muxers"
150 echo " --disable-demuxer=NAME disables demuxer NAME"
151 echo " --enable-demuxer=NAME enables demuxer NAME"
152 echo " --disable-demuxers disables all demuxers"
153 echo " --enable-parser=NAME enables parser NAME"
154 echo " --disable-parser=NAME disables parser NAME"
155 echo " --disable-parsers disables all parsers"
156 echo " --enable-bsf=NAME enables bitstream filter NAME"
157 echo " --disable-bsf=NAME disables bitstream filter NAME"
158 echo " --disable-bsfs disables all bitstream filters"
159 echo " --enable-protocol=NAME enables protocol NAME"
160 echo " --disable-protocol=NAME disables protocol NAME"
161 echo " --disable-protocols disables all protocols"
162 echo " --disable-devices disables all devices"
163 echo " --list-decoders show all available decoders"
164 echo " --list-encoders show all available encoders"
165 echo " --list-muxers show all available muxers"
166 echo " --list-demuxers show all available demuxers"
167 echo " --list-parsers show all available parsers"
168 echo " --list-protocols show all available protocols"
169 echo " --list-bsfs show all available bitstream filters"
170 echo " --list-indevs show all available input devices"
171 echo " --list-outdevs show all available output devices"
173 echo "Developer options (useful when working on FFmpeg itself):"
174 echo " --enable-gprof enable profiling with gprof [$gprof]"
175 echo " --disable-optimizations disable compiler optimizations"
176 echo " --enable-extra-warnings enable more compiler warnings"
177 echo " --disable-strip disable stripping of executables and shared libraries"
179 echo "NOTE: Object files are built at the place where configure is launched."
189 pr -n
-t
$1 >>$logfile
201 If you think configure made a mistake, make sure you are using the latest
202 version from SVN. If the latest version fails, report the problem to the
203 ffmpeg-user@mplayerhq.hu mailing list or IRC #ffmpeg on irc.freenode.net.
205 if enabled logging
; then
207 Include the log file "$logfile" produced by configure as this will help
212 Rerun configure with logging enabled (do not use --log=no), and include the
213 log this produces with your report.
216 rm -f
$TMPC $TMPO $TMPE $TMPS $TMPH
220 # Avoid locale weirdness, besides we really just want to translate ASCII.
222 echo "$@" |
tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ
226 echo "$@" |
tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
239 eval level
=\
${${var}_level
:=0}
240 eval ${var}_
${level}="\$$var"
241 eval ${var}_level
=$
(($level+1))
247 eval level
=\
${${var}_level
:-0}
248 test $level = 0 && continue
249 eval level
=$
(($level-1))
250 eval $var="\${${var}_${level}}"
251 eval ${var}_level
=$level
252 eval unset ${var}_
${level}
265 eval test "x\$$1" = "xyes"
269 eval test "x\$$1" = "xno"
274 enabled
$opt ||
return 1
280 disabled
$opt ||
return 1
286 enabled
$opt && return 0
292 disabled
$opt && return 0
300 [ $var = $value ] && return 0
307 enabled
${cfg}_checking
&& die
"Circular dependency for $cfg."
308 disabled
${cfg}_checking
&& continue
309 enable ${cfg}_checking
311 eval dep_all
="\$${cfg}_deps"
312 eval dep_any
="\$${cfg}_deps_any"
314 pushvar cfg dep_all dep_any
315 check_deps
$dep_all $dep_any
316 popvar cfg dep_all dep_any
318 enabled_all
$dep_all || disable
$cfg
319 enabled_any
$dep_any || disable
$cfg
321 if enabled
$cfg; then
322 eval dep_extralibs
="\$${cfg}_extralibs"
323 test -n
"$dep_extralibs" && add_extralibs
$dep_extralibs
326 disable
${cfg}_checking
336 ucname
="`toupper $cfg`"
337 if enabled
$cfg; then
338 echo "#define ${pfx}${ucname} 1" >> $header
339 echo "#define ENABLE_${ucname} 1" >> $header
340 echo "${pfx}${ucname}=yes" >> $makefile
342 echo "#define ENABLE_${ucname} 0" >> $header
348 (: ${SAVE_CFLAGS?}) 2>/dev
/null
352 flags_saved
&& return
353 SAVE_CFLAGS
="$CFLAGS"
354 SAVE_LDFLAGS
="$LDFLAGS"
355 SAVE_extralibs
="$extralibs"
359 flags_saved ||
return
360 CFLAGS
="$SAVE_CFLAGS"
361 LDFLAGS
="$SAVE_LDFLAGS"
362 extralibs
="$SAVE_extralibs"
375 LDFLAGS
="$LDFLAGS $*"
380 extralibs
="$extralibs $*"
386 flags_saved
&& eval "SAVE_$var=\"\$SAVE_$var $*\""
387 eval "$var=\"\$$var $*\""
399 append extralibs
"$@"
411 check_cmd
$cc $CFLAGS "$@" -c
-o
$TMPO $TMPC
418 check_cmd
$cc $CFLAGS "$@" -E
-o
$TMPO $TMPC
426 check_cc
"$@" <<EOF && enable $name || disable $name
439 test "${f}" = "${f#-l}" && flags
="$flags $f" || libs
="$libs $f"
441 check_cmd
$cc $LDFLAGS $flags -o
$TMPE $TMPO $extralibs $libs
445 log check_cflags
"$@"
446 check_cc
"$@" <<EOF && add_cflags "$@"
452 log check_ldflags
"$@"
453 check_ld
"$@" <<EOF && add_ldflags "$@"
461 log check_header
"$@"
464 var
=`echo $header | sed 's/[^A-Za-z0-9_]/_/g'`
466 check_cpp
"$@" <<EOF && enable $var
477 check_ld
"$@" <<EOF && enable $func
492 for hdr
in $headers; do
496 check_ld
"$@" <<EOF && enable $func
498 int main(int argc, char **argv){
511 check_header
$header && check_func
$func && add_extralibs
"$@"
523 check_func2
"$headers" $func && add_extralibs
"$@"
530 check_ld
"$@" && { enabled cross_compile ||
$TMPE >>$logfile 2>&1; }
536 # exit() is not async signal safe. _Exit (C99) and _exit (POSIX)
537 # are safe but may not be available everywhere. Thus we use
538 # raise(SIGTERM) instead. The check is run in a subshell so we
539 # can redirect the "Terminated" message from the shell. SIGBUS
540 # is not defined by standard C so it is used conditionally.
542 (check_exec
"$@") >>$logfile 2>&1 <<EOF
544 static void sighandler(int sig){
548 signal(SIGILL, sighandler);
549 signal(SIGFPE, sighandler);
550 signal(SIGSEGV, sighandler);
552 signal(SIGBUS, sighandler);
566 for hdr
in $headers; do
570 check_cc
"$@" <<EOF && enable $type
581 check_lib
$header $func "$@" || die
"ERROR: $name not found"
589 check_lib2
"$headers" $func "$@" || die
"ERROR: $name not found"
599 check_cmd
${pkg}-config
--version
601 if test "$err" = 0; then
602 temp_cflags
`${pkg}-config --cflags`
603 temp_extralibs
`${pkg}-config --libs`
604 check_lib
"$@" $header $func && enable $cfg
612 "$@" < "$file" > "$file.tmp" && mv "$file.tmp" "$file" ||
rm "$file.tmp"
717 dev_bktr_ioctl_bt848_h
718 dev_bktr_ioctl_meteor_h
720 dev_video_meteor_ioctl_meteor_h
721 dev_video_bktr_ioctl_bt848_h
742 machine_ioctl_bt848_h
743 machine_ioctl_meteor_h
774 # code dependency declarations
776 # architecture extensions
777 altivec_deps
="powerpc"
778 armv5te_deps
="armv4l"
786 # decoders / encoders
787 ac3_decoder_deps
="gpl"
788 dxa_decoder_deps
="zlib"
789 flashsv_decoder_deps
="zlib"
790 flashsv_encoder_deps
="zlib"
791 mpeg_xvmc_decoder_deps
="xvmc"
792 png_decoder_deps
="zlib"
793 png_encoder_deps
="zlib"
794 zmbv_decoder_deps
="zlib"
795 zmbv_encoder_deps
="zlib"
798 liba52_decoder_deps
="liba52"
799 liba52bin_decoder_extralibs
='$ldl'
800 libamr_nb_decoder_deps
="libamr_nb"
801 libamr_nb_encoder_deps
="libamr_nb"
802 libamr_wb_decoder_deps
="libamr_wb"
803 libamr_wb_encoder_deps
="libamr_wb"
804 libfaac_encoder_deps
="libfaac"
805 libfaad_decoder_deps
="libfaad"
806 libfaadbin_decoder_extralibs
='$ldl'
807 libgsm_decoder_deps
="libgsm"
808 libgsm_encoder_deps
="libgsm"
809 libgsm_ms_decoder_deps
="libgsm"
810 libgsm_ms_encoder_deps
="libgsm"
811 libmp3lame_encoder_deps
="libmp3lame"
812 libtheora_encoder_deps
="libtheora"
813 libvorbis_encoder_deps
="libvorbis"
814 libx264_encoder_deps
="libx264"
815 libxvid_encoder_deps
="libxvid"
816 mpeg4aac_decoder_deps
="libfaad"
819 ac3_demuxer_deps
="ac3_parser"
820 audio_beos_demuxer_deps
="audio_beos"
821 audio_beos_demuxer_extralibs
="-lmedia -lbe"
822 audio_beos_muxer_deps
="audio_beos"
823 audio_beos_muxer_extralibs
="-lmedia -lbe"
824 avisynth_demuxer_deps
="avisynth"
825 bktr_demuxer_deps_any
="dev_bktr_ioctl_bt848_h machine_ioctl_bt848_h dev_video_bktr_ioctl_bt848_h dev_ic_bt8xx_h"
826 dv1394_demuxer_deps
="dv1394 dv_demuxer"
827 libdc1394_demuxer_deps
="libdc1394"
828 libnut_demuxer_deps
="libnut"
829 libnut_muxer_deps
="libnut"
830 mp3_demuxer_deps
="mpegaudio_parser"
831 oss_demuxer_deps_any
="soundcard_h sys_soundcard_h"
832 oss_muxer_deps_any
="soundcard_h sys_soundcard_h"
833 redir_demuxer_deps
="network"
834 rtp_muxer_deps
="network rtp_protocol"
835 rtsp_demuxer_deps
="sdp_demuxer"
836 sdp_demuxer_deps
="rtp_protocol mpegts_demuxer"
837 v4l2_demuxer_deps
="linux_videodev2_h"
838 v4l_demuxer_deps
="linux_videodev_h"
839 vfwcap_demuxer_deps
="capCreateCaptureWindow"
840 vfwcap_demuxer_extralibs
="-lvfw32"
841 x11_grab_device_demuxer_deps
="x11grab XShmCreateImage"
842 x11_grab_device_demuxer_extralibs
="-lX11 -lXext"
845 http_protocol_deps
="network"
846 rtp_protocol_deps
="udp_protocol"
847 tcp_protocol_deps
="network"
848 udp_protocol_deps
="network"
851 movie_filter_deps
="avfilter_lavf"
855 ffserver_deps
="ffm_muxer rtp_protocol rtsp_demuxer"
856 ffserver_extralibs
='$ldl'
857 vhook_extralibs
='$ldl'
860 # set temporary file name
861 if test ! -z
"$TMPDIR" ; then
863 elif test ! -z
"$TEMPDIR" ; then
869 TMPC
="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.c"
870 TMPO
="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.o"
871 TMPE
="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}"
872 TMPS
="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.S"
873 TMPH
="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.h"
882 libdir
='$(PREFIX)/lib'
884 incdir
='$(PREFIX)/include'
885 mandir
='$(PREFIX)/share/man'
886 bindir
='$(PREFIX)/bin'
894 asmalign_pot
="unknown"
902 targetos
=$
(tolower $
(uname
-s
))
907 # configurable options
922 SHFLAGS
='-shared -Wl,-soname,$@'
923 VHOOKSHFLAGS
='$(SHFLAGS)'
924 LDLATEFLAGS
='-Wl,-rpath-link,\$(BUILD_ROOT)/libavcodec -Wl,-rpath-link,\$(BUILD_ROOT)/libavformat -Wl,-rpath-link,\$(BUILD_ROOT)/libavutil'
925 FFSERVERLDFLAGS
=-Wl
,-E
928 FULLNAME
='$(NAME)$(BUILDSUF)'
929 LIBNAME
='$(LIBPREF)$(FULLNAME)$(LIBSUF)'
932 SLIBNAME
='$(SLIBPREF)$(FULLNAME)$(SLIBSUF)'
933 SLIBNAME_WITH_VERSION
='$(SLIBNAME).$(LIBVERSION)'
934 SLIBNAME_WITH_MAJOR
='$(SLIBNAME).$(LIBMAJOR)'
935 LIB_INSTALL_EXTRA_CMD
='$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
938 source_path
="`dirname \"$0\"`"
939 enable source_path_used
940 if test -z
"$source_path" -o
"$source_path" = "." ; then
942 disable source_path_used
944 source_path
="`cd \"$source_path\"; pwd`"
945 echo "$source_path" |
grep -q
'[[:blank:]]' &&
946 die
"Out of tree builds are impossible with whitespace in source path."
949 FFMPEG_CONFIGURATION
="$@"
955 sed -n
"s/^[^#]*$pattern.*([^,]*, *\([^,]*\)\(,.*\)*).*/\1_$thing/p" "$file"
958 ENCODER_LIST
=$
(find_things encoder ENC libavcodec
/allcodecs.c
)
959 DECODER_LIST
=$
(find_things decoder DEC libavcodec
/allcodecs.c
)
960 PARSER_LIST
=$
(find_things parser PARSER libavcodec
/allcodecs.c
)
961 BSF_LIST
=$
(find_things bsf BSF libavcodec
/allcodecs.c
)
962 MUXER_LIST
=$
(find_things muxer _MUX libavformat
/allformats.c
)
963 DEMUXER_LIST
=$
(find_things demuxer DEMUX libavformat
/allformats.c
)
964 OUTDEV_LIST
=$
(find_things muxer _MUX libavdevice
/alldevices.c
)
965 INDEV_LIST
=$
(find_things demuxer DEMUX libavdevice
/alldevices.c
)
966 PROTOCOL_LIST
=$
(find_things protocol PROTOCOL libavformat
/allformats.c
)
967 FILTER_LIST
=$
(find_things filter FILTER libavfilter
/allfilters.c
)
969 enable $ARCH_EXT_LIST \
982 echo "Unknown option \"$1\"."
983 echo "See $0 --help for available options."
990 echo $
* |
sed s
/$suffix//g |
tr ' ' '\n' |
sort
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
) enable cross_compile
1017 --target-os
=*) targetos
="$optval"
1019 --cc
=*) cc
="$optval"
1021 --make=*) make="$optval"
1023 --extra-cflags
=*) add_cflags
"$optval"
1025 --extra-ldflags
=*) add_ldflags
"$optval"
1027 --extra-libs
=*) add_extralibs
"$optval"
1029 --build-suffix
=*) BUILDSUF
="$optval"
1031 --arch
=*) arch
="$optval"
1033 --cpu
=*) cpu
="$optval"
1035 --enable-sunmlib
) enable mlib
1037 --disable-strip
) disable dostrip
1039 --disable-devices
) disable
$INDEV_LIST $OUTDEV_LIST
1041 --enable-debug
=*) debuglevel
="$optval"
1043 --enable-
*=*|
--disable-
*=*)
1044 eval `echo "$opt" | sed 's/=/-/;s/--/action=/;s/-/ thing=/;s/-/ name=/'`
1046 encoder|decoder|muxer|demuxer|parser|bsf|protocol|filter
) $action ${optval}_
${thing} ;;
1047 *) die_unknown
"$opt" ;;
1050 --enable-?
*|
--disable-?
*)
1051 eval `echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g'`
1052 if is_in
$option $COMPONENT_LIST; then
1053 eval $action \$$
(toupper
${option%s})_LIST
1054 elif is_in
$option $CMDLINE_SELECT; then
1061 NAME
="${opt#--list-}"
1062 is_in
$NAME $COMPONENT_LIST || die_unknown
$opt
1064 eval show_list
$NAME \$$
(toupper
$NAME)_LIST
1066 --help|
-h
) show_help
1075 i386|i486|i586|i686|i86pc|BePC
)
1077 enable fast_unaligned
1081 enable fast_unaligned
1082 canon_arch
="`$cc -dumpmachine | sed -e 's,\([^-]*\)-.*,\1,'`"
1083 if [ x
"$canon_arch" = x
"x86_64" -o x
"$canon_arch" = x
"amd64" ]; then
1084 if [ -z
"`echo $CFLAGS | grep -- -m32`" ]; then
1090 # armv4l is a subset of armv[567]*l
1098 "Power Macintosh"|ppc|powerpc
)
1144 enabled_any x86_32 x86_64
&& enable x86
1145 enabled sparc64
&& enable sparc
1150 PREFIX
="$HOME/config"
1151 # helps building libavcodec
1152 add_cflags
"-DPIC -fomit-frame-pointer"
1153 # 3 gcc releases known for BeOS, each with ugly bugs
1154 gcc_version
="`$cc -v 2>&1 | grep version | cut -d ' ' -f3-`"
1155 case "$gcc_version" in
1156 2.9-beos-991026
*|
2.9-beos-000224
*) echo "R5/GG gcc"
1159 *20010315*) echo "BeBits gcc"
1160 add_cflags
"-fno-expensive-optimizations"
1164 # enable BeOS things
1166 # no need for libm, but the inet stuff
1168 # XXX: actually should check for NOT net_server
1169 if (echo $BEINCLUDES|
grep 'headers/be/bone' >/dev
/null
); then
1170 network_extralibs
="-lbind -lsocket"
1172 enable beos_netserver
1173 network_extralibs
="-lnet"
1177 SHFLAGS
='-shared -Wl,-h,$@'
1178 network_extralibs
="-lsocket -lnsl"
1181 oss_demuxer_extralibs
="-lossaudio"
1182 oss_muxer_extralibs
="-lossaudio"
1185 disable need_memalign
1186 LIBOBJFLAGS
='$(PIC)'
1188 SLIBNAME
='$(SLIBPREF)$(FULLNAME)$(SLIBSUF).$(LIBVERSION)'
1189 SLIBNAME_WITH_VERSION
='$(SLIBNAME)'
1190 SLIBNAME_WITH_MAJOR
='$(SLIBNAME)'
1191 oss_demuxer_extralibs
="-lossaudio"
1192 oss_muxer_extralibs
="-lossaudio"
1195 disable need_memalign
1198 osextralibs
="-lpoll -lgnugetopt"
1202 disable need_memalign
1203 SHFLAGS
='-dynamiclib -Wl,-single_module -Wl,-install_name,$(SHLIBDIR)/$(SLIBNAME),-current_version,$(SPPVERSION),-compatibility_version,$(SPPVERSION) -Wl,-read_only_relocs,suppress'
1204 VHOOKSHFLAGS
='-dynamiclib -Wl,-single_module -flat_namespace -undefined suppress -Wl,-install_name,$(SHLIBDIR)/vhook/$@'
1206 FFLDFLAGS
="-Wl,-dynamic,-search_paths_first"
1208 SLIBNAME_WITH_VERSION
='$(SLIBPREF)$(FULLNAME).$(LIBVERSION)$(SLIBSUF)'
1209 SLIBNAME_WITH_MAJOR
='$(SLIBPREF)$(FULLNAME).$(LIBMAJOR)$(SLIBSUF)'
1210 FFSERVERLDFLAGS
=-Wl
,-bind_at_load
1215 VHOOKSHFLAGS
='-shared -L$(BUILD_ROOT)/libavformat -L$(BUILD_ROOT)/libavcodec -L$(BUILD_ROOT)/libavutil'
1216 VHOOKLIBS
='-lavformat$(BUILDSUF) -lavcodec$(BUILDSUF) -lavutil$(BUILDSUF) $(EXTRALIBS)'
1217 if enabled swscale
; then
1218 VHOOKSHFLAGS
="$VHOOKSHFLAGS -L\$(BUILD_ROOT)/libswscale"
1219 VHOOKLIBS
="$VHOOKLIBS -lswscale\$(BUILDSUF)"
1225 SLIBNAME_WITH_VERSION
='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
1226 SLIBNAME_WITH_MAJOR
='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
1227 SLIB_EXTRA_CMD
='-lib /machine:i386 /def:$(@:$(SLIBSUF)=.def)'
1228 SLIB_INSTALL_EXTRA_CMD
='-install -m 644 $(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib) "$(SHLIBDIR)/$(SLIBNAME:$(SLIBSUF)=.lib)"'
1229 SLIB_UNINSTALL_EXTRA_CMD
='rm -f "$(SHLIBDIR)/$(SLIBNAME:$(SLIBSUF)=.lib)"'
1230 SHFLAGS
='-shared -Wl,--output-def,$(@:$(SLIBSUF)=.def) -Wl,--enable-runtime-pseudo-reloc -Wl,--enable-auto-image-base'
1235 VHOOKSHFLAGS
='-shared -L$(BUILD_ROOT)/libavformat -L$(BUILD_ROOT)/libavcodec -L$(BUILD_ROOT)/libavutil'
1236 VHOOKLIBS
='-lavformat$(BUILDSUF) -lavcodec$(BUILDSUF) -lavutil$(BUILDSUF) $(EXTRALIBS)'
1237 if enabled swscale
; then
1238 VHOOKSHFLAGS
="$VHOOKSHFLAGS -L\$(BUILD_ROOT)/libswscale"
1239 VHOOKLIBS
="$VHOOKLIBS -lswscale\$(BUILDSUF)"
1244 SLIBNAME_WITH_VERSION
='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
1245 SLIBNAME_WITH_MAJOR
='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
1246 SHFLAGS
='-shared -Wl,--enable-auto-image-base'
1248 *-dos|freedos|opendos
)
1249 disable ffplay ffserver vhook
1250 disable
$INDEV_LIST $OUTDEV_LIST
1251 network_extralibs
="-lsocket"
1255 LDLATEFLAGS
="-Wl,--as-needed $LDLATEFLAGS"
1260 ranlib
="echo ignoring ranlib"
1264 ranlib
="echo ignoring ranlib"
1269 FFLDFLAGS
="-Zomf -Zbin-files -Zargs-wild -Zmap"
1270 SHFLAGS
='$(NAME).def -Zdll -Zomf'
1275 SLIBNAME_WITH_VERSION
='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
1276 SLIBNAME_WITH_MAJOR
='$(SLIBPREF)$(shell echo $(NAME) | cut -c1-6)$(LIBMAJOR)$(SLIBSUF)'
1277 SLIB_CREATE_DEF_CMD
='echo LIBRARY $(SLIBNAME_WITH_MAJOR) INITINSTANCE TERMINSTANCE > $(NAME).def; \
1278 echo PROTMODE >> $(NAME).def; \
1279 echo CODE PRELOAD MOVEABLE DISCARDABLE >> $(NAME).def; \
1280 echo DATA PRELOAD MOVEABLE MULTIPLE NONSHARED >> $(NAME).def; \
1281 echo EXPORTS >> $(NAME).def; \
1282 emxexp -o $(OBJS) >> $(NAME).def'
1283 SLIB_EXTRA_CMD
='emximp -o $(LIBPREF)$(NAME)_dll.a $(NAME).def; \
1284 emximp -o $(LIBPREF)$(NAME)_dll.lib $(NAME).def;'
1285 SLIB_INSTALL_EXTRA_CMD
='install -m 644 $(LIBPREF)$(NAME)_dll.a $(LIBPREF)$(NAME)_dll.lib "$(LIBDIR)"'
1286 SLIB_UNINSTALL_EXTRA_CMD
='rm -f "$(LIBDIR)"/$(LIBPREF)$(NAME)_dll.a "$(LIBDIR)"/$(LIBPREF)$(NAME)_dll.lib'
1294 targetos
="${targetos}-UNKNOWN"
1298 add_extralibs
$osextralibs
1300 if ! disabled logging
; then
1301 enabled logging || logfile
="$logging"
1302 echo "# $0 $@" >$logfile
1308 # Combine FFLDFLAGS and the LDFLAGS environment variable.
1309 LDFLAGS
="$FFLDFLAGS $LDFLAGS"
1311 test -n
"$cross_prefix" && enable cross_compile
1312 cc
="${cross_prefix}${cc}"
1313 ar="${cross_prefix}${ar}"
1314 ranlib
="${cross_prefix}${ranlib}"
1315 strip
="${cross_prefix}${strip}"
1317 # we need to build at least one lib type
1318 if ! enabled_any static shared
; then
1320 At least one library type must be built.
1321 Specify --enable-static to build the static libraries or --enable-shared to
1322 build the shared libraries as well. To only build the shared libraries specify
1323 --disable-static in addition to --enable-shared.
1328 disabled static
&& LIBNAME
=""
1330 if enabled_any libfaad libfaadbin
; then
1331 if check_header faad.h
; then
1334 #ifndef FAAD2_VERSION
1337 int main(void) { return 0; }
1339 test $?
= 0 && enable libfaad2
1341 die
"FAAD test failed."
1346 if ! enabled gpl
; then
1350 enabled_any $@
&& die
"$name is under GPL and --enable-gpl is not specified."
1352 die_gpl_disabled
"The Postprocessing code" postproc
1353 die_gpl_disabled
"liba52" liba52
1354 die_gpl_disabled
"libx264" libx264
1355 die_gpl_disabled
"libxvidcore" libxvid
1356 die_gpl_disabled
"FAAD2" libfaad2
1357 die_gpl_disabled
"The X11 grabber" x11grab
1358 die_gpl_disabled
"The software scaler" swscale
1361 if ! enabled nonfree
&& enabled_any libamr_nb libamr_wb
; then
1362 die
"libamr is nonfree and --enable-nonfree is not specified."
1365 check_deps
$ARCH_EXT_LIST
1367 test -z
"$need_memalign" && need_memalign
="$mmx"
1370 if test $targetos = darwin
; then
1371 if test -n
"`$cc -v 2>&1 | grep xlc`"; then
1372 add_cflags
"-qpdf2 -qlanglvl=extc99 -qmaxmem=-1 -qarch=auto -qtune=auto"
1375 check_cflags
"-force_cpusubtype_ALL"
1376 check_cflags
"-Wno-sign-compare"
1377 disabled shared
&& add_cflags
-mdynamic-no-pic
1381 disabled optimizations || add_cflags
-fomit-frame-pointer
1383 # Add processor-specific flags
1384 if test $cpu != "generic"; then
1386 $1 altivec
&& echo "WARNING: Tuning for $2 but AltiVec $1.";
1389 601|ppc601|PowerPC601
)
1390 add_cflags
"-mcpu=601"
1391 warn_altivec enabled PPC601
1393 603*|ppc603
*|PowerPC603
*)
1394 add_cflags
"-mcpu=603"
1395 warn_altivec enabled PPC603
1397 604*|ppc604
*|PowerPC604
*)
1398 add_cflags
"-mcpu=604"
1399 warn_altivec enabled PPC604
1401 G3|g3|
75*|ppc75
*|PowerPC75
*)
1402 add_cflags
"-mcpu=750 -mpowerpc-gfxopt"
1403 warn_altivec enabled PPC75x
1405 G4|g4|
745*|ppc745
*|PowerPC745
*)
1406 add_cflags
"-mcpu=7450 -mpowerpc-gfxopt"
1407 warn_altivec disabled PPC745x
1409 74*|ppc74
*|PowerPC74
*)
1410 add_cflags
"-mcpu=7400 -mpowerpc-gfxopt"
1411 warn_altivec disabled PPC74xx
1413 G5|g5|
970|ppc970|PowerPC970|power4
*|Power4
*)
1414 add_cflags
"-mcpu=970 -mpowerpc-gfxopt -mpowerpc64"
1415 warn_altivec disabled PPC970
1419 add_cflags
"-mcpu=cell"
1420 warn_altivec disabled Cell
1423 # targets that do NOT support conditional mov (cmov)
1424 i
[345]86|pentium|pentium-mmx|k6|k6-
[23]|winchip-c6|winchip2|c3
)
1425 add_cflags
"-march=$cpu"
1428 # targets that do support conditional mov (cmov)
1429 i686|pentiumpro|pentium
[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-
[mx
]p|athlon64|k8|opteron|athlon-fx|core2
)
1430 add_cflags
"-march=$cpu"
1434 # targets that do support conditional mov but on which it's slow
1435 pentium4|pentium4m|prescott|nocona
)
1436 add_cflags
"-march=$cpu"
1441 add_cflags
"-mcpu=v9"
1444 add_cflags
"-mcpu=$cpu"
1447 echo "WARNING: Unknown CPU \"$cpu\", ignored."
1453 $1 --version
2>&1 |
grep -q GNU
1456 if ! gnu_make
$make; then
1457 gnu_make gmake
&& make=gmake || die
"GNU make not found."
1460 # make sure we can execute files in $TMPDIR
1461 cat >$TMPE 2>>$logfile <<EOF
1464 chmod +x
$TMPE >>$logfile 2>&1
1465 if ! $TMPE >>$logfile 2>&1; then
1467 Unable to create and execute files in $TMPDIR1. Set the TMPDIR environment
1468 variable to another directory and make sure that $TMPDIR1 is not mounted
1471 die
"Sanity test failed."
1475 # compiler sanity check
1481 if test "$?" != 0; then
1482 echo "$cc is unable to create an executable file."
1483 if test -z
"$cross_prefix" && ! enabled cross_compile
; then
1484 echo "If $cc is a cross-compiler, use the --cross-compile option."
1485 echo "Only do this if you know what cross compiling means."
1487 die
"C compiler test failed."
1490 check_asm inline_asm
'""'
1492 if enabled x86
; then
1493 # check whether EBP is available on x86
1494 # As 'i' is stored on the stack, this program will crash
1495 # if the base pointer is used to access it because the
1496 # base pointer is cleared in the inline assembly code.
1497 check_exec_crash
<<EOF && enable ebp_available
1505 # check wether EBX is available on x86
1506 check_asm ebx_available
'"":::"%ebx"'
1508 # check whether binutils is new enough to compile SSSE3
1509 enabled ssse3
&& check_asm ssse3
'"pabsw %xmm0, %xmm0"'
1511 check_asm bswap
'"bswap %%eax" ::: "%eax"'
1514 # check for assembler specific support
1516 if test $arch = "powerpc"; then
1517 check_cc
<<EOF && enable dcbzl
1519 register long zero = 0;
1521 asm volatile("dcbzl %0, %1" : : "b" (data), "r" (zero));
1527 # check for SIMD availability
1529 # AltiVec flags: The FSF version of GCC differs from the Apple version
1530 if enabled altivec
; then
1531 test -n
"`$cc -v 2>&1 | grep version | grep Apple`" &&
1532 add_cflags
"-faltivec" ||
1533 add_cflags
"-maltivec -mabi=altivec"
1535 check_header altivec.h
1537 # check if our compiler supports Motorola AltiVec C API
1538 enabled altivec_h
&&
1539 inc_altivec_h
="#include <altivec.h>" ||
1541 check_cc
<<EOF || disable altivec
1544 vector signed int v1, v2, v3;
1545 v1 = vec_add(v2,v3);
1551 enabled armv5te
&& check_asm armv5te
'"qadd r0, r0, r0"'
1552 enabled armv6
&& check_asm armv6
'"sadd16 r0, r0, r0"'
1553 enabled iwmmxt
&& check_asm iwmmxt
'"wunpckelub wr6, wr4"'
1554 enabled mmi
&& check_asm mmi
'"lq $2, 0($2)"'
1555 enabled vis
&& check_asm vis
'"pdist %f0, %f0, %f0"' -mcpu
=ultrasparc
1557 enabled vis
&& add_cflags
"-mcpu=ultrasparc -mtune=ultrasparc"
1560 # big/little-endian test
1561 check_cc
<<EOF || die "endian test failed"
1562 unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
1564 tr -c
-d BIGE
< $TMPO |
grep -q BIGE
&& enable bigendian
1567 # check availability of some header files
1569 if check_func dlopen
; then
1571 elif check_func dlopen
-ldl
; then
1576 check_func gethrtime
1577 check_func getrusage
1578 check_func inet_aton
$network_extralibs
1581 check_func2 windows.h GetProcessTimes
1583 check_header byteswap.h
1584 check_header conio.h
1585 check_header dlfcn.h
1586 check_header malloc.h
1587 check_header termios.h
1589 if ! enabled_any memalign memalign_hack
&& enabled need_memalign
; then
1590 die
"Error, no memalign() but SSE enabled, disable it or use --enable-memalign-hack."
1593 enabled zlib
&& check_lib zlib.h zlibVersion
-lz || disable zlib
1595 # ffserver uses poll(),
1596 # if it's not found we can emulate it using select().
1597 if enabled ffserver
; then
1599 check_header sys
/select.h
1602 # check for some common methods of building with pthread support
1603 # do this before the optional library checks as some of them require pthreads
1604 if enabled pthreads
; then
1605 if check_func pthread_create
; then
1607 elif check_func pthread_create
-pthread
; then
1609 add_extralibs
-pthread
1610 elif check_func pthread_create
-pthreads
; then
1611 add_cflags
-pthreads
1612 add_extralibs
-pthreads
1613 elif ! check_lib pthread.h pthread_create
-lpthread
; then
1614 die
"ERROR: can't find pthreads library"
1618 for thread
in $THREADS_LIST; do
1619 if enabled
$thread; then
1620 test -n
"$thread_type" &&
1621 die
"ERROR: Only one thread type must be selected." ||
1622 thread_type
="$thread"
1626 check_lib math.h sin
-lm
1628 # test for C99 functions in math.h
1629 for func
in llrint lrint lrintf round roundf
; do
1630 check_exec
<<EOF && enable $func || disable $func
1631 #define _ISOC9X_SOURCE 1
1633 int main(void) { return ($func(3.999f) > 0)?0:1; }
1637 # these are off by default, so fail if requested and not available
1638 enabled avisynth
&& require2 vfw32
"windows.h vfw.h" AVIFileInit
-lvfw32
1639 enabled liba52
&& require liba52 a52dec
/a52.h a52_init
-la52
1640 enabled libamr_nb
&& require libamrnb amrnb
/interf_dec.h Speech_Decode_Frame_init
-lamrnb
-lm
1641 enabled libamr_wb
&& require libamrwb amrwb
/dec_if.h D_IF_init
-lamrwb
-lm
1642 enabled libfaac
&& require2 libfaac
"stdint.h faac.h" faacEncGetVersion
-lfaac
1643 enabled libfaad
&& require2 libfaad faad.h faacDecOpen
-lfaad
1644 enabled libgsm
&& require libgsm gsm.h gsm_create
-lgsm
1645 enabled libmp3lame
&& require LAME lame
/lame.h lame_init
-lmp3lame
-lm
1646 enabled libnut
&& require libnut libnut.h nut_demuxer_init
-lnut
1647 enabled libtheora
&& require libtheora theora
/theora.h theora_info_init
-ltheora
-logg
1648 enabled libvorbis
&& require libvorbis vorbis
/vorbisenc.h vorbis_info_init
-lvorbisenc
-lvorbis
-logg
1649 enabled libx264
&& require x264 x264.h x264_encoder_open
-lx264
-lm
1650 enabled libxvid
&& require Xvid xvid.h xvid_global
-lxvidcore
1651 enabled mlib
&& require mediaLib mlib_types.h mlib_VectorSub_S16_U8_Mod
-lmlib
1653 # disable the native AC-3 decoder if liba52 is enabled
1654 enabled liba52
&& disable ac3_decoder
1657 if enabled libdc1394
; then
1658 { check_lib dc1394
/dc1394.h dc1394_new
-ldc1394
-lraw1394
&&
1659 enable libdc1394_2
; } ||
1660 { check_lib libdc1394
/dc1394_control.h dc1394_create_handle
-ldc1394_control
-lraw1394
&&
1661 enable libdc1394_1
; } ||
1662 die
"ERROR: No version of libdc1394 found "
1667 for restrict_keyword
in restrict __restrict__ __restrict
; do
1668 check_cc
<<EOF && _restrict=$restrict_keyword && break
1669 void foo(char * $restrict_keyword p);
1673 test "$vhook" = "default" && vhook
="$dlopen"
1675 if test "$targetos" = cygwin
-o
"$targetos" = mingw32
&& enabled_all static vhook
; then
1678 echo "At the moment vhooks don't work on Cygwin or MinGW static builds."
1679 echo "Patches welcome."
1683 if enabled vhook
; then
1684 check_ldflags
-rdynamic
1685 check_ldflags
-export-dynamic
1688 check_foo_config imlib2 imlib2 Imlib2.h imlib_load_font
1689 check_foo_config freetype2 freetype ft2build.h FT_Init_FreeType
1691 ##########################################
1696 SDL_CONFIG
="${cross_prefix}sdl-config"
1697 if "${SDL_CONFIG}" --version
>/dev
/null
2>&1; then
1698 sdl_cflags
=`"${SDL_CONFIG}" --cflags`
1699 temp_cflags
$sdl_cflags
1700 temp_extralibs
`"${SDL_CONFIG}" --libs`
1701 if check_lib2 SDL.h SDL_Init
; then
1702 _sdlversion
=`"${SDL_CONFIG}" --version | sed 's/[^0-9]//g'`
1703 if test "$_sdlversion" -lt
121 ; then
1707 check_cc
$sdl_cflags <<EOF && enable sdl_video_size
1709 int main(int argc, char **argv){
1710 const SDL_VideoInfo *vi = SDL_GetVideoInfo();
1711 int w = vi->current_w;
1720 texi2html
-version
>/dev
/null
2>&1 && enable texi2html || disable texi2html
1722 check_type sys
/socket.h socklen_t
1724 ##########################################
1727 if enabled network
; then
1728 # Prefer arpa/inet.h over winsock2
1729 if check_header arpa
/inet.h
; then
1730 check_func closesocket
1731 elif check_header winsock2.h
; then
1732 network_extralibs
="-lws2_32"
1733 check_type ws2tcpip.h socklen_t
1734 check_func2 winsock2.h closesocket
1738 ##########################################
1741 enabled network
&& enabled ipv6
&& check_ld
<<EOF && enable ipv6 || disable ipv6
1742 #include <sys/types.h>
1743 #include <sys/socket.h>
1744 #include <netinet/in.h>
1747 struct sockaddr_storage saddr;
1748 struct ipv6_mreq mreq6;
1749 getaddrinfo(0,0,0,0);
1750 getnameinfo(0,0,0,0,0,0,0);
1751 IN6_IS_ADDR_MULTICAST((const struct in6_addr *)0);
1755 check_header linux
/videodev.h
1756 check_header linux
/videodev2.h
1758 check_func2
"windows.h vfw.h" capCreateCaptureWindow
-lvfw32
1760 # check for ioctl_meteor.h, ioctl_bt848.h and alternatives
1761 { check_header dev
/bktr
/ioctl_meteor.h
&&
1762 check_header dev
/bktr
/ioctl_bt848.h
; } ||
1763 { check_header machine
/ioctl_meteor.h
&&
1764 check_header machine
/ioctl_bt848.h
; } ||
1765 { check_header dev
/video
/meteor
/ioctl_meteor.h
&&
1766 check_header dev
/video
/bktr
/ioctl_bt848.h
; } ||
1767 check_header dev
/ic
/bt8xx.h
1769 check_header sys
/soundcard.h
1770 check_header soundcard.h
1772 # deal with the X11 frame grabber
1774 check_header X11
/Xlib.h
&&
1775 check_header X11
/extensions
/XShm.h
&&
1776 check_func XOpenDisplay
-lX11
&&
1777 check_func XShmCreateImage
-lX11
-lXext
1779 enabled debug
&& add_cflags
-g
"$debuglevel"
1781 # add some useful compiler flags if supported
1782 check_cflags
-Wdeclaration-after-statement
1784 check_cflags
-Wno-switch
1785 check_cflags
-Wdisabled-optimization
1786 check_cflags
-Wpointer-arith
1787 check_cflags
-Wredundant-decls
1788 check_cflags
-Wno-pointer-sign
1789 check_cflags
-Wcast-qual
1790 check_cflags
-Wwrite-strings
1791 check_cflags
-Wtype-limits
1792 enabled extra_warnings
&& check_cflags
-Winline
1794 # add some linker flags
1795 check_ldflags
-Wl
,--warn-common
1796 check_ldflags
$LDLATEFLAGS
1797 check_ldflags
-Wl
,-Bsymbolic
1799 if enabled small
; then
1800 check_cflags
-Os
# not all compilers support -Os
1801 optimizations
="small"
1802 elif enabled optimizations
; then
1803 if test -n
"`$cc -v 2>&1 | grep xlc`"; then
1810 check_cflags
-fno-math-errno
1811 check_cflags
-fno-signed-zeros
1813 # PIC flags for shared library objects where they are needed
1814 if enabled shared
; then
1815 # LIBOBJFLAGS may have already been set in the OS configuration
1816 if test -z
"$LIBOBJFLAGS" ; then
1818 x86_64|ia64|alpha|sparc
*|power
*) LIBOBJFLAGS
='$(PIC)' ;;
1823 if enabled gprof
; then
1830 # Find out if the .align argument is a power of two or not.
1831 if test $asmalign_pot = "unknown"; then
1832 disable asmalign_pot
1833 echo 'asm (".align 3");' | check_cc
&& enable asmalign_pot
1836 enabled_any
$DECODER_LIST && enable decoders
1837 enabled_any
$ENCODER_LIST && enable encoders
1838 enabled_any
$BSF_LIST && enable bsfs
1839 enabled_any
$DEMUXER_LIST && enable demuxers
1840 enabled_any
$MUXER_LIST && enable muxers
1841 enabled_any
$FILTER_LIST && enable filters
1842 enabled_any
$INDEV_LIST && enable demuxers
1843 enabled_any
$OUTDEV_LIST && enable muxers
1844 enabled_any
$PROTOCOL_LIST && enable protocols
1846 enabled_any
$THREADS_LIST && enable threads
1848 check_deps
$CONFIG_LIST \
1861 enabled libdc1394
&& append pkg_requires
"libraw1394"
1862 enabled libtheora
&& append pkg_requires
"theora"
1863 enabled libvorbis
&& append pkg_requires
"vorbisenc"
1865 echo "install prefix $PREFIX"
1866 echo "source path $source_path"
1867 echo "C compiler $cc"
1869 echo ".align is power-of-two $asmalign_pot"
1870 echo "ARCH $arch ($cpu)"
1871 if test "$BUILDSUF" != ""; then
1872 echo "build suffix $BUILDSUF"
1874 echo "big-endian ${bigendian-no}"
1875 if test $arch = "x86_32" -o
$arch = "x86_64"; then
1876 echo "MMX enabled ${mmx-no}"
1877 echo "CMOV enabled ${cmov-no}"
1878 echo "CMOV is fast ${fast_cmov-no}"
1879 echo "EBX available ${ebx_available-no}"
1880 echo "EBP available ${ebp_available-no}"
1882 if test $arch = "armv4l"; then
1883 echo "ARMv5TE enabled ${armv5te-no}"
1884 echo "ARMv6 enabled ${armv6-no}"
1885 echo "IWMMXT enabled ${iwmmxt-no}"
1887 if test $arch = "mips"; then
1888 echo "MMI enabled ${mmi-no}"
1890 if test $arch = "powerpc"; then
1891 echo "AltiVec enabled ${altivec-no}"
1892 echo "dcbzl available ${dcbzl-no}"
1894 echo "gprof enabled ${gprof-no}"
1895 echo "debug symbols ${debug-no}"
1896 echo "strip symbols ${dostrip-no}"
1897 echo "optimizations ${optimizations-no}"
1898 echo "static ${static-no}"
1899 echo "shared ${shared-no}"
1900 echo "postprocessing support ${postproc-no}"
1901 echo "software scaler enabled ${swscale-no}"
1902 echo "new filter support ${avfilter-no}"
1903 echo "filters using lavformat ${avfilter_lavf-no}"
1904 echo "video hooking ${vhook-no}"
1905 if enabled vhook
; then
1906 echo "Imlib2 support ${imlib2-no}"
1907 echo "FreeType support ${freetype2-no}"
1909 echo "network support ${network-no}"
1910 if enabled network
; then
1911 echo "IPv6 support ${ipv6-no}"
1913 echo "threading support ${thread_type-no}"
1914 echo "SDL support ${sdl-no}"
1915 if enabled sdl_too_old
; then
1916 echo "-> Your SDL version is too old - please upgrade to have FFplay/SDL support."
1918 echo "Sun medialib support ${mlib-no}"
1919 echo "AVISynth enabled ${avisynth-no}"
1920 echo "liba52 support ${liba52-no}"
1921 echo "liba52 dlopened ${liba52bin-no}"
1922 echo "libamr-nb support ${libamr_nb-no}"
1923 echo "libamr-wb support ${libamr_wb-no}"
1924 echo "libdc1394 support ${libdc1394-no}"
1925 echo "libfaac enabled ${libfaac-no}"
1926 echo "libfaad enabled ${libfaad-no}"
1927 echo "libfaad dlopened ${libfaadbin-no}"
1928 echo "libgsm enabled ${libgsm-no}"
1929 echo "libmp3lame enabled ${libmp3lame-no}"
1930 echo "libnut enabled ${libnut-no}"
1931 echo "libtheora enabled ${libtheora-no}"
1932 echo "libvorbis enabled ${libvorbis-no}"
1933 echo "x264 enabled ${libx264-no}"
1934 echo "XviD enabled ${libxvid-no}"
1935 echo "zlib enabled ${zlib-no}"
1938 for type in decoder encoder parser demuxer muxer protocol filter bsf indev outdev
; do
1939 echo "Enabled ${type}s:"
1940 eval list
=\$$
(toupper
$type)_LIST
1941 for part
in $list; do
1942 enabled
$part && echo ${part%_*}
1943 done |
sort |
pr -3 -t
1948 echo "License: unredistributable" ||
1950 echo "License: GPL" ||
1951 echo "License: LGPL")
1953 echo "Creating config.mak and config.h..."
1955 echo "# Automatically generated by configure - do not modify!" > config.mak
1956 echo "/* Automatically generated by configure - do not modify! */" > $TMPH
1957 echo "#ifndef FFMPEG_CONFIG_H" >> $TMPH
1958 echo "#define FFMPEG_CONFIG_H" >> $TMPH
1959 echo "#define FFMPEG_CONFIGURATION \"$FFMPEG_CONFIGURATION\"" >> $TMPH
1961 echo "PREFIX=$PREFIX" >> config.mak
1962 echo "prefix=\$(DESTDIR)\$(PREFIX)" >> config.mak
1963 echo "LIBDIR=\$(DESTDIR)$libdir" >> config.mak
1964 echo "SHLIBDIR=\$(DESTDIR)$shlibdir" >> config.mak
1965 echo "INCDIR=\$(DESTDIR)$incdir" >> config.mak
1966 echo "BINDIR=\$(DESTDIR)$bindir" >> config.mak
1967 echo "MANDIR=\$(DESTDIR)$mandir" >> config.mak
1968 echo "MAKE=$make" >> config.mak
1969 echo "CC=$cc" >> config.mak
1970 echo "AR=$ar" >> config.mak
1971 echo "RANLIB=$ranlib" >> config.mak
1972 echo "LN_S=$ln_s" >> config.mak
1974 echo "STRIP=$strip" >> config.mak ||
1975 echo "STRIP=echo ignoring strip" >> config.mak
1977 echo "OPTFLAGS=$CFLAGS" >> config.mak
1978 echo "VHOOKCFLAGS=$VHOOKCFLAGS">>config.mak
1979 echo "LDFLAGS=$LDFLAGS" >> config.mak
1980 echo "FFSERVERLDFLAGS=$FFSERVERLDFLAGS" >> config.mak
1981 echo "SHFLAGS=$SHFLAGS" >> config.mak
1982 echo "VHOOKSHFLAGS=$VHOOKSHFLAGS" >> config.mak
1983 echo "VHOOKLIBS=$VHOOKLIBS" >> config.mak
1984 echo "LIBOBJFLAGS=$LIBOBJFLAGS" >> config.mak
1985 echo "BUILD_STATIC=$static" >> config.mak
1986 echo "BUILDSUF=$BUILDSUF" >> config.mak
1987 echo "FULLNAME=$FULLNAME" >> config.mak
1988 echo "LIBPREF=$LIBPREF" >> config.mak
1989 echo "LIBSUF=$LIBSUF" >> config.mak
1990 echo "LIBNAME=$LIBNAME" >> config.mak
1991 echo "SLIBPREF=$SLIBPREF" >> config.mak
1992 echo "SLIBSUF=$SLIBSUF" >> config.mak
1993 echo "EXESUF=$EXESUF" >> config.mak
1995 if enabled bigendian
; then
1996 echo "WORDS_BIGENDIAN=yes" >> config.mak
1997 echo "#define WORDS_BIGENDIAN 1" >> $TMPH
2000 if enabled sdl
; then
2001 echo "SDL_LIBS=`"${SDL_CONFIG}" --libs`" >> config.mak
2002 echo "SDL_CFLAGS=`"${SDL_CONFIG}" --cflags`" >> config.mak
2004 if enabled texi2html
; then
2005 echo "BUILD_DOC=yes" >> config.mak
2010 file=$source_path/$2
2011 eval $
(grep "#define ${name}_VERSION_M" "$file" |
awk '{ print $2"="$3 }')
2012 eval ${name}_VERSION
=\$
${name}_VERSION_MAJOR.\$
${name}_VERSION_MINOR.\$
${name}_VERSION_MICRO
2013 lcname
=$
(tolower
$name)
2014 eval echo "${lcname}_VERSION=\$${name}_VERSION" >> config.mak
2015 eval echo "${lcname}_VERSION_MAJOR=\$${name}_VERSION_MAJOR" >> config.mak
2018 get_version LIBSWSCALE libswscale
/swscale.h
2019 get_version LIBPOSTPROC libpostproc
/postprocess.h
2020 get_version LIBAVCODEC libavcodec
/avcodec.h
2021 get_version LIBAVDEVICE libavdevice
/avdevice.h
2022 get_version LIBAVFORMAT libavformat
/avformat.h
2023 get_version LIBAVUTIL libavutil
/avutil.h
2024 get_version LIBAVFILTER libavfilter
/avfilter.h
2026 if enabled shared
; then
2027 echo "BUILD_SHARED=yes" >> config.mak
2028 echo "PIC=-fPIC -DPIC" >> config.mak
2029 echo "SLIBNAME=${SLIBNAME}" >> config.mak
2030 echo "SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}" >> config.mak
2031 echo "SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}" >> config.mak
2032 echo "SLIB_CREATE_DEF_CMD=${SLIB_CREATE_DEF_CMD}" >> config.mak
2033 echo "SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}" >> config.mak
2034 echo "SLIB_INSTALL_EXTRA_CMD=${SLIB_INSTALL_EXTRA_CMD}" >> config.mak
2035 echo "SLIB_UNINSTALL_EXTRA_CMD=${SLIB_UNINSTALL_EXTRA_CMD}" >> config.mak
2037 echo "LIB_INSTALL_EXTRA_CMD=${LIB_INSTALL_EXTRA_CMD}" >> config.mak
2038 echo "EXTRALIBS=$extralibs" >> config.mak
2040 print_config ARCH_
$TMPH config.mak
$ARCH_LIST
2041 print_config HAVE_
$TMPH config.mak
$HAVE_LIST
2042 print_config CONFIG_
$TMPH config.mak
$CONFIG_LIST \
2054 echo "#define restrict $_restrict" >> $TMPH
2056 if enabled small
; then
2057 echo "#define av_always_inline" >> $TMPH
2060 echo "SRC_PATH=\"$source_path\"" >> config.mak
2061 echo "SRC_PATH_BARE=$source_path" >> config.mak
2062 echo "BUILD_ROOT=\"$PWD\"" >> config.mak
2064 # Apparently it's not possible to portably echo a backslash.
2065 enabled asmalign_pot
&&
2066 printf '#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\\n\\t"\n' >> $TMPH ||
2067 printf '#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\\n\\t"\n' >> $TMPH
2070 echo "#endif /* FFMPEG_CONFIG_H */" >> $TMPH
2072 # Do not overwrite config.h if unchanged to avoid superfluous rebuilds.
2073 cmp -s
$TMPH config.h
&&
2074 echo "config.h is unchanged" ||
2075 mv -f
$TMPH config.h
2077 rm -f
$TMPO $TMPC $TMPE $TMPS $TMPH
2079 # build tree in object directory if source path is different from current one
2080 if enabled source_path_used
; then
2106 libavcodec/Makefile \
2107 libavdevice/Makefile \
2108 libavfilter/Makefile \
2109 libavformat/Makefile \
2110 libavutil/Makefile \
2111 libpostproc/Makefile \
2112 libswscale/Makefile \
2114 for dir
in $DIRS ; do
2117 for f
in $FILES ; do
2118 $ln_s "$source_path/$f" $f
2123 # build pkg-config files
2124 # FIXME: libdir and includedir are hardcoded and may differ from the real path.
2126 pkgconfig_generate
(){
2134 exec_prefix=\${prefix}
2135 libdir=\${exec_prefix}/lib
2136 includedir=\${prefix}/include
2139 Description: $comment
2143 Libs: -L\${libdir} $libs
2144 Cflags: -I\${includedir}
2148 pkgconfig_generate_uninstalled
(){
2150 shortname
=${name#lib}
2155 cat <<EOF >$name-uninstalled.pc
2158 libdir=\${pcfiledir}/$name
2159 includedir=\${pcfiledir}
2162 Description: $comment
2166 Libs: \${libdir}/${LIBPREF}${shortname}${LIBSUF} $libs
2167 Cflags: -I\${includedir}
2171 pkgconfig_generate libavutil
"FFmpeg utility library" "$LIBAVUTIL_VERSION" -lavutil
""
2172 pkgconfig_generate_uninstalled libavutil
"FFmpeg utility library" "$LIBAVUTIL_VERSION"
2174 pkgconfig_generate libavcodec
"FFmpeg codec library" "$LIBAVCODEC_VERSION" "-lavcodec $extralibs" "$pkg_requires libavutil = $LIBAVUTIL_VERSION"
2175 pkgconfig_generate_uninstalled libavcodec
"FFmpeg codec library" "$LIBAVCODEC_VERSION" "$extralibs" "$pkg_requires libavutil = $LIBAVUTIL_VERSION"
2177 pkgconfig_generate libavformat
"FFmpeg container format library" "$LIBAVFORMAT_VERSION" "-lavformat $extralibs" "$pkg_requires libavcodec = $LIBAVCODEC_VERSION"
2178 pkgconfig_generate_uninstalled libavformat
"FFmpeg container format library" "$LIBAVFORMAT_VERSION" "$extralibs" "$pkg_requires libavcodec = $LIBAVCODEC_VERSION"
2180 pkgconfig_generate libavdevice
"FFmpeg device handling library" "$LIBAVDEVICE_VERSION" "-lavdevice $extralibs" "$pkg_requires libavformat = $LIBAVFORMAT_VERSION"
2181 pkgconfig_generate_uninstalled libavdevice
"FFmpeg device handling library" "$LIBAVDEVICE_VERSION" "$extralibs" "$pkg_requires libavformat = $LIBAVFORMAT_VERSION"
2182 if enabled postproc
; then
2183 pkgconfig_generate libpostproc
"FFmpeg post processing library" "$LIBPOSTPROC_VERSION" -lpostproc
""
2184 pkgconfig_generate_uninstalled libpostproc
"FFmpeg post processing library" "$LIBPOSTPROC_VERSION"
2187 if enabled swscale
; then
2188 pkgconfig_generate libswscale
"FFmpeg image rescaling library" "$LIBSWSCALE_VERSION" -lswscale
"libavutil = $LIBAVUTIL_VERSION"
2189 pkgconfig_generate_uninstalled libswscale
"FFmpeg image rescaling library" "$LIBSWSCALE_VERSION" "" "libavutil = $LIBAVUTIL_VERSION"
2191 pkgconfig_generate libswscale
"FFmpeg image rescaling library" "$LIBSWSCALE_VERSION" "" "$pkg_requires libavcodec = $LIBAVCODEC_VERSION"
2192 pkgconfig_generate_uninstalled libswscale
"FFmpeg image rescaling library" "$LIBSWSCALE_VERSION" "" "$pkg_requires libavcodec = $LIBAVCODEC_VERSION"
2193 apply libswscale.pc
sed s
/^Libs
:.
*$
/Libs
:/
2194 apply libswscale-uninstalled.pc
sed s
/^Libs
:.
*$
/Libs
:/
2197 if enabled avfilter
; then
2198 pkgconfig_generate libavfilter
"FFmpeg video filtering library" "$LIBAVFILTER_VERSION" "-lavfilter $extralibs" "$pkg_requires libavutil = $LIBAVUTIL_VERSION" ffmpeg
2199 pkgconfig_generate_uninstalled libavfilter
"FFmpeg video filtering library" "$LIBAVFILTER_VERSION" "$extralibs" "$pkg_requires libavutil = $LIBAVUTIL_VERSION"