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