3 # ffmpeg configure script (c) 2000, 2001, 2002 Fabrice Bellard
6 if test x
"$1" = x
"-h" -o x
"$1" = x
"--help" ; then
9 Usage: configure [options]
10 Options: [defaults in brackets after descriptions]
13 echo "Standard options:"
14 echo " --help print this message"
15 echo " --prefix=PREFIX install in PREFIX [$prefix]"
16 echo " --libdir=DIR install libs in DIR [PREFIX/lib]"
17 echo " --mandir=DIR install man page in DIR [PREFIX/man]"
18 echo " --enable-mp3lame enable MP3 encoding via libmp3lame [default=no]"
19 echo " --enable-libogg enable Ogg support via libogg [default=no]"
20 echo " --enable-vorbis enable Vorbis support via libvorbis [default=no]"
21 echo " --enable-theora enable Theora support via libtheora [default=no]"
22 echo " --enable-faad enable FAAD support via libfaad [default=no]"
23 echo " --enable-faadbin build FAAD support with runtime linking [default=no]"
24 echo " --enable-faac enable FAAC support via libfaac [default=no]"
25 echo " --enable-libgsm enable GSM support via libgsm [default=no]"
26 echo " --enable-xvid enable XviD support via xvidcore [default=no]"
27 echo " --enable-x264 enable H.264 encoding via x264 [default=no]"
28 echo " --enable-mingw32 enable MinGW native/cross Windows compile"
29 echo " --enable-a52 enable GPLed A52 support [default=no]"
30 echo " --enable-a52bin open liba52.so.0 at runtime [default=no]"
31 echo " --enable-dts enable GPLed DTS support [default=no]"
32 echo " --enable-pp enable GPLed postprocessing support [default=no]"
33 echo " --enable-shared-pp use libpostproc.so [default=no]"
34 echo " --enable-shared build shared libraries [default=no]"
35 echo " --enable-amr_nb enable amr_nb float audio codec"
36 echo " --enable-amr_nb-fixed use fixed point for amr-nb codec"
37 echo " --enable-amr_wb enable amr_wb float audio codec"
38 echo " --enable-amr_if2 enable amr_wb IF2 audio codec"
39 echo " --enable-sunmlib use Sun medialib [default=no]"
40 echo " --enable-pthreads use pthreads [default=no]"
41 echo " --enable-dc1394 enable IIDC-1394 grabbing using libdc1394"
42 echo " and libraw1394 [default=no]"
43 echo " --enable-gpl allow use of GPL code, the resulting libav*"
44 echo " and ffmpeg will be under GPL [default=no]"
46 echo "Advanced options (experts only):"
47 echo " --source-path=PATH path to source code [$source_path]"
48 echo " --cross-prefix=PREFIX use PREFIX for compilation tools [$cross_prefix]"
49 echo " --cc=CC use C compiler CC [$cc]"
50 echo " --make=MAKE use specified make [$make]"
51 echo " --extra-cflags=ECFLAGS add ECFLAGS to CFLAGS [$CFLAGS]"
52 echo " --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]"
53 echo " --extra-libs=ELIBS add ELIBS [$ELIBS]"
54 echo " --build-suffix=SUFFIX suffix for application specific build []"
55 echo " --cpu=CPU force cpu to CPU [$cpu]"
56 echo " --tune=CPU tune code for a particular CPU"
57 echo " (may fail or perform badly on other CPUs)"
58 echo " --powerpc-perf-enable enable performance report on PPC"
59 echo " (requires enabling PMC)"
60 echo " --disable-mmx disable MMX usage"
61 echo " --disable-iwmmxt disable iwmmxt usage"
62 echo " --disable-altivec disable AltiVec usage"
63 echo " --disable-audio-oss disable OSS audio support [default=no]"
64 echo " --disable-audio-beos disable BeOS audio support [default=no]"
65 echo " --disable-v4l disable video4linux grabbing [default=no]"
66 echo " --disable-bktr disable bktr video grabbing [default=no]"
67 echo " --disable-dv1394 disable DV1394 grabbing [default=no]"
68 echo " --disable-network disable network support [default=no]"
69 echo " --disable-zlib disable zlib [default=no]"
70 echo " --disable-simple_idct disable simple IDCT routines [default=no]"
71 echo " --disable-vhook disable video hooking support"
72 echo " --enable-gprof enable profiling with gprof [$gprof]"
73 echo " --disable-debug disable debugging symbols"
74 echo " --disable-opts disable compiler optimizations"
75 echo " --disable-mpegaudio-hp faster (but less accurate)"
76 echo " MPEG audio decoding [default=no]"
77 echo " --disable-ffserver disable ffserver build"
78 echo " --disable-ffplay disable ffplay build"
79 echo " --enable-small optimize for size instead of speed"
80 echo " --enable-memalign-hack emulate memalign, interferes with memory debuggers"
81 echo " --disable-strip disable stripping of executables and shared libraries"
82 echo " --enable-codec=CODEC enables CODEC"
83 echo " --disable-codec=CODEC disables CODEC"
84 echo " --disable-encoders disables all encoders"
85 echo " --disable-decoders disables all decoders"
86 echo " --disable-muxers disables all muxers"
87 echo " --disable-demuxers disables all demuxers"
89 echo "NOTE: Object files are built at the place where configure is launched."
93 # set temporary file name
94 if test ! -z
"$TMPDIR" ; then
96 elif test ! -z
"$TEMPDIR" ; then
102 TMPC
="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.c"
103 TMPO
="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.o"
104 TMPE
="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}"
105 TMPS
="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.S"
106 TMPH
="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.h"
127 i386|i486|i586|i686|i86pc|BePC
)
132 canon_arch
="`cc -dumpmachine | sed -e 's,\([^-]*\)-.*,\1,'`"
133 if [ x
"$canon_arch" = x
"x86_64" -o x
"$canon_arch" = x
"amd64" ]; then
134 if [ -z
"`echo $CFLAGS | grep -- -m32`" ]; then
139 # armv4l is a subset of armv5tel
146 "Power Macintosh"|ppc|powerpc
)
224 LDFLAGS
=-Wl
,--warn-common
248 prefix
="/boot/home/config"
249 # helps building libavcodec
250 CFLAGS
="-DPIC -fomit-frame-pointer"
251 # 3 gcc releases known for BeOS, each with ugly bugs
252 gcc_version
="`$cc -v 2>&1 | grep version | cut -d ' ' -f3-`"
253 case "$gcc_version" in
254 2.9-beos-991026
*|
2.9-beos-000224
*) echo "R5/GG gcc"
257 *20010315*) echo "BeBits gcc"
258 CFLAGS
="$CFLAGS -fno-expensive-optimizations"
262 # disable Linux things
268 # no need for libm, but the inet stuff
270 if (echo $BEINCLUDES|
grep 'headers/be/bone' >/dev
/null
); then
271 extralibs
="-lbind -lsocket"
285 extralibs
="$extralibs -lsocket -lnsl"
293 LDFLAGS
="$LDFLAGS -export-dynamic"
295 2.
*) extralibs
="$extralibs -lossaudio"
305 LIBOBJFLAGS
="\$(PIC)"
306 LDFLAGS
="$LDFLAGS -export-dynamic -pthread"
307 LDCONFIG
="ldconfig -m \$(libdir)"
308 extralibs
="$extralibs -lossaudio"
317 LDFLAGS
="$LDFLAGS -export-dynamic -pthread"
324 extralibs
="-lpoll -lgnugetopt -lm"
333 SHFLAGS
="-dynamiclib -Wl,-single_module,-undefined,dynamic_lookup"
338 LDFLAGS
="-Wl,-dynamic,-search_paths_first"
340 FFSLDFLAGS
=-Wl
,-bind_at_load
343 # Note: the rest of the mingw32 config is done afterwards as mingw32
344 # can be forced on the command line for Linux cross compilation.
357 LDFLAGS
="$LDFLAGS -rdynamic"
360 ranlib
="echo ignoring ranlib"
368 ranlib
="echo ignoring ranlib"
369 strip
="echo ignoring strip"
371 LDFLAGS
="-Zomf -Zstack 16384 -s"
372 SHFLAGS
="-Zdll -Zomf"
393 # From MPlayer configure. We need TARGET_OS available
394 # to the Makefile, so it can distinguish between flavors
395 # of AltiVec on PowerPC.
396 TARGET_OS
=`( uname -s ) 2>&1`
398 Linux|FreeBSD|NetBSD|BSD
/OS|OpenBSD|SunOS|QNX|Darwin|GNU|BeOS|MorphOS
)
406 [cC
][yY
][gG
][wW
][iI
][nN
]*)
410 TARGET_OS
="$TARGET_OS-UNKNOWN"
415 source_path
="`echo $0 | sed -e 's#/configure##'`"
416 source_path_used
="yes"
417 if test -z
"$source_path" -o
"$source_path" = "." ; then
419 source_path_used
="no"
421 source_path
="`cd \"$source_path\"; pwd`"
424 FFMPEG_CONFIGURATION
=" "
426 FFMPEG_CONFIGURATION
="$FFMPEG_CONFIGURATION""$opt "
429 CODEC_LIST
=`grep 'register_avcodec(&[a-z]' $source_path/libavcodec/allcodecs.c | sed 's/.*&\(.*\)).*/\1/'`
433 --prefix
=*) prefix
=`echo $opt | cut -d '=' -f 2`; force_prefix
=yes
435 --libdir
=*) libdir
=`echo $opt | cut -d '=' -f 2`; force_libdir
=yes
437 --mandir
=*) mandir
=`echo $opt | cut -d '=' -f 2`
439 --source-path
=*) source_path
=`echo $opt | cut -d '=' -f 2`
441 --cross-prefix
=*) cross_prefix
=`echo $opt | cut -d '=' -f 2`
443 --cc
=*) cc
=`echo $opt | cut -d '=' -f 2-`
445 --make=*) make=`echo $opt | cut -d '=' -f 2`
447 --extra-cflags
=*) CFLAGS
="$CFLAGS ${opt#--extra-cflags=}"
449 --extra-ldflags
=*) LDFLAGS
="$LDFLAGS ${opt#--extra-ldflags=}"
451 --extra-libs
=*) extralibs
=${opt#--extra-libs=}
453 --build-suffix
=*) BUILDSUF
=${opt#--build-suffix=}
455 --cpu
=*) cpu
=`echo $opt | cut -d '=' -f 2`
457 --tune
=*) tune
=`echo $opt | cut -d '=' -f 2`
459 --powerpc-perf-enable
) powerpc_perf
="yes"
461 --disable-mmx
) mmx
="no"
463 --disable-iwmmxt
) iwmmxt
="no"
465 --disable-altivec
) altivec
="no"
467 --enable-gprof
) gprof
="yes"
469 --disable-v4l
) v4l
="no"
471 --disable-bktr
) bktr
="no"
473 --disable-audio-oss
) audio_oss
="no"
475 --disable-audio-beos
) audio_beos
="no"
476 extralibs
="$extralibs -lbe -lmedia"
478 --disable-dv1394
) dv1394
="no"
480 --disable-network
) network
="no"; ffserver
="no"
482 --disable-zlib
) zlib
="no"
484 --enable-a52
) a52
="yes"
486 --enable-a52bin
) a52bin
="yes"
488 --enable-dts
) dts
="yes"
489 extralibs
="$extralibs -ldts"
491 --enable-pp
) pp
="yes"
493 --enable-shared-pp
) shared_pp
="yes"
495 --enable-libgsm
) libgsm
="yes"
496 extralibs
="$extralibs -lgsm"
498 --enable-mp3lame
) mp3lame
="yes"
499 extralibs
="$extralibs -lmp3lame"
501 --enable-libogg
) libogg
="yes"
502 extralibs
="$extralibs -logg"
503 pkg_requires
="$pkg_requires ogg >= 1.1"
505 --enable-vorbis
) vorbis
="yes"
506 extralibs
="$extralibs -lvorbis -lvorbisenc"
507 pkg_requires
="$pkg_requires vorbis vorbisenc"
509 --enable-theora
) theora
="yes"
510 extralibs
="$extralibs -ltheora"
511 pkg_requires
="$pkg_requires theora"
513 --enable-faad
) faad
="yes"
514 extralibs
="$extralibs -lfaad"
516 --enable-faadbin
) faadbin
="yes"
518 --enable-faac
) faac
="yes"
519 extralibs
="$extralibs -lfaac"
521 --enable-xvid
) xvid
="yes"
522 extralibs
="$extralibs -lxvidcore"
524 --enable-x264
) x264
="yes"
525 extralibs
="$extralibs -lx264"
527 --enable-dc1394
) dc1394
="yes"
528 extralibs
="$extralibs -ldc1394_control -lraw1394"
529 pkg_requires
="$pkg_requires libraw1394"
531 --disable-vhook
) vhook
="no"
533 --disable-simple_idct
) simpleidct
="no"
535 --enable-mingw32
) mingw32
="yes"
537 --enable-shared
) lshared
="yes"
539 --disable-debug
) debug
="no"
541 --disable-opts
) optimize
="no"
543 --disable-mpegaudio-hp
) mpegaudio_hp
="no"
545 --disable-ffserver
) ffserver
="no"
547 --disable-ffplay
) ffplay
="no"
549 --enable-small
) optimize
="small"
551 --enable-amr_nb
) amr_nb
="yes"
553 --enable-amr_nb-fixed
) amr_nb_fixed
="yes"
555 --enable-amr_wb
) amr_wb
="yes"
557 --enable-amr_if2
) amr_if2
="yes"
559 --enable-sunmlib
) sunmlib
="yes"
561 --enable-pthreads
) pthreads
="yes"
563 --enable-gpl
) gpl
="yes"
565 --enable-memalign-hack
) memalignhack
="yes"
567 --disable-strip
) dostrip
="no"
569 --enable-codec
=*) CODEC_LIST
="$CODEC_LIST ${opt#--enable-codec=}"
571 --disable-codec
=*) CODEC_LIST
="`echo $CODEC_LIST | sed -e \"s#${opt#--disable-codec=}##\"`"
573 --disable-encoders
) CODEC_LIST
="`echo $CODEC_LIST | sed 's/[-_a-zA-Z0-9]*encoder//g'`"
575 --disable-decoders
) CODEC_LIST
="`echo $CODEC_LIST | sed 's/[-_a-zA-Z0-9]*decoder//g'`"
577 --disable-muxers
) muxers
="no"
579 --disable-demuxers
) demuxers
="no"
582 echo "Unknown option \"$opt\"."
583 echo "See $0 --help for available options."
589 if test "$theora" = "yes" ; then
590 if test "$libogg" = "no"; then
591 echo "libogg must be enabled to enable Theora."
597 if test "$vorbis" = "yes" ; then
598 if test "$libogg" = "no"; then
599 echo "libogg must be enabled to enable Vorbis."
605 if test "$gpl" != "yes"; then
606 if test "$pp" != "no" -o
"$shared_pp" != "no"; then
607 echo "The Postprocessing code is under GPL and --enable-gpl is not specified."
611 if test "$a52" != "no" -o
"$a52bin" != "no"; then
612 echo "liba52 is under GPL and --enable-gpl is not specified."
616 if test "$xvid" != "no"; then
617 echo "libxvidcore is under GPL and --enable-gpl is not specified."
621 if test "$x264" != "no"; then
622 echo "x264 is under GPL and --enable-gpl is not specified."
626 if test "$dts" != "no"; then
627 echo "libdts is under GPL and --enable-gpl is not specified."
631 if test "$faad" != "no" -o
"$faadbin" != "no"; then
634 int main( void ) { return 0; }
637 if $cc $CFLAGS -o
$TMPE $TMPC 2> /dev
/null
; then
640 #ifndef FAAD2_VERSION
643 int main( void ) { return 0; }
645 if $cc $CFLAGS -o
$TMPE $TMPC 2> /dev
/null
; then
646 echo "FAAD2 is under GPL and --enable-gpl is not specified."
652 echo "FAAD test failed."
657 if test "$fail" = "yes"; then
663 if test $mmx = "default"; then
664 if test $cpu = "x86" -o
$cpu = "x86_64"; then
671 # check iwmmxt support
672 if test $iwmmxt = "default" -a
$cpu = "armv4l"; then
675 __asm__ __volatile__ ("wunpckelub wr6, wr4");
680 if ${cross_prefix}${cc} -o
$TMPO $TMPC 2> /dev
/null
; then
686 needmdynamicnopic
="no"
687 if test $targetos = Darwin
; then
688 if test -n
"`$cc -v 2>&1 | grep xlc`"; then
689 CFLAGS
="$CFLAGS -qpdf2 -qlanglvl=extc99 -qmaxmem=-1 -qarch=auto -qtune=auto"
691 gcc_version
="`$cc -v 2>&1 | grep version | cut -d ' ' -f3-`"
692 case "$gcc_version" in
694 CFLAGS
="$CFLAGS -no-cpp-precomp -pipe -fomit-frame-pointer"
697 CFLAGS
="$CFLAGS -no-cpp-precomp -pipe -fomit-frame-pointer -force_cpusubtype_ALL -Wno-sign-compare"
698 if test "$lshared" = no
; then
699 needmdynamicnopic
="yes"
703 CFLAGS
="$CFLAGS -no-cpp-precomp -pipe -fomit-frame-pointer"
704 if test "$lshared" = no
; then
705 needmdynamicnopic
="yes"
712 # Can only do AltiVec on PowerPC
713 if test $altivec = "default"; then
714 if test $cpu = "powerpc"; then
721 # Add processor-specific flags
724 if test $tune != "generic"; then
726 601|ppc601|PowerPC601
)
727 CFLAGS
="$CFLAGS -mcpu=601"
728 if test $altivec = "yes"; then
729 echo "WARNING: Tuning for PPC601 but AltiVec enabled!";
733 603*|ppc603
*|PowerPC603
*)
734 CFLAGS
="$CFLAGS -mcpu=603"
735 if test $altivec = "yes"; then
736 echo "WARNING: Tuning for PPC603 but AltiVec enabled!";
740 604*|ppc604
*|PowerPC604
*)
741 CFLAGS
="$CFLAGS -mcpu=604"
742 if test $altivec = "yes"; then
743 echo "WARNING: Tuning for PPC604 but AltiVec enabled!";
747 G3|g3|
75*|ppc75
*|PowerPC75
*)
748 CFLAGS
="$CFLAGS -mcpu=750 -mtune=750 -mpowerpc-gfxopt"
749 if test $altivec = "yes"; then
750 echo "WARNING: Tuning for PPC75x but AltiVec enabled!";
754 G4|g4|
745*|ppc745
*|PowerPC745
*)
755 CFLAGS
="$CFLAGS -mcpu=7450 -mtune=7450 -mpowerpc-gfxopt"
756 if test $altivec = "no"; then
757 echo "WARNING: Tuning for PPC745x but AltiVec disabled!";
761 74*|ppc74
*|PowerPC74
*)
762 CFLAGS
="$CFLAGS -mcpu=7400 -mtune=7400 -mpowerpc-gfxopt"
763 if test $altivec = "no"; then
764 echo "WARNING: Tuning for PPC74xx but AltiVec disabled!";
768 G5|g5|
970|ppc970|PowerPC970|power4
*|Power4
*)
769 CFLAGS
="$CFLAGS -mcpu=970 -mtune=970 -mpowerpc-gfxopt -mpowerpc64"
770 if test $altivec = "no"; then
771 echo "WARNING: Tuning for PPC970 but AltiVec disabled!";
776 i
[3456]86|pentium|pentiumpro|pentium-mmx|pentium
[234]|prescott|k6|k6-
[23]|athlon|athlon-tbird|athlon-4|athlon-
[mx
]p|winchip-c6|winchip2|c3|nocona|athlon64|k8|opteron|athlon-fx
)
777 CFLAGS
="$CFLAGS -march=$tune"
780 echo "WARNING: Unknown CPU \"$tune\", ignored."
785 # AltiVec flags: The FSF version of GCC differs from the Apple version
786 if test $cpu = "powerpc"; then
787 if test $altivec = "yes"; then
788 if test -n
"`$cc -v 2>&1 | grep version | grep Apple`"; then
789 CFLAGS
="$CFLAGS -faltivec"
791 CFLAGS
="$CFLAGS -maltivec -mabi=altivec"
796 # check if we have <altivec.h>
799 int main( void ) { return 0; }
803 if $cc $CFLAGS -o
$TMPE $TMPC 2> /dev
/null
; then
807 # check if our compiler supports Motorola AltiVec C API
808 if test $altivec = "yes"; then
809 if test $_altivec_h = "yes"; then
813 vector signed int v1, v2, v3;
821 vector signed int v1, v2, v3;
827 $cc $CFLAGS -o
$TMPE $TMPC 2> /dev
/null || altivec
="no"
830 # mmi only available on mips
831 if test $mmi = "default"; then
832 if test $cpu = "mips"; then
839 # check if our compiler supports mmi
840 if test $mmi = "yes"; then
843 __asm__ ("lq \$2, 0(\$2)");
847 $cc -o
$TMPE $TMPC 2> /dev
/null || mmi
="no"
850 if test "$mingw32" = "yes" ; then
861 if test "$force_prefix" != yes; then prefix
="/c/Program Files/FFmpeg"; fi
862 if test "$force_libdir" != yes; then bindir
="$prefix"; fi
865 cc
="${cross_prefix}${cc}"
866 ar="${cross_prefix}${ar}"
867 ranlib
="${cross_prefix}${ranlib}"
868 strip
="${cross_prefix}${strip}"
870 if test -z
"$cross_prefix" ; then
873 # big/little-endian test
875 #include <inttypes.h>
876 int main(int argc, char ** argv){
877 volatile uint32_t i=0x01234567;
878 return (*((uint8_t*)(&i))) == 0x67;
882 if $cc -o
$TMPE $TMPC 2>/dev
/null
; then
883 $TMPE && bigendian
="yes"
885 echo big
/little
test failed
890 # programs cannot be launched if cross compiling, so make a static guess
891 if test "$cpu" = "powerpc" -o
"$cpu" = "mips" ; then
900 #include <inttypes.h>
901 int main(int argc, char ** argv){
906 $cc -o
$TMPE $TMPC 2>/dev
/null || inttypes
="no"
911 #include <inttypes.h>
912 int main(int argc, char ** argv){
913 volatile uint_fast64_t i=0x01234567;
918 $cc -o
$TMPE $TMPC 2>/dev
/null || emu_fast_int
="yes"
921 # check availability of some header files
925 int main( void ) { return 0; }
930 if $cc -o
$TMPE $TMPC 2> /dev
/null
; then
933 # check for memalign - atmos
939 string = memalign(64, sizeof(char));
943 $cc -o
$TMPE $TMPC 2> /dev
/null || _memalign
=no
946 if test "$_memalign" = "no" -a
"$mmx" = "yes" -a
"$memalignhack" != "yes"; then
947 echo "Error, no memalign() but SSE enabled, disable it or use --enable-memalign-hack."
953 int main( void ) { localtime_r(NULL, NULL); }
957 if $cc -o
$TMPE $TMPC 2> /dev
/null
; then
961 if test "$zlib" = "yes"; then
962 # check for zlib - mmu_man
966 if (zlibVersion() != ZLIB_VERSION)
967 puts("zlib version differs !!!");
972 $cc $CFLAGS $LDFLAGS -o
$TMPE $TMPC -lz
2> /dev
/null || zlib
="no"
973 # $TMPE 2> /dev/null > /dev/null || zlib="no"
974 # XXX: more tests needed - runtime test
976 if test "$zlib" = "yes"; then
977 extralibs
="$extralibs -lz"
980 # test for lrintf in math.h
982 #define _ISOC9X_SOURCE 1
984 int main( void ) { return (lrintf(3.999f) > 0)?0:1; }
988 if $cc $extralibs -o
$TMPE $TMPC 2> /dev
/null
; then
990 # allanc@chickenandporn.com: cannot execute cross-compiled
991 # code on the host. Only execute if not cross-compiling.
992 if test -z
"$cross_prefix" ; then
993 $TMPE 2> /dev
/null
> /dev
/null || have_lrintf
="no"
998 for restrict_keyword
in restrict __restrict__ __restrict
; do
999 echo "void foo(char * $restrict_keyword p);" > $TMPC
1000 if $cc -c
-o
$TMPO $TMPC 2> /dev
/null
; then
1001 _restrict
=$restrict_keyword
1006 # test gcc version to see if vector builtins can be used
1007 # currently only used on i386 for MMX builtins
1009 #include <xmmintrin.h>
1011 #if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 2)
1014 #error no vector builtins
1020 if $cc -msse
-o
$TMPO $TMPC 2> /dev
/null
; then
1024 # dlopen/dlfcn.h probing
1028 int main( void ) { return (int) dlopen("foo", 0); }
1033 if $cc -o
$TMPE $TMPC -ldl
> /dev
/null
2>&1 ; then
1038 if $cc -o
$TMPE $TMPC > /dev
/null
2>&1 ; then
1045 int main( void ) { return (int) dlopen("foo", 0); }
1048 if $cc -o
$TMPE $TMPC -ldl
> /dev
/null
2>&1 ; then
1052 if $cc -o
$TMPE $TMPC > /dev
/null
2>&1 ; then
1057 if test "$vhook" = "default" ; then
1061 if test "$vhook" = "yes" -o
"$a52bin" = "yes" -o
"$faadbin" = "yes"; then
1062 extralibs
="$extralibs $ldl"
1066 ##########################################
1070 #include <X11/Xlib.h>
1072 int main( void ) { return (int) imlib_load_font("foo"); }
1076 if $cc $CFLAGS $LDFLAGS -o
$TMPE $TMPC -lImlib2
-lm
> /dev
/null
2>&1 ; then
1080 ##########################################
1084 #include <ft2build.h>
1085 int main( void ) { return (int) FT_Init_FreeType(0); }
1089 if test "x$targetos" != "xBeOS" && test "$os2" != "yes"; then
1090 if (freetype-config
--version
) >/dev
/null
2>&1 ; then
1091 if $cc -o
$TMPE $TMPC `freetype-config --cflags` `freetype-config --libs` > /dev
/null
2>&1 ; then
1097 ##########################################
1102 #undef main /* We don't want SDL to override our main() */
1103 int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
1108 if (sdl-config
--version
) >/dev
/null
2>&1 ; then
1109 if $cc -o
$TMPE `sdl-config --cflags` $TMPC `sdl-config --libs` > /dev
/null
2>&1 ; then
1110 _sdlversion
=`sdl-config --version | sed 's/[^0-9]//g'`
1111 if test "$_sdlversion" -lt
121 ; then
1119 ##########################################
1123 if (texi2html
-version
) >/dev
/null
2>&1; then
1127 if test "$network" = "yes" ; then
1128 ##########################################
1132 #include <sys/types.h>
1133 #include <sys/socket.h>
1134 #include <netinet/in.h>
1137 struct sockaddr_storage saddr;
1138 struct ipv6_mreq mreq6;
1139 getaddrinfo(0,0,0,0);
1140 getnameinfo(0,0,0,0,0,0,0);
1141 IN6_IS_ADDR_MULTICAST(0);
1146 if $cc -o
$TMPE $TMPC > /dev
/null
2>&1 ; then
1151 case "`$cc -v 2>&1 | grep version`" in
1153 CFLAGS
="-Wall -Wno-switch $CFLAGS"
1159 if test "$sdl" = "no" ; then
1163 if test "$debug" = "yes"; then
1167 if test "$optimize" = "small"; then
1168 # CFLAGS=${CFLAGS//-O3/-Os}
1169 CFLAGS
="$CFLAGS -Os"
1172 if test "$optimize" = "yes"; then
1173 if test -n
"`$cc -v 2>&1 | grep xlc`"; then
1174 CFLAGS
="$CFLAGS -O5"
1175 LDFLAGS
="$LDFLAGS -O5"
1177 CFLAGS
="-O3 $CFLAGS"
1181 # PIC flags for shared library objects where they are needed
1182 if test "$lshared" = "yes" ; then
1183 # LIBOBJFLAGS may have already been set in the OS configuration
1184 if test -z
"$LIBOBJFLAGS" ; then
1185 if test "$cpu" = "x86_64" -o
"$cpu" = "ia64" ; then
1186 LIBOBJFLAGS
="\$(PIC)"
1191 if test x
"$bindir" = x
""; then
1192 bindir
="${prefix}/bin"
1195 if test x
"$libdir" = x
""; then
1196 libdir
="${prefix}/lib"
1199 if test x
"$mandir" = x
""; then
1200 mandir
="${prefix}/man"
1203 echo "install prefix $prefix"
1204 echo "source path $source_path"
1205 echo "C compiler $cc"
1207 echo "CPU $cpu ($tune)"
1208 if test "$BUILDSUF" != ""; then
1209 echo "build suffix $BUILDSUF"
1211 echo "big-endian $bigendian"
1212 echo "inttypes.h $inttypes"
1213 echo "broken inttypes.h $emu_fast_int"
1214 if test $cpu = "x86" -o
$cpu = "x86_64"; then
1215 echo "MMX enabled $mmx"
1216 echo "Vector Builtins $builtin_vector"
1218 if test $cpu = "armv4l"; then
1219 echo "IWMMXT enabled $iwmmxt"
1221 if test $cpu = "mips"; then
1222 echo "MMI enabled $mmi"
1224 if test $cpu = "powerpc"; then
1225 echo "AltiVec enabled $altivec"
1227 echo "gprof enabled $gprof"
1228 echo "zlib enabled $zlib"
1229 echo "libgsm enabled $libgsm"
1230 echo "mp3lame enabled $mp3lame"
1231 echo "libogg enabled $libogg"
1232 echo "Vorbis enabled $vorbis"
1233 echo "Theora enabled $theora"
1234 echo "FAAD enabled $faad"
1235 echo "faadbin enabled $faadbin"
1236 echo "FAAC enabled $faac"
1237 echo "XviD enabled $xvid"
1238 echo "x264 enabled $x264"
1239 echo "a52 support $a52"
1240 echo "a52 dlopened $a52bin"
1241 echo "DTS support $dts"
1242 echo "pp support $pp"
1243 echo "debug symbols $debug"
1244 echo "strip symbols $dostrip"
1245 echo "optimize $optimize"
1246 echo "shared pp $shared_pp"
1247 echo "video hooking $vhook"
1248 echo "SDL support $sdl"
1249 if test $sdl_too_old = "yes"; then
1250 echo "-> Your SDL version is too old - please upgrade to have FFplay/SDL support."
1253 if test "$vhook" = "yes" ; then
1254 echo "Imlib2 support $imlib2"
1255 echo "FreeType support $freetype2"
1257 echo "Sun medialib support" $sunmlib
1258 echo "pthreads support" $pthreads
1259 echo "AMR-NB float support" $amr_nb
1260 echo "AMR-NB fixed support" $amr_nb_fixed
1261 echo "AMR-WB float support" $amr_wb
1262 echo "AMR-WB IF2 support" $amr_if2
1263 echo "network support $network"
1264 if test "$network" = "yes" ; then
1265 echo "IPv6 support $ipv6"
1267 if test "$gpl" = "no" ; then
1268 echo "License: LGPL"
1273 echo "Creating config.mak and config.h..."
1276 echo " $0 $FFMPEG_CONFIGURATION" >> config.log
1277 echo "# Automatically generated by configure - do not modify!" > config.mak
1278 echo "/* Automatically generated by configure - do not modify! */" > $TMPH
1279 echo "#define FFMPEG_CONFIGURATION "'"'"$FFMPEG_CONFIGURATION"'"' >> $TMPH
1281 echo "prefix=\$(DESTDIR)$prefix" >> config.mak
1282 echo "libdir=\$(DESTDIR)$libdir" >> config.mak
1283 echo "bindir=\$(DESTDIR)$bindir" >> config.mak
1284 echo "mandir=\$(DESTDIR)$mandir" >> config.mak
1285 echo "MAKE=$make" >> config.mak
1286 echo "CC=$cc" >> config.mak
1287 echo "AR=$ar" >> config.mak
1288 echo "RANLIB=$ranlib" >> config.mak
1289 if test "$dostrip" = "yes" ; then
1290 echo "STRIP=$strip" >> config.mak
1291 echo "INSTALLSTRIP=$installstrip" >> config.mak
1293 echo "STRIP=echo ignoring strip" >> config.mak
1294 echo "INSTALLSTRIP=" >> config.mak
1297 # SHCFLAGS is a copy of CFLAGS without -mdynamic-no-pic, used when building
1298 # shared modules on OS/X (vhook/Makefile).
1300 if test "$needmdynamicnopic" = yes; then
1301 CFLAGS
="$CFLAGS -mdynamic-no-pic"
1304 echo "OPTFLAGS=$CFLAGS" >> config.mak
1305 echo "SHCFLAGS=$SHCFLAGS">>config.mak
1306 echo "LDFLAGS=$LDFLAGS" >> config.mak
1307 echo "LDCONFIG=$LDCONFIG" >> config.mak
1308 echo "FFSLDFLAGS=$FFSLDFLAGS" >> config.mak
1309 echo "SHFLAGS=$SHFLAGS" >> config.mak
1310 echo "LIBOBJFLAGS=$LIBOBJFLAGS" >> config.mak
1311 echo "BUILDSUF=$BUILDSUF" >> config.mak
1312 echo "LIBPREF=$LIBPREF" >> config.mak
1313 echo "LIBSUF=\${BUILDSUF}$LIBSUF" >> config.mak
1314 echo "SLIBPREF=$SLIBPREF" >> config.mak
1315 echo "SLIBSUF=\${BUILDSUF}$SLIBSUF" >> config.mak
1316 echo "EXESUF=\${BUILDSUF}$EXESUF" >> config.mak
1317 echo "TARGET_OS=$TARGET_OS" >> config.mak
1318 if test "$cpu" = "x86" ; then
1319 echo "TARGET_ARCH_X86=yes" >> config.mak
1320 echo "#define ARCH_X86 1" >> $TMPH
1321 elif test "$cpu" = "x86_64" ; then
1322 echo "TARGET_ARCH_X86_64=yes" >> config.mak
1323 echo "#define ARCH_X86_64 1" >> $TMPH
1324 elif test "$cpu" = "armv4l" ; then
1325 echo "TARGET_ARCH_ARMV4L=yes" >> config.mak
1326 echo "#define ARCH_ARMV4L 1" >> $TMPH
1327 elif test "$cpu" = "alpha" ; then
1328 echo "TARGET_ARCH_ALPHA=yes" >> config.mak
1329 echo "#define ARCH_ALPHA 1" >> $TMPH
1330 elif test "$cpu" = "sparc64" ; then
1331 echo "TARGET_ARCH_SPARC64=yes" >> config.mak
1332 echo "#define ARCH_SPARC64 1" >> $TMPH
1333 echo "TARGET_ARCH_SPARC=yes" >> config.mak
1334 echo "#define ARCH_SPARC 1" >> $TMPH
1335 elif test "$cpu" = "sparc" ; then
1336 echo "TARGET_ARCH_SPARC=yes" >> config.mak
1337 echo "#define ARCH_SPARC 1" >> $TMPH
1338 elif test "$cpu" = "powerpc" ; then
1339 echo "TARGET_ARCH_POWERPC=yes" >> config.mak
1340 echo "#define ARCH_POWERPC 1" >> $TMPH
1341 if test $POWERPCMODE = "32bits"; then
1342 echo "#define POWERPC_MODE_32BITS 1" >> $TMPH
1344 echo "#define POWERPC_MODE_64BITS 1" >> $TMPH
1346 if test "$powerpc_perf" = "yes"; then
1347 echo "#define POWERPC_PERFORMANCE_REPORT 1" >> $TMPH
1349 elif test "$cpu" = "mips" ; then
1350 echo "TARGET_ARCH_MIPS=yes" >> config.mak
1351 echo "#define ARCH_MIPS 1" >> $TMPH
1352 elif test "$cpu" = "sh4" ; then
1353 echo "TARGET_ARCH_SH4=yes" >> config.mak
1354 echo "#define ARCH_SH4 1" >> $TMPH
1355 elif test "$cpu" = "parisc" ; then
1356 echo "TARGET_ARCH_PARISC=yes" >> config.mak
1357 echo "#define ARCH_PARISC 1" >> $TMPH
1358 elif test "$cpu" = "s390" ; then
1359 echo "TARGET_ARCH_S390=yes" >> config.mak
1360 echo "#define ARCH_S390 1" >> $TMPH
1361 elif test "$cpu" = "m68k" ; then
1362 echo "TARGET_ARCH_M68K=yes" >> config.mak
1363 echo "#define ARCH_M68K 1" >> $TMPH
1364 elif test "$cpu" = "ia64" ; then
1365 echo "TARGET_ARCH_IA64=yes" >> config.mak
1366 echo "#define ARCH_IA64 1" >> $TMPH
1368 echo "#define TUNECPU $TUNECPU" >> $TMPH
1369 if test "$bigendian" = "yes" ; then
1370 echo "WORDS_BIGENDIAN=yes" >> config.mak
1371 echo "#define WORDS_BIGENDIAN 1" >> $TMPH
1373 if test "$inttypes" != "yes" ; then
1374 echo "#define EMULATE_INTTYPES 1" >> $TMPH
1376 if test "$emu_fast_int" = "yes" ; then
1377 echo "#define EMULATE_FAST_INT 1" >> $TMPH
1379 if test "$mmx" = "yes" ; then
1380 echo "TARGET_MMX=yes" >> config.mak
1381 echo "#define HAVE_MMX 1" >> $TMPH
1382 echo "#define __CPU__ 586" >> $TMPH
1384 if test "$builtin_vector" = "yes" ; then
1385 echo "TARGET_BUILTIN_VECTOR=yes" >> config.mak
1386 echo "#define HAVE_BUILTIN_VECTOR 1" >> $TMPH
1388 if test "$iwmmxt" = "yes" ; then
1389 echo "TARGET_IWMMXT=yes" >> config.mak
1390 echo "#define HAVE_IWMMXT 1" >> $TMPH
1392 if test "$mmi" = "yes" ; then
1393 echo "TARGET_MMI=yes" >> config.mak
1394 echo "#define HAVE_MMI 1" >> $TMPH
1396 if test "$altivec" = "yes" ; then
1397 echo "TARGET_ALTIVEC=yes" >> config.mak
1398 echo "#define HAVE_ALTIVEC 1" >> $TMPH
1399 echo "// Enable the next line to use the reference C code instead of AltiVec" >> $TMPH
1400 echo "// #define ALTIVEC_USE_REFERENCE_C_CODE 1" >> $TMPH
1401 if test "$_altivec_h" = "yes" ; then
1402 echo "#define HAVE_ALTIVEC_H 1" >> $TMPH
1404 echo "#undef HAVE_ALTIVEC_H" >> $TMPH
1407 if test "$gprof" = "yes" ; then
1408 echo "TARGET_GPROF=yes" >> config.mak
1409 echo "#define HAVE_GPROF 1" >> $TMPH
1411 if test "$localtime_r" = "yes" ; then
1412 echo "#define HAVE_LOCALTIME_R 1" >> $TMPH
1414 if test "$imlib2" = "yes" ; then
1415 echo "HAVE_IMLIB2=yes" >> config.mak
1417 if test "$freetype2" = "yes" ; then
1418 echo "HAVE_FREETYPE2=yes" >> config.mak
1420 if test "$sunmlib" = "yes" ; then
1421 echo "HAVE_MLIB=yes" >> config.mak
1422 echo "#define HAVE_MLIB 1" >> $TMPH
1423 extralibs
="$extralibs -lmlib"
1425 if test "$pthreads" = "yes" ; then
1426 echo "HAVE_PTHREADS=yes" >> config.mak
1427 echo "#define HAVE_PTHREADS 1" >> $TMPH
1428 echo "#define HAVE_THREADS 1" >> $TMPH
1429 if test $targetos != FreeBSD
-a
$targetos != OpenBSD
; then
1430 extralibs
="$extralibs -lpthread"
1433 if test "$sdl" = "yes" ; then
1434 echo "CONFIG_SDL=yes" >> config.mak
1435 echo "SDL_LIBS=`sdl-config --libs`" >> config.mak
1436 echo "SDL_CFLAGS=`sdl-config --cflags`" >> config.mak
1438 if test "$texi2html" = "yes"; then
1439 echo "BUILD_DOC=yes" >> config.mak
1441 if test "$have_lrintf" = "yes" ; then
1442 echo "#define HAVE_LRINTF 1" >> $TMPH
1444 if test "$vhook" = "yes" ; then
1445 echo "BUILD_VHOOK=yes" >> config.mak
1446 echo "#define HAVE_VHOOK 1" >> $TMPH
1448 if test "$lshared" = "yes" ; then
1449 echo "BUILD_SHARED=yes" >> config.mak
1450 echo "PIC=-fPIC -DPIC" >> config.mak
1451 echo "SPPMAJOR=0" >> config.mak
1452 echo "SPPVERSION=0.0.1" >> config.mak
1454 echo "EXTRALIBS=$extralibs" >> config.mak
1455 version
=`grep '#define FFMPEG_VERSION ' "$source_path/libavcodec/avcodec.h" |
1457 echo "VERSION=$version" >>config.mak
1458 # If you do not want to use encoders, disable them.
1459 echo "#define CONFIG_ENCODERS 1" >> $TMPH
1460 echo "CONFIG_ENCODERS=yes" >> config.mak
1462 # If you do not want to use decoders, disable them.
1463 echo "#define CONFIG_DECODERS 1" >> $TMPH
1464 echo "CONFIG_DECODERS=yes" >> config.mak
1467 if test "$muxers" = "yes" ; then
1468 echo "#define CONFIG_MUXERS 1" >> $TMPH
1469 echo "CONFIG_MUXERS=yes" >> config.mak
1473 if test "$demuxers" = "yes" ; then
1474 echo "#define CONFIG_DEMUXERS 1" >> $TMPH
1475 echo "CONFIG_DEMUXERS=yes" >> config.mak
1479 if test "$a52" = "yes" ; then
1480 echo "#define CONFIG_AC3 1" >> $TMPH
1481 echo "CONFIG_AC3=yes" >> config.mak
1483 if test "$a52bin" = "yes" ; then
1484 echo "#define CONFIG_A52BIN 1" >> $TMPH
1485 echo "CONFIG_A52BIN=yes" >> config.mak
1490 if test "$dts" = "yes" ; then
1491 echo "#define CONFIG_DTS 1" >> $TMPH
1492 echo "CONFIG_DTS=yes" >> config.mak
1496 if test "$pp" = "yes" ; then
1497 echo "#define CONFIG_PP 1" >> $TMPH
1498 echo "CONFIG_PP=yes" >> config.mak
1500 if test "$shared_pp" = "yes" ; then
1501 echo "#define SHARED_PP 1" >> $TMPH
1502 echo "SHARED_PP=yes" >> config.mak
1506 # MPEG audio high precision mode
1507 if test "$mpegaudio_hp" = "yes" ; then
1508 echo "#define CONFIG_MPEGAUDIO_HP 1" >> $TMPH
1511 if test "$v4l" = "yes" ; then
1512 echo "#define CONFIG_VIDEO4LINUX 1" >> $TMPH
1513 echo "CONFIG_VIDEO4LINUX=yes" >> config.mak
1516 if test "$bktr" = "yes" ; then
1517 echo "#define CONFIG_BKTR 1" >> $TMPH
1518 echo "CONFIG_BKTR=yes" >> config.mak
1521 if test "$dv1394" = "yes" ; then
1522 echo "#define CONFIG_DV1394 1" >> $TMPH
1523 echo "CONFIG_DV1394=yes" >> config.mak
1526 if test "$dc1394" = "yes" ; then
1527 echo "#define CONFIG_DC1394 1" >> $TMPH
1528 echo "CONFIG_DC1394=yes" >> config.mak
1531 if test "$dlopen" = "yes" ; then
1532 echo "#define CONFIG_HAVE_DLOPEN 1" >> $TMPH
1535 if test "$dlfcn" = "yes" ; then
1536 echo "#define CONFIG_HAVE_DLFCN 1" >> $TMPH
1539 if test "$audio_oss" = "yes" ; then
1540 echo "#define CONFIG_AUDIO_OSS 1" >> $TMPH
1541 echo "CONFIG_AUDIO_OSS=yes" >> config.mak
1544 if test "$audio_beos" = "yes" ; then
1545 echo "#define CONFIG_AUDIO_BEOS 1" >> $TMPH
1546 echo "CONFIG_AUDIO_BEOS=yes" >> config.mak
1549 if test "$network" = "yes" ; then
1550 echo "#define CONFIG_NETWORK 1" >> $TMPH
1551 echo "CONFIG_NETWORK=yes" >> config.mak
1554 if test "$ipv6" = "yes" ; then
1555 echo "#define CONFIG_IPV6 1" >> $TMPH
1558 if test "$zlib" = "yes" ; then
1559 echo "#define CONFIG_ZLIB 1" >> $TMPH
1560 echo "CONFIG_ZLIB=yes" >> config.mak
1563 if test "$libgsm" = "yes" ; then
1564 echo "#define CONFIG_LIBGSM 1" >> $TMPH
1565 echo "CONFIG_LIBGSM=yes" >> config.mak
1568 if test "$mp3lame" = "yes" ; then
1569 echo "#define CONFIG_MP3LAME 1" >> $TMPH
1570 echo "CONFIG_MP3LAME=yes" >> config.mak
1573 if test "$libogg" = "yes" ; then
1574 echo "#define CONFIG_LIBOGG 1" >> $TMPH
1575 echo "CONFIG_LIBOGG=yes" >> config.mak
1578 if test "$vorbis" = "yes" ; then
1579 echo "#define CONFIG_LIBVORBIS 1" >> $TMPH
1580 echo "CONFIG_LIBVORBIS=yes" >> config.mak
1583 if test "$theora" = "yes" ; then
1584 echo "#define CONFIG_LIBTHEORA 1" >> $TMPH
1585 echo "CONFIG_LIBTHEORA=yes" >> config.mak
1588 if test "$faad" = "yes" ; then
1589 echo "#define CONFIG_FAAD 1" >> $TMPH
1590 echo "CONFIG_FAAD=yes" >> config.mak
1593 if test "$faadbin" = "yes" ; then
1594 echo "#define CONFIG_FAADBIN 1" >> $TMPH
1595 echo "CONFIG_FAADBIN=yes" >> config.mak
1598 if test "$faac" = "yes" ; then
1599 echo "#define CONFIG_FAAC 1" >> $TMPH
1600 echo "CONFIG_FAAC=yes" >> config.mak
1603 if test "$xvid" = "yes" ; then
1604 echo "#define CONFIG_XVID 1" >> $TMPH
1605 echo "CONFIG_XVID=yes" >> config.mak
1608 if test "$x264" = "yes" ; then
1609 echo "#define CONFIG_X264 1" >> $TMPH
1610 echo "CONFIG_X264=yes" >> config.mak
1613 if test "$mingw32" = "yes" ; then
1614 echo "#define CONFIG_WIN32 1" >> $TMPH
1615 echo "CONFIG_WIN32=yes" >> config.mak
1616 echo "HAVE_W32THREADS=yes" >> config.mak
1617 echo "#define HAVE_W32THREADS 1" >> $TMPH
1618 echo "#define HAVE_THREADS 1" >> $TMPH
1619 echo "#ifndef __MINGW32__" >> $TMPH
1620 echo "#define __MINGW32__ 1" >> $TMPH
1621 echo "#endif" >> $TMPH
1624 if test "$os2" = "yes" ; then
1625 echo "#define CONFIG_OS2 1" >> $TMPH
1626 echo "CONFIG_OS2=yes" >> config.mak
1629 if test "$TARGET_OS" = "SunOS" ; then
1630 echo "#define CONFIG_SUNOS 1" >> $TMPH
1633 if test "$TARGET_OS" = "BeOS" ; then
1634 echo "HAVE_BEOSTHREADS=yes" >> config.mak
1635 echo "#define HAVE_BEOSTHREADS 1" >> $TMPH
1636 echo "#define HAVE_THREADS 1" >> $TMPH
1639 if test "$darwin" = "yes"; then
1640 echo "#define CONFIG_DARWIN 1" >> $TMPH
1641 echo "CONFIG_DARWIN=yes" >> config.mak
1644 if test "$_malloc_h" = "yes" ; then
1645 echo "#define HAVE_MALLOC_H 1" >> $TMPH
1647 echo "#undef HAVE_MALLOC_H" >> $TMPH
1650 if test "$_memalign" = "yes" ; then
1651 echo "#define HAVE_MEMALIGN 1" >> $TMPH
1653 echo "#undef HAVE_MEMALIGN" >> $TMPH
1656 if test "$memalignhack" = "yes" ; then
1657 echo "#define MEMALIGN_HACK 1" >> $TMPH
1661 if test "$netserver" = "yes" ; then
1662 echo "#define CONFIG_BEOS_NETSERVER 1" >> $TMPH
1663 echo "CONFIG_BEOS_NETSERVER=yes" >> config.mak
1666 if test "$need_inet_aton" = "yes" ; then
1667 echo "NEED_INET_ATON=yes" >> config.mak
1670 if test "$simpleidct" = "yes" ; then
1671 echo "#define SIMPLE_IDCT 1" >> $TMPH
1674 if test "$ffserver" = "yes" ; then
1675 echo "#define CONFIG_FFSERVER 1" >> $TMPH
1676 echo "CONFIG_FFSERVER=yes" >> config.mak
1679 if test "$ffplay" = "yes" ; then
1680 echo "CONFIG_FFPLAY=yes" >> config.mak
1683 if test "$gpl" = "yes" ; then
1684 echo "#define CONFIG_GPL 1" >> $TMPH
1685 echo "CONFIG_GPL=yes" >> config.mak
1688 echo "#define restrict $_restrict" >> $TMPH
1690 if test "$optimize" = "small"; then
1691 echo "#define always_inline" >> $TMPH
1694 # build tree in object directory if source path is different from current one
1695 if test "$source_path_used" = "yes" ; then
1707 libavcodec/libpostproc \
1714 libavformat/Makefile \
1715 libavcodec/Makefile \
1716 libavcodec/libpostproc/Makefile \
1717 libavutil/Makefile \
1723 for dir
in $DIRS ; do
1726 for f
in $FILES ; do
1727 ln -sf
"$source_path/$f" $f
1729 echo "SRC_PATH=$source_path" >> config.mak
1731 echo "SRC_PATH='$source_path'" >> config.mak
1734 if test "$amr_wb" = "yes" ; then
1735 echo "#define AMR_WB 1" >> $TMPH
1736 echo "AMR_WB=yes" >> config.mak
1738 echo "AMR WB FLOAT NOTICE ! Make sure you have downloaded TS26.204"
1740 echo "http://www.3gpp.org/ftp/Specs/archive/26_series/26.204/26204-510.zip"
1741 echo "and extracted the source to libavcodec/amrwb_float"
1745 if test "$amr_nb" = "yes" ; then
1746 echo "#define AMR_NB 1" >> $TMPH
1747 echo "AMR_NB=yes" >> config.mak
1749 if test "$amr_nb_fixed" = "yes" ; then
1750 echo "AMR_NB_FIXED=yes" >> config.mak
1751 echo "#define AMR_NB_FIXED 1" >> $TMPH
1752 echo "AMR NB FIXED POINT NOTICE! Make sure you have downloaded TS26.073 "
1753 echo "REL-5 version 5.1.0 from "
1754 echo "http://www.3gpp.org/ftp/Specs/latest/Rel-5/26_series/26073-5??.zip"
1755 echo "and extracted src to libavcodec/amr"
1756 echo "You must also add -DMMS_IO and remove -pedantic-errors to/from CFLAGS in libavcodec/amr/makefile."
1757 echo "i.e. CFLAGS = -Wall -I. \$(CFLAGS_\$(MODE)) -D\$(VAD) -DMMS_IO"
1760 echo "AMR NB FLOAT NOTICE ! Make sure you have downloaded TS26.104"
1761 echo "REL-5 V5.1.0 from "
1762 echo "http://www.3gpp.org/ftp/Specs/latest/Rel-5/26_series/26104-5??.zip"
1763 echo "and extracted the source to libavcodec/amr_float"
1764 echo "and if u try this on an alpha, u may need to change Word32 to int in amr/typedef.h"
1768 if test "$amr_if2" = "yes" ; then
1769 echo "AMR_CFLAGS=-DIF2=1" >> config.mak
1774 for codec
in $CODEC_LIST ; do
1775 echo "#define CONFIG_`echo $codec | tr a-z A-Z` 1" >> $TMPH
1776 echo "CONFIG_`echo $codec | tr a-z A-Z`=yes" >> config.mak
1779 diff $TMPH config.h
>/dev
/null
2>&1
1780 if test $?
-ne
0 ; then
1781 mv -f
$TMPH config.h
1783 echo "config.h is unchanged"
1786 rm -f
$TMPO $TMPC $TMPE $TMPS $TMPH
1789 # build pkg-config files libav*.pc and libpostproc.pc
1790 lavc_version
=`grep '#define LIBAVCODEC_VERSION ' "$source_path/libavcodec/avcodec.h" | sed 's/[^0-9\.]//g'`
1791 lavf_version
=`grep '#define LIBAVFORMAT_VERSION ' "$source_path/libavformat/avformat.h" | sed 's/[^0-9\.]//g'`
1792 lavu_version
=`grep '#define LIBAVUTIL_VERSION ' "$source_path/libavutil/avutil.h" | sed 's/[^0-9\.]//g'`
1795 cat <<EOF >libavutil.pc
1797 exec_prefix=\${prefix}
1798 libdir=\${exec_prefix}/lib
1799 includedir=\${prefix}/include
1802 Description: FFmpeg utility library
1803 Version: $lavu_version
1806 Libs: -L\${libdir} -lavutil
1807 Cflags: -I\${includedir} -I\${includedir}/ffmpeg
1810 cat <<EOF >libavutil-uninstalled.pc
1813 libdir=\${pcfiledir}/libavutil
1814 includedir=\${pcfiledir}/libavutil
1817 Description: FFmpeg utility library
1818 Version: $lavu_version
1821 Libs: \${libdir}/${LIBPREF}avutil${LIBSUF}
1822 Cflags: -I\${includedir}
1826 cat <<EOF >libavcodec.pc
1828 exec_prefix=\${prefix}
1829 libdir=\${exec_prefix}/lib
1830 includedir=\${prefix}/include
1833 Description: FFmpeg codec library
1834 Version: $lavc_version
1835 Requires: $pkg_requires libavutil = $lavu_version
1837 Libs: -L\${libdir} -lavcodec $extralibs
1838 Cflags: -I\${includedir} -I\${includedir}/ffmpeg
1841 cat <<EOF >libavcodec-uninstalled.pc
1844 libdir=\${pcfiledir}/libavcodec
1845 includedir=\${pcfiledir}/libavcodec
1848 Description: FFmpeg codec library
1849 Version: $lavc_version
1850 Requires: $pkg_requires libavutil = $lavu_version
1852 Libs: \${libdir}/${LIBPREF}avcodec${LIBSUF} $extralibs
1853 Cflags: -I\${includedir}
1857 cat <<EOF >libavformat.pc
1859 exec_prefix=\${prefix}
1860 libdir=\${exec_prefix}/lib
1861 includedir=\${prefix}/include
1864 Description: FFmpeg container format library
1865 Version: $lavf_version
1866 Requires: $pkg_requires libavcodec = $lavc_version
1868 Libs: -L\${libdir} -lavformat $extralibs
1869 Cflags: -I\${includedir} -I\${includedir}/ffmpeg
1872 cat <<EOF >libavformat-uninstalled.pc
1875 libdir=\${pcfiledir}/libavformat
1876 includedir=\${pcfiledir}/libavformat
1879 Description: FFmpeg container format library
1880 Version: $lavf_version
1881 Requires: $pkg_requires libavcodec = $lavc_version
1883 Libs: \${libdir}/${LIBPREF}avformat${LIBSUF} $extralibs
1884 Cflags: -I\${includedir}
1889 cat <<EOF >libpostproc.pc
1891 exec_prefix=\${prefix}
1892 libdir=\${exec_prefix}/lib
1893 includedir=\${prefix}/include
1896 Description: FFmpeg post processing library
1897 Version: $lavc_version
1900 Libs: -L\${libdir} -lpostproc
1901 Cflags: -I\${includedir} -I\${includedir}/postproc
1904 cat <<EOF >libpostproc-uninstalled.pc
1907 libdir=\${pcfiledir}/libavcodec/libpostproc
1908 includedir=\${pcfiledir}/libavcodec/libpostproc
1911 Description: FFmpeg post processing library
1912 Version: $lavc_version
1915 Libs: \${libdir}/${LIBPREF}postproc${LIBSUF}
1916 Cflags: -I\${includedir}