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