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