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