]> git.sesse.net Git - ffmpeg/blob - configure
a054830d0dddeffe7dd3d7bf726674f65cd1106f
[ffmpeg] / configure
1 #!/bin/sh
2 #
3 # Libav configure script
4 #
5 # Copyright (c) 2000-2002 Fabrice Bellard
6 # Copyright (c) 2005-2008 Diego Biurrun
7 # Copyright (c) 2005-2008 Mans Rullgard
8 #
9
10 # Prevent locale nonsense from breaking basic text processing.
11 LC_ALL=C
12 export LC_ALL
13
14 # make sure we are running under a compatible shell
15 # try to make this part work with most shells
16
17 try_exec(){
18     echo "Trying shell $1"
19     type "$1" > /dev/null 2>&1 && exec "$@"
20 }
21
22 unset foo
23 (: ${foo%%bar}) 2> /dev/null
24 E1="$?"
25
26 (: ${foo?}) 2> /dev/null
27 E2="$?"
28
29 if test "$E1" != 0 || test "$E2" = 0; then
30     echo "Broken shell detected.  Trying alternatives."
31     export FF_CONF_EXEC
32     if test "0$FF_CONF_EXEC" -lt 1; then
33         FF_CONF_EXEC=1
34         try_exec bash "$0" "$@"
35     fi
36     if test "0$FF_CONF_EXEC" -lt 2; then
37         FF_CONF_EXEC=2
38         try_exec ksh "$0" "$@"
39     fi
40     if test "0$FF_CONF_EXEC" -lt 3; then
41         FF_CONF_EXEC=3
42         try_exec /usr/xpg4/bin/sh "$0" "$@"
43     fi
44     echo "No compatible shell script interpreter found."
45     echo "This configure script requires a POSIX-compatible shell"
46     echo "such as bash or ksh."
47     echo "THIS IS NOT A BUG IN LIBAV, DO NOT REPORT IT AS SUCH."
48     echo "Instead, install a working POSIX-compatible shell."
49     echo "Disabling this configure test will create a broken Libav."
50     if test "$BASH_VERSION" = '2.04.0(1)-release'; then
51         echo "This bash version ($BASH_VERSION) is broken on your platform."
52         echo "Upgrade to a later version if available."
53     fi
54     exit 1
55 fi
56
57 test -d /usr/xpg4/bin && PATH=/usr/xpg4/bin:$PATH
58
59 show_help(){
60     cat <<EOF
61 Usage: configure [options]
62 Options: [defaults in brackets after descriptions]
63
64 Help options:
65   --help                   print this message
66   --list-decoders          show all available decoders
67   --list-encoders          show all available encoders
68   --list-hwaccels          show all available hardware accelerators
69   --list-demuxers          show all available demuxers
70   --list-muxers            show all available muxers
71   --list-parsers           show all available parsers
72   --list-protocols         show all available protocols
73   --list-bsfs              show all available bitstream filters
74   --list-indevs            show all available input devices
75   --list-outdevs           show all available output devices
76   --list-filters           show all available filters
77
78 Standard options:
79   --logfile=FILE           log tests and output to FILE [config.log]
80   --disable-logging        do not log configure debug information
81   --prefix=PREFIX          install in PREFIX [$prefix]
82   --bindir=DIR             install binaries in DIR [PREFIX/bin]
83   --datadir=DIR            install data files in DIR [PREFIX/share/avconv]
84   --libdir=DIR             install libs in DIR [PREFIX/lib]
85   --shlibdir=DIR           install shared libs in DIR [PREFIX/lib]
86   --incdir=DIR             install includes in DIR [PREFIX/include]
87   --mandir=DIR             install man page in DIR [PREFIX/share/man]
88
89 Licensing options:
90   --enable-gpl             allow use of GPL code, the resulting libs
91                            and binaries will be under GPL [no]
92   --enable-version3        upgrade (L)GPL to version 3 [no]
93   --enable-nonfree         allow use of nonfree code, the resulting libs
94                            and binaries will be unredistributable [no]
95
96 Configuration options:
97   --disable-static         do not build static libraries [no]
98   --enable-shared          build shared libraries [no]
99   --enable-small           optimize for size instead of speed
100   --enable-runtime-cpudetect detect cpu capabilities at runtime (bigger binary)
101   --enable-gray            enable full grayscale support (slower color)
102   --disable-swscale-alpha  disable alpha channel support in swscale
103
104 Component options:
105   --disable-doc            do not build documentation
106   --disable-avconv         disable avconv build
107   --disable-avplay         disable avplay build
108   --disable-avprobe        disable avprobe build
109   --disable-avserver       disable avserver build
110   --disable-avdevice       disable libavdevice build
111   --disable-avcodec        disable libavcodec build
112   --disable-avformat       disable libavformat build
113   --disable-swscale        disable libswscale build
114   --disable-avfilter       disable video filter support [no]
115   --disable-avresample     disable libavresample build [no]
116   --disable-pthreads       disable pthreads [auto]
117   --disable-w32threads     disable Win32 threads [auto]
118   --enable-x11grab         enable X11 grabbing [no]
119   --disable-network        disable network support [no]
120   --disable-dct            disable DCT code
121   --disable-dwt            disable DWT code
122   --disable-lsp            disable LSP code
123   --disable-mdct           disable MDCT code
124   --disable-rdft           disable RDFT code
125   --disable-fft            disable FFT code
126   --enable-dxva2           enable DXVA2 code
127   --enable-vaapi           enable VAAPI code
128   --enable-vda             enable VDA code
129   --enable-vdpau           enable VDPAU code
130
131 Individual component options:
132   --disable-everything     disable all components listed below
133   --disable-encoder=NAME   disable encoder NAME
134   --enable-encoder=NAME    enable encoder NAME
135   --disable-encoders       disable all encoders
136   --disable-decoder=NAME   disable decoder NAME
137   --enable-decoder=NAME    enable decoder NAME
138   --disable-decoders       disable all decoders
139   --disable-hwaccel=NAME   disable hwaccel NAME
140   --enable-hwaccel=NAME    enable hwaccel NAME
141   --disable-hwaccels       disable all hwaccels
142   --disable-muxer=NAME     disable muxer NAME
143   --enable-muxer=NAME      enable muxer NAME
144   --disable-muxers         disable all muxers
145   --disable-demuxer=NAME   disable demuxer NAME
146   --enable-demuxer=NAME    enable demuxer NAME
147   --disable-demuxers       disable all demuxers
148   --enable-parser=NAME     enable parser NAME
149   --disable-parser=NAME    disable parser NAME
150   --disable-parsers        disable all parsers
151   --enable-bsf=NAME        enable bitstream filter NAME
152   --disable-bsf=NAME       disable bitstream filter NAME
153   --disable-bsfs           disable all bitstream filters
154   --enable-protocol=NAME   enable protocol NAME
155   --disable-protocol=NAME  disable protocol NAME
156   --disable-protocols      disable all protocols
157   --enable-indev=NAME      enable input device NAME
158   --disable-indev=NAME     disable input device NAME
159   --disable-indevs         disable input devices
160   --enable-outdev=NAME     enable output device NAME
161   --disable-outdev=NAME    disable output device NAME
162   --disable-outdevs        disable output devices
163   --disable-devices        disable all devices
164   --enable-filter=NAME     enable filter NAME
165   --disable-filter=NAME    disable filter NAME
166   --disable-filters        disable all filters
167
168 External library support:
169   --enable-avisynth        enable reading of AVISynth script files [no]
170   --enable-bzlib           enable bzlib [autodetect]
171   --enable-frei0r          enable frei0r video filtering
172   --enable-gnutls          enable gnutls [no]
173   --enable-libcdio         enable audio CD grabbing with libcdio
174   --enable-libdc1394       enable IIDC-1394 grabbing using libdc1394
175                            and libraw1394 [no]
176   --enable-libfaac         enable AAC encoding via libfaac [no]
177   --enable-libfdk-aac      enable AAC encoding via libfdk-aac [no]
178   --enable-libfreetype     enable libfreetype [no]
179   --enable-libgsm          enable GSM de/encoding via libgsm [no]
180   --enable-libilbc         enable iLBC de/encoding via libilbc [no]
181   --enable-libmp3lame      enable MP3 encoding via libmp3lame [no]
182   --enable-libopencore-amrnb enable AMR-NB de/encoding via libopencore-amrnb [no]
183   --enable-libopencore-amrwb enable AMR-WB decoding via libopencore-amrwb [no]
184   --enable-libopencv       enable video filtering via libopencv [no]
185   --enable-libopenjpeg     enable JPEG 2000 de/encoding via OpenJPEG [no]
186   --enable-libopus         enable Opus decoding via libopus [no]
187   --enable-libpulse        enable Pulseaudio input via libpulse [no]
188   --enable-librtmp         enable RTMP[E] support via librtmp [no]
189   --enable-libschroedinger enable Dirac de/encoding via libschroedinger [no]
190   --enable-libspeex        enable Speex de/encoding via libspeex [no]
191   --enable-libtheora       enable Theora encoding via libtheora [no]
192   --enable-libvo-aacenc    enable AAC encoding via libvo-aacenc [no]
193   --enable-libvo-amrwbenc  enable AMR-WB encoding via libvo-amrwbenc [no]
194   --enable-libvorbis       enable Vorbis encoding via libvorbis [no]
195   --enable-libvpx          enable VP8 de/encoding via libvpx [no]
196   --enable-libx264         enable H.264 encoding via x264 [no]
197   --enable-libxavs         enable AVS encoding via xavs [no]
198   --enable-libxvid         enable Xvid encoding via xvidcore,
199                            native MPEG-4/Xvid encoder exists [no]
200   --enable-openssl         enable openssl [no]
201   --enable-zlib            enable zlib [autodetect]
202
203 Advanced options (experts only):
204   --cross-prefix=PREFIX    use PREFIX for compilation tools [$cross_prefix]
205   --enable-cross-compile   assume a cross-compiler is used
206   --sysroot=PATH           root of cross-build tree
207   --sysinclude=PATH        location of cross-build system headers
208   --target-os=OS           compiler targets OS [$target_os]
209   --target-exec=CMD        command to run executables on target
210   --target-path=DIR        path to view of build directory on target
211   --toolchain=NAME         set tool defaults according to NAME
212   --nm=NM                  use nm tool
213   --ar=AR                  use archive tool AR [$ar_default]
214   --as=AS                  use assembler AS [$as_default]
215   --cc=CC                  use C compiler CC [$cc_default]
216   --dep-cc=DEPCC           use dependency generator DEPCC [$cc_default]
217   --ld=LD                  use linker LD
218   --host-cc=HOSTCC         use host C compiler HOSTCC
219   --host-cflags=HCFLAGS    use HCFLAGS when compiling for host
220   --host-ld=HOSTLD         use host linker HOSTLD
221   --host-ldflags=HLDFLAGS  use HLDFLAGS when linking for host
222   --host-libs=HLIBS        use libs HLIBS when linking for host
223   --host-os=OS             compiler host OS [$target_os]
224   --extra-cflags=ECFLAGS   add ECFLAGS to CFLAGS [$CFLAGS]
225   --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]
226   --extra-libs=ELIBS       add ELIBS [$ELIBS]
227   --extra-version=STRING   version string suffix []
228   --optflags=OPTFLAGS      override optimization-related compiler flags
229   --build-suffix=SUFFIX    library name suffix []
230   --malloc-prefix=PREFIX   prefix malloc and related names with PREFIX
231   --arch=ARCH              select architecture [$arch]
232   --cpu=CPU                select the minimum required CPU (affects
233                            instruction selection, may crash on older CPUs)
234   --enable-pic             build position-independent code
235   --enable-sram            allow use of on-chip SRAM
236   --enable-thumb           compile for Thumb instruction set
237   --disable-symver         disable symbol versioning
238   --enable-hardcoded-tables use hardcoded tables instead of runtime generation
239   --disable-safe-bitstream-reader
240                            disable buffer boundary checking in bitreaders
241                            (faster, but may crash)
242   --enable-memalign-hack   emulate memalign, interferes with memory debuggers
243   --enable-lto             use link-time optimization
244
245 Optimization options (experts only):
246   --disable-asm            disable all assembler optimizations
247   --disable-altivec        disable AltiVec optimizations
248   --disable-amd3dnow       disable 3DNow! optimizations
249   --disable-amd3dnowext    disable 3DNow! extended optimizations
250   --disable-mmx            disable MMX optimizations
251   --disable-mmxext         disable MMXEXT optimizations
252   --disable-sse            disable SSE optimizations
253   --disable-sse2           disable SSE2 optimizations
254   --disable-sse3           disable SSE3 optimizations
255   --disable-ssse3          disable SSSE3 optimizations
256   --disable-sse4           disable SSE4 optimizations
257   --disable-sse42          disable SSE4.2 optimizations
258   --disable-avx            disable AVX optimizations
259   --disable-fma4           disable FMA4 optimizations
260   --disable-armv5te        disable armv5te optimizations
261   --disable-armv6          disable armv6 optimizations
262   --disable-armv6t2        disable armv6t2 optimizations
263   --disable-armvfp         disable ARM VFP optimizations
264   --disable-neon           disable NEON optimizations
265   --disable-vis            disable VIS optimizations
266   --disable-inline-asm     disable use of inline assembler
267   --disable-yasm           disable use of yasm assembler
268
269 Developer options (useful when working on Libav itself):
270   --disable-debug          disable debugging symbols
271   --enable-debug=LEVEL     set the debug level [$debuglevel]
272   --disable-optimizations  disable compiler optimizations
273   --enable-extra-warnings  enable more compiler warnings
274   --samples=PATH           location of test samples for FATE, if not set use
275                            \$LIBAV_SAMPLES at make invocation time.
276   --enable-xmm-clobber-test check XMM registers for clobbering (Win64-only;
277                            should be used only for debugging purposes)
278   --enable-random          randomly enable/disable components
279   --disable-random
280   --enable-random=LIST     randomly enable/disable specific components or
281   --disable-random=LIST    component groups. LIST is a comma-separated list
282                            of NAME[:PROB] entries where NAME is a component
283                            (group) and PROB the probability associated with
284                            NAME (default 0.5).
285   --random-seed=VALUE      seed value for --enable/disable-random
286
287 NOTE: Object files are built at the place where configure is launched.
288 EOF
289   exit 0
290 }
291
292 quotes='""'
293
294 log(){
295     echo "$@" >> $logfile
296 }
297
298 log_file(){
299     log BEGIN $1
300     pr -n -t $1 >> $logfile
301     log END $1
302 }
303
304 echolog(){
305     log "$@"
306     echo "$@"
307 }
308
309 warn(){
310     log "WARNING: $*"
311     WARNINGS="${WARNINGS}WARNING: $*\n"
312 }
313
314 die(){
315     echolog "$@"
316     cat <<EOF
317
318 If you think configure made a mistake, make sure you are using the latest
319 version from Git.  If the latest version fails, report the problem to the
320 libav-user@libav.org mailing list or IRC #libav on irc.freenode.net.
321 EOF
322     if disabled logging; then
323         cat <<EOF
324 Rerun configure with logging enabled (do not use --disable-logging), and
325 include the log this produces with your report.
326 EOF
327     else
328         cat <<EOF
329 Include the log file "$logfile" produced by configure as this will help
330 solving the problem.
331 EOF
332     fi
333     exit 1
334 }
335
336 # Avoid locale weirdness, besides we really just want to translate ASCII.
337 toupper(){
338     echo "$@" | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ
339 }
340
341 tolower(){
342     echo "$@" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
343 }
344
345 c_escape(){
346     echo "$*" | sed 's/["\\]/\\\0/g'
347 }
348
349 sh_quote(){
350     v=$(echo "$1" | sed "s/'/'\\\\''/g")
351     test "x$v" = "x${v#*[!A-Za-z0-9_/.+-]}" || v="'$v'"
352     echo "$v"
353 }
354
355 cleanws(){
356     echo "$@" | sed 's/^ *//;s/  */ /g;s/ *$//'
357 }
358
359 filter(){
360     pat=$1
361     shift
362     for v; do
363         eval "case $v in $pat) echo $v ;; esac"
364     done
365 }
366
367 filter_out(){
368     pat=$1
369     shift
370     for v; do
371         eval "case $v in $pat) ;; *) echo $v ;; esac"
372     done
373 }
374
375 map(){
376     m=$1
377     shift
378     for v; do eval $m; done
379 }
380
381 add_suffix(){
382     suffix=$1
383     shift
384     for v; do echo ${v}${suffix}; done
385 }
386
387 set_all(){
388     value=$1
389     shift
390     for var in $*; do
391         eval $var=$value
392     done
393 }
394
395 set_weak(){
396     value=$1
397     shift
398     for var; do
399         eval : \${$var:=$value}
400     done
401 }
402
403 set_safe(){
404     var=$1
405     shift
406     eval $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')='$*'
407 }
408
409 get_safe(){
410     eval echo \$$(echo "$1" | sed 's/[^A-Za-z0-9_]/_/g')
411 }
412
413 pushvar(){
414     for var in $*; do
415         eval level=\${${var}_level:=0}
416         eval ${var}_${level}="\$$var"
417         eval ${var}_level=$(($level+1))
418     done
419 }
420
421 popvar(){
422     for var in $*; do
423         eval level=\${${var}_level:-0}
424         test $level = 0 && continue
425         eval level=$(($level-1))
426         eval $var="\${${var}_${level}}"
427         eval ${var}_level=$level
428         eval unset ${var}_${level}
429     done
430 }
431
432 enable(){
433     set_all yes $*
434 }
435
436 disable(){
437     set_all no $*
438 }
439
440 enable_weak(){
441     set_weak yes $*
442 }
443
444 disable_weak(){
445     set_weak no $*
446 }
447
448 enable_safe(){
449     for var; do
450         enable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
451     done
452 }
453
454 disable_safe(){
455     for var; do
456         disable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
457     done
458 }
459
460 do_enable_deep(){
461     for var; do
462         enabled $var && continue
463         eval sel="\$${var}_select"
464         eval sgs="\$${var}_suggest"
465         pushvar var sgs
466         enable_deep $sel
467         popvar sgs
468         enable_deep_weak $sgs
469         popvar var
470     done
471 }
472
473 enable_deep(){
474     do_enable_deep $*
475     enable $*
476 }
477
478 enable_deep_weak(){
479     do_enable_deep $*
480     enable_weak $*
481 }
482
483 enabled(){
484     test "${1#!}" = "$1" && op== || op=!=
485     eval test "x\$${1#!}" $op "xyes"
486 }
487
488 disabled(){
489     test "${1#!}" = "$1" && op== || op=!=
490     eval test "x\$${1#!}" $op "xno"
491 }
492
493 enabled_all(){
494     for opt; do
495         enabled $opt || return 1
496     done
497 }
498
499 disabled_all(){
500     for opt; do
501         disabled $opt || return 1
502     done
503 }
504
505 enabled_any(){
506     for opt; do
507         enabled $opt && return 0
508     done
509 }
510
511 disabled_any(){
512     for opt; do
513         disabled $opt && return 0
514     done
515     return 1
516 }
517
518 set_default(){
519     for opt; do
520         eval : \${$opt:=\$${opt}_default}
521     done
522 }
523
524 is_in(){
525     value=$1
526     shift
527     for var in $*; do
528         [ $var = $value ] && return 0
529     done
530     return 1
531 }
532
533 check_deps(){
534     for cfg; do
535         cfg="${cfg#!}"
536         enabled ${cfg}_checking && die "Circular dependency for $cfg."
537         disabled ${cfg}_checking && continue
538         enable ${cfg}_checking
539
540         eval dep_all="\$${cfg}_deps"
541         eval dep_any="\$${cfg}_deps_any"
542         eval dep_sel="\$${cfg}_select"
543         eval dep_sgs="\$${cfg}_suggest"
544         eval dep_ifa="\$${cfg}_if"
545         eval dep_ifn="\$${cfg}_if_any"
546
547         pushvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
548         check_deps $dep_all $dep_any $dep_sel $dep_sgs $dep_ifa $dep_ifn
549         popvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
550
551         [ -n "$dep_ifa" ] && { enabled_all $dep_ifa && enable_weak $cfg; }
552         [ -n "$dep_ifn" ] && { enabled_any $dep_ifn && enable_weak $cfg; }
553         enabled_all  $dep_all || disable $cfg
554         enabled_any  $dep_any || disable $cfg
555         disabled_any $dep_sel && disable $cfg
556
557         if enabled $cfg; then
558             eval dep_extralibs="\$${cfg}_extralibs"
559             test -n "$dep_extralibs" && add_extralibs $dep_extralibs
560             enable_deep $dep_sel
561             enable_deep_weak $dep_sgs
562         fi
563
564         disable ${cfg}_checking
565     done
566 }
567
568 print_config_h(){
569     enabled $1 && v=1 || v=0
570     echo "#define $2 $v"
571 }
572
573 print_config_mak(){
574     enabled $1 && v= || v=!
575     echo "$v$2=yes"
576 }
577
578 print_config_asm(){
579     enabled $1 && v=1 || v=0
580     echo "%define $2 $v"
581 }
582
583 print_config(){
584     pfx=$1
585     files=$2
586     shift 2
587     for cfg; do
588         ucname="$(toupper $cfg)"
589         for f in $files; do
590             "print_config_${f##*.}" $cfg ${pfx}${ucname} >>$f
591         done
592     done
593 }
594
595 print_enabled(){
596     test x"$1" = x-n && end=" " && shift || end="\n"
597     suf=$1
598     shift
599     for v; do
600         enabled $v && printf "%s$end" ${v%$suf};
601     done
602 }
603
604 append(){
605     var=$1
606     shift
607     eval "$var=\"\$$var $*\""
608 }
609
610 prepend(){
611     var=$1
612     shift
613     eval "$var=\"$* \$$var\""
614 }
615
616 add_cppflags(){
617     append CPPFLAGS "$@"
618 }
619
620 add_cflags(){
621     append CFLAGS $($cflags_filter "$@")
622 }
623
624 add_asflags(){
625     append ASFLAGS $($asflags_filter "$@")
626 }
627
628 add_ldflags(){
629     append LDFLAGS $($ldflags_filter "$@")
630 }
631
632 add_extralibs(){
633     prepend extralibs $($ldflags_filter "$@")
634 }
635
636 add_host_cflags(){
637     append host_cflags $($host_cflags_filter "$@")
638 }
639
640 add_host_ldflags(){
641     append host_ldflags $($host_ldflags_filter "$@")
642 }
643
644 check_cmd(){
645     log "$@"
646     "$@" >> $logfile 2>&1
647 }
648
649 cc_o(){
650     eval printf '%s\\n' $CC_O
651 }
652
653 cc_e(){
654     eval printf '%s\\n' $CC_E
655 }
656
657 check_cc(){
658     log check_cc "$@"
659     cat > $TMPC
660     log_file $TMPC
661     check_cmd $cc $CPPFLAGS $CFLAGS "$@" $CC_C $(cc_o $TMPO) $TMPC
662 }
663
664 check_cpp(){
665     log check_cpp "$@"
666     cat > $TMPC
667     log_file $TMPC
668     check_cmd $cc $CPPFLAGS $CFLAGS "$@" $(cc_e $TMPO) $TMPC
669 }
670
671 as_o(){
672     eval printf '%s\\n' $AS_O
673 }
674
675 check_as(){
676     log check_as "$@"
677     cat > $TMPC
678     log_file $TMPC
679     check_cmd $as $CPPFLAGS $ASFLAGS "$@" $AS_C $(as_o $TMPO) $TMPC
680 }
681
682 check_inline_asm(){
683     log check_inline_asm "$@"
684     name="$1"
685     code="$2"
686     shift 2
687     disable $name
688     check_as "$@" <<EOF && enable $name
689 void foo(void){ __asm__ volatile($code); }
690 EOF
691 }
692
693 check_yasm(){
694     log check_yasm "$@"
695     echo "$1" > $TMPS
696     log_file $TMPS
697     shift 1
698     check_cmd $yasmexe $YASMFLAGS "$@" -o $TMPO $TMPS
699 }
700
701 ld_o(){
702     eval printf '%s\\n' $LD_O
703 }
704
705 check_ld(){
706     log check_ld "$@"
707     flags=''
708     libs=''
709     for f; do
710         test "${f}" = "${f#-l}" && flags="$flags $f" || libs="$libs $f"
711     done
712     check_cc $($cflags_filter $flags) || return
713     flags=$($ldflags_filter $flags)
714     libs=$($ldflags_filter $libs)
715     check_cmd $ld $LDFLAGS $flags $(ld_o $TMPE) $TMPO $libs $extralibs
716 }
717
718 check_code(){
719     log check_code "$@"
720     check=$1
721     headers=$2
722     code=$3
723     shift 3
724     {
725         for hdr in $headers; do
726             echo "#include <$hdr>"
727         done
728         echo "int main(void) { $code; return 0; }"
729     } | check_$check "$@"
730 }
731
732 check_cppflags(){
733     log check_cppflags "$@"
734     check_cc "$@" <<EOF && append CPPFLAGS "$@"
735 int x;
736 EOF
737 }
738
739 check_cflags(){
740     log check_cflags "$@"
741     set -- $($cflags_filter "$@")
742     check_cc "$@" <<EOF && append CFLAGS "$@"
743 int x;
744 EOF
745 }
746
747 test_ldflags(){
748     log test_ldflags "$@"
749     check_ld "$@" <<EOF
750 int main(void){ return 0; }
751 EOF
752 }
753
754 check_ldflags(){
755     log check_ldflags "$@"
756     test_ldflags "$@" && add_ldflags "$@"
757 }
758
759 check_header(){
760     log check_header "$@"
761     header=$1
762     shift
763     disable_safe $header
764     check_cpp "$@" <<EOF && enable_safe $header
765 #include <$header>
766 int x;
767 EOF
768 }
769
770 check_func(){
771     log check_func "$@"
772     func=$1
773     shift
774     disable $func
775     check_ld "$@" <<EOF && enable $func
776 extern int $func();
777 int main(void){ $func(); }
778 EOF
779 }
780
781 check_mathfunc(){
782     log check_mathfunc "$@"
783     func=$1
784     shift
785     disable $func
786     check_ld "$@" <<EOF && enable $func
787 #include <math.h>
788 float foo(float f) { return $func(f); }
789 int main(void){ return 0; }
790 EOF
791 }
792
793 check_func_headers(){
794     log check_func_headers "$@"
795     headers=$1
796     funcs=$2
797     shift 2
798     {
799         for hdr in $headers; do
800             echo "#include <$hdr>"
801         done
802         for func in $funcs; do
803             echo "long check_$func(void) { return (long) $func; }"
804         done
805         echo "int main(void) { return 0; }"
806     } | check_ld "$@" && enable $funcs && enable_safe $headers
807 }
808
809 check_cpp_condition(){
810     log check_cpp_condition "$@"
811     header=$1
812     condition=$2
813     shift 2
814     check_cpp "$@" <<EOF
815 #include <$header>
816 #if !($condition)
817 #error "unsatisfied condition: $condition"
818 #endif
819 EOF
820 }
821
822 check_lib(){
823     log check_lib "$@"
824     header="$1"
825     func="$2"
826     shift 2
827     check_header $header && check_func $func "$@" && add_extralibs "$@"
828 }
829
830 check_lib2(){
831     log check_lib2 "$@"
832     headers="$1"
833     funcs="$2"
834     shift 2
835     check_func_headers "$headers" "$funcs" "$@" && add_extralibs "$@"
836 }
837
838 check_pkg_config(){
839     log check_pkg_config "$@"
840     pkg="$1"
841     headers="$2"
842     funcs="$3"
843     shift 3
844     $pkg_config --exists $pkg || return
845     pkg_cflags=$($pkg_config --cflags $pkg)
846     pkg_libs=$($pkg_config --libs $pkg)
847     check_func_headers "$headers" "$funcs" $pkg_cflags $pkg_libs "$@" &&
848         set_safe ${pkg}_cflags $pkg_cflags   &&
849         set_safe ${pkg}_libs   $pkg_libs
850 }
851
852 check_exec(){
853     check_ld "$@" && { enabled cross_compile || $TMPE >> $logfile 2>&1; }
854 }
855
856 check_exec_crash(){
857     code=$(cat)
858
859     # exit() is not async signal safe.  _Exit (C99) and _exit (POSIX)
860     # are safe but may not be available everywhere.  Thus we use
861     # raise(SIGTERM) instead.  The check is run in a subshell so we
862     # can redirect the "Terminated" message from the shell.  SIGBUS
863     # is not defined by standard C so it is used conditionally.
864
865     (check_exec "$@") >> $logfile 2>&1 <<EOF
866 #include <signal.h>
867 static void sighandler(int sig){
868     raise(SIGTERM);
869 }
870 int foo(void){
871     $code
872 }
873 int main(void){
874     signal(SIGILL, sighandler);
875     signal(SIGFPE, sighandler);
876     signal(SIGSEGV, sighandler);
877 #ifdef SIGBUS
878     signal(SIGBUS, sighandler);
879 #endif
880     foo();
881 }
882 EOF
883 }
884
885 check_type(){
886     log check_type "$@"
887     headers=$1
888     type=$2
889     shift 2
890     disable_safe "$type"
891     check_code cc "$headers" "$type v" "$@" && enable_safe "$type"
892 }
893
894 check_struct(){
895     log check_type "$@"
896     headers=$1
897     struct=$2
898     member=$3
899     shift 3
900     disable_safe "${struct}_${member}"
901     check_code cc "$headers" "const void *p = &(($struct *)0)->$member" "$@" &&
902         enable_safe "${struct}_${member}"
903 }
904
905 require(){
906     name="$1"
907     header="$2"
908     func="$3"
909     shift 3
910     check_lib $header $func "$@" || die "ERROR: $name not found"
911 }
912
913 require2(){
914     name="$1"
915     headers="$2"
916     func="$3"
917     shift 3
918     check_lib2 "$headers" $func "$@" || die "ERROR: $name not found"
919 }
920
921 require_pkg_config(){
922     pkg="$1"
923     check_pkg_config "$@" || die "ERROR: $pkg not found"
924     add_cflags    $(get_safe ${pkg}_cflags)
925     add_extralibs $(get_safe ${pkg}_libs)
926 }
927
928 hostcc_o(){
929     eval printf '%s\\n' $HOSTCC_O
930 }
931
932 check_host_cc(){
933     log check_host_cc "$@"
934     cat > $TMPC
935     log_file $TMPC
936     check_cmd $host_cc $host_cflags "$@" $HOSTCC_C $(hostcc_o $TMPO) $TMPC
937 }
938
939 check_host_cflags(){
940     log check_host_cflags "$@"
941     set -- $($host_cflags_filter "$@")
942     check_host_cc "$@" <<EOF && append host_cflags "$@"
943 int x;
944 EOF
945 }
946
947 apply(){
948     file=$1
949     shift
950     "$@" < "$file" > "$file.tmp" && mv "$file.tmp" "$file" || rm "$file.tmp"
951 }
952
953 cp_if_changed(){
954     cmp -s "$1" "$2" && echo "$2 is unchanged" && return
955     mkdir -p "$(dirname $2)"
956     cp -f "$1" "$2"
957 }
958
959 # CONFIG_LIST contains configurable options, while HAVE_LIST is for
960 # system-dependent things.
961
962 COMPONENT_LIST="
963     bsfs
964     decoders
965     demuxers
966     encoders
967     filters
968     hwaccels
969     indevs
970     muxers
971     outdevs
972     parsers
973     protocols
974 "
975
976 PROGRAM_LIST="
977     avconv
978     avplay
979     avprobe
980     avserver
981 "
982
983 CONFIG_LIST="
984     $COMPONENT_LIST
985     $PROGRAM_LIST
986     avcodec
987     avdevice
988     avfilter
989     avformat
990     avresample
991     avisynth
992     bzlib
993     dct
994     doc
995     dwt
996     dxva2
997     fft
998     frei0r
999     gnutls
1000     gpl
1001     gray
1002     hardcoded_tables
1003     libcdio
1004     libdc1394
1005     libfaac
1006     libfdk_aac
1007     libfreetype
1008     libgsm
1009     libilbc
1010     libmp3lame
1011     libopencore_amrnb
1012     libopencore_amrwb
1013     libopencv
1014     libopenjpeg
1015     libopus
1016     libpulse
1017     librtmp
1018     libschroedinger
1019     libspeex
1020     libtheora
1021     libvo_aacenc
1022     libvo_amrwbenc
1023     libvorbis
1024     libvpx
1025     libx264
1026     libxavs
1027     libxvid
1028     lsp
1029     mdct
1030     memalign_hack
1031     network
1032     nonfree
1033     openssl
1034     pic
1035     rdft
1036     runtime_cpudetect
1037     safe_bitstream_reader
1038     shared
1039     small
1040     sram
1041     static
1042     swscale
1043     swscale_alpha
1044     thumb
1045     vaapi
1046     vda
1047     vdpau
1048     version3
1049     xmm_clobber_test
1050     x11grab
1051     zlib
1052 "
1053
1054 THREADS_LIST='
1055     pthreads
1056     w32threads
1057 '
1058
1059 ARCH_LIST='
1060     alpha
1061     arm
1062     avr32
1063     avr32_ap
1064     avr32_uc
1065     bfin
1066     ia64
1067     m68k
1068     mips
1069     mips64
1070     parisc
1071     ppc
1072     ppc64
1073     s390
1074     sh4
1075     sparc
1076     sparc64
1077     tomi
1078     x86
1079     x86_32
1080     x86_64
1081 '
1082
1083 ARCH_EXT_LIST_X86='
1084     amd3dnow
1085     amd3dnowext
1086     avx
1087     fma4
1088     mmx
1089     mmxext
1090     sse
1091     sse2
1092     sse3
1093     sse4
1094     sse42
1095     ssse3
1096 '
1097
1098 ARCH_EXT_LIST="
1099     $ARCH_EXT_LIST_X86
1100     altivec
1101     armv5te
1102     armv6
1103     armv6t2
1104     armvfp
1105     neon
1106     ppc4xx
1107     vfpv3
1108     vis
1109 "
1110
1111 HAVE_LIST_CMDLINE='
1112     inline_asm
1113     symver
1114     yasm
1115 '
1116
1117 HAVE_LIST_PUB='
1118     bigendian
1119     fast_unaligned
1120 '
1121
1122 HAVE_LIST="
1123     $ARCH_EXT_LIST
1124     $(add_suffix _external $ARCH_EXT_LIST)
1125     $(add_suffix _inline   $ARCH_EXT_LIST)
1126     $HAVE_LIST_CMDLINE
1127     $HAVE_LIST_PUB
1128     $THREADS_LIST
1129     aligned_malloc
1130     aligned_stack
1131     alsa_asoundlib_h
1132     altivec_h
1133     arpa_inet_h
1134     asm_mod_q
1135     asm_mod_y
1136     attribute_may_alias
1137     attribute_packed
1138     cbrtf
1139     closesocket
1140     cmov
1141     cpunop
1142     CryptGenRandom
1143     dcbzl
1144     dev_bktr_ioctl_bt848_h
1145     dev_bktr_ioctl_meteor_h
1146     dev_ic_bt8xx_h
1147     dev_video_bktr_ioctl_bt848_h
1148     dev_video_meteor_ioctl_meteor_h
1149     direct_h
1150     dlfcn_h
1151     dlopen
1152     dos_paths
1153     dxva_h
1154     ebp_available
1155     ebx_available
1156     exp2
1157     exp2f
1158     fast_64bit
1159     fast_clz
1160     fast_cmov
1161     fcntl
1162     fork
1163     getaddrinfo
1164     gethrtime
1165     getopt
1166     GetProcessAffinityMask
1167     GetProcessMemoryInfo
1168     GetProcessTimes
1169     GetSystemTimeAsFileTime
1170     getrusage
1171     gettimeofday
1172     gnu_as
1173     ibm_asm
1174     inet_aton
1175     io_h
1176     isatty
1177     isinf
1178     isnan
1179     jack_port_get_latency_range
1180     ldbrx
1181     libdc1394_1
1182     libdc1394_2
1183     llrint
1184     llrintf
1185     local_aligned_16
1186     local_aligned_8
1187     localtime_r
1188     log2
1189     log2f
1190     loongson
1191     lrint
1192     lrintf
1193     machine_ioctl_bt848_h
1194     machine_ioctl_meteor_h
1195     malloc_h
1196     MapViewOfFile
1197     memalign
1198     mkstemp
1199     mm_empty
1200     mmap
1201     mprotect
1202     msvcrt
1203     nanosleep
1204     poll_h
1205     posix_memalign
1206     rdtsc
1207     rint
1208     round
1209     roundf
1210     sched_getaffinity
1211     sdl
1212     sdl_video_size
1213     setmode
1214     setrlimit
1215     Sleep
1216     sndio_h
1217     socklen_t
1218     soundcard_h
1219     strerror_r
1220     strptime
1221     strtok_r
1222     struct_addrinfo
1223     struct_group_source_req
1224     struct_ip_mreq_source
1225     struct_ipv6_mreq
1226     struct_pollfd
1227     struct_rusage_ru_maxrss
1228     struct_sockaddr_in6
1229     struct_sockaddr_sa_len
1230     struct_sockaddr_storage
1231     struct_v4l2_frmivalenum_discrete
1232     symver_asm_label
1233     symver_gnu_asm
1234     sysconf
1235     sysctl
1236     sys_mman_h
1237     sys_param_h
1238     sys_resource_h
1239     sys_select_h
1240     sys_soundcard_h
1241     sys_time_h
1242     sys_videoio_h
1243     threads
1244     trunc
1245     truncf
1246     unistd_h
1247     usleep
1248     vfp_args
1249     VirtualAlloc
1250     windows_h
1251     winsock2_h
1252     xform_asm
1253     xmm_clobbers
1254 "
1255
1256 # options emitted with CONFIG_ prefix but not available on command line
1257 CONFIG_EXTRA="
1258     aandcttables
1259     ac3dsp
1260     avutil
1261     error_resilience
1262     gcrypt
1263     golomb
1264     gplv3
1265     h264chroma
1266     h264dsp
1267     h264pred
1268     h264qpel
1269     huffman
1270     lgplv3
1271     lpc
1272     mpegaudio
1273     mpegaudiodsp
1274     mpegvideo
1275     mpegvideoenc
1276     nettle
1277     rangecoder
1278     rtpdec
1279     sinewin
1280     vp3dsp
1281 "
1282
1283 CMDLINE_SELECT="
1284     $ARCH_EXT_LIST
1285     $CONFIG_LIST
1286     $HAVE_LIST_CMDLINE
1287     $THREADS_LIST
1288     asm
1289     cross_compile
1290     debug
1291     extra_warnings
1292     logging
1293     lto
1294     optimizations
1295 "
1296
1297 PATHS_LIST='
1298     bindir
1299     datadir
1300     incdir
1301     libdir
1302     mandir
1303     prefix
1304     shlibdir
1305 '
1306
1307 CMDLINE_SET="
1308     $PATHS_LIST
1309     ar
1310     arch
1311     as
1312     build_suffix
1313     cc
1314     cpu
1315     cross_prefix
1316     dep_cc
1317     extra_version
1318     host_cc
1319     host_cflags
1320     host_ld
1321     host_ldflags
1322     host_libs
1323     host_os
1324     ld
1325     logfile
1326     malloc_prefix
1327     nm
1328     optflags
1329     pkg_config
1330     random_seed
1331     samples
1332     sysinclude
1333     sysroot
1334     target_exec
1335     target_os
1336     target_path
1337     toolchain
1338 "
1339
1340 CMDLINE_APPEND="
1341     extra_cflags
1342 "
1343
1344 # code dependency declarations
1345
1346 # architecture extensions
1347
1348 armv5te_deps="arm"
1349 armv6_deps="arm"
1350 armv6t2_deps="arm"
1351 armvfp_deps="arm"
1352 neon_deps="arm"
1353 vfpv3_deps="armvfp"
1354
1355 altivec_deps="ppc"
1356 ppc4xx_deps="ppc"
1357
1358 vis_deps="sparc"
1359
1360 x86_64_suggest="cmov fast_cmov"
1361
1362 amd3dnow_deps="mmx"
1363 amd3dnowext_deps="amd3dnow"
1364 mmx_deps="x86"
1365 mmxext_deps="mmx"
1366 sse_deps="mmxext"
1367 sse2_deps="sse"
1368 sse3_deps="sse2"
1369 ssse3_deps="sse3"
1370 sse4_deps="ssse3"
1371 sse42_deps="sse4"
1372 avx_deps="sse42"
1373 fma4_deps="avx"
1374
1375 mmx_external_deps="yasm"
1376 mmx_inline_deps="inline_asm"
1377 mmx_suggest="mmx_external mmx_inline"
1378
1379 for ext in $(filter_out mmx $ARCH_EXT_LIST_X86); do
1380     eval dep=\$${ext}_deps
1381     eval ${ext}_external_deps='"${dep}_external"'
1382     eval ${ext}_inline_deps='"${dep}_inline"'
1383     eval ${ext}_suggest='"${ext}_external ${ext}_inline"'
1384 done
1385
1386 aligned_stack_if_any="ppc x86"
1387 fast_64bit_if_any="alpha ia64 mips64 parisc64 ppc64 sparc64 x86_64"
1388 fast_clz_if_any="alpha armv5te avr32 mips ppc x86"
1389 fast_unaligned_if_any="armv6 ppc x86"
1390
1391 inline_asm_deps="!tms470"
1392 need_memalign="altivec neon sse"
1393
1394 symver_if_any="symver_asm_label symver_gnu_asm"
1395
1396 log2_deps="!msvcrt"
1397
1398 # subsystems
1399 dct_select="rdft"
1400 mdct_select="fft"
1401 rdft_select="fft"
1402 mpegaudio_select="mpegaudiodsp"
1403 mpegaudiodsp_select="dct"
1404 mpegvideoenc_select="mpegvideo"
1405
1406 # decoders / encoders / hardware accelerators
1407 aac_decoder_select="mdct sinewin"
1408 aac_encoder_select="mdct sinewin"
1409 aac_latm_decoder_select="aac_decoder aac_latm_parser"
1410 ac3_decoder_select="mdct ac3dsp ac3_parser"
1411 ac3_encoder_select="mdct ac3dsp"
1412 ac3_fixed_encoder_select="mdct ac3dsp"
1413 alac_encoder_select="lpc"
1414 amrnb_decoder_select="lsp"
1415 amrwb_decoder_select="lsp"
1416 atrac1_decoder_select="mdct sinewin"
1417 atrac3_decoder_select="mdct"
1418 binkaudio_dct_decoder_select="mdct rdft dct sinewin"
1419 binkaudio_rdft_decoder_select="mdct rdft sinewin"
1420 cavs_decoder_select="golomb mpegvideo"
1421 cook_decoder_select="mdct sinewin"
1422 cscd_decoder_suggest="zlib"
1423 dca_decoder_select="mdct"
1424 dnxhd_encoder_select="aandcttables mpegvideoenc"
1425 dxa_decoder_select="zlib"
1426 eac3_decoder_select="ac3_decoder"
1427 eac3_encoder_select="ac3_encoder"
1428 eamad_decoder_select="aandcttables error_resilience mpegvideo"
1429 eatgq_decoder_select="aandcttables"
1430 eatqi_decoder_select="aandcttables error_resilience mpegvideo"
1431 ffv1_decoder_select="golomb rangecoder"
1432 ffv1_encoder_select="rangecoder"
1433 ffvhuff_encoder_select="huffman"
1434 flac_decoder_select="golomb"
1435 flac_encoder_select="golomb lpc"
1436 flashsv_decoder_select="zlib"
1437 flashsv_encoder_select="zlib"
1438 flashsv2_decoder_select="zlib"
1439 flv_decoder_select="h263_decoder"
1440 flv_encoder_select="h263_encoder"
1441 fraps_decoder_select="huffman"
1442 h261_decoder_select="error_resilience mpegvideo"
1443 h261_encoder_select="aandcttables mpegvideoenc"
1444 h263_decoder_select="error_resilience h263_parser mpegvideo"
1445 h263_encoder_select="aandcttables error_resilience mpegvideoenc"
1446 h263_vaapi_hwaccel_select="vaapi h263_decoder"
1447 h263i_decoder_select="h263_decoder"
1448 h263p_encoder_select="h263_encoder"
1449 h264_decoder_select="error_resilience golomb h264chroma h264dsp h264pred h264qpel mpegvideo"
1450 h264_dxva2_hwaccel_deps="dxva2api_h"
1451 h264_dxva2_hwaccel_select="dxva2 h264_decoder"
1452 h264_vaapi_hwaccel_select="vaapi h264_decoder"
1453 h264_vda_hwaccel_select="vda h264_decoder"
1454 h264_vdpau_decoder_select="vdpau h264_decoder"
1455 huffyuv_encoder_select="huffman"
1456 iac_decoder_select="fft mdct sinewin"
1457 imc_decoder_select="fft mdct sinewin"
1458 jpegls_decoder_select="golomb"
1459 jpegls_encoder_select="golomb"
1460 ljpeg_encoder_select="aandcttables mpegvideoenc"
1461 loco_decoder_select="golomb"
1462 mdec_decoder_select="error_resilience mpegvideo"
1463 mjpeg_encoder_select="aandcttables mpegvideoenc"
1464 mlp_decoder_select="mlp_parser"
1465 mp1_decoder_select="mpegaudio"
1466 mp1float_decoder_select="mpegaudio"
1467 mp2_decoder_select="mpegaudio"
1468 mp2float_decoder_select="mpegaudio"
1469 mp3_decoder_select="mpegaudio"
1470 mp3adu_decoder_select="mpegaudio"
1471 mp3adufloat_decoder_select="mpegaudio"
1472 mp3float_decoder_select="mpegaudio"
1473 mp3on4_decoder_select="mpegaudio"
1474 mp3on4float_decoder_select="mpegaudio"
1475 mpc7_decoder_select="mpegaudiodsp"
1476 mpc8_decoder_select="mpegaudiodsp"
1477 mpeg_vdpau_decoder_select="vdpau mpegvideo_decoder"
1478 mpeg_xvmc_decoder_deps="X11_extensions_XvMClib_h"
1479 mpeg_xvmc_decoder_select="mpegvideo_decoder"
1480 mpeg1_vdpau_decoder_select="vdpau mpeg1video_decoder"
1481 mpeg1video_decoder_select="error_resilience mpegvideo"
1482 mpeg1video_encoder_select="aandcttables error_resilience mpegvideoenc"
1483 mpeg2_dxva2_hwaccel_deps="dxva2api_h"
1484 mpeg2_dxva2_hwaccel_select="dxva2 mpeg2video_decoder"
1485 mpeg2_vaapi_hwaccel_select="vaapi mpeg2video_decoder"
1486 mpeg2video_decoder_select="error_resilience mpegvideo"
1487 mpeg2video_encoder_select="aandcttables error_resilience mpegvideoenc"
1488 mpeg4_decoder_select="h263_decoder mpeg4video_parser"
1489 mpeg4_encoder_select="h263_encoder"
1490 mpeg4_vaapi_hwaccel_select="vaapi mpeg4_decoder"
1491 mpeg4_vdpau_decoder_select="vdpau mpeg4_decoder"
1492 msmpeg4v1_decoder_select="h263_decoder"
1493 msmpeg4v1_encoder_select="h263_encoder"
1494 msmpeg4v2_decoder_select="h263_decoder"
1495 msmpeg4v2_encoder_select="h263_encoder"
1496 msmpeg4v3_decoder_select="h263_decoder"
1497 msmpeg4v3_encoder_select="h263_encoder"
1498 mss2_decoder_select="vc1_decoder"
1499 nellymoser_decoder_select="mdct sinewin"
1500 nellymoser_encoder_select="mdct sinewin"
1501 png_decoder_select="zlib"
1502 png_encoder_select="zlib"
1503 qcelp_decoder_select="lsp"
1504 qdm2_decoder_select="mdct rdft mpegaudiodsp"
1505 ra_144_encoder_select="lpc"
1506 ralf_decoder_select="golomb"
1507 rv10_decoder_select="h263_decoder"
1508 rv10_encoder_select="h263_encoder"
1509 rv20_decoder_select="h263_decoder"
1510 rv20_encoder_select="h263_encoder"
1511 rv30_decoder_select="error_resilience golomb h264chroma h264pred h264qpel mpegvideo"
1512 rv40_decoder_select="error_resilience golomb h264chroma h264pred h264qpel mpegvideo"
1513 shorten_decoder_select="golomb"
1514 sipr_decoder_select="lsp"
1515 snow_decoder_select="dwt rangecoder"
1516 snow_encoder_select="aandcttables dwt error_resilience mpegvideoenc rangecoder"
1517 svq1_decoder_select="error_resilience mpegvideo"
1518 svq1_encoder_select="aandcttables error_resilience mpegvideoenc"
1519 svq3_decoder_select="error_resilience golomb h264chroma h264dsp h264pred h264qpel mpegvideo"
1520 svq3_decoder_suggest="zlib"
1521 theora_decoder_select="vp3_decoder"
1522 tiff_decoder_suggest="zlib"
1523 tiff_encoder_suggest="zlib"
1524 truehd_decoder_select="mlp_decoder"
1525 tscc_decoder_select="zlib"
1526 twinvq_decoder_select="mdct lsp sinewin"
1527 utvideo_encoder_select="huffman"
1528 vc1_decoder_select="h263_decoder h264chroma h264qpel"
1529 vc1_dxva2_hwaccel_deps="dxva2api_h"
1530 vc1_dxva2_hwaccel_select="dxva2 vc1_decoder"
1531 vc1_vaapi_hwaccel_select="vaapi vc1_decoder"
1532 vc1_vdpau_decoder_select="vdpau vc1_decoder"
1533 vc1image_decoder_select="vc1_decoder"
1534 vorbis_decoder_select="mdct"
1535 vorbis_encoder_select="mdct"
1536 vp3_decoder_select="vp3dsp"
1537 vp5_decoder_select="vp3dsp"
1538 vp6_decoder_select="huffman vp3dsp"
1539 vp6a_decoder_select="vp6_decoder"
1540 vp6f_decoder_select="vp6_decoder"
1541 vp8_decoder_select="h264pred h264qpel"
1542 wmapro_decoder_select="mdct sinewin"
1543 wmav1_decoder_select="mdct sinewin"
1544 wmav1_encoder_select="mdct sinewin"
1545 wmav2_decoder_select="mdct sinewin"
1546 wmav2_encoder_select="mdct sinewin"
1547 wmavoice_decoder_select="lsp rdft dct mdct sinewin"
1548 wmv1_decoder_select="h263_decoder"
1549 wmv1_encoder_select="h263_encoder"
1550 wmv2_decoder_select="h263_decoder"
1551 wmv2_encoder_select="h263_encoder"
1552 wmv3_decoder_select="vc1_decoder"
1553 wmv3_dxva2_hwaccel_select="vc1_dxva2_hwaccel"
1554 wmv3_vaapi_hwaccel_select="vc1_vaapi_hwaccel"
1555 wmv3_vdpau_decoder_select="vc1_vdpau_decoder"
1556 wmv3image_decoder_select="wmv3_decoder"
1557 zerocodec_decoder_select="zlib"
1558 zlib_decoder_select="zlib"
1559 zlib_encoder_select="zlib"
1560 zmbv_decoder_select="zlib"
1561 zmbv_encoder_select="zlib"
1562
1563 vaapi_deps="va_va_h"
1564 vda_deps="VideoDecodeAcceleration_VDADecoder_h pthreads"
1565 vdpau_deps="vdpau_vdpau_h vdpau_vdpau_x11_h"
1566
1567 # parsers
1568 h264_parser_select="error_resilience golomb h264dsp h264pred mpegvideo"
1569 mpeg4video_parser_select="error_resilience mpegvideo"
1570 mpegvideo_parser_select="error_resilience mpegvideo"
1571 vc1_parser_select="error_resilience mpegvideo"
1572
1573 # external libraries
1574 libfaac_encoder_deps="libfaac"
1575 libfdk_aac_encoder_deps="libfdk_aac"
1576 libgsm_decoder_deps="libgsm"
1577 libgsm_encoder_deps="libgsm"
1578 libgsm_ms_decoder_deps="libgsm"
1579 libgsm_ms_encoder_deps="libgsm"
1580 libilbc_decoder_deps="libilbc"
1581 libilbc_encoder_deps="libilbc"
1582 libmp3lame_encoder_deps="libmp3lame"
1583 libopencore_amrnb_decoder_deps="libopencore_amrnb"
1584 libopencore_amrnb_encoder_deps="libopencore_amrnb"
1585 libopencore_amrwb_decoder_deps="libopencore_amrwb"
1586 libopenjpeg_decoder_deps="libopenjpeg"
1587 libopenjpeg_encoder_deps="libopenjpeg"
1588 libopus_decoder_deps="libopus"
1589 libopus_encoder_deps="libopus"
1590 libschroedinger_decoder_deps="libschroedinger"
1591 libschroedinger_encoder_deps="libschroedinger"
1592 libspeex_decoder_deps="libspeex"
1593 libspeex_encoder_deps="libspeex"
1594 libtheora_encoder_deps="libtheora"
1595 libvo_aacenc_encoder_deps="libvo_aacenc"
1596 libvo_amrwbenc_encoder_deps="libvo_amrwbenc"
1597 libvorbis_encoder_deps="libvorbis"
1598 libvpx_decoder_deps="libvpx"
1599 libvpx_encoder_deps="libvpx"
1600 libx264_encoder_deps="libx264"
1601 libxavs_encoder_deps="libxavs"
1602 libxvid_encoder_deps="libxvid"
1603
1604 # demuxers / muxers
1605 ac3_demuxer_select="ac3_parser"
1606 asf_stream_muxer_select="asf_muxer"
1607 avisynth_demuxer_deps="avisynth"
1608 dirac_demuxer_select="dirac_parser"
1609 eac3_demuxer_select="ac3_parser"
1610 flac_demuxer_select="flac_parser"
1611 ipod_muxer_select="mov_muxer"
1612 matroska_audio_muxer_select="matroska_muxer"
1613 matroska_demuxer_suggest="zlib bzlib"
1614 mov_demuxer_suggest="zlib"
1615 mp3_demuxer_select="mpegaudio_parser"
1616 mp4_muxer_select="mov_muxer"
1617 mpegts_muxer_select="adts_muxer latm_muxer mpegvideo"
1618 mpegtsraw_demuxer_select="mpegts_demuxer"
1619 mxf_d10_muxer_select="mxf_muxer"
1620 ogg_demuxer_select="golomb"
1621 psp_muxer_select="mov_muxer"
1622 rtp_demuxer_select="sdp_demuxer"
1623 rtp_muxer_select="mpegvideo"
1624 rtpdec_select="asf_demuxer rm_demuxer rtp_protocol mpegts_demuxer mov_demuxer"
1625 rtsp_demuxer_select="http_protocol rtpdec"
1626 rtsp_muxer_select="rtp_muxer http_protocol rtp_protocol"
1627 sap_demuxer_select="sdp_demuxer"
1628 sap_muxer_select="rtp_muxer rtp_protocol"
1629 sdp_demuxer_select="rtpdec"
1630 smoothstreaming_muxer_select="ismv_muxer"
1631 spdif_muxer_select="aac_parser"
1632 tg2_muxer_select="mov_muxer"
1633 tgp_muxer_select="mov_muxer"
1634 w64_demuxer_deps="wav_demuxer"
1635
1636 # indevs / outdevs
1637 alsa_indev_deps="alsa_asoundlib_h snd_pcm_htimestamp"
1638 alsa_outdev_deps="alsa_asoundlib_h"
1639 bktr_indev_deps_any="dev_bktr_ioctl_bt848_h machine_ioctl_bt848_h dev_video_bktr_ioctl_bt848_h dev_ic_bt8xx_h"
1640 dv1394_indev_deps="dv1394 dv_demuxer"
1641 fbdev_indev_deps="linux_fb_h"
1642 jack_indev_deps="jack_jack_h"
1643 libcdio_indev_deps="libcdio"
1644 libdc1394_indev_deps="libdc1394"
1645 oss_indev_deps_any="soundcard_h sys_soundcard_h"
1646 oss_outdev_deps_any="soundcard_h sys_soundcard_h"
1647 pulse_indev_deps="libpulse"
1648 sndio_indev_deps="sndio_h"
1649 sndio_outdev_deps="sndio_h"
1650 v4l2_indev_deps_any="linux_videodev2_h sys_videoio_h"
1651 vfwcap_indev_deps="capCreateCaptureWindow vfwcap_defines"
1652 vfwcap_indev_extralibs="-lavicap32"
1653 x11grab_indev_deps="x11grab XShmCreateImage"
1654
1655 # protocols
1656 ffrtmpcrypt_protocol_deps="!librtmp_protocol"
1657 ffrtmpcrypt_protocol_deps_any="gcrypt nettle openssl"
1658 ffrtmpcrypt_protocol_select="tcp_protocol"
1659 ffrtmphttp_protocol_deps="!librtmp_protocol"
1660 ffrtmphttp_protocol_select="http_protocol"
1661 gopher_protocol_deps="network"
1662 httpproxy_protocol_deps="network"
1663 httpproxy_protocol_select="tcp_protocol"
1664 http_protocol_deps="network"
1665 http_protocol_select="tcp_protocol"
1666 https_protocol_select="tls_protocol"
1667 librtmp_protocol_deps="librtmp"
1668 librtmpe_protocol_deps="librtmp"
1669 librtmps_protocol_deps="librtmp"
1670 librtmpt_protocol_deps="librtmp"
1671 librtmpte_protocol_deps="librtmp"
1672 mmsh_protocol_select="http_protocol"
1673 mmst_protocol_deps="network"
1674 rtmp_protocol_deps="!librtmp_protocol"
1675 rtmp_protocol_select="tcp_protocol"
1676 rtmpe_protocol_select="ffrtmpcrypt_protocol"
1677 rtmps_protocol_deps="!librtmp_protocol"
1678 rtmps_protocol_select="tls_protocol"
1679 rtmpt_protocol_select="ffrtmphttp_protocol"
1680 rtmpte_protocol_select="ffrtmpcrypt_protocol ffrtmphttp_protocol"
1681 rtmpts_protocol_select="ffrtmphttp_protocol https_protocol"
1682 rtp_protocol_select="udp_protocol"
1683 sctp_protocol_deps="network struct_sctp_event_subscribe"
1684 tcp_protocol_deps="network"
1685 tls_protocol_deps_any="openssl gnutls"
1686 tls_protocol_select="tcp_protocol"
1687 udp_protocol_deps="network"
1688
1689 # filters
1690 blackframe_filter_deps="gpl"
1691 boxblur_filter_deps="gpl"
1692 cropdetect_filter_deps="gpl"
1693 delogo_filter_deps="gpl"
1694 drawtext_filter_deps="libfreetype"
1695 frei0r_filter_deps="frei0r dlopen strtok_r"
1696 frei0r_filter_extralibs='$ldl'
1697 frei0r_src_filter_deps="frei0r dlopen strtok_r"
1698 frei0r_src_filter_extralibs='$ldl'
1699 hqdn3d_filter_deps="gpl"
1700 resample_filter_deps="avresample"
1701 ocv_filter_deps="libopencv"
1702 scale_filter_deps="swscale"
1703 yadif_filter_deps="gpl"
1704
1705 # libraries
1706 avdevice_deps="avcodec avformat"
1707 avformat_deps="avcodec"
1708
1709 # programs
1710 avconv_deps="avcodec avfilter avformat avresample swscale
1711              aformat_filter asyncts_filter
1712              format_filter fps_filter scale_filter setpts_filter"
1713 avplay_deps="avcodec avformat swscale sdl"
1714 avplay_select="rdft"
1715 avprobe_deps="avcodec avformat"
1716 avserver_deps="avformat ffm_muxer fork rtp_protocol rtsp_demuxer !shared"
1717 avserver_extralibs='$ldl'
1718
1719 doc_deps="texi2html"
1720
1721 # tests
1722
1723 mpg_test_deps="mpeg1system_muxer mpegps_demuxer"
1724 seek_lavf_mxf_d10_test_deps="mxf_d10_test"
1725
1726 test_deps(){
1727     suf1=$1
1728     suf2=$2
1729     shift 2
1730     for v; do
1731         dep=${v%=*}
1732         tests=${v#*=}
1733         for name in ${tests}; do
1734             append ${name}_test_deps ${dep}$suf1 ${dep}$suf2
1735         done
1736     done
1737 }
1738
1739 test_deps _muxer _demuxer                                               \
1740     aiff                                                                \
1741     pcm_alaw=alaw                                                       \
1742     asf                                                                 \
1743     au                                                                  \
1744     avi                                                                 \
1745     dv=dv_fmt                                                           \
1746     ffm                                                                 \
1747     flv=flv_fmt                                                         \
1748     gxf                                                                 \
1749     matroska=mkv                                                        \
1750     mmf                                                                 \
1751     mov                                                                 \
1752     pcm_mulaw=mulaw                                                     \
1753     mxf="mxf mxf_d10"                                                   \
1754     nut                                                                 \
1755     ogg                                                                 \
1756     rawvideo=pixfmt                                                     \
1757     rm                                                                  \
1758     swf                                                                 \
1759     mpegts=ts                                                           \
1760     voc                                                                 \
1761     wav                                                                 \
1762     yuv4mpegpipe=yuv4mpeg                                               \
1763
1764 # default parameters
1765
1766 logfile="config.log"
1767
1768 # installation paths
1769 prefix_default="/usr/local"
1770 bindir_default='${prefix}/bin'
1771 datadir_default='${prefix}/share/avconv'
1772 incdir_default='${prefix}/include'
1773 libdir_default='${prefix}/lib'
1774 mandir_default='${prefix}/share/man'
1775 shlibdir_default="$libdir_default"
1776
1777 # toolchain
1778 ar_default="ar"
1779 cc_default="gcc"
1780 host_cc_default="gcc"
1781 ln_s="ln -sf"
1782 nm_default="nm -g"
1783 objformat="elf"
1784 pkg_config_default=pkg-config
1785 ranlib="ranlib"
1786 yasmexe="yasm"
1787
1788 nogas=":"
1789
1790 # machine
1791 arch_default=$(uname -m)
1792 cpu="generic"
1793
1794 # OS
1795 target_os_default=$(tolower $(uname -s))
1796 host_os=$target_os_default
1797
1798 # configurable options
1799 enable $PROGRAM_LIST
1800
1801 enable avcodec
1802 enable avdevice
1803 enable avfilter
1804 enable avformat
1805 enable avresample
1806 enable avutil
1807 enable swscale
1808
1809 enable asm
1810 enable debug
1811 enable doc
1812 enable network
1813 enable optimizations
1814 enable safe_bitstream_reader
1815 enable static
1816 enable swscale_alpha
1817
1818 # build settings
1819 SHFLAGS='-shared -Wl,-soname,$$(@F)'
1820 AVSERVERLDFLAGS=-Wl,-E
1821 LIBPREF="lib"
1822 LIBSUF=".a"
1823 FULLNAME='$(NAME)$(BUILDSUF)'
1824 LIBNAME='$(LIBPREF)$(FULLNAME)$(LIBSUF)'
1825 SLIBPREF="lib"
1826 SLIBSUF=".so"
1827 SLIBNAME='$(SLIBPREF)$(FULLNAME)$(SLIBSUF)'
1828 SLIBNAME_WITH_VERSION='$(SLIBNAME).$(LIBVERSION)'
1829 SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)'
1830 LIB_INSTALL_EXTRA_CMD='$$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
1831 SLIB_INSTALL_NAME='$(SLIBNAME_WITH_VERSION)'
1832 SLIB_INSTALL_LINKS='$(SLIBNAME_WITH_MAJOR) $(SLIBNAME)'
1833
1834 asflags_filter=echo
1835 cflags_filter=echo
1836 ldflags_filter=echo
1837
1838 AS_C='-c'
1839 AS_O='-o $@'
1840 CC_C='-c'
1841 CC_E='-E -o $@'
1842 CC_O='-o $@'
1843 LD_O='-o $@'
1844 LD_LIB='-l%'
1845 LD_PATH='-L'
1846 HOSTCC_C='-c'
1847 HOSTCC_O='-o $@'
1848 HOSTLD_O='-o $@'
1849
1850 host_cflags='-D_ISOC99_SOURCE -D_XOPEN_SOURCE=600 -O3 -g'
1851 host_libs='-lm'
1852 host_cflags_filter=echo
1853 host_ldflags_filter=echo
1854
1855 target_path='$(CURDIR)'
1856
1857 # since the object filename is not given with the -MM flag, the compiler
1858 # is only able to print the basename, and we must add the path ourselves
1859 DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(*F)\\.o,$(@D)/$(*F).o," > $(@:.o=.d)'
1860 DEPFLAGS='-MM'
1861
1862 # find source path
1863 if test -f configure; then
1864     source_path=.
1865 else
1866     source_path=$(cd $(dirname "$0"); pwd)
1867     echo "$source_path" | grep -q '[[:blank:]]' &&
1868         die "Out of tree builds are impossible with whitespace in source path."
1869     test -e "$source_path/config.h" &&
1870         die "Out of tree builds are impossible with config.h in source dir."
1871 fi
1872
1873 for v in "$@"; do
1874     r=${v#*=}
1875     l=${v%"$r"}
1876     r=$(sh_quote "$r")
1877     LIBAV_CONFIGURATION="${LIBAV_CONFIGURATION# } ${l}${r}"
1878 done
1879
1880 find_things(){
1881     thing=$1
1882     pattern=$2
1883     file=$source_path/$3
1884     sed -n "s/^[^#]*$pattern.*([^,]*, *\([^,]*\)\(,.*\)*).*/\1_$thing/p" "$file"
1885 }
1886
1887 ENCODER_LIST=$(find_things  encoder  ENC      libavcodec/allcodecs.c)
1888 DECODER_LIST=$(find_things  decoder  DEC      libavcodec/allcodecs.c)
1889 HWACCEL_LIST=$(find_things  hwaccel  HWACCEL  libavcodec/allcodecs.c)
1890 PARSER_LIST=$(find_things   parser   PARSER   libavcodec/allcodecs.c)
1891 BSF_LIST=$(find_things      bsf      BSF      libavcodec/allcodecs.c)
1892 MUXER_LIST=$(find_things    muxer    _MUX     libavformat/allformats.c)
1893 DEMUXER_LIST=$(find_things  demuxer  DEMUX    libavformat/allformats.c)
1894 OUTDEV_LIST=$(find_things   outdev   OUTDEV   libavdevice/alldevices.c)
1895 INDEV_LIST=$(find_things    indev    _IN      libavdevice/alldevices.c)
1896 PROTOCOL_LIST=$(find_things protocol PROTOCOL libavformat/allformats.c)
1897 FILTER_LIST=$(find_things   filter   FILTER   libavfilter/allfilters.c)
1898
1899 ALL_COMPONENTS="
1900     $BSF_LIST
1901     $DECODER_LIST
1902     $DEMUXER_LIST
1903     $ENCODER_LIST
1904     $FILTER_LIST
1905     $HWACCEL_LIST
1906     $INDEV_LIST
1907     $MUXER_LIST
1908     $OUTDEV_LIST
1909     $PARSER_LIST
1910     $PROTOCOL_LIST
1911 "
1912
1913 find_tests(){
1914     map "echo ${2}\${v}_test" $(ls "$source_path"/tests/ref/$1 | grep -v '[^-a-z0-9_]')
1915 }
1916
1917 LAVF_TESTS=$(find_tests lavf)
1918 LAVFI_TESTS=$(find_tests lavfi)
1919 SEEK_TESTS=$(find_tests seek seek_)
1920
1921 ALL_TESTS="$LAVF_TESTS $LAVFI_TESTS $SEEK_TESTS"
1922
1923 for n in $COMPONENT_LIST; do
1924     v=$(toupper ${n%s})_LIST
1925     eval enable \$$v
1926     eval ${n}_if_any="\$$v"
1927 done
1928
1929 enable $ARCH_EXT_LIST $ALL_TESTS
1930
1931 die_unknown(){
1932     echo "Unknown option \"$1\"."
1933     echo "See $0 --help for available options."
1934     exit 1
1935 }
1936
1937 show_list() {
1938     suffix=_$1
1939     shift
1940     echo $* | sed s/$suffix//g | tr ' ' '\n' | sort | pr -3 -t
1941     exit 0
1942 }
1943
1944 rand_list(){
1945     IFS=', '
1946     set -- $*
1947     unset IFS
1948     for thing; do
1949         comp=${thing%:*}
1950         prob=${thing#$comp}
1951         prob=${prob#:}
1952         is_in ${comp} $COMPONENT_LIST && eval comp=\$$(toupper ${comp%s})_LIST
1953         echo "prob ${prob:-0.5}"
1954         printf '%s\n' $comp
1955     done
1956 }
1957
1958 do_random(){
1959     action=$1
1960     shift
1961     random_seed=$(awk "BEGIN { srand($random_seed); print srand() }")
1962     $action $(rand_list "$@" | awk "BEGIN { srand($random_seed) } \$1 == \"prob\" { prob = \$2; next } rand() < prob { print }")
1963 }
1964
1965 for opt do
1966     optval="${opt#*=}"
1967     case "$opt" in
1968     --extra-ldflags=*) add_ldflags $optval
1969     ;;
1970     --extra-libs=*) add_extralibs $optval
1971     ;;
1972     --disable-devices) disable $INDEV_LIST $OUTDEV_LIST
1973     ;;
1974     --enable-debug=*) debuglevel="$optval"
1975     ;;
1976     --disable-everything)
1977     map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
1978     ;;
1979     --enable-random|--disable-random)
1980     action=${opt%%-random}
1981     do_random ${action#--} $COMPONENT_LIST
1982     ;;
1983     --enable-random=*|--disable-random=*)
1984     action=${opt%%-random=*}
1985     do_random ${action#--} $optval
1986     ;;
1987     --enable-*=*|--disable-*=*)
1988     eval $(echo "${opt%%=*}" | sed 's/--/action=/;s/-/ thing=/')
1989     is_in "${thing}s" $COMPONENT_LIST || die_unknown "$opt"
1990     eval list=\$$(toupper $thing)_LIST
1991     name=$(echo "${optval}" | sed "s/,/_${thing}|/g")_${thing}
1992     $action $(filter "$name" $list)
1993     ;;
1994     --enable-?*|--disable-?*)
1995     eval $(echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g')
1996     if is_in $option $COMPONENT_LIST; then
1997         test $action = disable && action=unset
1998         eval $action \$$(toupper ${option%s})_LIST
1999     elif is_in $option $CMDLINE_SELECT; then
2000         $action $option
2001     else
2002         die_unknown $opt
2003     fi
2004     ;;
2005     --list-*)
2006         NAME="${opt#--list-}"
2007         is_in $NAME $COMPONENT_LIST || die_unknown $opt
2008         NAME=${NAME%s}
2009         eval show_list $NAME \$$(toupper $NAME)_LIST
2010     ;;
2011     --help|-h) show_help
2012     ;;
2013     *)
2014     optname="${opt%%=*}"
2015     optname="${optname#--}"
2016     optname=$(echo "$optname" | sed 's/-/_/g')
2017     if is_in $optname $CMDLINE_SET; then
2018         eval $optname='$optval'
2019     elif is_in $optname $CMDLINE_APPEND; then
2020         append $optname "$optval"
2021     else
2022          die_unknown $opt
2023     fi
2024     ;;
2025     esac
2026 done
2027
2028 disabled logging && logfile=/dev/null
2029
2030 echo "# $0 $LIBAV_CONFIGURATION" > $logfile
2031 set >> $logfile
2032
2033 test -n "$cross_prefix" && enable cross_compile
2034
2035 if enabled cross_compile; then
2036     test -n "$arch" && test -n "$target_os" ||
2037         die "Must specify target arch and OS when cross-compiling"
2038 fi
2039
2040 set_default arch target_os
2041
2042 ar_default="${cross_prefix}${ar_default}"
2043 cc_default="${cross_prefix}${cc_default}"
2044 nm_default="${cross_prefix}${nm_default}"
2045 pkg_config_default="${cross_prefix}${pkg_config_default}"
2046 ranlib="${cross_prefix}${ranlib}"
2047
2048 sysinclude_default="${sysroot}/usr/include"
2049
2050 case "$toolchain" in
2051     clang-asan)
2052         cc_default="clang"
2053         add_cflags  -faddress-sanitizer
2054         add_ldflags -faddress-sanitizer
2055     ;;
2056     clang-tsan)
2057         cc_default="clang"
2058         add_cflags  -fthread-sanitizer
2059         add_ldflags -fthread-sanitizer
2060     ;;
2061     msvc)
2062         cc_default="c99wrap cl"
2063         ld_default="c99wrap link"
2064         nm_default="dumpbin -symbols"
2065         ar_default="lib"
2066     ;;
2067     ?*)
2068         die "Unknown toolchain $toolchain"
2069     ;;
2070 esac
2071
2072 set_default cc pkg_config sysinclude
2073 enabled cross_compile || host_cc_default=$cc
2074 set_default host_cc
2075
2076 if ! $pkg_config --version >/dev/null 2>&1; then
2077     warn "$pkg_config not found, library detection may fail."
2078     pkg_config=false
2079 fi
2080
2081 exesuf() {
2082     case $1 in
2083         mingw32*|cygwin*|*-dos|freedos|opendos|os/2*|symbian) echo .exe ;;
2084     esac
2085 }
2086
2087 EXESUF=$(exesuf $target_os)
2088 HOSTEXESUF=$(exesuf $host_os)
2089
2090 # set temporary file name
2091 : ${TMPDIR:=$TEMPDIR}
2092 : ${TMPDIR:=$TMP}
2093 : ${TMPDIR:=/tmp}
2094
2095 if ! check_cmd mktemp -u XXXXXX; then
2096     # simple replacement for missing mktemp
2097     # NOT SAFE FOR GENERAL USE
2098     mktemp(){
2099         echo "${2%%XXX*}.${HOSTNAME}.${UID}.$$"
2100     }
2101 fi
2102
2103 tmpfile(){
2104     tmp=$(mktemp -u "${TMPDIR}/ffconf.XXXXXXXX")$2 &&
2105         (set -C; exec > $tmp) 2>/dev/null ||
2106         die "Unable to create temporary file in $TMPDIR."
2107     append TMPFILES $tmp
2108     eval $1=$tmp
2109 }
2110
2111 trap 'rm -f -- $TMPFILES' EXIT
2112
2113 tmpfile TMPASM .asm
2114 tmpfile TMPC   .c
2115 tmpfile TMPE   $EXESUF
2116 tmpfile TMPH   .h
2117 tmpfile TMPO   .o
2118 tmpfile TMPS   .S
2119 tmpfile TMPSH  .sh
2120 tmpfile TMPV   .ver
2121
2122 unset -f mktemp
2123
2124 chmod +x $TMPE
2125
2126 # make sure we can execute files in $TMPDIR
2127 cat > $TMPSH 2>> $logfile <<EOF
2128 #! /bin/sh
2129 EOF
2130 chmod +x $TMPSH >> $logfile 2>&1
2131 if ! $TMPSH >> $logfile 2>&1; then
2132     cat <<EOF
2133 Unable to create and execute files in $TMPDIR.  Set the TMPDIR environment
2134 variable to another directory and make sure that it is not mounted noexec.
2135 EOF
2136     die "Sanity test failed."
2137 fi
2138
2139 msvc_flags(){
2140     for flag; do
2141         case $flag in
2142             -fomit-frame-pointer) echo -Oy ;;
2143             -g)                   echo -Z7 ;;
2144             -Wall)                echo -W4 -wd4244 -wd4127 -wd4018 -wd4389 \
2145                                        -wd4146 -wd4057 -wd4204 -wd4706 -wd4305 \
2146                                        -wd4152 -wd4324 -we4013 -wd4100 -wd4214 \
2147                                        -wd4996 ;;
2148             -std=c99)             ;;
2149             -fno-math-errno)      ;;
2150             -fno-common)          ;;
2151             -fno-signed-zeros)    ;;
2152             -lz)                  echo zlib.lib ;;
2153             -lavifil32)           echo vfw32.lib ;;
2154             -lavicap32)           echo vfw32.lib user32.lib ;;
2155             -l*)                  echo ${flag#-l}.lib ;;
2156             *)                    echo $flag ;;
2157         esac
2158     done
2159 }
2160
2161 pgi_flags(){
2162     for flag; do
2163         case $flag in
2164             -flto)                echo -Mipa=fast,libopt,libinline,vestigial ;;
2165             -fomit-frame-pointer) echo -Mnoframe ;;
2166             -g)                   echo -gopt ;;
2167             *)                    echo $flag ;;
2168         esac
2169     done
2170 }
2171
2172 suncc_flags(){
2173     for flag; do
2174         case $flag in
2175             -march=*|-mcpu=*)
2176                 case "${flag#*=}" in
2177                     native)                   echo -xtarget=native       ;;
2178                     v9|niagara)               echo -xarch=sparc          ;;
2179                     ultrasparc)               echo -xarch=sparcvis       ;;
2180                     ultrasparc3|niagara2)     echo -xarch=sparcvis2      ;;
2181                     i586|pentium)             echo -xchip=pentium        ;;
2182                     i686|pentiumpro|pentium2) echo -xtarget=pentium_pro  ;;
2183                     pentium3*|c3-2)           echo -xtarget=pentium3     ;;
2184                     pentium-m)          echo -xarch=sse2 -xchip=pentium3 ;;
2185                     pentium4*)          echo -xtarget=pentium4           ;;
2186                     prescott|nocona)    echo -xarch=sse3 -xchip=pentium4 ;;
2187                     *-sse3)             echo -xarch=sse3                 ;;
2188                     core2)              echo -xarch=ssse3 -xchip=core2   ;;
2189                     amdfam10|barcelona|bdver*) echo -xarch=sse4_1        ;;
2190                     athlon-4|athlon-[mx]p)    echo -xarch=ssea           ;;
2191                     k8|opteron|athlon64|athlon-fx)
2192                                               echo -xarch=sse2a          ;;
2193                     athlon*)                  echo -xarch=pentium_proa   ;;
2194                 esac
2195                 ;;
2196             -std=c99)             echo -xc99              ;;
2197             -fomit-frame-pointer) echo -xregs=frameptr    ;;
2198             -fPIC)                echo -KPIC -xcode=pic32 ;;
2199             -W*,*)                echo $flag              ;;
2200             -f*-*|-W*)                                    ;;
2201             *)                    echo $flag              ;;
2202         esac
2203     done
2204 }
2205
2206 tms470_flags(){
2207     for flag; do
2208         case $flag in
2209             -march=*|-mcpu=*)
2210                 case "${flag#*=}" in
2211                     armv7-a|cortex-a*)      echo -mv=7a8 ;;
2212                     armv7-r|cortex-r*)      echo -mv=7r4 ;;
2213                     armv7-m|cortex-m*)      echo -mv=7m3 ;;
2214                     armv6*|arm11*)          echo -mv=6   ;;
2215                     armv5*e|arm[79]*e*|arm9[24]6*|arm96*|arm102[26])
2216                                             echo -mv=5e  ;;
2217                     armv4*|arm7*|arm9[24]*) echo -mv=4   ;;
2218                 esac
2219                 ;;
2220             -mfpu=neon)     echo --float_support=vfpv3 --neon ;;
2221             -mfpu=vfp)      echo --float_support=vfpv2        ;;
2222             -mfpu=vfpv3)    echo --float_support=vfpv3        ;;
2223             -mfpu=vfpv3-d16) echo --float_support=vfpv3d16    ;;
2224             -msoft-float)   echo --float_support=vfplib       ;;
2225             -O[0-3]|-mf=*)  echo $flag                        ;;
2226             -g)             echo -g -mn                       ;;
2227             -pds=*)         echo $flag                        ;;
2228             -D*|-I*)        echo $flag                        ;;
2229             --gcc|--abi=*)  echo $flag                        ;;
2230             -me)            echo $flag                        ;;
2231         esac
2232     done
2233 }
2234
2235 probe_cc(){
2236     pfx=$1
2237     _cc=$2
2238
2239     unset _type _ident _cc_c _cc_e _cc_o _flags _cflags
2240     unset _ld_o _ldflags _ld_lib _ld_path
2241     unset _depflags _DEPCMD _DEPFLAGS
2242     _flags_filter=echo
2243
2244     if $_cc -v 2>&1 | grep -q '^gcc.*LLVM'; then
2245         _type=llvm_gcc
2246         gcc_extra_ver=$(expr "$($_cc --version | head -n1)" : '.*\((.*)\)')
2247         _ident="llvm-gcc $($_cc -dumpversion) $gcc_extra_ver"
2248         _depflags='-MMD -MF $(@:.o=.d) -MT $@'
2249         _cflags_speed='-O3'
2250         _cflags_size='-Os'
2251     elif $_cc -v 2>&1 | grep -qi ^gcc; then
2252         _type=gcc
2253         gcc_version=$($_cc --version | head -n1)
2254         gcc_basever=$($_cc -dumpversion)
2255         gcc_pkg_ver=$(expr "$gcc_version" : '[^ ]* \(([^)]*)\)')
2256         gcc_ext_ver=$(expr "$gcc_version" : ".*$gcc_pkg_ver $gcc_basever \\(.*\\)")
2257         _ident=$(cleanws "gcc $gcc_basever $gcc_pkg_ver $gcc_ext_ver")
2258         if ! $_cc -dumpversion | grep -q '^2\.'; then
2259             _depflags='-MMD -MF $(@:.o=.d) -MT $@'
2260         fi
2261         _cflags_speed='-O3'
2262         _cflags_size='-Os'
2263     elif $_cc --version 2>/dev/null | grep -q Intel; then
2264         _type=icc
2265         _ident=$($_cc --version | head -n1)
2266         _depflags='-MMD'
2267         _cflags_speed='-O3'
2268         _cflags_size='-Os'
2269         _cflags_noopt='-O1'
2270     elif $_cc -v 2>&1 | grep -q xlc; then
2271         _type=xlc
2272         _ident=$($_cc -qversion 2>/dev/null | head -n1)
2273         _cflags_speed='-O5'
2274         _cflags_size='-O5 -qcompact'
2275     elif $_cc -V 2>/dev/null | grep -q Compaq; then
2276         _type=ccc
2277         _ident=$($_cc -V | head -n1 | cut -d' ' -f1-3)
2278         _DEPFLAGS='-M'
2279         debuglevel=3
2280         _ldflags='-Wl,-z,now' # calls to libots crash without this
2281         _cflags_speed='-fast'
2282         _cflags_size='-O1'
2283     elif $_cc --vsn 2>/dev/null | grep -q "ARM C/C++ Compiler"; then
2284         test -d "$sysroot" || die "No valid sysroot specified."
2285         _type=armcc
2286         _ident=$($_cc --vsn | head -n1)
2287         armcc_conf="$PWD/armcc.conf"
2288         $_cc --arm_linux_configure                 \
2289              --arm_linux_config_file="$armcc_conf" \
2290              --configure_sysroot="$sysroot"        \
2291              --configure_cpp_headers="$sysinclude" >>$logfile 2>&1 ||
2292              die "Error creating armcc configuration file."
2293         $_cc --vsn | grep -q RVCT && armcc_opt=rvct || armcc_opt=armcc
2294         _flags="--arm_linux_config_file=$armcc_conf --translate_gcc"
2295         as_default="${cross_prefix}gcc"
2296         _depflags='-MMD'
2297         _cflags_speed='-O3'
2298         _cflags_size='-Os'
2299     elif $_cc -version 2>/dev/null | grep -Eq 'TMS470|TI ARM'; then
2300         _type=tms470
2301         _ident=$($_cc -version | head -n1 | tr -s ' ')
2302         _flags='--gcc --abi=eabi -me'
2303         _cc_e='-ppl -fe=$@'
2304         _cc_o='-fe=$@'
2305         _depflags='-ppa -ppd=$(@:.o=.d)'
2306         _cflags_speed='-O3 -mf=5'
2307         _cflags_size='-O3 -mf=2'
2308         _flags_filter=tms470_flags
2309     elif $_cc -v 2>&1 | grep -q clang; then
2310         _type=clang
2311         _ident=$($_cc --version | head -n1)
2312         _depflags='-MMD'
2313         _cflags_speed='-O3'
2314         _cflags_size='-Os'
2315     elif $_cc -V 2>&1 | grep -q Sun; then
2316         _type=suncc
2317         _ident=$($_cc -V 2>&1 | head -n1 | cut -d' ' -f 2-)
2318         _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "1s,^.*: ,$@: ," -e "\$$!s,\$$, \\\," -e "1!s,^.*: , ," > $(@:.o=.d)'
2319         _DEPFLAGS='-xM1 -xc99'
2320         _ldflags='-std=c99'
2321         _cflags_speed='-O5'
2322         _cflags_size='-O5 -xspace'
2323         _flags_filter=suncc_flags
2324     elif $_cc -v 2>&1 | grep -q 'PathScale\|Path64'; then
2325         _type=pathscale
2326         _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
2327         _depflags='-MMD -MF $(@:.o=.d) -MT $@'
2328         _cflags_speed='-O2'
2329         _cflags_size='-Os'
2330         _flags_filter='filter_out -Wdisabled-optimization'
2331     elif $_cc -v 2>&1 | grep -q Open64; then
2332         _type=open64
2333         _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
2334         _depflags='-MMD -MF $(@:.o=.d) -MT $@'
2335         _cflags_speed='-O2'
2336         _cflags_size='-Os'
2337         _flags_filter='filter_out -Wdisabled-optimization|-Wtype-limits|-fno-signed-zeros'
2338     elif $_cc -V 2>&1 | grep -q Portland; then
2339         _type=pgi
2340         _ident="PGI $($_cc -V 2>&1 | awk '/^pgcc/ { print $2; exit }')"
2341         opt_common='-alias=ansi -Mdse -Mlre -Mpre'
2342         _cflags_speed="-O3 -Mautoinline -Munroll=c:4 $opt_common"
2343         _cflags_size="-O2 -Munroll=c:1 $opt_common"
2344         _cflags_noopt="-O1"
2345         _flags_filter=pgi_flags
2346     elif $_cc 2>&1 | grep -q Microsoft; then
2347         _type=msvc
2348         _ident=$($cc 2>&1 | head -n1)
2349         _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< 2>&1 | awk '\''/including/ { sub(/^.*file: */, ""); gsub(/\\/, "/"); if (!match($$0, / /)) print "$@:", $$0 }'\'' > $(@:.o=.d)'
2350         _DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -showIncludes -Zs'
2351         _cflags_speed="-O2"
2352         _cflags_size="-O1"
2353         # Nonstandard output options, to avoid msys path conversion issues, relies on wrapper to remap it
2354         if $_cc 2>&1 | grep -q Linker; then
2355             _ld_o='-out $@'
2356         else
2357             _ld_o='-Fe$@'
2358         fi
2359         _cc_o='-Fo $@'
2360         _cc_e='-P -Fi $@'
2361         _flags_filter=msvc_flags
2362         _ld_lib='lib%.a'
2363         _ld_path='-libpath:'
2364         _flags='-nologo'
2365         _cflags='-D_USE_MATH_DEFINES -Dinline=__inline -FIstdlib.h -Dstrtoll=_strtoi64'
2366         if [ $pfx = hostcc ]; then
2367             append _cflags -Dsnprintf=_snprintf
2368         fi
2369     fi
2370
2371     eval ${pfx}_type=\$_type
2372     eval ${pfx}_ident=\$_ident
2373 }
2374
2375 set_ccvars(){
2376     eval ${1}_C=\${_cc_c-\${${1}_C}}
2377     eval ${1}_E=\${_cc_e-\${${1}_E}}
2378     eval ${1}_O=\${_cc_o-\${${1}_O}}
2379
2380     if [ -n "$_depflags" ]; then
2381         eval ${1}_DEPFLAGS=\$_depflags
2382     else
2383         eval ${1}DEP=\${_DEPCMD:-\$DEPCMD}
2384         eval ${1}DEP_FLAGS=\${_DEPFLAGS:-\$DEPFLAGS}
2385         eval DEP${1}FLAGS=\$_flags
2386     fi
2387 }
2388
2389 probe_cc cc "$cc"
2390 cflags_filter=$_flags_filter
2391 cflags_speed=$_cflags_speed
2392 cflags_size=$_cflags_size
2393 cflags_noopt=$_cflags_noopt
2394 add_cflags $_flags $_cflags
2395 cc_ldflags=$_ldflags
2396 set_ccvars CC
2397
2398 probe_cc hostcc "$host_cc"
2399 host_cflags_filter=$_flags_filter
2400 add_host_cflags  $_flags $_cflags
2401 set_ccvars HOSTCC
2402
2403 test -n "$cc_type" && enable $cc_type ||
2404     warn "Unknown C compiler $cc, unable to select optimal CFLAGS"
2405
2406 : ${as_default:=$cc}
2407 : ${dep_cc_default:=$cc}
2408 : ${ld_default:=$cc}
2409 : ${host_ld_default:=$host_cc}
2410 set_default ar as dep_cc ld host_ld
2411
2412 probe_cc as "$as"
2413 asflags_filter=$_flags_filter
2414 add_asflags $_flags $_cflags
2415 set_ccvars AS
2416
2417 probe_cc ld "$ld"
2418 ldflags_filter=$_flags_filter
2419 add_ldflags $_flags $_ldflags
2420 test "$cc_type" != "$ld_type" && add_ldflags $cc_ldflags
2421 LD_O=${_ld_o-$LD_O}
2422 LD_LIB=${_ld_lib-$LD_LIB}
2423 LD_PATH=${_ld_path-$LD_PATH}
2424
2425 probe_cc hostld "$host_ld"
2426 host_ldflags_filter=$_flags_filter
2427 add_host_ldflags $_flags $_ldflags
2428 HOSTLD_O=${_ld_o-$HOSTLD_O}
2429
2430 if [ -z "$CC_DEPFLAGS" ] && [ "$dep_cc" != "$cc" ]; then
2431     probe_cc depcc "$dep_cc"
2432     CCDEP=${_DEPCMD:-$DEPCMD}
2433     CCDEP_FLAGS=${_DEPFLAGS:=$DEPFLAGS}
2434     DEPCCFLAGS=$_flags
2435 fi
2436
2437 if $ar 2>&1 | grep -q Microsoft; then
2438     arflags="-nologo"
2439     ar_o='-out:$@'
2440 elif $ar 2>&1 | grep -q 'Texas Instruments'; then
2441     arflags="rq"
2442     ar_o='$@'
2443 else
2444     arflags="rc"
2445     ar_o='$@'
2446 fi
2447
2448 add_cflags $extra_cflags
2449 add_asflags $extra_cflags
2450
2451 if test -n "$sysroot"; then
2452     case "$cc_type" in
2453         gcc|llvm_gcc|clang)
2454             add_cppflags --sysroot="$sysroot"
2455             add_ldflags --sysroot="$sysroot"
2456         ;;
2457         tms470)
2458             add_cppflags -I"$sysinclude"
2459             add_ldflags  --sysroot="$sysroot"
2460         ;;
2461     esac
2462 fi
2463
2464 if test "$cpu" = host; then
2465     enabled cross_compile && die "--cpu=host makes no sense when cross-compiling."
2466
2467     case "$cc_type" in
2468         gcc|llvm_gcc)
2469             check_native(){
2470                 $cc $1=native -v -c -o $TMPO $TMPC >$TMPE 2>&1 || return
2471                 sed -n "/cc1.*$1=/{
2472                             s/.*$1=\\([^ ]*\\).*/\\1/
2473                             p
2474                             q
2475                         }" $TMPE
2476             }
2477             cpu=$(check_native -march || check_native -mcpu)
2478         ;;
2479     esac
2480
2481     test "${cpu:-host}" = host && die "--cpu=host not supported with compiler $cc"
2482 fi
2483
2484 # Deal with common $arch aliases
2485 case "$arch" in
2486     arm*)
2487         arch="arm"
2488     ;;
2489     mips|mipsel|IP*)
2490         arch="mips"
2491     ;;
2492     mips64*)
2493         arch="mips"
2494         subarch="mips64"
2495     ;;
2496     parisc|hppa)
2497         arch="parisc"
2498     ;;
2499     parisc64|hppa64)
2500         arch="parisc"
2501         subarch="parisc64"
2502     ;;
2503     "Power Macintosh"|ppc|powerpc)
2504         arch="ppc"
2505     ;;
2506     ppc64|powerpc64)
2507         arch="ppc"
2508         subarch="ppc64"
2509     ;;
2510     s390|s390x)
2511         arch="s390"
2512     ;;
2513     sh4|sh)
2514         arch="sh4"
2515     ;;
2516     sun4u|sparc64)
2517         arch="sparc"
2518         subarch="sparc64"
2519     ;;
2520     i[3-6]86|i86pc|BePC|x86pc|x86_64|amd64)
2521         arch="x86"
2522     ;;
2523 esac
2524
2525 is_in $arch $ARCH_LIST || warn "unknown architecture $arch"
2526 enable $arch
2527
2528 # Add processor-specific flags
2529 if test "$cpu" = generic; then
2530     : do nothing
2531 elif enabled ppc; then
2532
2533     case $(tolower $cpu) in
2534         601|ppc601|powerpc601)
2535             cpuflags="-mcpu=601"
2536             disable altivec
2537         ;;
2538         603*|ppc603*|powerpc603*)
2539             cpuflags="-mcpu=603"
2540             disable altivec
2541         ;;
2542         604*|ppc604*|powerpc604*)
2543             cpuflags="-mcpu=604"
2544             disable altivec
2545         ;;
2546         g3|75*|ppc75*|powerpc75*)
2547             cpuflags="-mcpu=750 -mpowerpc-gfxopt"
2548             disable altivec
2549         ;;
2550         g4|745*|ppc745*|powerpc745*)
2551             cpuflags="-mcpu=7450 -mpowerpc-gfxopt"
2552         ;;
2553         74*|ppc74*|powerpc74*)
2554             cpuflags="-mcpu=7400 -mpowerpc-gfxopt"
2555         ;;
2556         g5|970|ppc970|powerpc970)
2557             cpuflags="-mcpu=970 -mpowerpc-gfxopt -mpowerpc64"
2558         ;;
2559         power[3-7]*)
2560             cpuflags="-mcpu=$cpu -mpowerpc-gfxopt -mpowerpc64"
2561         ;;
2562         cell)
2563             cpuflags="-mcpu=cell"
2564             enable ldbrx
2565         ;;
2566         e500mc)
2567             cpuflags="-mcpu=e500mc"
2568             disable altivec
2569         ;;
2570         e500v2)
2571             cpuflags="-mcpu=8548 -mhard-float -mfloat-gprs=double"
2572             disable altivec
2573         ;;
2574         e500)
2575             cpuflags="-mcpu=8540 -mhard-float"
2576             disable altivec
2577         ;;
2578     esac
2579
2580 elif enabled x86; then
2581
2582     case $cpu in
2583         i[345]86|pentium)
2584             cpuflags="-march=$cpu"
2585             disable mmx
2586         ;;
2587         # targets that do NOT support conditional mov (cmov)
2588         pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3)
2589             cpuflags="-march=$cpu"
2590             disable cmov
2591         ;;
2592         # targets that do support conditional mov (cmov)
2593         i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64*|k8*|opteron*|athlon-fx|core2|amdfam10|barcelona|atom|bdver*)
2594             cpuflags="-march=$cpu"
2595             enable cmov
2596             enable fast_cmov
2597         ;;
2598         # targets that do support conditional mov but on which it's slow
2599         pentium4|pentium4m|prescott|nocona)
2600             cpuflags="-march=$cpu"
2601             enable cmov
2602             disable fast_cmov
2603         ;;
2604     esac
2605
2606 elif enabled sparc; then
2607
2608     case $cpu in
2609         niagara)
2610             cpuflags="-mcpu=$cpu"
2611             disable vis
2612         ;;
2613         sparc64)
2614             cpuflags="-mcpu=v9"
2615         ;;
2616     esac
2617
2618 elif enabled arm; then
2619
2620     case $cpu in
2621         armv*)
2622             cpuflags="-march=$cpu"
2623             subarch=$(echo $cpu | sed 's/[^a-z0-9]//g')
2624         ;;
2625         *)
2626             cpuflags="-mcpu=$cpu"
2627             case $cpu in
2628                 cortex-a*)                               subarch=armv7a  ;;
2629                 cortex-r*)                               subarch=armv7r  ;;
2630                 cortex-m*)                 enable thumb; subarch=armv7m  ;;
2631                 arm11*)                                  subarch=armv6   ;;
2632                 arm[79]*e*|arm9[24]6*|arm96*|arm102[26]) subarch=armv5te ;;
2633                 armv4*|arm7*|arm9[24]*)                  subarch=armv4   ;;
2634             esac
2635         ;;
2636     esac
2637
2638 elif enabled alpha; then
2639
2640     enabled ccc && cpuflags="-arch $cpu" || cpuflags="-mcpu=$cpu"
2641
2642 elif enabled bfin; then
2643
2644     cpuflags="-mcpu=$cpu"
2645
2646 elif enabled mips; then
2647
2648     cpuflags="-march=$cpu"
2649
2650 elif enabled avr32; then
2651
2652     case $cpu in
2653         ap7[02]0[0-2])
2654             subarch="avr32_ap"
2655             cpuflags="-mpart=$cpu"
2656         ;;
2657         ap)
2658             subarch="avr32_ap"
2659             cpuflags="-march=$cpu"
2660         ;;
2661         uc3[ab]*)
2662             subarch="avr32_uc"
2663             cpuflags="-mcpu=$cpu"
2664         ;;
2665         uc)
2666             subarch="avr32_uc"
2667             cpuflags="-march=$cpu"
2668         ;;
2669     esac
2670
2671 fi
2672
2673 add_cflags $cpuflags
2674 add_asflags $cpuflags
2675
2676 # compiler sanity check
2677 check_exec <<EOF
2678 int main(void){ return 0; }
2679 EOF
2680 if test "$?" != 0; then
2681     echo "$cc is unable to create an executable file."
2682     if test -z "$cross_prefix" && ! enabled cross_compile ; then
2683         echo "If $cc is a cross-compiler, use the --enable-cross-compile option."
2684         echo "Only do this if you know what cross compiling means."
2685     fi
2686     die "C compiler test failed."
2687 fi
2688
2689 add_cppflags -D_ISOC99_SOURCE
2690 check_cflags -std=c99
2691 check_cc -D_FILE_OFFSET_BITS=64 <<EOF && add_cppflags -D_FILE_OFFSET_BITS=64
2692 #include <stdlib.h>
2693 EOF
2694 check_cc -D_LARGEFILE_SOURCE <<EOF && add_cppflags -D_LARGEFILE_SOURCE
2695 #include <stdlib.h>
2696 EOF
2697
2698 check_host_cflags -std=c99
2699 check_host_cflags -Wall
2700
2701 case "$arch" in
2702     alpha|ia64|mips|parisc|sparc)
2703         spic=$shared
2704     ;;
2705     x86)
2706         subarch="x86_32"
2707         check_code cc "" "int test[(int)sizeof(char*) - 7]" && subarch="x86_64"
2708         if test "$subarch" = "x86_64"; then
2709             spic=$shared
2710         fi
2711     ;;
2712 esac
2713
2714 enable $subarch
2715 enabled spic && enable pic
2716
2717 # OS specific
2718 case $target_os in
2719     haiku)
2720         prefix_default="/boot/common"
2721         network_extralibs="-lnetwork"
2722         host_libs=
2723         ;;
2724     sunos)
2725         AVSERVERLDFLAGS=""
2726         SHFLAGS='-shared -Wl,-h,$$(@F)'
2727         enabled x86 && SHFLAGS="-mimpure-text $SHFLAGS"
2728         network_extralibs="-lsocket -lnsl"
2729         add_cppflags -D__EXTENSIONS__ -D_XOPEN_SOURCE=600
2730         # When using suncc to build, the Solaris linker will mark
2731         # an executable with each instruction set encountered by
2732         # the Solaris assembler.  As our libraries contain their own
2733         # guards for processor-specific code, instead suppress
2734         # generation of the HWCAPS ELF section on Solaris x86 only.
2735         enabled_all suncc x86 && echo "hwcap_1 = OVERRIDE;" > mapfile && add_ldflags -Wl,-M,mapfile
2736         nm_default='nm -P -g'
2737         ;;
2738     netbsd)
2739         disable symver
2740         oss_indev_extralibs="-lossaudio"
2741         oss_outdev_extralibs="-lossaudio"
2742         ;;
2743     openbsd|bitrig)
2744         # On OpenBSD 4.5. the compiler does not use PIC unless
2745         # explicitly using -fPIC. Libav builds fine without PIC,
2746         # however the generated executable will not do anything
2747         # (simply quits with exit-code 1, no crash, no output).
2748         # Thus explicitly enable PIC here.
2749         enable pic
2750         disable symver
2751         SHFLAGS='-shared'
2752         SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBVERSION)'
2753         SLIB_INSTALL_LINKS=
2754         oss_indev_extralibs="-lossaudio"
2755         oss_outdev_extralibs="-lossaudio"
2756         ;;
2757     dragonfly)
2758         disable symver
2759         ;;
2760     freebsd)
2761         ;;
2762     bsd/os)
2763         add_extralibs -lpoll -lgnugetopt
2764         ;;
2765     darwin)
2766         gas="gas-preprocessor.pl $cc"
2767         enabled ppc && add_asflags -force_cpusubtype_ALL
2768         SHFLAGS='-dynamiclib -Wl,-single_module -Wl,-install_name,$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR)'
2769         enabled x86_32 && append SHFLAGS -Wl,-read_only_relocs,suppress
2770         add_ldflags -Wl,-dynamic,-search_paths_first
2771         SLIBSUF=".dylib"
2772         SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME).$(LIBVERSION)$(SLIBSUF)'
2773         SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME).$(LIBMAJOR)$(SLIBSUF)'
2774         AVSERVERLDFLAGS=-Wl,-bind_at_load
2775         objformat="macho"
2776         enabled x86_64 && objformat="macho64"
2777         enabled_any pic shared ||
2778             { check_cflags -mdynamic-no-pic && add_asflags -mdynamic-no-pic; }
2779         ;;
2780     mingw32*)
2781         if test $target_os = "mingw32ce"; then
2782             disable network
2783         else
2784             target_os=mingw32
2785         fi
2786         LIBTARGET=i386
2787         if enabled x86_64; then
2788             LIBTARGET="i386:x86-64"
2789         elif enabled arm; then
2790             LIBTARGET=arm-wince
2791         fi
2792         shlibdir_default="$bindir_default"
2793         SLIBPREF=""
2794         SLIBSUF=".dll"
2795         SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
2796         SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
2797         SLIB_EXTRA_CMD=-'$(DLLTOOL) -m $(LIBTARGET) -d $$(@:$(SLIBSUF)=.def) -l $(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib) -D $(SLIBNAME_WITH_MAJOR)'
2798         SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
2799         SLIB_INSTALL_LINKS=
2800         SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
2801         SLIB_INSTALL_EXTRA_LIB='lib$(SLIBNAME:$(SLIBSUF)=.dll.a) $(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
2802         SHFLAGS='-shared -Wl,--output-def,$$(@:$(SLIBSUF)=.def) -Wl,--out-implib,$(SUBDIR)lib$(SLIBNAME:$(SLIBSUF)=.dll.a) -Wl,--enable-runtime-pseudo-reloc -Wl,--enable-auto-image-base'
2803         objformat="win32"
2804         dlltool="${cross_prefix}dlltool"
2805         ranlib=:
2806         enable dos_paths
2807         add_cppflags -U__STRICT_ANSI__
2808         ;;
2809     cygwin*)
2810         target_os=cygwin
2811         shlibdir_default="$bindir_default"
2812         SLIBPREF="cyg"
2813         SLIBSUF=".dll"
2814         SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
2815         SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
2816         SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
2817         SLIB_INSTALL_LINKS=
2818         SLIB_INSTALL_EXTRA_LIB='lib$(FULLNAME).dll.a'
2819         SHFLAGS='-shared -Wl,--out-implib,$(SUBDIR)lib$(FULLNAME).dll.a'
2820         objformat="win32"
2821         enable dos_paths
2822         add_cppflags -U__STRICT_ANSI__
2823         ;;
2824     *-dos|freedos|opendos)
2825         network_extralibs="-lsocket"
2826         objformat="coff"
2827         enable dos_paths
2828         add_cppflags -U__STRICT_ANSI__
2829         ;;
2830     linux)
2831         add_cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
2832         enable dv1394
2833         ;;
2834     irix*)
2835         target_os=irix
2836         ranlib="echo ignoring ranlib"
2837         ;;
2838     os/2*)
2839         ln_s="cp -f"
2840         objformat="aout"
2841         add_cppflags -D_GNU_SOURCE
2842         add_ldflags -Zomf -Zbin-files -Zargs-wild -Zmap
2843         SHFLAGS='$(SUBDIR)$(NAME).def -Zdll -Zomf'
2844         AVSERVERLDFLAGS=""
2845         LIBSUF="_s.a"
2846         SLIBPREF=""
2847         SLIBSUF=".dll"
2848         SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
2849         SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(shell echo $(NAME) | cut -c1-6)$(LIBMAJOR)$(SLIBSUF)'
2850         SLIB_CREATE_DEF_CMD='echo LIBRARY $(SLIBNAME_WITH_MAJOR) INITINSTANCE TERMINSTANCE > $(SUBDIR)$(NAME).def; \
2851             echo PROTMODE >> $(SUBDIR)$(NAME).def; \
2852             echo CODE PRELOAD MOVEABLE DISCARDABLE >> $(SUBDIR)$(NAME).def; \
2853             echo DATA PRELOAD MOVEABLE MULTIPLE NONSHARED >> $(SUBDIR)$(NAME).def; \
2854             echo EXPORTS >> $(SUBDIR)$(NAME).def; \
2855             emxexp -o $(OBJS) >> $(SUBDIR)$(NAME).def'
2856         SLIB_EXTRA_CMD='emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(NAME).def; \
2857             emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib $(SUBDIR)$(NAME).def;'
2858         SLIB_INSTALL_EXTRA_LIB='$(LIBPREF)$(NAME)_dll.a $(LIBPREF)$(NAME)_dll.lib'
2859         enable dos_paths
2860         ;;
2861     gnu/kfreebsd)
2862         add_cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600 -D_BSD_SOURCE
2863         ;;
2864     gnu)
2865         add_cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
2866         ;;
2867     qnx)
2868         add_cppflags -D_QNX_SOURCE
2869         network_extralibs="-lsocket"
2870         ;;
2871     symbian)
2872         SLIBSUF=".dll"
2873         enable dos_paths
2874         add_cflags --include=$sysinclude/gcce/gcce.h -fvisibility=default
2875         add_cppflags -D__GCCE__ -D__SYMBIAN32__ -DSYMBIAN_OE_POSIX_SIGNALS
2876         add_ldflags -Wl,--target1-abs,--no-undefined \
2877                     -Wl,-Ttext,0x80000,-Tdata,0x1000000 -shared \
2878                     -Wl,--entry=_E32Startup -Wl,-u,_E32Startup
2879         add_extralibs -l:eexe.lib -l:usrt2_2.lib -l:dfpaeabi.dso \
2880                       -l:drtaeabi.dso -l:scppnwdl.dso -lsupc++ -lgcc \
2881                       -l:libc.dso -l:libm.dso -l:euser.dso -l:libcrt0.lib
2882         ;;
2883     osf1)
2884         add_cppflags -D_OSF_SOURCE -D_POSIX_PII -D_REENTRANT
2885         AVSERVERLDFLAGS=
2886         ;;
2887     minix)
2888         ;;
2889     none)
2890         ;;
2891     *)
2892         die "Unknown OS '$target_os'."
2893         ;;
2894 esac
2895
2896 # determine libc flavour
2897
2898 if check_cpp_condition features.h "defined __UCLIBC__"; then
2899     libc_type=uclibc
2900 elif check_cpp_condition features.h "defined __GLIBC__"; then
2901     libc_type=glibc
2902 elif check_header _mingw.h; then
2903     libc_type=mingw
2904     check_cpp_condition _mingw.h \
2905         "defined (__MINGW64_VERSION_MAJOR) || (__MINGW32_MAJOR_VERSION > 3) || \
2906             (__MINGW32_MAJOR_VERSION == 3 && __MINGW32_MINOR_VERSION >= 15)" ||
2907         die "ERROR: MinGW runtime version must be >= 3.15."
2908 elif check_cpp_condition newlib.h "defined _NEWLIB_VERSION"; then
2909     libc_type=newlib
2910 elif check_func_headers stdlib.h _get_doserrno; then
2911     libc_type=msvcrt
2912     add_cflags -Dstrtod=avpriv_strtod
2913     add_cflags -Dsnprintf=avpriv_snprintf   \
2914                -D_snprintf=avpriv_snprintf  \
2915                -Dvsnprintf=avpriv_vsnprintf
2916 elif check_cpp_condition stddef.h "defined __KLIBC__"; then
2917     libc_type=klibc
2918 fi
2919
2920 test -n "$libc_type" && enable $libc_type
2921
2922 # hacks for compiler/libc/os combinations
2923
2924 if enabled_all tms470 glibc; then
2925     CPPFLAGS="-I${source_path}/compat/tms470 ${CPPFLAGS}"
2926     add_cppflags -D__USER_LABEL_PREFIX__=
2927     add_cppflags -D__builtin_memset=memset
2928     add_cppflags -D__gnuc_va_list=va_list -D_VA_LIST_DEFINED
2929     add_cflags   -pds=48    # incompatible redefinition of macro
2930 fi
2931
2932 esc(){
2933     echo "$*" | sed 's/%/%25/g;s/:/%3a/g'
2934 }
2935
2936 echo "config:$arch:$subarch:$cpu:$target_os:$(esc $cc_ident):$(esc $LIBAV_CONFIGURATION)" >config.fate
2937
2938 check_cpp_condition stdlib.h "defined(__PIC__) || defined(__pic__) || defined(PIC)" && enable pic
2939
2940 set_default $PATHS_LIST
2941 set_default nm
2942
2943 # we need to build at least one lib type
2944 if ! enabled_any static shared; then
2945     cat <<EOF
2946 At least one library type must be built.
2947 Specify --enable-static to build the static libraries or --enable-shared to
2948 build the shared libraries as well. To only build the shared libraries specify
2949 --disable-static in addition to --enable-shared.
2950 EOF
2951     exit 1;
2952 fi
2953
2954 die_license_disabled() {
2955     enabled $1 || { enabled $2 && die "$2 is $1 and --enable-$1 is not specified."; }
2956 }
2957
2958 die_license_disabled gpl libcdio
2959 die_license_disabled gpl libx264
2960 die_license_disabled gpl libxavs
2961 die_license_disabled gpl libxvid
2962 die_license_disabled gpl x11grab
2963
2964 die_license_disabled nonfree libfaac
2965 die_license_disabled nonfree libfdk_aac
2966 die_license_disabled nonfree openssl
2967
2968 die_license_disabled version3 libopencore_amrnb
2969 die_license_disabled version3 libopencore_amrwb
2970 die_license_disabled version3 libvo_aacenc
2971 die_license_disabled version3 libvo_amrwbenc
2972
2973 enabled version3 && { enabled gpl && enable gplv3 || enable lgplv3; }
2974
2975 disabled optimizations || check_cflags -fomit-frame-pointer
2976
2977 enable_pic() {
2978     enable pic
2979     add_cppflags -DPIC
2980     add_cflags   -fPIC
2981     add_asflags  -fPIC
2982 }
2983
2984 enabled pic && enable_pic
2985
2986 check_cc <<EOF || die "Symbol mangling check failed."
2987 int ff_extern;
2988 EOF
2989 sym=$($nm $TMPO | awk '/ff_extern/{ print substr($0, match($0, /[^ \t]*ff_extern/)) }')
2990 extern_prefix=${sym%%ff_extern*}
2991
2992 check_cc <<EOF && enable_weak inline_asm
2993 void foo(void) { __asm__ volatile ("" ::); }
2994 EOF
2995
2996 _restrict=
2997 for restrict_keyword in restrict __restrict__ __restrict; do
2998     check_cc <<EOF && _restrict=$restrict_keyword && break
2999 void foo(char * $restrict_keyword p);
3000 EOF
3001 done
3002
3003 check_cc <<EOF && enable attribute_packed
3004 struct { int x; } __attribute__((packed)) x;
3005 EOF
3006
3007 check_cc <<EOF && enable attribute_may_alias
3008 union { int x; } __attribute__((may_alias)) x;
3009 EOF
3010
3011 check_cc <<EOF || die "endian test failed"
3012 unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
3013 EOF
3014 od -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian
3015
3016 if enabled alpha; then
3017
3018     check_cflags -mieee
3019
3020 elif enabled arm; then
3021
3022     enabled thumb && check_cflags -mthumb || check_cflags -marm
3023     nogas=die
3024
3025     if     check_cpp_condition stddef.h "defined __ARM_PCS_VFP"; then
3026         enable vfp_args
3027     elif ! check_cpp_condition stddef.h "defined __ARM_PCS || defined __SOFTFP__"; then
3028         case "${cross_prefix:-$cc}" in
3029             *hardfloat*)         enable vfp_args;   fpabi=vfp ;;
3030             *) check_ld <<EOF && enable vfp_args && fpabi=vfp || fpabi=soft ;;
3031 __asm__ (".eabi_attribute 28, 1");
3032 int main(void) { return 0; }
3033 EOF
3034         esac
3035         warn "Compiler does not indicate floating-point ABI, guessing $fpabi."
3036     fi
3037
3038     enabled armv5te && check_inline_asm armv5te '"qadd r0, r0, r0"'
3039     enabled armv6   && check_inline_asm armv6   '"sadd16 r0, r0, r0"'
3040     enabled armv6t2 && check_inline_asm armv6t2 '"movt r0, #0"'
3041     enabled armvfp  && check_inline_asm armvfp  '"fadds s0, s0, s0"'
3042     enabled neon    && check_inline_asm neon    '"vadd.i16 q0, q0, q0"'
3043     enabled vfpv3   && check_inline_asm vfpv3   '"vmov.f32 s0, #1.0"'
3044
3045     check_inline_asm asm_mod_q '"add r0, %Q0, %R0" :: "r"((long long)0)'
3046     check_inline_asm asm_mod_y '"vmul.i32 d0, d0, %y0" :: "x"(0)'
3047
3048     enabled_all armv6t2 shared !pic && enable_pic
3049
3050 elif enabled mips; then
3051
3052     check_inline_asm loongson '"dmult.g $1, $2, $3"'
3053
3054 elif enabled ppc; then
3055
3056     enable local_aligned_8 local_aligned_16
3057
3058     check_inline_asm dcbzl     '"dcbzl 0, %0" :: "r"(0)'
3059     check_inline_asm ibm_asm   '"add 0, 0, 0"'
3060     check_inline_asm ppc4xx    '"maclhw r10, r11, r12"'
3061     check_inline_asm xform_asm '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)'
3062
3063     # AltiVec flags: The FSF version of GCC differs from the Apple version
3064     if enabled altivec; then
3065         nogas=warn
3066         check_cflags -maltivec -mabi=altivec &&
3067         { check_header altivec.h && inc_altivec_h="#include <altivec.h>" ; } ||
3068         check_cflags -faltivec
3069
3070         # check if our compiler supports Motorola AltiVec C API
3071         check_cc <<EOF || disable altivec
3072 $inc_altivec_h
3073 int main(void) {
3074     vector signed int v1 = (vector signed int) { 0 };
3075     vector signed int v2 = (vector signed int) { 1 };
3076     v1 = vec_add(v1, v2);
3077     return 0;
3078 }
3079 EOF
3080
3081         enabled altivec || warn "Altivec disabled, possibly missing --cpu flag"
3082     fi
3083
3084 elif enabled sparc; then
3085
3086     enabled vis &&
3087         check_inline_asm vis '"pdist %f0, %f0, %f0"' -mcpu=ultrasparc &&
3088             add_cflags -mcpu=ultrasparc -mtune=ultrasparc
3089
3090 elif enabled x86; then
3091
3092     check_code ld intrin.h "__rdtsc()" && enable rdtsc
3093
3094     check_code ld mmintrin.h "_mm_empty()" && enable mm_empty
3095
3096     enable local_aligned_8 local_aligned_16
3097
3098     # check whether EBP is available on x86
3099     # As 'i' is stored on the stack, this program will crash
3100     # if the base pointer is used to access it because the
3101     # base pointer is cleared in the inline assembly code.
3102     check_exec_crash <<EOF && enable ebp_available
3103 volatile int i=0;
3104 __asm__ volatile ("xorl %%ebp, %%ebp" ::: "%ebp");
3105 return i;
3106 EOF
3107
3108     # check whether EBX is available on x86
3109     check_inline_asm ebx_available '""::"b"(0)' &&
3110         check_inline_asm ebx_available '"":::"%ebx"'
3111
3112     # check whether xmm clobbers are supported
3113     check_inline_asm xmm_clobbers '"":::"%xmm0"'
3114
3115     # check whether binutils is new enough to compile SSSE3/MMXEXT
3116     enabled ssse3  && check_inline_asm ssse3_inline  '"pabsw %xmm0, %xmm0"'
3117     enabled mmxext && check_inline_asm mmxext_inline '"pmaxub %mm0, %mm1"'
3118
3119     if ! disabled_any asm mmx yasm; then
3120         if check_cmd $yasmexe --version; then
3121             enabled x86_64 && yasm_extra="-m amd64"
3122             yasm_debug="-g dwarf2"
3123         elif check_cmd nasm -v; then
3124             yasmexe=nasm
3125             yasm_debug="-g -F dwarf"
3126             enabled x86_64 && test "$objformat" = elf && objformat=elf64
3127         fi
3128
3129         YASMFLAGS="-f $objformat $yasm_extra"
3130         enabled pic               && append YASMFLAGS "-DPIC"
3131         test -n "$extern_prefix"  && append YASMFLAGS "-DPREFIX"
3132         case "$objformat" in
3133             elf*) enabled debug && append YASMFLAGS $yasm_debug ;;
3134         esac
3135
3136         check_yasm "pextrd [eax], xmm0, 1" && enable yasm ||
3137             die "yasm not found, use --disable-yasm for a crippled build"
3138         check_yasm "vextractf128 xmm0, ymm0, 0"      || disable avx_external
3139         check_yasm "vfmaddps ymm0, ymm1, ymm2, ymm3" || disable fma4_external
3140         check_yasm "CPU amdnop" && enable cpunop
3141     fi
3142
3143     case "$cpu" in
3144         athlon*|opteron*|k8*|pentium|pentium-mmx|prescott|nocona|atom|geode)
3145             disable fast_clz
3146         ;;
3147     esac
3148
3149 fi
3150
3151 if enabled asm; then
3152     as=${gas:=$as}
3153     check_inline_asm gnu_as '".macro m n\n\\n:.int 0\n.endm\nm x"' ||
3154         $nogas "GNU assembler not found, install gas-preprocessor"
3155 fi
3156
3157 check_ldflags -Wl,--as-needed
3158
3159 if check_func dlopen; then
3160     ldl=
3161 elif check_func dlopen -ldl; then
3162     ldl=-ldl
3163 fi
3164
3165 if enabled network; then
3166     check_type "sys/types.h sys/socket.h" socklen_t
3167     check_type netdb.h "struct addrinfo"
3168     check_type netinet/in.h "struct group_source_req" -D_BSD_SOURCE
3169     check_type netinet/in.h "struct ip_mreq_source" -D_BSD_SOURCE
3170     check_type netinet/in.h "struct ipv6_mreq" -D_DARWIN_C_SOURCE
3171     check_type netinet/in.h "struct sockaddr_in6"
3172     check_type poll.h "struct pollfd"
3173     check_type "sys/types.h sys/socket.h" "struct sockaddr_storage"
3174     check_struct "sys/types.h sys/socket.h" "struct sockaddr" sa_len
3175     check_type netinet/sctp.h "struct sctp_event_subscribe"
3176     check_func getaddrinfo $network_extralibs
3177     # Prefer arpa/inet.h over winsock2
3178     if check_header arpa/inet.h ; then
3179         check_func closesocket
3180     elif check_header winsock2.h ; then
3181         check_func_headers winsock2.h closesocket -lws2 &&
3182             network_extralibs="-lws2" ||
3183         { check_func_headers winsock2.h closesocket -lws2_32 &&
3184             network_extralibs="-lws2_32"; }
3185         check_func_headers ws2tcpip.h getaddrinfo $network_extralibs
3186         check_type ws2tcpip.h socklen_t
3187         check_type ws2tcpip.h "struct addrinfo"
3188         check_type ws2tcpip.h "struct group_source_req"
3189         check_type ws2tcpip.h "struct ip_mreq_source"
3190         check_type ws2tcpip.h "struct ipv6_mreq"
3191         check_type winsock2.h "struct pollfd"
3192         check_type ws2tcpip.h "struct sockaddr_in6"
3193         check_type ws2tcpip.h "struct sockaddr_storage"
3194         check_struct winsock2.h "struct sockaddr" sa_len
3195     else
3196         disable network
3197     fi
3198 fi
3199
3200 # Solaris has nanosleep in -lrt, OpenSolaris no longer needs that
3201 check_func nanosleep || { check_func nanosleep -lrt && add_extralibs -lrt; }
3202
3203 check_func  fcntl
3204 check_func  fork
3205 check_func  gethrtime
3206 check_func  getopt
3207 check_func  getrusage
3208 check_struct "sys/time.h sys/resource.h" "struct rusage" ru_maxrss
3209 check_func  gettimeofday
3210 check_func  inet_aton $network_extralibs
3211 check_func  isatty
3212 check_func  localtime_r
3213 check_func  ${malloc_prefix}memalign            && enable memalign
3214 check_func  mkstemp
3215 check_func  mmap
3216 check_func  mprotect
3217 check_func  ${malloc_prefix}posix_memalign      && enable posix_memalign
3218 check_func_headers malloc.h _aligned_malloc     && enable aligned_malloc
3219 check_func  setrlimit
3220 check_func  strerror_r
3221 check_func  strptime
3222 check_func  strtok_r
3223 check_func  sched_getaffinity
3224 check_func  sysconf
3225 check_func  sysctl
3226 check_func  usleep
3227 check_func_headers io.h setmode
3228 check_lib2 "windows.h shellapi.h" CommandLineToArgvW -lshell32
3229 check_lib2 "windows.h wincrypt.h" CryptGenRandom -ladvapi32
3230 check_lib2 "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
3231 check_func_headers windows.h GetProcessAffinityMask
3232 check_func_headers windows.h GetProcessTimes
3233 check_func_headers windows.h GetSystemTimeAsFileTime
3234 check_func_headers windows.h MapViewOfFile
3235 check_func_headers windows.h Sleep
3236 check_func_headers windows.h VirtualAlloc
3237
3238 check_header direct.h
3239 check_header dlfcn.h
3240 check_header dxva.h
3241 check_header dxva2api.h
3242 check_header io.h
3243 check_header malloc.h
3244 check_header poll.h
3245 check_header sys/mman.h
3246 check_header sys/param.h
3247 check_header sys/resource.h
3248 check_header sys/select.h
3249 check_header sys/time.h
3250 check_header unistd.h
3251 check_header vdpau/vdpau.h
3252 check_header vdpau/vdpau_x11.h
3253 check_header windows.h
3254 check_header X11/extensions/XvMClib.h
3255
3256 disabled  zlib || check_lib   zlib.h      zlibVersion -lz   || disable  zlib
3257 disabled bzlib || check_lib2 bzlib.h BZ2_bzlibVersion -lbz2 || disable bzlib
3258
3259 if ! disabled w32threads && ! enabled pthreads; then
3260     check_func _beginthreadex && enable w32threads
3261 fi
3262
3263 # check for some common methods of building with pthread support
3264 # do this before the optional library checks as some of them require pthreads
3265 if ! disabled pthreads && ! enabled w32threads; then
3266     enable pthreads
3267     if check_func pthread_create; then
3268         :
3269     elif check_func pthread_create -pthread; then
3270         add_cflags -pthread
3271         add_extralibs -pthread
3272     elif check_func pthread_create -pthreads; then
3273         add_cflags -pthreads
3274         add_extralibs -pthreads
3275     elif check_func pthread_create -lpthreadGC2; then
3276         add_extralibs -lpthreadGC2
3277     elif ! check_lib pthread.h pthread_create -lpthread; then
3278         disable pthreads
3279     fi
3280 fi
3281
3282 for thread in $THREADS_LIST; do
3283     if enabled $thread; then
3284         test -n "$thread_type" &&
3285             die "ERROR: Only one thread type must be selected." ||
3286             thread_type="$thread"
3287     fi
3288 done
3289
3290 check_lib math.h sin -lm && LIBM="-lm"
3291 enabled vaapi && require vaapi va/va.h vaInitialize -lva
3292
3293 check_mathfunc cbrtf
3294 check_mathfunc exp2
3295 check_mathfunc exp2f
3296 check_mathfunc isinf
3297 check_mathfunc isnan
3298 check_mathfunc llrint
3299 check_mathfunc llrintf
3300 check_mathfunc log2
3301 check_mathfunc log2f
3302 check_mathfunc lrint
3303 check_mathfunc lrintf
3304 check_mathfunc rint
3305 check_mathfunc round
3306 check_mathfunc roundf
3307 check_mathfunc trunc
3308 check_mathfunc truncf
3309
3310 # these are off by default, so fail if requested and not available
3311 enabled avisynth   && require2 vfw32 "windows.h vfw.h" AVIFileInit -lavifil32
3312 enabled frei0r     && { check_header frei0r.h || die "ERROR: frei0r.h header not found"; }
3313 enabled gnutls     && require_pkg_config gnutls gnutls/gnutls.h gnutls_global_init
3314 enabled libfaac    && require2 libfaac "stdint.h faac.h" faacEncGetVersion -lfaac
3315 enabled libfdk_aac && require  libfdk_aac fdk-aac/aacenc_lib.h aacEncOpen -lfdk-aac
3316 enabled libfreetype && require_pkg_config freetype2 "ft2build.h freetype/freetype.h" FT_Init_FreeType
3317 enabled libgsm     && require  libgsm gsm/gsm.h gsm_create -lgsm
3318 enabled libilbc    && require  libilbc ilbc.h WebRtcIlbcfix_InitDecode -lilbc
3319 enabled libmp3lame && require  "libmp3lame >= 3.98.3" lame/lame.h lame_set_VBR_quality -lmp3lame
3320 enabled libopencore_amrnb  && require libopencore_amrnb opencore-amrnb/interf_dec.h Decoder_Interface_init -lopencore-amrnb
3321 enabled libopencore_amrwb  && require libopencore_amrwb opencore-amrwb/dec_if.h D_IF_init -lopencore-amrwb
3322 enabled libopencv  && require_pkg_config opencv opencv/cv.h cvCreateImageHeader
3323 enabled libopenjpeg && require libopenjpeg openjpeg.h opj_version -lopenjpeg
3324 enabled libopus    && require_pkg_config opus opus_multistream.h opus_multistream_decoder_create
3325 enabled libpulse && require_pkg_config libpulse-simple pulse/simple.h pa_simple_new
3326 enabled librtmp    && require_pkg_config librtmp librtmp/rtmp.h RTMP_Socket
3327 enabled libschroedinger && require_pkg_config schroedinger-1.0 schroedinger/schro.h schro_init
3328 enabled libspeex   && require  libspeex speex/speex.h speex_decoder_init -lspeex
3329 enabled libtheora  && require  libtheora theora/theoraenc.h th_info_init -ltheoraenc -ltheoradec -logg
3330 enabled libvo_aacenc && require libvo_aacenc vo-aacenc/voAAC.h voGetAACEncAPI -lvo-aacenc
3331 enabled libvo_amrwbenc && require libvo_amrwbenc vo-amrwbenc/enc_if.h E_IF_init -lvo-amrwbenc
3332 enabled libvorbis  && require  libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbisenc -lvorbis -logg
3333 enabled libvpx     && {
3334     enabled libvpx_decoder && { check_lib2 "vpx/vpx_decoder.h vpx/vp8dx.h" vpx_codec_dec_init_ver -lvpx ||
3335                                 die "ERROR: libvpx decoder version must be >=0.9.1"; }
3336     enabled libvpx_encoder && { check_lib2 "vpx/vpx_encoder.h vpx/vp8cx.h" vpx_codec_enc_init_ver -lvpx ||
3337                                 die "ERROR: libvpx encoder version must be >=0.9.1"; } }
3338 enabled libx264    && require  libx264 x264.h x264_encoder_encode -lx264 &&
3339                       { check_cpp_condition x264.h "X264_BUILD >= 118" ||
3340                         die "ERROR: libx264 version must be >= 0.118."; }
3341 enabled libxavs    && require  libxavs xavs.h xavs_encoder_encode -lxavs
3342 enabled libxvid    && require  libxvid xvid.h xvid_global -lxvidcore
3343 enabled openssl    && { check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto ||
3344                         check_lib openssl/ssl.h SSL_library_init -lssl32 -leay32 ||
3345                         check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto -lws2_32 -lgdi32 ||
3346                         die "ERROR: openssl not found"; }
3347
3348 if enabled gnutls; then
3349     { check_lib nettle/bignum.h nettle_mpz_get_str_256 -lnettle -lhogweed -lgmp && enable nettle; } ||
3350     { check_lib gcrypt.h gcry_mpi_new -lgcrypt && enable gcrypt; }
3351 fi
3352
3353 # libdc1394 check
3354 if enabled libdc1394; then
3355     { check_lib dc1394/dc1394.h dc1394_new -ldc1394 -lraw1394 &&
3356         enable libdc1394_2; } ||
3357     { check_lib libdc1394/dc1394_control.h dc1394_create_handle -ldc1394_control -lraw1394 &&
3358         enable libdc1394_1; } ||
3359     die "ERROR: No version of libdc1394 found "
3360 fi
3361
3362 if check_pkg_config sdl SDL_events.h SDL_PollEvent; then
3363     check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
3364     enable sdl &&
3365     check_struct SDL.h SDL_VideoInfo current_w $sdl_cflags && enable sdl_video_size
3366 fi
3367
3368 texi2html -version > /dev/null 2>&1 && enable texi2html || disable texi2html
3369
3370 check_header linux/fb.h
3371 check_header linux/videodev2.h
3372 check_struct linux/videodev2.h "struct v4l2_frmivalenum" discrete
3373
3374 check_header sys/videoio.h
3375
3376 check_func_headers "windows.h vfw.h" capCreateCaptureWindow "$vfwcap_indev_extralibs"
3377 # check that WM_CAP_DRIVER_CONNECT is defined to the proper value
3378 # w32api 3.12 had it defined wrong
3379 check_cpp_condition vfw.h "WM_CAP_DRIVER_CONNECT > WM_USER" && enable vfwcap_defines
3380
3381 # check for ioctl_meteor.h, ioctl_bt848.h and alternatives
3382 { check_header dev/bktr/ioctl_meteor.h &&
3383   check_header dev/bktr/ioctl_bt848.h; } ||
3384 { check_header machine/ioctl_meteor.h &&
3385   check_header machine/ioctl_bt848.h; } ||
3386 { check_header dev/video/meteor/ioctl_meteor.h &&
3387   check_header dev/video/bktr/ioctl_bt848.h; } ||
3388 check_header dev/ic/bt8xx.h
3389
3390 check_header sndio.h
3391 check_header sys/soundcard.h
3392 check_header soundcard.h
3393
3394 enabled_any alsa_indev alsa_outdev && check_lib2 alsa/asoundlib.h snd_pcm_htimestamp -lasound
3395
3396 enabled jack_indev && check_lib2 jack/jack.h jack_client_open -ljack &&
3397     check_func jack_port_get_latency_range -ljack
3398
3399 enabled_any sndio_indev sndio_outdev && check_lib2 sndio.h sio_open -lsndio
3400
3401 enabled libcdio &&
3402     check_lib2 "cdio/cdda.h cdio/paranoia.h" cdio_cddap_open "-lcdio_paranoia -lcdio_cdda -lcdio"
3403
3404 enabled x11grab                                           &&
3405 require X11 X11/Xlib.h XOpenDisplay -lX11                 &&
3406 require Xext X11/extensions/XShm.h XShmCreateImage -lXext &&
3407 require Xfixes X11/extensions/Xfixes.h XFixesGetCursorImage -lXfixes
3408
3409 # check for VDA header
3410 if ! disabled vda && check_header VideoDecodeAcceleration/VDADecoder.h; then
3411     enable vda && add_extralibs -framework CoreFoundation -framework VideoDecodeAcceleration -framework QuartzCore
3412 fi
3413
3414 if ! disabled vdpau && enabled vdpau_vdpau_h; then
3415     check_cpp_condition vdpau/vdpau.h "defined VDP_DECODER_PROFILE_MPEG4_PART2_ASP" ||
3416         { echolog "Please upgrade to libvdpau >= 0.2 if you would like vdpau support." && disable vdpau; }
3417 fi
3418
3419 enabled debug && add_cflags -g"$debuglevel" && add_asflags -g"$debuglevel"
3420
3421 # add some useful compiler flags if supported
3422 check_cflags -Wdeclaration-after-statement
3423 check_cflags -Wall
3424 check_cflags -Wno-parentheses
3425 check_cflags -Wno-switch
3426 check_cflags -Wno-format-zero-length
3427 check_cflags -Wdisabled-optimization
3428 check_cflags -Wpointer-arith
3429 check_cflags -Wredundant-decls
3430 check_cflags -Wno-pointer-sign
3431 check_cflags -Wcast-qual
3432 check_cflags -Wwrite-strings
3433 check_cflags -Wtype-limits
3434 check_cflags -Wundef
3435 check_cflags -Wmissing-prototypes
3436 check_cflags -Wstrict-prototypes
3437 enabled extra_warnings && check_cflags -Winline
3438
3439 # add some linker flags
3440 check_ldflags -Wl,--warn-common
3441 check_ldflags -Wl,-rpath-link=libswscale:libavfilter:libavdevice:libavformat:libavcodec:libavutil:libavresample
3442 test_ldflags -Wl,-Bsymbolic && append SHFLAGS -Wl,-Bsymbolic
3443
3444 enabled xmm_clobber_test &&
3445     check_ldflags -Wl,--wrap,avcodec_open2              \
3446                   -Wl,--wrap,avcodec_decode_audio4      \
3447                   -Wl,--wrap,avcodec_decode_video2      \
3448                   -Wl,--wrap,avcodec_decode_subtitle2   \
3449                   -Wl,--wrap,avcodec_encode_audio2      \
3450                   -Wl,--wrap,avcodec_encode_video       \
3451                   -Wl,--wrap,avcodec_encode_subtitle    \
3452                   -Wl,--wrap,sws_scale ||
3453     disable xmm_clobber_test
3454
3455 echo "X{};" > $TMPV
3456 if test_ldflags -Wl,--version-script,$TMPV; then
3457     append SHFLAGS '-Wl,--version-script,\$(SUBDIR)lib\$(NAME).ver'
3458     check_cc <<EOF && enable symver_asm_label
3459 void ff_foo(void) __asm__ ("av_foo@VERSION");
3460 void ff_foo(void) { ${inline_asm+__asm__($quotes);} }
3461 EOF
3462     check_cc <<EOF && enable symver_gnu_asm
3463 __asm__(".symver ff_foo,av_foo@VERSION");
3464 void ff_foo(void) {}
3465 EOF
3466 fi
3467
3468 if [ -z "$optflags" ]; then
3469     if enabled small; then
3470         optflags=$cflags_size
3471     elif enabled optimizations; then
3472         optflags=$cflags_speed
3473     else
3474         optflags=$cflags_noopt
3475     fi
3476 fi
3477
3478 check_optflags(){
3479     check_cflags "$@"
3480     enabled lto && check_ldflags "$@"
3481 }
3482
3483
3484 if enabled lto; then
3485     test "$cc_type" != "$ld_type" && die "LTO requires same compiler and linker"
3486     check_cflags  -flto
3487     check_ldflags -flto $cpuflags
3488 fi
3489
3490 check_optflags $optflags
3491 check_optflags -fno-math-errno
3492 check_optflags -fno-signed-zeros
3493
3494 if enabled icc; then
3495     # Just warnings, no remarks
3496     check_cflags -w1
3497     # -wd: Disable following warnings
3498     # 144, 167, 556: -Wno-pointer-sign
3499     # 1292: attribute "foo" ignored
3500     # 1419: external declaration in primary source file
3501     # 10006: ignoring unknown option -fno-signed-zeros
3502     # 10148: ignoring unknown option -Wno-parentheses
3503     # 10156: ignoring option '-W'; no argument required
3504     check_cflags -wd144,167,556,1292,1419,10006,10148,10156
3505     # 11030: Warning unknown option --as-needed
3506     # 10156: ignoring option '-export'; no argument required
3507     check_ldflags -wd10156,11030
3508     # Allow to compile with optimizations
3509     check_ldflags -march=$cpu
3510     # icc 11.0 and 11.1 work with ebp_available, but don't pass the test
3511     enable ebp_available
3512     if enabled x86_32; then
3513         icc_version=$($cc -dumpversion)
3514         test ${icc_version%%.*} -ge 11 &&
3515             check_cflags -falign-stack=maintain-16-byte ||
3516             disable aligned_stack
3517     fi
3518 elif enabled ccc; then
3519     # disable some annoying warnings
3520     add_cflags -msg_disable cvtu32to64
3521     add_cflags -msg_disable embedcomment
3522     add_cflags -msg_disable needconstext
3523     add_cflags -msg_disable nomainieee
3524     add_cflags -msg_disable ptrmismatch1
3525     add_cflags -msg_disable unreachcode
3526 elif enabled gcc; then
3527     check_optflags -fno-tree-vectorize
3528     check_cflags -Werror=implicit-function-declaration
3529     check_cflags -Werror=missing-prototypes
3530     check_cflags -Werror=declaration-after-statement
3531     check_cflags -Werror=vla
3532 elif enabled llvm_gcc; then
3533     check_cflags -mllvm -stack-alignment=16
3534 elif enabled clang; then
3535     check_cflags -mllvm -stack-alignment=16
3536     check_cflags -Qunused-arguments
3537 elif enabled armcc; then
3538     # 2523: use of inline assembler is deprecated
3539     add_cflags -W${armcc_opt},--diag_suppress=2523
3540     add_cflags -W${armcc_opt},--diag_suppress=1207
3541     add_cflags -W${armcc_opt},--diag_suppress=1293 # assignment in condition
3542     add_cflags -W${armcc_opt},--diag_suppress=3343 # hardfp compat
3543     add_cflags -W${armcc_opt},--diag_suppress=167  # pointer sign
3544     add_cflags -W${armcc_opt},--diag_suppress=513  # pointer sign
3545 elif enabled tms470; then
3546     add_cflags -pds=824 -pds=837
3547 elif enabled pathscale; then
3548     add_cflags -fstrict-overflow -OPT:wrap_around_unsafe_opt=OFF
3549 elif enabled msvc; then
3550     enabled x86_32 && disable aligned_stack
3551 fi
3552
3553 enabled_any $THREADS_LIST      && enable threads
3554
3555 enabled asm || { arch=c; disable $ARCH_LIST $ARCH_EXT_LIST; }
3556
3557 check_deps $CONFIG_LIST       \
3558            $CONFIG_EXTRA      \
3559            $HAVE_LIST         \
3560            $ALL_COMPONENTS    \
3561            $ALL_TESTS         \
3562
3563 ! enabled_any memalign posix_memalign aligned_malloc &&
3564     enabled_any $need_memalign && enable memalign_hack
3565
3566 echo "install prefix            $prefix"
3567 echo "source path               $source_path"
3568 echo "C compiler                $cc"
3569 echo "ARCH                      $arch ($cpu)"
3570 if test "$build_suffix" != ""; then
3571     echo "build suffix              $build_suffix"
3572 fi
3573 if test "$extra_version" != ""; then
3574     echo "version string suffix     $extra_version"
3575 fi
3576 echo "big-endian                ${bigendian-no}"
3577 echo "runtime cpu detection     ${runtime_cpudetect-no}"
3578 if enabled x86; then
3579     echo "${yasmexe}                      ${yasm-no}"
3580     echo "MMX enabled               ${mmx-no}"
3581     echo "MMXEXT enabled            ${mmxext-no}"
3582     echo "3DNow! enabled            ${amd3dnow-no}"
3583     echo "3DNow! extended enabled   ${amd3dnowext-no}"
3584     echo "SSE enabled               ${sse-no}"
3585     echo "SSSE3 enabled             ${ssse3-no}"
3586     echo "AVX enabled               ${avx-no}"
3587     echo "FMA4 enabled              ${fma4-no}"
3588     echo "CMOV enabled              ${cmov-no}"
3589     echo "CMOV is fast              ${fast_cmov-no}"
3590     echo "EBX available             ${ebx_available-no}"
3591     echo "EBP available             ${ebp_available-no}"
3592 fi
3593 if enabled arm; then
3594     echo "ARMv5TE enabled           ${armv5te-no}"
3595     echo "ARMv6 enabled             ${armv6-no}"
3596     echo "ARMv6T2 enabled           ${armv6t2-no}"
3597     echo "ARM VFP enabled           ${armvfp-no}"
3598     echo "NEON enabled              ${neon-no}"
3599 fi
3600 if enabled ppc; then
3601     echo "AltiVec enabled           ${altivec-no}"
3602     echo "PPC 4xx optimizations     ${ppc4xx-no}"
3603     echo "dcbzl available           ${dcbzl-no}"
3604 fi
3605 if enabled sparc; then
3606     echo "VIS enabled               ${vis-no}"
3607 fi
3608 echo "debug symbols             ${debug-no}"
3609 echo "optimize for size         ${small-no}"
3610 echo "optimizations             ${optimizations-no}"
3611 echo "static                    ${static-no}"
3612 echo "shared                    ${shared-no}"
3613 echo "new filter support        ${avfilter-no}"
3614 echo "network support           ${network-no}"
3615 echo "threading support         ${thread_type-no}"
3616 echo "safe bitstream reader     ${safe_bitstream_reader-no}"
3617 echo "SDL support               ${sdl-no}"
3618 echo "libdxva2 enabled          ${dxva2-no}"
3619 echo "libva enabled             ${vaapi-no}"
3620 echo "libvdpau enabled          ${vdpau-no}"
3621 echo "AVISynth enabled          ${avisynth-no}"
3622 echo "frei0r enabled            ${frei0r-no}"
3623 echo "gnutls enabled            ${gnutls-no}"
3624 echo "libcdio support           ${libcdio-no}"
3625 echo "libdc1394 support         ${libdc1394-no}"
3626 echo "libfaac enabled           ${libfaac-no}"
3627 echo "libfdk-aac enabled        ${libfdk_aac-no}"
3628 echo "libgsm enabled            ${libgsm-no}"
3629 echo "libilbc enabled           ${libilbc-no}"
3630 echo "libmp3lame enabled        ${libmp3lame-no}"
3631 echo "libopencore-amrnb support ${libopencore_amrnb-no}"
3632 echo "libopencore-amrwb support ${libopencore_amrwb-no}"
3633 echo "libopencv support         ${libopencv-no}"
3634 echo "libopenjpeg enabled       ${libopenjpeg-no}"
3635 echo "libopus enabled           ${libopus-no}"
3636 echo "libpulse enabled          ${libpulse-no}"
3637 echo "librtmp enabled           ${librtmp-no}"
3638 echo "libschroedinger enabled   ${libschroedinger-no}"
3639 echo "libspeex enabled          ${libspeex-no}"
3640 echo "libtheora enabled         ${libtheora-no}"
3641 echo "libvo-aacenc support      ${libvo_aacenc-no}"
3642 echo "libvo-amrwbenc support    ${libvo_amrwbenc-no}"
3643 echo "libvorbis enabled         ${libvorbis-no}"
3644 echo "libvpx enabled            ${libvpx-no}"
3645 echo "libx264 enabled           ${libx264-no}"
3646 echo "libxavs enabled           ${libxavs-no}"
3647 echo "libxvid enabled           ${libxvid-no}"
3648 echo "openssl enabled           ${openssl-no}"
3649 echo "zlib enabled              ${zlib-no}"
3650 echo "bzlib enabled             ${bzlib-no}"
3651 test -n "$random_seed" &&
3652     echo "random seed               ${random_seed}"
3653 echo
3654
3655 for type in decoder encoder hwaccel parser demuxer muxer protocol filter bsf indev outdev; do
3656     echo "Enabled ${type}s:"
3657     eval list=\$$(toupper $type)_LIST
3658     print_enabled '_*' $list | sort | pr -r -3 -t
3659     echo
3660 done
3661
3662 license="LGPL version 2.1 or later"
3663 if enabled nonfree; then
3664     license="nonfree and unredistributable"
3665 elif enabled gplv3; then
3666     license="GPL version 3 or later"
3667 elif enabled lgplv3; then
3668     license="LGPL version 3 or later"
3669 elif enabled gpl; then
3670     license="GPL version 2 or later"
3671 fi
3672
3673 echo "License: $license"
3674
3675 echo "Creating config.mak and config.h..."
3676
3677 test -e Makefile || $ln_s "$source_path/Makefile" .
3678
3679 config_files="$TMPH config.mak"
3680
3681 cat > config.mak <<EOF
3682 # Automatically generated by configure - do not modify!
3683 LIBAV_CONFIGURATION=$LIBAV_CONFIGURATION
3684 prefix=$prefix
3685 LIBDIR=\$(DESTDIR)$libdir
3686 SHLIBDIR=\$(DESTDIR)$shlibdir
3687 INCDIR=\$(DESTDIR)$incdir
3688 BINDIR=\$(DESTDIR)$bindir
3689 DATADIR=\$(DESTDIR)$datadir
3690 MANDIR=\$(DESTDIR)$mandir
3691 SRC_PATH=$source_path
3692 CC_IDENT=$cc_ident
3693 ARCH=$arch
3694 CC=$cc
3695 AS=$as
3696 LD=$ld
3697 DEPCC=$dep_cc
3698 DEPCCFLAGS=$DEPCCFLAGS \$(CPPFLAGS)
3699 DEPAS=$as
3700 DEPASFLAGS=$DEPASFLAGS \$(CPPFLAGS)
3701 YASM=$yasmexe
3702 DEPYASM=$yasmexe
3703 AR=$ar
3704 ARFLAGS=$arflags
3705 AR_O=$ar_o
3706 RANLIB=$ranlib
3707 LN_S=$ln_s
3708 CPPFLAGS=$CPPFLAGS
3709 CFLAGS=$CFLAGS
3710 ASFLAGS=$ASFLAGS
3711 AS_C=$AS_C
3712 AS_O=$AS_O
3713 CC_C=$CC_C
3714 CC_O=$CC_O
3715 LD_O=$LD_O
3716 LD_LIB=$LD_LIB
3717 LD_PATH=$LD_PATH
3718 DLLTOOL=$dlltool
3719 LDFLAGS=$LDFLAGS
3720 LDFLAGS-avserver=$AVSERVERLDFLAGS
3721 SHFLAGS=$SHFLAGS
3722 YASMFLAGS=$YASMFLAGS
3723 BUILDSUF=$build_suffix
3724 FULLNAME=$FULLNAME
3725 LIBPREF=$LIBPREF
3726 LIBSUF=$LIBSUF
3727 LIBNAME=$LIBNAME
3728 SLIBPREF=$SLIBPREF
3729 SLIBSUF=$SLIBSUF
3730 EXESUF=$EXESUF
3731 EXTRA_VERSION=$extra_version
3732 CCDEP=$CCDEP
3733 CCDEP_FLAGS=$CCDEP_FLAGS
3734 ASDEP=$ASDEP
3735 ASDEP_FLAGS=$ASDEP_FLAGS
3736 CC_DEPFLAGS=$CC_DEPFLAGS
3737 AS_DEPFLAGS=$AS_DEPFLAGS
3738 HOSTCC=$host_cc
3739 HOSTLD=$host_ld
3740 HOSTCFLAGS=$host_cflags
3741 HOSTEXESUF=$HOSTEXESUF
3742 HOSTLDFLAGS=$host_ldflags
3743 HOSTLIBS=$host_libs
3744 DEPHOSTCC=$host_cc
3745 DEPHOSTCCFLAGS=$DEPHOSTCCFLAGS \$(HOSTCCFLAGS)
3746 HOSTCCDEP=$HOSTCCDEP
3747 HOSTCCDEP_FLAGS=$HOSTCCDEP_FLAGS
3748 HOSTCC_DEPFLAGS=$HOSTCC_DEPFLAGS
3749 HOSTCC_C=$HOSTCC_C
3750 HOSTCC_O=$HOSTCC_O
3751 HOSTLD_O=$HOSTLD_O
3752 TARGET_EXEC=$target_exec
3753 TARGET_PATH=$target_path
3754 LIBS-avplay=$sdl_libs
3755 CFLAGS-avplay=$sdl_cflags
3756 ZLIB=$($ldflags_filter -lz)
3757 LIB_INSTALL_EXTRA_CMD=$LIB_INSTALL_EXTRA_CMD
3758 EXTRALIBS=$extralibs
3759 INSTALL=install
3760 LIBTARGET=${LIBTARGET}
3761 SLIBNAME=${SLIBNAME}
3762 SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}
3763 SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}
3764 SLIB_CREATE_DEF_CMD=${SLIB_CREATE_DEF_CMD}
3765 SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}
3766 SLIB_INSTALL_NAME=${SLIB_INSTALL_NAME}
3767 SLIB_INSTALL_LINKS=${SLIB_INSTALL_LINKS}
3768 SLIB_INSTALL_EXTRA_LIB=${SLIB_INSTALL_EXTRA_LIB}
3769 SLIB_INSTALL_EXTRA_SHLIB=${SLIB_INSTALL_EXTRA_SHLIB}
3770 SAMPLES:=${samples:-\$(LIBAV_SAMPLES)}
3771 EOF
3772
3773 get_version(){
3774     lcname=$1
3775     name=$(toupper $lcname)
3776     file=$source_path/$lcname/version.h
3777     eval $(awk "/#define ${name}_VERSION_M/ { print \$2 \"=\" \$3 }" "$file")
3778     eval ${name}_VERSION=\$${name}_VERSION_MAJOR.\$${name}_VERSION_MINOR.\$${name}_VERSION_MICRO
3779     eval echo "${lcname}_VERSION=\$${name}_VERSION" >> config.mak
3780     eval echo "${lcname}_VERSION_MAJOR=\$${name}_VERSION_MAJOR" >> config.mak
3781 }
3782
3783 get_version libavcodec
3784 get_version libavdevice
3785 get_version libavfilter
3786 get_version libavformat
3787 get_version libavresample
3788 get_version libavutil
3789 get_version libswscale
3790
3791 cat > $TMPH <<EOF
3792 /* Automatically generated by configure - do not modify! */
3793 #ifndef LIBAV_CONFIG_H
3794 #define LIBAV_CONFIG_H
3795 #define LIBAV_CONFIGURATION "$(c_escape $LIBAV_CONFIGURATION)"
3796 #define LIBAV_LICENSE "$(c_escape $license)"
3797 #define AVCONV_DATADIR "$(eval c_escape $datadir)"
3798 #define CC_IDENT "$(c_escape ${cc_ident:-Unknown compiler})"
3799 #define restrict $_restrict
3800 #define EXTERN_PREFIX "${extern_prefix}"
3801 #define EXTERN_ASM ${extern_prefix}
3802 #define SLIBSUF "$SLIBSUF"
3803 EOF
3804
3805 test -n "$malloc_prefix" &&
3806     echo "#define MALLOC_PREFIX $malloc_prefix" >>$TMPH
3807
3808 if enabled yasm; then
3809     append config_files $TMPASM
3810     printf '' >$TMPASM
3811 fi
3812
3813 print_config ARCH_   "$config_files" $ARCH_LIST
3814 print_config HAVE_   "$config_files" $HAVE_LIST
3815 print_config CONFIG_ "$config_files" $CONFIG_LIST       \
3816                                      $CONFIG_EXTRA      \
3817                                      $ALL_COMPONENTS    \
3818
3819 cat >>config.mak <<EOF
3820 LAVF_TESTS=$(print_enabled   -n _test $LAVF_TESTS)
3821 LAVFI_TESTS=$(print_enabled  -n _test $LAVFI_TESTS)
3822 SEEK_TESTS=$(print_enabled   -n _test $SEEK_TESTS)
3823 EOF
3824
3825 echo "#endif /* LIBAV_CONFIG_H */" >> $TMPH
3826
3827 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
3828 cp_if_changed $TMPH config.h
3829 touch .config
3830
3831 enabled yasm && cp_if_changed $TMPASM config.asm
3832
3833 cat > $TMPH <<EOF
3834 /* Generated by ffconf */
3835 #ifndef AVUTIL_AVCONFIG_H
3836 #define AVUTIL_AVCONFIG_H
3837 EOF
3838
3839 print_config AV_HAVE_ $TMPH $HAVE_LIST_PUB
3840
3841 echo "#endif /* AVUTIL_AVCONFIG_H */" >> $TMPH
3842
3843 cp_if_changed $TMPH libavutil/avconfig.h
3844
3845 test -n "$WARNINGS" && printf "\n$WARNINGS"
3846
3847 # build pkg-config files
3848
3849 pkgconfig_generate(){
3850     name=$1
3851     shortname=${name#lib}${build_suffix}
3852     comment=$2
3853     version=$3
3854     libs=$4
3855     requires=$5
3856     enabled ${name#lib} || return 0
3857     mkdir -p $name
3858     cat <<EOF > $name/$name.pc
3859 prefix=$prefix
3860 exec_prefix=\${prefix}
3861 libdir=$libdir
3862 includedir=$incdir
3863
3864 Name: $name
3865 Description: $comment
3866 Version: $version
3867 Requires: $(enabled shared || echo $requires)
3868 Requires.private: $(enabled shared && echo $requires)
3869 Conflicts:
3870 Libs: -L\${libdir} -l${shortname} $(enabled shared || echo $libs)
3871 Libs.private: $(enabled shared && echo $libs)
3872 Cflags: -I\${includedir}
3873 EOF
3874     cat <<EOF > $name/$name-uninstalled.pc
3875 prefix=
3876 exec_prefix=
3877 libdir=\${pcfiledir}
3878 includedir=${source_path}
3879
3880 Name: $name
3881 Description: $comment
3882 Version: $version
3883 Requires: $requires
3884 Conflicts:
3885 Libs: \${libdir}/${LIBPREF}${shortname}${LIBSUF} $libs
3886 Cflags: -I\${includedir}
3887 EOF
3888 }
3889
3890 pkgconfig_generate libavutil "Libav utility library" "$LIBAVUTIL_VERSION" "$LIBM"
3891 pkgconfig_generate libavcodec "Libav codec library" "$LIBAVCODEC_VERSION" "$extralibs" "libavutil = $LIBAVUTIL_VERSION"
3892 pkgconfig_generate libavformat "Libav container format library" "$LIBAVFORMAT_VERSION" "$extralibs" "libavcodec = $LIBAVCODEC_VERSION"
3893 pkgconfig_generate libavdevice "Libav device handling library" "$LIBAVDEVICE_VERSION" "$extralibs" "libavformat = $LIBAVFORMAT_VERSION"
3894 pkgconfig_generate libavfilter "Libav video filtering library" "$LIBAVFILTER_VERSION" "$extralibs"
3895 pkgconfig_generate libavresample "Libav audio resampling library" "$LIBAVRESAMPLE_VERSION" "$extralibs"
3896 pkgconfig_generate libswscale "Libav image rescaling library" "$LIBSWSCALE_VERSION" "$LIBM" "libavutil = $LIBAVUTIL_VERSION"