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