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