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