]> git.sesse.net Git - ffmpeg/blob - configure
Move MinGW extralibs setting into MinGW section.
[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 float audio codec"
103   echo "  --enable-amr_nb-fixed    use fixed point for amr-nb codec"
104   echo "  --enable-amr_wb          enable amr_wb float 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 HAVE_LIST='
581     altivec
582     altivec_h
583     armv5te
584     armv6
585     beosthreads
586     byteswap_h
587     cmov
588     dcbzl
589     dev_bktr_ioctl_bt848_h
590     dev_bktr_ioctl_meteor_h
591     dev_ic_bt8xx_h
592     dev_video_meteor_ioctl_meteor_h
593     dev_video_bktr_ioctl_bt848_h
594     dlfcn_h
595     dlopen
596     fast_cmov
597     freetype2
598     imlib2
599     inet_aton
600     iwmmxt
601     localtime_r
602     lrintf
603     machine_ioctl_bt848_h
604     machine_ioctl_meteor_h
605     malloc_h
606     memalign
607     mlib
608     mmi
609     mmx
610     os2
611     os2threads
612     pthreads
613     sdl
614     sdl_video_size
615     soundcard_h
616     sys_poll_h
617     sys_soundcard_h
618     threads
619     w32threads
620 '
621
622 TARGET_LIST='
623     altivec
624     armv5te
625     armv6
626     iwmmxt
627     mmi
628     mmx
629 '
630
631 CMDLINE_SELECT="
632     $CONFIG_LIST
633     $TARGET_LIST
634     amr_if2
635     debug
636     extra_warnings
637     shared
638     static
639     beosthreads
640     os2threads
641     pthreads
642     w32threads
643 "
644
645 flashsv_decoder_deps="zlib"
646 flashsv_encoder_deps="zlib"
647 mpeg_xvmc_decoder_deps="xvmc"
648 png_decoder_deps="zlib"
649 png_encoder_deps="zlib"
650 x264_encoder_deps="x264"
651 xvid_encoder_deps="xvid"
652 zmbv_decoder_deps="zlib"
653 zmbv_encoder_deps="zlib"
654
655 aac_decoder_deps="libfaad"
656 mpeg4aac_decoder_deps="libfaad"
657 amr_nb_decoder_deps_any="amr_nb amr_nb_fixed"
658 amr_nb_encoder_deps_any="amr_nb amr_nb_fixed"
659 amr_wb_decoder_deps="amr_wb"
660 amr_wb_encoder_deps="amr_wb"
661 dts_decoder_deps="libdts"
662 faac_encoder_deps="libfaac"
663 liba52_decoder_deps="liba52"
664 libgsm_decoder_deps="libgsm"
665 libgsm_encoder_deps="libgsm"
666 libgsm_ms_decoder_deps="libgsm"
667 libgsm_ms_encoder_deps="libgsm"
668 libtheora_encoder_deps="libtheora"
669 mp3lame_encoder_deps="libmp3lame"
670 oggvorbis_decoder_deps="libvorbis"
671 oggvorbis_encoder_deps="libvorbis"
672
673 audio_demuxer_deps_any="audio_oss audio_beos"
674 audio_muxer_deps_any="audio_oss audio_beos"
675 dc1394_demuxer_deps="dc1394"
676 dv1394_demuxer_deps="dv1394"
677 gxf_muxer_deps="gpl"
678 libnut_demuxer_deps="libnut"
679 libnut_muxer_deps="libnut"
680 ogg_muxer_deps="libogg"
681 redir_demuxer_deps="network"
682 rtp_muxer_deps="network"
683 rtsp_demuxer_deps="network"
684 sdp_demuxer_deps="network"
685 v4l2_demuxer_deps="v4l2"
686 video_grab_device_demuxer_deps_any="v4l bktr"
687 x11_grab_device_demuxer_deps="x11grab"
688
689 ffplay_deps="sdl"
690 ffserver_deps="network protocols muxers"
691 network_deps="protocols"
692
693 # set temporary file name
694 if test ! -z "$TMPDIR" ; then
695     TMPDIR1="${TMPDIR}"
696 elif test ! -z "$TEMPDIR" ; then
697     TMPDIR1="${TEMPDIR}"
698 else
699     TMPDIR1="/tmp"
700 fi
701
702 TMPC="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.c"
703 TMPO="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.o"
704 TMPE="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}"
705 TMPS="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.S"
706 TMPH="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.h"
707
708 # default parameters
709
710 logging="yes"
711 logfile="config.err"
712
713 # installation paths
714 PREFIX="/usr/local"
715 libdir='${PREFIX}/lib'
716 shlibdir="$libdir"
717 incdir='${PREFIX}/include/ffmpeg'
718 mandir='${PREFIX}/man'
719 bindir='${PREFIX}/bin'
720
721 # toolchain
722 cross_prefix=""
723 cross_compile="no"
724 cc="gcc"
725 ar="ar"
726 ranlib="ranlib"
727 make="make"
728 strip="strip"
729 asmalign_pot="unknown"
730
731 # machine
732 arch=`uname -m`
733 cpu="generic"
734 powerpc_perf="no"
735 mmx="default"
736 cmov="no"
737 fast_cmov="no"
738 armv5te="default"
739 armv6="default"
740 iwmmxt="default"
741 altivec="default"
742 dcbzl="no"
743 mmi="default"
744 bigendian="no"
745
746 # OS
747 targetos=`uname -s`
748 beos_netserver="no"
749 mingw32="no"
750 os2="no"
751 wince="no"
752
753 # non-library system interfaces
754 audio_beos="default"
755 audio_oss="yes"
756 bktr="yes"
757 dv1394="yes"
758 v4l2="yes"
759 v4l="yes"
760
761 # libraries
762 amr_if2="no"
763 amr_nb="no"
764 amr_nb_fixed="no"
765 amr_wb="no"
766 avisynth="no"
767 dc1394="no"
768 dlfcn_h="no"
769 dlopen="no"
770 liba52="no"
771 liba52bin="no"
772 libdts="no"
773 libfaac="no"
774 libfaad2="no"
775 libfaad="no"
776 libfaadbin="no"
777 libgsm="no"
778 libmp3lame="no"
779 libnut="no"
780 libogg="no"
781 libtheora="no"
782 libvorbis="no"
783 mlib="no"
784 x11grab="no"
785 x264="no"
786 xvid="no"
787 zlib="yes"
788
789 # configurable options
790 debug="yes"
791 dostrip="yes"
792 extra_warnings="no"
793 ffmpeg="yes"
794 ffplay="yes"
795 ffserver="yes"
796 gpl="no"
797 gprof="no"
798 ipv6="yes"
799 shared="no"
800 static="yes"
801 memalign_hack="no"
802 mpegaudio_hp="yes"
803 network="yes"
804 optimize="yes"
805 pp="no"
806 protocols="yes"
807 swscaler="no"
808 vhook="default"
809
810 # threading
811 beosthreads="no"
812 os2threads="no"
813 pthreads="no"
814 w32threads="no"
815 thread_type="no"
816
817 # build settings
818 SHFLAGS='-shared -Wl,-soname,$@'
819 VHOOKSHFLAGS='$(SHFLAGS)'
820 LIBOBJFLAGS=""
821 FFLDFLAGS=-Wl,--warn-common
822 LDLATEFLAGS='-Wl,-rpath-link,\$(BUILD_ROOT)/libavcodec -Wl,-rpath-link,\$(BUILD_ROOT)/libavformat -Wl,-rpath-link,\$(BUILD_ROOT)/libavutil'
823 FFSERVERLDFLAGS=-Wl,-E
824 LDCONFIG="ldconfig"
825 LIBPREF="lib"
826 LIBSUF=".a"
827 LIB='$(LIBPREF)$(NAME)$(LIBSUF)'
828 SLIBPREF="lib"
829 SLIBSUF=".so"
830 SLIBNAME='$(SLIBPREF)$(NAME)$(SLIBSUF)'
831 SLIBNAME_WITH_VERSION='$(SLIBNAME).$(LIBVERSION)'
832 SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)'
833 EXESUF=""
834 BUILDSUF=""
835 LIB_INSTALL_EXTRA_CMD='$(RANLIB) "$(libdir)/$(LIB)"'
836
837 # find source path
838 source_path="`dirname \"$0\"`"
839 source_path_used="yes"
840 if test -z "$source_path" -o "$source_path" = "." ; then
841     source_path="`pwd`"
842     source_path_used="no"
843 else
844     source_path="`cd \"$source_path\"; pwd`"
845     echo "$source_path" | grep -q '[[:blank:]]' &&
846       die "Out of tree builds are impossible with whitespace in source path."
847 fi
848
849 if test x"$1" = x"-h" -o x"$1" = x"--help" ; then
850     show_help
851 fi
852
853 FFMPEG_CONFIGURATION="$@"
854
855 ENCODER_LIST=`sed -n 's/^[^#]*ENC.*, *\(.*\)).*/\1_encoder/p' "$source_path/libavcodec/allcodecs.c"`
856 DECODER_LIST=`sed -n 's/^[^#]*DEC.*, *\(.*\)).*/\1_decoder/p' "$source_path/libavcodec/allcodecs.c"`
857 PARSER_LIST=`sed -n 's/^[^#]*PARSER.*, *\(.*\)).*/\1_parser/p' "$source_path/libavcodec/allcodecs.c"`
858 MUXER_LIST=`sed -n 's/^[^#]*_MUX.*, *\(.*\)).*/\1_muxer/p' "$source_path/libavformat/allformats.c"`
859 DEMUXER_LIST=`sed -n 's/^[^#]*DEMUX.*, *\(.*\)).*/\1_demuxer/p' "$source_path/libavformat/allformats.c"`
860
861 enable $ENCODER_LIST $DECODER_LIST $PARSER_LIST $MUXER_LIST $DEMUXER_LIST
862
863 die_unknown(){
864     echo "Unknown option \"$1\"."
865     echo "See $0 --help for available options."
866     exit 1
867 }
868
869 for opt do
870   optval="${opt#*=}"
871   case "$opt" in
872   --log)
873   ;;
874   --log=*) logging="$optval"
875   ;;
876   --prefix=*) PREFIX="$optval"
877   ;;
878   --libdir=*) libdir="$optval"
879   ;;
880   --shlibdir=*) shlibdir="$optval"
881   ;;
882   --incdir=*) incdir="$optval"
883   ;;
884   --mandir=*) mandir="$optval"
885   ;;
886   --source-path=*) source_path="$optval"
887   ;;
888   --cross-prefix=*) cross_prefix="$optval"
889   ;;
890   --cross-compile) cross_compile="yes"
891   ;;
892   --target-os=*) targetos="$optval"
893   ;;
894   --cc=*) cc="$optval"
895   ;;
896   --make=*) make="$optval"
897   ;;
898   --extra-cflags=*) add_cflags "$optval"
899   ;;
900   --extra-ldflags=*) add_ldflags "$optval"
901   ;;
902   --extra-libs=*) add_extralibs "$optval"
903   ;;
904   --build-suffix=*) BUILDSUF="$optval"
905   ;;
906   --arch=*) arch="$optval"
907   ;;
908   --cpu=*) cpu="$optval"
909   ;;
910   --enable-mingwce) wince="yes"
911   ;;
912   --disable-opts) optimize="no"
913   ;;
914   --enable-small) optimize="small"
915   ;;
916   --enable-sunmlib) mlib="yes"
917   ;;
918   --disable-strip) dostrip="no"
919   ;;
920   --disable-encoders) disable $ENCODER_LIST
921   ;;
922   --disable-decoders) disable $DECODER_LIST
923   ;;
924   --disable-muxers) disable $MUXER_LIST
925   ;;
926   --disable-demuxers) disable $DEMUXER_LIST
927   ;;
928   --disable-parsers) disable $PARSER_LIST
929   ;;
930   --enable-*=*|--disable-*=*)
931   eval `echo "$opt" | sed 's/=/-/;s/--/action=/;s/-/ thing=/;s/-/ name=/'`
932   case "$thing" in
933       encoder|decoder|muxer|demuxer|parser) $action ${optval}_${thing} ;;
934       *) die_unknown "$opt" ;;
935   esac
936   ;;
937   --enable-?*|--disable-?*)
938   eval `echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g'`
939   echo "$CMDLINE_SELECT" | grep -q "^ *$option\$" || die_unknown $opt
940   $action $option
941   ;;
942   --help) show_help
943   ;;
944   *)
945   die_unknown $opt
946   ;;
947   esac
948 done
949
950 case "$arch" in
951   i386|i486|i586|i686|i86pc|BePC)
952     arch="x86_32"
953   ;;
954   x86_64|amd64)
955     arch="x86_32"
956     canon_arch="`$cc -dumpmachine | sed -e 's,\([^-]*\)-.*,\1,'`"
957     if [ x"$canon_arch" = x"x86_64" -o x"$canon_arch" = x"amd64" ]; then
958       if [ -z "`echo $CFLAGS | grep -- -m32`"  ]; then
959         arch="x86_64"
960       fi
961     fi
962   ;;
963   # armv4l is a subset of armv[567]*l
964   arm|armv[4567]*l)
965     arch="armv4l"
966   ;;
967   alpha)
968     arch="alpha"
969   ;;
970   "Power Macintosh"|ppc|ppc64|powerpc)
971     arch="powerpc"
972   ;;
973   mips|mipsel|IP*)
974     arch="mips"
975   ;;
976   sun4u|sparc64)
977     arch="sparc64"
978   ;;
979   sparc)
980     arch="sparc"
981   ;;
982   sh4)
983     arch="sh4"
984   ;;
985   parisc|parisc64)
986     arch="parisc"
987   ;;
988   s390|s390x)
989     arch="s390"
990   ;;
991   m68k)
992     arch="m68k"
993   ;;
994   ia64)
995     arch="ia64"
996   ;;
997   bfin)
998     arch="bfin"
999   ;;
1000   *)
1001     arch="unknown"
1002   ;;
1003 esac
1004
1005 # OS specific
1006 osextralibs="-lm"
1007 case `tolower $targetos` in
1008   beos|haiku|zeta)
1009     PREFIX="$HOME/config"
1010     # helps building libavcodec
1011     add_cflags "-DPIC -fomit-frame-pointer"
1012     # 3 gcc releases known for BeOS, each with ugly bugs
1013     gcc_version="`$cc -v 2>&1 | grep version | cut -d ' ' -f3-`"
1014     case "$gcc_version" in
1015       2.9-beos-991026*|2.9-beos-000224*) echo "R5/GG gcc"
1016         mmx="no"
1017         ;;
1018       *20010315*) echo "BeBits gcc"
1019         add_cflags "-fno-expensive-optimizations"
1020         ;;
1021     esac
1022     LDCONFIG="echo ignoring ldconfig"
1023     SHFLAGS=-nostart
1024     # disable Linux things
1025     dv1394="no"
1026     # enable BeOS things
1027     disabled audio_beos || enable_audio_beos
1028     # no need for libm, but the inet stuff
1029     # Check for BONE
1030     # XXX: actually should check for NOT net_server
1031     if (echo $BEINCLUDES|grep 'headers/be/bone' >/dev/null); then
1032         osextralibs="-lbind -lsocket"
1033     else
1034         beos_netserver="yes"
1035         osextralibs="-lnet"
1036     fi ;;
1037   sunos)
1038     dv1394="no"
1039     FFLDFLAGS=""
1040     FFSERVERLDFLAGS=""
1041     SHFLAGS="-shared -Wl,-h,\$@"
1042     add_extralibs "-lsocket -lnsl"
1043     ;;
1044   netbsd)
1045     dv1394="no"
1046     add_extralibs "-lossaudio"
1047     ;;
1048   openbsd)
1049     dv1394="no"
1050     need_memalign="no"
1051     LIBOBJFLAGS="\$(PIC)"
1052     LDCONFIG="ldconfig -m \$(shlibdir)"
1053     SHFLAGS='-shared'
1054     SLIBNAME='$(SLIBPREF)$(NAME)$(SLIBSUF).$(LIBVERSION)'
1055     SLIBNAME_WITH_VERSION='$(SLIBNAME)'
1056     SLIBNAME_WITH_MAJOR='$(SLIBNAME)'
1057     add_extralibs "-lossaudio"
1058     ;;
1059   freebsd)
1060     dv1394="no"
1061     need_memalign="no"
1062     add_cflags "-pthread"
1063     ;;
1064   gnu/kfreebsd)
1065     dv1394="no"
1066     add_cflags "-pthread"
1067     ;;
1068   bsd/os)
1069     dv1394="no"
1070     osextralibs="-lpoll -lgnugetopt -lm"
1071     strip="strip -d"
1072     ;;
1073   darwin)
1074     cc="cc"
1075     dv1394="no"
1076     need_memalign="no"
1077     SHFLAGS="-dynamiclib -Wl,-single_module -Wl,-install_name,\$(shlibdir)/\$(SLIBNAME),-current_version,\$(SPPVERSION),-compatibility_version,\$(SPPVERSION) -Wl,-read_only_relocs,suppress"
1078     VHOOKSHFLAGS='-dynamiclib -Wl,-single_module -flat_namespace -undefined suppress -Wl,-install_name,$(shlibdir)/vhook/$@'
1079     osextralibs=""
1080     strip="strip -x"
1081     FFLDFLAGS="-Wl,-dynamic,-search_paths_first"
1082     SLIBSUF=".dylib"
1083     SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME).$(LIBVERSION)$(SLIBSUF)'
1084     SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(NAME).$(LIBMAJOR)$(SLIBSUF)'
1085     FFSERVERLDFLAGS=-Wl,-bind_at_load
1086     ;;
1087   mingw32*)
1088     mingw32="yes"
1089     if enabled_all shared static; then
1090         cat <<EOF
1091 You can only build one library type at once on MinGW.
1092 Specify --disable-static --enable-shared to only build
1093 the shared libraries. To build only the static libraries
1094 you do not need to pass additional options.
1095 EOF
1096         exit 1
1097     fi
1098     dv1394="no"
1099     ffserver="no"
1100     network="no"
1101     if enabled wince; then
1102         protocols="no"
1103     fi
1104     SLIBPREF=""
1105     SLIBSUF=".dll"
1106     EXESUF=".exe"
1107     SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
1108     SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(NAME)-$(LIBMAJOR)$(SLIBSUF)'
1109     SLIB_EXTRA_CMD="-lib /machine:i386 /def:\$(@:${SLIBSUF}=.def)"
1110     SLIB_INSTALL_EXTRA_CMD="-install -m 644 \$(SLIBNAME_WITH_MAJOR:\$(SLIBSUF)=.lib) \"\$(shlibdir)/\$(SLIBNAME_WITH_MAJOR:\$(SLIBSUF)=.lib)\""
1111     SHFLAGS="-shared -Wl,--output-def,\$(@:${SLIBSUF}=.def),--out-implib,lib\$(SLIBNAME:\$(SLIBSUF)=.dll.a) -Wl,--enable-runtime-pseudo-reloc"
1112     add_extralibs -lws2_32
1113     ;;
1114   cygwin*)
1115     targetos=CYGWIN
1116     shlibdir="$bindir"
1117     dv1394="no"
1118     VHOOKSHFLAGS='-shared -L$(BUILD_ROOT)/libavformat -L$(BUILD_ROOT)/libavcodec -L$(BUILD_ROOT)/libswscale -L$(BUILD_ROOT)/libavutil'
1119     VHOOKLIBS='-lavformat$(BUILDSUF) -lavcodec$(BUILDSUF) -lswscale$(BUILDSUF) -lavutil$(BUILDSUF) $(EXTRALIBS)'
1120     osextralibs=""
1121     EXESUF=".exe"
1122     SLIBPREF="cyg"
1123     SLIBSUF=".dll"
1124     SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)'
1125     SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(NAME)-$(LIBMAJOR)$(SLIBSUF)'
1126     SHFLAGS='-shared -Wl,--out-implib=lib$(NAME).dll.a'
1127     ;;
1128   linux)
1129     LDLATEFLAGS="-Wl,--as-needed $LDLATEFLAGS"
1130     ;;
1131   irix*)
1132     targetos=IRIX
1133     ranlib="echo ignoring ranlib"
1134     ;;
1135   os/2)
1136     TMPE=$TMPE".exe"
1137     ar="emxomfar -p128"
1138     ranlib="echo ignoring ranlib"
1139     strip="echo ignoring strip"
1140     add_cflags "-Zomf"
1141     FFLDFLAGS="-Zomf -Zstack 16384 -s"
1142     SHFLAGS="-Zdll -Zomf"
1143     FFSERVERLDFLAGS=""
1144     LIBPREF=""
1145     LIBSUF=".lib"
1146     SLIBPREF=""
1147     SLIBSUF=".dll"
1148     EXESUF=".exe"
1149     osextralibs=""
1150     pkg_requires=""
1151     dv1394="no"
1152     ffserver="no"
1153     vhook="no"
1154     os2="yes"
1155     ;;
1156   *)
1157     targetos="${targetos}-UNKNOWN"
1158     ;;
1159 esac
1160
1161 add_extralibs $osextralibs
1162
1163 if ! disabled logging ; then
1164     enabled logging || logfile="$logging"
1165     echo "# $0 $@" >$logfile
1166     set >>$logfile
1167 else
1168     logfile=/dev/null
1169 fi
1170
1171 # Combine FFLDFLAGS and the LDFLAGS environment variable.
1172 LDFLAGS="$FFLDFLAGS $LDFLAGS"
1173
1174 test -n "$cross_prefix" && cross_compile=yes
1175 cc="${cross_prefix}${cc}"
1176 ar="${cross_prefix}${ar}"
1177 ranlib="${cross_prefix}${ranlib}"
1178 strip="${cross_prefix}${strip}"
1179
1180 # we need to build at least one lib type
1181 if disabled_all static shared; then
1182     cat <<EOF
1183 At least one library type must be built.
1184 Specify --enable-static to build the static libraries or --enable-shared to
1185 build the shared libraries as well. To only build the shared libraries specify
1186 --disable-static in addition to --enable-shared.
1187 EOF
1188     exit 1;
1189 fi
1190
1191 if disabled libogg; then
1192     enabled libtheora && die "libogg must be enabled to enable libtheora."
1193     enabled libvorbis && die "libogg must be enabled to enable libvorbis."
1194 fi
1195
1196 if enabled_any libfaad libfaadbin ; then
1197     if check_header faad.h; then
1198         check_cc << EOF
1199 #include <faad.h>
1200 #ifndef FAAD2_VERSION
1201 ok faad1
1202 #endif
1203 int main( void ) { return 0; }
1204 EOF
1205         test $? = 0 && enable libfaad2
1206     else
1207         die "FAAD test failed."
1208     fi
1209 fi
1210
1211
1212 if disabled gpl ; then
1213     die_gpl_disabled(){
1214         name=$1
1215         shift
1216         enabled_any $@ && die "$name is under GPL and --enable-gpl is not specified."
1217     }
1218     die_gpl_disabled "The Postprocessing code" pp
1219     die_gpl_disabled "liba52"                  liba52
1220     die_gpl_disabled "libxvidcore"             xvid
1221     die_gpl_disabled "x264"                    x264
1222     die_gpl_disabled "libdts"                  libdts
1223     die_gpl_disabled "FAAD2"                   libfaad2
1224     die_gpl_disabled "The X11 grabber"         x11grab
1225     die_gpl_disabled "The software scaler"     swscaler
1226 fi
1227
1228 # compute MMX state
1229 if test $mmx = "default"; then
1230     if test $arch = "x86_32" -o $arch = "x86_64"; then
1231         mmx="yes"
1232     else
1233         mmx="no"
1234     fi
1235 fi
1236
1237 test -z "$need_memalign" && need_memalign="$mmx"
1238
1239 #Darwin CC versions
1240 needmdynamicnopic="no"
1241 if test $targetos = Darwin; then
1242     if test -n "`$cc -v 2>&1 | grep xlc`"; then
1243         add_cflags "-qpdf2 -qlanglvl=extc99 -qmaxmem=-1 -qarch=auto -qtune=auto"
1244     else
1245         gcc_version="`$cc -v 2>&1 | grep version | cut -d ' ' -f3-`"
1246         case "$gcc_version" in
1247             *2.95*)
1248                 add_cflags "-no-cpp-precomp -pipe"
1249                 ;;
1250             *[34].*)
1251                 add_cflags "-no-cpp-precomp -pipe -force_cpusubtype_ALL -Wno-sign-compare"
1252                 if disabled shared; then
1253                    needmdynamicnopic="yes"
1254                 fi
1255                 ;;
1256             *)
1257                 add_cflags "-no-cpp-precomp -pipe"
1258                 if disabled shared; then
1259                    needmdynamicnopic="yes"
1260                 fi
1261                 ;;
1262         esac
1263     fi
1264 fi
1265
1266 disabled optimize || add_cflags -fomit-frame-pointer
1267
1268 # Can only do AltiVec on PowerPC
1269 if test $altivec = "default"; then
1270     if test $arch = "powerpc"; then
1271         altivec="yes"
1272     else
1273         altivec="no"
1274     fi
1275 fi
1276
1277 # Add processor-specific flags
1278 POWERPCMODE="32bits"
1279 if test $cpu != "generic"; then
1280     warn_altivec(){
1281         $1 altivec && echo "WARNING: Tuning for $2 but AltiVec $1.";
1282     }
1283     case $cpu in
1284         601|ppc601|PowerPC601)
1285             add_cflags "-mcpu=601"
1286             warn_altivec enabled PPC601
1287         ;;
1288         603*|ppc603*|PowerPC603*)
1289             add_cflags "-mcpu=603"
1290             warn_altivec enabled PPC603
1291         ;;
1292         604*|ppc604*|PowerPC604*)
1293             add_cflags "-mcpu=604"
1294             warn_altivec enabled PPC604
1295         ;;
1296         G3|g3|75*|ppc75*|PowerPC75*)
1297             add_cflags "-mcpu=750 -mpowerpc-gfxopt"
1298             warn_altivec enabled PPC75x
1299         ;;
1300         G4|g4|745*|ppc745*|PowerPC745*)
1301             add_cflags "-mcpu=7450 -mpowerpc-gfxopt"
1302             warn_altivec disabled PPC745x
1303         ;;
1304         74*|ppc74*|PowerPC74*)
1305             add_cflags "-mcpu=7400 -mpowerpc-gfxopt"
1306             warn_altivec disabled PPC74xx
1307         ;;
1308         G5|g5|970|ppc970|PowerPC970|power4*|Power4*)
1309             add_cflags "-mcpu=970 -mpowerpc-gfxopt -mpowerpc64"
1310             warn_altivec disabled PPC970
1311             POWERPCMODE="64bits"
1312         ;;
1313         # targets that do NOT support conditional mov (cmov)
1314         i[345]86|pentium|pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3)
1315             add_cflags "-march=$cpu"
1316             cmov="no"
1317         ;;
1318         # targets that do support conditional mov (cmov)
1319         i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64|k8|opteron|athlon-fx|core2)
1320             add_cflags "-march=$cpu"
1321             cmov="yes"
1322             fast_cmov="yes"
1323         ;;
1324         # targets that do support conditional mov but on which it's slow
1325         pentium4|prescott|nocona)
1326             add_cflags "-march=$cpu"
1327             cmov="yes"
1328             fast_cmov="no"
1329         ;;
1330         sparc64)
1331             add_cflags "-mcpu=v9"
1332         ;;
1333         *)
1334         echo "WARNING: Unknown CPU \"$cpu\", ignored."
1335         ;;
1336     esac
1337 fi
1338
1339 gnu_make(){
1340     $1 --version 2>&1 | grep -q GNU
1341 }
1342
1343 if ! gnu_make $make; then
1344     gnu_make gmake && make=gmake || die "GNU make not found."
1345 fi
1346
1347 # make sure we can execute files in $TMPDIR
1348 cat >$TMPE 2>>$logfile <<EOF
1349 #! /bin/sh
1350 EOF
1351 chmod +x $TMPE >>$logfile 2>&1
1352 if ! $TMPE >>$logfile 2>&1; then
1353     cat <<EOF
1354 Unable to create and execute files in $TMPDIR1.  Set the TMPDIR environment
1355 variable to another directory and make sure that $TMPDIR1 is not mounted
1356 noexec.
1357 EOF
1358     die "Sanity test failed."
1359 fi
1360 rm $TMPE
1361
1362 # compiler sanity check
1363 check_exec <<EOF
1364 int main(){
1365     return 0;
1366 }
1367 EOF
1368 if test "$?" != 0; then
1369     echo "$cc is unable to create an executable file."
1370     if test -z "$cross_prefix" && disabled cross_compile ; then
1371         echo "If $cc is a cross-compiler, use the --cross-compile option."
1372         echo "Only do this if you know what cross compiling means."
1373     fi
1374     die "C compiler test failed."
1375 fi
1376
1377 # check for assembler specific support
1378
1379 if test $arch = "powerpc"; then
1380 check_cc <<EOF && dcbzl=yes
1381 int main(void) {
1382     register long zero = 0;
1383     char data[1024];
1384     asm volatile("dcbzl %0, %1" : : "b" (data), "r" (zero));
1385 return 0;
1386 }
1387 EOF
1388 fi
1389
1390 # check for SIMD availability
1391
1392 # AltiVec flags: The FSF version of GCC differs from the Apple version
1393 if test $arch = "powerpc"; then
1394     if enabled altivec; then
1395         if test -n "`$cc -v 2>&1 | grep version | grep Apple`"; then
1396             add_cflags "-faltivec"
1397         else
1398             add_cflags "-maltivec -mabi=altivec"
1399         fi
1400     fi
1401 fi
1402
1403 check_header altivec.h
1404
1405 # check if our compiler supports Motorola AltiVec C API
1406 if enabled altivec; then
1407     if enabled altivec_h; then
1408         inc_altivec_h="#include <altivec.h>"
1409     else
1410         inc_altivec_h=
1411     fi
1412     check_cc <<EOF || altivec=no
1413 $inc_altivec_h
1414 int main(void) {
1415     vector signed int v1, v2, v3;
1416     v1 = vec_add(v2,v3);
1417     return 0;
1418 }
1419 EOF
1420 fi
1421
1422 # check armv5te instructions support
1423 if test $armv5te = "default" -a $arch = "armv4l"; then
1424     armv5te=no
1425     check_cc <<EOF && armv5te=yes
1426         int main(void) {
1427         __asm__ __volatile__ ("qadd r0, r0, r0");
1428         }
1429 EOF
1430 fi
1431
1432 if test $armv6 = "default" -a $arch = "armv4l"; then
1433     check_cc <<EOF && armv6=yes || armv6=no
1434 int main(void) {
1435     __asm__ __volatile__ ("sadd16 r0, r0, r0");
1436 }
1437 EOF
1438 fi
1439
1440 # check iwmmxt support
1441 if test $iwmmxt = "default" -a $arch = "armv4l"; then
1442     iwmmxt=no
1443     check_cc <<EOF && iwmmxt=yes
1444         int main(void) {
1445         __asm__ __volatile__ ("wunpckelub wr6, wr4");
1446         }
1447 EOF
1448 fi
1449
1450 # mmi only available on mips
1451 if test $mmi = "default"; then
1452     if test $arch = "mips"; then
1453         mmi="yes"
1454     else
1455         mmi="no"
1456     fi
1457 fi
1458
1459 # check if our compiler supports mmi
1460 enabled mmi && check_cc <<EOF || mmi="no"
1461 int main(void) {
1462     __asm__ ("lq \$2, 0(\$2)");
1463     return 0;
1464 }
1465 EOF
1466
1467 # ---
1468 # big/little-endian test
1469 if disabled cross_compile; then
1470     check_ld <<EOF || die "endian test failed" && $TMPE && bigendian="yes"
1471 #include <inttypes.h>
1472 int main(int argc, char ** argv){
1473         volatile uint32_t i=0x01234567;
1474         return (*((uint8_t*)(&i))) == 0x67;
1475 }
1476 EOF
1477 else
1478     # programs cannot be launched if cross compiling, so make a static guess
1479     if test "$arch" = "powerpc" -o "$arch" = "mips" ; then
1480         bigendian="yes"
1481     fi
1482 fi
1483
1484 # ---
1485 # check availability of some header files
1486
1487 check_header malloc.h
1488 check_func memalign
1489
1490 if disabled_all memalign memalign_hack && enabled need_memalign ; then
1491     die "Error, no memalign() but SSE enabled, disable it or use --enable-memalign-hack."
1492 fi
1493
1494 check_header byteswap.h
1495
1496 check_func inet_aton
1497 check_func localtime_r
1498 enabled zlib && check_lib zlib.h zlibVersion -lz || zlib="no"
1499
1500 # ffserver uses poll(),
1501 # if it's not found we can emulate it using select().
1502 if enabled ffserver; then
1503     check_header sys/poll.h
1504 fi
1505
1506 # check for some common methods of building with pthread support
1507 # do this before the optional library checks as some of them require pthreads
1508 if enabled pthreads; then
1509     if check_func pthread_create; then
1510         :
1511     elif check_func pthread_create -pthread; then
1512         add_cflags -pthread
1513         add_ldflags -pthread
1514     elif check_func pthread_create -pthreads; then
1515         add_cflags -pthreads
1516         add_ldflags -pthreads
1517     elif ! check_lib pthread.h pthread_create -lpthread; then
1518         die "ERROR: can't find pthreads library"
1519     fi
1520 fi
1521
1522 for thread in pthreads beosthreads os2threads w32threads; do
1523     if enabled $thread; then
1524         if ! disabled thread_type ; then
1525             die "ERROR: Only one thread type must be selected."
1526         else
1527             thread_type="$thread"
1528         fi
1529     fi
1530 done
1531
1532 enabled_any amr_nb amr_nb_fixed amr_wb amr_if2 && enable amr
1533 enabled_all amr_nb amr_nb_fixed &&
1534     die "Only one of amr_nb and amr_nb_fixed may be enabled."
1535
1536 # these are off by default, so fail if requested and not available
1537 enabled liba52     && require liba52 a52dec/a52.h a52_init -la52
1538 enabled libdts     && require libdts dts.h dts_init -ldts -lm
1539 enabled libgsm     && require libgsm gsm.h gsm_create -lgsm
1540 enabled libmp3lame && require LAME lame/lame.h lame_init -lmp3lame -lm
1541 enabled libtheora  && require libtheora theora/theora.h theora_info_init -ltheora -logg
1542 enabled libvorbis  && require libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbis -lvorbisenc -logg
1543 enabled libogg     && require libogg ogg/ogg.h ogg_sync_init -logg
1544 enabled libnut     && require libnut libnut.h nut_demuxer_init -lnut
1545 enabled xvid       && require XviD xvid.h xvid_global -lxvidcore
1546 enabled x264       && require x264 x264.h x264_encoder_open -lx264
1547 enabled dc1394     && require libdc1394 libdc1394/dc1394_control.h dc1394_create_handle -ldc1394_control -lraw1394
1548 enabled mlib       && require mediaLib mlib_types.h mlib_VectorSub_S16_U8_Mod -lmlib
1549 enabled libfaac    && require2 libfaac "stdint.h faac.h" faacEncGetVersion -lfaac
1550 enabled libfaad    && require2 libfaad faad.h faacDecOpen -lfaad
1551 enabled avisynth   && require2 vfw32 "windows.h vfw.h" AVIFileInit -lvfw32
1552
1553 # test for lrintf in math.h
1554 check_exec <<EOF && lrintf=yes || lrintf=no
1555 #define _ISOC9X_SOURCE  1
1556 #include <math.h>
1557 int main( void ) { return (lrintf(3.999f) > 0)?0:1; }
1558 EOF
1559
1560 _restrict=
1561 for restrict_keyword in restrict __restrict__ __restrict; do
1562     check_cc <<EOF && _restrict=$restrict_keyword && break
1563 void foo(char * $restrict_keyword p);
1564 EOF
1565 done
1566
1567 # dlopen/dlfcn.h probing
1568
1569 check_header dlfcn.h
1570
1571 if check_func dlopen; then
1572     ldl=
1573 elif check_func dlopen -ldl; then
1574     ldl=-ldl
1575 fi
1576
1577 test "$vhook" = "default" && vhook="$dlopen"
1578
1579 enabled_any vhook liba52bin libfaadbin && add_extralibs $ldl
1580
1581 if test "$targetos" = "CYGWIN" && enabled static ; then
1582     vhook="no"
1583     echo
1584     echo "At the moment vhooks don't work on Cygwin static builds."
1585     echo "Patches welcome."
1586     echo
1587 fi
1588
1589 if enabled vhook; then
1590     check_ldflags -rdynamic
1591     check_ldflags -export-dynamic
1592 fi
1593
1594 enabled audio_beos && add_extralibs "-lmedia -lbe"
1595
1596 check_foo_config imlib2 imlib2 Imlib2.h imlib_load_font
1597 check_foo_config freetype2 freetype ft2build.h FT_Init_FreeType
1598
1599 ##########################################
1600 # SDL check
1601
1602 sdl_too_old=no
1603 sdl=no
1604 SDL_CONFIG="${cross_prefix}sdl-config"
1605 if "${SDL_CONFIG}" --version >/dev/null 2>&1; then
1606     sdl_cflags=`"${SDL_CONFIG}" --cflags`
1607     temp_cflags $sdl_cflags
1608     temp_extralibs `"${SDL_CONFIG}" --libs`
1609     if check_lib SDL.h SDL_Init; then
1610         _sdlversion=`"${SDL_CONFIG}" --version | sed 's/[^0-9]//g'`
1611         if test "$_sdlversion" -lt 121 ; then
1612             sdl_too_old=yes
1613         else
1614             sdl=yes
1615             check_cc $sdl_cflags <<EOF && enable sdl_video_size
1616 #include <SDL.h>
1617 int main(void){
1618     const SDL_VideoInfo *vi = SDL_GetVideoInfo();
1619     int w = vi->current_w;
1620     return 0;
1621 }
1622 EOF
1623         fi
1624     fi
1625     restore_flags
1626 fi
1627
1628 texi2html -version >/dev/null 2>&1 && enable texi2html || disable texi2html
1629
1630 ##########################################
1631 # IPv6 check
1632
1633 enabled network && enabled ipv6 && check_ld <<EOF && ipv6=yes || ipv6=no
1634 #include <sys/types.h>
1635 #include <sys/socket.h>
1636 #include <netinet/in.h>
1637 #include <netdb.h>
1638 int main( void ) {
1639   struct sockaddr_storage saddr;
1640   struct ipv6_mreq mreq6;
1641   getaddrinfo(0,0,0,0);
1642   getnameinfo(0,0,0,0,0,0,0);
1643   IN6_IS_ADDR_MULTICAST((const struct in6_addr *)0);
1644 }
1645 EOF
1646
1647 enabled v4l  && check_header linux/videodev.h  || disable v4l
1648 enabled v4l2 && check_header linux/videodev2.h || disable v4l2
1649
1650 # check for ioctl_meteor.h, ioctl_bt848.h and alternatives
1651 if enabled bktr; then
1652     { check_header dev/bktr/ioctl_meteor.h &&
1653       check_header dev/bktr/ioctl_bt848.h; } ||
1654     { check_header machine/ioctl_meteor.h &&
1655       check_header machine/ioctl_bt848.h; } ||
1656     { check_header dev/video/meteor/ioctl_meteor.h &&
1657       check_header dev/video/bktr/ioctl_bt848.h; } ||
1658     check_header dev/ic/bt8xx.h ||
1659     disable bktr
1660 fi
1661
1662 enabled audio_oss &&
1663     check_header sys/soundcard.h ||
1664     check_header soundcard.h ||
1665     disable audio_oss
1666
1667 # Deal with the x11 frame grabber
1668 enabled x11grab                         &&
1669 enabled gpl                             &&
1670 enabled x11_grab_device_demuxer         &&
1671 check_header X11/Xlib.h                 &&
1672 check_header X11/extensions/XShm.h      &&
1673 check_func XOpenDisplay -lX11           &&
1674 check_func XShmCreateImage -lX11 -lXext &&
1675 add_extralibs -lX11 -lXext              ||
1676 disable x11_grab_device_demuxer
1677
1678 enabled debug && add_cflags -g
1679
1680 # add some useful compiler flags if supported
1681 check_cflags -Wdeclaration-after-statement
1682 check_cflags -Wall
1683 check_cflags -Wno-switch
1684 check_cflags -Wdisabled-optimization
1685 check_cflags -Wpointer-arith
1686 check_cflags -Wredundant-decls
1687 check_cflags -Wno-pointer-sign
1688 enabled extra_warnings && check_cflags -Winline
1689
1690 # add some linker flags
1691 check_ldflags $LDLATEFLAGS
1692
1693 # not all compilers support -Os
1694 test "$optimize" = "small" && check_cflags -Os
1695
1696 if enabled optimize; then
1697     if test -n "`$cc -v 2>&1 | grep xlc`"; then
1698         add_cflags  "-O5"
1699         add_ldflags "-O5"
1700     else
1701         add_cflags "-O3"
1702     fi
1703 fi
1704
1705 # PIC flags for shared library objects where they are needed
1706 if enabled shared; then
1707     # LIBOBJFLAGS may have already been set in the OS configuration
1708     if test -z "$LIBOBJFLAGS" ; then
1709         case "$arch" in
1710             x86_64|ia64|alpha|sparc*|power*) LIBOBJFLAGS="\$(PIC)" ;;
1711         esac
1712     fi
1713 fi
1714
1715 if enabled gprof; then
1716     add_cflags  "-p"
1717     add_ldflags "-p"
1718 fi
1719
1720 VHOOKCFLAGS="-fPIC $CFLAGS"
1721 enabled needmdynamicnopic && add_cflags -mdynamic-no-pic
1722
1723 # find if .align arg is power-of-two or not
1724 if test $asmalign_pot = "unknown"; then
1725     asmalign_pot="no"
1726     echo 'asm (".align 3");' | check_cc && asmalign_pot="yes"
1727 fi
1728
1729 enabled_any $ENCODER_LIST && enable encoders
1730 enabled_any $DECODER_LIST && enable decoders
1731 enabled_any $MUXER_LIST   && enable muxers
1732 enabled_any $DEMUXER_LIST && enable demuxers
1733
1734 enabled_any pthreads beosthreads os2threads w32threads && enable threads
1735
1736 check_deps $CONFIG_LIST $HAVE_LIST $DECODER_LIST $ENCODER_LIST $PARSER_LIST \
1737     $DEMUXER_LIST $MUXER_LIST
1738
1739 enabled libogg    && append pkg_requires "ogg >= 1.1"
1740 enabled libtheora && append pkg_requires "theora"
1741 enabled libvorbis && append pkg_requires "vorbis vorbisenc"
1742 enabled dc1394    && append pkg_requires "libraw1394"
1743
1744 echo "install prefix            $PREFIX"
1745 echo "source path               $source_path"
1746 echo "C compiler                $cc"
1747 echo "make                      $make"
1748 echo ".align is power-of-two    $asmalign_pot"
1749 echo "ARCH                      $arch ($cpu)"
1750 if test "$BUILDSUF" != ""; then
1751     echo "build suffix              $BUILDSUF"
1752 fi
1753 echo "big-endian                $bigendian"
1754 if test $arch = "x86_32" -o $arch = "x86_64"; then
1755     echo "MMX enabled               $mmx"
1756     echo "CMOV enabled              $cmov"
1757     echo "CMOV is fast              $fast_cmov"
1758 fi
1759 if test $arch = "armv4l"; then
1760     echo "ARMv5TE enabled           $armv5te"
1761     echo "ARMv6 enabled             $armv6"
1762     echo "IWMMXT enabled            $iwmmxt"
1763 fi
1764 if test $arch = "mips"; then
1765     echo "MMI enabled               $mmi"
1766 fi
1767 if test $arch = "powerpc"; then
1768     echo "AltiVec enabled           $altivec"
1769     echo "dcbzl available           $dcbzl"
1770 fi
1771 echo "gprof enabled             $gprof"
1772 echo "debug symbols             $debug"
1773 echo "strip symbols             $dostrip"
1774 echo "optimize                  $optimize"
1775 echo "static                    $static"
1776 echo "shared                    $shared"
1777 echo "postprocessing support    $pp"
1778 echo "software scaler enabled   $swscaler"
1779 echo "video hooking             $vhook"
1780 if enabled vhook; then
1781     echo "Imlib2 support            $imlib2"
1782     echo "FreeType support          $freetype2"
1783 fi
1784 echo "network support           $network"
1785 if enabled network; then
1786     echo "IPv6 support              $ipv6"
1787 fi
1788 echo "threading support         $thread_type"
1789 echo "SDL support               $sdl"
1790 if enabled sdl_too_old; then
1791     echo "-> Your SDL version is too old - please upgrade to have FFplay/SDL support."
1792 fi
1793 echo "Sun medialib support      $mlib"
1794 echo "AVISynth enabled          $avisynth"
1795 echo "liba52 support            $liba52"
1796 echo "liba52 dlopened           $liba52bin"
1797 echo "libdts support            $libdts"
1798 echo "libfaac enabled           $libfaac"
1799 echo "libfaad enabled           $libfaad"
1800 echo "faadbin enabled           $libfaadbin"
1801 echo "libgsm enabled            $libgsm"
1802 echo "libmp3lame enabled        $libmp3lame"
1803 echo "libnut enabled            $libnut"
1804 echo "libogg enabled            $libogg"
1805 echo "libtheora enabled         $libtheora"
1806 echo "libvorbis enabled         $libvorbis"
1807 echo "x264 enabled              $x264"
1808 echo "XviD enabled              $xvid"
1809 echo "zlib enabled              $zlib"
1810 echo "AMR-NB float support      $amr_nb"
1811 echo "AMR-NB fixed support      $amr_nb_fixed"
1812 echo "AMR-WB float support      $amr_wb"
1813 echo "AMR-WB IF2 support        $amr_if2"
1814 if disabled gpl; then
1815     echo "License: LGPL"
1816 else
1817     echo "License: GPL"
1818 fi
1819
1820 echo "Creating config.mak and config.h..."
1821
1822 echo "# Automatically generated by configure - do not modify!" > config.mak
1823 echo "/* Automatically generated by configure - do not modify! */" > $TMPH
1824 echo "#define FFMPEG_CONFIGURATION \"$FFMPEG_CONFIGURATION\"" >> $TMPH
1825
1826 echo "PREFIX=$PREFIX" >> config.mak
1827 echo "prefix=\$(DESTDIR)\${PREFIX}" >> config.mak
1828 echo "libdir=\$(DESTDIR)$libdir" >> config.mak
1829 echo "shlibdir=\$(DESTDIR)$shlibdir" >> config.mak
1830 echo "incdir=\$(DESTDIR)$incdir" >> config.mak
1831 echo "bindir=\$(DESTDIR)$bindir" >> config.mak
1832 echo "mandir=\$(DESTDIR)$mandir" >> config.mak
1833 echo "MAKE=$make" >> config.mak
1834 echo "CC=$cc" >> config.mak
1835 echo "AR=$ar" >> config.mak
1836 echo "RANLIB=$ranlib" >> config.mak
1837 if enabled dostrip; then
1838     echo "STRIP=$strip" >> config.mak
1839 else
1840     echo "STRIP=echo ignoring strip" >> config.mak
1841 fi
1842
1843 echo "OPTFLAGS=$CFLAGS" >> config.mak
1844 echo "VHOOKCFLAGS=$VHOOKCFLAGS">>config.mak
1845 echo "LDFLAGS=$LDFLAGS" >> config.mak
1846 echo "LDCONFIG=$LDCONFIG" >> config.mak
1847 echo "FFSERVERLDFLAGS=$FFSERVERLDFLAGS" >> config.mak
1848 echo "SHFLAGS=$SHFLAGS" >> config.mak
1849 echo "VHOOKSHFLAGS=$VHOOKSHFLAGS" >> config.mak
1850 echo "VHOOKLIBS=$VHOOKLIBS" >> config.mak
1851 echo "LIBOBJFLAGS=$LIBOBJFLAGS" >> config.mak
1852 echo "BUILD_STATIC=$static" >> config.mak
1853 echo "BUILDSUF=$BUILDSUF" >> config.mak
1854 echo "LIBPREF=$LIBPREF" >> config.mak
1855 echo "LIBSUF=\${BUILDSUF}$LIBSUF" >> config.mak
1856 if enabled static; then
1857   echo "LIB=$LIB" >> config.mak
1858 else # Some Make complain if this variable does not exist.
1859   echo "LIB=" >> config.mak
1860 fi
1861 echo "SLIBPREF=$SLIBPREF" >> config.mak
1862 echo "SLIBSUF=\${BUILDSUF}$SLIBSUF" >> config.mak
1863 echo "EXESUF=\${BUILDSUF}$EXESUF" >> config.mak
1864
1865 ucarch=`toupper $arch`
1866 echo "TARGET_ARCH_${ucarch}=yes" >> config.mak
1867 echo "#define ARCH_${ucarch} 1" >> $TMPH
1868
1869 # special cases
1870 case "$arch" in
1871     x86_32|x86_64)
1872         echo "TARGET_ARCH_X86=yes" >> config.mak
1873         echo "#define ARCH_X86 1" >> $TMPH
1874         ;;
1875     powerpc)
1876         if test "$POWERPCMODE" = "64bits"; then
1877             echo "#define POWERPC_MODE_64BITS 1" >> $TMPH
1878         fi
1879         ;;
1880     sparc64)
1881         echo "TARGET_ARCH_SPARC=yes" >> config.mak
1882         echo "#define ARCH_SPARC 1" >> $TMPH
1883         ;;
1884 esac
1885
1886 if enabled bigendian; then
1887   echo "WORDS_BIGENDIAN=yes" >> config.mak
1888   echo "#define WORDS_BIGENDIAN 1" >> $TMPH
1889 fi
1890 if enabled mmx; then
1891   echo "#define __CPU__ 586" >> $TMPH
1892 fi
1893
1894 if enabled sdl; then
1895   echo "SDL_LIBS=`"${SDL_CONFIG}" --libs`" >> config.mak
1896   echo "SDL_CFLAGS=`"${SDL_CONFIG}" --cflags`" >> config.mak
1897 fi
1898 if enabled texi2html; then
1899   echo "BUILD_DOC=yes" >> config.mak
1900 fi
1901
1902 sws_version=`grep '#define LIBSWSCALE_VERSION ' "$source_path/libswscale/swscale.h" | sed 's/[^0-9\.]//g'`
1903 pp_version=`grep '#define LIBPOSTPROC_VERSION ' "$source_path/libpostproc/postprocess.h" | sed 's/[^0-9\.]//g'`
1904 lavc_version=`grep '#define LIBAVCODEC_VERSION ' "$source_path/libavcodec/avcodec.h" | sed 's/[^0-9\.]//g'`
1905 lavf_version=`grep '#define LIBAVFORMAT_VERSION ' "$source_path/libavformat/avformat.h" | sed 's/[^0-9\.]//g'`
1906 lavu_version=`grep '#define LIBAVUTIL_VERSION ' "$source_path/libavutil/avutil.h" | sed 's/[^0-9\.]//g'`
1907
1908
1909
1910 if enabled shared; then
1911   echo "BUILD_SHARED=yes" >> config.mak
1912   echo "PIC=-fPIC -DPIC" >> config.mak
1913   echo "SPPMAJOR=${pp_version%%.*}" >> config.mak
1914   echo "SPPVERSION=$pp_version" >> config.mak
1915   echo "LAVCMAJOR=${lavc_version%%.*}" >> config.mak
1916   echo "LAVCVERSION=$lavc_version" >> config.mak
1917   echo "LAVFMAJOR=${lavf_version%%.*}" >> config.mak
1918   echo "LAVFVERSION=$lavf_version" >> config.mak
1919   echo "LAVUMAJOR=${lavu_version%%.*}" >> config.mak
1920   echo "LAVUVERSION=$lavu_version" >> config.mak
1921   echo "SWSMAJOR=${sws_version%%.*}" >> config.mak
1922   echo "SWSVERSION=$sws_version" >> config.mak
1923   echo "SLIBNAME=${SLIBNAME}" >> config.mak
1924   echo "SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}" >> config.mak
1925   echo "SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}" >> config.mak
1926   echo "SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}" >> config.mak
1927   echo "SLIB_INSTALL_EXTRA_CMD=${SLIB_INSTALL_EXTRA_CMD}" >> config.mak
1928 fi
1929 echo "LIB_INSTALL_EXTRA_CMD=${LIB_INSTALL_EXTRA_CMD}" >> config.mak
1930 echo "EXTRALIBS=$extralibs" >> config.mak
1931
1932 print_config HAVE_   $TMPH config.mak $HAVE_LIST
1933 print_config CONFIG_ $TMPH config.mak $CONFIG_LIST
1934 print_config TARGET_ $TMPH config.mak $TARGET_LIST
1935
1936 if test "$targetos" = "Darwin"; then
1937   echo "#define CONFIG_DARWIN 1"  >> $TMPH
1938 fi
1939
1940 echo "#define restrict $_restrict" >> $TMPH
1941
1942 if test "$optimize" = "small"; then
1943   echo "#define always_inline"  >> $TMPH
1944   echo "#define CONFIG_SMALL 1" >> $TMPH
1945 fi
1946
1947 echo "SRC_PATH=\"$source_path\"" >> config.mak
1948 echo "SRC_PATH_BARE=$source_path" >> config.mak
1949 echo "BUILD_ROOT=\"$PWD\"" >> config.mak
1950
1951 if enabled amr_if2; then
1952   echo "AMR_CFLAGS=-DIF2=1" >> config.mak
1953 fi
1954
1955 # Apparently it's not possible to portably echo a backslash.
1956 if enabled asmalign_pot; then
1957   printf '#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\\n\\t"\n' >> $TMPH
1958 else
1959   printf '#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\\n\\t"\n' >> $TMPH
1960 fi
1961
1962
1963 for codec in $DECODER_LIST $ENCODER_LIST $PARSER_LIST $DEMUXER_LIST $MUXER_LIST; do
1964     ucname="`toupper $codec`"
1965     config_name="CONFIG_$ucname"
1966     enabled_name="ENABLE_$ucname"
1967     if enabled $codec; then
1968         echo "#define $config_name 1" >> $TMPH
1969         echo "#define $enabled_name 1" >> $TMPH
1970         echo "$config_name=yes" >> config.mak
1971     else
1972         echo "#define $enabled_name 0" >> $TMPH
1973     fi
1974 done
1975
1976 # Do not overwrite config.h if unchanged to avoid superfluous rebuilds.
1977 if ! cmp -s $TMPH config.h; then
1978         mv -f $TMPH config.h
1979 else
1980         echo "config.h is unchanged"
1981 fi
1982
1983 rm -f $TMPO $TMPC $TMPE $TMPS $TMPH
1984
1985 # build tree in object directory if source path is different from current one
1986 if enabled source_path_used; then
1987     DIRS="\
1988          doc \
1989          libavformat \
1990          libavcodec \
1991          libavcodec/alpha \
1992          libavcodec/armv4l \
1993          libavcodec/bfin \
1994          libavcodec/i386 \
1995          libavcodec/sparc \
1996          libavcodec/mlib \
1997          libavcodec/ppc \
1998          libavcodec/amr \
1999          libavcodec/amr_float \
2000          libavcodec/amrwb_float \
2001          libpostproc \
2002          libavutil \
2003          libswscale \
2004          tests \
2005          vhook \
2006          "
2007     FILES="\
2008           Makefile \
2009           common.mak \
2010           libavformat/Makefile \
2011           libavcodec/Makefile \
2012           libpostproc/Makefile \
2013           libavutil/Makefile \
2014           libswscale/Makefile \
2015           tests/Makefile \
2016           vhook/Makefile \
2017           doc/Makefile \
2018           doc/texi2pod.pl \
2019           "
2020     for dir in $DIRS ; do
2021             mkdir -p $dir
2022     done
2023     for f in $FILES ; do
2024         ln -sf "$source_path/$f" $f
2025     done
2026 fi
2027
2028
2029 # build pkg-config files
2030 # FIXME: libdir and includedir are hardcoded and may differ from the real path.
2031
2032 pkgconfig_generate(){
2033 name=$1
2034 comment=$2
2035 version=$3
2036 libs=$4
2037 requires=$5
2038 include=$6
2039 cat <<EOF >$name.pc
2040 prefix=$PREFIX
2041 exec_prefix=\${prefix}
2042 libdir=\${exec_prefix}/lib
2043 includedir=\${prefix}/include
2044
2045 Name: $name
2046 Description: $comment
2047 Version: $version
2048 Requires: $requires
2049 Conflicts:
2050 Libs: -L\${libdir} $libs
2051 Cflags: -I\${includedir} -I\${includedir}/$include
2052 EOF
2053 }
2054
2055 pkgconfig_generate_uninstalled(){
2056 name=$1
2057 shortname=${name#lib}
2058 comment=$2
2059 version=$3
2060 libs=$4
2061 requires=$5
2062 cat <<EOF >$name-uninstalled.pc
2063 prefix=
2064 exec_prefix=
2065 libdir=\${pcfiledir}/$name
2066 includedir=\${pcfiledir}/$name
2067
2068 Name: $name
2069 Description: $comment
2070 Version: $version
2071 Requires: $requires
2072 Conflicts:
2073 Libs: \${libdir}/${LIBPREF}${shortname}${LIBSUF} $libs
2074 Cflags: -I\${includedir}
2075 EOF
2076 }
2077
2078 pkgconfig_generate libavutil "FFmpeg utility library" "$lavu_version" -lavutil "" ffmpeg
2079 pkgconfig_generate_uninstalled libavutil "FFmpeg utility library" "$lavu_version"
2080
2081 pkgconfig_generate libavcodec "FFmpeg codec library" "$lavc_version" "-lavcodec $extralibs" "$pkg_requires libavutil = $lavu_version" ffmpeg
2082 pkgconfig_generate_uninstalled libavcodec "FFmpeg codec library" "$lavc_version" "$extralibs" "$pkg_requires libavutil = $lavu_version"
2083
2084 pkgconfig_generate libavformat "FFmpeg container format library" "$lavf_version" "-lavformat $extralibs" "$pkg_requires libavcodec = $lavc_version" ffmpeg
2085 pkgconfig_generate_uninstalled libavformat "FFmpeg container format library" "$lavf_version" "$extralibs" "$pkg_requires libavcodec = $lavc_version"
2086
2087 if enabled pp; then
2088   pkgconfig_generate libpostproc "FFmpeg post processing library" "$pp_version" -lpostproc "" postproc
2089   pkgconfig_generate_uninstalled libpostproc "FFmpeg post processing library" "$pp_version"
2090 fi
2091
2092 if enabled swscaler; then
2093   pkgconfig_generate libswscale "FFmpeg image rescaling library" "$sws_version" "-lswscale" "libavutil = $lavu_version" swscale
2094   pkgconfig_generate_uninstalled libswscale "FFmpeg image rescaling library" "$sws_version" "" "libavutil = $lavu_version"
2095 else
2096   pkgconfig_generate libswscale "FFmpeg image rescaling library" "$sws_version" "" "$pkg_requires libavcodec = $lavc_version" swscale
2097   pkgconfig_generate_uninstalled libswscale "FFmpeg image rescaling library" "$sws_version" "" "$pkg_requires libavcodec = $lavc_version"
2098   apply libswscale.pc sed s/^Libs:.*$/Libs:/
2099   apply libswscale-uninstalled.pc sed s/^Libs:.*$/Libs:/
2100 fi