]> git.sesse.net Git - ffmpeg/blob - configure
cosmetics: Add whitespace around redirection operators.
[ffmpeg] / configure
1 #!/bin/sh
2 #
3 # FFmpeg configure script
4 #
5 # Copyright (c) 2000, 2001, 2002 Fabrice Bellard
6 # Copyright (c) 2005-2006 Diego Biurrun
7 # Copyright (c) 2005-2006 Mans Rullgard
8 #
9
10 # make sure we are running under a compatible shell
11 # try to make this part work with most shells
12
13 try_exec(){
14     echo "Trying shell $1"
15     type "$1" > /dev/null 2>&1 && exec "$@"
16 }
17
18 unset foo
19 (: ${foo%%bar}) 2> /dev/null
20 E1="$?"
21
22 (: ${foo?}) 2> /dev/null
23 E2="$?"
24
25 if test "$E1" != 0 || test "$E2" = 0; then
26     echo "Broken shell detected.  Trying alternatives."
27     export FF_CONF_EXEC
28     if test "0$FF_CONF_EXEC" -lt 1; then
29         FF_CONF_EXEC=1
30         try_exec bash "$0" "$@"
31     fi
32     if test "0$FF_CONF_EXEC" -lt 2; then
33         FF_CONF_EXEC=2
34         try_exec ksh "$0" "$@"
35     fi
36     if test "0$FF_CONF_EXEC" -lt 3; then
37         FF_CONF_EXEC=3
38         try_exec /usr/xpg4/bin/sh "$0" "$@"
39     fi
40     echo "No compatible shell script interpreter found."
41     echo "This configure script requires a POSIX-compatible shell"
42     echo "such as bash or ksh."
43     echo "THIS IS NOT A BUG IN FFMPEG, DO NOT REPORT IT AS SUCH."
44     echo "Instead, install a working POSIX-compatible shell."
45     echo "Disabling this configure test will create a broken FFmpeg."
46     if test "$BASH_VERSION" = '2.04.0(1)-release'; then
47         echo "This bash version ($BASH_VERSION) is broken on your platform."
48         echo "Upgrade to a later version if available."
49     fi
50     exit 1
51 fi
52
53 show_help(){
54   echo "Usage: configure [options]"
55   echo "Options: [defaults in brackets after descriptions]"
56   echo
57   echo "Standard options:"
58   echo "  --help                   print this message"
59   echo "  --logfile=FILE           log tests and output to FILE [config.err]"
60   echo "  --disable-logging        do not log configure debug information"
61   echo "  --prefix=PREFIX          install in PREFIX [$prefix]"
62   echo "  --libdir=DIR             install libs in DIR [PREFIX/lib]"
63   echo "  --shlibdir=DIR           install shared libs in DIR [PREFIX/lib]"
64   echo "  --incdir=DIR             install includes in DIR [PREFIX/include]"
65   echo "  --mandir=DIR             install man page in DIR [PREFIX/share/man]"
66   echo "  --enable-static          build static libraries [default=yes]"
67   echo "  --disable-static         do not build static libraries [default=no]"
68   echo "  --enable-shared          build shared libraries [default=no]"
69   echo "  --disable-shared         do not build shared libraries [default=yes]"
70   echo "  --enable-gpl             allow use of GPL code, the resulting libav*"
71   echo "                           and ffmpeg will be under GPL [default=no]"
72   echo "  --enable-nonfree         allow use of nonfree code, the resulting libav*"
73   echo "                           and ffmpeg will be unredistributable [default=no]"
74   echo "  --enable-postproc        enable GPLed postprocessing support [default=no]"
75   echo "  --enable-swscale         software scaler support [default=no]"
76   echo "  --enable-avfilter        video filter support (replaces vhook) [default=no]"
77   echo "  --enable-avfilter-lavf   video filters dependant on avformat [default=no]"
78   echo "  --enable-beosthreads     use BeOS threads [default=no]"
79   echo "  --enable-os2threads      use OS/2 threads [default=no]"
80   echo "  --enable-pthreads        use pthreads [default=no]"
81   echo "  --enable-w32threads      use Win32 threads [default=no]"
82   echo "  --enable-x11grab         enable X11 grabbing [default=no]"
83   echo
84   echo "External library support:"
85   echo "  --enable-mlib            use Sun medialib [default=no]"
86   echo "  --enable-liba52          enable GPLed liba52 support [default=no]"
87   echo "  --enable-liba52bin       open liba52.so.0 at runtime [default=no]"
88   echo "  --enable-avisynth        allow reading AVISynth script files [default=no]"
89   echo "  --enable-libamr-nb       enable libamr-nb floating point audio codec"
90   echo "  --enable-libamr-wb       enable libamr-wb floating point audio codec"
91   echo "  --enable-libdc1394       enable IIDC-1394 grabbing using libdc1394"
92   echo "                           and libraw1394 [default=no]"
93   echo "  --enable-libdirac        enable Dirac support via libdirac [default=no]"
94   echo "  --enable-libfaac         enable FAAC support via libfaac [default=no]"
95   echo "  --enable-libfaad         enable FAAD support via libfaad [default=no]"
96   echo "  --enable-libfaadbin      open libfaad.so.0 at runtime [default=no]"
97   echo "  --enable-libgsm          enable GSM support via libgsm [default=no]"
98   echo "  --enable-libmp3lame      enable MP3 encoding via libmp3lame [default=no]"
99   echo "  --enable-libnut          enable NUT (de)muxing via libnut,"
100   echo "                           native demuxer exists [default=no]"
101   echo "  --enable-libschroedinger enable Dirac support via libschroedinger [default=no]"
102   echo "  --enable-libtheora       enable Theora encoding via libtheora [default=no]"
103   echo "  --enable-libvorbis       enable Vorbis encoding via libvorbis,"
104   echo "                           native implementation exists [default=no]"
105   echo "  --enable-libx264         enable H.264 encoding via x264 [default=no]"
106   echo "  --enable-libxvid         enable Xvid encoding via xvidcore,"
107   echo "                           native MPEG-4/Xvid encoder exists [default=no]"
108   echo ""
109   echo "Advanced options (experts only):"
110   echo "  --source-path=PATH       path to source code [$source_path]"
111   echo "  --cross-prefix=PREFIX    use PREFIX for compilation tools [$cross_prefix]"
112   echo "  --enable-cross-compile   assume a cross-compiler is used"
113   echo "  --target-os=OS           compiler targets OS [$target_os]"
114   echo "  --cc=CC                  use C compiler CC [$cc]"
115   echo "  --extra-cflags=ECFLAGS   add ECFLAGS to CFLAGS [$CFLAGS]"
116   echo "  --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]"
117   echo "  --extra-libs=ELIBS       add ELIBS [$ELIBS]"
118   echo "  --build-suffix=SUFFIX    suffix for application specific build []"
119   echo "  --arch=ARCH              select architecture  [$arch]"
120   echo "  --cpu=CPU                selects the minimum cpu required (affects"
121   echo "                           instruction selection, may crash on older CPUs)"
122   echo "  --enable-powerpc-perf    enable performance report on PPC"
123   echo "                           (requires enabling PMC)"
124   echo "  --disable-mmx            disable MMX usage"
125   echo "  --disable-mmx2           disable MMX2 usage"
126   echo "  --disable-ssse3          disable SSSE3 usage"
127   echo "  --disable-armv5te        disable armv5te usage"
128   echo "  --disable-armv6          disable armv6 usage"
129   echo "  --disable-armvfp         disable ARM VFP usage"
130   echo "  --disable-iwmmxt         disable iwmmxt usage"
131   echo "  --disable-altivec        disable AltiVec usage"
132   echo "  --disable-network        disable network support [default=no]"
133   echo "  --disable-ipv6           disable ipv6 support [default=no]"
134   echo "  --disable-zlib           disable zlib [default=no]"
135   echo "  --disable-vhook          disable video hooking support"
136   echo "  --disable-debug          disable debugging symbols"
137   echo "  --disable-mpegaudio-hp   faster (but less accurate)"
138   echo "                           MPEG audio decoding [default=no]"
139   echo "  --enable-gray            enable full grayscale support (slower color)"
140   echo "  --disable-ffmpeg         disable ffmpeg build"
141   echo "  --disable-ffserver       disable ffserver build"
142   echo "  --disable-ffplay         disable ffplay build"
143   echo "  --enable-small           optimize for size instead of speed"
144   echo "  --enable-hardcoded-tables use hardcoded tables instead of runtime generation"
145   echo "  --enable-memalign-hack   emulate memalign, interferes with memory debuggers"
146   echo "  --disable-encoder=NAME   disables encoder NAME"
147   echo "  --enable-encoder=NAME    enables encoder NAME"
148   echo "  --disable-decoder=NAME   disables decoder NAME"
149   echo "  --enable-decoder=NAME    enables decoder NAME"
150   echo "  --disable-encoders       disables all encoders"
151   echo "  --disable-decoders       disables all decoders"
152   echo "  --disable-muxer=NAME     disables muxer NAME"
153   echo "  --enable-muxer=NAME      enables muxer NAME"
154   echo "  --disable-muxers         disables all muxers"
155   echo "  --disable-demuxer=NAME   disables demuxer NAME"
156   echo "  --enable-demuxer=NAME    enables demuxer NAME"
157   echo "  --disable-demuxers       disables all demuxers"
158   echo "  --enable-parser=NAME     enables parser NAME"
159   echo "  --disable-parser=NAME    disables parser NAME"
160   echo "  --disable-parsers        disables all parsers"
161   echo "  --enable-bsf=NAME        enables bitstream filter NAME"
162   echo "  --disable-bsf=NAME       disables bitstream filter NAME"
163   echo "  --disable-bsfs           disables all bitstream filters"
164   echo "  --enable-protocol=NAME   enables protocol NAME"
165   echo "  --disable-protocol=NAME  disables protocol NAME"
166   echo "  --disable-protocols      disables all protocols"
167   echo "  --disable-devices        disables all devices"
168   echo "  --list-decoders          show all available decoders"
169   echo "  --list-encoders          show all available encoders"
170   echo "  --list-muxers            show all available muxers"
171   echo "  --list-demuxers          show all available demuxers"
172   echo "  --list-parsers           show all available parsers"
173   echo "  --list-protocols         show all available protocols"
174   echo "  --list-bsfs              show all available bitstream filters"
175   echo "  --list-indevs            show all available input devices"
176   echo "  --list-outdevs           show all available output devices"
177   echo
178   echo "Developer options (useful when working on FFmpeg itself):"
179   echo "  --enable-gprof           enable profiling with gprof [$gprof]"
180   echo "  --disable-optimizations  disable compiler optimizations"
181   echo "  --enable-extra-warnings  enable more compiler warnings"
182   echo "  --disable-stripping      disable stripping of executables and shared libraries"
183   echo ""
184   echo "NOTE: Object files are built at the place where configure is launched."
185   exit 1
186 }
187
188 log(){
189     echo "$@" >> $logfile
190 }
191
192 log_file(){
193     log BEGIN $1
194     pr -n -t $1 >> $logfile
195     log END $1
196 }
197
198 echolog(){
199     log "$@"
200     echo "$@"
201 }
202
203 die(){
204     echolog "$@"
205     cat <<EOF
206 If you think configure made a mistake, make sure you are using the latest
207 version from SVN.  If the latest version fails, report the problem to the
208 ffmpeg-user@mplayerhq.hu mailing list or IRC #ffmpeg on irc.freenode.net.
209 EOF
210     if disabled logging; then
211         cat <<EOF
212 Rerun configure with logging enabled (do not use --disable-logging), and
213 include the log this produces with your report.
214 EOF
215     else
216 cat <<EOF
217 Include the log file "$logfile" produced by configure as this will help
218 solving the problem.
219 EOF
220     fi
221     rm -f $TMPC $TMPE $TMPH $TMPO $TMPS $TMPSH
222     exit 1
223 }
224
225 # Avoid locale weirdness, besides we really just want to translate ASCII.
226 toupper(){
227     echo "$@" | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ
228 }
229
230 tolower(){
231     echo "$@" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
232 }
233
234 set_all(){
235     value=$1
236     shift
237     for var in $*; do
238         eval $var=$value
239     done
240 }
241
242 pushvar(){
243     for var in $*; do
244         eval level=\${${var}_level:=0}
245         eval ${var}_${level}="\$$var"
246         eval ${var}_level=$(($level+1))
247     done
248 }
249
250 popvar(){
251     for var in $*; do
252         eval level=\${${var}_level:-0}
253         test $level = 0 && continue
254         eval level=$(($level-1))
255         eval $var="\${${var}_${level}}"
256         eval ${var}_level=$level
257         eval unset ${var}_${level}
258     done
259 }
260
261 enable(){
262     set_all yes $*
263 }
264
265 disable(){
266     set_all no $*
267 }
268
269 enabled(){
270     eval test "x\$$1" = "xyes"
271 }
272
273 disabled(){
274     eval test "x\$$1" = "xno"
275 }
276
277 enabled_all(){
278     for opt; do
279         enabled $opt || return 1
280     done
281 }
282
283 disabled_all(){
284     for opt; do
285         disabled $opt || return 1
286     done
287 }
288
289 enabled_any(){
290     for opt; do
291         enabled $opt && return 0
292     done
293 }
294
295 disabled_any(){
296     for opt; do
297         disabled $opt && return 0
298     done
299 }
300
301 is_in(){
302     value=$1
303     shift
304     for var in $*; do
305         [ $var = $value ] && return 0
306     done
307     return 1
308 }
309
310 check_deps(){
311     for cfg; do
312         enabled ${cfg}_checking && die "Circular dependency for $cfg."
313         disabled ${cfg}_checking && continue
314         enable ${cfg}_checking
315
316         eval dep_all="\$${cfg}_deps"
317         eval dep_any="\$${cfg}_deps_any"
318
319         pushvar cfg dep_all dep_any
320         check_deps $dep_all $dep_any
321         popvar cfg dep_all dep_any
322
323         enabled_all $dep_all || disable $cfg
324         enabled_any $dep_any || disable $cfg
325
326         if enabled $cfg; then
327             eval dep_extralibs="\$${cfg}_extralibs"
328             test -n "$dep_extralibs" && add_extralibs $dep_extralibs
329         fi
330
331         disable ${cfg}_checking
332     done
333 }
334
335 print_config(){
336     pfx=$1
337     header=$2
338     makefile=$3
339     shift 3
340     for cfg; do
341         ucname="`toupper $cfg`"
342         if enabled $cfg; then
343             echo "#define ${pfx}${ucname} 1" >> $header
344             echo "#define ENABLE_${ucname} 1" >> $header
345             echo "${pfx}${ucname}=yes" >> $makefile
346         else
347             echo "#define ENABLE_${ucname} 0" >> $header
348         fi
349     done
350 }
351
352 flags_saved(){
353     (: ${SAVE_CFLAGS?}) 2> /dev/null
354 }
355
356 save_flags(){
357     flags_saved && return
358     SAVE_CFLAGS="$CFLAGS"
359     SAVE_LDFLAGS="$LDFLAGS"
360     SAVE_extralibs="$extralibs"
361 }
362
363 restore_flags(){
364     flags_saved || return
365     CFLAGS="$SAVE_CFLAGS"
366     LDFLAGS="$SAVE_LDFLAGS"
367     extralibs="$SAVE_extralibs"
368     unset SAVE_CFLAGS
369     unset SAVE_LDFLAGS
370     unset SAVE_extralibs
371 }
372
373 temp_cflags(){
374     save_flags
375     CFLAGS="$CFLAGS $*"
376 }
377
378 temp_ldflags(){
379     save_flags
380     LDFLAGS="$LDFLAGS $*"
381 }
382
383 temp_extralibs(){
384     save_flags
385     extralibs="$extralibs $*"
386 }
387
388 append(){
389     var=$1
390     shift
391     flags_saved && eval "SAVE_$var=\"\$SAVE_$var $*\""
392     eval "$var=\"\$$var $*\""
393 }
394
395 add_cflags(){
396     append CFLAGS "$@"
397 }
398
399 add_ldflags(){
400     append LDFLAGS "$@"
401 }
402
403 add_extralibs(){
404     append extralibs "$@"
405 }
406
407 check_cmd(){
408     log "$@"
409     "$@" >> $logfile 2>&1
410 }
411
412 check_cc(){
413     log check_cc "$@"
414     cat > $TMPC
415     log_file $TMPC
416     check_cmd $cc $CFLAGS "$@" -c -o $TMPO $TMPC
417 }
418
419 check_cpp(){
420     log check_cpp "$@"
421     cat > $TMPC
422     log_file $TMPC
423     check_cmd $cc $CFLAGS "$@" -E -o $TMPO $TMPC
424 }
425
426 check_asm(){
427     log check_asm "$@"
428     name="$1"
429     asm="$2"
430     shift 2
431     check_cc "$@" <<EOF && enable $name || disable $name
432 int foo(void){ asm volatile($asm); }
433 EOF
434 }
435
436 check_ld(){
437     log check_ld "$@"
438     check_cc || return
439     flags=''
440     libs=''
441     for f; do
442         test "${f}" = "${f#-l}" && flags="$flags $f" || libs="$libs $f"
443     done
444     check_cmd $cc $LDFLAGS $flags -o $TMPE $TMPO $extralibs $libs
445 }
446
447 check_cflags(){
448     log check_cflags "$@"
449     check_cc "$@" <<EOF && add_cflags "$@"
450 int x;
451 EOF
452 }
453
454 check_ldflags(){
455     log check_ldflags "$@"
456     check_ld "$@" <<EOF && add_ldflags "$@"
457 int main(void){ return 0; }
458 EOF
459 }
460
461 check_header(){
462     log check_header "$@"
463     header=$1
464     shift
465     var=`echo $header | sed 's/[^A-Za-z0-9_]/_/g'`
466     disable $var
467     check_cpp "$@" <<EOF && enable $var
468 #include <$header>
469 int x;
470 EOF
471 }
472
473 check_func(){
474     log check_func "$@"
475     func=$1
476     shift
477     disable $func
478     check_ld "$@" <<EOF && enable $func
479 extern int $func();
480 int main(void){ $func(); }
481 EOF
482 }
483
484 check_func2(){
485     log check_func2 "$@"
486     headers=$1
487     func=$2
488     shift 2
489     disable $func
490     incs=""
491     for hdr in $headers; do
492         incs="$incs
493 #include <$hdr>"
494     done
495     check_ld "$@" <<EOF && enable $func
496 $incs
497 int main(int argc, char **argv){
498     (void) $func;
499     return 0;
500 }
501 EOF
502 }
503
504 check_lib(){
505     log check_lib "$@"
506     header="$1"
507     func="$2"
508     shift 2
509     temp_extralibs "$@"
510     check_header $header && check_func $func && add_extralibs "$@"
511     err=$?
512     restore_flags
513     return $err
514 }
515
516 check_lib2(){
517     log check_lib2 "$@"
518     headers="$1"
519     func="$2"
520     shift 2
521     temp_extralibs "$@"
522     check_func2 "$headers" $func && add_extralibs "$@"
523     err=$?
524     restore_flags
525     return $err
526 }
527
528 check_exec(){
529     check_ld "$@" && { enabled cross_compile || $TMPE >> $logfile 2>&1; }
530 }
531
532 check_exec_crash(){
533     code=`cat`
534
535     # exit() is not async signal safe.  _Exit (C99) and _exit (POSIX)
536     # are safe but may not be available everywhere.  Thus we use
537     # raise(SIGTERM) instead.  The check is run in a subshell so we
538     # can redirect the "Terminated" message from the shell.  SIGBUS
539     # is not defined by standard C so it is used conditionally.
540
541     (check_exec "$@") >> $logfile 2>&1 <<EOF
542 #include <signal.h>
543 static void sighandler(int sig){
544     raise(SIGTERM);
545 }
546 int main(void){
547     signal(SIGILL, sighandler);
548     signal(SIGFPE, sighandler);
549     signal(SIGSEGV, sighandler);
550 #ifdef SIGBUS
551     signal(SIGBUS, sighandler);
552 #endif
553     { $code }
554 }
555 EOF
556 }
557
558 check_type(){
559     log check_type "$@"
560     headers=$1
561     type=$2
562     shift 2
563     disable $type
564     incs=""
565     for hdr in $headers; do
566         incs="$incs
567 #include <$hdr>"
568     done
569     check_cc "$@" <<EOF && enable $type
570 $incs
571 $type v;
572 EOF
573 }
574
575 require(){
576     name="$1"
577     header="$2"
578     func="$3"
579     shift 3
580     check_lib $header $func "$@" || die "ERROR: $name not found"
581 }
582
583 require2(){
584     name="$1"
585     headers="$2"
586     func="$3"
587     shift 3
588     check_lib2 "$headers" $func "$@" || die "ERROR: $name not found"
589 }
590
591 check_foo_config(){
592     cfg=$1
593     pkg=$2
594     header=$3
595     func=$4
596     shift 4
597     disable $cfg
598     check_cmd ${pkg}-config --version
599     err=$?
600     if test "$err" = 0; then
601         temp_cflags `${pkg}-config --cflags`
602         temp_extralibs `${pkg}-config --libs`
603         check_lib "$@" $header $func && enable $cfg
604     fi
605     return $err
606 }
607
608 apply(){
609     file=$1
610     shift
611     "$@" < "$file" > "$file.tmp" && mv "$file.tmp" "$file" || rm "$file.tmp"
612 }
613
614 COMPONENT_LIST="
615     bsfs
616     decoders
617     demuxers
618     encoders
619     filters
620     indevs
621     muxers
622     outdevs
623     parsers
624     protocols
625 "
626
627 CONFIG_LIST="
628     $COMPONENT_LIST
629     avfilter
630     avfilter_lavf
631     avisynth
632     beos_netserver
633     ffmpeg
634     ffplay
635     ffserver
636     gpl
637     gprof
638     gray
639     hardcoded_tables
640     ipv6
641     liba52
642     liba52bin
643     libamr_nb
644     libamr_wb
645     libdc1394
646     libdirac
647     libfaac
648     libfaad
649     libfaadbin
650     libgsm
651     libmp3lame
652     libnut
653     libschroedinger
654     libtheora
655     libvorbis
656     libx264
657     libxvid
658     memalign_hack
659     mlib
660     mpegaudio_hp
661     network
662     nonfree
663     postproc
664     powerpc_perf
665     small
666     swscale
667     vhook
668     x11grab
669     zlib
670 "
671
672 THREADS_LIST='
673     beosthreads
674     os2threads
675     pthreads
676     w32threads
677 '
678
679 ARCH_LIST='
680     alpha
681     armv4l
682     bfin
683     ia64
684     m68k
685     mips
686     parisc
687     powerpc
688     s390
689     sh4
690     sparc
691     sparc64
692     x86
693     x86_32
694     x86_64
695 '
696
697 ARCH_EXT_LIST='
698     altivec
699     armv5te
700     armv6
701     armvfp
702     iwmmxt
703     mmi
704     mmx
705     mmx2
706     ssse3
707     vis
708 '
709
710 HAVE_LIST="
711     $ARCH_EXT_LIST
712     $THREADS_LIST
713     altivec_h
714     arpa_inet_h
715     bswap
716     byteswap_h
717     closesocket
718     cmov
719     conio_h
720     dcbzl
721     dev_bktr_ioctl_bt848_h
722     dev_bktr_ioctl_meteor_h
723     dev_ic_bt8xx_h
724     dev_video_meteor_ioctl_meteor_h
725     dev_video_bktr_ioctl_bt848_h
726     dlfcn_h
727     dlopen
728     ebp_available
729     ebx_available
730     fast_64bit
731     fast_cmov
732     fast_unaligned
733     fork
734     freetype2
735     gethrtime
736     GetProcessTimes
737     getrusage
738     imlib2
739     inet_aton
740     inline_asm
741     libdc1394_1
742     libdc1394_2
743     llrint
744     lrint
745     lrintf
746     machine_ioctl_bt848_h
747     machine_ioctl_meteor_h
748     malloc_h
749     memalign
750     mkstemp
751     pld
752     ppc64
753     round
754     roundf
755     sdl
756     sdl_video_size
757     socklen_t
758     soundcard_h
759     poll_h
760     sys_mman_h
761     sys_resource_h
762     sys_select_h
763     sys_soundcard_h
764     termios_h
765     threads
766     winsock2_h
767 "
768
769 CMDLINE_SELECT="
770     $ARCH_EXT_LIST
771     $CONFIG_LIST
772     $THREADS_LIST
773     cross_compile
774     debug
775     extra_warnings
776     logging
777     optimizations
778     shared
779     static
780     stripping
781 "
782 CMDLINE_SET='
783     arch
784     build_suffix
785     cc
786     cpu
787     cross_prefix
788     incdir
789     libdir
790     logfile
791     mandir
792     prefix
793     shlibdir
794     source_path
795     target_os
796 '
797
798 # code dependency declarations
799
800 # architecture extensions
801 altivec_deps="powerpc"
802 armv5te_deps="armv4l"
803 armv6_deps="armv4l"
804 armvfp_deps="armv4l"
805 iwmmxt_deps="armv4l"
806 mmi_deps="mips"
807 mmx_deps="x86"
808 mmx2_deps="x86 mmx"
809 ssse3_deps="x86"
810 vis_deps="sparc"
811
812 # decoders / encoders
813 ac3_decoder_deps="gpl"
814 dxa_decoder_deps="zlib"
815 flashsv_decoder_deps="zlib"
816 flashsv_encoder_deps="zlib"
817 mpeg_xvmc_decoder_deps="xvmc"
818 png_decoder_deps="zlib"
819 png_encoder_deps="zlib"
820 zmbv_decoder_deps="zlib"
821 zmbv_encoder_deps="zlib"
822
823 # external libraries
824 liba52_decoder_deps="liba52"
825 liba52bin_decoder_extralibs='$ldl'
826 libamr_nb_decoder_deps="libamr_nb"
827 libamr_nb_encoder_deps="libamr_nb"
828 libamr_wb_decoder_deps="libamr_wb"
829 libamr_wb_encoder_deps="libamr_wb"
830 libdirac_decoder_deps="libdirac"
831 libdirac_encoder_deps="libdirac"
832 libfaac_encoder_deps="libfaac"
833 libfaad_decoder_deps="libfaad"
834 libfaadbin_decoder_extralibs='$ldl'
835 libgsm_decoder_deps="libgsm"
836 libgsm_encoder_deps="libgsm"
837 libgsm_ms_decoder_deps="libgsm"
838 libgsm_ms_encoder_deps="libgsm"
839 libmp3lame_encoder_deps="libmp3lame"
840 libschroedinger_decoder_deps="libschroedinger"
841 libschroedinger_encoder_deps="libschroedinger"
842 libtheora_encoder_deps="libtheora"
843 libvorbis_encoder_deps="libvorbis"
844 libx264_encoder_deps="libx264"
845 libxvid_encoder_deps="libxvid"
846 mpeg4aac_decoder_deps="libfaad"
847
848 # demuxers / muxers
849 ac3_demuxer_deps="ac3_parser"
850 audio_beos_demuxer_deps="audio_beos"
851 audio_beos_demuxer_extralibs="-lmedia -lbe"
852 audio_beos_muxer_deps="audio_beos"
853 audio_beos_muxer_extralibs="-lmedia -lbe"
854 avisynth_demuxer_deps="avisynth"
855 bktr_demuxer_deps_any="dev_bktr_ioctl_bt848_h machine_ioctl_bt848_h dev_video_bktr_ioctl_bt848_h dev_ic_bt8xx_h"
856 dirac_demuxer_deps="dirac_parser"
857 dv1394_demuxer_deps="dv1394 dv_demuxer"
858 libdc1394_demuxer_deps="libdc1394"
859 libnut_demuxer_deps="libnut"
860 libnut_muxer_deps="libnut"
861 mp3_demuxer_deps="mpegaudio_parser"
862 oss_demuxer_deps_any="soundcard_h sys_soundcard_h"
863 oss_muxer_deps_any="soundcard_h sys_soundcard_h"
864 redir_demuxer_deps="network"
865 rtp_muxer_deps="network rtp_protocol"
866 rtsp_demuxer_deps="sdp_demuxer"
867 sdp_demuxer_deps="rtp_protocol mpegts_demuxer"
868 v4l_demuxer_deps="linux_videodev_h"
869 v4l2_demuxer_deps="linux_videodev2_h"
870 vfwcap_demuxer_deps="capCreateCaptureWindow"
871 vfwcap_demuxer_extralibs="-lvfw32"
872 x11_grab_device_demuxer_deps="x11grab XShmCreateImage"
873 x11_grab_device_demuxer_extralibs="-lX11 -lXext"
874
875 # protocols
876 http_protocol_deps="network"
877 rtp_protocol_deps="udp_protocol"
878 tcp_protocol_deps="network"
879 udp_protocol_deps="network"
880
881 # filters
882 movie_filter_deps="avfilter_lavf"
883
884 # programs
885 ffplay_deps="sdl"
886 ffserver_deps="ffm_muxer rtp_protocol rtsp_demuxer"
887 ffserver_extralibs='$ldl'
888 vhook_extralibs='$ldl'
889
890
891 # default parameters
892
893 logfile="config.err"
894
895 # installation paths
896 prefix="/usr/local"
897 libdir='$(PREFIX)/lib'
898 shlibdir="$libdir"
899 incdir='$(PREFIX)/include'
900 mandir='$(PREFIX)/share/man'
901 bindir='$(PREFIX)/bin'
902
903 # toolchain
904 cc="gcc"
905 ar="ar"
906 nm="nm"
907 ranlib="ranlib"
908 strip="strip"
909 asmalign_pot="unknown"
910 ln_s="ln -sf"
911
912 # machine
913 arch=`uname -m`
914 cpu="generic"
915
916 # OS
917 target_os=$(tolower $(uname -s))
918
919 # libraries
920 enable zlib
921
922 # configurable options
923 enable debug
924 enable ffmpeg
925 enable ffplay
926 enable ffserver
927 enable ipv6
928 enable mpegaudio_hp
929 enable network
930 enable optimizations
931 enable protocols
932 enable static
933 enable stripping
934 vhook="default"
935
936 # build settings
937 SHFLAGS='-shared -Wl,-soname,$$(@F)'
938 VHOOKSHFLAGS='$(SHFLAGS)'
939 LDLATEFLAGS='-Wl,-rpath-link,\$(BUILD_ROOT)/libavcodec -Wl,-rpath-link,\$(BUILD_ROOT)/libavformat -Wl,-rpath-link,\$(BUILD_ROOT)/libavutil'
940 FFSERVERLDFLAGS=-Wl,-E
941 LIBPREF="lib"
942 LIBSUF=".a"
943 FULLNAME='$(NAME)$(BUILDSUF)'
944 LIBNAME='$(LIBPREF)$(FULLNAME)$(LIBSUF)'
945 SLIBPREF="lib"
946 SLIBSUF=".so"
947 SLIBNAME='$(SLIBPREF)$(FULLNAME)$(SLIBSUF)'
948 SLIBNAME_WITH_VERSION='$(SLIBNAME).$(LIBVERSION)'
949 SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)'
950 LIB_INSTALL_EXTRA_CMD='$(RANLIB) "$(LIBDIR)/$(LIBNAME)"'
951
952 # gcc stupidly only outputs the basename of targets with -MM
953 DEPEND_CMD='$(CC) $(CFLAGS) -MM -MG $< | sed "1s,^,$(@D)/,"'
954
955 # find source path
956 source_path="`dirname \"$0\"`"
957 enable source_path_used
958 if test -z "$source_path" -o "$source_path" = "." ; then
959     source_path="`pwd`"
960     disable source_path_used
961 else
962     source_path="`cd \"$source_path\"; pwd`"
963     echo "$source_path" | grep -q '[[:blank:]]' &&
964         die "Out of tree builds are impossible with whitespace in source path."
965 fi
966
967 FFMPEG_CONFIGURATION="$@"
968
969 find_things(){
970     thing=$1
971     pattern=$2
972     file=$source_path/$3
973     sed -n "s/^[^#]*$pattern.*([^,]*, *\([^,]*\)\(,.*\)*).*/\1_$thing/p" "$file"
974 }
975
976 ENCODER_LIST=$(find_things  encoder  ENC      libavcodec/allcodecs.c)
977 DECODER_LIST=$(find_things  decoder  DEC      libavcodec/allcodecs.c)
978 PARSER_LIST=$(find_things   parser   PARSER   libavcodec/allcodecs.c)
979 BSF_LIST=$(find_things      bsf      BSF      libavcodec/allcodecs.c)
980 MUXER_LIST=$(find_things    muxer    _MUX     libavformat/allformats.c)
981 DEMUXER_LIST=$(find_things  demuxer  DEMUX    libavformat/allformats.c)
982 OUTDEV_LIST=$(find_things   muxer    _MUX     libavdevice/alldevices.c)
983 INDEV_LIST=$(find_things    demuxer  DEMUX    libavdevice/alldevices.c)
984 PROTOCOL_LIST=$(find_things protocol PROTOCOL libavformat/allformats.c)
985 FILTER_LIST=$(find_things   filter   FILTER   libavfilter/allfilters.c)
986
987 enable $ARCH_EXT_LIST \
988        $DECODER_LIST \
989        $ENCODER_LIST \
990        $PARSER_LIST \
991        $BSF_LIST \
992        $DEMUXER_LIST \
993        $MUXER_LIST \
994        $FILTER_LIST \
995        $PROTOCOL_LIST \
996        $INDEV_LIST \
997        $OUTDEV_LIST \
998
999 die_unknown(){
1000     echo "Unknown option \"$1\"."
1001     echo "See $0 --help for available options."
1002     exit 1
1003 }
1004
1005 show_list() {
1006     suffix=_$1
1007     shift
1008     echo $* | sed s/$suffix//g | tr ' ' '\n' | sort
1009     exit 0
1010 }
1011
1012 for opt do
1013     optval="${opt#*=}"
1014     case "$opt" in
1015     --extra-cflags=*) add_cflags "$optval"
1016     ;;
1017     --extra-ldflags=*) add_ldflags "$optval"
1018     ;;
1019     --extra-libs=*) add_extralibs "$optval"
1020     ;;
1021     --disable-devices) disable $INDEV_LIST $OUTDEV_LIST
1022     ;;
1023     --enable-debug=*) debuglevel="$optval"
1024     ;;
1025     --enable-*=*|--disable-*=*)
1026     eval `echo "$opt" | sed 's/=/-/;s/--/action=/;s/-/ thing=/;s/-/ name=/'`
1027     case "$thing" in
1028         encoder|decoder|muxer|demuxer|parser|bsf|protocol|filter) $action ${optval}_${thing} ;;
1029         *) die_unknown "$opt" ;;
1030     esac
1031     ;;
1032     --enable-?*|--disable-?*)
1033     eval `echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g'`
1034     if is_in $option $COMPONENT_LIST; then
1035         eval $action \$$(toupper ${option%s})_LIST
1036     elif is_in $option $CMDLINE_SELECT; then
1037         $action $option
1038     else
1039         die_unknown $opt
1040     fi
1041     ;;
1042     --list-*)
1043         NAME="${opt#--list-}"
1044         is_in $NAME $COMPONENT_LIST || die_unknown $opt
1045         NAME=${NAME%s}
1046         eval show_list $NAME \$$(toupper $NAME)_LIST
1047     ;;
1048     --help|-h) show_help
1049     ;;
1050     *)
1051     optname="${opt%=*}"
1052     optname="${optname#--}"
1053     optname=$(echo "$optname" | sed 's/-/_/g')
1054     is_in $optname $CMDLINE_SET || die_unknown $opt
1055     eval $optname='$optval'
1056     ;;
1057     esac
1058 done
1059
1060 cc="${cross_prefix}${cc}"
1061 ar="${cross_prefix}${ar}"
1062 nm="${cross_prefix}${nm}"
1063 ranlib="${cross_prefix}${ranlib}"
1064 strip="${cross_prefix}${strip}"
1065
1066 # set temporary file name
1067 if test ! -z "$TMPDIR" ; then
1068     TMPDIR1="${TMPDIR}"
1069 elif test ! -z "$TEMPDIR" ; then
1070     TMPDIR1="${TEMPDIR}"
1071 else
1072     TMPDIR1="/tmp"
1073 fi
1074
1075 TMPC="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.c"
1076 TMPE="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}${EXESUF}"
1077 TMPH="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.h"
1078 TMPO="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.o"
1079 TMPS="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.S"
1080 TMPSH="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.sh"
1081
1082 case "$arch" in
1083     i386|i486|i586|i686|i86pc|BePC)
1084         arch="x86_32"
1085         enable fast_unaligned
1086     ;;
1087     x86_64|amd64)
1088         arch="x86_32"
1089         enable fast_unaligned
1090         check_cc <<EOF && enable fast_64bit && arch="x86_64"
1091         int test[sizeof(char*) - 7];
1092 EOF
1093     ;;
1094     # armv4l is a subset of armv[567]*l
1095     arm|armv[4567]*l)
1096         arch="armv4l"
1097     ;;
1098     alpha)
1099         arch="alpha"
1100         enable fast_64bit
1101     ;;
1102     "Power Macintosh"|ppc|powerpc)
1103         arch="powerpc"
1104     ;;
1105     ppc64)
1106         arch="powerpc"
1107         enable fast_64bit
1108     ;;
1109     mips|mipsel|IP*)
1110         arch="mips"
1111     ;;
1112     sun4u|sparc64)
1113         arch="sparc64"
1114         enable fast_64bit
1115     ;;
1116     sparc)
1117         arch="sparc"
1118     ;;
1119     sh4)
1120         arch="sh4"
1121     ;;
1122     parisc)
1123         arch="parisc"
1124     ;;
1125     parisc64)
1126         arch="parisc"
1127         enable fast_64bit
1128     ;;
1129     s390|s390x)
1130         arch="s390"
1131     ;;
1132     m68k)
1133         arch="m68k"
1134     ;;
1135     ia64)
1136         arch="ia64"
1137         enable fast_64bit
1138     ;;
1139     bfin)
1140         arch="bfin"
1141     ;;
1142     *)
1143         arch="unknown"
1144     ;;
1145 esac
1146
1147 enable $arch
1148 enabled_any x86_32 x86_64 && enable x86
1149 enabled     sparc64       && enable sparc
1150
1151 # OS specific
1152 case $target_os in
1153     beos|haiku|zeta)
1154         prefix="$HOME/config"
1155         # helps building libavcodec
1156         add_cflags "-DPIC -fomit-frame-pointer"
1157         # 3 gcc releases known for BeOS, each with ugly bugs
1158         gcc_version="`$cc -v 2>&1 | grep version | cut -d ' ' -f3-`"
1159         case "$gcc_version" in
1160           2.9-beos-991026*|2.9-beos-000224*) echo "R5/GG gcc"
1161             disable mmx
1162             ;;
1163           *20010315*) echo "BeBits gcc"
1164             add_cflags "-fno-expensive-optimizations"
1165             ;;
1166         esac
1167         SHFLAGS=-nostart
1168         # enable BeOS things
1169         enable audio_beos
1170         # no need for libm, but the inet stuff
1171         # Check for BONE
1172         # XXX: actually should check for NOT net_server
1173         if echo $BEINCLUDES | grep -q 'headers/be/bone'; then
1174             network_extralibs="-lbind -lsocket"
1175         else
1176             enable beos_netserver
1177             network_extralibs="-lnet"
1178         fi ;;
1179     sunos)
1180         FFSERVERLDFLAGS=""
1181         SHFLAGS='-shared -Wl,-h,$$(@F)'
1182         network_extralibs="-lsocket -lnsl"
1183         ;;
1184     netbsd)
1185         oss_demuxer_extralibs="-lossaudio"
1186         oss_muxer_extralibs="-lossaudio"
1187         ;;
1188     openbsd)
1189         disable need_memalign
1190         LIBOBJFLAGS='$(PIC)'
1191         SHFLAGS='-shared'
1192         SLIBNAME='$(SLIBPREF)$(FULLNAME)$(SLIBSUF).$(LIBVERSION)'
1193         SLIBNAME_WITH_VERSION='$(SLIBNAME)'
1194         SLIBNAME_WITH_MAJOR='$(SLIBNAME)'
1195         oss_demuxer_extralibs="-lossaudio"
1196         oss_muxer_extralibs="-lossaudio"
1197         ;;
1198     freebsd)
1199         disable need_memalign
1200         ;;
1201     bsd/os)
1202         osextralibs="-lpoll -lgnugetopt"
1203         strip="strip -d"
1204         ;;
1205     darwin)
1206         disable need_memalign
1207         SHFLAGS='-dynamiclib -Wl,-single_module -Wl,-install_name,$(SHLIBDIR)/$(SLIBNAME),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR) -Wl,-read_only_relocs,suppress'
1208         VHOOKSHFLAGS='-dynamiclib -Wl,-single_module -flat_namespace -undefined suppress -Wl,-install_name,$(SHLIBDIR)/vhook/$$(@F)'
1209         strip="strip -x"
1210         FFLDFLAGS="-Wl,-dynamic,-search_paths_first"
1211         SLIBSUF=".dylib"
1212         SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME).$(LIBVERSION)$(SLIBSUF)'
1213         SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME).$(LIBMAJOR)$(SLIBSUF)'
1214         FFSERVERLDFLAGS=-Wl,-bind_at_load
1215         ;;
1216     mingw32*)
1217         target_os=mingw32
1218         LIBTARGET=i386
1219         if test $arch = x86_64; then
1220             disable need_memalign
1221             LIBTARGET=x64
1222         fi
1223         shlibdir="$bindir"
1224         VHOOKSHFLAGS='-shared -L$(BUILD_ROOT)/libavformat -L$(BUILD_ROOT)/libavcodec -L$(BUILD_ROOT)/libavutil'
1225         VHOOKLIBS='-lavformat$(BUILDSUF) -lavcodec$(BUILDSUF) -lavutil$(BUILDSUF) $(EXTRALIBS)'
1226         if enabled swscale; then
1227             VHOOKSHFLAGS="$VHOOKSHFLAGS -L\$(BUILD_ROOT)/libswscale"
1228             VHOOKLIBS="$VHOOKLIBS -lswscale\$(BUILDSUF)"
1229         fi
1230         disable ffserver
1231         SLIBPREF=""
1232         SLIBSUF=".dll"
1233         EXESUF=".exe"
1234         SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
1235         SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
1236         SLIB_EXTRA_CMD='-lib /machine:$(LIBTARGET) /def:$$(@:$(SLIBSUF)=.def) /out:$(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib)'
1237         SLIB_INSTALL_EXTRA_CMD='-install -m 644 $(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib) "$(SHLIBDIR)/$(SLIBNAME:$(SLIBSUF)=.lib)"; \
1238             install -m 644 $(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib) "$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib)"'
1239         SLIB_UNINSTALL_EXTRA_CMD='rm -f "$(SHLIBDIR)/$(SLIBNAME:$(SLIBSUF)=.lib)"'
1240         SHFLAGS='-shared -Wl,--output-def,$$(@:$(SLIBSUF)=.def) -Wl,--enable-runtime-pseudo-reloc -Wl,--enable-auto-image-base'
1241         ;;
1242     cygwin*)
1243         target_os=cygwin
1244         shlibdir="$bindir"
1245         VHOOKSHFLAGS='-shared -L$(BUILD_ROOT)/libavformat -L$(BUILD_ROOT)/libavcodec -L$(BUILD_ROOT)/libavutil'
1246         VHOOKLIBS='-lavformat$(BUILDSUF) -lavcodec$(BUILDSUF) -lavutil$(BUILDSUF) $(EXTRALIBS)'
1247         if enabled swscale; then
1248             VHOOKSHFLAGS="$VHOOKSHFLAGS -L\$(BUILD_ROOT)/libswscale"
1249             VHOOKLIBS="$VHOOKLIBS -lswscale\$(BUILDSUF)"
1250         fi
1251         EXESUF=".exe"
1252         SLIBPREF="cyg"
1253         SLIBSUF=".dll"
1254         SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
1255         SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
1256         SHFLAGS='-shared -Wl,--enable-auto-image-base'
1257         ;;
1258     *-dos|freedos|opendos)
1259         disable ffplay ffserver vhook
1260         disable $INDEV_LIST $OUTDEV_LIST
1261         network_extralibs="-lsocket"
1262         EXESUF=".exe"
1263         ;;
1264     linux)
1265         LDLATEFLAGS="-Wl,--as-needed $LDLATEFLAGS"
1266         enable dv1394
1267         ;;
1268     irix*)
1269         target_os=irix
1270         ranlib="echo ignoring ranlib"
1271         ;;
1272     os/2*)
1273         strip="lxlite"
1274         ln_s="cp -f"
1275         EXESUF=".exe"
1276         FFLDFLAGS="-Zomf -Zbin-files -Zargs-wild -Zmap"
1277         SHFLAGS='$(SUBDIR)$(NAME).def -Zdll -Zomf'
1278         FFSERVERLDFLAGS=""
1279         LIBSUF="_s.a"
1280         SLIBPREF=""
1281         SLIBSUF=".dll"
1282         SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
1283         SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(shell echo $(NAME) | cut -c1-6)$(LIBMAJOR)$(SLIBSUF)'
1284         SLIB_CREATE_DEF_CMD='echo LIBRARY $(SLIBNAME_WITH_MAJOR) INITINSTANCE TERMINSTANCE > $(SUBDIR)$(NAME).def; \
1285           echo PROTMODE >> $(SUBDIR)$(NAME).def; \
1286           echo CODE PRELOAD MOVEABLE DISCARDABLE >> $(SUBDIR)$(NAME).def; \
1287           echo DATA PRELOAD MOVEABLE MULTIPLE NONSHARED >> $(SUBDIR)$(NAME).def; \
1288           echo EXPORTS >> $(SUBDIR)$(NAME).def; \
1289           emxexp -o $(OBJS) >> $(SUBDIR)$(NAME).def'
1290         SLIB_EXTRA_CMD='emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(NAME).def; \
1291           emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib $(SUBDIR)$(NAME).def;'
1292         SLIB_INSTALL_EXTRA_CMD='install -m 644 $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib "$(LIBDIR)"'
1293         SLIB_UNINSTALL_EXTRA_CMD='rm -f "$(LIBDIR)"/$(LIBPREF)$(NAME)_dll.a "$(LIBDIR)"/$(LIBPREF)$(NAME)_dll.lib'
1294         disable vhook
1295         ;;
1296     interix)
1297         disable vhook
1298         ;;
1299
1300     *)
1301         target_os="${target_os}-UNKNOWN"
1302         ;;
1303 esac
1304
1305 add_extralibs $osextralibs
1306
1307 disabled logging && logfile=/dev/null
1308
1309 echo "# $0 $@" > $logfile
1310 set >> $logfile
1311
1312 # Combine FFLDFLAGS and the LDFLAGS environment variable.
1313 LDFLAGS="$FFLDFLAGS $LDFLAGS"
1314
1315 test -n "$cross_prefix" && enable cross_compile
1316
1317 # we need to build at least one lib type
1318 if ! enabled_any static shared; then
1319     cat <<EOF
1320 At least one library type must be built.
1321 Specify --enable-static to build the static libraries or --enable-shared to
1322 build the shared libraries as well. To only build the shared libraries specify
1323 --disable-static in addition to --enable-shared.
1324 EOF
1325     exit 1;
1326 fi
1327
1328 disabled static && LIBNAME=""
1329
1330 if enabled_any libfaad libfaadbin ; then
1331     if check_header faad.h; then
1332         check_cc << EOF
1333 #include <faad.h>
1334 #ifndef FAAD2_VERSION
1335 ok faad1
1336 #endif
1337 int main(void) { return 0; }
1338 EOF
1339         test $? = 0 && enable libfaad2
1340     else
1341         die "FAAD test failed."
1342     fi
1343 fi
1344
1345
1346 if ! enabled gpl; then
1347     die_gpl_disabled(){
1348         name=$1
1349         shift
1350         enabled_any $@ && die "$name is under GPL and --enable-gpl is not specified."
1351     }
1352     die_gpl_disabled "The Postprocessing code" postproc
1353     die_gpl_disabled "liba52"                  liba52
1354     die_gpl_disabled "libx264"                 libx264
1355     die_gpl_disabled "libxvidcore"             libxvid
1356     die_gpl_disabled "FAAD2"                   libfaad2
1357     die_gpl_disabled "The X11 grabber"         x11grab
1358     die_gpl_disabled "The software scaler"     swscale
1359 fi
1360
1361 if ! enabled nonfree && enabled_any libamr_nb libamr_wb; then
1362     die "libamr is nonfree and --enable-nonfree is not specified."
1363 fi
1364
1365 check_deps $ARCH_EXT_LIST
1366
1367 test -z "$need_memalign" && need_memalign="$mmx"
1368
1369 #Darwin CC versions
1370 if test $target_os = darwin; then
1371     if $cc -v 2>&1 | grep -q xlc; then
1372         add_cflags "-qpdf2 -qlanglvl=extc99 -qmaxmem=-1 -qarch=auto -qtune=auto"
1373     else
1374         add_cflags "-pipe"
1375         check_cflags "-force_cpusubtype_ALL"
1376         check_cflags "-Wno-sign-compare"
1377         enabled shared || check_cflags -mdynamic-no-pic
1378     fi
1379 fi
1380
1381 disabled optimizations || add_cflags -fomit-frame-pointer
1382
1383 # Add processor-specific flags
1384 if test $cpu != "generic"; then
1385     warn_altivec(){
1386         $1 altivec && echo "WARNING: Tuning for $2 but AltiVec $1.";
1387     }
1388     case $cpu in
1389         601|ppc601|PowerPC601)
1390             add_cflags "-mcpu=601"
1391             warn_altivec enabled PPC601
1392         ;;
1393         603*|ppc603*|PowerPC603*)
1394             add_cflags "-mcpu=603"
1395             warn_altivec enabled PPC603
1396         ;;
1397         604*|ppc604*|PowerPC604*)
1398             add_cflags "-mcpu=604"
1399             warn_altivec enabled PPC604
1400         ;;
1401         G3|g3|75*|ppc75*|PowerPC75*)
1402             add_cflags "-mcpu=750 -mpowerpc-gfxopt"
1403             warn_altivec enabled PPC75x
1404         ;;
1405         G4|g4|745*|ppc745*|PowerPC745*)
1406             add_cflags "-mcpu=7450 -mpowerpc-gfxopt"
1407             warn_altivec disabled PPC745x
1408         ;;
1409         74*|ppc74*|PowerPC74*)
1410             add_cflags "-mcpu=7400 -mpowerpc-gfxopt"
1411             warn_altivec disabled PPC74xx
1412         ;;
1413         G5|g5|970|ppc970|PowerPC970|power4*|Power4*)
1414             add_cflags "-mcpu=970 -mpowerpc-gfxopt -mpowerpc64"
1415             warn_altivec disabled PPC970
1416             enable ppc64
1417         ;;
1418         Cell|CELL|cell)
1419             add_cflags "-mcpu=cell"
1420             warn_altivec disabled Cell
1421             enable ppc64
1422         ;;
1423         # targets that do NOT support conditional mov (cmov)
1424         i[345]86|pentium|pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3)
1425             add_cflags "-march=$cpu"
1426             disable cmov
1427         ;;
1428         # targets that do support conditional mov (cmov)
1429         i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64|k8|opteron|athlon-fx|core2)
1430             add_cflags "-march=$cpu"
1431             enable cmov
1432             enable fast_cmov
1433         ;;
1434         # targets that do support conditional mov but on which it's slow
1435         pentium4|pentium4m|prescott|nocona)
1436             add_cflags "-march=$cpu"
1437             enable cmov
1438             disable fast_cmov
1439         ;;
1440         sparc64)
1441             add_cflags "-mcpu=v9"
1442         ;;
1443         arm*)
1444             add_cflags "-mcpu=$cpu"
1445         ;;
1446         *)
1447             echo "WARNING: Unknown CPU \"$cpu\", ignored."
1448         ;;
1449     esac
1450 fi
1451
1452 # make sure we can execute files in $TMPDIR
1453 cat > $TMPSH 2>> $logfile <<EOF
1454 #! /bin/sh
1455 EOF
1456 chmod +x $TMPSH >> $logfile 2>&1
1457 if ! $TMPSH >> $logfile 2>&1; then
1458     cat <<EOF
1459 Unable to create and execute files in $TMPDIR1.  Set the TMPDIR environment
1460 variable to another directory and make sure that $TMPDIR1 is not mounted
1461 noexec.
1462 EOF
1463     die "Sanity test failed."
1464 fi
1465 rm $TMPSH
1466
1467 # compiler sanity check
1468 check_exec <<EOF
1469 int main(void){ return 0; }
1470 EOF
1471 if test "$?" != 0; then
1472     echo "$cc is unable to create an executable file."
1473     if test -z "$cross_prefix" && ! enabled cross_compile ; then
1474         echo "If $cc is a cross-compiler, use the --enable-cross-compile option."
1475         echo "Only do this if you know what cross compiling means."
1476     fi
1477     die "C compiler test failed."
1478 fi
1479
1480 check_cc <<EOF || die "Symbol mangling check failed."
1481 int ff_extern;
1482 EOF
1483 sym=$($nm -P -g $TMPO | grep ff_extern)
1484 extern_prefix=${sym%%ff_extern*}
1485
1486 check_asm inline_asm '""'
1487
1488 if enabled x86; then
1489     # check whether EBP is available on x86
1490     # As 'i' is stored on the stack, this program will crash
1491     # if the base pointer is used to access it because the
1492     # base pointer is cleared in the inline assembly code.
1493     check_exec_crash <<EOF && enable ebp_available
1494     volatile int i=0;
1495     asm volatile (
1496         "xorl %%ebp, %%ebp"
1497     ::: "%ebp");
1498     return i;
1499 EOF
1500
1501     # check wether EBX is available on x86
1502     check_asm ebx_available '"":::"%ebx"'
1503
1504     # check whether binutils is new enough to compile SSSE3/MMX2
1505     enabled ssse3 && check_asm ssse3 '"pabsw %xmm0, %xmm0"'
1506     enabled mmx2  && check_asm mmx2  '"movss %xmm0, %xmm0"'
1507
1508     check_asm bswap '"bswap %%eax" ::: "%eax"'
1509 fi
1510
1511 # check for assembler specific support
1512
1513 if test $arch = "powerpc"; then
1514 check_cc <<EOF && enable dcbzl
1515 int main(void) {
1516     register long zero = 0;
1517     char data[1024];
1518     asm volatile("dcbzl %0, %1" : : "b" (data), "r" (zero));
1519 return 0;
1520 }
1521 EOF
1522 fi
1523
1524 # check for SIMD availability
1525
1526 # AltiVec flags: The FSF version of GCC differs from the Apple version
1527 if enabled altivec; then
1528     check_cflags -maltivec -mabi=altivec &&
1529         check_header altivec.h ||
1530         check_cflags -faltivec
1531
1532     # check if our compiler supports Motorola AltiVec C API
1533     enabled altivec_h &&
1534         inc_altivec_h="#include <altivec.h>" ||
1535         inc_altivec_h=
1536     check_cc <<EOF || disable altivec
1537 $inc_altivec_h
1538 int main(void) {
1539     vector signed int v1, v2, v3;
1540     v1 = vec_add(v2,v3);
1541     return 0;
1542 }
1543 EOF
1544 fi
1545
1546 # We have to check if pld is a nop and disable it.
1547 enabled armv4l  && check_asm pld     '"pld [r0]"'
1548 enabled armv5te && check_asm armv5te '"qadd r0, r0, r0"'
1549 enabled armv6   && check_asm armv6   '"sadd16 r0, r0, r0"'
1550 enabled armvfp  && check_asm armvfp  '"fadds s0, s0, s0"'
1551 enabled iwmmxt  && check_asm iwmmxt  '"wunpckelub wr6, wr4"'
1552 enabled mmi     && check_asm mmi     '"lq $2, 0($2)"'
1553 enabled vis     && check_asm vis     '"pdist %f0, %f0, %f0"' -mcpu=ultrasparc
1554
1555 enabled vis && add_cflags "-mcpu=ultrasparc -mtune=ultrasparc"
1556
1557 # ---
1558 # big/little-endian test
1559 check_cc <<EOF || die "endian test failed"
1560 unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E';
1561 EOF
1562 od -A n -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian
1563
1564 # ---
1565 # check availability of some header files
1566
1567 if check_func dlopen; then
1568     ldl=
1569 elif check_func dlopen -ldl; then
1570     ldl=-ldl
1571 fi
1572
1573 check_func  fork
1574 check_func  gethrtime
1575 check_func  getrusage
1576 check_func  inet_aton $network_extralibs
1577 check_func  memalign
1578 check_func  mkstemp
1579 check_func2 windows.h GetProcessTimes
1580
1581 check_header byteswap.h
1582 check_header conio.h
1583 check_header dlfcn.h
1584 check_header malloc.h
1585 check_header sys/mman.h
1586 check_header sys/resource.h
1587 check_header termios.h
1588
1589 if ! enabled_any memalign memalign_hack && enabled need_memalign ; then
1590     die "Error, no memalign() but SSE enabled, disable it or use --enable-memalign-hack."
1591 fi
1592
1593 enabled zlib && check_lib zlib.h zlibVersion -lz || disable zlib
1594
1595 # ffserver uses poll(),
1596 # if it's not found we can emulate it using select().
1597 if enabled ffserver; then
1598     check_header poll.h
1599     check_header sys/select.h
1600 fi
1601
1602 # check for some common methods of building with pthread support
1603 # do this before the optional library checks as some of them require pthreads
1604 if enabled pthreads; then
1605     if check_func pthread_create; then
1606         :
1607     elif check_func pthread_create -pthread; then
1608         add_cflags -pthread
1609         add_extralibs -pthread
1610     elif check_func pthread_create -pthreads; then
1611         add_cflags -pthreads
1612         add_extralibs -pthreads
1613     elif check_func pthread_create -lpthreadGC2; then
1614         add_extralibs -lpthreadGC2
1615     elif ! check_lib pthread.h pthread_create -lpthread; then
1616         die "ERROR: can't find pthreads library"
1617     fi
1618 fi
1619
1620 for thread in $THREADS_LIST; do
1621     if enabled $thread; then
1622         test -n "$thread_type" &&
1623             die "ERROR: Only one thread type must be selected." ||
1624             thread_type="$thread"
1625     fi
1626 done
1627
1628 check_lib math.h sin -lm
1629
1630 # test for C99 functions in math.h
1631 for func in llrint lrint lrintf round roundf; do
1632     check_exec <<EOF && enable $func || disable $func
1633 #define _ISOC9X_SOURCE  1
1634 #include <math.h>
1635 int main(void) { return ($func(3.999f) > 0)?0:1; }
1636 EOF
1637 done
1638
1639 # these are off by default, so fail if requested and not available
1640 enabled avisynth   && require2 vfw32 "windows.h vfw.h" AVIFileInit -lvfw32
1641 enabled liba52     && require  liba52 a52dec/a52.h a52_init -la52
1642 enabled libamr_nb  && require  libamrnb amrnb/interf_dec.h Speech_Decode_Frame_init -lamrnb -lm
1643 enabled libamr_wb  && require  libamrwb amrwb/dec_if.h D_IF_init -lamrwb -lm
1644 enabled libdirac   && add_cflags "$(pkg-config --cflags dirac)" \
1645                    && require  libdirac libdirac_decoder/dirac_parser.h dirac_decoder_init -ldirac_decoder \
1646                    && require  libdirac libdirac_encoder/dirac_encoder.h dirac_encoder_init -ldirac_encoder
1647 enabled libfaac    && require2 libfaac "stdint.h faac.h" faacEncGetVersion -lfaac
1648 enabled libfaad    && require2 libfaad faad.h faacDecOpen -lfaad
1649 enabled libgsm     && require  libgsm gsm.h gsm_create -lgsm
1650 enabled libmp3lame && require  LAME lame/lame.h lame_init -lmp3lame -lm
1651 enabled libnut     && require  libnut libnut.h nut_demuxer_init -lnut
1652 enabled libschroedinger && add_cflags $(pkg-config --cflags schroedinger-1.0) \
1653                         && require libschroedinger schroedinger/schro.h schro_init $(pkg-config --libs schroedinger-1.0)
1654 enabled libtheora  && require  libtheora theora/theora.h theora_info_init -ltheora -logg
1655 enabled libvorbis  && require  libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbisenc -lvorbis -logg
1656 enabled libx264    && require  x264 x264.h x264_encoder_open -lx264 -lm
1657 enabled libxvid    && require  Xvid xvid.h xvid_global -lxvidcore
1658 enabled mlib       && require  mediaLib mlib_types.h mlib_VectorSub_S16_U8_Mod -lmlib
1659
1660 # disable the native AC-3 decoder if liba52 is enabled
1661 enabled liba52 && disable ac3_decoder
1662
1663 # disable the slower libdirac decoder if libschroedinger is enabled
1664 enabled libschroedinger && enabled libdirac && disable libdirac_decoder
1665
1666 # libdc1394 check
1667 if enabled libdc1394; then
1668     { check_lib dc1394/dc1394.h dc1394_new -ldc1394 -lraw1394 &&
1669         enable libdc1394_2; } ||
1670     { check_lib libdc1394/dc1394_control.h dc1394_create_handle -ldc1394_control -lraw1394 &&
1671         enable libdc1394_1; } ||
1672     die "ERROR: No version of libdc1394 found "
1673 fi
1674
1675
1676 _restrict=
1677 for restrict_keyword in restrict __restrict__ __restrict; do
1678     check_cc <<EOF && _restrict=$restrict_keyword && break
1679 void foo(char * $restrict_keyword p);
1680 EOF
1681 done
1682
1683 test "$vhook" = "default" && vhook="$dlopen"
1684
1685 if test "$target_os" = cygwin -o "$target_os" = mingw32 && enabled_all static vhook ; then
1686     disable vhook
1687     echo
1688     echo "At the moment vhooks don't work on Cygwin or MinGW static builds."
1689     echo "Patches welcome."
1690     echo
1691 fi
1692
1693 if enabled vhook; then
1694     check_ldflags -rdynamic
1695     check_ldflags -export-dynamic
1696 fi
1697
1698 check_foo_config imlib2 imlib2 Imlib2.h imlib_load_font
1699 check_foo_config freetype2 freetype ft2build.h FT_Init_FreeType
1700
1701 ##########################################
1702 # SDL check
1703
1704 disable sdl_too_old
1705 disable sdl
1706 SDL_CONFIG="${cross_prefix}sdl-config"
1707 if "${SDL_CONFIG}" --version > /dev/null 2>&1; then
1708     sdl_cflags=`"${SDL_CONFIG}" --cflags`
1709     temp_cflags $sdl_cflags
1710     temp_extralibs `"${SDL_CONFIG}" --libs`
1711     if check_lib2 SDL.h SDL_Init; then
1712         _sdlversion=`"${SDL_CONFIG}" --version | sed 's/[^0-9]//g'`
1713         if test "$_sdlversion" -lt 121 ; then
1714             enable sdl_too_old
1715         else
1716             enable sdl
1717             check_cc $sdl_cflags <<EOF && enable sdl_video_size
1718 #include <SDL.h>
1719 int main(int argc, char **argv){
1720     const SDL_VideoInfo *vi = SDL_GetVideoInfo();
1721     int w = vi->current_w;
1722     return 0;
1723 }
1724 EOF
1725         fi
1726     fi
1727     restore_flags
1728 fi
1729
1730 texi2html -version > /dev/null 2>&1 && enable texi2html || disable texi2html
1731
1732 check_type sys/socket.h socklen_t
1733
1734 ##########################################
1735 # Network check
1736
1737 if enabled network; then
1738     # Prefer arpa/inet.h over winsock2
1739     if check_header arpa/inet.h ; then
1740         check_func closesocket
1741     elif check_header winsock2.h ; then
1742         network_extralibs="-lws2_32"
1743         check_type ws2tcpip.h socklen_t
1744         check_func2 winsock2.h closesocket
1745     fi
1746 fi
1747
1748 ##########################################
1749 # IPv6 check
1750
1751 enabled network && enabled ipv6 && check_ld <<EOF && enable ipv6 || disable ipv6
1752 #include <sys/types.h>
1753 #include <sys/socket.h>
1754 #include <netinet/in.h>
1755 #include <netdb.h>
1756 int main(void) {
1757     struct sockaddr_storage saddr;
1758     struct ipv6_mreq mreq6;
1759     getaddrinfo(0,0,0,0);
1760     getnameinfo(0,0,0,0,0,0,0);
1761     IN6_IS_ADDR_MULTICAST((const struct in6_addr *)0);
1762 }
1763 EOF
1764
1765 check_header linux/videodev.h
1766 check_header linux/videodev2.h
1767
1768 check_func2 "windows.h vfw.h" capCreateCaptureWindow -lvfw32
1769
1770 # check for ioctl_meteor.h, ioctl_bt848.h and alternatives
1771 { check_header dev/bktr/ioctl_meteor.h &&
1772   check_header dev/bktr/ioctl_bt848.h; } ||
1773 { check_header machine/ioctl_meteor.h &&
1774   check_header machine/ioctl_bt848.h; } ||
1775 { check_header dev/video/meteor/ioctl_meteor.h &&
1776   check_header dev/video/bktr/ioctl_bt848.h; } ||
1777 check_header dev/ic/bt8xx.h
1778
1779 check_header sys/soundcard.h
1780 check_header soundcard.h
1781
1782 # deal with the X11 frame grabber
1783 enabled x11grab                         &&
1784 check_header X11/Xlib.h                 &&
1785 check_header X11/extensions/XShm.h      &&
1786 check_func XOpenDisplay -lX11           &&
1787 check_func XShmCreateImage -lX11 -lXext
1788
1789 enabled debug && add_cflags -g"$debuglevel"
1790
1791 # add some useful compiler flags if supported
1792 check_cflags -Wdeclaration-after-statement
1793 check_cflags -Wall
1794 check_cflags -Wno-switch
1795 check_cflags -Wdisabled-optimization
1796 check_cflags -Wpointer-arith
1797 check_cflags -Wredundant-decls
1798 check_cflags -Wno-pointer-sign
1799 check_cflags -Wcast-qual
1800 check_cflags -Wwrite-strings
1801 check_cflags -Wtype-limits
1802 enabled extra_warnings && check_cflags -Winline
1803
1804 # add some linker flags
1805 check_ldflags -Wl,--warn-common
1806 check_ldflags $LDLATEFLAGS
1807 check_ldflags -Wl,-Bsymbolic
1808
1809 if enabled small; then
1810     check_cflags -Os            # not all compilers support -Os
1811     optimizations="small"
1812 elif enabled optimizations; then
1813     if $cc -v 2>&1 | grep -q xlc; then
1814         add_cflags  "-O5"
1815         add_ldflags "-O5"
1816     else
1817         add_cflags "-O3"
1818     fi
1819 fi
1820 check_cflags -fno-math-errno
1821 check_cflags -fno-signed-zeros
1822
1823 # add some flags for Intel C Compiler
1824 if $cc --version | grep -q Intel; then
1825   # Just warnings, no remarks
1826   check_cflags -w1
1827   # -wd: Disable following warnings
1828   # 144, 167, 556: -Wno-pointer-sign
1829   # 10006: ignoring unknown option -fno-signed-zeros
1830   # 10156: ignoring option '-W'; no argument required
1831   check_cflags -wd144,167,556,10006,10156
1832   # 11030: Warning unknown option --as-needed
1833   # 10156: ignoring option '-export'; no argument required
1834   check_ldflags -wd10156,11030
1835   # Allow to compile with optimizations
1836   check_ldflags -march=$cpu
1837 fi
1838
1839 # PIC flags for shared library objects where they are needed
1840 if enabled shared; then
1841     # LIBOBJFLAGS may have already been set in the OS configuration
1842     if test -z "$LIBOBJFLAGS" ; then
1843         case "$arch" in
1844             x86_64|ia64|alpha|sparc*|power*) LIBOBJFLAGS='$(PIC)' ;;
1845         esac
1846     fi
1847 fi
1848
1849 if enabled gprof; then
1850     add_cflags  "-p"
1851     add_ldflags "-p"
1852 fi
1853
1854 VHOOKCFLAGS="-fPIC"
1855
1856 # Find out if the .align argument is a power of two or not.
1857 if test $asmalign_pot = "unknown"; then
1858     disable asmalign_pot
1859     echo 'asm (".align 3");' | check_cc && enable asmalign_pot
1860 fi
1861
1862 enabled_any $DECODER_LIST      && enable decoders
1863 enabled_any $ENCODER_LIST      && enable encoders
1864 enabled_any $BSF_LIST          && enable bsfs
1865 enabled_any $DEMUXER_LIST      && enable demuxers
1866 enabled_any $MUXER_LIST        && enable muxers
1867 enabled_any $FILTER_LIST       && enable filters
1868 enabled_any $INDEV_LIST        && enable demuxers
1869 enabled_any $OUTDEV_LIST       && enable muxers
1870 enabled_any $PROTOCOL_LIST     && enable protocols
1871
1872 enabled_any $THREADS_LIST      && enable threads
1873
1874 check_deps $CONFIG_LIST       \
1875            $HAVE_LIST         \
1876            $DECODER_LIST      \
1877            $ENCODER_LIST      \
1878            $PARSER_LIST       \
1879            $BSF_LIST          \
1880            $DEMUXER_LIST      \
1881            $MUXER_LIST        \
1882            $FILTER_LIST       \
1883            $INDEV_LIST        \
1884            $OUTDEV_LIST       \
1885            $PROTOCOL_LIST     \
1886
1887 enabled libdc1394 && append pkg_requires "libraw1394"
1888 enabled libdirac  && append pkg_requires "dirac"
1889 enabled libtheora && append pkg_requires "theora"
1890 enabled libvorbis && append pkg_requires "vorbisenc"
1891
1892 echo "install prefix            $prefix"
1893 echo "source path               $source_path"
1894 echo "C compiler                $cc"
1895 echo ".align is power-of-two    $asmalign_pot"
1896 echo "ARCH                      $arch ($cpu)"
1897 if test "$build_suffix" != ""; then
1898     echo "build suffix              $build_suffix"
1899 fi
1900 echo "big-endian                ${bigendian-no}"
1901 if test $arch = "x86_32" -o $arch = "x86_64"; then
1902     echo "MMX enabled               ${mmx-no}"
1903     echo "CMOV enabled              ${cmov-no}"
1904     echo "CMOV is fast              ${fast_cmov-no}"
1905     echo "EBX available             ${ebx_available-no}"
1906     echo "EBP available             ${ebp_available-no}"
1907 fi
1908 if test $arch = "armv4l"; then
1909     echo "ARMv5TE enabled           ${armv5te-no}"
1910     echo "ARMv6 enabled             ${armv6-no}"
1911     echo "ARM VFP enabled           ${armvfp-no}"
1912     echo "IWMMXT enabled            ${iwmmxt-no}"
1913 fi
1914 if test $arch = "mips"; then
1915     echo "MMI enabled               ${mmi-no}"
1916 fi
1917 if test $arch = "powerpc"; then
1918     echo "AltiVec enabled           ${altivec-no}"
1919     echo "dcbzl available           ${dcbzl-no}"
1920 fi
1921 echo "gprof enabled             ${gprof-no}"
1922 echo "debug symbols             ${debug-no}"
1923 echo "strip symbols             ${stripping-no}"
1924 echo "optimizations             ${optimizations-no}"
1925 echo "static                    ${static-no}"
1926 echo "shared                    ${shared-no}"
1927 echo "postprocessing support    ${postproc-no}"
1928 echo "software scaler enabled   ${swscale-no}"
1929 echo "new filter support        ${avfilter-no}"
1930 echo "filters using lavformat   ${avfilter_lavf-no}"
1931 echo "video hooking             ${vhook-no}"
1932 if enabled vhook; then
1933     echo "Imlib2 support            ${imlib2-no}"
1934     echo "FreeType support          ${freetype2-no}"
1935 fi
1936 echo "network support           ${network-no}"
1937 if enabled network; then
1938     echo "IPv6 support              ${ipv6-no}"
1939 fi
1940 echo "threading support         ${thread_type-no}"
1941 echo "SDL support               ${sdl-no}"
1942 if enabled sdl_too_old; then
1943     echo "-> Your SDL version is too old - please upgrade to have FFplay/SDL support."
1944 fi
1945 echo "Sun medialib support      ${mlib-no}"
1946 echo "AVISynth enabled          ${avisynth-no}"
1947 echo "liba52 support            ${liba52-no}"
1948 echo "liba52 dlopened           ${liba52bin-no}"
1949 echo "libamr-nb support         ${libamr_nb-no}"
1950 echo "libamr-wb support         ${libamr_wb-no}"
1951 echo "libdc1394 support         ${libdc1394-no}"
1952 echo "libdirac enabled          ${libdirac-no}"
1953 echo "libfaac enabled           ${libfaac-no}"
1954 echo "libfaad enabled           ${libfaad-no}"
1955 echo "libfaad dlopened          ${libfaadbin-no}"
1956 echo "libgsm enabled            ${libgsm-no}"
1957 echo "libmp3lame enabled        ${libmp3lame-no}"
1958 echo "libnut enabled            ${libnut-no}"
1959 echo "libschroedinger enabled   ${libschroedinger-no}"
1960 echo "libtheora enabled         ${libtheora-no}"
1961 echo "libvorbis enabled         ${libvorbis-no}"
1962 echo "x264 enabled              ${libx264-no}"
1963 echo "XviD enabled              ${libxvid-no}"
1964 echo "zlib enabled              ${zlib-no}"
1965 echo
1966
1967 for type in decoder encoder parser demuxer muxer protocol filter bsf indev outdev; do
1968     echo "Enabled ${type}s:"
1969     eval list=\$$(toupper $type)_LIST
1970     for part in $list; do
1971         enabled $part && echo ${part%_*}
1972     done | sort | pr -3 -t
1973     echo
1974 done
1975
1976 enabled nonfree &&
1977     echo "License: unredistributable" ||
1978     (enabled gpl &&
1979         echo "License: GPL" ||
1980         echo "License: LGPL")
1981
1982 echo "Creating config.mak and config.h..."
1983
1984 echo "# Automatically generated by configure - do not modify!" > config.mak
1985 echo "/* Automatically generated by configure - do not modify! */" > $TMPH
1986 echo "#ifndef FFMPEG_CONFIG_H" >> $TMPH
1987 echo "#define FFMPEG_CONFIG_H" >> $TMPH
1988 echo "#define FFMPEG_CONFIGURATION \"$FFMPEG_CONFIGURATION\"" >> $TMPH
1989
1990 echo "PREFIX=$prefix" >> config.mak
1991 echo "prefix=\$(DESTDIR)\$(PREFIX)" >> config.mak
1992 echo "LIBDIR=\$(DESTDIR)$libdir" >> config.mak
1993 echo "SHLIBDIR=\$(DESTDIR)$shlibdir" >> config.mak
1994 echo "INCDIR=\$(DESTDIR)$incdir" >> config.mak
1995 echo "BINDIR=\$(DESTDIR)$bindir" >> config.mak
1996 echo "MANDIR=\$(DESTDIR)$mandir" >> config.mak
1997 echo "CC=$cc" >> config.mak
1998 echo "AR=$ar" >> config.mak
1999 echo "RANLIB=$ranlib" >> config.mak
2000 echo "LN_S=$ln_s" >> config.mak
2001 enabled stripping &&
2002     echo "STRIP=$strip" >> config.mak ||
2003     echo "STRIP=echo ignoring strip" >> config.mak
2004
2005 echo "OPTFLAGS=$CFLAGS" >> config.mak
2006 echo "VHOOKCFLAGS=$VHOOKCFLAGS" >> config.mak
2007 echo "LDFLAGS=$LDFLAGS" >> config.mak
2008 echo "FFSERVERLDFLAGS=$FFSERVERLDFLAGS" >> config.mak
2009 echo "SHFLAGS=$SHFLAGS" >> config.mak
2010 echo "VHOOKSHFLAGS=$VHOOKSHFLAGS" >> config.mak
2011 echo "VHOOKLIBS=$VHOOKLIBS" >> config.mak
2012 echo "LIBOBJFLAGS=$LIBOBJFLAGS" >> config.mak
2013 echo "BUILD_STATIC=$static" >> config.mak
2014 echo "BUILDSUF=$build_suffix" >> config.mak
2015 echo "FULLNAME=$FULLNAME" >> config.mak
2016 echo "LIBPREF=$LIBPREF" >> config.mak
2017 echo "LIBSUF=$LIBSUF" >> config.mak
2018 echo "LIBNAME=$LIBNAME" >> config.mak
2019 echo "SLIBPREF=$SLIBPREF" >> config.mak
2020 echo "SLIBSUF=$SLIBSUF" >> config.mak
2021 echo "EXESUF=$EXESUF" >> config.mak
2022 echo "DEPEND_CMD=$DEPEND_CMD" >> config.mak
2023
2024 if enabled bigendian; then
2025     echo "WORDS_BIGENDIAN=yes" >> config.mak
2026     echo "#define WORDS_BIGENDIAN 1" >> $TMPH
2027 fi
2028
2029 if enabled sdl; then
2030     echo "SDL_LIBS=`"${SDL_CONFIG}" --libs`" >> config.mak
2031     echo "SDL_CFLAGS=`"${SDL_CONFIG}" --cflags`" >> config.mak
2032 fi
2033 if enabled texi2html; then
2034     echo "BUILD_DOC=yes" >> config.mak
2035 fi
2036
2037 get_version(){
2038     name=$1
2039     file=$source_path/$2
2040     eval $(grep "#define ${name}_VERSION_M" "$file" | awk '{ print $2"="$3 }')
2041     eval ${name}_VERSION=\$${name}_VERSION_MAJOR.\$${name}_VERSION_MINOR.\$${name}_VERSION_MICRO
2042     lcname=$(tolower $name)
2043     eval echo "${lcname}_VERSION=\$${name}_VERSION" >> config.mak
2044     eval echo "${lcname}_VERSION_MAJOR=\$${name}_VERSION_MAJOR" >> config.mak
2045 }
2046
2047 get_version LIBSWSCALE  libswscale/swscale.h
2048 get_version LIBPOSTPROC libpostproc/postprocess.h
2049 get_version LIBAVCODEC  libavcodec/avcodec.h
2050 get_version LIBAVDEVICE libavdevice/avdevice.h
2051 get_version LIBAVFORMAT libavformat/avformat.h
2052 get_version LIBAVUTIL   libavutil/avutil.h
2053 get_version LIBAVFILTER libavfilter/avfilter.h
2054
2055 if enabled shared; then
2056     echo "BUILD_SHARED=yes" >> config.mak
2057     echo "PIC=-fPIC -DPIC" >> config.mak
2058     echo "LIBTARGET=${LIBTARGET}" >> config.mak
2059     echo "SLIBNAME=${SLIBNAME}" >> config.mak
2060     echo "SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}" >> config.mak
2061     echo "SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}" >> config.mak
2062     echo "SLIB_CREATE_DEF_CMD=${SLIB_CREATE_DEF_CMD}" >> config.mak
2063     echo "SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}" >> config.mak
2064     echo "SLIB_INSTALL_EXTRA_CMD=${SLIB_INSTALL_EXTRA_CMD}" >> config.mak
2065     echo "SLIB_UNINSTALL_EXTRA_CMD=${SLIB_UNINSTALL_EXTRA_CMD}" >> config.mak
2066 fi
2067 echo "LIB_INSTALL_EXTRA_CMD=${LIB_INSTALL_EXTRA_CMD}" >> config.mak
2068 echo "EXTRALIBS=$extralibs" >> config.mak
2069
2070 print_config ARCH_   $TMPH config.mak $ARCH_LIST
2071 print_config HAVE_   $TMPH config.mak $HAVE_LIST
2072 print_config CONFIG_ $TMPH config.mak $CONFIG_LIST       \
2073                                       $DECODER_LIST      \
2074                                       $ENCODER_LIST      \
2075                                       $PARSER_LIST       \
2076                                       $BSF_LIST          \
2077                                       $DEMUXER_LIST      \
2078                                       $MUXER_LIST        \
2079                                       $FILTER_LIST       \
2080                                       $PROTOCOL_LIST     \
2081                                       $INDEV_LIST        \
2082                                       $OUTDEV_LIST       \
2083
2084 echo "#define restrict $_restrict" >> $TMPH
2085
2086 if enabled small; then
2087     echo "#define av_always_inline"  >> $TMPH
2088 fi
2089
2090 echo "SRC_PATH=\"$source_path\"" >> config.mak
2091 echo "SRC_PATH_BARE=$source_path" >> config.mak
2092 echo "BUILD_ROOT=\"$PWD\"" >> config.mak
2093
2094 # Apparently it's not possible to portably echo a backslash.
2095 enabled asmalign_pot &&
2096     printf '#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\\n\\t"\n' >> $TMPH ||
2097     printf '#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\\n\\t"\n' >> $TMPH
2098
2099 echo "#define EXTERN_PREFIX \"${extern_prefix}\"" >> $TMPH
2100
2101 echo "#endif /* FFMPEG_CONFIG_H */" >> $TMPH
2102
2103 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
2104 cmp -s $TMPH config.h &&
2105     echo "config.h is unchanged" ||
2106     mv -f $TMPH config.h
2107
2108 rm -f $TMPC $TMPE $TMPH $TMPO $TMPS $TMPSH
2109
2110 # build tree in object directory if source path is different from current one
2111 if enabled source_path_used; then
2112     DIRS="\
2113         doc               \
2114         libavcodec        \
2115         libavcodec/alpha  \
2116         libavcodec/armv4l \
2117         libavcodec/bfin   \
2118         libavcodec/i386   \
2119         libavcodec/mlib   \
2120         libavcodec/ppc    \
2121         libavcodec/sh4    \
2122         libavcodec/sparc  \
2123         libavdevice       \
2124         libavfilter       \
2125         libavformat       \
2126         libavutil         \
2127         libpostproc       \
2128         libswscale        \
2129         tests             \
2130         tools             \
2131         vhook             \
2132         "
2133     FILES="\
2134         Makefile             \
2135         common.mak           \
2136         subdir.mak           \
2137         doc/texi2pod.pl      \
2138         libavcodec/Makefile  \
2139         libavdevice/Makefile \
2140         libavfilter/Makefile \
2141         libavformat/Makefile \
2142         libavutil/Makefile   \
2143         libpostproc/Makefile \
2144         libswscale/Makefile  \
2145         "
2146     for dir in $DIRS ; do
2147         mkdir -p $dir
2148     done
2149     for f in $FILES ; do
2150         $ln_s "$source_path/$f" $f
2151     done
2152 fi
2153
2154
2155 # build pkg-config files
2156
2157 pkgconfig_generate(){
2158 name=$1
2159 shortname=${name#lib}
2160 comment=$2
2161 version=$3
2162 libs=$4
2163 requires=$5
2164 cat <<EOF > $name.pc
2165 prefix=$prefix
2166 exec_prefix=\${prefix}
2167 libdir=$libdir
2168 includedir=$incdir
2169
2170 Name: $name
2171 Description: $comment
2172 Version: $version
2173 Requires: $requires
2174 Conflicts:
2175 Libs: -L\${libdir} -l${shortname}
2176 Libs.private: $libs
2177 Cflags: -I\${includedir}
2178 EOF
2179 cat <<EOF > $name-uninstalled.pc
2180 prefix=
2181 exec_prefix=
2182 libdir=\${pcfiledir}/$name
2183 includedir=\${pcfiledir}
2184
2185 Name: $name
2186 Description: $comment
2187 Version: $version
2188 Requires: $requires
2189 Conflicts:
2190 Libs: \${libdir}/${LIBPREF}${shortname}${LIBSUF}
2191 Libs.private: $libs
2192 Cflags: -I\${includedir}
2193 EOF
2194 }
2195
2196 pkgconfig_generate libavutil "FFmpeg utility library" "$LIBAVUTIL_VERSION"
2197 pkgconfig_generate libavcodec "FFmpeg codec library" "$LIBAVCODEC_VERSION" "$extralibs" "$pkg_requires libavutil = $LIBAVUTIL_VERSION"
2198 pkgconfig_generate libavformat "FFmpeg container format library" "$LIBAVFORMAT_VERSION" "$extralibs" "$pkg_requires libavcodec = $LIBAVCODEC_VERSION"
2199 pkgconfig_generate libavdevice "FFmpeg device handling library" "$LIBAVDEVICE_VERSION" "$extralibs" "$pkg_requires libavformat = $LIBAVFORMAT_VERSION"
2200 enabled avfilter && \
2201     pkgconfig_generate libavfilter "FFmpeg video filtering library" "$LIBAVFILTER_VERSION" "$extralibs" "$pkg_requires libavutil = $LIBAVUTIL_VERSION"
2202 enabled postproc && \
2203     pkgconfig_generate libpostproc "FFmpeg post processing library" "$LIBPOSTPROC_VERSION"
2204 if enabled swscale; then
2205     pkgconfig_generate libswscale "FFmpeg image rescaling library" "$LIBSWSCALE_VERSION" "" "libavutil = $LIBAVUTIL_VERSION"
2206 else
2207     pkgconfig_generate libswscale "FFmpeg image rescaling library" "$LIBSWSCALE_VERSION" "" "$pkg_requires libavcodec = $LIBAVCODEC_VERSION"
2208     apply libswscale.pc sed s/^Libs:.*$/Libs:/
2209 fi