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