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