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