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