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