]> git.sesse.net Git - ffmpeg/blob - configure
Merge commit '2443e522f0059176ff8717c9c753eb6fe7e7bbf1'
[ffmpeg] / configure
1 #!/bin/sh
2 #
3 # FFmpeg 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 FFMPEG, 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 FFmpeg."
50     if test "$BASH_VERSION" = '2.04.0(1)-release'; then
51         echo "This bash version ($BASH_VERSION) is broken on your platform."
52         echo "Upgrade to a later version if available."
53     fi
54     exit 1
55 fi
56
57 test -d /usr/xpg4/bin && PATH=/usr/xpg4/bin:$PATH
58
59 show_help(){
60     cat <<EOF
61 Usage: configure [options]
62 Options: [defaults in brackets after descriptions]
63
64 Help options:
65   --help                   print this message
66   --list-decoders          show all available decoders
67   --list-encoders          show all available encoders
68   --list-hwaccels          show all available hardware accelerators
69   --list-demuxers          show all available demuxers
70   --list-muxers            show all available muxers
71   --list-parsers           show all available parsers
72   --list-protocols         show all available protocols
73   --list-bsfs              show all available bitstream filters
74   --list-indevs            show all available input devices
75   --list-outdevs           show all available output devices
76   --list-filters           show all available filters
77
78 Standard options:
79   --logfile=FILE           log tests and output to FILE [config.log]
80   --disable-logging        do not log configure debug information
81   --fatal-warnings         fail if any configure warning is generated
82   --prefix=PREFIX          install in PREFIX [$prefix]
83   --bindir=DIR             install binaries in DIR [PREFIX/bin]
84   --datadir=DIR            install data files in DIR [PREFIX/share/ffmpeg]
85   --docdir=DIR             install documentation in DIR [PREFIX/share/doc/ffmpeg]
86   --libdir=DIR             install libs in DIR [PREFIX/lib]
87   --shlibdir=DIR           install shared libs in DIR [PREFIX/lib]
88   --incdir=DIR             install includes in DIR [PREFIX/include]
89   --mandir=DIR             install man page in DIR [PREFIX/share/man]
90   --enable-rpath           use rpath to allow installing libraries in paths
91                            not part of the dynamic linker search path
92                            use rpath when linking programs [USE WITH CARE]
93
94 Licensing options:
95   --enable-gpl             allow use of GPL code, the resulting libs
96                            and binaries will be under GPL [no]
97   --enable-version3        upgrade (L)GPL to version 3 [no]
98   --enable-nonfree         allow use of nonfree code, the resulting libs
99                            and binaries will be unredistributable [no]
100
101 Configuration options:
102   --disable-static         do not build static libraries [no]
103   --enable-shared          build shared libraries [no]
104   --enable-small           optimize for size instead of speed
105   --disable-runtime-cpudetect disable detecting cpu capabilities at runtime (smaller binary)
106   --enable-gray            enable full grayscale support (slower color)
107   --disable-swscale-alpha  disable alpha channel support in swscale
108   --disable-all            disable building components, libraries and programs
109   --enable-incompatible-libav-abi enable incompatible Libav fork ABI [no]
110   --enable-raise-major     increase major version numbers in sonames [no]
111
112 Program options:
113   --disable-programs       do not build command line programs
114   --disable-ffmpeg         disable ffmpeg build
115   --disable-ffplay         disable ffplay build
116   --disable-ffprobe        disable ffprobe build
117   --disable-ffserver       disable ffserver build
118
119 Documentation options:
120   --disable-doc            do not build documentation
121   --disable-htmlpages      do not build HTML documentation pages
122   --disable-manpages       do not build man documentation pages
123   --disable-podpages       do not build POD documentation pages
124   --disable-txtpages       do not build text documentation pages
125
126 Component options:
127   --disable-avdevice       disable libavdevice build
128   --disable-avcodec        disable libavcodec build
129   --disable-avformat       disable libavformat build
130   --disable-avutil         disable libavutil build
131   --disable-swresample     disable libswresample build
132   --disable-swscale        disable libswscale build
133   --disable-postproc       disable libpostproc build
134   --disable-avfilter       disable libavfilter build
135   --enable-avresample      enable libavresample build [no]
136   --disable-pthreads       disable pthreads [auto]
137   --disable-w32threads     disable Win32 threads [auto]
138   --disable-os2threads     disable OS/2 threads [auto]
139   --disable-network        disable network support [no]
140   --disable-dct            disable DCT code
141   --disable-dwt            disable DWT code
142   --disable-error-resilience disable error resilience code
143   --disable-lsp            disable LSP code
144   --disable-lzo            disable LZO decoder code
145   --disable-mdct           disable MDCT code
146   --disable-rdft           disable RDFT code
147   --disable-fft            disable FFT code
148   --disable-faan           disable floating point AAN (I)DCT code
149   --disable-pixelutils     disable pixel utils in libavutil
150
151 Hardware accelerators:
152   --disable-dxva2          disable DXVA2 code [autodetect]
153   --disable-vaapi          disable VAAPI code [autodetect]
154   --disable-vda            disable VDA code [autodetect]
155   --disable-vdpau          disable VDPAU code [autodetect]
156
157 Individual component options:
158   --disable-everything     disable all components listed below
159   --disable-encoder=NAME   disable encoder NAME
160   --enable-encoder=NAME    enable encoder NAME
161   --disable-encoders       disable all encoders
162   --disable-decoder=NAME   disable decoder NAME
163   --enable-decoder=NAME    enable decoder NAME
164   --disable-decoders       disable all decoders
165   --disable-hwaccel=NAME   disable hwaccel NAME
166   --enable-hwaccel=NAME    enable hwaccel NAME
167   --disable-hwaccels       disable all hwaccels
168   --disable-muxer=NAME     disable muxer NAME
169   --enable-muxer=NAME      enable muxer NAME
170   --disable-muxers         disable all muxers
171   --disable-demuxer=NAME   disable demuxer NAME
172   --enable-demuxer=NAME    enable demuxer NAME
173   --disable-demuxers       disable all demuxers
174   --enable-parser=NAME     enable parser NAME
175   --disable-parser=NAME    disable parser NAME
176   --disable-parsers        disable all parsers
177   --enable-bsf=NAME        enable bitstream filter NAME
178   --disable-bsf=NAME       disable bitstream filter NAME
179   --disable-bsfs           disable all bitstream filters
180   --enable-protocol=NAME   enable protocol NAME
181   --disable-protocol=NAME  disable protocol NAME
182   --disable-protocols      disable all protocols
183   --enable-indev=NAME      enable input device NAME
184   --disable-indev=NAME     disable input device NAME
185   --disable-indevs         disable input devices
186   --enable-outdev=NAME     enable output device NAME
187   --disable-outdev=NAME    disable output device NAME
188   --disable-outdevs        disable output devices
189   --disable-devices        disable all devices
190   --enable-filter=NAME     enable filter NAME
191   --disable-filter=NAME    disable filter NAME
192   --disable-filters        disable all filters
193
194 External library support:
195   --enable-avisynth        enable reading of AviSynth script files [no]
196   --disable-bzlib          disable bzlib [autodetect]
197   --enable-fontconfig      enable fontconfig
198   --enable-frei0r          enable frei0r video filtering
199   --enable-gnutls          enable gnutls [no]
200   --disable-iconv          disable iconv [autodetect]
201   --enable-ladspa          enable LADSPA audio filtering
202   --enable-libaacplus      enable AAC+ encoding via libaacplus [no]
203   --enable-libass          enable libass subtitles rendering [no]
204   --enable-libbluray       enable BluRay reading using libbluray [no]
205   --enable-libbs2b         enable bs2b DSP library [no]
206   --enable-libcaca         enable textual display using libcaca
207   --enable-libcelt         enable CELT decoding via libcelt [no]
208   --enable-libcdio         enable audio CD grabbing with libcdio
209   --enable-libdc1394       enable IIDC-1394 grabbing using libdc1394
210                            and libraw1394 [no]
211   --enable-libfaac         enable AAC encoding via libfaac [no]
212   --enable-libfdk-aac      enable AAC de/encoding via libfdk-aac [no]
213   --enable-libflite        enable flite (voice synthesis) support via libflite [no]
214   --enable-libfreetype     enable libfreetype [no]
215   --enable-libfribidi      enable libfribidi [no]
216   --enable-libgme          enable Game Music Emu via libgme [no]
217   --enable-libgsm          enable GSM de/encoding via libgsm [no]
218   --enable-libiec61883     enable iec61883 via libiec61883 [no]
219   --enable-libilbc         enable iLBC de/encoding via libilbc [no]
220   --enable-libmodplug      enable ModPlug via libmodplug [no]
221   --enable-libmp3lame      enable MP3 encoding via libmp3lame [no]
222   --enable-libnut          enable NUT (de)muxing via libnut,
223                            native (de)muxer exists [no]
224   --enable-libopencore-amrnb enable AMR-NB de/encoding via libopencore-amrnb [no]
225   --enable-libopencore-amrwb enable AMR-WB decoding via libopencore-amrwb [no]
226   --enable-libopencv       enable video filtering via libopencv [no]
227   --enable-libopenjpeg     enable JPEG 2000 de/encoding via OpenJPEG [no]
228   --enable-libopus         enable Opus de/encoding via libopus [no]
229   --enable-libpulse        enable Pulseaudio input via libpulse [no]
230   --enable-libquvi         enable quvi input via libquvi [no]
231   --enable-librtmp         enable RTMP[E] support via librtmp [no]
232   --enable-libschroedinger enable Dirac de/encoding via libschroedinger [no]
233   --enable-libshine        enable fixed-point MP3 encoding via libshine [no]
234   --enable-libsmbclient    enable Samba protocol via libsmbclient [no]
235   --enable-libsoxr         enable Include libsoxr resampling [no]
236   --enable-libspeex        enable Speex de/encoding via libspeex [no]
237   --enable-libssh          enable SFTP protocol via libssh [no]
238   --enable-libstagefright-h264  enable H.264 decoding via libstagefright [no]
239   --enable-libtheora       enable Theora encoding via libtheora [no]
240   --enable-libtwolame      enable MP2 encoding via libtwolame [no]
241   --enable-libutvideo      enable Ut Video encoding and decoding via libutvideo [no]
242   --enable-libv4l2         enable libv4l2/v4l-utils [no]
243   --enable-libvidstab      enable video stabilization using vid.stab [no]
244   --enable-libvo-aacenc    enable AAC encoding via libvo-aacenc [no]
245   --enable-libvo-amrwbenc  enable AMR-WB encoding via libvo-amrwbenc [no]
246   --enable-libvorbis       enable Vorbis en/decoding via libvorbis,
247                            native implementation exists [no]
248   --enable-libvpx          enable VP8 and VP9 de/encoding via libvpx [no]
249   --enable-libwavpack      enable wavpack encoding via libwavpack [no]
250   --enable-libwebp         enable WebP encoding via libwebp [no]
251   --enable-libx264         enable H.264 encoding via x264 [no]
252   --enable-libx265         enable HEVC encoding via x265 [no]
253   --enable-libxavs         enable AVS encoding via xavs [no]
254   --enable-libxcb          enable X11 grabbing using XCB [auto]
255   --enable-libxcb-shm      enable X11 grabbing shm communication [auto]
256   --enable-libxcb-xfixes   enable X11 grabbing mouse rendering [auto]
257   --enable-libxcb-shape    enable X11 grabbing shape rendering [auto]
258   --enable-libxvid         enable Xvid encoding via xvidcore,
259                            native MPEG-4/Xvid encoder exists [no]
260   --enable-libzmq          enable message passing via libzmq [no]
261   --enable-libzvbi         enable teletext support via libzvbi [no]
262   --disable-lzma           disable lzma [autodetect]
263   --enable-decklink        enable Blackmagick DeckLink I/O support [no]
264   --enable-openal          enable OpenAL 1.1 capture support [no]
265   --enable-opencl          enable OpenCL code
266   --enable-opengl          enable OpenGL rendering [no]
267   --enable-openssl         enable openssl [no]
268   --disable-sdl            disable sdl [autodetect]
269   --enable-x11grab         enable X11 grabbing (legacy) [no]
270   --disable-xlib           disable xlib [autodetect]
271   --disable-zlib           disable zlib [autodetect]
272
273 Toolchain options:
274   --arch=ARCH              select architecture [$arch]
275   --cpu=CPU                select the minimum required CPU (affects
276                            instruction selection, may crash on older CPUs)
277   --cross-prefix=PREFIX    use PREFIX for compilation tools [$cross_prefix]
278   --progs-suffix=SUFFIX    program name suffix []
279   --enable-cross-compile   assume a cross-compiler is used
280   --sysroot=PATH           root of cross-build tree
281   --sysinclude=PATH        location of cross-build system headers
282   --target-os=OS           compiler targets OS [$target_os]
283   --target-exec=CMD        command to run executables on target
284   --target-path=DIR        path to view of build directory on target
285   --target-samples=DIR     path to samples directory on target
286   --tempprefix=PATH        force fixed dir/prefix instead of mktemp for checks
287   --toolchain=NAME         set tool defaults according to NAME
288   --nm=NM                  use nm tool NM [$nm_default]
289   --ar=AR                  use archive tool AR [$ar_default]
290   --as=AS                  use assembler AS [$as_default]
291   --windres=WINDRES        use windows resource compiler WINDRES [$windres_default]
292   --yasmexe=EXE            use yasm-compatible assembler EXE [$yasmexe_default]
293   --cc=CC                  use C compiler CC [$cc_default]
294   --cxx=CXX                use C compiler CXX [$cxx_default]
295   --dep-cc=DEPCC           use dependency generator DEPCC [$cc_default]
296   --ld=LD                  use linker LD [$ld_default]
297   --pkg-config=PKGCONFIG   use pkg-config tool PKGCONFIG [$pkg_config_default]
298   --pkg-config-flags=FLAGS pass additional flags to pkgconf []
299   --ranlib=RANLIB          use ranlib RANLIB [$ranlib_default]
300   --doxygen=DOXYGEN        use DOXYGEN to generate API doc [$doxygen_default]
301   --host-cc=HOSTCC         use host C compiler HOSTCC
302   --host-cflags=HCFLAGS    use HCFLAGS when compiling for host
303   --host-cppflags=HCPPFLAGS use HCPPFLAGS when compiling for host
304   --host-ld=HOSTLD         use host linker HOSTLD
305   --host-ldflags=HLDFLAGS  use HLDFLAGS when linking for host
306   --host-libs=HLIBS        use libs HLIBS when linking for host
307   --host-os=OS             compiler host OS [$target_os]
308   --extra-cflags=ECFLAGS   add ECFLAGS to CFLAGS [$CFLAGS]
309   --extra-cxxflags=ECFLAGS add ECFLAGS to CXXFLAGS [$CXXFLAGS]
310   --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]
311   --extra-ldexeflags=ELDFLAGS add ELDFLAGS to LDEXEFLAGS [$LDEXEFLAGS]
312   --extra-libs=ELIBS       add ELIBS [$ELIBS]
313   --extra-version=STRING   version string suffix []
314   --optflags=OPTFLAGS      override optimization-related compiler flags
315   --build-suffix=SUFFIX    library name suffix []
316   --enable-pic             build position-independent code
317   --enable-thumb           compile for Thumb instruction set
318   --enable-lto             use link-time optimization
319
320 Advanced options (experts only):
321   --malloc-prefix=PREFIX   prefix malloc and related names with PREFIX
322   --disable-symver         disable symbol versioning
323   --enable-hardcoded-tables use hardcoded tables instead of runtime generation
324   --disable-safe-bitstream-reader
325                            disable buffer boundary checking in bitreaders
326                            (faster, but may crash)
327   --enable-memalign-hack   emulate memalign, interferes with memory debuggers
328   --sws-max-filter-size=N  the max filter size swscale uses [$sws_max_filter_size_default]
329
330 Optimization options (experts only):
331   --disable-asm            disable all assembly optimizations
332   --disable-altivec        disable AltiVec optimizations
333   --disable-amd3dnow       disable 3DNow! optimizations
334   --disable-amd3dnowext    disable 3DNow! extended optimizations
335   --disable-mmx            disable MMX optimizations
336   --disable-mmxext         disable MMXEXT optimizations
337   --disable-sse            disable SSE optimizations
338   --disable-sse2           disable SSE2 optimizations
339   --disable-sse3           disable SSE3 optimizations
340   --disable-ssse3          disable SSSE3 optimizations
341   --disable-sse4           disable SSE4 optimizations
342   --disable-sse42          disable SSE4.2 optimizations
343   --disable-avx            disable AVX optimizations
344   --disable-xop            disable XOP optimizations
345   --disable-fma3           disable FMA3 optimizations
346   --disable-fma4           disable FMA4 optimizations
347   --disable-avx2           disable AVX2 optimizations
348   --disable-armv5te        disable armv5te optimizations
349   --disable-armv6          disable armv6 optimizations
350   --disable-armv6t2        disable armv6t2 optimizations
351   --disable-vfp            disable VFP optimizations
352   --disable-neon           disable NEON optimizations
353   --disable-inline-asm     disable use of inline assembly
354   --disable-yasm           disable use of nasm/yasm assembly
355   --disable-mips32r2       disable MIPS32R2 optimizations
356   --disable-mipsdspr1      disable MIPS DSP ASE R1 optimizations
357   --disable-mipsdspr2      disable MIPS DSP ASE R2 optimizations
358   --disable-mipsfpu        disable floating point MIPS optimizations
359   --disable-fast-unaligned consider unaligned accesses slow
360
361 Developer options (useful when working on FFmpeg itself):
362   --disable-debug          disable debugging symbols
363   --enable-debug=LEVEL     set the debug level [$debuglevel]
364   --disable-optimizations  disable compiler optimizations
365   --enable-extra-warnings  enable more compiler warnings
366   --disable-stripping      disable stripping of executables and shared libraries
367   --assert-level=level     0(default), 1 or 2, amount of assertion testing,
368                            2 causes a slowdown at runtime.
369   --enable-memory-poisoning fill heap uninitialized allocated space with arbitrary data
370   --valgrind=VALGRIND      run "make fate" tests through valgrind to detect memory
371                            leaks and errors, using the specified valgrind binary.
372                            Cannot be combined with --target-exec
373   --enable-ftrapv          Trap arithmetic overflows
374   --samples=PATH           location of test samples for FATE, if not set use
375                            \$FATE_SAMPLES at make invocation time.
376   --enable-neon-clobber-test check NEON registers for clobbering (should be
377                            used only for debugging purposes)
378   --enable-xmm-clobber-test check XMM registers for clobbering (Win64-only;
379                            should be used only for debugging purposes)
380   --enable-random          randomly enable/disable components
381   --disable-random
382   --enable-random=LIST     randomly enable/disable specific components or
383   --disable-random=LIST    component groups. LIST is a comma-separated list
384                            of NAME[:PROB] entries where NAME is a component
385                            (group) and PROB the probability associated with
386                            NAME (default 0.5).
387   --random-seed=VALUE      seed value for --enable/disable-random
388
389 NOTE: Object files are built at the place where configure is launched.
390 EOF
391   exit 0
392 }
393
394 quotes='""'
395
396 log(){
397     echo "$@" >> $logfile
398 }
399
400 log_file(){
401     log BEGIN $1
402     pr -n -t $1 >> $logfile
403     log END $1
404 }
405
406 echolog(){
407     log "$@"
408     echo "$@"
409 }
410
411 warn(){
412     log "WARNING: $*"
413     WARNINGS="${WARNINGS}WARNING: $*\n"
414 }
415
416 die(){
417     echolog "$@"
418     cat <<EOF
419
420 If you think configure made a mistake, make sure you are using the latest
421 version from Git.  If the latest version fails, report the problem to the
422 ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on irc.freenode.net.
423 EOF
424     if disabled logging; then
425         cat <<EOF
426 Rerun configure with logging enabled (do not use --disable-logging), and
427 include the log this produces with your report.
428 EOF
429     else
430         cat <<EOF
431 Include the log file "$logfile" produced by configure as this will help
432 solve the problem.
433 EOF
434     fi
435     exit 1
436 }
437
438 # Avoid locale weirdness, besides we really just want to translate ASCII.
439 toupper(){
440     echo "$@" | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ
441 }
442
443 tolower(){
444     echo "$@" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
445 }
446
447 c_escape(){
448     echo "$*" | sed 's/["\\]/\\\0/g'
449 }
450
451 sh_quote(){
452     v=$(echo "$1" | sed "s/'/'\\\\''/g")
453     test "x$v" = "x${v#*[!A-Za-z0-9_/.+-]}" || v="'$v'"
454     echo "$v"
455 }
456
457 cleanws(){
458     echo "$@" | sed 's/^ *//;s/  */ /g;s/ *$//;s/\\r//g'
459 }
460
461 filter(){
462     pat=$1
463     shift
464     for v; do
465         eval "case $v in $pat) echo $v ;; esac"
466     done
467 }
468
469 filter_out(){
470     pat=$1
471     shift
472     for v; do
473         eval "case $v in $pat) ;; *) echo $v ;; esac"
474     done
475 }
476
477 map(){
478     m=$1
479     shift
480     for v; do eval $m; done
481 }
482
483 add_suffix(){
484     suffix=$1
485     shift
486     for v; do echo ${v}${suffix}; done
487 }
488
489 set_all(){
490     value=$1
491     shift
492     for var in $*; do
493         eval $var=$value
494     done
495 }
496
497 set_weak(){
498     value=$1
499     shift
500     for var; do
501         eval : \${$var:=$value}
502     done
503 }
504
505 sanitize_var_name(){
506     echo $@ | sed 's/[^A-Za-z0-9_]/_/g'
507 }
508
509 set_safe(){
510     var=$1
511     shift
512     eval $(sanitize_var_name "$var")='$*'
513 }
514
515 get_safe(){
516     eval echo \$$(sanitize_var_name "$1")
517 }
518
519 pushvar(){
520     for pvar in $*; do
521         eval level=\${${pvar}_level:=0}
522         eval ${pvar}_${level}="\$$pvar"
523         eval ${pvar}_level=$(($level+1))
524     done
525 }
526
527 popvar(){
528     for pvar in $*; do
529         eval level=\${${pvar}_level:-0}
530         test $level = 0 && continue
531         eval level=$(($level-1))
532         eval $pvar="\${${pvar}_${level}}"
533         eval ${pvar}_level=$level
534         eval unset ${pvar}_${level}
535     done
536 }
537
538 enable(){
539     set_all yes $*
540 }
541
542 disable(){
543     set_all no $*
544 }
545
546 enable_weak(){
547     set_weak yes $*
548 }
549
550 disable_weak(){
551     set_weak no $*
552 }
553
554 enable_safe(){
555     for var; do
556         enable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
557     done
558 }
559
560 disable_safe(){
561     for var; do
562         disable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g')
563     done
564 }
565
566 do_enable_deep(){
567     for var; do
568         enabled $var && continue
569         eval sel="\$${var}_select"
570         eval sgs="\$${var}_suggest"
571         pushvar var sgs
572         enable_deep $sel
573         popvar sgs
574         enable_deep_weak $sgs
575         popvar var
576     done
577 }
578
579 enable_deep(){
580     do_enable_deep $*
581     enable $*
582 }
583
584 enable_deep_weak(){
585     for var; do
586         disabled $var && continue
587         pushvar var
588         do_enable_deep $var
589         popvar var
590         enable_weak $var
591     done
592 }
593
594 enabled(){
595     test "${1#!}" = "$1" && op== || op=!=
596     eval test "x\$${1#!}" $op "xyes"
597 }
598
599 disabled(){
600     test "${1#!}" = "$1" && op== || op=!=
601     eval test "x\$${1#!}" $op "xno"
602 }
603
604 enabled_all(){
605     for opt; do
606         enabled $opt || return 1
607     done
608 }
609
610 disabled_all(){
611     for opt; do
612         disabled $opt || return 1
613     done
614 }
615
616 enabled_any(){
617     for opt; do
618         enabled $opt && return 0
619     done
620 }
621
622 disabled_any(){
623     for opt; do
624         disabled $opt && return 0
625     done
626     return 1
627 }
628
629 set_default(){
630     for opt; do
631         eval : \${$opt:=\$${opt}_default}
632     done
633 }
634
635 is_in(){
636     value=$1
637     shift
638     for var in $*; do
639         [ $var = $value ] && return 0
640     done
641     return 1
642 }
643
644 do_check_deps(){
645     for cfg; do
646         cfg="${cfg#!}"
647         enabled ${cfg}_checking && die "Circular dependency for $cfg."
648         disabled ${cfg}_checking && continue
649         enable ${cfg}_checking
650         append allopts $cfg
651
652         eval dep_all="\$${cfg}_deps"
653         eval dep_any="\$${cfg}_deps_any"
654         eval dep_sel="\$${cfg}_select"
655         eval dep_sgs="\$${cfg}_suggest"
656         eval dep_ifa="\$${cfg}_if"
657         eval dep_ifn="\$${cfg}_if_any"
658
659         pushvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
660         do_check_deps $dep_all $dep_any $dep_sel $dep_sgs $dep_ifa $dep_ifn
661         popvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn
662
663         [ -n "$dep_ifa" ] && { enabled_all $dep_ifa && enable_weak $cfg; }
664         [ -n "$dep_ifn" ] && { enabled_any $dep_ifn && enable_weak $cfg; }
665         enabled_all  $dep_all || disable $cfg
666         enabled_any  $dep_any || disable $cfg
667         disabled_any $dep_sel && disable $cfg
668
669         if enabled $cfg; then
670             enable_deep $dep_sel
671             enable_deep_weak $dep_sgs
672         fi
673
674         disable ${cfg}_checking
675     done
676 }
677
678 check_deps(){
679     unset allopts
680
681     do_check_deps "$@"
682
683     for cfg in $allopts; do
684         enabled $cfg || continue
685         eval dep_extralibs="\$${cfg}_extralibs"
686         test -n "$dep_extralibs" && add_extralibs $dep_extralibs
687     done
688 }
689
690 print_config(){
691     pfx=$1
692     files=$2
693     shift 2
694     map 'eval echo "$v \${$v:-no}"' "$@" |
695     awk "BEGIN { split(\"$files\", files) }
696         {
697             c = \"$pfx\" toupper(\$1);
698             v = \$2;
699             sub(/yes/, 1, v);
700             sub(/no/,  0, v);
701             for (f in files) {
702                 file = files[f];
703                 if (file ~ /\\.h\$/) {
704                     printf(\"#define %s %d\\n\", c, v) >>file;
705                 } else if (file ~ /\\.asm\$/) {
706                     printf(\"%%define %s %d\\n\", c, v) >>file;
707                 } else if (file ~ /\\.mak\$/) {
708                     n = -v ? \"\" : \"!\";
709                     printf(\"%s%s=yes\\n\", n, c) >>file;
710                 } else if (file ~ /\\.texi\$/) {
711                     pre = -v ? \"\" : \"@c \";
712                     yesno = \$2;
713                     c2 = tolower(c);
714                     gsub(/_/, \"-\", c2);
715                     printf(\"%s@set %s %s\\n\", pre, c2, yesno) >>file;
716                 }
717             }
718         }"
719 }
720
721 print_enabled(){
722     suf=$1
723     shift
724     for v; do
725         enabled $v && printf "%s\n" ${v%$suf};
726     done
727 }
728
729 append(){
730     var=$1
731     shift
732     eval "$var=\"\$$var $*\""
733 }
734
735 prepend(){
736     var=$1
737     shift
738     eval "$var=\"$* \$$var\""
739 }
740
741 unique(){
742     var=$1
743     uniq_list=""
744     for tok in $(eval echo \$$var); do
745         uniq_list="$(filter_out $tok $uniq_list) $tok"
746     done
747     eval "$var=\"${uniq_list}\""
748 }
749
750 add_cppflags(){
751     append CPPFLAGS "$@"
752 }
753
754 add_cflags(){
755     append CFLAGS $($cflags_filter "$@")
756 }
757
758 add_cxxflags(){
759     append CXXFLAGS $($cflags_filter "$@")
760 }
761
762 add_asflags(){
763     append ASFLAGS $($asflags_filter "$@")
764 }
765
766 add_ldflags(){
767     append LDFLAGS $($ldflags_filter "$@")
768 }
769
770 add_ldexeflags(){
771     append LDEXEFLAGS $($ldflags_filter "$@")
772 }
773
774 add_stripflags(){
775     append ASMSTRIPFLAGS "$@"
776 }
777
778 add_extralibs(){
779     prepend extralibs $($ldflags_filter "$@")
780 }
781
782 add_host_cppflags(){
783     append host_cppflags "$@"
784 }
785
786 add_host_cflags(){
787     append host_cflags $($host_cflags_filter "$@")
788 }
789
790 add_host_ldflags(){
791     append host_ldflags $($host_ldflags_filter "$@")
792 }
793
794 add_compat(){
795     append compat_objs $1
796     shift
797     map 'add_cppflags -D$v' "$@"
798 }
799
800 check_cmd(){
801     log "$@"
802     "$@" >> $logfile 2>&1
803 }
804
805 check_stat(){
806     log check_stat "$@"
807     stat "$1" >> $logfile 2>&1
808 }
809
810 cc_o(){
811     eval printf '%s\\n' $CC_O
812 }
813
814 cc_e(){
815     eval printf '%s\\n' $CC_E
816 }
817
818 check_cc(){
819     log check_cc "$@"
820     cat > $TMPC
821     log_file $TMPC
822     check_cmd $cc $CPPFLAGS $CFLAGS "$@" $CC_C $(cc_o $TMPO) $TMPC
823 }
824
825 check_cxx(){
826     log check_cxx "$@"
827     cat > $TMPCPP
828     log_file $TMPCPP
829     check_cmd $cxx $CPPFLAGS $CFLAGS $CXXFLAGS "$@" $CXX_C -o $TMPO $TMPCPP
830 }
831
832 check_oc(){
833     log check_oc "$@"
834     cat > $TMPM
835     log_file $TMPM
836     check_cmd $cc -Werror=missing-prototypes $CPPFLAGS $CFLAGS "$@" $CC_C $(cc_o $TMPO) $TMPM
837 }
838
839 check_cpp(){
840     log check_cpp "$@"
841     cat > $TMPC
842     log_file $TMPC
843     check_cmd $cc $CPPFLAGS $CFLAGS "$@" $(cc_e $TMPO) $TMPC
844 }
845
846 as_o(){
847     eval printf '%s\\n' $AS_O
848 }
849
850 check_as(){
851     log check_as "$@"
852     cat > $TMPS
853     log_file $TMPS
854     check_cmd $as $CPPFLAGS $ASFLAGS "$@" $AS_C $(as_o $TMPO) $TMPS
855 }
856
857 check_inline_asm(){
858     log check_inline_asm "$@"
859     name="$1"
860     code="$2"
861     shift 2
862     disable $name
863     check_cc "$@" <<EOF && enable $name
864 void foo(void){ __asm__ volatile($code); }
865 EOF
866 }
867
868 check_insn(){
869     log check_insn "$@"
870     check_inline_asm ${1}_inline "\"$2\""
871     echo "$2" | check_as && enable ${1}_external || disable ${1}_external
872 }
873
874 check_yasm(){
875     log check_yasm "$@"
876     echo "$1" > $TMPS
877     log_file $TMPS
878     shift 1
879     check_cmd $yasmexe $YASMFLAGS -Werror "$@" -o $TMPO $TMPS
880 }
881
882 ld_o(){
883     eval printf '%s\\n' $LD_O
884 }
885
886 check_ld(){
887     log check_ld "$@"
888     type=$1
889     shift 1
890     flags=$(filter_out '-l*|*.so' $@)
891     libs=$(filter '-l*|*.so' $@)
892     check_$type $($cflags_filter $flags) || return
893     flags=$($ldflags_filter $flags)
894     libs=$($ldflags_filter $libs)
895     check_cmd $ld $LDFLAGS $flags $(ld_o $TMPE) $TMPO $libs $extralibs
896 }
897
898 print_include(){
899     hdr=$1
900     test "${hdr%.h}" = "${hdr}" &&
901         echo "#include $hdr"    ||
902         echo "#include <$hdr>"
903 }
904
905 check_code(){
906     log check_code "$@"
907     check=$1
908     headers=$2
909     code=$3
910     shift 3
911     {
912         for hdr in $headers; do
913             print_include $hdr
914         done
915         echo "int main(void) { $code; return 0; }"
916     } | check_$check "$@"
917 }
918
919 check_cppflags(){
920     log check_cppflags "$@"
921     check_cc "$@" <<EOF && append CPPFLAGS "$@"
922 int x;
923 EOF
924 }
925
926 test_cflags(){
927     log test_cflags "$@"
928     set -- $($cflags_filter "$@")
929     check_cc "$@" <<EOF
930 int x;
931 EOF
932 }
933
934 check_cflags(){
935     log check_cflags "$@"
936     test_cflags "$@" && add_cflags "$@"
937 }
938
939 check_cxxflags(){
940     log check_cxxflags "$@"
941     set -- $($cflags_filter "$@")
942     check_cxx "$@" <<EOF && append CXXFLAGS "$@"
943 int x;
944 EOF
945 }
946
947 test_ldflags(){
948     log test_ldflags "$@"
949     check_ld "cc" "$@" <<EOF
950 int main(void){ return 0; }
951 EOF
952 }
953
954 check_ldflags(){
955     log check_ldflags "$@"
956     test_ldflags "$@" && add_ldflags "$@"
957 }
958
959 test_stripflags(){
960     log test_stripflags "$@"
961     # call check_cc to get a fresh TMPO
962     check_cc <<EOF
963 int main(void) { return 0; }
964 EOF
965     check_cmd $strip $ASMSTRIPFLAGS "$@" $TMPO
966 }
967
968 check_stripflags(){
969     log check_stripflags "$@"
970     test_stripflags "$@" && add_stripflags "$@"
971 }
972
973 check_header(){
974     log check_header "$@"
975     header=$1
976     shift
977     disable_safe $header
978     check_cpp "$@" <<EOF && enable_safe $header
979 #include <$header>
980 int x;
981 EOF
982 }
983
984 check_header_oc(){
985     log check_header_oc "$@"
986     rm -f -- "$TMPO"
987     header=$1
988     shift
989     disable_safe $header
990     {
991        echo "#include <$header>"
992        echo "int main(void) { return 0; }"
993     } | check_oc && check_stat "$TMPO" && enable_safe $headers
994 }
995
996 check_func(){
997     log check_func "$@"
998     func=$1
999     shift
1000     disable $func
1001     check_ld "cc" "$@" <<EOF && enable $func
1002 extern int $func();
1003 int main(void){ $func(); }
1004 EOF
1005 }
1006
1007 check_mathfunc(){
1008     log check_mathfunc "$@"
1009     func=$1
1010     narg=$2
1011     shift 2
1012     test $narg = 2 && args="f, g" || args="f"
1013     disable $func
1014     check_ld "cc" "$@" <<EOF && enable $func
1015 #include <math.h>
1016 float foo(float f, float g) { return $func($args); }
1017 int main(void){ return (int) foo; }
1018 EOF
1019 }
1020
1021 check_func_headers(){
1022     log check_func_headers "$@"
1023     headers=$1
1024     funcs=$2
1025     shift 2
1026     {
1027         for hdr in $headers; do
1028             print_include $hdr
1029         done
1030         for func in $funcs; do
1031             echo "long check_$func(void) { return (long) $func; }"
1032         done
1033         echo "int main(void) { return 0; }"
1034     } | check_ld "cc" "$@" && enable $funcs && enable_safe $headers
1035 }
1036
1037 check_class_headers_cpp(){
1038     log check_class_headers_cpp "$@"
1039     headers=$1
1040     classes=$2
1041     shift 2
1042     {
1043         for hdr in $headers; do
1044             echo "#include <$hdr>"
1045         done
1046         echo "int main(void) { "
1047         i=1
1048         for class in $classes; do
1049             echo "$class obj$i;"
1050             i=$(expr $i + 1)
1051         done
1052         echo "return 0; }"
1053     } | check_ld "cxx" "$@" && enable $funcs && enable_safe $headers
1054 }
1055
1056 check_cpp_condition(){
1057     log check_cpp_condition "$@"
1058     header=$1
1059     condition=$2
1060     shift 2
1061     check_cpp "$@" <<EOF
1062 #include <$header>
1063 #if !($condition)
1064 #error "unsatisfied condition: $condition"
1065 #endif
1066 EOF
1067 }
1068
1069 check_lib(){
1070     log check_lib "$@"
1071     header="$1"
1072     func="$2"
1073     shift 2
1074     check_header $header && check_func $func "$@" && add_extralibs "$@"
1075 }
1076
1077 check_lib2(){
1078     log check_lib2 "$@"
1079     headers="$1"
1080     funcs="$2"
1081     shift 2
1082     check_func_headers "$headers" "$funcs" "$@" && add_extralibs "$@"
1083 }
1084
1085 check_lib_cpp(){
1086     log check_lib_cpp "$@"
1087     headers="$1"
1088     classes="$2"
1089     shift 2
1090     check_class_headers_cpp "$headers" "$classes" "$@" && add_extralibs "$@"
1091 }
1092
1093 check_pkg_config(){
1094     log check_pkg_config "$@"
1095     pkgandversion="$1"
1096     pkg="${1%% *}"
1097     headers="$2"
1098     funcs="$3"
1099     shift 3
1100     check_cmd $pkg_config --exists --print-errors $pkgandversion || return
1101     pkg_cflags=$($pkg_config --cflags $pkg_config_flags $pkg)
1102     pkg_libs=$($pkg_config --libs $pkg_config_flags $pkg)
1103     check_func_headers "$headers" "$funcs" $pkg_cflags $pkg_libs "$@" &&
1104         set_safe ${pkg}_cflags $pkg_cflags   &&
1105         set_safe ${pkg}_libs   $pkg_libs
1106 }
1107
1108 check_exec(){
1109     check_ld "cc" "$@" && { enabled cross_compile || $TMPE >> $logfile 2>&1; }
1110 }
1111
1112 check_exec_crash(){
1113     code=$(cat)
1114
1115     # exit() is not async signal safe.  _Exit (C99) and _exit (POSIX)
1116     # are safe but may not be available everywhere.  Thus we use
1117     # raise(SIGTERM) instead.  The check is run in a subshell so we
1118     # can redirect the "Terminated" message from the shell.  SIGBUS
1119     # is not defined by standard C so it is used conditionally.
1120
1121     (check_exec "$@") >> $logfile 2>&1 <<EOF
1122 #include <signal.h>
1123 static void sighandler(int sig){
1124     raise(SIGTERM);
1125 }
1126 int foo(void){
1127     $code
1128 }
1129 int (*func_ptr)(void) = foo;
1130 int main(void){
1131     signal(SIGILL, sighandler);
1132     signal(SIGFPE, sighandler);
1133     signal(SIGSEGV, sighandler);
1134 #ifdef SIGBUS
1135     signal(SIGBUS, sighandler);
1136 #endif
1137     return func_ptr();
1138 }
1139 EOF
1140 }
1141
1142 check_type(){
1143     log check_type "$@"
1144     headers=$1
1145     type=$2
1146     shift 2
1147     disable_safe "$type"
1148     check_code cc "$headers" "$type v" "$@" && enable_safe "$type"
1149 }
1150
1151 check_struct(){
1152     log check_struct "$@"
1153     headers=$1
1154     struct=$2
1155     member=$3
1156     shift 3
1157     disable_safe "${struct}_${member}"
1158     check_code cc "$headers" "const void *p = &(($struct *)0)->$member" "$@" &&
1159         enable_safe "${struct}_${member}"
1160 }
1161
1162 check_builtin(){
1163     log check_builtin "$@"
1164     name=$1
1165     headers=$2
1166     builtin=$3
1167     shift 3
1168     disable "$name"
1169     check_code ld "$headers" "$builtin" "cc" "$@" && enable "$name"
1170 }
1171
1172 check_compile_assert(){
1173     log check_compile_assert "$@"
1174     name=$1
1175     headers=$2
1176     condition=$3
1177     shift 3
1178     disable "$name"
1179     check_code cc "$headers" "char c[2 * !!($condition) - 1]" "$@" && enable "$name"
1180 }
1181
1182 require(){
1183     name="$1"
1184     header="$2"
1185     func="$3"
1186     shift 3
1187     check_lib $header $func "$@" || die "ERROR: $name not found"
1188 }
1189
1190 require2(){
1191     name="$1"
1192     headers="$2"
1193     func="$3"
1194     shift 3
1195     check_lib2 "$headers" $func "$@" || die "ERROR: $name not found"
1196 }
1197
1198 require_cpp(){
1199     name="$1"
1200     headers="$2"
1201     classes="$3"
1202     shift 3
1203     check_lib_cpp "$headers" "$classes" "$@" || die "ERROR: $name not found"
1204 }
1205
1206 require_pkg_config(){
1207     pkg="$1"
1208     check_pkg_config "$@" || die "ERROR: $pkg not found"
1209     add_cflags    $(get_safe ${pkg}_cflags)
1210     add_extralibs $(get_safe ${pkg}_libs)
1211 }
1212
1213 require_libfreetype(){
1214     log require_libfreetype "$@"
1215     pkg="freetype2"
1216     check_cmd $pkg_config --exists --print-errors $pkg \
1217       || die "ERROR: $pkg not found"
1218     pkg_cflags=$($pkg_config --cflags $pkg_config_flags $pkg)
1219     pkg_libs=$($pkg_config --libs $pkg_config_flags $pkg)
1220     {
1221         echo "#include <ft2build.h>"
1222         echo "#include FT_FREETYPE_H"
1223         echo "long check_func(void) { return (long) FT_Init_FreeType; }"
1224         echo "int main(void) { return 0; }"
1225     } | check_ld "cc" $pkg_cflags $pkg_libs \
1226       && set_safe ${pkg}_cflags $pkg_cflags \
1227       && set_safe ${pkg}_libs   $pkg_libs \
1228       || die "ERROR: $pkg not found"
1229     add_cflags    $(get_safe ${pkg}_cflags)
1230     add_extralibs $(get_safe ${pkg}_libs)
1231 }
1232
1233 hostcc_e(){
1234     eval printf '%s\\n' $HOSTCC_E
1235 }
1236
1237 hostcc_o(){
1238     eval printf '%s\\n' $HOSTCC_O
1239 }
1240
1241 check_host_cc(){
1242     log check_host_cc "$@"
1243     cat > $TMPC
1244     log_file $TMPC
1245     check_cmd $host_cc $host_cflags "$@" $HOSTCC_C $(hostcc_o $TMPO) $TMPC
1246 }
1247
1248 check_host_cpp(){
1249     log check_host_cpp "$@"
1250     cat > $TMPC
1251     log_file $TMPC
1252     check_cmd $host_cc $host_cppflags $host_cflags "$@" $(hostcc_e $TMPO) $TMPC
1253 }
1254
1255 check_host_cppflags(){
1256     log check_host_cppflags "$@"
1257     check_host_cc "$@" <<EOF && append host_cppflags "$@"
1258 int x;
1259 EOF
1260 }
1261
1262 check_host_cflags(){
1263     log check_host_cflags "$@"
1264     set -- $($host_cflags_filter "$@")
1265     check_host_cc "$@" <<EOF && append host_cflags "$@"
1266 int x;
1267 EOF
1268 }
1269
1270 check_host_cpp_condition(){
1271     log check_host_cpp_condition "$@"
1272     header=$1
1273     condition=$2
1274     shift 2
1275     check_host_cpp "$@" <<EOF
1276 #include <$header>
1277 #if !($condition)
1278 #error "unsatisfied condition: $condition"
1279 #endif
1280 EOF
1281 }
1282
1283 apply(){
1284     file=$1
1285     shift
1286     "$@" < "$file" > "$file.tmp" && mv "$file.tmp" "$file" || rm "$file.tmp"
1287 }
1288
1289 cp_if_changed(){
1290     cmp -s "$1" "$2" && echo "$2 is unchanged" && return
1291     mkdir -p "$(dirname $2)"
1292     $cp_f "$1" "$2"
1293 }
1294
1295 # CONFIG_LIST contains configurable options, while HAVE_LIST is for
1296 # system-dependent things.
1297
1298 COMPONENT_LIST="
1299     bsfs
1300     decoders
1301     demuxers
1302     encoders
1303     filters
1304     hwaccels
1305     indevs
1306     muxers
1307     outdevs
1308     parsers
1309     protocols
1310 "
1311
1312 EXAMPLE_LIST="
1313     avio_reading_example
1314     decoding_encoding_example
1315     demuxing_decoding_example
1316     extract_mvs_example
1317     filter_audio_example
1318     filtering_audio_example
1319     filtering_video_example
1320     metadata_example
1321     muxing_example
1322     remuxing_example
1323     resampling_audio_example
1324     scaling_video_example
1325     transcode_aac_example
1326     transcoding_example
1327 "
1328
1329 EXTERNAL_LIBRARY_LIST="
1330     avisynth
1331     bzlib
1332     crystalhd
1333     decklink
1334     frei0r
1335     gnutls
1336     iconv
1337     ladspa
1338     libaacplus
1339     libass
1340     libbluray
1341     libbs2b
1342     libcaca
1343     libcdio
1344     libcelt
1345     libdc1394
1346     libfaac
1347     libfdk_aac
1348     libflite
1349     libfontconfig
1350     libfreetype
1351     libfribidi
1352     libgme
1353     libgsm
1354     libiec61883
1355     libilbc
1356     libmodplug
1357     libmp3lame
1358     libnut
1359     libopencore_amrnb
1360     libopencore_amrwb
1361     libopencv
1362     libopenjpeg
1363     libopus
1364     libpulse
1365     libquvi
1366     librtmp
1367     libschroedinger
1368     libshine
1369     libsmbclient
1370     libsoxr
1371     libspeex
1372     libssh
1373     libstagefright_h264
1374     libtheora
1375     libtwolame
1376     libutvideo
1377     libv4l2
1378     libvidstab
1379     libvo_aacenc
1380     libvo_amrwbenc
1381     libvorbis
1382     libvpx
1383     libwavpack
1384     libwebp
1385     libx264
1386     libx265
1387     libxavs
1388     libxcb
1389     libxcb_shm
1390     libxcb_shape
1391     libxcb_xfixes
1392     libxvid
1393     libzmq
1394     libzvbi
1395     lzma
1396     openal
1397     opencl
1398     opengl
1399     openssl
1400     sdl
1401     x11grab
1402     xlib
1403     zlib
1404 "
1405
1406 DOCUMENT_LIST="
1407     doc
1408     htmlpages
1409     manpages
1410     podpages
1411     txtpages
1412 "
1413
1414 FEATURE_LIST="
1415     ftrapv
1416     gray
1417     hardcoded_tables
1418     runtime_cpudetect
1419     safe_bitstream_reader
1420     shared
1421     small
1422     static
1423     swscale_alpha
1424 "
1425
1426 HWACCEL_LIST="
1427     dxva2
1428     vaapi
1429     vda
1430     vdpau
1431     xvmc
1432 "
1433
1434 LIBRARY_LIST="
1435     avcodec
1436     avdevice
1437     avfilter
1438     avformat
1439     avresample
1440     avutil
1441     postproc
1442     swresample
1443     swscale
1444 "
1445
1446 LICENSE_LIST="
1447     gpl
1448     nonfree
1449     version3
1450 "
1451
1452 PROGRAM_LIST="
1453     ffplay
1454     ffprobe
1455     ffserver
1456     ffmpeg
1457 "
1458
1459 SUBSYSTEM_LIST="
1460     dct
1461     dwt
1462     error_resilience
1463     faan
1464     fast_unaligned
1465     fft
1466     lsp
1467     lzo
1468     mdct
1469     pixelutils
1470     network
1471     rdft
1472 "
1473
1474 CONFIG_LIST="
1475     $COMPONENT_LIST
1476     $DOCUMENT_LIST
1477     $EXAMPLE_LIST
1478     $EXTERNAL_LIBRARY_LIST
1479     $FEATURE_LIST
1480     $HWACCEL_LIST
1481     $LICENSE_LIST
1482     $LIBRARY_LIST
1483     $PROGRAM_LIST
1484     $SUBSYSTEM_LIST
1485     fontconfig
1486     incompatible_libav_abi
1487     memalign_hack
1488     memory_poisoning
1489     neon_clobber_test
1490     pic
1491     pod2man
1492     raise_major
1493     thumb
1494     xmm_clobber_test
1495 "
1496
1497 THREADS_LIST="
1498     pthreads
1499     os2threads
1500     w32threads
1501 "
1502
1503 ATOMICS_LIST="
1504     atomics_gcc
1505     atomics_suncc
1506     atomics_win32
1507 "
1508
1509 ARCH_LIST="
1510     aarch64
1511     alpha
1512     arm
1513     avr32
1514     avr32_ap
1515     avr32_uc
1516     bfin
1517     ia64
1518     m68k
1519     mips
1520     mips64
1521     parisc
1522     ppc
1523     ppc64
1524     s390
1525     sh4
1526     sparc
1527     sparc64
1528     tilegx
1529     tilepro
1530     tomi
1531     x86
1532     x86_32
1533     x86_64
1534 "
1535
1536 ARCH_EXT_LIST_ARM="
1537     armv5te
1538     armv6
1539     armv6t2
1540     armv8
1541     neon
1542     vfp
1543     vfpv3
1544     setend
1545 "
1546
1547 ARCH_EXT_LIST_MIPS="
1548     mipsfpu
1549     mips32r2
1550     mipsdspr1
1551     mipsdspr2
1552 "
1553
1554 ARCH_EXT_LIST_X86_SIMD="
1555     amd3dnow
1556     amd3dnowext
1557     avx
1558     avx2
1559     fma3
1560     fma4
1561     mmx
1562     mmxext
1563     sse
1564     sse2
1565     sse3
1566     sse4
1567     sse42
1568     ssse3
1569     xop
1570 "
1571
1572 ARCH_EXT_LIST_PPC="
1573     altivec
1574     dcbzl
1575     ldbrx
1576     ppc4xx
1577     vsx
1578 "
1579
1580 ARCH_EXT_LIST_X86="
1581     $ARCH_EXT_LIST_X86_SIMD
1582     cpunop
1583     i686
1584 "
1585
1586 ARCH_EXT_LIST="
1587     $ARCH_EXT_LIST_ARM
1588     $ARCH_EXT_LIST_PPC
1589     $ARCH_EXT_LIST_X86
1590     $ARCH_EXT_LIST_MIPS
1591     loongson
1592 "
1593
1594 ARCH_FEATURES="
1595     aligned_stack
1596     fast_64bit
1597     fast_clz
1598     fast_cmov
1599     local_aligned_8
1600     local_aligned_16
1601     local_aligned_32
1602     simd_align_16
1603 "
1604
1605 BUILTIN_LIST="
1606     atomic_cas_ptr
1607     atomic_compare_exchange
1608     machine_rw_barrier
1609     MemoryBarrier
1610     mm_empty
1611     rdtsc
1612     sarestart
1613     sync_val_compare_and_swap
1614 "
1615 HAVE_LIST_CMDLINE="
1616     inline_asm
1617     symver
1618     yasm
1619 "
1620
1621 HAVE_LIST_PUB="
1622     bigendian
1623     fast_unaligned
1624     incompatible_libav_abi
1625 "
1626
1627 HEADERS_LIST="
1628     alsa_asoundlib_h
1629     altivec_h
1630     arpa_inet_h
1631     asm_types_h
1632     cdio_paranoia_h
1633     cdio_paranoia_paranoia_h
1634     CL_cl_h
1635     dev_bktr_ioctl_bt848_h
1636     dev_bktr_ioctl_meteor_h
1637     dev_ic_bt8xx_h
1638     dev_video_bktr_ioctl_bt848_h
1639     dev_video_meteor_ioctl_meteor_h
1640     direct_h
1641     dlfcn_h
1642     dxva_h
1643     ES2_gl_h
1644     gsm_h
1645     io_h
1646     mach_mach_time_h
1647     machine_ioctl_bt848_h
1648     machine_ioctl_meteor_h
1649     malloc_h
1650     openjpeg_1_5_openjpeg_h
1651     OpenGL_gl3_h
1652     poll_h
1653     sndio_h
1654     soundcard_h
1655     sys_mman_h
1656     sys_param_h
1657     sys_resource_h
1658     sys_select_h
1659     sys_soundcard_h
1660     sys_time_h
1661     sys_un_h
1662     sys_videoio_h
1663     termios_h
1664     udplite_h
1665     unistd_h
1666     windows_h
1667     winsock2_h
1668 "
1669
1670 INTRINSICS_LIST="
1671     intrinsics_neon
1672 "
1673
1674 MATH_FUNCS="
1675     atanf
1676     atan2f
1677     cbrt
1678     cbrtf
1679     cosf
1680     exp2
1681     exp2f
1682     expf
1683     isinf
1684     isnan
1685     ldexpf
1686     llrint
1687     llrintf
1688     log2
1689     log2f
1690     log10f
1691     lrint
1692     lrintf
1693     powf
1694     rint
1695     round
1696     roundf
1697     sinf
1698     trunc
1699     truncf
1700 "
1701
1702 SYSTEM_FUNCS="
1703     access
1704     aligned_malloc
1705     clock_gettime
1706     closesocket
1707     CommandLineToArgvW
1708     CoTaskMemFree
1709     CryptGenRandom
1710     dlopen
1711     fcntl
1712     flt_lim
1713     fork
1714     getaddrinfo
1715     gethrtime
1716     getopt
1717     GetProcessAffinityMask
1718     GetProcessMemoryInfo
1719     GetProcessTimes
1720     getrusage
1721     getservbyport
1722     GetSystemTimeAsFileTime
1723     gettimeofday
1724     glob
1725     glXGetProcAddress
1726     gmtime_r
1727     inet_aton
1728     isatty
1729     jack_port_get_latency_range
1730     kbhit
1731     localtime_r
1732     lzo1x_999_compress
1733     mach_absolute_time
1734     MapViewOfFile
1735     MoveFileExA
1736     memalign
1737     mkstemp
1738     mmap
1739     mprotect
1740     nanosleep
1741     PeekNamedPipe
1742     posix_memalign
1743     pthread_cancel
1744     sched_getaffinity
1745     SetConsoleTextAttribute
1746     setmode
1747     setrlimit
1748     Sleep
1749     strerror_r
1750     sysconf
1751     sysctl
1752     usleep
1753     VirtualAlloc
1754     wglGetProcAddress
1755 "
1756
1757 TOOLCHAIN_FEATURES="
1758     as_dn_directive
1759     as_func
1760     asm_mod_q
1761     attribute_may_alias
1762     attribute_packed
1763     ebp_available
1764     ebx_available
1765     gnu_as
1766     gnu_windres
1767     ibm_asm
1768     inline_asm_labels
1769     inline_asm_nonlocal_labels
1770     inline_asm_direct_symbol_refs
1771     pragma_deprecated
1772     rsync_contimeout
1773     symver_asm_label
1774     symver_gnu_asm
1775     vfp_args
1776     xform_asm
1777     xmm_clobbers
1778 "
1779
1780 TYPES_LIST="
1781     CONDITION_VARIABLE_Ptr
1782     socklen_t
1783     struct_addrinfo
1784     struct_group_source_req
1785     struct_ip_mreq_source
1786     struct_ipv6_mreq
1787     struct_pollfd
1788     struct_rusage_ru_maxrss
1789     struct_sctp_event_subscribe
1790     struct_sockaddr_in6
1791     struct_sockaddr_sa_len
1792     struct_sockaddr_storage
1793     struct_stat_st_mtim_tv_nsec
1794     struct_v4l2_frmivalenum_discrete
1795 "
1796
1797 HAVE_LIST="
1798     $ARCH_EXT_LIST
1799     $(add_suffix _external $ARCH_EXT_LIST)
1800     $(add_suffix _inline   $ARCH_EXT_LIST)
1801     $ARCH_FEATURES
1802     $ATOMICS_LIST
1803     $BUILTIN_LIST
1804     $HAVE_LIST_CMDLINE
1805     $HAVE_LIST_PUB
1806     $HEADERS_LIST
1807     $INTRINSICS_LIST
1808     $MATH_FUNCS
1809     $SYSTEM_FUNCS
1810     $THREADS_LIST
1811     $TOOLCHAIN_FEATURES
1812     $TYPES_LIST
1813     atomics_native
1814     dos_paths
1815     dxva2api_cobj
1816     dxva2_lib
1817     libc_msvcrt
1818     libdc1394_1
1819     libdc1394_2
1820     makeinfo
1821     makeinfo_html
1822     perl
1823     pod2man
1824     sdl
1825     texi2html
1826     threads
1827     vdpau_x11
1828     xlib
1829 "
1830
1831 # options emitted with CONFIG_ prefix but not available on the command line
1832 CONFIG_EXTRA="
1833     aandcttables
1834     ac3dsp
1835     audio_frame_queue
1836     audiodsp
1837     blockdsp
1838     bswapdsp
1839     cabac
1840     dvprofile
1841     exif
1842     faandct
1843     faanidct
1844     fdctdsp
1845     frame_thread_encoder
1846     gcrypt
1847     golomb
1848     gplv3
1849     h263dsp
1850     h264chroma
1851     h264dsp
1852     h264pred
1853     h264qpel
1854     hpeldsp
1855     huffman
1856     huffyuvdsp
1857     huffyuvencdsp
1858     idctdsp
1859     iirfilter
1860     intrax8
1861     lgplv3
1862     llauddsp
1863     llviddsp
1864     lpc
1865     me_cmp
1866     mpeg_er
1867     mpegaudio
1868     mpegaudiodsp
1869     mpegvideo
1870     mpegvideoenc
1871     nettle
1872     pixblockdsp
1873     qpeldsp
1874     rangecoder
1875     riffdec
1876     riffenc
1877     rtpdec
1878     rtpenc_chain
1879     sinewin
1880     startcode
1881     tpeldsp
1882     videodsp
1883     vp3dsp
1884     wma_freqs
1885 "
1886
1887 CMDLINE_SELECT="
1888     $ARCH_EXT_LIST
1889     $CONFIG_LIST
1890     $HAVE_LIST_CMDLINE
1891     $THREADS_LIST
1892     asm
1893     cross_compile
1894     debug
1895     extra_warnings
1896     logging
1897     lto
1898     optimizations
1899     rpath
1900     stripping
1901 "
1902
1903 PATHS_LIST="
1904     bindir
1905     datadir
1906     docdir
1907     incdir
1908     libdir
1909     mandir
1910     prefix
1911     shlibdir
1912 "
1913
1914 CMDLINE_SET="
1915     $PATHS_LIST
1916     ar
1917     arch
1918     as
1919     assert_level
1920     build_suffix
1921     cc
1922     cpu
1923     cross_prefix
1924     cxx
1925     dep_cc
1926     doxygen
1927     extra_version
1928     gas
1929     host_cc
1930     host_cflags
1931     host_ld
1932     host_ldflags
1933     host_libs
1934     host_os
1935     install
1936     ld
1937     logfile
1938     malloc_prefix
1939     nm
1940     optflags
1941     pkg_config
1942     pkg_config_flags
1943     progs_suffix
1944     random_seed
1945     ranlib
1946     samples
1947     strip
1948     sws_max_filter_size
1949     sysinclude
1950     sysroot
1951     target_exec
1952     target_os
1953     target_path
1954     target_samples
1955     tempprefix
1956     toolchain
1957     valgrind
1958     yasmexe
1959 "
1960
1961 CMDLINE_APPEND="
1962     extra_cflags
1963     extra_cxxflags
1964     host_cppflags
1965 "
1966
1967 # code dependency declarations
1968
1969 # architecture extensions
1970
1971 armv5te_deps="arm"
1972 armv6_deps="arm"
1973 armv6t2_deps="arm"
1974 armv8_deps="aarch64"
1975 neon_deps_any="aarch64 arm"
1976 intrinsics_neon_deps="neon"
1977 vfp_deps_any="aarch64 arm"
1978 vfpv3_deps="vfp"
1979 setend_deps="arm"
1980
1981 map 'eval ${v}_inline_deps=inline_asm' $ARCH_EXT_LIST_ARM
1982
1983 mipsfpu_deps="mips"
1984 mips32r2_deps="mips"
1985 mipsdspr1_deps="mips"
1986 mipsdspr2_deps="mips"
1987
1988 altivec_deps="ppc"
1989 ppc4xx_deps="ppc"
1990 vsx_deps="ppc"
1991
1992 cpunop_deps="i686"
1993 x86_64_select="i686"
1994 x86_64_suggest="fast_cmov"
1995
1996 amd3dnow_deps="mmx"
1997 amd3dnowext_deps="amd3dnow"
1998 i686_deps="x86"
1999 mmx_deps="x86"
2000 mmxext_deps="mmx"
2001 sse_deps="mmxext"
2002 sse2_deps="sse"
2003 sse3_deps="sse2"
2004 ssse3_deps="sse3"
2005 sse4_deps="ssse3"
2006 sse42_deps="sse4"
2007 avx_deps="sse42"
2008 xop_deps="avx"
2009 fma3_deps="avx"
2010 fma4_deps="avx"
2011 avx2_deps="avx"
2012
2013 mmx_external_deps="yasm"
2014 mmx_inline_deps="inline_asm"
2015 mmx_suggest="mmx_external mmx_inline"
2016
2017 for ext in $(filter_out mmx $ARCH_EXT_LIST_X86_SIMD); do
2018     eval dep=\$${ext}_deps
2019     eval ${ext}_external_deps='"${dep}_external"'
2020     eval ${ext}_inline_deps='"${dep}_inline"'
2021     eval ${ext}_suggest='"${ext}_external ${ext}_inline"'
2022 done
2023
2024 aligned_stack_if_any="aarch64 ppc x86"
2025 fast_64bit_if_any="aarch64 alpha ia64 mips64 parisc64 ppc64 sparc64 x86_64"
2026 fast_clz_if_any="aarch64 alpha avr32 mips ppc x86"
2027 fast_unaligned_if_any="aarch64 ppc x86"
2028 simd_align_16_if_any="altivec neon sse"
2029
2030 # system capabilities
2031
2032 symver_if_any="symver_asm_label symver_gnu_asm"
2033
2034 # threading support
2035 atomics_gcc_if_any="sync_val_compare_and_swap atomic_compare_exchange"
2036 atomics_suncc_if="atomic_cas_ptr machine_rw_barrier"
2037 atomics_win32_if="MemoryBarrier"
2038 atomics_native_if_any="$ATOMICS_LIST"
2039 w32threads_deps="atomics_native"
2040 threads_if_any="$THREADS_LIST"
2041
2042 # subsystems
2043 dct_select="rdft"
2044 error_resilience_select="me_cmp"
2045 faandct_deps="faan fdctdsp"
2046 faanidct_deps="faan idctdsp"
2047 frame_thread_encoder_deps="encoders threads"
2048 intrax8_select="error_resilience"
2049 mdct_select="fft"
2050 rdft_select="fft"
2051 me_cmp_select="fdctdsp idctdsp pixblockdsp"
2052 mpeg_er_select="error_resilience"
2053 mpegaudio_select="mpegaudiodsp"
2054 mpegaudiodsp_select="dct"
2055 mpegvideo_select="blockdsp h264chroma hpeldsp idctdsp me_cmp videodsp"
2056 mpegvideoenc_select="me_cmp mpegvideo pixblockdsp qpeldsp"
2057
2058 # decoders / encoders
2059 aac_decoder_select="mdct sinewin"
2060 aac_encoder_select="audio_frame_queue iirfilter mdct sinewin"
2061 aac_latm_decoder_select="aac_decoder aac_latm_parser"
2062 ac3_decoder_select="ac3_parser ac3dsp bswapdsp mdct"
2063 ac3_fixed_decoder_select="ac3_parser ac3dsp bswapdsp mdct"
2064 ac3_encoder_select="ac3dsp audiodsp mdct me_cmp"
2065 ac3_fixed_encoder_select="ac3dsp audiodsp mdct me_cmp"
2066 aic_decoder_select="golomb idctdsp"
2067 alac_encoder_select="lpc"
2068 als_decoder_select="bswapdsp"
2069 amrnb_decoder_select="lsp"
2070 amrwb_decoder_select="lsp"
2071 amv_decoder_select="sp5x_decoder exif"
2072 amv_encoder_select="aandcttables mpegvideoenc"
2073 ape_decoder_select="bswapdsp llauddsp"
2074 apng_decoder_select="zlib"
2075 asv1_decoder_select="blockdsp bswapdsp idctdsp"
2076 asv1_encoder_select="bswapdsp fdctdsp pixblockdsp"
2077 asv2_decoder_select="blockdsp bswapdsp idctdsp"
2078 asv2_encoder_select="bswapdsp fdctdsp pixblockdsp"
2079 atrac1_decoder_select="mdct sinewin"
2080 atrac3_decoder_select="mdct"
2081 atrac3p_decoder_select="mdct sinewin"
2082 avrn_decoder_select="exif"
2083 bink_decoder_select="blockdsp hpeldsp"
2084 binkaudio_dct_decoder_select="mdct rdft dct sinewin wma_freqs"
2085 binkaudio_rdft_decoder_select="mdct rdft sinewin wma_freqs"
2086 cavs_decoder_select="blockdsp golomb h264chroma idctdsp qpeldsp videodsp"
2087 cllc_decoder_select="bswapdsp"
2088 comfortnoise_encoder_select="lpc"
2089 cook_decoder_select="audiodsp mdct sinewin"
2090 cscd_decoder_select="lzo"
2091 cscd_decoder_suggest="zlib"
2092 dca_decoder_select="mdct"
2093 dirac_decoder_select="dwt golomb videodsp mpegvideoenc"
2094 dnxhd_decoder_select="blockdsp idctdsp"
2095 dnxhd_encoder_select="aandcttables blockdsp fdctdsp idctdsp mpegvideoenc pixblockdsp"
2096 dvvideo_decoder_select="dvprofile idctdsp"
2097 dvvideo_encoder_select="dvprofile fdctdsp me_cmp pixblockdsp"
2098 dxa_decoder_select="zlib"
2099 eac3_decoder_select="ac3_decoder"
2100 eac3_encoder_select="ac3_encoder"
2101 eamad_decoder_select="aandcttables blockdsp bswapdsp idctdsp mpegvideo"
2102 eatgq_decoder_select="aandcttables"
2103 eatqi_decoder_select="aandcttables blockdsp bswapdsp idctdsp mpeg1video_decoder"
2104 exr_decoder_select="zlib"
2105 ffv1_decoder_select="golomb rangecoder"
2106 ffv1_encoder_select="rangecoder"
2107 ffvhuff_decoder_select="huffyuv_decoder"
2108 ffvhuff_encoder_select="huffyuv_encoder"
2109 fic_decoder_select="golomb"
2110 flac_decoder_select="golomb"
2111 flac_encoder_select="bswapdsp golomb lpc"
2112 flashsv_decoder_select="zlib"
2113 flashsv_encoder_select="zlib"
2114 flashsv2_encoder_select="zlib"
2115 flashsv2_decoder_select="zlib"
2116 flv_decoder_select="h263_decoder"
2117 flv_encoder_select="h263_encoder"
2118 fourxm_decoder_select="blockdsp bswapdsp"
2119 fraps_decoder_select="bswapdsp huffman"
2120 g2m_decoder_select="blockdsp idctdsp zlib"
2121 g729_decoder_select="audiodsp"
2122 h261_decoder_select="mpeg_er mpegvideo"
2123 h261_encoder_select="aandcttables mpegvideoenc"
2124 h263_decoder_select="error_resilience h263_parser h263dsp mpeg_er mpegvideo qpeldsp"
2125 h263_encoder_select="aandcttables h263dsp mpegvideoenc"
2126 h263i_decoder_select="h263_decoder"
2127 h263p_encoder_select="h263_encoder"
2128 h264_decoder_select="cabac golomb h264chroma h264dsp h264pred h264qpel startcode videodsp"
2129 h264_decoder_suggest="error_resilience"
2130 hevc_decoder_select="bswapdsp cabac golomb videodsp"
2131 huffyuv_decoder_select="bswapdsp huffyuvdsp llviddsp"
2132 huffyuv_encoder_select="bswapdsp huffman huffyuvencdsp llviddsp"
2133 iac_decoder_select="imc_decoder"
2134 imc_decoder_select="bswapdsp fft mdct sinewin"
2135 indeo3_decoder_select="hpeldsp"
2136 interplay_video_decoder_select="hpeldsp"
2137 jpegls_decoder_select="golomb mjpeg_decoder"
2138 jpegls_encoder_select="golomb"
2139 jv_decoder_select="blockdsp"
2140 lagarith_decoder_select="huffyuvdsp"
2141 ljpeg_encoder_select="aandcttables idctdsp"
2142 loco_decoder_select="golomb"
2143 mdec_decoder_select="blockdsp idctdsp mpegvideo"
2144 metasound_decoder_select="lsp mdct sinewin"
2145 mimic_decoder_select="blockdsp bswapdsp hpeldsp idctdsp"
2146 mjpeg_decoder_select="blockdsp hpeldsp exif idctdsp"
2147 mjpeg_encoder_select="aandcttables mpegvideoenc"
2148 mjpegb_decoder_select="mjpeg_decoder"
2149 mlp_decoder_select="mlp_parser"
2150 motionpixels_decoder_select="bswapdsp"
2151 mp1_decoder_select="mpegaudio"
2152 mp1float_decoder_select="mpegaudio"
2153 mp2_decoder_select="mpegaudio"
2154 mp2float_decoder_select="mpegaudio"
2155 mp3_decoder_select="mpegaudio"
2156 mp3adu_decoder_select="mpegaudio"
2157 mp3adufloat_decoder_select="mpegaudio"
2158 mp3float_decoder_select="mpegaudio"
2159 mp3on4_decoder_select="mpegaudio"
2160 mp3on4float_decoder_select="mpegaudio"
2161 mpc7_decoder_select="bswapdsp mpegaudiodsp"
2162 mpc8_decoder_select="mpegaudiodsp"
2163 mpeg_xvmc_decoder_deps="X11_extensions_XvMClib_h"
2164 mpeg_xvmc_decoder_select="mpeg2video_decoder"
2165 mpegvideo_decoder_select="error_resilience mpeg_er mpegvideo"
2166 mpeg1video_decoder_select="error_resilience mpeg_er mpegvideo"
2167 mpeg1video_encoder_select="aandcttables mpegvideoenc h263dsp"
2168 mpeg2video_decoder_select="error_resilience mpeg_er mpegvideo"
2169 mpeg2video_encoder_select="aandcttables mpegvideoenc h263dsp"
2170 mpeg4_decoder_select="h263_decoder mpeg4video_parser"
2171 mpeg4_encoder_select="h263_encoder"
2172 msmpeg4v1_decoder_select="h263_decoder"
2173 msmpeg4v2_decoder_select="h263_decoder"
2174 msmpeg4v2_encoder_select="h263_encoder"
2175 msmpeg4v3_decoder_select="h263_decoder"
2176 msmpeg4v3_encoder_select="h263_encoder"
2177 mss2_decoder_select="error_resilience mpeg_er qpeldsp vc1_decoder"
2178 mxpeg_decoder_select="mjpeg_decoder"
2179 nellymoser_decoder_select="mdct sinewin"
2180 nellymoser_encoder_select="audio_frame_queue mdct sinewin"
2181 nuv_decoder_select="idctdsp lzo"
2182 on2avc_decoder_select="mdct"
2183 opus_decoder_deps="swresample"
2184 png_decoder_select="zlib"
2185 png_encoder_select="huffyuvencdsp zlib"
2186 prores_decoder_select="blockdsp idctdsp"
2187 prores_encoder_select="fdctdsp"
2188 qcelp_decoder_select="lsp"
2189 qdm2_decoder_select="mdct rdft mpegaudiodsp"
2190 ra_144_encoder_select="audio_frame_queue lpc audiodsp"
2191 ra_144_decoder_select="audiodsp"
2192 ralf_decoder_select="golomb"
2193 rawvideo_decoder_select="bswapdsp"
2194 rtjpeg_decoder_select="me_cmp"
2195 rv10_decoder_select="error_resilience h263_decoder h263dsp mpeg_er"
2196 rv10_encoder_select="h263_encoder"
2197 rv20_decoder_select="error_resilience h263_decoder h263dsp mpeg_er"
2198 rv20_encoder_select="h263_encoder"
2199 rv30_decoder_select="error_resilience golomb h264chroma h264pred h264qpel mpeg_er mpegvideo videodsp"
2200 rv40_decoder_select="error_resilience golomb h264chroma h264pred h264qpel mpeg_er mpegvideo videodsp"
2201 shorten_decoder_select="golomb"
2202 sipr_decoder_select="lsp"
2203 snow_decoder_select="dwt h264qpel hpeldsp me_cmp rangecoder videodsp"
2204 snow_encoder_select="aandcttables dwt h264qpel hpeldsp me_cmp mpegvideoenc rangecoder"
2205 sonic_decoder_select="golomb rangecoder"
2206 sonic_encoder_select="golomb rangecoder"
2207 sonic_ls_encoder_select="golomb rangecoder"
2208 sp5x_decoder_select="mjpeg_decoder"
2209 svq1_decoder_select="hpeldsp"
2210 svq1_encoder_select="aandcttables hpeldsp me_cmp mpegvideoenc"
2211 svq3_decoder_select="h264_decoder hpeldsp tpeldsp"
2212 svq3_decoder_suggest="zlib"
2213 tak_decoder_select="audiodsp"
2214 theora_decoder_select="vp3_decoder"
2215 thp_decoder_select="mjpeg_decoder"
2216 tiff_decoder_suggest="zlib lzma"
2217 tiff_encoder_suggest="zlib"
2218 truehd_decoder_select="mlp_parser"
2219 truemotion2_decoder_select="bswapdsp"
2220 truespeech_decoder_select="bswapdsp"
2221 tscc_decoder_select="zlib"
2222 twinvq_decoder_select="mdct lsp sinewin"
2223 utvideo_decoder_select="bswapdsp"
2224 utvideo_encoder_select="bswapdsp huffman huffyuvencdsp"
2225 vble_decoder_select="huffyuvdsp"
2226 vc1_decoder_select="blockdsp error_resilience h263_decoder h264chroma h264qpel intrax8 mpeg_er qpeldsp startcode"
2227 vc1image_decoder_select="vc1_decoder"
2228 vorbis_decoder_select="mdct"
2229 vorbis_encoder_select="mdct"
2230 vp3_decoder_select="hpeldsp vp3dsp videodsp"
2231 vp5_decoder_select="h264chroma hpeldsp videodsp vp3dsp"
2232 vp6_decoder_select="h264chroma hpeldsp huffman videodsp vp3dsp"
2233 vp6a_decoder_select="vp6_decoder"
2234 vp6f_decoder_select="vp6_decoder"
2235 vp7_decoder_select="h264pred videodsp"
2236 vp8_decoder_select="h264pred videodsp"
2237 vp9_decoder_select="videodsp vp9_parser"
2238 webp_decoder_select="vp8_decoder"
2239 wmalossless_decoder_select="llauddsp"
2240 wmapro_decoder_select="mdct sinewin wma_freqs"
2241 wmav1_decoder_select="mdct sinewin wma_freqs"
2242 wmav1_encoder_select="mdct sinewin wma_freqs"
2243 wmav2_decoder_select="mdct sinewin wma_freqs"
2244 wmav2_encoder_select="mdct sinewin wma_freqs"
2245 wmavoice_decoder_select="lsp rdft dct mdct sinewin"
2246 wmv1_decoder_select="h263_decoder"
2247 wmv1_encoder_select="h263_encoder"
2248 wmv2_decoder_select="blockdsp h263_decoder idctdsp intrax8 videodsp"
2249 wmv2_encoder_select="h263_encoder"
2250 wmv3_decoder_select="vc1_decoder"
2251 wmv3image_decoder_select="wmv3_decoder"
2252 zerocodec_decoder_select="zlib"
2253 zlib_decoder_select="zlib"
2254 zlib_encoder_select="zlib"
2255 zmbv_decoder_select="zlib"
2256 zmbv_encoder_select="zlib"
2257
2258 # hardware accelerators
2259 crystalhd_deps="libcrystalhd_libcrystalhd_if_h"
2260 dxva2_deps="dxva2api_h"
2261 vaapi_deps="va_va_h"
2262 vda_deps="VideoDecodeAcceleration_VDADecoder_h pthreads"
2263 vda_extralibs="-framework CoreFoundation -framework VideoDecodeAcceleration -framework QuartzCore"
2264 vdpau_deps="vdpau_vdpau_h vdpau_vdpau_x11_h"
2265 xvmc_deps="X11_extensions_XvMClib_h"
2266
2267 h263_vaapi_hwaccel_deps="vaapi"
2268 h263_vaapi_hwaccel_select="h263_decoder"
2269 h263_vdpau_hwaccel_deps="vdpau"
2270 h263_vdpau_hwaccel_select="h263_decoder"
2271 h264_crystalhd_decoder_select="crystalhd h264_mp4toannexb_bsf h264_parser"
2272 h264_dxva2_hwaccel_deps="dxva2"
2273 h264_dxva2_hwaccel_select="h264_decoder"
2274 h264_vaapi_hwaccel_deps="vaapi"
2275 h264_vaapi_hwaccel_select="h264_decoder"
2276 h264_vda_decoder_deps="vda"
2277 h264_vda_decoder_select="h264_decoder"
2278 h264_vda_hwaccel_deps="vda"
2279 h264_vda_hwaccel_select="h264_decoder"
2280 h264_vda_old_hwaccel_deps="vda"
2281 h264_vda_old_hwaccel_select="h264_decoder"
2282 h264_vdpau_decoder_deps="vdpau"
2283 h264_vdpau_decoder_select="h264_decoder"
2284 h264_vdpau_hwaccel_deps="vdpau"
2285 h264_vdpau_hwaccel_select="h264_decoder"
2286 mpeg_vdpau_decoder_deps="vdpau"
2287 mpeg_vdpau_decoder_select="mpeg2video_decoder"
2288 mpeg_xvmc_hwaccel_deps="xvmc"
2289 mpeg_xvmc_hwaccel_select="mpeg2video_decoder"
2290 mpeg1_vdpau_decoder_deps="vdpau"
2291 mpeg1_vdpau_decoder_select="mpeg1video_decoder"
2292 mpeg1_vdpau_hwaccel_deps="vdpau"
2293 mpeg1_vdpau_hwaccel_select="mpeg1video_decoder"
2294 mpeg1_xvmc_hwaccel_deps="xvmc"
2295 mpeg1_xvmc_hwaccel_select="mpeg1video_decoder"
2296 mpeg2_crystalhd_decoder_select="crystalhd"
2297 mpeg2_dxva2_hwaccel_deps="dxva2"
2298 mpeg2_dxva2_hwaccel_select="mpeg2video_decoder"
2299 mpeg2_vaapi_hwaccel_deps="vaapi"
2300 mpeg2_vaapi_hwaccel_select="mpeg2video_decoder"
2301 mpeg2_vdpau_hwaccel_deps="vdpau"
2302 mpeg2_vdpau_hwaccel_select="mpeg2video_decoder"
2303 mpeg2_xvmc_hwaccel_deps="xvmc"
2304 mpeg2_xvmc_hwaccel_select="mpeg2video_decoder"
2305 mpeg4_crystalhd_decoder_select="crystalhd"
2306 mpeg4_vaapi_hwaccel_deps="vaapi"
2307 mpeg4_vaapi_hwaccel_select="mpeg4_decoder"
2308 mpeg4_vdpau_decoder_deps="vdpau"
2309 mpeg4_vdpau_decoder_select="mpeg4_decoder"
2310 mpeg4_vdpau_hwaccel_deps="vdpau"
2311 mpeg4_vdpau_hwaccel_select="mpeg4_decoder"
2312 msmpeg4_crystalhd_decoder_select="crystalhd"
2313 vc1_crystalhd_decoder_select="crystalhd"
2314 vc1_dxva2_hwaccel_deps="dxva2"
2315 vc1_dxva2_hwaccel_select="vc1_decoder"
2316 vc1_vaapi_hwaccel_deps="vaapi"
2317 vc1_vaapi_hwaccel_select="vc1_decoder"
2318 vc1_vdpau_decoder_deps="vdpau"
2319 vc1_vdpau_decoder_select="vc1_decoder"
2320 vc1_vdpau_hwaccel_deps="vdpau"
2321 vc1_vdpau_hwaccel_select="vc1_decoder"
2322 wmv3_crystalhd_decoder_select="crystalhd"
2323 wmv3_dxva2_hwaccel_select="vc1_dxva2_hwaccel"
2324 wmv3_vaapi_hwaccel_select="vc1_vaapi_hwaccel"
2325 wmv3_vdpau_decoder_select="vc1_vdpau_decoder"
2326 wmv3_vdpau_hwaccel_select="vc1_vdpau_hwaccel"
2327
2328 # parsers
2329 h264_parser_select="h264_decoder"
2330 hevc_parser_select="hevc_decoder"
2331 mpegvideo_parser_select="mpegvideo"
2332 mpeg4video_parser_select="error_resilience h263dsp mpeg_er mpegvideo qpeldsp"
2333 vc1_parser_select="mpegvideo startcode vc1_decoder"
2334
2335 # external libraries
2336 libaacplus_encoder_deps="libaacplus"
2337 libcelt_decoder_deps="libcelt"
2338 libfaac_encoder_deps="libfaac"
2339 libfaac_encoder_select="audio_frame_queue"
2340 libfdk_aac_decoder_deps="libfdk_aac"
2341 libfdk_aac_encoder_deps="libfdk_aac"
2342 libfdk_aac_encoder_select="audio_frame_queue"
2343 libgme_demuxer_deps="libgme"
2344 libgsm_decoder_deps="libgsm"
2345 libgsm_encoder_deps="libgsm"
2346 libgsm_ms_decoder_deps="libgsm"
2347 libgsm_ms_encoder_deps="libgsm"
2348 libilbc_decoder_deps="libilbc"
2349 libilbc_encoder_deps="libilbc"
2350 libmodplug_demuxer_deps="libmodplug"
2351 libmp3lame_encoder_deps="libmp3lame"
2352 libmp3lame_encoder_select="audio_frame_queue"
2353 libopencore_amrnb_decoder_deps="libopencore_amrnb"
2354 libopencore_amrnb_encoder_deps="libopencore_amrnb"
2355 libopencore_amrnb_encoder_select="audio_frame_queue"
2356 libopencore_amrwb_decoder_deps="libopencore_amrwb"
2357 libopenjpeg_decoder_deps="libopenjpeg"
2358 libopenjpeg_encoder_deps="libopenjpeg"
2359 libopus_decoder_deps="libopus"
2360 libopus_encoder_deps="libopus"
2361 libopus_encoder_select="audio_frame_queue"
2362 libquvi_demuxer_deps="libquvi"
2363 libschroedinger_decoder_deps="libschroedinger"
2364 libschroedinger_encoder_deps="libschroedinger"
2365 libshine_encoder_deps="libshine"
2366 libshine_encoder_select="audio_frame_queue"
2367 libspeex_decoder_deps="libspeex"
2368 libspeex_encoder_deps="libspeex"
2369 libspeex_encoder_select="audio_frame_queue"
2370 libstagefright_h264_decoder_deps="libstagefright_h264"
2371 libtheora_encoder_deps="libtheora"
2372 libtwolame_encoder_deps="libtwolame"
2373 libvo_aacenc_encoder_deps="libvo_aacenc"
2374 libvo_aacenc_encoder_select="audio_frame_queue"
2375 libvo_amrwbenc_encoder_deps="libvo_amrwbenc"
2376 libvorbis_decoder_deps="libvorbis"
2377 libvorbis_encoder_deps="libvorbis"
2378 libvorbis_encoder_select="audio_frame_queue"
2379 libvpx_vp8_decoder_deps="libvpx"
2380 libvpx_vp8_encoder_deps="libvpx"
2381 libvpx_vp9_decoder_deps="libvpx"
2382 libvpx_vp9_encoder_deps="libvpx"
2383 libwavpack_encoder_deps="libwavpack"
2384 libwebp_encoder_deps="libwebp"
2385 libx264_encoder_deps="libx264"
2386 libx264rgb_encoder_deps="libx264"
2387 libx265_encoder_deps="libx265"
2388 libxavs_encoder_deps="libxavs"
2389 libxvid_encoder_deps="libxvid"
2390 libutvideo_decoder_deps="libutvideo"
2391 libutvideo_encoder_deps="libutvideo"
2392 libzvbi_teletext_decoder_deps="libzvbi"
2393
2394 # demuxers / muxers
2395 ac3_demuxer_select="ac3_parser"
2396 asf_demuxer_select="riffdec"
2397 asf_muxer_select="riffenc"
2398 asf_stream_muxer_select="asf_muxer"
2399 avi_demuxer_select="riffdec exif"
2400 avi_muxer_select="riffenc"
2401 avisynth_demuxer_deps="avisynth"
2402 avisynth_demuxer_select="riffdec"
2403 caf_demuxer_select="riffdec"
2404 dash_muxer_select="mp4_muxer"
2405 dirac_demuxer_select="dirac_parser"
2406 dts_demuxer_select="dca_parser"
2407 dtshd_demuxer_select="dca_parser"
2408 dv_demuxer_select="dvprofile"
2409 dv_muxer_select="dvprofile"
2410 dxa_demuxer_select="riffdec"
2411 eac3_demuxer_select="ac3_parser"
2412 f4v_muxer_select="mov_muxer"
2413 flac_demuxer_select="flac_parser"
2414 hds_muxer_select="flv_muxer"
2415 hls_muxer_select="mpegts_muxer"
2416 image2_alias_pix_demuxer_select="image2_demuxer"
2417 image2_brender_pix_demuxer_select="image2_demuxer"
2418 ipod_muxer_select="mov_muxer"
2419 ismv_muxer_select="mov_muxer"
2420 libnut_demuxer_deps="libnut"
2421 libnut_muxer_deps="libnut"
2422 matroska_audio_muxer_select="matroska_muxer"
2423 matroska_demuxer_select="riffdec"
2424 matroska_demuxer_suggest="bzlib lzo zlib"
2425 matroska_muxer_select="riffenc"
2426 mmf_muxer_select="riffenc"
2427 mov_demuxer_select="riffdec"
2428 mov_demuxer_suggest="zlib"
2429 mov_muxer_select="riffenc rtpenc_chain ac3_parser"
2430 mp3_demuxer_select="mpegaudio_parser"
2431 mp4_muxer_select="mov_muxer"
2432 mpegts_muxer_select="adts_muxer latm_muxer"
2433 mpegtsraw_demuxer_select="mpegts_demuxer"
2434 mxf_d10_muxer_select="mxf_muxer"
2435 nut_muxer_select="riffenc"
2436 nuv_demuxer_select="riffdec"
2437 oga_muxer_select="ogg_muxer"
2438 ogg_demuxer_select="golomb"
2439 opus_muxer_select="ogg_muxer"
2440 psp_muxer_select="mov_muxer"
2441 rtp_demuxer_select="sdp_demuxer"
2442 rtpdec_select="asf_demuxer rm_demuxer rtp_protocol mpegts_demuxer mov_demuxer"
2443 rtsp_demuxer_select="http_protocol rtpdec"
2444 rtsp_muxer_select="rtp_muxer http_protocol rtp_protocol rtpenc_chain"
2445 sap_demuxer_select="sdp_demuxer"
2446 sap_muxer_select="rtp_muxer rtp_protocol rtpenc_chain"
2447 sdp_demuxer_select="rtpdec"
2448 smoothstreaming_muxer_select="ismv_muxer"
2449 spdif_muxer_select="aac_parser"
2450 spx_muxer_select="ogg_muxer"
2451 tak_demuxer_select="tak_parser"
2452 tg2_muxer_select="mov_muxer"
2453 tgp_muxer_select="mov_muxer"
2454 vobsub_demuxer_select="mpegps_demuxer"
2455 w64_demuxer_select="wav_demuxer"
2456 w64_muxer_select="wav_muxer"
2457 wav_demuxer_select="riffdec"
2458 wav_muxer_select="riffenc"
2459 webm_muxer_select="riffenc"
2460 wtv_demuxer_select="riffdec"
2461 wtv_muxer_select="riffenc"
2462 xmv_demuxer_select="riffdec"
2463 xwma_demuxer_select="riffdec"
2464
2465 # indevs / outdevs
2466 alsa_indev_deps="alsa_asoundlib_h snd_pcm_htimestamp"
2467 alsa_outdev_deps="alsa_asoundlib_h"
2468 avfoundation_indev_extralibs="-framework CoreVideo -framework Foundation -framework AVFoundation -framework CoreMedia -framework CoreGraphics"
2469 avfoundation_indev_select="avfoundation"
2470 bktr_indev_deps_any="dev_bktr_ioctl_bt848_h machine_ioctl_bt848_h dev_video_bktr_ioctl_bt848_h dev_ic_bt8xx_h"
2471 caca_outdev_deps="libcaca"
2472 decklink_outdev_deps="decklink pthreads"
2473 decklink_outdev_extralibs="-lstdc++"
2474 decklink_indev_deps="decklink pthreads"
2475 decklink_indev_extralibs="-lstdc++"
2476 dshow_indev_deps="IBaseFilter"
2477 dshow_indev_extralibs="-lpsapi -lole32 -lstrmiids -luuid"
2478 dv1394_indev_deps="dv1394"
2479 dv1394_indev_select="dv_demuxer"
2480 fbdev_indev_deps="linux_fb_h"
2481 fbdev_outdev_deps="linux_fb_h"
2482 gdigrab_indev_deps="CreateDIBSection"
2483 gdigrab_indev_extralibs="-lgdi32"
2484 gdigrab_indev_select="bmp_decoder"
2485 iec61883_indev_deps="libiec61883"
2486 jack_indev_deps="jack_jack_h sem_timedwait"
2487 lavfi_indev_deps="avfilter"
2488 libcdio_indev_deps="libcdio"
2489 libdc1394_indev_deps="libdc1394"
2490 libv4l2_indev_deps="libv4l2"
2491 openal_indev_deps="openal"
2492 opengl_outdev_deps="opengl"
2493 oss_indev_deps_any="soundcard_h sys_soundcard_h"
2494 oss_outdev_deps_any="soundcard_h sys_soundcard_h"
2495 pulse_indev_deps="libpulse"
2496 pulse_outdev_deps="libpulse"
2497 qtkit_indev_extralibs="-framework QTKit -framework Foundation -framework QuartzCore"
2498 qtkit_indev_select="qtkit"
2499 sdl_outdev_deps="sdl"
2500 sndio_indev_deps="sndio_h"
2501 sndio_outdev_deps="sndio_h"
2502 v4l_indev_deps="linux_videodev_h"
2503 v4l2_indev_deps_any="linux_videodev2_h sys_videoio_h"
2504 v4l2_outdev_deps_any="linux_videodev2_h sys_videoio_h"
2505 vfwcap_indev_deps="capCreateCaptureWindow vfwcap_defines"
2506 vfwcap_indev_extralibs="-lavicap32"
2507 xv_outdev_deps="X11_extensions_Xvlib_h XvGetPortAttribute"
2508 xv_outdev_extralibs="-lXv -lX11 -lXext"
2509 x11grab_indev_deps="x11grab"
2510 x11grab_xcb_indev_deps="libxcb"
2511
2512 # protocols
2513 bluray_protocol_deps="libbluray"
2514 ffrtmpcrypt_protocol_deps="!librtmp_protocol"
2515 ffrtmpcrypt_protocol_deps_any="gcrypt nettle openssl"
2516 ffrtmpcrypt_protocol_select="tcp_protocol"
2517 ffrtmphttp_protocol_deps="!librtmp_protocol"
2518 ffrtmphttp_protocol_select="http_protocol"
2519 ftp_protocol_select="tcp_protocol"
2520 gopher_protocol_select="network"
2521 http_protocol_select="tcp_protocol"
2522 httpproxy_protocol_select="tcp_protocol"
2523 https_protocol_select="tls_protocol"
2524 icecast_protocol_select="http_protocol"
2525 librtmp_protocol_deps="librtmp"
2526 librtmpe_protocol_deps="librtmp"
2527 librtmps_protocol_deps="librtmp"
2528 librtmpt_protocol_deps="librtmp"
2529 librtmpte_protocol_deps="librtmp"
2530 libsmbclient_protocol_deps="libsmbclient gplv3"
2531 libssh_protocol_deps="libssh"
2532 mmsh_protocol_select="http_protocol"
2533 mmst_protocol_select="network"
2534 rtmp_protocol_deps="!librtmp_protocol"
2535 rtmp_protocol_select="tcp_protocol"
2536 rtmpe_protocol_select="ffrtmpcrypt_protocol"
2537 rtmps_protocol_deps="!librtmp_protocol"
2538 rtmps_protocol_select="tls_protocol"
2539 rtmpt_protocol_select="ffrtmphttp_protocol"
2540 rtmpte_protocol_select="ffrtmpcrypt_protocol ffrtmphttp_protocol"
2541 rtmpts_protocol_select="ffrtmphttp_protocol https_protocol"
2542 rtp_protocol_select="udp_protocol"
2543 sctp_protocol_deps="struct_sctp_event_subscribe"
2544 sctp_protocol_select="network"
2545 srtp_protocol_select="rtp_protocol"
2546 tcp_protocol_select="network"
2547 tls_protocol_deps_any="openssl gnutls"
2548 tls_protocol_select="tcp_protocol"
2549 udp_protocol_select="network"
2550 udplite_protocol_select="network"
2551 unix_protocol_deps="sys_un_h"
2552 unix_protocol_select="network"
2553
2554 # filters
2555 amovie_filter_deps="avcodec avformat"
2556 aresample_filter_deps="swresample"
2557 ass_filter_deps="libass"
2558 asyncts_filter_deps="avresample"
2559 atempo_filter_deps="avcodec"
2560 atempo_filter_select="rdft"
2561 azmq_filter_deps="libzmq"
2562 blackframe_filter_deps="gpl"
2563 boxblur_filter_deps="gpl"
2564 bs2b_filter_deps="libbs2b"
2565 colormatrix_filter_deps="gpl"
2566 cropdetect_filter_deps="gpl"
2567 delogo_filter_deps="gpl"
2568 deshake_filter_select="pixelutils"
2569 drawtext_filter_deps="libfreetype"
2570 ebur128_filter_deps="gpl"
2571 flite_filter_deps="libflite"
2572 frei0r_filter_deps="frei0r dlopen"
2573 frei0r_filter_extralibs='$ldl'
2574 frei0r_src_filter_deps="frei0r dlopen"
2575 frei0r_src_filter_extralibs='$ldl'
2576 geq_filter_deps="gpl"
2577 histeq_filter_deps="gpl"
2578 hqdn3d_filter_deps="gpl"
2579 interlace_filter_deps="gpl"
2580 kerndeint_filter_deps="gpl"
2581 ladspa_filter_deps="ladspa dlopen"
2582 ladspa_filter_extralibs='$ldl'
2583 mcdeint_filter_deps="avcodec gpl"
2584 movie_filter_deps="avcodec avformat"
2585 mp_filter_deps="gpl avcodec swscale"
2586 mpdecimate_filter_deps="gpl"
2587 mpdecimate_filter_select="pixelutils"
2588 mptestsrc_filter_deps="gpl"
2589 negate_filter_deps="lut_filter"
2590 perspective_filter_deps="gpl"
2591 ocv_filter_deps="libopencv"
2592 owdenoise_filter_deps="gpl"
2593 pan_filter_deps="swresample"
2594 phase_filter_deps="gpl"
2595 pp_filter_deps="gpl postproc"
2596 pullup_filter_deps="gpl"
2597 removelogo_filter_deps="avcodec avformat swscale"
2598 resample_filter_deps="avresample"
2599 sab_filter_deps="gpl swscale"
2600 scale_filter_deps="swscale"
2601 select_filter_select="pixelutils"
2602 smartblur_filter_deps="gpl swscale"
2603 showspectrum_filter_deps="avcodec"
2604 showspectrum_filter_select="rdft"
2605 spp_filter_deps="gpl avcodec"
2606 spp_filter_select="fft idctdsp fdctdsp me_cmp pixblockdsp"
2607 stereo3d_filter_deps="gpl"
2608 subtitles_filter_deps="avformat avcodec libass"
2609 super2xsai_filter_deps="gpl"
2610 tinterlace_filter_deps="gpl"
2611 vidstabdetect_filter_deps="libvidstab"
2612 vidstabtransform_filter_deps="libvidstab"
2613 pixfmts_super2xsai_test_deps="super2xsai_filter"
2614 tinterlace_merge_test_deps="tinterlace_filter"
2615 tinterlace_pad_test_deps="tinterlace_filter"
2616 zmq_filter_deps="libzmq"
2617 zoompan_filter_deps="swscale"
2618
2619 # examples
2620 avio_reading="avformat avcodec avutil"
2621 avcodec_example_deps="avcodec avutil"
2622 decoding_encoding_example_deps="avcodec avformat avutil"
2623 demuxing_decoding_example_deps="avcodec avformat avutil"
2624 extract_mvs_example_deps="avcodec avformat avutil"
2625 filter_audio_example_deps="avfilter avutil"
2626 filtering_audio_example_deps="avfilter avcodec avformat avutil"
2627 filtering_video_example_deps="avfilter avcodec avformat avutil"
2628 metadata_example_deps="avformat avutil"
2629 muxing_example_deps="avcodec avformat avutil swscale"
2630 remuxing_example_deps="avcodec avformat avutil"
2631 resampling_audio_example_deps="avutil swresample"
2632 scaling_video_example_deps="avutil swscale"
2633 transcode_aac_example_deps="avcodec avformat swresample"
2634 transcoding_example_deps="avfilter avcodec avformat avutil"
2635
2636 # libraries, in linking order
2637 avcodec_deps="avutil"
2638 avdevice_deps="avformat avcodec avutil"
2639 avfilter_deps="avutil"
2640 avformat_deps="avcodec avutil"
2641 avresample_deps="avutil"
2642 postproc_deps="avutil gpl"
2643 swresample_deps="avutil"
2644 swscale_deps="avutil"
2645
2646 # programs
2647 ffmpeg_deps="avcodec avfilter avformat swresample"
2648 ffmpeg_select="aformat_filter anull_filter atrim_filter format_filter
2649                null_filter
2650                setpts_filter trim_filter"
2651 ffplay_deps="avcodec avformat swscale swresample sdl"
2652 ffplay_libs='$sdl_libs'
2653 ffplay_select="rdft crop_filter transpose_filter hflip_filter vflip_filter rotate_filter"
2654 ffprobe_deps="avcodec avformat"
2655 ffserver_deps="avformat fork sarestart"
2656 ffserver_select="ffm_muxer rtp_protocol rtsp_demuxer"
2657
2658 # documentation
2659 podpages_deps="perl"
2660 manpages_deps="perl pod2man"
2661 htmlpages_deps="perl"
2662 htmlpages_deps_any="makeinfo_html texi2html"
2663 txtpages_deps="perl makeinfo"
2664 doc_deps_any="manpages htmlpages podpages txtpages"
2665
2666 # default parameters
2667
2668 logfile="config.log"
2669
2670 # installation paths
2671 prefix_default="/usr/local"
2672 bindir_default='${prefix}/bin'
2673 datadir_default='${prefix}/share/ffmpeg'
2674 docdir_default='${prefix}/share/doc/ffmpeg'
2675 incdir_default='${prefix}/include'
2676 libdir_default='${prefix}/lib'
2677 mandir_default='${prefix}/share/man'
2678 shlibdir_default="$libdir_default"
2679
2680 # toolchain
2681 ar_default="ar"
2682 cc_default="gcc"
2683 cxx_default="g++"
2684 host_cc_default="gcc"
2685 cp_f="cp -f"
2686 doxygen_default="doxygen"
2687 install="install"
2688 ln_s="ln -s -f"
2689 nm_default="nm -g"
2690 objformat="elf"
2691 pkg_config_default=pkg-config
2692 ranlib_default="ranlib"
2693 strip_default="strip"
2694 yasmexe_default="yasm"
2695 windres_default="windres"
2696
2697 # OS
2698 target_os_default=$(tolower $(uname -s))
2699 host_os=$target_os_default
2700
2701 # machine
2702 if test "$target_os_default" = aix; then
2703     arch_default=$(uname -p)
2704     strip_default="strip -X32_64"
2705 else
2706     arch_default=$(uname -m)
2707 fi
2708 cpu="generic"
2709 intrinsics="none"
2710
2711 # configurable options
2712 enable $PROGRAM_LIST
2713 enable $DOCUMENT_LIST
2714 enable $EXAMPLE_LIST
2715 enable $(filter_out avresample $LIBRARY_LIST)
2716 enable stripping
2717
2718 enable asm
2719 enable debug
2720 enable doc
2721 enable faan faandct faanidct
2722 enable optimizations
2723 enable runtime_cpudetect
2724 enable safe_bitstream_reader
2725 enable static
2726 enable swscale_alpha
2727
2728 sws_max_filter_size_default=256
2729 set_default sws_max_filter_size
2730
2731 # Enable hwaccels by default.
2732 enable dxva2 vaapi vda vdpau xvmc
2733 enable xlib
2734
2735 # build settings
2736 SHFLAGS='-shared -Wl,-soname,$$(@F)'
2737 LIBPREF="lib"
2738 LIBSUF=".a"
2739 FULLNAME='$(NAME)$(BUILDSUF)'
2740 LIBNAME='$(LIBPREF)$(FULLNAME)$(LIBSUF)'
2741 SLIBPREF="lib"
2742 SLIBSUF=".so"
2743 SLIBNAME='$(SLIBPREF)$(FULLNAME)$(SLIBSUF)'
2744 SLIBNAME_WITH_VERSION='$(SLIBNAME).$(LIBVERSION)'
2745 SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)'
2746 LIB_INSTALL_EXTRA_CMD='$$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
2747 SLIB_INSTALL_NAME='$(SLIBNAME_WITH_VERSION)'
2748 SLIB_INSTALL_LINKS='$(SLIBNAME_WITH_MAJOR) $(SLIBNAME)'
2749
2750 asflags_filter=echo
2751 cflags_filter=echo
2752 ldflags_filter=echo
2753
2754 AS_C='-c'
2755 AS_O='-o $@'
2756 CC_C='-c'
2757 CC_E='-E -o $@'
2758 CC_O='-o $@'
2759 CXX_C='-c'
2760 CXX_O='-o $@'
2761 LD_O='-o $@'
2762 LD_LIB='-l%'
2763 LD_PATH='-L'
2764 HOSTCC_C='-c'
2765 HOSTCC_E='-E -o $@'
2766 HOSTCC_O='-o $@'
2767 HOSTLD_O='-o $@'
2768
2769 host_libs='-lm'
2770 host_cflags_filter=echo
2771 host_ldflags_filter=echo
2772
2773 target_path='$(CURDIR)'
2774
2775 # since the object filename is not given with the -MM flag, the compiler
2776 # is only able to print the basename, and we must add the path ourselves
2777 DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(*F)\\.o,$(@D)/$(*F).o," > $(@:.o=.d)'
2778 DEPFLAGS='-MM'
2779
2780 # find source path
2781 if test -f configure; then
2782     source_path=.
2783 else
2784     source_path=$(cd $(dirname "$0"); pwd)
2785     echo "$source_path" | grep -q '[[:blank:]]' &&
2786         die "Out of tree builds are impossible with whitespace in source path."
2787     test -e "$source_path/config.h" &&
2788         die "Out of tree builds are impossible with config.h in source dir."
2789 fi
2790
2791 for v in "$@"; do
2792     r=${v#*=}
2793     l=${v%"$r"}
2794     r=$(sh_quote "$r")
2795     FFMPEG_CONFIGURATION="${FFMPEG_CONFIGURATION# } ${l}${r}"
2796 done
2797
2798 find_things(){
2799     thing=$1
2800     pattern=$2
2801     file=$source_path/$3
2802     sed -n "s/^[^#]*$pattern.*([^,]*, *\([^,]*\)\(,.*\)*).*/\1_$thing/p" "$file"
2803 }
2804
2805 ENCODER_LIST=$(find_things  encoder  ENC      libavcodec/allcodecs.c)
2806 DECODER_LIST=$(find_things  decoder  DEC      libavcodec/allcodecs.c)
2807 HWACCEL_LIST=$(find_things  hwaccel  HWACCEL  libavcodec/allcodecs.c)
2808 PARSER_LIST=$(find_things   parser   PARSER   libavcodec/allcodecs.c)
2809 BSF_LIST=$(find_things      bsf      BSF      libavcodec/allcodecs.c)
2810 MUXER_LIST=$(find_things    muxer    _MUX     libavformat/allformats.c)
2811 DEMUXER_LIST=$(find_things  demuxer  DEMUX    libavformat/allformats.c)
2812 OUTDEV_LIST=$(find_things   outdev   OUTDEV   libavdevice/alldevices.c)
2813 INDEV_LIST=$(find_things    indev    _IN      libavdevice/alldevices.c)
2814 PROTOCOL_LIST=$(find_things protocol PROTOCOL libavformat/allformats.c)
2815 FILTER_LIST=$(find_things   filter   FILTER   libavfilter/allfilters.c)
2816
2817 ALL_COMPONENTS="
2818     $BSF_LIST
2819     $DECODER_LIST
2820     $DEMUXER_LIST
2821     $ENCODER_LIST
2822     $FILTER_LIST
2823     $HWACCEL_LIST
2824     $INDEV_LIST
2825     $MUXER_LIST
2826     $OUTDEV_LIST
2827     $PARSER_LIST
2828     $PROTOCOL_LIST
2829 "
2830
2831 for n in $COMPONENT_LIST; do
2832     v=$(toupper ${n%s})_LIST
2833     eval enable \$$v
2834     eval ${n}_if_any="\$$v"
2835 done
2836
2837 enable $ARCH_EXT_LIST
2838
2839 die_unknown(){
2840     echo "Unknown option \"$1\"."
2841     echo "See $0 --help for available options."
2842     exit 1
2843 }
2844
2845 print_3_columns() {
2846     cat | tr ' ' '\n' | sort | pr -r -3 -t
2847 }
2848
2849 show_list() {
2850     suffix=_$1
2851     shift
2852     echo $* | sed s/$suffix//g | print_3_columns
2853     exit 0
2854 }
2855
2856 rand_list(){
2857     IFS=', '
2858     set -- $*
2859     unset IFS
2860     for thing; do
2861         comp=${thing%:*}
2862         prob=${thing#$comp}
2863         prob=${prob#:}
2864         is_in ${comp} $COMPONENT_LIST && eval comp=\$$(toupper ${comp%s})_LIST
2865         echo "prob ${prob:-0.5}"
2866         printf '%s\n' $comp
2867     done
2868 }
2869
2870 do_random(){
2871     action=$1
2872     shift
2873     random_seed=$(awk "BEGIN { srand($random_seed); print srand() }")
2874     $action $(rand_list "$@" | awk "BEGIN { srand($random_seed) } \$1 == \"prob\" { prob = \$2; next } rand() < prob { print }")
2875 }
2876
2877 for opt do
2878     optval="${opt#*=}"
2879     case "$opt" in
2880         --extra-ldflags=*)
2881             add_ldflags $optval
2882         ;;
2883         --extra-ldexeflags=*)
2884             add_ldexeflags $optval
2885         ;;
2886         --extra-libs=*)
2887             add_extralibs $optval
2888         ;;
2889         --disable-devices)
2890             disable $INDEV_LIST $OUTDEV_LIST
2891         ;;
2892         --enable-debug=*)
2893             debuglevel="$optval"
2894         ;;
2895         --disable-programs)
2896             disable $PROGRAM_LIST
2897         ;;
2898         --disable-everything)
2899             map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
2900         ;;
2901         --disable-all)
2902             map 'eval unset \${$(toupper ${v%s})_LIST}' $COMPONENT_LIST
2903             disable $LIBRARY_LIST $PROGRAM_LIST doc
2904         ;;
2905         --enable-random|--disable-random)
2906             action=${opt%%-random}
2907             do_random ${action#--} $COMPONENT_LIST
2908         ;;
2909         --enable-random=*|--disable-random=*)
2910             action=${opt%%-random=*}
2911             do_random ${action#--} $optval
2912         ;;
2913         --enable-*=*|--disable-*=*)
2914             eval $(echo "${opt%%=*}" | sed 's/--/action=/;s/-/ thing=/')
2915             is_in "${thing}s" $COMPONENT_LIST || die_unknown "$opt"
2916             eval list=\$$(toupper $thing)_LIST
2917             name=$(echo "${optval}" | sed "s/,/_${thing}|/g")_${thing}
2918             list=$(filter "$name" $list)
2919             [ "$list" = "" ] && warn "Option $opt did not match anything"
2920             $action $list
2921         ;;
2922         --enable-?*|--disable-?*)
2923             eval $(echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g')
2924             if is_in $option $COMPONENT_LIST; then
2925                 test $action = disable && action=unset
2926                 eval $action \$$(toupper ${option%s})_LIST
2927             elif is_in $option $CMDLINE_SELECT; then
2928                 $action $option
2929             else
2930                 die_unknown $opt
2931             fi
2932         ;;
2933         --list-*)
2934             NAME="${opt#--list-}"
2935             is_in $NAME $COMPONENT_LIST || die_unknown $opt
2936             NAME=${NAME%s}
2937             eval show_list $NAME \$$(toupper $NAME)_LIST
2938         ;;
2939         --help|-h) show_help
2940         ;;
2941         --fatal-warnings) enable fatal_warnings
2942         ;;
2943         *)
2944             optname="${opt%%=*}"
2945             optname="${optname#--}"
2946             optname=$(echo "$optname" | sed 's/-/_/g')
2947             if is_in $optname $CMDLINE_SET; then
2948                 eval $optname='$optval'
2949             elif is_in $optname $CMDLINE_APPEND; then
2950                 append $optname "$optval"
2951             else
2952                 die_unknown $opt
2953             fi
2954         ;;
2955     esac
2956 done
2957
2958 disabled logging && logfile=/dev/null
2959
2960 echo "# $0 $FFMPEG_CONFIGURATION" > $logfile
2961 set >> $logfile
2962
2963 test -n "$cross_prefix" && enable cross_compile
2964
2965 if enabled cross_compile; then
2966     test -n "$arch" && test -n "$target_os" ||
2967         die "Must specify target arch and OS when cross-compiling"
2968 fi
2969
2970 ar_default="${cross_prefix}${ar_default}"
2971 cc_default="${cross_prefix}${cc_default}"
2972 cxx_default="${cross_prefix}${cxx_default}"
2973 nm_default="${cross_prefix}${nm_default}"
2974 pkg_config_default="${cross_prefix}${pkg_config_default}"
2975 ranlib_default="${cross_prefix}${ranlib_default}"
2976 strip_default="${cross_prefix}${strip_default}"
2977 windres_default="${cross_prefix}${windres_default}"
2978
2979 sysinclude_default="${sysroot}/usr/include"
2980
2981 test -n "$valgrind" && toolchain="valgrind-memcheck"
2982
2983 case "$toolchain" in
2984     clang-asan)
2985         cc_default="clang"
2986         add_cflags  -fsanitize=address
2987         add_ldflags -fsanitize=address
2988     ;;
2989     clang-tsan)
2990         cc_default="clang"
2991         add_cflags  -fsanitize=thread -pie
2992         add_ldflags -fsanitize=thread -pie
2993     ;;
2994     clang-usan)
2995         cc_default="clang"
2996         add_cflags  -fsanitize=undefined
2997         add_ldflags -fsanitize=undefined
2998     ;;
2999     gcc-asan)
3000         cc_default="gcc"
3001         add_cflags  -fsanitize=address
3002         add_ldflags -fsanitize=address
3003     ;;
3004     gcc-tsan)
3005         cc_default="gcc"
3006         add_cflags  -fsanitize=thread -pie -fPIC
3007         add_ldflags -fsanitize=thread -pie -fPIC
3008     ;;
3009     gcc-usan)
3010         cc_default="gcc"
3011         add_cflags  -fsanitize=undefined
3012         add_ldflags -fsanitize=undefined
3013     ;;
3014     valgrind-massif)
3015         target_exec_default=${valgrind:-"valgrind"}
3016         target_exec_args="--tool=massif --alloc-fn=av_malloc --alloc-fn=av_mallocz --alloc-fn=av_calloc --alloc-fn=av_fast_padded_malloc --alloc-fn=av_fast_malloc --alloc-fn=av_realloc_f --alloc-fn=av_fast_realloc --alloc-fn=av_realloc"
3017     ;;
3018     valgrind-memcheck)
3019         target_exec_default=${valgrind:-"valgrind"}
3020         target_exec_args="--error-exitcode=1 --malloc-fill=0x2a --track-origins=yes --leak-check=full --gen-suppressions=all --suppressions=$source_path/tests/fate-valgrind.supp"
3021     ;;
3022     msvc)
3023         # Check whether the current MSVC version needs the C99 converter.
3024         # From MSVC 2013 (compiler major version 18) onwards, it does actually
3025         # support enough of C99 to build ffmpeg. Default to the new
3026         # behaviour if the regexp was unable to match anything, since this
3027         # successfully parses the version number of existing supported
3028         # versions that require the converter (MSVC 2010 and 2012).
3029         cl_major_ver=$(cl 2>&1 | sed -n 's/.*Version \([[:digit:]]\{1,\}\)\..*/\1/p')
3030         if [ -z "$cl_major_ver" ] || [ $cl_major_ver -ge 18 ]; then
3031             cc_default="cl"
3032         else
3033             cc_default="c99wrap cl"
3034         fi
3035         ld_default="link"
3036         nm_default="dumpbin -symbols"
3037         ar_default="lib"
3038         target_os_default="win32"
3039         # Use a relative path for TMPDIR. This makes sure all the
3040         # ffconf temp files are written with a relative path, avoiding
3041         # issues with msys/win32 path conversion for MSVC parameters
3042         # such as -Fo<file> or -out:<file>.
3043         TMPDIR=.
3044     ;;
3045     icl)
3046         cc_default="icl"
3047         ld_default="xilink"
3048         nm_default="dumpbin -symbols"
3049         ar_default="xilib"
3050         target_os_default="win32"
3051         TMPDIR=.
3052     ;;
3053     gcov)
3054         add_cflags  -fprofile-arcs -ftest-coverage
3055         add_ldflags -fprofile-arcs -ftest-coverage
3056     ;;
3057     hardened)
3058         add_cppflags -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2
3059         add_cflags   -fno-strict-overflow -fstack-protector-all
3060         add_ldflags  -Wl,-z,relro -Wl,-z,now
3061     ;;
3062     ?*)
3063         die "Unknown toolchain $toolchain"
3064     ;;
3065 esac
3066
3067 set_default arch cc cxx doxygen pkg_config ranlib strip sysinclude \
3068     target_exec target_os yasmexe
3069 enabled cross_compile || host_cc_default=$cc
3070 set_default host_cc
3071
3072 if ! $pkg_config --version >/dev/null 2>&1; then
3073     warn "$pkg_config not found, library detection may fail."
3074     pkg_config=false
3075 fi
3076
3077 if test $doxygen != $doxygen_default && \
3078   ! $doxygen --version >/dev/null 2>&1; then
3079     warn "Specified doxygen \"$doxygen\" not found, API documentation will fail to build."
3080 fi
3081
3082 exesuf() {
3083     case $1 in
3084         mingw32*|win32|win64|cygwin*|*-dos|freedos|opendos|os/2*|symbian) echo .exe ;;
3085     esac
3086 }
3087
3088 EXESUF=$(exesuf $target_os)
3089 HOSTEXESUF=$(exesuf $host_os)
3090
3091 # set temporary file name
3092 : ${TMPDIR:=$TEMPDIR}
3093 : ${TMPDIR:=$TMP}
3094 : ${TMPDIR:=/tmp}
3095
3096 if [ -n "$tempprefix" ] ; then
3097     mktemp(){
3098         echo $tempprefix.${HOSTNAME}.${UID}
3099     }
3100 elif ! check_cmd mktemp -u XXXXXX; then
3101     # simple replacement for missing mktemp
3102     # NOT SAFE FOR GENERAL USE
3103     mktemp(){
3104         echo "${2%%XXX*}.${HOSTNAME}.${UID}.$$"
3105     }
3106 fi
3107
3108 tmpfile(){
3109     tmp=$(mktemp -u "${TMPDIR}/ffconf.XXXXXXXX")$2 &&
3110         (set -C; exec > $tmp) 2>/dev/null ||
3111         die "Unable to create temporary file in $TMPDIR."
3112     append TMPFILES $tmp
3113     eval $1=$tmp
3114 }
3115
3116 trap 'rm -f -- $TMPFILES' EXIT
3117
3118 tmpfile TMPASM .asm
3119 tmpfile TMPC   .c
3120 tmpfile TMPCPP .cpp
3121 tmpfile TMPE   $EXESUF
3122 tmpfile TMPH   .h
3123 tmpfile TMPM   .m
3124 tmpfile TMPO   .o
3125 tmpfile TMPS   .S
3126 tmpfile TMPSH  .sh
3127 tmpfile TMPV   .ver
3128
3129 unset -f mktemp
3130
3131 chmod +x $TMPE
3132
3133 # make sure we can execute files in $TMPDIR
3134 cat > $TMPSH 2>> $logfile <<EOF
3135 #! /bin/sh
3136 EOF
3137 chmod +x $TMPSH >> $logfile 2>&1
3138 if ! $TMPSH >> $logfile 2>&1; then
3139     cat <<EOF
3140 Unable to create and execute files in $TMPDIR.  Set the TMPDIR environment
3141 variable to another directory and make sure that it is not mounted noexec.
3142 EOF
3143     die "Sanity test failed."
3144 fi
3145
3146 armasm_flags(){
3147     for flag; do
3148         case $flag in
3149             # Filter out MSVC cl.exe options from cflags that shouldn't
3150             # be passed to gas-preprocessor
3151             -M[TD]*)                                            ;;
3152             *)                  echo $flag                      ;;
3153         esac
3154    done
3155 }
3156
3157 ccc_flags(){
3158     for flag; do
3159         case $flag in
3160             -std=c99)           echo -c99                       ;;
3161             -mcpu=*)            echo -arch ${flag#*=}           ;;
3162             -mieee)             echo -ieee                      ;;
3163             -O*|-fast)          echo $flag                      ;;
3164             -fno-math-errno)    echo -assume nomath_errno       ;;
3165             -g)                 echo -g3                        ;;
3166             -Wall)              echo -msg_enable level2         ;;
3167             -Wno-pointer-sign)  echo -msg_disable ptrmismatch1  ;;
3168             -Wl,*)              echo $flag                      ;;
3169             -f*|-W*)                                            ;;
3170             *)                  echo $flag                      ;;
3171         esac
3172    done
3173 }
3174
3175 cparser_flags(){
3176     for flag; do
3177         case $flag in
3178             -Wno-switch)             echo -Wno-switch-enum ;;
3179             -Wno-format-zero-length) ;;
3180             -Wdisabled-optimization) ;;
3181             -Wno-pointer-sign)       echo -Wno-other ;;
3182             *)                       echo $flag ;;
3183         esac
3184     done
3185 }
3186
3187 msvc_common_flags(){
3188     for flag; do
3189         case $flag in
3190             # In addition to specifying certain flags under the compiler
3191             # specific filters, they must be specified here as well or else the
3192             # generic catch all at the bottom will print the original flag.
3193             -Wall)                ;;
3194             -std=c99)             ;;
3195             # Common flags
3196             -fomit-frame-pointer) ;;
3197             -g)                   echo -Z7 ;;
3198             -fno-math-errno)      ;;
3199             -fno-common)          ;;
3200             -fno-signed-zeros)    ;;
3201             -fPIC)                ;;
3202             -mthumb)              ;;
3203             -march=*)             ;;
3204             -lz)                  echo zlib.lib ;;
3205             -lavifil32)           echo vfw32.lib ;;
3206             -lavicap32)           echo vfw32.lib user32.lib ;;
3207             -l*)                  echo ${flag#-l}.lib ;;
3208             *)                    echo $flag ;;
3209         esac
3210     done
3211 }
3212
3213 msvc_flags(){
3214     msvc_common_flags "$@"
3215     for flag; do
3216         case $flag in
3217             -Wall)                echo -W4 -wd4244 -wd4127 -wd4018 -wd4389     \
3218                                        -wd4146 -wd4057 -wd4204 -wd4706 -wd4305 \
3219                                        -wd4152 -wd4324 -we4013 -wd4100 -wd4214 \
3220                                        -wd4554 \
3221                                        -wd4273 -wd4701 ;;
3222         esac
3223     done
3224 }
3225
3226 icl_flags(){
3227     msvc_common_flags "$@"
3228     for flag; do
3229         case $flag in
3230             # Despite what Intel's documentation says -Wall, which is supported
3231             # on Windows, does enable remarks so disable them here.
3232             -Wall)                echo $flag -Qdiag-disable:remark ;;
3233             -std=c99)             echo -Qstd=c99 ;;
3234             -flto)                echo -ipo ;;
3235         esac
3236     done
3237 }
3238
3239 icc_flags(){
3240     for flag; do
3241         case $flag in
3242             -flto)                echo -ipo ;;
3243             *)                    echo $flag ;;
3244         esac
3245     done
3246 }
3247
3248 pgi_flags(){
3249     for flag; do
3250         case $flag in
3251             -flto)                echo -Mipa=fast,libopt,libinline,vestigial ;;
3252             -fomit-frame-pointer) echo -Mnoframe ;;
3253             -g)                   echo -gopt ;;
3254             *)                    echo $flag ;;
3255         esac
3256     done
3257 }
3258
3259 suncc_flags(){
3260     for flag; do
3261         case $flag in
3262             -march=*|-mcpu=*)
3263                 case "${flag#*=}" in
3264                     native)                   echo -xtarget=native       ;;
3265                     v9|niagara)               echo -xarch=sparc          ;;
3266                     ultrasparc)               echo -xarch=sparcvis       ;;
3267                     ultrasparc3|niagara2)     echo -xarch=sparcvis2      ;;
3268                     i586|pentium)             echo -xchip=pentium        ;;
3269                     i686|pentiumpro|pentium2) echo -xtarget=pentium_pro  ;;
3270                     pentium3*|c3-2)           echo -xtarget=pentium3     ;;
3271                     pentium-m)          echo -xarch=sse2 -xchip=pentium3 ;;
3272                     pentium4*)          echo -xtarget=pentium4           ;;
3273                     prescott|nocona)    echo -xarch=sse3 -xchip=pentium4 ;;
3274                     *-sse3)             echo -xarch=sse3                 ;;
3275                     core2)              echo -xarch=ssse3 -xchip=core2   ;;
3276                     bonnell)                   echo -xarch=ssse3         ;;
3277                     corei7|nehalem)            echo -xtarget=nehalem     ;;
3278                     westmere)                  echo -xtarget=westmere    ;;
3279                     silvermont)                echo -xarch=sse4_2        ;;
3280                     corei7-avx|sandybridge)    echo -xtarget=sandybridge ;;
3281                     core-avx*|ivybridge|haswell|broadwell)
3282                                                echo -xarch=avx           ;;
3283                     amdfam10|barcelona)        echo -xtarget=barcelona   ;;
3284                     btver1)                    echo -xarch=amdsse4a      ;;
3285                     btver2|bdver*)             echo -xarch=avx           ;;
3286                     athlon-4|athlon-[mx]p)     echo -xarch=ssea          ;;
3287                     k8|opteron|athlon64|athlon-fx)
3288                                                echo -xarch=sse2a         ;;
3289                     athlon*)                   echo -xarch=pentium_proa  ;;
3290                 esac
3291                 ;;
3292             -std=c99)             echo -xc99              ;;
3293             -fomit-frame-pointer) echo -xregs=frameptr    ;;
3294             -fPIC)                echo -KPIC -xcode=pic32 ;;
3295             -W*,*)                echo $flag              ;;
3296             -f*-*|-W*|-mimpure-text)                      ;;
3297             -shared)              echo -G                 ;;
3298             *)                    echo $flag              ;;
3299         esac
3300     done
3301 }
3302
3303 tms470_flags(){
3304     for flag; do
3305         case $flag in
3306             -march=*|-mcpu=*)
3307                 case "${flag#*=}" in
3308                     armv7-a|cortex-a*)      echo -mv=7a8 ;;
3309                     armv7-r|cortex-r*)      echo -mv=7r4 ;;
3310                     armv7-m|cortex-m*)      echo -mv=7m3 ;;
3311                     armv6*|arm11*)          echo -mv=6   ;;
3312                     armv5*e|arm[79]*e*|arm9[24]6*|arm96*|arm102[26])
3313                                             echo -mv=5e  ;;
3314                     armv4*|arm7*|arm9[24]*) echo -mv=4   ;;
3315                 esac
3316                 ;;
3317             -mfpu=neon)     echo --float_support=vfpv3 --neon ;;
3318             -mfpu=vfp)      echo --float_support=vfpv2        ;;
3319             -mfpu=vfpv3)    echo --float_support=vfpv3        ;;
3320             -mfpu=vfpv3-d16) echo --float_support=vfpv3d16    ;;
3321             -msoft-float)   echo --float_support=vfplib       ;;
3322             -O[0-3]|-mf=*)  echo $flag                        ;;
3323             -g)             echo -g -mn                       ;;
3324             -pds=*)         echo $flag                        ;;
3325             -D*|-I*)        echo $flag                        ;;
3326             --gcc|--abi=*)  echo $flag                        ;;
3327             -me)            echo $flag                        ;;
3328         esac
3329     done
3330 }
3331
3332 probe_cc(){
3333     pfx=$1
3334     _cc=$2
3335
3336     unset _type _ident _cc_c _cc_e _cc_o _flags _cflags
3337     unset _ld_o _ldflags _ld_lib _ld_path
3338     unset _depflags _DEPCMD _DEPFLAGS
3339     _flags_filter=echo
3340
3341     if $_cc --version 2>&1 | grep -q '^GNU assembler'; then
3342         true # no-op to avoid reading stdin in following checks
3343     elif $_cc -v 2>&1 | grep -q '^gcc.*LLVM'; then
3344         _type=llvm_gcc
3345         gcc_extra_ver=$(expr "$($_cc --version | head -n1)" : '.*\((.*)\)')
3346         _ident="llvm-gcc $($_cc -dumpversion) $gcc_extra_ver"
3347         _depflags='-MMD -MF $(@:.o=.d) -MT $@'
3348         _cflags_speed='-O3'
3349         _cflags_size='-Os'
3350     elif $_cc -v 2>&1 | grep -qi ^gcc; then
3351         _type=gcc
3352         gcc_version=$($_cc --version | head -n1)
3353         gcc_basever=$($_cc -dumpversion)
3354         gcc_pkg_ver=$(expr "$gcc_version" : '[^ ]* \(([^)]*)\)')
3355         gcc_ext_ver=$(expr "$gcc_version" : ".*$gcc_pkg_ver $gcc_basever \\(.*\\)")
3356         _ident=$(cleanws "gcc $gcc_basever $gcc_pkg_ver $gcc_ext_ver")
3357         if ! $_cc -dumpversion | grep -q '^2\.'; then
3358             _depflags='-MMD -MF $(@:.o=.d) -MT $@'
3359         fi
3360         _cflags_speed='-O3'
3361         _cflags_size='-Os'
3362     elif $_cc --version 2>/dev/null | grep -q ^icc; then
3363         _type=icc
3364         _ident=$($_cc --version | head -n1)
3365         _depflags='-MMD'
3366         _cflags_speed='-O3'
3367         _cflags_size='-Os'
3368         _cflags_noopt='-O1'
3369         _flags_filter=icc_flags
3370     elif $_cc -v 2>&1 | grep -q xlc; then
3371         _type=xlc
3372         _ident=$($_cc -qversion 2>/dev/null | head -n1)
3373         _cflags_speed='-O5'
3374         _cflags_size='-O5 -qcompact'
3375     elif $_cc -V 2>/dev/null | grep -q Compaq; then
3376         _type=ccc
3377         _ident=$($_cc -V | head -n1 | cut -d' ' -f1-3)
3378         _DEPFLAGS='-M'
3379         _cflags_speed='-fast'
3380         _cflags_size='-O1'
3381         _flags_filter=ccc_flags
3382     elif $_cc --vsn 2>/dev/null | grep -Eq "ARM (C/C\+\+ )?Compiler"; then
3383         test -d "$sysroot" || die "No valid sysroot specified."
3384         _type=armcc
3385         _ident=$($_cc --vsn | grep -i build | head -n1 | sed 's/.*: //')
3386         armcc_conf="$PWD/armcc.conf"
3387         $_cc --arm_linux_configure                 \
3388              --arm_linux_config_file="$armcc_conf" \
3389              --configure_sysroot="$sysroot"        \
3390              --configure_cpp_headers="$sysinclude" >>$logfile 2>&1 ||
3391              die "Error creating armcc configuration file."
3392         $_cc --vsn | grep -q RVCT && armcc_opt=rvct || armcc_opt=armcc
3393         _flags="--arm_linux_config_file=$armcc_conf --translate_gcc"
3394         as_default="${cross_prefix}gcc"
3395         _depflags='-MMD'
3396         _cflags_speed='-O3'
3397         _cflags_size='-Os'
3398     elif $_cc -version 2>/dev/null | grep -Eq 'TMS470|TI ARM'; then
3399         _type=tms470
3400         _ident=$($_cc -version | head -n1 | tr -s ' ')
3401         _flags='--gcc --abi=eabi -me'
3402         _cc_e='-ppl -fe=$@'
3403         _cc_o='-fe=$@'
3404         _depflags='-ppa -ppd=$(@:.o=.d)'
3405         _cflags_speed='-O3 -mf=5'
3406         _cflags_size='-O3 -mf=2'
3407         _flags_filter=tms470_flags
3408     elif $_cc -v 2>&1 | grep -q clang; then
3409         _type=clang
3410         _ident=$($_cc --version | head -n1)
3411         _depflags='-MMD -MF $(@:.o=.d) -MT $@'
3412         _cflags_speed='-O3'
3413         _cflags_size='-Os'
3414     elif $_cc -V 2>&1 | grep -q Sun; then
3415         _type=suncc
3416         _ident=$($_cc -V 2>&1 | head -n1 | cut -d' ' -f 2-)
3417         _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< | sed -e "1s,^.*: ,$@: ," -e "\$$!s,\$$, \\\," -e "1!s,^.*: , ," > $(@:.o=.d)'
3418         _DEPFLAGS='-xM1 -xc99'
3419         _ldflags='-std=c99'
3420         _cflags_speed='-O5'
3421         _cflags_size='-O5 -xspace'
3422         _flags_filter=suncc_flags
3423     elif $_cc -v 2>&1 | grep -q 'PathScale\|Path64'; then
3424         _type=pathscale
3425         _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
3426         _depflags='-MMD -MF $(@:.o=.d) -MT $@'
3427         _cflags_speed='-O2'
3428         _cflags_size='-Os'
3429         _flags_filter='filter_out -Wdisabled-optimization'
3430     elif $_cc -v 2>&1 | grep -q Open64; then
3431         _type=open64
3432         _ident=$($_cc -v 2>&1 | head -n1 | tr -d :)
3433         _depflags='-MMD -MF $(@:.o=.d) -MT $@'
3434         _cflags_speed='-O2'
3435         _cflags_size='-Os'
3436         _flags_filter='filter_out -Wdisabled-optimization|-Wtype-limits|-fno-signed-zeros'
3437     elif $_cc -V 2>&1 | grep -q Portland; then
3438         _type=pgi
3439         _ident="PGI $($_cc -V 2>&1 | awk '/^pgcc/ { print $2; exit }')"
3440         opt_common='-alias=ansi -Mdse -Mlre -Mpre'
3441         _cflags_speed="-O3 -Mautoinline -Munroll=c:4 $opt_common"
3442         _cflags_size="-O2 -Munroll=c:1 $opt_common"
3443         _cflags_noopt="-O"
3444         _flags_filter=pgi_flags
3445     elif $_cc 2>&1 | grep -q 'Microsoft.*ARM.*Assembler'; then
3446         _type=armasm
3447         _ident=$($_cc | head -n1)
3448         # 4509: "This form of conditional instruction is deprecated"
3449         _flags="-nologo -ignore 4509"
3450         _flags_filter=armasm_flags
3451     elif $_cc 2>&1 | grep -q Intel; then
3452         _type=icl
3453         _ident=$($cc 2>&1 | head -n1)
3454         _depflags='-QMMD -QMF$(@:.o=.d) -QMT$@'
3455         # Not only is O3 broken on 13.x+ but it is slower on all previous
3456         # versions (tested) as well.
3457         _cflags_speed="-O2"
3458         _cflags_size="-O1 -Oi" # -O1 without -Oi miscompiles stuff
3459         if $_cc 2>&1 | grep -q Linker; then
3460             _ld_o='-out:$@'
3461         else
3462             _ld_o='-Fe$@'
3463         fi
3464         _cc_o='-Fo$@'
3465         _cc_e='-P'
3466         _flags_filter=icl_flags
3467         _ld_lib='lib%.a'
3468         _ld_path='-libpath:'
3469         # -Qdiag-error to make icl error when seeing certain unknown arguments
3470         _flags='-nologo -Qdiag-error:4044,10157'
3471         # -Qvec- -Qsimd- to prevent miscompilation, -GS, fp:precise for consistency
3472         # with MSVC which enables it by default.
3473         _cflags='-D_USE_MATH_DEFINES -FIstdlib.h -Dstrtoll=_strtoi64 -Qms0 -Qvec- -Qsimd- -GS -fp:precise'
3474         if [ $pfx = hostcc ]; then
3475             append _cflags -Dsnprintf=_snprintf
3476         fi
3477         disable stripping
3478     elif $_cc 2>&1 | grep -q Microsoft; then
3479         _type=msvc
3480         _ident=$($cc 2>&1 | head -n1)
3481         _DEPCMD='$(DEP$(1)) $(DEP$(1)FLAGS) $($(1)DEP_FLAGS) $< 2>&1 | awk '\''/including/ { sub(/^.*file: */, ""); gsub(/\\/, "/"); if (!match($$0, / /)) print "$@:", $$0 }'\'' > $(@:.o=.d)'
3482         _DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -showIncludes -Zs'
3483         _cflags_speed="-O2"
3484         _cflags_size="-O1"
3485         if $_cc 2>&1 | grep -q Linker; then
3486             _ld_o='-out:$@'
3487         else
3488             _ld_o='-Fe$@'
3489         fi
3490         _cc_o='-Fo$@'
3491         _cc_e='-P -Fi$@'
3492         _flags_filter=msvc_flags
3493         _ld_lib='lib%.a'
3494         _ld_path='-libpath:'
3495         _flags='-nologo'
3496         _cflags='-D_USE_MATH_DEFINES -D_CRT_SECURE_NO_WARNINGS -Dinline=__inline -FIstdlib.h -Dstrtoll=_strtoi64'
3497         if [ $pfx = hostcc ]; then
3498             append _cflags -Dsnprintf=_snprintf
3499         fi
3500         disable stripping
3501     elif $_cc --version 2>/dev/null | grep -q ^cparser; then
3502         _type=cparser
3503         _ident=$($_cc --version | head -n1)
3504         _depflags='-MMD'
3505         _cflags_speed='-O4'
3506         _cflags_size='-O2'
3507         _flags_filter=cparser_flags
3508     fi
3509
3510     eval ${pfx}_type=\$_type
3511     eval ${pfx}_ident=\$_ident
3512 }
3513
3514 set_ccvars(){
3515     eval ${1}_C=\${_cc_c-\${${1}_C}}
3516     eval ${1}_E=\${_cc_e-\${${1}_E}}
3517     eval ${1}_O=\${_cc_o-\${${1}_O}}
3518
3519     if [ -n "$_depflags" ]; then
3520         eval ${1}_DEPFLAGS=\$_depflags
3521     else
3522         eval ${1}DEP=\${_DEPCMD:-\$DEPCMD}
3523         eval ${1}DEP_FLAGS=\${_DEPFLAGS:-\$DEPFLAGS}
3524         eval DEP${1}FLAGS=\$_flags
3525     fi
3526 }
3527
3528 probe_cc cc "$cc"
3529 cflags_filter=$_flags_filter
3530 cflags_speed=$_cflags_speed
3531 cflags_size=$_cflags_size
3532 cflags_noopt=$_cflags_noopt
3533 add_cflags $_flags $_cflags
3534 cc_ldflags=$_ldflags
3535 set_ccvars CC
3536
3537 probe_cc hostcc "$host_cc"
3538 host_cflags_filter=$_flags_filter
3539 add_host_cflags  $_flags $_cflags
3540 set_ccvars HOSTCC
3541
3542 test -n "$cc_type" && enable $cc_type ||
3543     warn "Unknown C compiler $cc, unable to select optimal CFLAGS"
3544
3545 : ${as_default:=$cc}
3546 : ${dep_cc_default:=$cc}
3547 : ${ld_default:=$cc}
3548 : ${host_ld_default:=$host_cc}
3549 set_default ar as dep_cc ld host_ld windres
3550
3551 probe_cc as "$as"
3552 asflags_filter=$_flags_filter
3553 add_asflags $_flags $_cflags
3554 set_ccvars AS
3555
3556 probe_cc ld "$ld"
3557 ldflags_filter=$_flags_filter
3558 add_ldflags $_flags $_ldflags
3559 test "$cc_type" != "$ld_type" && add_ldflags $cc_ldflags
3560 LD_O=${_ld_o-$LD_O}
3561 LD_LIB=${_ld_lib-$LD_LIB}
3562 LD_PATH=${_ld_path-$LD_PATH}
3563
3564 probe_cc hostld "$host_ld"
3565 host_ldflags_filter=$_flags_filter
3566 add_host_ldflags $_flags $_ldflags
3567 HOSTLD_O=${_ld_o-$HOSTLD_O}
3568
3569 if [ -z "$CC_DEPFLAGS" ] && [ "$dep_cc" != "$cc" ]; then
3570     probe_cc depcc "$dep_cc"
3571     CCDEP=${_DEPCMD:-$DEPCMD}
3572     CCDEP_FLAGS=${_DEPFLAGS:=$DEPFLAGS}
3573     DEPCCFLAGS=$_flags
3574 fi
3575
3576 if $ar 2>&1 | grep -q Microsoft; then
3577     arflags="-nologo"
3578     ar_o='-out:$@'
3579 elif $ar 2>&1 | grep -q 'Texas Instruments'; then
3580     arflags="rq"
3581     ar_o='$@'
3582 elif $ar 2>&1 | grep -q 'Usage: ar.*-X.*any'; then
3583     arflags='-Xany -r -c'
3584     ar_o='$@'
3585 else
3586     arflags="rc"
3587     ar_o='$@'
3588 fi
3589
3590 add_cflags $extra_cflags
3591 add_cxxflags $extra_cxxflags
3592 add_asflags $extra_cflags
3593
3594 if test -n "$sysroot"; then
3595     case "$cc_type" in
3596         gcc|llvm_gcc|clang)
3597             add_cppflags --sysroot="$sysroot"
3598             add_ldflags --sysroot="$sysroot"
3599 # On Darwin --sysroot may be ignored, -isysroot always affects headers and linking
3600             add_cppflags -isysroot "$sysroot"
3601             add_ldflags -isysroot "$sysroot"
3602         ;;
3603         tms470)
3604             add_cppflags -I"$sysinclude"
3605             add_ldflags  --sysroot="$sysroot"
3606         ;;
3607     esac
3608 fi
3609
3610 if test "$cpu" = host; then
3611     enabled cross_compile &&
3612         die "--cpu=host makes no sense when cross-compiling."
3613
3614     case "$cc_type" in
3615         gcc|llvm_gcc)
3616             check_native(){
3617                 $cc $1=native -v -c -o $TMPO $TMPC >$TMPE 2>&1 || return
3618                 sed -n "/cc1.*$1=/{
3619                             s/.*$1=\\([^ ]*\\).*/\\1/
3620                             p
3621                             q
3622                         }" $TMPE
3623             }
3624             cpu=$(check_native -march || check_native -mcpu)
3625         ;;
3626     esac
3627
3628     test "${cpu:-host}" = host &&
3629         die "--cpu=host not supported with compiler $cc"
3630 fi
3631
3632 # Deal with common $arch aliases
3633 case "$arch" in
3634     aarch64|arm64)
3635         arch="aarch64"
3636     ;;
3637     arm*|iPad*|iPhone*)
3638         arch="arm"
3639     ;;
3640     mips*|IP*)
3641         arch="mips"
3642     ;;
3643     parisc*|hppa*)
3644         arch="parisc"
3645     ;;
3646     "Power Macintosh"|ppc*|powerpc*)
3647         arch="ppc"
3648     ;;
3649     s390|s390x)
3650         arch="s390"
3651     ;;
3652     sh4|sh)
3653         arch="sh4"
3654     ;;
3655     sun4u|sparc*)
3656         arch="sparc"
3657     ;;
3658     tilegx|tile-gx)
3659         arch="tilegx"
3660     ;;
3661     i[3-6]86*|i86pc|BePC|x86pc|x86_64|x86_32|amd64)
3662         arch="x86"
3663     ;;
3664 esac
3665
3666 is_in $arch $ARCH_LIST || warn "unknown architecture $arch"
3667 enable $arch
3668
3669 # Add processor-specific flags
3670 if enabled aarch64; then
3671
3672     case $cpu in
3673         armv*)
3674             cpuflags="-march=$cpu"
3675         ;;
3676         *)
3677             cpuflags="-mcpu=$cpu"
3678         ;;
3679     esac
3680
3681 elif enabled alpha; then
3682
3683     cpuflags="-mcpu=$cpu"
3684
3685 elif enabled arm; then
3686
3687     check_arm_arch() {
3688         check_cpp_condition stddef.h \
3689             "defined __ARM_ARCH_${1}__ || defined __TARGET_ARCH_${2:-$1}" \
3690             $cpuflags
3691     }
3692
3693     probe_arm_arch() {
3694         if   check_arm_arch 4;        then echo armv4;
3695         elif check_arm_arch 4T;       then echo armv4t;
3696         elif check_arm_arch 5;        then echo armv5;
3697         elif check_arm_arch 5E;       then echo armv5e;
3698         elif check_arm_arch 5T;       then echo armv5t;
3699         elif check_arm_arch 5TE;      then echo armv5te;
3700         elif check_arm_arch 5TEJ;     then echo armv5te;
3701         elif check_arm_arch 6;        then echo armv6;
3702         elif check_arm_arch 6J;       then echo armv6j;
3703         elif check_arm_arch 6K;       then echo armv6k;
3704         elif check_arm_arch 6Z;       then echo armv6z;
3705         elif check_arm_arch 6ZK;      then echo armv6zk;
3706         elif check_arm_arch 6T2;      then echo armv6t2;
3707         elif check_arm_arch 7;        then echo armv7;
3708         elif check_arm_arch 7A  7_A;  then echo armv7-a;
3709         elif check_arm_arch 7R  7_R;  then echo armv7-r;
3710         elif check_arm_arch 7M  7_M;  then echo armv7-m;
3711         elif check_arm_arch 7EM 7E_M; then echo armv7-m;
3712         elif check_arm_arch 8A  8_A;  then echo armv8-a;
3713         fi
3714     }
3715
3716     [ "$cpu" = generic ] && cpu=$(probe_arm_arch)
3717
3718     case $cpu in
3719         armv*)
3720             cpuflags="-march=$cpu"
3721             subarch=$(echo $cpu | sed 's/[^a-z0-9]//g')
3722         ;;
3723         *)
3724             cpuflags="-mcpu=$cpu"
3725             case $cpu in
3726                 cortex-a*)                               subarch=armv7a  ;;
3727                 cortex-r*)                               subarch=armv7r  ;;
3728                 cortex-m*)                 enable thumb; subarch=armv7m  ;;
3729                 arm11*)                                  subarch=armv6   ;;
3730                 arm[79]*e*|arm9[24]6*|arm96*|arm102[26]) subarch=armv5te ;;
3731                 armv4*|arm7*|arm9[24]*)                  subarch=armv4   ;;
3732                 *)                             subarch=$(probe_arm_arch) ;;
3733             esac
3734         ;;
3735     esac
3736
3737     case "$subarch" in
3738         armv5t*)    enable fast_clz                ;;
3739         armv[6-8]*)
3740             enable fast_clz
3741             disabled fast_unaligned || enable fast_unaligned
3742             ;;
3743     esac
3744
3745 elif enabled avr32; then
3746
3747     case $cpu in
3748         ap7[02]0[0-2])
3749             subarch="avr32_ap"
3750             cpuflags="-mpart=$cpu"
3751         ;;
3752         ap)
3753             subarch="avr32_ap"
3754             cpuflags="-march=$cpu"
3755         ;;
3756         uc3[ab]*)
3757             subarch="avr32_uc"
3758             cpuflags="-mcpu=$cpu"
3759         ;;
3760         uc)
3761             subarch="avr32_uc"
3762             cpuflags="-march=$cpu"
3763         ;;
3764     esac
3765
3766 elif enabled bfin; then
3767
3768     cpuflags="-mcpu=$cpu"
3769
3770 elif enabled mips; then
3771
3772     cpuflags="-march=$cpu"
3773
3774     case $cpu in
3775         24kc)
3776             disable mipsfpu
3777             disable mipsdspr1
3778             disable mipsdspr2
3779         ;;
3780         24kf*)
3781             disable mipsdspr1
3782             disable mipsdspr2
3783         ;;
3784         24kec|34kc|1004kc)
3785             disable mipsfpu
3786             disable mipsdspr2
3787         ;;
3788         24kef*|34kf*|1004kf*)
3789             disable mipsdspr2
3790         ;;
3791         74kc)
3792             disable mipsfpu
3793         ;;
3794     esac
3795
3796 elif enabled ppc; then
3797
3798     disable ldbrx
3799     disable vsx
3800
3801     case $(tolower $cpu) in
3802         601|ppc601|powerpc601)
3803             cpuflags="-mcpu=601"
3804             disable altivec
3805         ;;
3806         603*|ppc603*|powerpc603*)
3807             cpuflags="-mcpu=603"
3808             disable altivec
3809         ;;
3810         604*|ppc604*|powerpc604*)
3811             cpuflags="-mcpu=604"
3812             disable altivec
3813         ;;
3814         g3|75*|ppc75*|powerpc75*)
3815             cpuflags="-mcpu=750"
3816             disable altivec
3817         ;;
3818         g4|745*|ppc745*|powerpc745*)
3819             cpuflags="-mcpu=7450"
3820         ;;
3821         74*|ppc74*|powerpc74*)
3822             cpuflags="-mcpu=7400"
3823         ;;
3824         g5|970|ppc970|powerpc970)
3825             cpuflags="-mcpu=970"
3826         ;;
3827         power[3-8]*)
3828             cpuflags="-mcpu=$cpu"
3829         ;;
3830         cell)
3831             cpuflags="-mcpu=cell"
3832             enable ldbrx
3833         ;;
3834         e500mc)
3835             cpuflags="-mcpu=e500mc"
3836             disable altivec
3837         ;;
3838         e500v2)
3839             cpuflags="-mcpu=8548 -mhard-float -mfloat-gprs=double"
3840             disable altivec
3841             disable dcbzl
3842         ;;
3843         e500)
3844             cpuflags="-mcpu=8540 -mhard-float"
3845             disable altivec
3846             disable dcbzl
3847         ;;
3848     esac
3849
3850 elif enabled sparc; then
3851
3852     case $cpu in
3853         cypress|f93[04]|tsc701|sparcl*|supersparc|hypersparc|niagara|v[789])
3854             cpuflags="-mcpu=$cpu"
3855         ;;
3856         ultrasparc*|niagara[234])
3857             cpuflags="-mcpu=$cpu"
3858         ;;
3859     esac
3860
3861 elif enabled x86; then
3862
3863     case $cpu in
3864         i[345]86|pentium)
3865             cpuflags="-march=$cpu"
3866             disable i686
3867             disable mmx
3868         ;;
3869         # targets that do NOT support nopl and conditional mov (cmov)
3870         pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3)
3871             cpuflags="-march=$cpu"
3872             disable i686
3873         ;;
3874         # targets that do support nopl and conditional mov (cmov)
3875         i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64*|k8*|opteron*|athlon-fx\
3876         |core*|atom|bonnell|nehalem|westmere|silvermont|sandybridge|ivybridge|haswell|broadwell|amdfam10|barcelona|b[dt]ver*)
3877             cpuflags="-march=$cpu"
3878             enable i686
3879             enable fast_cmov
3880         ;;
3881         # targets that do support conditional mov but on which it's slow
3882         pentium4|pentium4m|prescott|nocona)
3883             cpuflags="-march=$cpu"
3884             enable i686
3885             disable fast_cmov
3886         ;;
3887     esac
3888
3889 fi
3890
3891 if [ "$cpu" != generic ]; then
3892     add_cflags  $cpuflags
3893     add_asflags $cpuflags
3894 fi
3895
3896 # compiler sanity check
3897 check_exec <<EOF
3898 int main(void){ return 0; }
3899 EOF
3900 if test "$?" != 0; then
3901     echo "$cc is unable to create an executable file."
3902     if test -z "$cross_prefix" && ! enabled cross_compile ; then
3903         echo "If $cc is a cross-compiler, use the --enable-cross-compile option."
3904         echo "Only do this if you know what cross compiling means."
3905     fi
3906     die "C compiler test failed."
3907 fi
3908
3909 add_cppflags -D_ISOC99_SOURCE
3910 add_cxxflags -D__STDC_CONSTANT_MACROS
3911 check_cflags -std=c99
3912 check_cc -D_FILE_OFFSET_BITS=64 <<EOF && add_cppflags -D_FILE_OFFSET_BITS=64
3913 #include <stdlib.h>
3914 EOF
3915 check_cc -D_LARGEFILE_SOURCE <<EOF && add_cppflags -D_LARGEFILE_SOURCE
3916 #include <stdlib.h>
3917 EOF
3918
3919 add_host_cppflags -D_ISOC99_SOURCE
3920 check_host_cflags -std=c99
3921 check_host_cflags -Wall
3922 check_host_cflags -O3
3923
3924 check_64bit(){
3925     arch32=$1
3926     arch64=$2
3927     expr=$3
3928     check_code cc "" "int test[2*($expr) - 1]" &&
3929         subarch=$arch64 || subarch=$arch32
3930 }
3931
3932 case "$arch" in
3933     aarch64|alpha|ia64)
3934         spic=$shared
3935     ;;
3936     mips)
3937         check_64bit mips mips64 '_MIPS_SIM > 1'
3938         spic=$shared
3939     ;;
3940     parisc)
3941         check_64bit parisc parisc64 'sizeof(void *) > 4'
3942         spic=$shared
3943     ;;
3944     ppc)
3945         check_64bit ppc ppc64 'sizeof(void *) > 4'
3946         spic=$shared
3947     ;;
3948     s390)
3949         check_64bit s390 s390x 'sizeof(void *) > 4'
3950         spic=$shared
3951     ;;
3952     sparc)
3953         check_64bit sparc sparc64 'sizeof(void *) > 4'
3954         spic=$shared
3955     ;;
3956     x86)
3957         check_64bit x86_32 x86_64 'sizeof(void *) > 4'
3958         # Treat x32 as x64 for now. Note it also needs spic=$shared
3959         test "$subarch" = "x86_32" && check_cpp_condition stddef.h 'defined(__x86_64__)' &&
3960             subarch=x86_64
3961         if test "$subarch" = "x86_64"; then
3962             spic=$shared
3963         fi
3964     ;;
3965     ppc)
3966         check_cc <<EOF && subarch="ppc64"
3967         int test[(int)sizeof(char*) - 7];
3968 EOF
3969     ;;
3970 esac
3971
3972 enable $subarch
3973 enabled spic && enable_weak pic
3974
3975 # OS specific
3976 case $target_os in
3977     aix)
3978         SHFLAGS=-shared
3979         add_cppflags '-I\$(SRC_PATH)/compat/aix'
3980         enabled shared && add_ldflags -Wl,-brtl
3981         ;;
3982     android)
3983         disable symver
3984         SLIB_INSTALL_NAME='$(SLIBNAME)'
3985         SLIB_INSTALL_LINKS=
3986         # soname not set on purpose
3987         SHFLAGS=-shared
3988         ;;
3989     haiku)
3990         prefix_default="/boot/common"
3991         network_extralibs="-lnetwork"
3992         host_libs=
3993         ;;
3994     sunos)
3995         SHFLAGS='-shared -Wl,-h,$$(@F)'
3996         enabled x86 && SHFLAGS="-mimpure-text $SHFLAGS"
3997         network_extralibs="-lsocket -lnsl"
3998         # When using suncc to build, the Solaris linker will mark
3999         # an executable with each instruction set encountered by
4000         # the Solaris assembler.  As our libraries contain their own
4001         # guards for processor-specific code, instead suppress
4002         # generation of the HWCAPS ELF section on Solaris x86 only.
4003         enabled_all suncc x86 &&
4004             echo "hwcap_1 = OVERRIDE;" > mapfile &&
4005             add_ldflags -Wl,-M,mapfile
4006         nm_default='nm -P -g'
4007         ;;
4008     netbsd)
4009         disable symver
4010         oss_indev_extralibs="-lossaudio"
4011         oss_outdev_extralibs="-lossaudio"
4012         enabled gcc || check_ldflags -Wl,-zmuldefs
4013         ;;
4014     openbsd|bitrig)
4015         disable symver
4016         SHFLAGS='-shared'
4017         SLIB_INSTALL_NAME='$(SLIBNAME).$(LIBMAJOR).$(LIBMINOR)'
4018         SLIB_INSTALL_LINKS=
4019         oss_indev_extralibs="-lossaudio"
4020         oss_outdev_extralibs="-lossaudio"
4021         ;;
4022     dragonfly)
4023         disable symver
4024         ;;
4025     freebsd)
4026         ;;
4027     bsd/os)
4028         add_extralibs -lpoll -lgnugetopt
4029         strip="strip -d"
4030         ;;
4031     darwin)
4032         enabled ppc && add_asflags -force_cpusubtype_ALL
4033         SHFLAGS='-dynamiclib -Wl,-single_module -Wl,-install_name,$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR)'
4034         enabled x86_32 && append SHFLAGS -Wl,-read_only_relocs,suppress
4035         strip="${strip} -x"
4036         add_ldflags -Wl,-dynamic,-search_paths_first
4037         SLIBSUF=".dylib"
4038         SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME).$(LIBVERSION)$(SLIBSUF)'
4039         SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME).$(LIBMAJOR)$(SLIBSUF)'
4040         objformat="macho"
4041         enabled x86_64 && objformat="macho64"
4042         enabled_any pic shared ||
4043             { check_cflags -mdynamic-no-pic && add_asflags -mdynamic-no-pic; }
4044         ;;
4045     mingw32*)
4046         if test $target_os = "mingw32ce"; then
4047             disable network
4048         else
4049             target_os=mingw32
4050         fi
4051         LIBTARGET=i386
4052         if enabled x86_64; then
4053             LIBTARGET="i386:x86-64"
4054         elif enabled arm; then
4055             LIBTARGET=arm-wince
4056         fi
4057         enabled shared && ! enabled small && check_cmd $windres --version && enable gnu_windres
4058         check_ldflags -Wl,--nxcompat
4059         check_ldflags -Wl,--dynamicbase
4060         enabled x86_32 && check_ldflags -Wl,--large-address-aware
4061         shlibdir_default="$bindir_default"
4062         SLIBPREF=""
4063         SLIBSUF=".dll"
4064         SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
4065         SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
4066         dlltool="${cross_prefix}dlltool"
4067         if check_cmd lib.exe -list; then
4068             SLIB_EXTRA_CMD=-'sed -e "s/ @[^ ]*//" $$(@:$(SLIBSUF)=.orig.def) > $$(@:$(SLIBSUF)=.def); lib.exe /machine:$(LIBTARGET) /def:$$(@:$(SLIBSUF)=.def) /out:$(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib)'
4069             if enabled x86_64; then
4070                 LIBTARGET=x64
4071             fi
4072         elif check_cmd $dlltool --version; then
4073             SLIB_EXTRA_CMD=-'sed -e "s/ @[^ ]*//" $$(@:$(SLIBSUF)=.orig.def) > $$(@:$(SLIBSUF)=.def); $(DLLTOOL) -m $(LIBTARGET) -d $$(@:$(SLIBSUF)=.def) -l $(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib) -D $(SLIBNAME_WITH_MAJOR)'
4074         fi
4075         SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
4076         SLIB_INSTALL_LINKS=
4077         SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
4078         SLIB_INSTALL_EXTRA_LIB='lib$(SLIBNAME:$(SLIBSUF)=.dll.a) $(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
4079         SHFLAGS='-shared -Wl,--output-def,$$(@:$(SLIBSUF)=.orig.def) -Wl,--out-implib,$(SUBDIR)lib$(SLIBNAME:$(SLIBSUF)=.dll.a) -Wl,--enable-runtime-pseudo-reloc -Wl,--enable-auto-image-base'
4080         objformat="win32"
4081         ranlib=:
4082         enable dos_paths
4083         ;;
4084     win32|win64)
4085         disable symver
4086         if enabled shared; then
4087             # Link to the import library instead of the normal static library
4088             # for shared libs.
4089             LD_LIB='%.lib'
4090             # Cannot build both shared and static libs with MSVC or icl.
4091             disable static
4092         fi
4093         enabled x86_32 && check_ldflags -LARGEADDRESSAWARE
4094         shlibdir_default="$bindir_default"
4095         SLIBPREF=""
4096         SLIBSUF=".dll"
4097         SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
4098         SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
4099         SLIB_CREATE_DEF_CMD='$(SRC_PATH)/compat/windows/makedef $(SUBDIR)lib$(NAME).ver $(OBJS) > $$(@:$(SLIBSUF)=.def)'
4100         SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
4101         SLIB_INSTALL_LINKS=
4102         SLIB_INSTALL_EXTRA_SHLIB='$(SLIBNAME:$(SLIBSUF)=.lib)'
4103         SLIB_INSTALL_EXTRA_LIB='$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.def)'
4104         SHFLAGS='-dll -def:$$(@:$(SLIBSUF)=.def) -implib:$(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib)'
4105         objformat="win32"
4106         ranlib=:
4107         enable dos_paths
4108         ;;
4109     cygwin*)
4110         target_os=cygwin
4111         shlibdir_default="$bindir_default"
4112         SLIBPREF="cyg"
4113         SLIBSUF=".dll"
4114         SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
4115         SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
4116         SLIB_INSTALL_NAME='$(SLIBNAME_WITH_MAJOR)'
4117         SLIB_INSTALL_LINKS=
4118         SLIB_INSTALL_EXTRA_LIB='lib$(FULLNAME).dll.a'
4119         SHFLAGS='-shared -Wl,--out-implib,$(SUBDIR)lib$(FULLNAME).dll.a'
4120         objformat="win32"
4121         enable dos_paths
4122         enabled shared && ! enabled small && check_cmd $windres --version && enable gnu_windres
4123         ;;
4124     *-dos|freedos|opendos)
4125         network_extralibs="-lsocket"
4126         objformat="coff"
4127         enable dos_paths
4128         add_cppflags -U__STRICT_ANSI__
4129         ;;
4130     linux)
4131         enable dv1394
4132         ;;
4133     irix*)
4134         target_os=irix
4135         ranlib="echo ignoring ranlib"
4136         ;;
4137     os/2*)
4138         strip="lxlite -CS"
4139         ln_s="cp -f"
4140         objformat="aout"
4141         add_cppflags -D_GNU_SOURCE
4142         add_ldflags -Zomf -Zbin-files -Zargs-wild -Zmap
4143         SHFLAGS='$(SUBDIR)$(NAME).def -Zdll -Zomf'
4144         LIBSUF="_s.a"
4145         SLIBPREF=""
4146         SLIBSUF=".dll"
4147         SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
4148         SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(shell echo $(NAME) | cut -c1-6)$(LIBMAJOR)$(SLIBSUF)'
4149         SLIB_CREATE_DEF_CMD='echo LIBRARY $(SLIBNAME_WITH_MAJOR) INITINSTANCE TERMINSTANCE > $(SUBDIR)$(NAME).def; \
4150             echo PROTMODE >> $(SUBDIR)$(NAME).def; \
4151             echo CODE PRELOAD MOVEABLE DISCARDABLE >> $(SUBDIR)$(NAME).def; \
4152             echo DATA PRELOAD MOVEABLE MULTIPLE NONSHARED >> $(SUBDIR)$(NAME).def; \
4153             echo EXPORTS >> $(SUBDIR)$(NAME).def; \
4154             emxexp -o $(OBJS) >> $(SUBDIR)$(NAME).def'
4155         SLIB_EXTRA_CMD='emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(NAME).def; \
4156             emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib $(SUBDIR)$(NAME).def;'
4157         SLIB_INSTALL_EXTRA_LIB='$(LIBPREF)$(NAME)_dll.a $(LIBPREF)$(NAME)_dll.lib'
4158         enable dos_paths
4159         enable_weak os2threads
4160         ;;
4161     gnu/kfreebsd)
4162         add_cppflags -D_BSD_SOURCE
4163         ;;
4164     gnu)
4165         ;;
4166     qnx)
4167         add_cppflags -D_QNX_SOURCE
4168         network_extralibs="-lsocket"
4169         ;;
4170     symbian)
4171         SLIBSUF=".dll"
4172         enable dos_paths
4173         add_cflags --include=$sysinclude/gcce/gcce.h -fvisibility=default
4174         add_cppflags -D__GCCE__ -D__SYMBIAN32__ -DSYMBIAN_OE_POSIX_SIGNALS
4175         add_ldflags -Wl,--target1-abs,--no-undefined \
4176                     -Wl,-Ttext,0x80000,-Tdata,0x1000000 -shared \
4177                     -Wl,--entry=_E32Startup -Wl,-u,_E32Startup
4178         add_extralibs -l:eexe.lib -l:usrt2_2.lib -l:dfpaeabi.dso \
4179                       -l:drtaeabi.dso -l:scppnwdl.dso -lsupc++ -lgcc \
4180                       -l:libc.dso -l:libm.dso -l:euser.dso -l:libcrt0.lib
4181         ;;
4182     osf1)
4183         add_cppflags -D_OSF_SOURCE -D_POSIX_PII -D_REENTRANT
4184         ;;
4185     minix)
4186         ;;
4187     plan9)
4188         add_cppflags -D_C99_SNPRINTF_EXTENSION  \
4189                      -D_REENTRANT_SOURCE        \
4190                      -D_RESEARCH_SOURCE         \
4191                      -DFD_SETSIZE=96            \
4192                      -DHAVE_SOCK_OPTS
4193         add_compat strtod.o strtod=avpriv_strtod
4194         network_extralibs='-lbsd'
4195         exeobjs=compat/plan9/main.o
4196         disable ffserver
4197         cp_f='cp'
4198         ;;
4199     none)
4200         ;;
4201     *)
4202         die "Unknown OS '$target_os'."
4203         ;;
4204 esac
4205
4206 # determine libc flavour
4207
4208 probe_libc(){
4209     pfx=$1
4210     pfx_no_=${pfx%_}
4211     # uclibc defines __GLIBC__, so it needs to be checked before glibc.
4212     if check_${pfx}cpp_condition features.h "defined __UCLIBC__"; then
4213         eval ${pfx}libc_type=uclibc
4214         add_${pfx}cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
4215     elif check_${pfx}cpp_condition features.h "defined __GLIBC__"; then
4216         eval ${pfx}libc_type=glibc
4217         add_${pfx}cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
4218     # MinGW headers can be installed on Cygwin, so check for newlib first.
4219     elif check_${pfx}cpp_condition newlib.h "defined _NEWLIB_VERSION"; then
4220         eval ${pfx}libc_type=newlib
4221         add_${pfx}cppflags -U__STRICT_ANSI__
4222     # MinGW64 is backwards compatible with MinGW32, so check for it first.
4223     elif check_${pfx}cpp_condition _mingw.h "defined __MINGW64_VERSION_MAJOR"; then
4224         eval ${pfx}libc_type=mingw64
4225         if check_${pfx}cpp_condition _mingw.h "__MINGW64_VERSION_MAJOR < 3"; then
4226             add_compat msvcrt/snprintf.o
4227             add_cflags "-include $source_path/compat/msvcrt/snprintf.h"
4228         fi
4229         add_${pfx}cppflags -U__STRICT_ANSI__ -D__USE_MINGW_ANSI_STDIO=1
4230         eval test \$${pfx_no_}cc_type = "gcc" &&
4231             add_${pfx}cppflags -D__printf__=__gnu_printf__
4232     elif check_${pfx}cpp_condition _mingw.h "defined __MINGW_VERSION"  ||
4233          check_${pfx}cpp_condition _mingw.h "defined __MINGW32_VERSION"; then
4234         eval ${pfx}libc_type=mingw32
4235         check_${pfx}cpp_condition _mingw.h "__MINGW32_MAJOR_VERSION > 3 || \
4236             (__MINGW32_MAJOR_VERSION == 3 && __MINGW32_MINOR_VERSION >= 15)" ||
4237             die "ERROR: MinGW32 runtime version must be >= 3.15."
4238         add_${pfx}cppflags -U__STRICT_ANSI__ -D__USE_MINGW_ANSI_STDIO=1
4239         eval test \$${pfx_no_}cc_type = "gcc" &&
4240             add_${pfx}cppflags -D__printf__=__gnu_printf__
4241     elif check_${pfx}cpp_condition crtversion.h "defined _VC_CRT_MAJOR_VERSION"; then
4242         eval ${pfx}libc_type=msvcrt
4243         # The MSVC 2010 headers (Win 7.0 SDK) set _WIN32_WINNT to
4244         # 0x601 by default unless something else is set by the user.
4245         # This can easily lead to us detecting functions only present
4246         # in such new versions and producing binaries requiring windows 7.0.
4247         # Therefore explicitly set the default to XP unless the user has
4248         # set something else on the command line.
4249         check_${pfx}cpp_condition stdlib.h "defined(_WIN32_WINNT)" ||
4250             add_${pfx}cppflags -D_WIN32_WINNT=0x0502
4251     elif check_${pfx}cpp_condition stddef.h "defined __KLIBC__"; then
4252         eval ${pfx}libc_type=klibc
4253     elif check_${pfx}cpp_condition sys/cdefs.h "defined __BIONIC__"; then
4254         eval ${pfx}libc_type=bionic
4255     elif check_${pfx}cpp_condition sys/brand.h "defined LABELED_BRAND_NAME"; then
4256         eval ${pfx}libc_type=solaris
4257         add_${pfx}cppflags -D__EXTENSIONS__ -D_XOPEN_SOURCE=600
4258     fi
4259     check_${pfx}cc <<EOF
4260 #include <time.h>
4261 void *v = localtime_r;
4262 EOF
4263 test "$?" != 0 && check_${pfx}cc -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600 <<EOF && add_${pfx}cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600
4264 #include <time.h>
4265 void *v = localtime_r;
4266 EOF
4267
4268 }
4269
4270 probe_libc
4271 test -n "$libc_type" && enable libc_$libc_type
4272 probe_libc host_
4273 test -n "$host_libc_type" && enable host_libc_$host_libc_type
4274
4275 case $libc_type in
4276     bionic)
4277         add_compat strtod.o strtod=avpriv_strtod
4278         ;;
4279     msvcrt)
4280         add_compat strtod.o strtod=avpriv_strtod
4281         add_compat msvcrt/snprintf.o snprintf=avpriv_snprintf   \
4282                                      _snprintf=avpriv_snprintf  \
4283                                      vsnprintf=avpriv_vsnprintf
4284         ;;
4285 esac
4286
4287 # hacks for compiler/libc/os combinations
4288
4289 if enabled_all tms470 libc_glibc; then
4290     CPPFLAGS="-I${source_path}/compat/tms470 ${CPPFLAGS}"
4291     add_cppflags -D__USER_LABEL_PREFIX__=
4292     add_cppflags -D__builtin_memset=memset
4293     add_cppflags -D__gnuc_va_list=va_list -D_VA_LIST_DEFINED
4294     add_cflags   -pds=48    # incompatible redefinition of macro
4295 fi
4296
4297 if enabled_all ccc libc_glibc; then
4298     add_ldflags -Wl,-z,now  # calls to libots crash without this
4299 fi
4300
4301 check_compile_assert flt_lim "float.h limits.h" "DBL_MAX == (double)DBL_MAX" ||
4302     add_cppflags '-I\$(SRC_PATH)/compat/float'
4303
4304 esc(){
4305     echo "$*" | sed 's/%/%25/g;s/:/%3a/g'
4306 }
4307
4308 echo "config:$arch:$subarch:$cpu:$target_os:$(esc $cc_ident):$(esc $FFMPEG_CONFIGURATION)" >config.fate
4309
4310 check_cpp_condition stdlib.h "defined(__PIC__) || defined(__pic__) || defined(PIC)" && enable_weak pic
4311
4312 set_default $PATHS_LIST
4313 set_default nm
4314
4315 # we need to build at least one lib type
4316 if ! enabled_any static shared; then
4317     cat <<EOF
4318 At least one library type must be built.
4319 Specify --enable-static to build the static libraries or --enable-shared to
4320 build the shared libraries as well. To only build the shared libraries specify
4321 --disable-static in addition to --enable-shared.
4322 EOF
4323     exit 1;
4324 fi
4325
4326 die_license_disabled() {
4327     enabled $1 || { enabled $2 && die "$2 is $1 and --enable-$1 is not specified."; }
4328 }
4329
4330 die_license_disabled_gpl() {
4331     enabled $1 || { enabled $2 && die "$2 is incompatible with the gpl and --enable-$1 is not specified."; }
4332 }
4333
4334 die_license_disabled gpl frei0r
4335 die_license_disabled gpl libcdio
4336 die_license_disabled gpl libsmbclient
4337 die_license_disabled gpl libutvideo
4338 die_license_disabled gpl libvidstab
4339 die_license_disabled gpl libx264
4340 die_license_disabled gpl libx265
4341 die_license_disabled gpl libxavs
4342 die_license_disabled gpl libxvid
4343 die_license_disabled gpl libzvbi
4344 die_license_disabled gpl x11grab
4345
4346 die_license_disabled nonfree libaacplus
4347 die_license_disabled nonfree libfaac
4348 enabled gpl && die_license_disabled_gpl nonfree libfdk_aac
4349 enabled gpl && die_license_disabled_gpl nonfree openssl
4350
4351 die_license_disabled version3 libopencore_amrnb
4352 die_license_disabled version3 libopencore_amrwb
4353 die_license_disabled version3 libsmbclient
4354 die_license_disabled version3 libvo_aacenc
4355 die_license_disabled version3 libvo_amrwbenc
4356
4357 enabled version3 && { enabled gpl && enable gplv3 || enable lgplv3; }
4358
4359 disabled optimizations || check_cflags -fomit-frame-pointer
4360
4361 enable_weak_pic() {
4362     disabled pic && return
4363     enable pic
4364     add_cppflags -DPIC
4365     case "$target_os" in
4366     mingw*|cygwin*)
4367         ;;
4368     *)
4369         add_cflags -fPIC
4370         ;;
4371     esac
4372     add_asflags  -fPIC
4373 }
4374
4375 enabled pic && enable_weak_pic
4376
4377 check_cc <<EOF || die "Symbol mangling check failed."
4378 int ff_extern;
4379 EOF
4380 sym=$($nm $TMPO | awk '/ff_extern/{ print substr($0, match($0, /[^ \t]*ff_extern/)) }')
4381 extern_prefix=${sym%%ff_extern*}
4382
4383 check_cc <<EOF && enable_weak inline_asm
4384 void foo(void) { __asm__ volatile ("" ::); }
4385 EOF
4386
4387 _restrict=
4388 for restrict_keyword in restrict __restrict__ __restrict; do
4389     check_cc <<EOF && _restrict=$restrict_keyword && break
4390 void foo(char * $restrict_keyword p);
4391 EOF
4392 done
4393
4394 check_cc <<EOF && enable pragma_deprecated
4395 void foo(void) { _Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"") }
4396 EOF
4397
4398 check_cc <<EOF && enable attribute_packed
4399 struct { int x; } __attribute__((packed)) x;
4400 EOF
4401
4402 check_cc <<EOF && enable attribute_may_alias
4403 union { int x; } __attribute__((may_alias)) x;
4404 EOF
4405
4406 check_cc <<EOF || die "endian test failed"
4407 unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
4408 EOF
4409 od -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian
4410
4411 if  [ "$cpu" = "power7" ] || [ "$cpu" = "power8" ] ;then
4412     if ! enabled bigendian && enabled altivec ;then
4413         enable vsx
4414     fi
4415 fi
4416
4417 check_gas() {
4418     log "check_gas using '$as' as AS"
4419     # :vararg is used on aarch64, arm and ppc altivec
4420     check_as <<EOF || return 1
4421 .macro m n, y:vararg=0
4422 \n: .int \y
4423 .endm
4424 m x
4425 EOF
4426     # .altmacro is only used in arm asm
4427     ! enabled arm || check_as <<EOF || return 1
4428 .altmacro
4429 EOF
4430     enable gnu_as
4431     return 0
4432 }
4433
4434 if enabled_any arm aarch64 || enabled_all ppc altivec && enabled asm; then
4435     nogas=:
4436     enabled_any arm aarch64 && nogas=die
4437     enabled_all ppc altivec && [ $target_os_default != aix ] && nogas=warn
4438     as_noop=-v
4439
4440     case $as_type in
4441         arm*) gaspp_as_type=armasm; as_noop=-h ;;
4442         gcc)  gaspp_as_type=gas ;;
4443         *)    gaspp_as_type=$as_type ;;
4444     esac
4445
4446     [ $target_os = "darwin" ] && gaspp_as_type="apple-$gaspp_as_type"
4447
4448     test "${as#*gas-preprocessor.pl}" != "$as" ||
4449     check_cmd gas-preprocessor.pl -arch $arch -as-type $gaspp_as_type -- ${as:=$cc} $as_noop &&
4450         gas="${gas:=gas-preprocessor.pl} -arch $arch -as-type $gaspp_as_type -- ${as:=$cc}"
4451
4452     if ! check_gas ; then
4453         as=${gas:=$as}
4454         check_gas || \
4455             $nogas "GNU assembler not found, install/update gas-preprocessor"
4456     fi
4457
4458     check_as <<EOF && enable as_func
4459 .func test
4460 .endfunc
4461 EOF
4462 fi
4463
4464 check_inline_asm inline_asm_labels '"1:\n"'
4465
4466 check_inline_asm inline_asm_nonlocal_labels '"Label:\n"'
4467
4468 if enabled aarch64; then
4469     enabled armv8 && check_insn armv8 'prfm   pldl1strm, [x0]'
4470     # internal assembler in clang 3.3 does not support this instruction
4471     enabled neon && check_insn neon 'ext   v0.8B, v0.8B, v1.8B, #1'
4472     enabled vfp  && check_insn vfp  'fmadd d0,    d0,    d1,    d2'
4473
4474     map 'enabled_any ${v}_external ${v}_inline || disable $v' $ARCH_EXT_LIST_ARM
4475
4476 elif enabled alpha; then
4477
4478     check_cflags -mieee
4479
4480 elif enabled arm; then
4481
4482     check_cpp_condition stddef.h "defined __thumb__" && check_cc <<EOF && enable_weak thumb
4483 float func(float a, float b){ return a+b; }
4484 EOF
4485
4486     enabled thumb && check_cflags -mthumb || check_cflags -marm
4487
4488     if     check_cpp_condition stddef.h "defined __ARM_PCS_VFP"; then
4489         enable vfp_args
4490     elif ! check_cpp_condition stddef.h "defined __ARM_PCS || defined __SOFTFP__"; then
4491         case "${cross_prefix:-$cc}" in
4492             *hardfloat*)         enable vfp_args;   fpabi=vfp ;;
4493             *) check_ld "cc" <<EOF && enable vfp_args && fpabi=vfp || fpabi=soft ;;
4494 __asm__ (".eabi_attribute 28, 1");
4495 int main(void) { return 0; }
4496 EOF
4497         esac
4498         warn "Compiler does not indicate floating-point ABI, guessing $fpabi."
4499     fi
4500
4501     enabled armv5te && check_insn armv5te 'qadd r0, r0, r0'
4502     enabled armv6   && check_insn armv6   'sadd16 r0, r0, r0'
4503     enabled armv6t2 && check_insn armv6t2 'movt r0, #0'
4504     enabled neon    && check_insn neon    'vadd.i16 q0, q0, q0'
4505     enabled vfp     && check_insn vfp     'fadds s0, s0, s0'
4506     enabled vfpv3   && check_insn vfpv3   'vmov.f32 s0, #1.0'
4507     enabled setend  && check_insn setend  'setend be'
4508
4509     [ $target_os = linux ] || [ $target_os = android ] ||
4510         map 'enabled_any ${v}_external ${v}_inline || disable $v' \
4511             $ARCH_EXT_LIST_ARM
4512
4513     check_inline_asm asm_mod_q '"add r0, %Q0, %R0" :: "r"((long long)0)'
4514
4515     check_as <<EOF && enable as_dn_directive
4516 ra .dn d0.i16
4517 .unreq ra
4518 EOF
4519
4520     [ $target_os != win32 ] && enabled_all armv6t2 shared !pic && enable_weak_pic
4521
4522 elif enabled mips; then
4523
4524     check_inline_asm loongson '"dmult.g $1, $2, $3"'
4525     enabled mips32r2  && add_cflags "-mips32r2" && add_asflags "-mips32r2" &&
4526      check_inline_asm mips32r2  '"rotr $t0, $t1, 1"'
4527     enabled mipsdspr1 && add_cflags "-mdsp" && add_asflags "-mdsp" &&
4528      check_inline_asm mipsdspr1 '"addu.qb $t0, $t1, $t2"'
4529     enabled mipsdspr2 && add_cflags "-mdspr2" && add_asflags "-mdspr2" &&
4530      check_inline_asm mipsdspr2 '"absq_s.qb $t0, $t1"'
4531     enabled mipsfpu   && add_cflags "-mhard-float" && add_asflags "-mhard-float" &&
4532      check_inline_asm mipsfpu   '"madd.d $f0, $f2, $f4, $f6"'
4533
4534 elif enabled parisc; then
4535
4536     if enabled gcc; then
4537         case $($cc -dumpversion) in
4538             4.[3-9].*) check_cflags -fno-optimize-sibling-calls ;;
4539         esac
4540     fi
4541
4542 elif enabled ppc; then
4543
4544     enable local_aligned_8 local_aligned_16 local_aligned_32
4545
4546     check_inline_asm dcbzl     '"dcbzl 0, %0" :: "r"(0)'
4547     check_inline_asm ibm_asm   '"add 0, 0, 0"'
4548     check_inline_asm ppc4xx    '"maclhw r10, r11, r12"'
4549     check_inline_asm xform_asm '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)'
4550
4551     # AltiVec flags: The FSF version of GCC differs from the Apple version
4552     if enabled altivec; then
4553         check_cflags -maltivec -mabi=altivec &&
4554         { check_header altivec.h && inc_altivec_h="#include <altivec.h>" ; } ||
4555         check_cflags -faltivec
4556
4557         # check if our compiler supports Motorola AltiVec C API
4558         check_cc <<EOF || disable altivec
4559 $inc_altivec_h
4560 int main(void) {
4561     vector signed int v1 = (vector signed int) { 0 };
4562     vector signed int v2 = (vector signed int) { 1 };
4563     v1 = vec_add(v1, v2);
4564     return 0;
4565 }
4566 EOF
4567
4568         enabled altivec || warn "Altivec disabled, possibly missing --cpu flag"
4569     fi
4570
4571     if enabled vsx; then
4572         check_cflags -mvsx
4573     fi
4574 elif enabled x86; then
4575
4576     check_builtin rdtsc    intrin.h   "__rdtsc()"
4577     check_builtin mm_empty mmintrin.h "_mm_empty()"
4578
4579     enable local_aligned_8 local_aligned_16 local_aligned_32
4580
4581     # check whether EBP is available on x86
4582     # As 'i' is stored on the stack, this program will crash
4583     # if the base pointer is used to access it because the
4584     # base pointer is cleared in the inline assembly code.
4585     check_exec_crash <<EOF && enable ebp_available
4586 volatile int i=0;
4587 __asm__ volatile ("xorl %%ebp, %%ebp" ::: "%ebp");
4588 return i;
4589 EOF
4590
4591     # check whether EBX is available on x86
4592     check_inline_asm ebx_available '""::"b"(0)' &&
4593         check_inline_asm ebx_available '"":::"%ebx"'
4594
4595     # check whether xmm clobbers are supported
4596     check_inline_asm xmm_clobbers '"":::"%xmm0"'
4597
4598     check_inline_asm inline_asm_direct_symbol_refs '"movl '$extern_prefix'test, %eax"' ||
4599         check_inline_asm inline_asm_direct_symbol_refs '"movl '$extern_prefix'test(%rip), %eax"'
4600
4601     # check whether binutils is new enough to compile SSSE3/MMXEXT
4602     enabled ssse3  && check_inline_asm ssse3_inline  '"pabsw %xmm0, %xmm0"'
4603     enabled mmxext && check_inline_asm mmxext_inline '"pmaxub %mm0, %mm1"'
4604
4605     if ! disabled_any asm mmx yasm; then
4606         if check_cmd $yasmexe --version; then
4607             enabled x86_64 && yasm_extra="-m amd64"
4608             yasm_debug="-g dwarf2"
4609         elif check_cmd nasm -v; then
4610             yasmexe=nasm
4611             yasm_debug="-g -F dwarf"
4612             if enabled x86_64; then
4613                 case "$objformat" in
4614                     elf)   objformat=elf64 ;;
4615                     win32) objformat=win64 ;;
4616                 esac
4617             fi
4618         fi
4619
4620         YASMFLAGS="-f $objformat $yasm_extra"
4621         enabled pic               && append YASMFLAGS "-DPIC"
4622         test -n "$extern_prefix"  && append YASMFLAGS "-DPREFIX"
4623         case "$objformat" in
4624             elf*) enabled debug && append YASMFLAGS $yasm_debug ;;
4625         esac
4626
4627         check_yasm "movbe ecx, [5]" && enable yasm ||
4628             die "yasm/nasm not found or too old. Use --disable-yasm for a crippled build."
4629         check_yasm "vextracti128 xmm0, ymm0, 0"      || disable avx2_external
4630         check_yasm "vpmacsdd xmm0, xmm1, xmm2, xmm3" || disable xop_external
4631         check_yasm "vfmaddps ymm0, ymm1, ymm2, ymm3" || disable fma4_external
4632         check_yasm "CPU amdnop" || disable cpunop
4633     fi
4634
4635     case "$cpu" in
4636         athlon*|opteron*|k8*|pentium|pentium-mmx|prescott|nocona|atom|geode)
4637             disable fast_clz
4638         ;;
4639     esac
4640
4641 fi
4642
4643 check_code cc arm_neon.h "int16x8_t test = vdupq_n_s16(0)" && enable intrinsics_neon
4644
4645 check_ldflags -Wl,--as-needed
4646 check_ldflags -Wl,-z,noexecstack
4647
4648 if check_func dlopen; then
4649     ldl=
4650 elif check_func dlopen -ldl; then
4651     ldl=-ldl
4652 fi
4653
4654 if ! disabled network; then
4655     check_func getaddrinfo $network_extralibs
4656     check_func getservbyport $network_extralibs
4657     check_func inet_aton $network_extralibs
4658
4659     check_type netdb.h "struct addrinfo"
4660     check_type netinet/in.h "struct group_source_req" -D_BSD_SOURCE
4661     check_type netinet/in.h "struct ip_mreq_source" -D_BSD_SOURCE
4662     check_type netinet/in.h "struct ipv6_mreq" -D_DARWIN_C_SOURCE
4663     check_type poll.h "struct pollfd"
4664     check_type netinet/sctp.h "struct sctp_event_subscribe"
4665     check_struct "sys/types.h sys/socket.h" "struct sockaddr" sa_len
4666     check_type netinet/in.h "struct sockaddr_in6"
4667     check_type "sys/types.h sys/socket.h" "struct sockaddr_storage"
4668     check_type "sys/types.h sys/socket.h" socklen_t
4669
4670     # Prefer arpa/inet.h over winsock2
4671     if check_header arpa/inet.h ; then
4672         check_func closesocket
4673     elif check_header winsock2.h ; then
4674         check_func_headers winsock2.h closesocket -lws2 &&
4675             network_extralibs="-lws2" ||
4676         { check_func_headers winsock2.h closesocket -lws2_32 &&
4677             network_extralibs="-lws2_32"; } || disable winsock2_h network
4678         check_func_headers ws2tcpip.h getaddrinfo $network_extralibs
4679
4680         check_type ws2tcpip.h socklen_t
4681         check_type ws2tcpip.h "struct addrinfo"
4682         check_type ws2tcpip.h "struct group_source_req"
4683         check_type ws2tcpip.h "struct ip_mreq_source"
4684         check_type ws2tcpip.h "struct ipv6_mreq"
4685         check_type winsock2.h "struct pollfd"
4686         check_struct winsock2.h "struct sockaddr" sa_len
4687         check_type ws2tcpip.h "struct sockaddr_in6"
4688         check_type ws2tcpip.h "struct sockaddr_storage"
4689     else
4690         disable network
4691     fi
4692 fi
4693
4694 check_builtin atomic_cas_ptr atomic.h "void **ptr; void *oldval, *newval; atomic_cas_ptr(ptr, oldval, newval)"
4695 check_builtin atomic_compare_exchange "" "int *ptr, *oldval; int newval; __atomic_compare_exchange_n(ptr, oldval, newval, 0, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST)"
4696 check_builtin machine_rw_barrier mbarrier.h "__machine_rw_barrier()"
4697 check_builtin MemoryBarrier windows.h "MemoryBarrier()"
4698 check_builtin sarestart signal.h "SA_RESTART"
4699 check_builtin sync_val_compare_and_swap "" "int *ptr; int oldval, newval; __sync_val_compare_and_swap(ptr, oldval, newval)"
4700
4701 check_func_headers malloc.h _aligned_malloc     && enable aligned_malloc
4702 check_func  ${malloc_prefix}memalign            && enable memalign
4703 check_func  ${malloc_prefix}posix_memalign      && enable posix_memalign
4704
4705 check_func  access
4706 check_func_headers time.h clock_gettime || { check_func_headers time.h clock_gettime -lrt && add_extralibs -lrt && LIBRT="-lrt"; }
4707 check_func  fcntl
4708 check_func  fork
4709 check_func  gethrtime
4710 check_func  getopt
4711 check_func  getrusage
4712 check_func  gettimeofday
4713 check_func  gmtime_r
4714 check_func  isatty
4715 check_func  localtime_r
4716 check_func  mach_absolute_time
4717 check_func  mkstemp
4718 check_func  mmap
4719 check_func  mprotect
4720 # Solaris has nanosleep in -lrt, OpenSolaris no longer needs that
4721 check_func_headers time.h nanosleep || { check_func_headers time.h nanosleep -lrt && add_extralibs -lrt && LIBRT="-lrt"; }
4722 check_func  sched_getaffinity
4723 check_func  setrlimit
4724 check_struct "sys/stat.h" "struct stat" st_mtim.tv_nsec -D_BSD_SOURCE
4725 check_func  strerror_r
4726 check_func  sysconf
4727 check_func  sysctl
4728 check_func  usleep
4729
4730 check_func_headers conio.h kbhit
4731 check_func_headers io.h setmode
4732 check_func_headers lzo/lzo1x.h lzo1x_999_compress
4733 check_func_headers stdlib.h getenv
4734
4735 check_func_headers windows.h CoTaskMemFree -lole32
4736 check_func_headers windows.h GetProcessAffinityMask
4737 check_func_headers windows.h GetProcessTimes
4738 check_func_headers windows.h GetSystemTimeAsFileTime
4739 check_func_headers windows.h MapViewOfFile
4740 check_func_headers windows.h MoveFileExA
4741 check_func_headers windows.h PeekNamedPipe
4742 check_func_headers windows.h SetConsoleTextAttribute
4743 check_func_headers windows.h Sleep
4744 check_func_headers windows.h VirtualAlloc
4745 check_struct windows.h "CONDITION_VARIABLE" Ptr
4746 check_func_headers glob.h glob
4747 enabled xlib &&
4748     check_func_headers "X11/Xlib.h X11/extensions/Xvlib.h" XvGetPortAttribute -lXv -lX11 -lXext
4749
4750 check_header cl/cl.h
4751 check_header direct.h
4752 check_header dlfcn.h
4753 check_header dxva.h
4754 check_header dxva2api.h -D_WIN32_WINNT=0x0600
4755 check_header io.h
4756 check_header libcrystalhd/libcrystalhd_if.h
4757 check_header mach/mach_time.h
4758 check_header malloc.h
4759 check_header net/udplite.h
4760 check_header poll.h
4761 check_header sys/mman.h
4762 check_header sys/param.h
4763 check_header sys/resource.h
4764 check_header sys/select.h
4765 check_header sys/time.h
4766 check_header sys/un.h
4767 check_header termios.h
4768 check_header unistd.h
4769 check_header vdpau/vdpau.h
4770 check_header vdpau/vdpau_x11.h
4771 check_header VideoDecodeAcceleration/VDADecoder.h
4772 check_header windows.h
4773 check_header X11/extensions/XvMClib.h
4774 check_header asm/types.h
4775
4776 check_lib2 "windows.h shellapi.h" CommandLineToArgvW -lshell32
4777 check_lib2 "windows.h wincrypt.h" CryptGenRandom -ladvapi32
4778 check_lib2 "windows.h psapi.h" GetProcessMemoryInfo -lpsapi
4779
4780 check_struct "sys/time.h sys/resource.h" "struct rusage" ru_maxrss
4781
4782 if ! disabled w32threads && ! enabled pthreads; then
4783     check_func_headers "windows.h process.h" _beginthreadex &&
4784         enable w32threads || disable w32threads
4785 fi
4786
4787 # check for some common methods of building with pthread support
4788 # do this before the optional library checks as some of them require pthreads
4789 if ! disabled pthreads && ! enabled w32threads && ! enabled os2threads; then
4790     enable pthreads
4791     if check_func pthread_join -pthread && check_func pthread_create -pthread; then
4792         add_cflags -pthread
4793         add_extralibs -pthread
4794     elif check_func pthread_join -pthreads && check_func pthread_create -pthreads; then
4795         add_cflags -pthreads
4796         add_extralibs -pthreads
4797     elif check_func pthread_join -ldl -pthread && check_func pthread_create -ldl -pthread; then
4798         add_cflags -ldl -pthread
4799         add_extralibs -ldl -pthread
4800     elif check_func pthread_join -lpthreadGC2 && check_func pthread_create -lpthreadGC2; then
4801         add_extralibs -lpthreadGC2
4802     elif check_lib pthread.h pthread_join -lpthread && check_lib pthread.h pthread_create -lpthread; then
4803         :
4804     elif ! check_func pthread_join && ! check_func pthread_create; then
4805         disable pthreads
4806     fi
4807     check_code cc "pthread.h" "static pthread_mutex_t atomic_lock = PTHREAD_MUTEX_INITIALIZER" || disable pthreads
4808 fi
4809
4810
4811 if enabled pthreads; then
4812   check_func pthread_cancel
4813 fi
4814
4815 disabled  zlib || check_lib   zlib.h      zlibVersion -lz   || disable  zlib
4816 disabled bzlib || check_lib2 bzlib.h BZ2_bzlibVersion -lbz2 || disable bzlib
4817 disabled  lzma || check_lib2  lzma.h lzma_version_number -llzma || disable lzma
4818
4819 check_lib math.h sin -lm && LIBM="-lm"
4820 disabled crystalhd || check_lib libcrystalhd/libcrystalhd_if.h DtsCrystalHDVersion -lcrystalhd || disable crystalhd
4821
4822 atan2f_args=2
4823 ldexpf_args=2
4824 powf_args=2
4825
4826 for func in $MATH_FUNCS; do
4827     eval check_mathfunc $func \${${func}_args:-1}
4828 done
4829
4830 # these are off by default, so fail if requested and not available
4831 enabled avfoundation_indev && { check_header_oc AVFoundation/AVFoundation.h || disable avfoundation_indev; }
4832 enabled avisynth          && { { check_lib2 "windows.h" LoadLibrary; } ||
4833                                { check_lib2 "dlfcn.h" dlopen -ldl; } ||
4834                                die "ERROR: LoadLibrary/dlopen not found for avisynth"; }
4835 enabled decklink          && { check_header DeckLinkAPI.h || die "ERROR: DeckLinkAPI.h header not found"; }
4836 enabled frei0r            && { check_header frei0r.h || die "ERROR: frei0r.h header not found"; }
4837 enabled gnutls            && require_pkg_config gnutls gnutls/gnutls.h gnutls_global_init
4838 enabled ladspa            && { check_header ladspa.h || die "ERROR: ladspa.h header not found"; }
4839 enabled libiec61883       && require libiec61883 libiec61883/iec61883.h iec61883_cmp_connect -lraw1394 -lavc1394 -lrom1394 -liec61883
4840 enabled libaacplus        && require "libaacplus >= 2.0.0" aacplus.h aacplusEncOpen -laacplus
4841 enabled libass            && require_pkg_config libass ass/ass.h ass_library_init
4842 enabled libbluray         && require_pkg_config libbluray libbluray/bluray.h bd_open
4843 enabled libbs2b           && require_pkg_config libbs2b bs2b.h bs2b_open
4844 enabled libcelt           && require libcelt celt/celt.h celt_decode -lcelt0 &&
4845                              { check_lib celt/celt.h celt_decoder_create_custom -lcelt0 ||
4846                                die "ERROR: libcelt must be installed and version must be >= 0.11.0."; }
4847 enabled libcaca           && require_pkg_config caca caca.h caca_create_canvas
4848 enabled libfaac           && require2 libfaac "stdint.h faac.h" faacEncGetVersion -lfaac
4849 enabled libfdk_aac        && require libfdk_aac fdk-aac/aacenc_lib.h aacEncOpen -lfdk-aac
4850 flite_libs="-lflite_cmu_time_awb -lflite_cmu_us_awb -lflite_cmu_us_kal -lflite_cmu_us_kal16 -lflite_cmu_us_rms -lflite_cmu_us_slt -lflite_usenglish -lflite_cmulex -lflite"
4851 enabled libflite          && require2 libflite "flite/flite.h" flite_init $flite_libs
4852 enabled fontconfig        && enable libfontconfig
4853 enabled libfontconfig     && require_pkg_config fontconfig "fontconfig/fontconfig.h" FcInit
4854 enabled libfreetype       && require_libfreetype
4855 enabled libfribidi        && require_pkg_config fribidi fribidi.h fribidi_version_info
4856 enabled libgme            && require  libgme gme/gme.h gme_new_emu -lgme -lstdc++
4857 enabled libgsm            && { for gsm_hdr in "gsm.h" "gsm/gsm.h"; do
4858                                    check_lib "${gsm_hdr}" gsm_create -lgsm && break;
4859                                done || die "ERROR: libgsm not found"; }
4860 enabled libilbc           && require libilbc ilbc.h WebRtcIlbcfix_InitDecode -lilbc
4861 enabled libmodplug        && require_pkg_config libmodplug libmodplug/modplug.h ModPlug_Load
4862 enabled libmp3lame        && require "libmp3lame >= 3.98.3" lame/lame.h lame_set_VBR_quality -lmp3lame
4863 enabled libnut            && require libnut libnut.h nut_demuxer_init -lnut
4864 enabled libopencore_amrnb && require libopencore_amrnb opencore-amrnb/interf_dec.h Decoder_Interface_init -lopencore-amrnb
4865 enabled libopencore_amrwb && require libopencore_amrwb opencore-amrwb/dec_if.h D_IF_init -lopencore-amrwb
4866 enabled libopencv         && require_pkg_config opencv opencv/cxcore.h cvCreateImageHeader
4867 enabled libopenjpeg       && { check_lib openjpeg.h opj_version -lopenmj2 -DOPJ_STATIC ||
4868                                check_lib openjpeg-1.5/openjpeg.h opj_version -lopenjpeg -DOPJ_STATIC ||
4869                                check_lib openjpeg.h opj_version -lopenjpeg -DOPJ_STATIC ||
4870                                die "ERROR: libopenjpeg not found"; }
4871 enabled libopus           && require_pkg_config opus opus_multistream.h opus_multistream_decoder_create
4872 enabled libpulse          && require_pkg_config libpulse pulse/pulseaudio.h pa_context_new
4873 enabled libquvi           && require_pkg_config libquvi quvi/quvi.h quvi_init
4874 enabled librtmp           && require_pkg_config librtmp librtmp/rtmp.h RTMP_Socket
4875 enabled libschroedinger   && require_pkg_config schroedinger-1.0 schroedinger/schro.h schro_init
4876 enabled libshine          && require_pkg_config shine shine/layer3.h shine_encode_buffer
4877 enabled libsmbclient      && { { check_pkg_config smbclient libsmbclient.h smbc_init &&
4878                                  require_pkg_config smbclient libsmbclient.h smbc_init; } ||
4879                                  require smbclient libsmbclient.h smbc_init -lsmbclient; }
4880 enabled libsoxr           && require libsoxr soxr.h soxr_create -lsoxr
4881 enabled libssh            && require_pkg_config libssh libssh/sftp.h sftp_init
4882 enabled libspeex          && require_pkg_config speex speex/speex.h speex_decoder_init -lspeex
4883 enabled libstagefright_h264 && require_cpp libstagefright_h264 "binder/ProcessState.h media/stagefright/MetaData.h
4884     media/stagefright/MediaBufferGroup.h media/stagefright/MediaDebug.h media/stagefright/MediaDefs.h
4885     media/stagefright/OMXClient.h media/stagefright/OMXCodec.h" android::OMXClient -lstagefright -lmedia -lutils -lbinder -lgnustl_static
4886 enabled libtheora         && require libtheora theora/theoraenc.h th_info_init -ltheoraenc -ltheoradec -logg
4887 enabled libtwolame        && require libtwolame twolame.h twolame_init -ltwolame &&
4888                              { check_lib twolame.h twolame_encode_buffer_float32_interleaved -ltwolame ||
4889                                die "ERROR: libtwolame must be installed and version must be >= 0.3.10"; }
4890 enabled libutvideo        && require_cpp utvideo "stdint.h stdlib.h utvideo/utvideo.h utvideo/Codec.h" 'CCodec*' -lutvideo -lstdc++
4891 enabled libv4l2           && require_pkg_config libv4l2 libv4l2.h v4l2_ioctl
4892 enabled libvidstab        && require_pkg_config "vidstab >= 0.98" vid.stab/libvidstab.h vsMotionDetectInit
4893 enabled libvo_aacenc      && require libvo_aacenc vo-aacenc/voAAC.h voGetAACEncAPI -lvo-aacenc
4894 enabled libvo_amrwbenc    && require libvo_amrwbenc vo-amrwbenc/enc_if.h E_IF_init -lvo-amrwbenc
4895 enabled libvorbis         && require libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbisenc -lvorbis -logg
4896 enabled libvpx            && {
4897     enabled libvpx_vp8_decoder && { check_lib2 "vpx/vpx_decoder.h vpx/vp8dx.h" vpx_codec_dec_init_ver -lvpx ||
4898                                     die "ERROR: libvpx decoder version must be >=0.9.1"; }
4899     enabled libvpx_vp8_encoder && { check_lib2 "vpx/vpx_encoder.h vpx/vp8cx.h" "vpx_codec_enc_init_ver VP8E_SET_MAX_INTRA_BITRATE_PCT" -lvpx ||
4900                                     die "ERROR: libvpx encoder version must be >=0.9.7"; }
4901     enabled libvpx_vp9_decoder && { check_lib2 "vpx/vpx_decoder.h vpx/vp8dx.h" "vpx_codec_vp9_dx" -lvpx || disable libvpx_vp9_decoder; }
4902     enabled libvpx_vp9_encoder && { check_lib2 "vpx/vpx_encoder.h vpx/vp8cx.h" "vpx_codec_vp9_cx VP9E_SET_AQ_MODE" -lvpx || disable libvpx_vp9_encoder; } }
4903 enabled libwavpack        && require libwavpack wavpack/wavpack.h WavpackOpenFileOutput  -lwavpack
4904 enabled libwebp           && require_pkg_config "libwebp >= 0.2.0" webp/encode.h WebPGetEncoderVersion
4905 enabled libx264           && { { check_pkg_config x264 "stdint.h x264.h" x264_encoder_encode &&
4906                                  require_pkg_config x264 "stdint.h x264.h" x264_encoder_encode; } ||
4907                                { require libx264 x264.h x264_encoder_encode -lx264 &&
4908                                  warn "using libx264 without pkg-config"; } } &&
4909                              { check_cpp_condition x264.h "X264_BUILD >= 118" ||
4910                                die "ERROR: libx264 must be installed and version must be >= 0.118."; }
4911 enabled libx265           && require_pkg_config x265 x265.h x265_encoder_encode &&
4912                              { check_cpp_condition x265.h "X265_BUILD >= 17" ||
4913                                die "ERROR: libx265 version must be >= 17."; }
4914 enabled libxavs           && require libxavs xavs.h xavs_encoder_encode -lxavs
4915 enabled libxvid           && require libxvid xvid.h xvid_global -lxvidcore
4916 enabled libzmq            && require_pkg_config libzmq zmq.h zmq_ctx_new
4917 enabled libzvbi           && require libzvbi libzvbi.h vbi_decoder_new -lzvbi
4918 enabled openal            && { { for al_libs in "${OPENAL_LIBS}" "-lopenal" "-lOpenAL32"; do
4919                                check_lib 'AL/al.h' alGetError "${al_libs}" && break; done } ||
4920                                die "ERROR: openal not found"; } &&
4921                              { check_cpp_condition "AL/al.h" "defined(AL_VERSION_1_1)" ||
4922                                die "ERROR: openal must be installed and version must be 1.1 or compatible"; }
4923 enabled opencl            && { check_lib2 OpenCL/cl.h clEnqueueNDRangeKernel -Wl,-framework,OpenCL ||
4924                                check_lib2 CL/cl.h clEnqueueNDRangeKernel -lOpenCL ||
4925                                die "ERROR: opencl not found"; } &&
4926                              { check_cpp_condition "OpenCL/cl.h" "defined(CL_VERSION_1_2)" ||
4927                                check_cpp_condition "CL/cl.h" "defined(CL_VERSION_1_2)" ||
4928                                die "ERROR: opencl must be installed and version must be 1.2 or compatible"; }
4929 enabled opengl            && { check_lib GL/glx.h glXGetProcAddress "-lGL" ||
4930                                check_lib2 windows.h wglGetProcAddress "-lopengl32 -lgdi32" ||
4931                                check_lib2 OpenGL/gl3.h glGetError "-Wl,-framework,OpenGL" ||
4932                                check_lib2 ES2/gl.h glGetError "-isysroot=${sysroot} -Wl,-framework,OpenGLES" ||
4933                                die "ERROR: opengl not found."
4934                              }
4935 enabled openssl           && { check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto ||
4936                                check_lib openssl/ssl.h SSL_library_init -lssl32 -leay32 ||
4937                                check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto -lws2_32 -lgdi32 ||
4938                                die "ERROR: openssl not found"; }
4939 enabled qtkit_indev      && { check_header_oc QTKit/QTKit.h || disable qtkit_indev; }
4940
4941 if enabled gnutls; then
4942     { check_lib nettle/bignum.h nettle_mpz_get_str_256 -lnettle -lhogweed -lgmp && enable nettle; } ||
4943     { check_lib gcrypt.h gcry_mpi_new -lgcrypt && enable gcrypt; }
4944 fi
4945
4946 # libdc1394 check
4947 if enabled libdc1394; then
4948     { check_lib dc1394/dc1394.h dc1394_new -ldc1394 -lraw1394 &&
4949         enable libdc1394_2; } ||
4950     { check_lib libdc1394/dc1394_control.h dc1394_create_handle -ldc1394_control -lraw1394 &&
4951         enable libdc1394_1; } ||
4952     die "ERROR: No version of libdc1394 found "
4953 fi
4954 if ! disabled sdl; then
4955     SDL_CONFIG="${cross_prefix}sdl-config"
4956     if check_pkg_config sdl SDL_events.h SDL_PollEvent; then
4957         check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
4958         check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) < 0x010300" $sdl_cflags &&
4959         enable sdl
4960     else
4961         if "${SDL_CONFIG}" --version > /dev/null 2>&1; then
4962             sdl_cflags=$("${SDL_CONFIG}" --cflags)
4963             sdl_libs=$("${SDL_CONFIG}" --libs)
4964             check_func_headers SDL_version.h SDL_Linked_Version $sdl_cflags $sdl_libs &&
4965             check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags &&
4966             check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) < 0x010300" $sdl_cflags &&
4967             enable sdl
4968         elif enabled sdl ; then
4969             die "ERROR: SDL not found"
4970         else
4971             disable sdl
4972         fi
4973     fi
4974 fi
4975 enabled sdl && add_cflags $sdl_cflags && add_extralibs $sdl_libs
4976
4977 makeinfo --version > /dev/null 2>&1 && enable makeinfo  || disable makeinfo
4978 enabled makeinfo && (makeinfo --version | \
4979                      grep -q 'makeinfo (GNU texinfo) 5' > /dev/null 2>&1) \
4980     && enable makeinfo_html || disable makeinfo_html
4981 disabled makeinfo_html && texi2html --help 2> /dev/null | grep -q 'init-file' && enable texi2html || disable texi2html
4982 perl -v            > /dev/null 2>&1 && enable perl      || disable perl
4983 pod2man --help     > /dev/null 2>&1 && enable pod2man   || disable pod2man
4984 rsync --help 2> /dev/null | grep -q 'contimeout' && enable rsync_contimeout || disable rsync_contimeout
4985
4986 check_header linux/fb.h
4987 check_header linux/videodev.h
4988 check_header linux/videodev2.h
4989 check_code cc linux/videodev2.h "struct v4l2_frmsizeenum vfse; vfse.discrete.width = 0;" && enable_safe struct_v4l2_frmivalenum_discrete
4990
4991 check_header sys/videoio.h
4992 check_code cc sys/videoio.h "struct v4l2_frmsizeenum vfse; vfse.discrete.width = 0;" && enable_safe struct_v4l2_frmivalenum_discrete
4993
4994 check_func_headers "windows.h vfw.h" capCreateCaptureWindow "$vfwcap_indev_extralibs"
4995 # check that WM_CAP_DRIVER_CONNECT is defined to the proper value
4996 # w32api 3.12 had it defined wrong
4997 check_cpp_condition vfw.h "WM_CAP_DRIVER_CONNECT > WM_USER" && enable vfwcap_defines
4998
4999 check_type "dshow.h" IBaseFilter
5000
5001 # check for ioctl_meteor.h, ioctl_bt848.h and alternatives
5002 { check_header dev/bktr/ioctl_meteor.h &&
5003   check_header dev/bktr/ioctl_bt848.h; } ||
5004 { check_header machine/ioctl_meteor.h &&
5005   check_header machine/ioctl_bt848.h; } ||
5006 { check_header dev/video/meteor/ioctl_meteor.h &&
5007   check_header dev/video/bktr/ioctl_bt848.h; } ||
5008 check_header dev/ic/bt8xx.h
5009
5010 check_header sndio.h
5011 if check_struct sys/soundcard.h audio_buf_info bytes; then
5012     enable_safe sys/soundcard.h
5013 else
5014     check_cc -D__BSD_VISIBLE -D__XSI_VISIBLE <<EOF && add_cppflags -D__BSD_VISIBLE -D__XSI_VISIBLE && enable_safe sys/soundcard.h
5015     #include <sys/soundcard.h>
5016     audio_buf_info abc;
5017 EOF
5018 fi
5019 check_header soundcard.h
5020
5021 enabled_any alsa_indev alsa_outdev &&
5022     check_lib2 alsa/asoundlib.h snd_pcm_htimestamp -lasound
5023
5024 enabled jack_indev && check_lib2 jack/jack.h jack_client_open -ljack && check_func sem_timedwait &&
5025     check_func jack_port_get_latency_range -ljack
5026
5027 enabled_any sndio_indev sndio_outdev && check_lib2 sndio.h sio_open -lsndio
5028
5029 if enabled libcdio; then
5030     check_lib2 "cdio/cdda.h cdio/paranoia.h" cdio_cddap_open -lcdio_paranoia -lcdio_cdda -lcdio ||
5031     check_lib2 "cdio/paranoia/cdda.h cdio/paranoia/paranoia.h" cdio_cddap_open -lcdio_paranoia -lcdio_cdda -lcdio ||
5032     die "ERROR: libcdio-paranoia not found"
5033 fi
5034
5035 enabled xlib &&
5036     check_lib X11/Xlib.h XOpenDisplay -lX11 || disable xlib
5037
5038 if ! disabled libxcb; then
5039     check_pkg_config xcb xcb/xcb.h xcb_connect || {
5040         enabled libxcb && die "ERROR: libxcb not found";
5041     } && disable x11grab && enable libxcb
5042
5043 if enabled libxcb; then
5044     disabled libxcb_shm || {
5045         check_pkg_config xcb-shm xcb/shm.h xcb_shm_attach || {
5046             enabled libxcb_shm && die "ERROR: libxcb_shm not found";
5047         } && check_header sys/shm.h && enable libxcb_shm; }
5048
5049     disabled libxcb_xfixes || {
5050         check_pkg_config xcb-xfixes xcb/xfixes.h xcb_xfixes_get_cursor_image || {
5051             enabled libxcb_xfixes && die "ERROR: libxcb_xfixes not found";
5052         } && enable libxcb_xfixes; }
5053
5054     disabled libxcb_shape || {
5055         check_pkg_config xcb-shape xcb/shape.h xcb_shape_get_rectangles || {
5056             enabled libxcb_shape && die "ERROR: libxcb_shape not found";
5057         } && enable libxcb_shape; }
5058
5059     add_cflags $xcb_cflags $xcb_shm_cflags $xcb_xfixes_cflags $xcb_shape_cflags
5060     add_extralibs $xcb_libs $xcb_shm_libs $xcb_xfixes_libs $xcb_shape_libs
5061 fi
5062 fi
5063
5064 if enabled x11grab; then
5065     enabled xlib || die "ERROR: Xlib not found"
5066     require Xext X11/extensions/XShm.h XShmCreateImage -lXext
5067     require Xfixes X11/extensions/Xfixes.h XFixesGetCursorImage -lXfixes
5068 fi
5069
5070 check_func_headers "windows.h" CreateDIBSection "$gdigrab_indev_extralibs"
5071
5072 enabled dxva2api_h &&
5073     check_cc <<EOF && enable dxva2api_cobj
5074 #define _WIN32_WINNT 0x0600
5075 #define COBJMACROS
5076 #include <windows.h>
5077 #include <d3d9.h>
5078 #include <dxva2api.h>
5079 int main(void) { IDirectXVideoDecoder *o = NULL; IDirectXVideoDecoder_Release(o); return 0; }
5080 EOF
5081
5082 enabled vaapi &&
5083     check_lib va/va.h vaInitialize -lva ||
5084     disable vaapi
5085
5086 enabled vdpau &&
5087     check_cpp_condition vdpau/vdpau.h "defined VDP_DECODER_PROFILE_MPEG4_PART2_ASP" ||
5088     disable vdpau
5089
5090 enabled vdpau && enabled xlib &&
5091     check_func_headers "vdpau/vdpau.h vdpau/vdpau_x11.h" vdp_device_create_x11 -lvdpau &&
5092     prepend ffmpeg_libs $($ldflags_filter "-lvdpau") &&
5093     enable vdpau_x11
5094
5095 # Funny iconv installations are not unusual, so check it after all flags have been set
5096 disabled iconv || check_func_headers iconv.h iconv || check_lib2 iconv.h iconv -liconv || disable iconv
5097
5098 enabled debug && add_cflags -g"$debuglevel" && add_asflags -g"$debuglevel"
5099
5100 # add some useful compiler flags if supported
5101 check_cflags -Wdeclaration-after-statement
5102 check_cflags -Wall
5103 check_cflags -Wdisabled-optimization
5104 check_cflags -Wpointer-arith
5105 check_cflags -Wredundant-decls
5106 check_cflags -Wwrite-strings
5107 check_cflags -Wtype-limits
5108 check_cflags -Wundef
5109 check_cflags -Wmissing-prototypes
5110 check_cflags -Wno-pointer-to-int-cast
5111 check_cflags -Wstrict-prototypes
5112 check_cflags -Wempty-body
5113 enabled extra_warnings && check_cflags -Winline
5114
5115 check_disable_warning(){
5116     warning_flag=-W${1#-Wno-}
5117     test_cflags $warning_flag && add_cflags $1
5118 }
5119
5120 check_disable_warning -Wno-parentheses
5121 check_disable_warning -Wno-switch
5122 check_disable_warning -Wno-format-zero-length
5123 check_disable_warning -Wno-pointer-sign
5124
5125 # add some linker flags
5126 check_ldflags -Wl,--warn-common
5127 check_ldflags -Wl,-rpath-link=libpostproc:libswresample:libswscale:libavfilter:libavdevice:libavformat:libavcodec:libavutil:libavresample
5128 enabled rpath && add_ldexeflags -Wl,-rpath,$libdir
5129 test_ldflags -Wl,-Bsymbolic && append SHFLAGS -Wl,-Bsymbolic
5130
5131 # add some strip flags
5132 # -wN '..@*' is more selective than -x, but not available everywhere.
5133 check_stripflags -wN \'..@*\' || check_stripflags -x
5134
5135 enabled neon_clobber_test &&
5136     check_ldflags -Wl,--wrap,avcodec_open2              \
5137                   -Wl,--wrap,avcodec_decode_audio4      \
5138                   -Wl,--wrap,avcodec_decode_video2      \
5139                   -Wl,--wrap,avcodec_decode_subtitle2   \
5140                   -Wl,--wrap,avcodec_encode_audio2      \
5141                   -Wl,--wrap,avcodec_encode_video2      \
5142                   -Wl,--wrap,avcodec_encode_subtitle    \
5143                   -Wl,--wrap,swr_convert                \
5144                   -Wl,--wrap,avresample_convert ||
5145     disable neon_clobber_test
5146
5147 enabled xmm_clobber_test &&
5148     check_ldflags -Wl,--wrap,avcodec_open2              \
5149                   -Wl,--wrap,avcodec_decode_audio4      \
5150                   -Wl,--wrap,avcodec_decode_video2      \
5151                   -Wl,--wrap,avcodec_decode_subtitle2   \
5152                   -Wl,--wrap,avcodec_encode_audio2      \
5153                   -Wl,--wrap,avcodec_encode_video       \
5154                   -Wl,--wrap,avcodec_encode_video2      \
5155                   -Wl,--wrap,avcodec_encode_subtitle    \
5156                   -Wl,--wrap,swr_convert                \
5157                   -Wl,--wrap,avresample_convert         \
5158                   -Wl,--wrap,sws_scale ||
5159     disable xmm_clobber_test
5160
5161 echo "X{};" > $TMPV
5162 if test_ldflags -Wl,--version-script,$TMPV; then
5163     append SHFLAGS '-Wl,--version-script,\$(SUBDIR)lib\$(NAME).ver'
5164     check_cc <<EOF && enable symver_asm_label
5165 void ff_foo(void) __asm__ ("av_foo@VERSION");
5166 void ff_foo(void) { ${inline_asm+__asm__($quotes);} }
5167 EOF
5168     check_cc <<EOF && enable symver_gnu_asm
5169 __asm__(".symver ff_foo,av_foo@VERSION");
5170 void ff_foo(void) {}
5171 EOF
5172 fi
5173
5174 if [ -z "$optflags" ]; then
5175     if enabled small; then
5176         optflags=$cflags_size
5177     elif enabled optimizations; then
5178         optflags=$cflags_speed
5179     else
5180         optflags=$cflags_noopt
5181     fi
5182 fi
5183
5184 check_optflags(){
5185     check_cflags "$@"
5186     enabled lto && check_ldflags "$@"
5187 }
5188
5189
5190 if enabled lto; then
5191     test "$cc_type" != "$ld_type" && die "LTO requires same compiler and linker"
5192     check_cflags  -flto
5193     check_ldflags -flto $cpuflags
5194     disable inline_asm_direct_symbol_refs
5195 fi
5196
5197 check_optflags $optflags
5198 check_optflags -fno-math-errno
5199 check_optflags -fno-signed-zeros
5200
5201 enabled ftrapv && check_cflags -ftrapv
5202
5203 check_cc -mno-red-zone <<EOF && noredzone_flags="-mno-red-zone"
5204 int x;
5205 EOF
5206
5207
5208 if enabled icc; then
5209     # Just warnings, no remarks
5210     check_cflags -w1
5211     # -wd: Disable following warnings
5212     # 144, 167, 556: -Wno-pointer-sign
5213     # 188: enumerated type mixed with another type
5214     # 1292: attribute "foo" ignored
5215     # 1419: external declaration in primary source file
5216     # 10006: ignoring unknown option -fno-signed-zeros
5217     # 10148: ignoring unknown option -Wno-parentheses
5218     # 10156: ignoring option '-W'; no argument required
5219     check_cflags -wd144,167,188,556,1292,1419,10006,10148,10156
5220     # 11030: Warning unknown option --as-needed
5221     # 10156: ignoring option '-export'; no argument required
5222     check_ldflags -wd10156,11030
5223     # icc 11.0 and 11.1 work with ebp_available, but don't pass the test
5224     enable ebp_available
5225     # The test above does not test linking
5226     enabled lto && disable symver_asm_label
5227     if enabled x86_32; then
5228         icc_version=$($cc -dumpversion)
5229         test ${icc_version%%.*} -ge 11 &&
5230             check_cflags -falign-stack=maintain-16-byte ||
5231             disable aligned_stack
5232     fi
5233 elif enabled ccc; then
5234     # disable some annoying warnings
5235     add_cflags -msg_disable bitnotint
5236     add_cflags -msg_disable mixfuncvoid
5237     add_cflags -msg_disable nonstandcast
5238     add_cflags -msg_disable unsupieee
5239 elif enabled gcc; then
5240     check_optflags -fno-tree-vectorize
5241     check_cflags -Werror=format-security
5242     check_cflags -Werror=implicit-function-declaration
5243     check_cflags -Werror=missing-prototypes
5244     check_cflags -Werror=return-type
5245     check_cflags -Werror=vla
5246     check_cflags -Wformat
5247     enabled extra_warnings || check_disable_warning -Wno-maybe-uninitialized
5248 elif enabled llvm_gcc; then
5249     check_cflags -mllvm -stack-alignment=16
5250 elif enabled clang; then
5251     check_cflags -mllvm -stack-alignment=16
5252     check_cflags -Qunused-arguments
5253     check_cflags -Werror=implicit-function-declaration
5254     check_cflags -Werror=missing-prototypes
5255     check_cflags -Werror=return-type
5256 elif enabled cparser; then
5257     add_cflags -Wno-missing-variable-declarations
5258     add_cflags -Wno-empty-statement
5259 elif enabled armcc; then
5260     add_cflags -W${armcc_opt},--diag_suppress=4343 # hardfp compat
5261     add_cflags -W${armcc_opt},--diag_suppress=3036 # using . as system include dir
5262     # 2523: use of inline assembly is deprecated
5263     add_cflags -W${armcc_opt},--diag_suppress=2523
5264     add_cflags -W${armcc_opt},--diag_suppress=1207
5265     add_cflags -W${armcc_opt},--diag_suppress=1293 # assignment in condition
5266     add_cflags -W${armcc_opt},--diag_suppress=3343 # hardfp compat
5267     add_cflags -W${armcc_opt},--diag_suppress=167  # pointer sign
5268     add_cflags -W${armcc_opt},--diag_suppress=513  # pointer sign
5269 elif enabled tms470; then
5270     add_cflags -pds=824 -pds=837
5271     disable inline_asm
5272 elif enabled pathscale; then
5273     add_cflags -fstrict-overflow -OPT:wrap_around_unsafe_opt=OFF
5274 elif enabled_any msvc icl; then
5275     enabled x86_32 && disable aligned_stack
5276     enabled_all x86_32 debug && add_cflags -Oy-
5277     enabled debug && add_ldflags -debug
5278     enable pragma_deprecated
5279     if enabled icl; then
5280         # -Qansi-alias is basically -fstrict-aliasing, but does not work
5281         # (correctly) on icl 13.x.
5282         check_cpp_condition "windows.h" "__ICL < 1300 || __ICL >= 1400" &&
5283             add_cflags -Qansi-alias
5284         # Some inline asm is not compilable in debug
5285         if enabled debug; then
5286             disable ebp_available
5287             disable ebx_available
5288         fi
5289     fi
5290     # msvcrt10 x64 incorrectly enables log2, only msvcrt12 onwards actually has log2.
5291     check_cpp_condition crtversion.h "_VC_CRT_MAJOR_VERSION >= 12" || disable log2
5292 fi
5293
5294 case $as_type in
5295     clang)
5296         add_asflags -Qunused-arguments
5297     ;;
5298 esac
5299
5300 case $ld_type in
5301     clang)
5302         check_ldflags -Qunused-arguments
5303     ;;
5304 esac
5305
5306 case $target_os in
5307     osf1)
5308         enabled ccc && add_ldflags '-Wl,-expect_unresolved,*'
5309     ;;
5310     plan9)
5311         add_cppflags -Dmain=plan9_main
5312     ;;
5313 esac
5314
5315 enable frame_thread_encoder
5316
5317 enabled asm || { arch=c; disable $ARCH_LIST $ARCH_EXT_LIST; }
5318
5319 check_deps $CONFIG_LIST       \
5320            $CONFIG_EXTRA      \
5321            $HAVE_LIST         \
5322            $ALL_COMPONENTS    \
5323
5324 enabled threads && ! enabled pthreads && ! enabled atomics_native && die "non pthread threading without atomics not supported, try adding --enable-pthreads or --cpu=i486 or higher if you are on x86"
5325
5326
5327 if test $target_os = "haiku"; then
5328     disable memalign
5329     disable posix_memalign
5330 fi
5331
5332 enabled_all dxva2 dxva2api_cobj CoTaskMemFree &&
5333     prepend ffmpeg_libs $($ldflags_filter "-lole32") &&
5334     enable dxva2_lib
5335
5336 ! enabled_any memalign posix_memalign aligned_malloc &&
5337     enabled simd_align_16 && enable memalign_hack
5338
5339 # add_dep lib dep
5340 # -> enable ${lib}_deps_${dep}
5341 # -> add $dep to ${lib}_deps only once
5342 add_dep() {
5343     lib=$1
5344     dep=$2
5345     enabled "${lib}_deps_${dep}" && return 0
5346     enable  "${lib}_deps_${dep}"
5347     prepend "${lib}_deps" $dep
5348 }
5349
5350 # merge deps lib components
5351 # merge all ${component}_deps into ${lib}_deps and ${lib}_deps_*
5352 merge_deps() {
5353     lib=$1
5354     shift
5355     for comp in $*; do
5356         enabled $comp || continue
5357         eval "dep=\"\$${comp}_deps\""
5358         for d in $dep; do
5359             add_dep $lib $d
5360         done
5361     done
5362 }
5363
5364 merge_deps libavfilter $FILTER_LIST
5365
5366 map 'enabled $v && intrinsics=${v#intrinsics_}' $INTRINSICS_LIST
5367
5368 for thread in $THREADS_LIST; do
5369     if enabled $thread; then
5370         test -n "$thread_type" &&
5371             die "ERROR: Only one thread type must be selected." ||
5372             thread_type="$thread"
5373     fi
5374 done
5375
5376 enabled zlib && add_cppflags -DZLIB_CONST
5377
5378 # conditional library dependencies, in linking order
5379 enabled amovie_filter       && prepend avfilter_deps "avformat avcodec"
5380 enabled aresample_filter    && prepend avfilter_deps "swresample"
5381 enabled asyncts_filter      && prepend avfilter_deps "avresample"
5382 enabled atempo_filter       && prepend avfilter_deps "avcodec"
5383 enabled ebur128_filter && enabled swresample && prepend avfilter_deps "swresample"
5384 enabled elbg_filter         && prepend avfilter_deps "avcodec"
5385 enabled mcdeint_filter      && prepend avfilter_deps "avcodec"
5386 enabled movie_filter    && prepend avfilter_deps "avformat avcodec"
5387 enabled mp_filter           && prepend avfilter_deps "avcodec"
5388 enabled pan_filter          && prepend avfilter_deps "swresample"
5389 enabled pp_filter           && prepend avfilter_deps "postproc"
5390 enabled removelogo_filter   && prepend avfilter_deps "avformat avcodec swscale"
5391 enabled resample_filter && prepend avfilter_deps "avresample"
5392 enabled sab_filter          && prepend avfilter_deps "swscale"
5393 enabled scale_filter    && prepend avfilter_deps "swscale"
5394 enabled showspectrum_filter && prepend avfilter_deps "avcodec"
5395 enabled smartblur_filter    && prepend avfilter_deps "swscale"
5396 enabled subtitles_filter    && prepend avfilter_deps "avformat avcodec"
5397
5398 enabled lavfi_indev         && prepend avdevice_deps "avfilter"
5399
5400 enabled opus_decoder    && prepend avcodec_deps "swresample"
5401
5402 expand_deps(){
5403     lib_deps=${1}_deps
5404     eval "deps=\$$lib_deps"
5405     append $lib_deps $(map 'eval echo \$${v}_deps' $deps)
5406     unique $lib_deps
5407 }
5408
5409 #we have to remove gpl from the deps here as some code assumes all lib deps are libs
5410 postproc_deps="$(filter_out 'gpl' $postproc_deps)"
5411
5412 map 'expand_deps $v' $LIBRARY_LIST
5413
5414 echo "install prefix            $prefix"
5415 echo "source path               $source_path"
5416 echo "C compiler                $cc"
5417 echo "C library                 $libc_type"
5418 if test "$host_cc" != "$cc"; then
5419     echo "host C compiler           $host_cc"
5420     echo "host C library            $host_libc_type"
5421 fi
5422 echo "ARCH                      $arch ($cpu)"
5423 if test "$build_suffix" != ""; then
5424     echo "build suffix              $build_suffix"
5425 fi
5426 if test "$progs_suffix" != ""; then
5427     echo "progs suffix              $progs_suffix"
5428 fi
5429 if test "$extra_version" != ""; then
5430     echo "version string suffix     $extra_version"
5431 fi
5432 echo "big-endian                ${bigendian-no}"
5433 echo "runtime cpu detection     ${runtime_cpudetect-no}"
5434 if enabled x86; then
5435     echo "${yasmexe}                      ${yasm-no}"
5436     echo "MMX enabled               ${mmx-no}"
5437     echo "MMXEXT enabled            ${mmxext-no}"
5438     echo "3DNow! enabled            ${amd3dnow-no}"
5439     echo "3DNow! extended enabled   ${amd3dnowext-no}"
5440     echo "SSE enabled               ${sse-no}"
5441     echo "SSSE3 enabled             ${ssse3-no}"
5442     echo "AVX enabled               ${avx-no}"
5443     echo "XOP enabled               ${xop-no}"
5444     echo "FMA3 enabled              ${fma3-no}"
5445     echo "FMA4 enabled              ${fma4-no}"
5446     echo "i686 features enabled     ${i686-no}"
5447     echo "CMOV is fast              ${fast_cmov-no}"
5448     echo "EBX available             ${ebx_available-no}"
5449     echo "EBP available             ${ebp_available-no}"
5450 fi
5451 if enabled aarch64; then
5452     echo "NEON enabled              ${neon-no}"
5453     echo "VFP enabled               ${vfp-no}"
5454 fi
5455 if enabled arm; then
5456     echo "ARMv5TE enabled           ${armv5te-no}"
5457     echo "ARMv6 enabled             ${armv6-no}"
5458     echo "ARMv6T2 enabled           ${armv6t2-no}"
5459     echo "VFP enabled               ${vfp-no}"
5460     echo "NEON enabled              ${neon-no}"
5461     echo "THUMB enabled             ${thumb-no}"
5462 fi
5463 if enabled mips; then
5464     echo "MIPS FPU enabled          ${mipsfpu-no}"
5465     echo "MIPS32R2 enabled          ${mips32r2-no}"
5466     echo "MIPS DSP R1 enabled       ${mipsdspr1-no}"
5467     echo "MIPS DSP R2 enabled       ${mipsdspr2-no}"
5468 fi
5469 if enabled ppc; then
5470     echo "AltiVec enabled           ${altivec-no}"
5471     echo "PPC 4xx optimizations     ${ppc4xx-no}"
5472     echo "PPC VSX optimizations     ${vsx-no}"
5473     echo "dcbzl available           ${dcbzl-no}"
5474 fi
5475 echo "debug symbols             ${debug-no}"
5476 echo "strip symbols             ${stripping-no}"
5477 echo "optimize for size         ${small-no}"
5478 echo "optimizations             ${optimizations-no}"
5479 echo "static                    ${static-no}"
5480 echo "shared                    ${shared-no}"
5481 echo "postprocessing support    ${postproc-no}"
5482 echo "new filter support        ${avfilter-no}"
5483 echo "network support           ${network-no}"
5484 echo "threading support         ${thread_type-no}"
5485 echo "safe bitstream reader     ${safe_bitstream_reader-no}"
5486 echo "SDL support               ${sdl-no}"
5487 echo "opencl enabled            ${opencl-no}"
5488 echo "texi2html enabled         ${texi2html-no}"
5489 echo "perl enabled              ${perl-no}"
5490 echo "pod2man enabled           ${pod2man-no}"
5491 echo "makeinfo enabled          ${makeinfo-no}"
5492 echo "makeinfo supports HTML    ${makeinfo_html-no}"
5493 test -n "$random_seed" &&
5494     echo "random seed               ${random_seed}"
5495 echo
5496
5497 echo "External libraries:"
5498 print_enabled '' $EXTERNAL_LIBRARY_LIST | print_3_columns
5499 echo
5500
5501 for type in decoder encoder hwaccel parser demuxer muxer protocol filter bsf indev outdev; do
5502     echo "Enabled ${type}s:"
5503     eval list=\$$(toupper $type)_LIST
5504     print_enabled '_*' $list | print_3_columns
5505     echo
5506 done
5507
5508 license="LGPL version 2.1 or later"
5509 if enabled nonfree; then
5510     license="nonfree and unredistributable"
5511 elif enabled gplv3; then
5512     license="GPL version 3 or later"
5513 elif enabled lgplv3; then
5514     license="LGPL version 3 or later"
5515 elif enabled gpl; then
5516     license="GPL version 2 or later"
5517 fi
5518
5519 echo "License: $license"
5520
5521 echo "Creating config.mak, config.h, and doc/config.texi..."
5522
5523 test -e Makefile || echo "include $source_path/Makefile" > Makefile
5524
5525 enabled stripping || strip="echo skipping strip"
5526
5527 config_files="$TMPH config.mak doc/config.texi"
5528
5529 cat > config.mak <<EOF
5530 # Automatically generated by configure - do not modify!
5531 ifndef FFMPEG_CONFIG_MAK
5532 FFMPEG_CONFIG_MAK=1
5533 FFMPEG_CONFIGURATION=$FFMPEG_CONFIGURATION
5534 prefix=$prefix
5535 LIBDIR=\$(DESTDIR)$libdir
5536 SHLIBDIR=\$(DESTDIR)$shlibdir
5537 INCDIR=\$(DESTDIR)$incdir
5538 BINDIR=\$(DESTDIR)$bindir
5539 DATADIR=\$(DESTDIR)$datadir
5540 DOCDIR=\$(DESTDIR)$docdir
5541 MANDIR=\$(DESTDIR)$mandir
5542 SRC_PATH=$source_path
5543 ifndef MAIN_MAKEFILE
5544 SRC_PATH:=\$(SRC_PATH:.%=..%)
5545 endif
5546 CC_IDENT=$cc_ident
5547 ARCH=$arch
5548 INTRINSICS=$intrinsics
5549 CC=$cc
5550 CXX=$cxx
5551 AS=$as
5552 LD=$ld
5553 DEPCC=$dep_cc
5554 DEPCCFLAGS=$DEPCCFLAGS \$(CPPFLAGS)
5555 DEPAS=$as
5556 DEPASFLAGS=$DEPASFLAGS \$(CPPFLAGS)
5557 YASM=$yasmexe
5558 DEPYASM=$yasmexe
5559 AR=$ar
5560 ARFLAGS=$arflags
5561 AR_O=$ar_o
5562 RANLIB=$ranlib
5563 STRIP=$strip
5564 CP=cp -p
5565 LN_S=$ln_s
5566 CPPFLAGS=$CPPFLAGS
5567 CFLAGS=$CFLAGS
5568 CXXFLAGS=$CXXFLAGS
5569 ASFLAGS=$ASFLAGS
5570 AS_C=$AS_C
5571 AS_O=$AS_O
5572 CC_C=$CC_C
5573 CC_E=$CC_E
5574 CC_O=$CC_O
5575 CXX_C=$CXX_C
5576 CXX_O=$CXX_O
5577 LD_O=$LD_O
5578 LD_LIB=$LD_LIB
5579 LD_PATH=$LD_PATH
5580 DLLTOOL=$dlltool
5581 WINDRES=$windres
5582 DEPWINDRES=$dep_cc
5583 DOXYGEN=$doxygen
5584 LDFLAGS=$LDFLAGS
5585 LDEXEFLAGS=$LDEXEFLAGS
5586 SHFLAGS=$(echo $($ldflags_filter $SHFLAGS))
5587 ASMSTRIPFLAGS=$ASMSTRIPFLAGS
5588 YASMFLAGS=$YASMFLAGS
5589 BUILDSUF=$build_suffix
5590 PROGSSUF=$progs_suffix
5591 FULLNAME=$FULLNAME
5592 LIBPREF=$LIBPREF
5593 LIBSUF=$LIBSUF
5594 LIBNAME=$LIBNAME
5595 SLIBPREF=$SLIBPREF
5596 SLIBSUF=$SLIBSUF
5597 EXESUF=$EXESUF
5598 EXTRA_VERSION=$extra_version
5599 CCDEP=$CCDEP
5600 CXXDEP=$CXXDEP
5601 CCDEP_FLAGS=$CCDEP_FLAGS
5602 ASDEP=$ASDEP
5603 ASDEP_FLAGS=$ASDEP_FLAGS
5604 CC_DEPFLAGS=$CC_DEPFLAGS
5605 AS_DEPFLAGS=$AS_DEPFLAGS
5606 HOSTCC=$host_cc
5607 HOSTLD=$host_ld
5608 HOSTCFLAGS=$host_cflags
5609 HOSTCPPFLAGS=$host_cppflags
5610 HOSTEXESUF=$HOSTEXESUF
5611 HOSTLDFLAGS=$host_ldflags
5612 HOSTLIBS=$host_libs
5613 DEPHOSTCC=$host_cc
5614 DEPHOSTCCFLAGS=$DEPHOSTCCFLAGS \$(HOSTCCFLAGS)
5615 HOSTCCDEP=$HOSTCCDEP
5616 HOSTCCDEP_FLAGS=$HOSTCCDEP_FLAGS
5617 HOSTCC_DEPFLAGS=$HOSTCC_DEPFLAGS
5618 HOSTCC_C=$HOSTCC_C
5619 HOSTCC_O=$HOSTCC_O
5620 HOSTLD_O=$HOSTLD_O
5621 TARGET_EXEC=$target_exec $target_exec_args
5622 TARGET_PATH=$target_path
5623 TARGET_SAMPLES=${target_samples:-\$(SAMPLES)}
5624 CFLAGS-ffplay=$sdl_cflags
5625 ZLIB=$($ldflags_filter -lz)
5626 LIB_INSTALL_EXTRA_CMD=$LIB_INSTALL_EXTRA_CMD
5627 EXTRALIBS=$extralibs
5628 COMPAT_OBJS=$compat_objs
5629 EXEOBJS=$exeobjs
5630 INSTALL=$install
5631 LIBTARGET=${LIBTARGET}
5632 SLIBNAME=${SLIBNAME}
5633 SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}
5634 SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}
5635 SLIB_CREATE_DEF_CMD=${SLIB_CREATE_DEF_CMD}
5636 SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}
5637 SLIB_INSTALL_NAME=${SLIB_INSTALL_NAME}
5638 SLIB_INSTALL_LINKS=${SLIB_INSTALL_LINKS}
5639 SLIB_INSTALL_EXTRA_LIB=${SLIB_INSTALL_EXTRA_LIB}
5640 SLIB_INSTALL_EXTRA_SHLIB=${SLIB_INSTALL_EXTRA_SHLIB}
5641 SAMPLES:=${samples:-\$(FATE_SAMPLES)}
5642 NOREDZONE_FLAGS=$noredzone_flags
5643 EOF
5644
5645 get_version(){
5646     lcname=lib${1}
5647     name=$(toupper $lcname)
5648     file=$source_path/$lcname/version.h
5649     eval $(awk "/#define ${name}_VERSION_M/ { print \$2 \"=\" \$3 }" "$file")
5650     enabled raise_major && eval ${name}_VERSION_MAJOR=$((${name}_VERSION_MAJOR+100))
5651     eval ${name}_VERSION=\$${name}_VERSION_MAJOR.\$${name}_VERSION_MINOR.\$${name}_VERSION_MICRO
5652     eval echo "${lcname}_VERSION=\$${name}_VERSION" >> config.mak
5653     eval echo "${lcname}_VERSION_MAJOR=\$${name}_VERSION_MAJOR" >> config.mak
5654     eval echo "${lcname}_VERSION_MINOR=\$${name}_VERSION_MINOR" >> config.mak
5655 }
5656
5657 map 'get_version $v' $LIBRARY_LIST
5658
5659 map 'eval echo "${v}_FFLIBS=\$${v}_deps" >> config.mak' $LIBRARY_LIST
5660
5661 print_program_libs(){
5662     eval "program_libs=\$${1}_libs"
5663     eval echo "LIBS-${1}=${program_libs}" >> config.mak
5664 }
5665
5666 map 'print_program_libs $v' $PROGRAM_LIST
5667
5668 cat > $TMPH <<EOF
5669 /* Automatically generated by configure - do not modify! */
5670 #ifndef FFMPEG_CONFIG_H
5671 #define FFMPEG_CONFIG_H
5672 #define FFMPEG_CONFIGURATION "$(c_escape $FFMPEG_CONFIGURATION)"
5673 #define FFMPEG_LICENSE "$(c_escape $license)"
5674 #define CONFIG_THIS_YEAR 2014
5675 #define FFMPEG_DATADIR "$(eval c_escape $datadir)"
5676 #define AVCONV_DATADIR "$(eval c_escape $datadir)"
5677 #define CC_IDENT "$(c_escape ${cc_ident:-Unknown compiler})"
5678 #define av_restrict $_restrict
5679 #define EXTERN_PREFIX "${extern_prefix}"
5680 #define EXTERN_ASM ${extern_prefix}
5681 #define BUILDSUF "$build_suffix"
5682 #define SLIBSUF "$SLIBSUF"
5683 #define HAVE_MMX2 HAVE_MMXEXT
5684 #define SWS_MAX_FILTER_SIZE $sws_max_filter_size
5685 EOF
5686
5687 test -n "$assert_level" &&
5688     echo "#define ASSERT_LEVEL $assert_level" >>$TMPH
5689
5690 test -n "$malloc_prefix" &&
5691     echo "#define MALLOC_PREFIX $malloc_prefix" >>$TMPH
5692
5693 if enabled yasm; then
5694     append config_files $TMPASM
5695     printf '' >$TMPASM
5696 fi
5697
5698 enabled getenv || echo "#define getenv(x) NULL" >> $TMPH
5699
5700
5701 mkdir -p doc
5702 echo "@c auto-generated by configure" > doc/config.texi
5703
5704 print_config ARCH_   "$config_files" $ARCH_LIST
5705 print_config HAVE_   "$config_files" $HAVE_LIST
5706 print_config CONFIG_ "$config_files" $CONFIG_LIST       \
5707                                      $CONFIG_EXTRA      \
5708                                      $ALL_COMPONENTS    \
5709
5710 echo "#endif /* FFMPEG_CONFIG_H */" >> $TMPH
5711 echo "endif # FFMPEG_CONFIG_MAK" >> config.mak
5712
5713 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
5714 cp_if_changed $TMPH config.h
5715 touch .config
5716
5717 enabled yasm && cp_if_changed $TMPASM config.asm
5718
5719 cat > $TMPH <<EOF
5720 /* Generated by ffconf */
5721 #ifndef AVUTIL_AVCONFIG_H
5722 #define AVUTIL_AVCONFIG_H
5723 EOF
5724
5725 print_config AV_HAVE_ $TMPH $HAVE_LIST_PUB
5726
5727 echo "#endif /* AVUTIL_AVCONFIG_H */" >> $TMPH
5728
5729 cp_if_changed $TMPH libavutil/avconfig.h
5730
5731 if test -n "$WARNINGS"; then
5732     printf "\n$WARNINGS"
5733     enabled fatal_warnings && exit 1
5734 fi
5735
5736 # build pkg-config files
5737
5738 lib_version(){
5739     eval printf "\"lib${1}${build_suffix} >= \$LIB$(toupper ${1})_VERSION, \""
5740 }
5741
5742 pkgconfig_generate(){
5743     name=$1
5744     shortname=${name#lib}${build_suffix}
5745     comment=$2
5746     version=$3
5747     libs=$4
5748     requires=$(map 'lib_version $v' $(eval echo \$${name#lib}_deps))
5749     requires=${requires%, }
5750     enabled ${name#lib} || return 0
5751     mkdir -p $name
5752     cat <<EOF > $name/$name${build_suffix}.pc
5753 prefix=$prefix
5754 exec_prefix=\${prefix}
5755 libdir=$libdir
5756 includedir=$incdir
5757
5758 Name: $name
5759 Description: $comment
5760 Version: $version
5761 Requires: $(enabled shared || echo $requires)
5762 Requires.private: $(enabled shared && echo $requires)
5763 Conflicts:
5764 Libs: -L\${libdir} $(enabled rpath && echo "-Wl,-rpath,\${libdir}") -l${shortname} $(enabled shared || echo $libs)
5765 Libs.private: $(enabled shared && echo $libs)
5766 Cflags: -I\${includedir}
5767 EOF
5768
5769 mkdir -p doc/examples/pc-uninstalled
5770 includedir=${source_path}
5771 [ "$includedir" = . ] && includedir="\${pcfiledir}/../../.."
5772     cat <<EOF > doc/examples/pc-uninstalled/$name.pc
5773 prefix=
5774 exec_prefix=
5775 libdir=\${pcfiledir}/../../../$name
5776 includedir=${includedir}
5777
5778 Name: $name
5779 Description: $comment
5780 Version: $version
5781 Requires: $requires
5782 Conflicts:
5783 Libs: -L\${libdir} -Wl,-rpath,\${libdir} -l${shortname} $(enabled shared || echo $libs)
5784 Cflags: -I\${includedir}
5785 EOF
5786 }
5787
5788 pkgconfig_generate libavutil     "FFmpeg utility library"               "$LIBAVUTIL_VERSION"     "$LIBRT $LIBM"
5789 pkgconfig_generate libavcodec    "FFmpeg codec library"                 "$LIBAVCODEC_VERSION"    "$extralibs"
5790 pkgconfig_generate libavformat   "FFmpeg container format library"      "$LIBAVFORMAT_VERSION"   "$extralibs"
5791 pkgconfig_generate libavdevice   "FFmpeg device handling library"       "$LIBAVDEVICE_VERSION"   "$extralibs"
5792 pkgconfig_generate libavfilter   "FFmpeg audio/video filtering library" "$LIBAVFILTER_VERSION"   "$extralibs"
5793 pkgconfig_generate libpostproc   "FFmpeg postprocessing library"        "$LIBPOSTPROC_VERSION"   ""
5794 pkgconfig_generate libavresample "Libav audio resampling library"       "$LIBAVRESAMPLE_VERSION" "$LIBM"
5795 pkgconfig_generate libswscale    "FFmpeg image rescaling library"       "$LIBSWSCALE_VERSION"    "$LIBM"
5796 pkgconfig_generate libswresample "FFmpeg audio resampling library"      "$LIBSWRESAMPLE_VERSION" "$LIBM"