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