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