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