]> git.sesse.net Git - ffmpeg/blob - configure
Fix detection of IPv6 support on Darwin by ensuring that
[ffmpeg] / configure
1 #!/bin/sh
2 #
3 # ffmpeg configure script (c) 2000, 2001, 2002 Fabrice Bellard
4 #
5
6 if test x"$1" = x"-h" -o x"$1" = x"--help" ; then
7 cat << EOF
8
9 Usage: configure [options]
10 Options: [defaults in brackets after descriptions]
11
12 EOF
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-mingwce         enable MinGW native/cross WinCE compile"
30 echo "  --enable-a52             enable GPLed A52 support [default=no]"
31 echo "  --enable-a52bin          open liba52.so.0 at runtime [default=no]"
32 echo "  --enable-dts             enable GPLed DTS support [default=no]"
33 echo "  --enable-pp              enable GPLed postprocessing support [default=no]"
34 echo "  --enable-static          build static libraries [default=yes]"
35 echo "  --disable-static         do not build static libraries [default=no]"
36 echo "  --enable-shared          build shared libraries [default=no]"
37 echo "  --disable-shared         do not build shared libraries [default=yes]"
38 echo "  --enable-amr_nb          enable amr_nb float audio codec"
39 echo "  --enable-amr_nb-fixed    use fixed point for amr-nb codec"
40 echo "  --enable-amr_wb          enable amr_wb float audio codec"
41 echo "  --enable-amr_if2         enable amr_wb IF2 audio codec"
42 echo "  --enable-sunmlib         use Sun medialib [default=no]"
43 echo "  --enable-pthreads        use pthreads [default=no]"
44 echo "  --enable-dc1394          enable IIDC-1394 grabbing using libdc1394"
45 echo "                           and libraw1394 [default=no]"
46 echo "  --enable-gpl             allow use of GPL code, the resulting libav*"
47 echo "                           and ffmpeg will be under GPL [default=no]"
48 echo ""
49 echo "Advanced options (experts only):"
50 echo "  --source-path=PATH       path to source code [$source_path]"
51 echo "  --cross-prefix=PREFIX    use PREFIX for compilation tools [$cross_prefix]"
52 echo "  --cc=CC                  use C compiler CC [$cc]"
53 echo "  --make=MAKE              use specified make [$make]"
54 echo "  --extra-cflags=ECFLAGS   add ECFLAGS to CFLAGS [$CFLAGS]"
55 echo "  --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]"
56 echo "  --extra-libs=ELIBS       add ELIBS [$ELIBS]"
57 echo "  --build-suffix=SUFFIX    suffix for application specific build []"
58 echo "  --cpu=CPU                force cpu to CPU  [$cpu]"
59 echo "  --tune=CPU               tune code for a particular CPU"
60 echo "                           (may fail or perform badly on other CPUs)"
61 echo "  --powerpc-perf-enable    enable performance report on PPC"
62 echo "                           (requires enabling PMC)"
63 echo "  --disable-mmx            disable MMX usage"
64 echo "  --disable-iwmmxt         disable iwmmxt usage"
65 echo "  --disable-altivec        disable AltiVec usage"
66 echo "  --disable-audio-oss      disable OSS audio support [default=no]"
67 echo "  --disable-audio-beos     disable BeOS audio support [default=no]"
68 echo "  --disable-v4l            disable video4linux grabbing [default=no]"
69 echo "  --disable-v4l2           disable video4linux2 grabbing [default=no]"
70 echo "  --disable-bktr           disable bktr video grabbing [default=no]"
71 echo "  --disable-dv1394         disable DV1394 grabbing [default=no]"
72 echo "  --disable-network        disable network support [default=no]"
73 echo "  --disable-zlib           disable zlib [default=no]"
74 echo "  --disable-lzo            disable lzo [default=no]"
75 echo "  --disable-simple_idct    disable simple IDCT routines [default=no]"
76 echo "  --disable-vhook          disable video hooking support"
77 echo "  --enable-gprof           enable profiling with gprof [$gprof]"
78 echo "  --disable-debug          disable debugging symbols"
79 echo "  --disable-opts           disable compiler optimizations"
80 echo "  --disable-mpegaudio-hp   faster (but less accurate)"
81 echo "                           MPEG audio decoding [default=no]"
82 echo "  --disable-protocols      disable I/O protocols support [default=no]"
83 echo "  --disable-ffserver       disable ffserver build"
84 echo "  --disable-ffplay         disable ffplay build"
85 echo "  --enable-small           optimize for size instead of speed"
86 echo "  --enable-memalign-hack   emulate memalign, interferes with memory debuggers"
87 echo "  --disable-strip          disable stripping of executables and shared libraries"
88 echo "  --disable-encoder=NAME   disables encoder NAME"
89 echo "  --enable-encoder=NAME    enables encoder NAME"
90 echo "  --disable-decoder=NAME   disables decoder NAME"
91 echo "  --enable-decoder=NAME    enables decoder NAME"
92 echo "  --disable-encoders       disables all encoders"
93 echo "  --disable-decoders       disables all decoders"
94 echo "  --disable-muxers         disables all muxers"
95 echo "  --disable-demuxers       disables all demuxers"
96 echo ""
97 echo "NOTE: Object files are built at the place where configure is launched."
98 exit 1
99 fi
100
101 # set temporary file name
102 if test ! -z "$TMPDIR" ; then
103     TMPDIR1="${TMPDIR}"
104 elif test ! -z "$TEMPDIR" ; then
105     TMPDIR1="${TEMPDIR}"
106 else
107     TMPDIR1="/tmp"
108 fi
109
110 TMPC="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.c"
111 TMPO="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.o"
112 TMPE="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}"
113 TMPS="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.S"
114 TMPH="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.h"
115
116 # default parameters
117 prefix="/usr/local"
118 libdir=""
119 mandir=""
120 bindir=""
121 cross_prefix=""
122 cc="gcc"
123 ar="ar"
124 ranlib="ranlib"
125 make="make"
126 strip="strip"
127 cpu=`uname -m`
128 tune="generic"
129 powerpc_perf="no"
130 mmx="default"
131 iwmmxt="default"
132 altivec="default"
133 mmi="default"
134 case "$cpu" in
135   i386|i486|i586|i686|i86pc|BePC)
136     cpu="x86"
137   ;;
138   x86_64|amd64)
139     cpu="x86"
140     canon_arch="`cc -dumpmachine | sed -e 's,\([^-]*\)-.*,\1,'`"
141     if [ x"$canon_arch" = x"x86_64" -o x"$canon_arch" = x"amd64" ]; then
142       if [ -z "`echo $CFLAGS | grep -- -m32`"  ]; then
143         cpu="x86_64"
144       fi
145     fi
146   ;;
147   # armv4l is a subset of armv5tel
148   armv4l|armv5tel)
149     cpu="armv4l"
150   ;;
151   alpha)
152     cpu="alpha"
153   ;;
154   "Power Macintosh"|ppc|powerpc)
155     cpu="powerpc"
156   ;;
157   mips|mipsel)
158     cpu="mips"
159   ;;
160   sun4u|sparc64)
161     cpu="sparc64"
162   ;;
163   sparc)
164     cpu="sparc"
165   ;;
166   sh4)
167     cpu="sh4"
168   ;;
169   parisc|parisc64)
170     cpu="parisc"
171   ;;
172   s390|s390x)
173     cpu="s390"
174   ;;
175   m68k)
176     cpu="m68k"
177   ;;
178   ia64)
179     cpu="ia64"
180   ;;
181   *)
182     cpu="unknown"
183   ;;
184 esac
185 gprof="no"
186 v4l="yes"
187 v4l2="yes"
188 bktr="no"
189 audio_oss="yes"
190 audio_beos="no"
191 dv1394="yes"
192 dc1394="no"
193 network="yes"
194 zlib="yes"
195 lzo="yes"
196 libgsm="no"
197 mp3lame="no"
198 libogg="no"
199 vorbis="no"
200 theora="no"
201 faad="no"
202 faadbin="no"
203 faac="no"
204 xvid="no"
205 x264="no"
206 a52="no"
207 a52bin="no"
208 dts="no"
209 pp="no"
210 mingw32="no"
211 mingwce="no"
212 cygwin="no"
213 os2="no"
214 lstatic="yes"
215 lshared="no"
216 optimize="yes"
217 debug="yes"
218 dostrip="yes"
219 installstrip="-s"
220 extralibs="-lm"
221 simpleidct="yes"
222 bigendian="no"
223 inttypes="yes"
224 emu_fast_int="no"
225 vhook="default"
226 dlfcn="no"
227 dlopen="no"
228 mpegaudio_hp="yes"
229 SHFLAGS='-shared -Wl,-soname,$@.$(LIBMAJOR)'
230 netserver="no"
231 need_inet_aton="no"
232 protocols="yes"
233 ffserver="yes"
234 ffplay="yes"
235 LIBOBJFLAGS=""
236 LDFLAGS=-Wl,--warn-common
237 FFSLDFLAGS=-Wl,-E
238 LDCONFIG="ldconfig"
239 LIBPREF="lib"
240 LIBSUF=".a"
241 LIB='$(LIBPREF)$(NAME)$(LIBSUF)'
242 SLIBPREF="lib"
243 SLIBSUF=".so"
244 SLIBNAME='$(SLIBPREF)$(NAME)$(SLIBSUF)'
245 SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)$(SLIBSUF).$(LIBVERSION)'
246 SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(NAME)$(SLIBSUF).$(LIBMAJOR)'
247 EXESUF=""
248 BUILDSUF=""
249 amr_nb="no"
250 amr_wb="no"
251 amr_nb_fixed="no"
252 amr_if2="no"
253 sunmlib="no"
254 pthreads="no"
255 gpl="no"
256 memalignhack="no"
257 muxers="yes"
258 demuxers="yes"
259
260 # OS specific
261 targetos=`uname -s`
262 case $targetos in
263 BeOS)
264 prefix="/boot/home/config"
265 # helps building libavcodec
266 CFLAGS="-DPIC -fomit-frame-pointer"
267 # 3 gcc releases known for BeOS, each with ugly bugs
268 gcc_version="`$cc -v 2>&1 | grep version | cut -d ' ' -f3-`"
269 case "$gcc_version" in
270 2.9-beos-991026*|2.9-beos-000224*) echo "R5/GG gcc"
271 mmx="no"
272 ;;
273 *20010315*) echo "BeBits gcc"
274 CFLAGS="$CFLAGS -fno-expensive-optimizations"
275 ;;
276 esac
277 SHFLAGS=-nostart
278 # disable Linux things
279 audio_oss="no"
280 v4l="no"
281 v4l2="no"
282 dv1394="no"
283 # enable BeOS things
284 audio_beos="yes"
285 # no need for libm, but the inet stuff
286 # Check for BONE
287 if (echo $BEINCLUDES|grep 'headers/be/bone' >/dev/null); then
288 extralibs="-lbind -lsocket"
289 else
290 netserver="yes"
291 need_inet_aton="yes"
292 extralibs="-lnet"
293 fi ;;
294 SunOS)
295 v4l="no"
296 v4l2="no"
297 audio_oss="no"
298 dv1394="no"
299 make="gmake"
300 LDFLAGS=""
301 FFSLDFLAGS=""
302 need_inet_aton="yes"
303 extralibs="$extralibs -lsocket -lnsl"
304 ;;
305 NetBSD)
306 v4l="no"
307 v4l2="no"
308 bktr="yes"
309 audio_oss="yes"
310 dv1394="no"
311 make="gmake"
312 LDFLAGS="$LDFLAGS -export-dynamic"
313 case `uname -r` in
314 2.*) extralibs="$extralibs -lossaudio"
315 ;;
316 esac
317 ;;
318 OpenBSD)
319 v4l="no"
320 v4l2="no"
321 bktr="yes"
322 audio_oss="yes"
323 dv1394="no"
324 make="gmake"
325 LIBOBJFLAGS="\$(PIC)"
326 LDFLAGS="$LDFLAGS -export-dynamic -pthread"
327 LDCONFIG="ldconfig -m \$(libdir)"
328 extralibs="$extralibs -lossaudio"
329 ;;
330 FreeBSD)
331 v4l="no"
332 v4l2="no"
333 bktr="yes"
334 audio_oss="yes"
335 dv1394="no"
336 make="gmake"
337 CFLAGS="-pthread"
338 LDFLAGS="$LDFLAGS -export-dynamic -pthread"
339 ;;
340 BSD/OS)
341 v4l="no"
342 v4l2="no"
343 bktr="yes"
344 audio_oss="yes"
345 dv1394="no"
346 extralibs="-lpoll -lgnugetopt -lm"
347 make="gmake"
348 strip="strip -d"
349 installstrip=""
350 ;;
351 Darwin)
352 cc="cc"
353 v4l="no"
354 v4l2="no"
355 audio_oss="no"
356 dv1394="no"
357 ffserver="no"
358 SHFLAGS="-dynamiclib -Wl,-single_module -Wl,-install_name,\$(libdir)/\$(SLIBNAME),-current_version,\$(SPPVERSION),-compatibility_version,\$(SPPVERSION)"
359 extralibs=""
360 darwin="yes"
361 strip="strip -x"
362 installstrip=""
363 LDFLAGS="-Wl,-dynamic,-search_paths_first"
364 SLIBSUF=".dylib"
365 SLIBNAME_WITH_FULLVERSION='$(SLIBPREF)$(NAME).$(LIBVERSION)$(SLIBSUF)'
366 SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(NAME).$(LIBMAJOR)$(SLIBSUF)'
367 FFSLDFLAGS=-Wl,-bind_at_load
368 ;;
369 MINGW32*)
370 # Note: the rest of the mingw32 config is done afterwards as mingw32
371 # can be forced on the command line for Linux cross compilation.
372 mingw32="yes"
373 ;;
374 CYGWIN*)
375 v4l="no"
376 v4l2="no"
377 audio_oss="yes"
378 dv1394="no"
379 vhook="no"
380 extralibs=""
381 cygwin="yes"
382 EXESUF=".exe"
383 ;;
384 Linux)
385 LDFLAGS="$LDFLAGS -rdynamic"
386 ;;
387 IRIX*)
388 ranlib="echo ignoring ranlib"
389 v4l="no"
390 v4l2="no"
391 audio_oss="no"
392 make="gmake"
393 ;;
394 OS/2)
395 TMPE=$TMPE".exe"
396 ar="emxomfar -p128"
397 ranlib="echo ignoring ranlib"
398 strip="echo ignoring strip"
399 CFLAGS="-Zomf"
400 LDFLAGS="-Zomf -Zstack 16384 -s"
401 SHFLAGS="-Zdll -Zomf"
402 FFSLDFLAGS=""
403 LIBPREF=""
404 LIBSUF=".lib"
405 SLIBPREF=""
406 SLIBSUF=".dll"
407 EXESUF=".exe"
408 extralibs=""
409 pkg_requires=""
410 v4l="no"
411 v4l2="no"
412 audio_oss="no"
413 dv1394="no"
414 ffserver="no"
415 vhook="no"
416 os2="yes"
417
418 ;;
419 *) ;;
420 esac
421
422 # From MPlayer configure. We need TARGET_OS available
423 # to the Makefile, so it can distinguish between flavors
424 # of AltiVec on PowerPC.
425 TARGET_OS=`( uname -s ) 2>&1`
426   case "$TARGET_OS" in
427   Linux|FreeBSD|NetBSD|BSD/OS|OpenBSD|SunOS|QNX|Darwin|GNU|BeOS|MorphOS)
428     ;;
429   IRIX*)
430     TARGET_OS=IRIX
431     ;;
432   HP-UX*)
433     TARGET_OS=HP-UX
434     ;;
435   [cC][yY][gG][wW][iI][nN]*)
436     TARGET_OS=CYGWIN
437     ;;
438   *)
439     TARGET_OS="$TARGET_OS-UNKNOWN"
440     ;;
441   esac
442
443 # find source path
444 source_path="`dirname $0`"
445 source_path_used="yes"
446 if test -z "$source_path" -o "$source_path" = "." ; then
447     source_path=`pwd`
448     source_path_used="no"
449 else
450     source_path="`cd \"$source_path\"; pwd`"
451 fi
452
453 FFMPEG_CONFIGURATION=" "
454 for opt do
455   FFMPEG_CONFIGURATION="$FFMPEG_CONFIGURATION""$opt "
456 done
457
458 CODEC_LIST=`grep 'register_avcodec(&[a-z]' $source_path/libavcodec/allcodecs.c  | sed 's/.*&\(.*\)).*/\1/'`
459
460 for opt do
461   case "$opt" in
462   --prefix=*) prefix=`echo $opt | cut -d '=' -f 2`; force_prefix=yes
463   ;;
464   --libdir=*) libdir=`echo $opt | cut -d '=' -f 2`; force_libdir=yes
465   ;;
466   --mandir=*) mandir=`echo $opt | cut -d '=' -f 2`
467   ;;
468   --source-path=*) source_path=`echo $opt | cut -d '=' -f 2`
469   ;;
470   --cross-prefix=*) cross_prefix=`echo $opt | cut -d '=' -f 2`
471   ;;
472   --cc=*) cc=`echo $opt | cut -d '=' -f 2-`
473   ;;
474   --make=*) make=`echo $opt | cut -d '=' -f 2`
475   ;;
476   --extra-cflags=*) CFLAGS="$CFLAGS ${opt#--extra-cflags=}"
477   ;;
478   --extra-ldflags=*) LDFLAGS="$LDFLAGS ${opt#--extra-ldflags=}"
479   ;;
480   --extra-libs=*) extralibs=${opt#--extra-libs=}
481   ;;
482   --build-suffix=*) BUILDSUF=${opt#--build-suffix=}
483   ;;
484   --cpu=*) cpu=`echo $opt | cut -d '=' -f 2`
485   ;;
486   --tune=*) tune=`echo $opt | cut -d '=' -f 2`
487   ;;
488   --powerpc-perf-enable) powerpc_perf="yes"
489   ;;
490   --disable-mmx) mmx="no"
491   ;;
492   --disable-iwmmxt) iwmmxt="no"
493   ;;
494   --disable-altivec) altivec="no"
495   ;;
496   --enable-gprof) gprof="yes"
497   ;;
498   --disable-v4l) v4l="no"
499   ;;
500   --disable-v4l2) v4l2="no"
501   ;;
502   --disable-bktr) bktr="no"
503   ;;
504   --disable-audio-oss) audio_oss="no"
505   ;;
506   --disable-audio-beos) audio_beos="no"
507   ;;
508   --disable-dv1394) dv1394="no"
509   ;;
510   --disable-network) network="no"; ffserver="no"
511   ;;
512   --disable-zlib) zlib="no"
513   ;;
514   --disable-lzo) lzo="no"
515   ;;
516   --enable-a52) a52="yes"
517   ;;
518   --enable-a52bin) a52bin="yes"
519   ;;
520   --enable-dts) dts="yes"
521     extralibs="$extralibs -ldts"
522   ;;
523   --enable-pp) pp="yes"
524   ;;
525   --enable-libgsm) libgsm="yes"
526     extralibs="$extralibs -lgsm"
527   ;;
528   --enable-mp3lame) mp3lame="yes"
529     extralibs="$extralibs -lmp3lame"
530   ;;
531   --enable-libogg) libogg="yes"
532     extralibs="$extralibs -logg"
533     pkg_requires="$pkg_requires ogg >= 1.1"
534   ;;
535   --enable-vorbis) vorbis="yes"
536     extralibs="$extralibs -lvorbis -lvorbisenc"
537     pkg_requires="$pkg_requires vorbis vorbisenc"
538   ;;
539   --enable-theora) theora="yes"
540     extralibs="$extralibs -ltheora"
541     pkg_requires="$pkg_requires theora"
542   ;;
543   --enable-faad) faad="yes"
544     extralibs="$extralibs -lfaad"
545   ;;
546   --enable-faadbin) faadbin="yes"
547   ;;
548   --enable-faac) faac="yes"
549     extralibs="$extralibs -lfaac"
550   ;;
551   --enable-xvid) xvid="yes"
552     extralibs="$extralibs -lxvidcore"
553   ;;
554   --enable-x264) x264="yes"
555     extralibs="$extralibs -lx264"
556   ;;
557   --enable-dc1394) dc1394="yes"
558     extralibs="$extralibs -ldc1394_control -lraw1394"
559     pkg_requires="$pkg_requires libraw1394"
560   ;;
561   --disable-vhook) vhook="no"
562   ;;
563   --disable-simple_idct) simpleidct="no"
564   ;;
565   --enable-mingw32) mingw32="yes"
566   ;;
567   --enable-mingwce) mingwce="yes"
568   ;;
569   --enable-static) lstatic="yes"
570   ;;
571   --disable-static) lstatic="no"
572   ;;
573   --enable-shared) lshared="yes"
574   ;;
575   --disable-shared) lshared="no"
576   ;;
577   --disable-debug) debug="no"
578   ;;
579   --disable-opts) optimize="no"
580   ;;
581   --disable-mpegaudio-hp) mpegaudio_hp="no"
582   ;;
583   --disable-protocols) protocols="no"; network="no"; ffserver="no"
584   ;;
585   --disable-ffserver) ffserver="no"
586   ;;
587   --disable-ffplay) ffplay="no"
588   ;;
589   --enable-small) optimize="small"
590   ;;
591   --enable-amr_nb) amr_nb="yes"
592   ;;
593   --enable-amr_nb-fixed) amr_nb_fixed="yes"
594   ;;
595   --enable-amr_wb) amr_wb="yes"
596   ;;
597   --enable-amr_if2) amr_if2="yes"
598   ;;
599   --enable-sunmlib) sunmlib="yes"
600   ;;
601   --enable-pthreads) pthreads="yes"
602   ;;
603   --enable-gpl) gpl="yes"
604   ;;
605   --enable-memalign-hack) memalignhack="yes"
606   ;;
607   --disable-strip) dostrip="no"
608   ;;
609   --enable-encoder=*) CODEC_LIST="$CODEC_LIST ${opt#--enable-encoder=}_encoder"
610   ;;
611   --enable-decoder=*) CODEC_LIST="$CODEC_LIST ${opt#--enable-decoder=}_decoder"
612   ;;
613   --disable-encoder=*) CODEC_LIST="`echo $CODEC_LIST | sed -e \"s#${opt#--disable-encoder=}_encoder##\"`"
614   ;;
615   --disable-decoder=*) CODEC_LIST="`echo $CODEC_LIST | sed -e \"s#${opt#--disable-decoder=}_decoder##\"`"
616   ;;
617   --disable-encoders) CODEC_LIST="`echo $CODEC_LIST | sed 's/[-_a-zA-Z0-9]*encoder//g'`"
618   ;;
619   --disable-decoders) CODEC_LIST="`echo $CODEC_LIST | sed 's/[-_a-zA-Z0-9]*decoder//g'`"
620   ;;
621   --disable-muxers) muxers="no"; ffserver="no"
622   ;;
623   --disable-demuxers) demuxers="no"
624   ;;
625   *)
626   echo "Unknown option \"$opt\"."
627   echo "See $0 --help for available options."
628   exit 1
629   ;;
630   esac
631 done
632
633 # we need to build at least one lib type
634 if test "$lstatic" = "no" && test "$lshared" = "no" ; then
635     cat <<EOF
636 At least one library type must be built.
637 Specify --enable-static to build the static libraries or --enable-shared to
638 build the shared libraries as well. To only build the shared libraries specify
639 --disable-static in addition to --enable-shared.
640 EOF
641     exit 1;
642 fi
643
644 if test "$theora" = "yes" ; then
645     if test "$libogg" = "no"; then
646         echo "libogg must be enabled to enable Theora."
647         fail="yes"
648         theora="no"
649     fi
650 fi
651
652 if test "$vorbis" = "yes" ; then
653     if test "$libogg" = "no"; then
654         echo "libogg must be enabled to enable Vorbis."
655         fail="yes"
656         vorbis="no"
657     fi
658 fi
659
660 if test "$gpl" != "yes"; then
661     if test "$pp" != "no"; then
662         echo "The Postprocessing code is under GPL and --enable-gpl is not specified."
663         fail="yes"
664     fi
665
666     if test "$a52" != "no" -o "$a52bin" != "no"; then
667         echo "liba52 is under GPL and --enable-gpl is not specified."
668         fail="yes"
669     fi
670
671     if test "$xvid" != "no"; then
672         echo "libxvidcore is under GPL and --enable-gpl is not specified."
673         fail="yes"
674     fi
675
676     if test "$x264" != "no"; then
677         echo "x264 is under GPL and --enable-gpl is not specified."
678         fail="yes"
679     fi
680
681     if test "$dts" != "no"; then
682         echo "libdts is under GPL and --enable-gpl is not specified."
683         fail="yes"
684     fi
685
686     if test "$faad" != "no" -o "$faadbin" != "no"; then
687         cat > $TMPC << EOF
688             #include <faad.h>
689             int main( void ) { return 0; }
690 EOF
691
692         if $cc $CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
693             cat > $TMPC << EOF
694                 #include <faad.h>
695                 #ifndef FAAD2_VERSION
696                 ok faad1
697                 #endif
698                 int main( void ) { return 0; }
699 EOF
700             if $cc $CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
701                 echo "FAAD2 is under GPL and --enable-gpl is not specified."
702                 fail="yes"
703             fi
704         else
705             faad="no"
706             faadbin="no"
707             echo "FAAD test failed."
708         fi
709     fi
710
711
712     if test "$fail" = "yes"; then
713         exit 1
714     fi
715 fi
716
717 # compute MMX state
718 if test $mmx = "default"; then
719     if test $cpu = "x86" -o $cpu = "x86_64"; then
720         mmx="yes"
721     else
722         mmx="no"
723     fi
724 fi
725
726 # check iwmmxt support
727 if test $iwmmxt = "default" -a $cpu = "armv4l"; then
728     cat > $TMPC << EOF
729         int main(void) {
730         __asm__ __volatile__ ("wunpckelub wr6, wr4");
731         }
732 EOF
733
734     iwmmxt=no
735     if ${cross_prefix}${cc} -o $TMPO $TMPC 2> /dev/null ; then
736         iwmmxt=yes
737     fi
738 fi
739
740 #Darwin CC versions
741 needmdynamicnopic="no"
742 if test $targetos = Darwin; then
743     if test -n "`$cc -v 2>&1 | grep xlc`"; then
744         CFLAGS="$CFLAGS -qpdf2 -qlanglvl=extc99 -qmaxmem=-1 -qarch=auto -qtune=auto"
745     else
746         gcc_version="`$cc -v 2>&1 | grep version | cut -d ' ' -f3-`"
747         case "$gcc_version" in
748             *2.95*)
749                 CFLAGS="$CFLAGS -no-cpp-precomp -pipe -fomit-frame-pointer"
750                 ;;
751             *[34].*)
752                 CFLAGS="$CFLAGS -no-cpp-precomp -pipe -fomit-frame-pointer -force_cpusubtype_ALL -Wno-sign-compare"
753                 if test "$lshared" = no; then
754                    needmdynamicnopic="yes"
755                 fi
756                 ;;
757             *)
758                 CFLAGS="$CFLAGS -no-cpp-precomp -pipe -fomit-frame-pointer"
759                 if test "$lshared" = no; then
760                    needmdynamicnopic="yes"
761                 fi
762                 ;;
763         esac
764     fi
765 fi
766
767 # Can only do AltiVec on PowerPC
768 if test $altivec = "default"; then
769     if test $cpu = "powerpc"; then
770         altivec="yes"
771     else
772         altivec="no"
773     fi
774 fi
775
776 # Add processor-specific flags
777 TUNECPU="generic"
778 POWERPCMODE="32bits"
779 if test $tune != "generic"; then
780     case $tune in
781         601|ppc601|PowerPC601)
782             CFLAGS="$CFLAGS -mcpu=601"
783             if test $altivec = "yes"; then
784                 echo "WARNING: Tuning for PPC601 but AltiVec enabled!";
785             fi
786             TUNECPU=ppc601
787         ;;
788         603*|ppc603*|PowerPC603*)
789             CFLAGS="$CFLAGS -mcpu=603"
790             if test $altivec = "yes"; then
791                 echo "WARNING: Tuning for PPC603 but AltiVec enabled!";
792             fi
793             TUNECPU=ppc603
794         ;;
795         604*|ppc604*|PowerPC604*)
796             CFLAGS="$CFLAGS -mcpu=604"
797             if test $altivec = "yes"; then
798                 echo "WARNING: Tuning for PPC604 but AltiVec enabled!";
799             fi
800             TUNECPU=ppc604
801         ;;
802         G3|g3|75*|ppc75*|PowerPC75*)
803             CFLAGS="$CFLAGS -mcpu=750 -mtune=750 -mpowerpc-gfxopt"
804             if test $altivec = "yes"; then
805                 echo "WARNING: Tuning for PPC75x but AltiVec enabled!";
806             fi
807             TUNECPU=ppc750
808         ;;
809         G4|g4|745*|ppc745*|PowerPC745*)
810             CFLAGS="$CFLAGS -mcpu=7450 -mtune=7450 -mpowerpc-gfxopt"
811             if test $altivec = "no"; then
812                 echo "WARNING: Tuning for PPC745x but AltiVec disabled!";
813             fi
814             TUNECPU=ppc7450
815         ;;
816         74*|ppc74*|PowerPC74*)
817             CFLAGS="$CFLAGS -mcpu=7400 -mtune=7400 -mpowerpc-gfxopt"
818             if test $altivec = "no"; then
819                 echo "WARNING: Tuning for PPC74xx but AltiVec disabled!";
820             fi
821             TUNECPU=ppc7400
822         ;;
823         G5|g5|970|ppc970|PowerPC970|power4*|Power4*)
824             CFLAGS="$CFLAGS -mcpu=970 -mtune=970 -mpowerpc-gfxopt -mpowerpc64"
825             if test $altivec = "no"; then
826                 echo "WARNING: Tuning for PPC970 but AltiVec disabled!";
827             fi
828             TUNECPU=ppc970
829             POWERPCMODE="64bits"
830         ;;
831         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)
832             CFLAGS="$CFLAGS -march=$tune"
833         ;;
834         *)
835         echo "WARNING: Unknown CPU \"$tune\", ignored."
836         ;;
837     esac
838 fi
839
840 # AltiVec flags: The FSF version of GCC differs from the Apple version
841 if test $cpu = "powerpc"; then
842     if test $altivec = "yes"; then
843         if test -n "`$cc -v 2>&1 | grep version | grep Apple`"; then
844             CFLAGS="$CFLAGS -faltivec"
845         else
846             CFLAGS="$CFLAGS -maltivec -mabi=altivec"
847         fi
848     fi
849 fi
850
851 # check if we have <altivec.h>
852 cat > $TMPC << EOF
853 #include <altivec.h>
854 int main( void ) { return 0; }
855 EOF
856
857 _altivec_h="no"
858 if $cc $CFLAGS -o $TMPE $TMPC 2> /dev/null ; then
859 _altivec_h="yes"
860 fi
861
862 # check if our compiler supports Motorola AltiVec C API
863 if test $altivec = "yes"; then
864 if test $_altivec_h = "yes"; then
865 cat > $TMPC << EOF
866 #include <altivec.h>
867 int main(void) {
868     vector signed int v1, v2, v3;
869     v1 = vec_add(v2,v3);
870     return 0;
871 }
872 EOF
873 else
874 cat > $TMPC << EOF
875 int main(void) {
876     vector signed int v1, v2, v3;
877     v1 = vec_add(v2,v3);
878     return 0;
879 }
880 EOF
881 fi
882 $cc $CFLAGS -o $TMPE $TMPC 2> /dev/null || altivec="no"
883 fi
884
885 # mmi only available on mips
886 if test $mmi = "default"; then
887     if test $cpu = "mips"; then
888         mmi="yes"
889     else
890         mmi="no"
891     fi
892 fi
893
894 # check if our compiler supports mmi
895 if test $mmi = "yes"; then
896 cat > $TMPC << EOF
897 int main(void) {
898     __asm__ ("lq \$2, 0(\$2)");
899     return 0;
900 }
901 EOF
902 $cc -o $TMPE $TMPC 2> /dev/null || mmi="no"
903 fi
904
905 if test "$mingw32" = "yes" -o "$mingwce" = "yes"; then
906     if test "$lshared" = "yes" && test "$lstatic" = "yes" ; then
907         cat <<EOF
908 You can only build one library type at once on MinGW.
909 Specify --disable-static --enable-shared to only build
910 the shared libraries. To build only the static libraries
911 you don't need to pass additional options.
912 EOF
913         exit 1
914     fi
915     v4l="no"
916     v4l2="no"
917     bktr="no"
918     audio_oss="no"
919     dv1394="no"
920     dc1394="no"
921     ffserver="no"
922     network="no"
923 if test "$mingwce" = "yes"; then
924     protocols="no"
925 fi
926     SLIBPREF=""
927     SLIBSUF=".dll"
928     EXESUF=".exe"
929     if test "$force_prefix" != yes; then prefix="/c/Program Files/FFmpeg"; fi
930     if test "$force_libdir" != yes; then bindir="$prefix"; fi
931 fi
932
933 cc="${cross_prefix}${cc}"
934 ar="${cross_prefix}${ar}"
935 ranlib="${cross_prefix}${ranlib}"
936 strip="${cross_prefix}${strip}"
937
938 if test -z "$cross_prefix" ; then
939
940 # ---
941 # big/little-endian test
942 cat > $TMPC << EOF
943 #include <inttypes.h>
944 int main(int argc, char ** argv){
945         volatile uint32_t i=0x01234567;
946         return (*((uint8_t*)(&i))) == 0x67;
947 }
948 EOF
949
950 if $cc -o $TMPE $TMPC 2>/dev/null ; then
951 $TMPE && bigendian="yes"
952 else
953 echo big/little test failed
954 fi
955
956 else
957
958 # programs cannot be launched if cross compiling, so make a static guess
959 if test "$cpu" = "powerpc" -o "$cpu" = "mips" ; then
960     bigendian="yes"
961 fi
962
963 fi
964
965 # ---
966 # *inttypes.h* test
967 cat > $TMPC << EOF
968 #include <inttypes.h>
969 int main(int argc, char ** argv){
970     return 0;
971 }
972 EOF
973
974 $cc -o $TMPE $TMPC 2>/dev/null || inttypes="no"
975
976 # ---
977 # *int_fast* test
978 cat > $TMPC << EOF
979 #include <inttypes.h>
980 int main(int argc, char ** argv){
981         volatile uint_fast64_t i=0x01234567;
982         return 0;
983 }
984 EOF
985
986 $cc -o $TMPE $TMPC 2>/dev/null || emu_fast_int="yes"
987
988 # ---
989 # check availability of some header files
990
991 cat > $TMPC << EOF
992 #include <malloc.h>
993 int main( void ) { return 0; }
994 EOF
995
996 _memalign=no
997 _malloc_h=no
998 if $cc -o $TMPE $TMPC 2> /dev/null ; then
999 _malloc_h=yes
1000 _memalign=yes
1001 # check for memalign - atmos
1002 cat > $TMPC << EOF
1003 #include <stdio.h>
1004 #include <malloc.h>
1005 int main ( void ) {
1006 char *string = NULL;
1007 string = memalign(64, sizeof(char));
1008 return 0;
1009 }
1010 EOF
1011 $cc -o $TMPE $TMPC 2> /dev/null || _memalign=no
1012 fi
1013
1014 if test "$_memalign" = "no" -a "$mmx" = "yes" -a "$memalignhack" != "yes"; then
1015     echo "Error, no memalign() but SSE enabled, disable it or use --enable-memalign-hack."
1016     exit 1
1017 fi
1018
1019 cat > $TMPC << EOF
1020 #include <time.h>
1021 int main( void ) { localtime_r(NULL, NULL); }
1022 EOF
1023
1024 localtime_r=no
1025 if $cc -o $TMPE $TMPC 2> /dev/null ; then
1026   localtime_r=yes
1027 fi
1028
1029 if test "$zlib" = "yes"; then
1030 # check for zlib - mmu_man
1031 cat > $TMPC << EOF
1032 #include <zlib.h>
1033 int main ( void ) {
1034 if (zlibVersion() != ZLIB_VERSION)
1035    puts("zlib version differs !!!");
1036    return 1;
1037 return 0;
1038 }
1039 EOF
1040 $cc $CFLAGS $LDFLAGS -o $TMPE $TMPC -lz 2> /dev/null || zlib="no"
1041 # $TMPE 2> /dev/null > /dev/null || zlib="no"
1042 # XXX: more tests needed - runtime test
1043 fi
1044 if test "$zlib" = "yes"; then
1045 extralibs="$extralibs -lz"
1046 fi
1047
1048 if test "$lzo" = "yes" -a "$gpl" = "yes"; then
1049 # check for liblzo
1050 cat > $TMPC << EOF
1051 #include <lzo1x.h>
1052 int main ( void ) {
1053 lzo_init();
1054 return 0;
1055 }
1056 EOF
1057 $cc $CFLAGS $LDFLAGS -o $TMPE $TMPC -llzo 2> /dev/null || lzo="no"
1058 else
1059 lzo="no"
1060 fi
1061 if test "$lzo" = "yes"; then
1062 extralibs="$extralibs -llzo"
1063 fi
1064
1065 # test for lrintf in math.h
1066 cat > $TMPC << EOF
1067 #define _ISOC9X_SOURCE  1
1068 #include <math.h>
1069 int main( void ) { return (lrintf(3.999f) > 0)?0:1; }
1070 EOF
1071
1072 have_lrintf="no"
1073 if $cc $CFLAGS $LDFLAGS $extralibs -o $TMPE $TMPC 2> /dev/null ; then
1074   have_lrintf="yes"
1075   # allanc@chickenandporn.com: cannot execute cross-compiled
1076   # code on the host.  Only execute if not cross-compiling.
1077   if test -z "$cross_prefix" ; then
1078     $TMPE 2> /dev/null > /dev/null || have_lrintf="no"
1079   fi
1080 fi
1081
1082 _restrict=
1083 for restrict_keyword in restrict __restrict__ __restrict; do
1084   echo "void foo(char * $restrict_keyword p);" > $TMPC
1085   if $cc -c -o $TMPO $TMPC 2> /dev/null; then
1086     _restrict=$restrict_keyword
1087     break;
1088   fi
1089 done
1090
1091 # test gcc version to see if vector builtins can be used
1092 # currently only used on i386 for MMX builtins
1093 cat > $TMPC << EOF
1094 #include <xmmintrin.h>
1095 int main(void) {
1096 #if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 2)
1097 return 0;
1098 #else
1099 #error no vector builtins
1100 #endif
1101 }
1102 EOF
1103
1104 builtin_vector=no
1105 if $cc -msse -o $TMPO $TMPC 2> /dev/null ; then
1106   builtin_vector=yes
1107 fi
1108
1109 # Probe for -Wdeclaration-after-statement
1110 if test "$cc" = "gcc"; then
1111   cat > $TMPC << EOF
1112   int main( void ) { return 0; }
1113 EOF
1114
1115   if $cc -Wdeclaration-after-statement -Werror -o $TMPE $TMPC 2> /dev/null ; then
1116     CFLAGS="$CFLAGS -Wdeclaration-after-statement"
1117   fi
1118 fi
1119
1120 # dlopen/dlfcn.h probing
1121
1122 cat > $TMPC << EOF
1123 #include <dlfcn.h>
1124 int main( void ) { return (int) dlopen("foo", 0); }
1125 EOF
1126
1127 ldl=-ldl
1128
1129 if $cc $CFLAGS $LDFLAGS -o $TMPE $TMPC -ldl > /dev/null 2>&1 ; then
1130 dlfcn=yes
1131 dlopen=yes
1132 fi
1133
1134 if $cc $CFLAGS $LDFLAGS -o $TMPE $TMPC > /dev/null 2>&1 ; then
1135 dlfcn=yes
1136 dlopen=yes
1137 ldl=""
1138 fi
1139
1140 cat > $TMPC << EOF
1141 int main( void ) { return (int) dlopen("foo", 0); }
1142 EOF
1143
1144 if $cc $CFLAGS $LDFLAGS -o $TMPE $TMPC -ldl > /dev/null 2>&1  ; then
1145 dlopen=yes
1146 fi
1147
1148 if $cc $CFLAGS $LDFLAGS -o $TMPE $TMPC > /dev/null 2>&1  ; then
1149 dlopen=yes
1150 ldl=""
1151 fi
1152
1153 if test "$vhook" = "default" ; then
1154   vhook="$dlopen"
1155 fi
1156
1157 if test "$vhook" = "yes" -o "$a52bin" = "yes" -o "$faadbin" = "yes"; then
1158   extralibs="$extralibs $ldl"
1159 fi
1160
1161
1162 ##########################################
1163 # imlib check
1164
1165 cat > $TMPC << EOF
1166 #include <X11/Xlib.h>
1167 #include <Imlib2.h>
1168 int main( void ) { return (int) imlib_load_font("foo"); }
1169 EOF
1170
1171 imlib2=no
1172 if $cc $CFLAGS $LDFLAGS -o $TMPE $TMPC -lImlib2 -lm > /dev/null 2>&1  ; then
1173 imlib2=yes
1174 fi
1175
1176 ##########################################
1177 # FreeType check
1178
1179 cat > $TMPC << EOF
1180 #include <ft2build.h>
1181 int main( void ) { return (int) FT_Init_FreeType(0); }
1182 EOF
1183
1184 freetype2=no
1185 if test "x$targetos" != "xBeOS"; then
1186   if (freetype-config --version) >/dev/null 2>&1 ; then
1187     if $cc -o $TMPE $TMPC `freetype-config --cflags` `freetype-config --libs`  > /dev/null 2>&1 ; then
1188       freetype2=yes
1189     fi
1190   fi
1191 fi
1192
1193 ##########################################
1194 # SDL check
1195
1196 cat > $TMPC << EOF
1197 #include <SDL.h>
1198 #undef main /* We don't want SDL to override our main() */
1199 int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
1200 EOF
1201
1202 sdl_too_old=no
1203 sdl=no
1204 if (sdl-config --version) >/dev/null 2>&1 ; then
1205 if $cc -o $TMPE `sdl-config --cflags` $TMPC `sdl-config --libs`  > /dev/null 2>&1  ; then
1206 _sdlversion=`sdl-config --version | sed 's/[^0-9]//g'`
1207 if test "$_sdlversion" -lt 121 ; then
1208 sdl_too_old=yes
1209 else
1210 sdl=yes
1211 fi
1212 fi
1213 fi
1214
1215 ##########################################
1216 # texi2html check
1217
1218 texi2html=no
1219 if (texi2html -version) >/dev/null 2>&1; then
1220 texi2html=yes
1221 fi
1222
1223 if test "$network" = "yes" ; then
1224 ##########################################
1225 # IPv6 check
1226
1227 cat > $TMPC << EOF
1228 #include <sys/types.h>
1229 #include <sys/socket.h>
1230 #include <netinet/in.h>
1231 #include <netdb.h>
1232 int main( void ) {
1233   struct sockaddr_storage saddr;
1234   struct ipv6_mreq mreq6;
1235   getaddrinfo(0,0,0,0);
1236   getnameinfo(0,0,0,0,0,0,0);
1237   IN6_IS_ADDR_MULTICAST((const struct in6_addr *)0);
1238 }
1239 EOF
1240
1241 ipv6=no
1242 if $cc -o $TMPE $TMPC > /dev/null 2>&1  ; then
1243 ipv6=yes
1244 fi
1245 fi
1246
1247 case "`$cc -v 2>&1 | grep version`" in
1248     *gcc*)
1249         CFLAGS="-Wall -Wno-switch $CFLAGS"
1250         ;;
1251     *)
1252         ;;
1253 esac
1254
1255 if test "$sdl" = "no" ; then
1256    ffplay=no
1257 fi
1258
1259 if test "$debug" = "yes"; then
1260         CFLAGS="-g $CFLAGS"
1261 fi
1262
1263 if test "$optimize" = "small"; then
1264 #  CFLAGS=${CFLAGS//-O3/-Os}
1265   CFLAGS="$CFLAGS -Os"
1266 fi
1267
1268 if test "$optimize" = "yes"; then
1269     if test -n "`$cc -v 2>&1 | grep xlc`"; then
1270         CFLAGS="$CFLAGS -O5"
1271         LDFLAGS="$LDFLAGS -O5"
1272     else
1273         CFLAGS="-O3 $CFLAGS"
1274     fi
1275 fi
1276
1277 # PIC flags for shared library objects where they are needed
1278 if test "$lshared" = "yes" ; then
1279   # LIBOBJFLAGS may have already been set in the OS configuration
1280   if test -z "$LIBOBJFLAGS" ; then
1281     if test "$cpu" = "x86_64" -o "$cpu" = "ia64" -o "$cpu" = "alpha" ; then
1282       LIBOBJFLAGS="\$(PIC)"
1283     fi
1284   fi
1285 fi
1286
1287 if test x"$bindir" = x""; then
1288 bindir="${prefix}/bin"
1289 fi
1290
1291 if test x"$libdir" = x""; then
1292 libdir="${prefix}/lib"
1293 fi
1294
1295 if test x"$mandir" = x""; then
1296 mandir="${prefix}/man"
1297 fi
1298
1299 echo "install prefix   $prefix"
1300 echo "source path      $source_path"
1301 echo "C compiler       $cc"
1302 echo "make             $make"
1303 echo "CPU              $cpu ($tune)"
1304 if test "$BUILDSUF" != ""; then
1305 echo "build suffix     $BUILDSUF"
1306 fi
1307 echo "big-endian       $bigendian"
1308 echo "inttypes.h       $inttypes"
1309 echo "broken inttypes.h $emu_fast_int"
1310 if test $cpu = "x86" -o $cpu = "x86_64"; then
1311 echo "MMX enabled      $mmx"
1312 echo "Vector Builtins  $builtin_vector"
1313 fi
1314 if test $cpu = "armv4l"; then
1315 echo "IWMMXT enabled   $iwmmxt"
1316 fi
1317 if test $cpu = "mips"; then
1318 echo "MMI enabled      $mmi"
1319 fi
1320 if test $cpu = "powerpc"; then
1321 echo "AltiVec enabled  $altivec"
1322 fi
1323 echo "gprof enabled    $gprof"
1324 echo "zlib enabled     $zlib"
1325 echo "lzo enabled      $lzo"
1326 echo "libgsm enabled   $libgsm"
1327 echo "mp3lame enabled  $mp3lame"
1328 echo "libogg enabled   $libogg"
1329 echo "Vorbis enabled   $vorbis"
1330 echo "Theora enabled   $theora"
1331 echo "FAAD enabled     $faad"
1332 echo "faadbin enabled  $faadbin"
1333 echo "FAAC enabled     $faac"
1334 echo "XviD enabled     $xvid"
1335 echo "x264 enabled     $x264"
1336 echo "a52 support      $a52"
1337 echo "a52 dlopened     $a52bin"
1338 echo "DTS support      $dts"
1339 echo "pp support       $pp"
1340 echo "debug symbols    $debug"
1341 echo "strip symbols    $dostrip"
1342 echo "optimize         $optimize"
1343 echo "static           $lstatic"
1344 echo "shared           $lshared"
1345 echo "video hooking    $vhook"
1346 echo "SDL support      $sdl"
1347 if test $sdl_too_old = "yes"; then
1348 echo "-> Your SDL version is too old - please upgrade to have FFplay/SDL support."
1349 fi
1350
1351 if test "$vhook" = "yes" ; then
1352 echo "Imlib2 support   $imlib2"
1353 echo "FreeType support $freetype2"
1354 fi
1355 echo "Sun medialib support"  $sunmlib
1356 echo "pthreads support"      $pthreads
1357 echo "AMR-NB float support"  $amr_nb
1358 echo "AMR-NB fixed support"  $amr_nb_fixed
1359 echo "AMR-WB float support"  $amr_wb
1360 echo "AMR-WB IF2 support"    $amr_if2
1361 echo "network support      $network"
1362 if test "$network" = "yes" ; then
1363 echo "IPv6 support         $ipv6"
1364 fi
1365 if test "$gpl" = "no" ; then
1366 echo "License: LGPL"
1367 else
1368 echo "License: GPL"
1369 fi
1370
1371 echo "Creating config.mak and config.h..."
1372
1373 date >> config.log
1374 echo "   $0 $FFMPEG_CONFIGURATION" >> config.log
1375 echo "# Automatically generated by configure - do not modify!" > config.mak
1376 echo "/* Automatically generated by configure - do not modify! */" > $TMPH
1377 echo "#define FFMPEG_CONFIGURATION "'"'"$FFMPEG_CONFIGURATION"'"' >> $TMPH
1378
1379 echo "prefix=\$(DESTDIR)$prefix" >> config.mak
1380 echo "libdir=\$(DESTDIR)$libdir" >> config.mak
1381 echo "bindir=\$(DESTDIR)$bindir" >> config.mak
1382 echo "mandir=\$(DESTDIR)$mandir" >> config.mak
1383 echo "MAKE=$make" >> config.mak
1384 echo "CC=$cc" >> config.mak
1385 echo "AR=$ar" >> config.mak
1386 echo "RANLIB=$ranlib" >> config.mak
1387 if test "$dostrip" = "yes" ; then
1388 echo "STRIP=$strip" >> config.mak
1389 echo "INSTALLSTRIP=$installstrip" >> config.mak
1390 else
1391 echo "STRIP=echo ignoring strip" >> config.mak
1392 echo "INSTALLSTRIP=" >> config.mak
1393 fi
1394
1395 # SHCFLAGS is a copy of CFLAGS without -mdynamic-no-pic, used when building
1396 # shared modules on OS/X (vhook/Makefile).
1397 SHCFLAGS=$CFLAGS
1398 if test "$needmdynamicnopic" = yes; then
1399    CFLAGS="$CFLAGS -mdynamic-no-pic"
1400 fi
1401
1402 echo "OPTFLAGS=$CFLAGS" >> config.mak
1403 echo "SHCFLAGS=$SHCFLAGS">>config.mak
1404 echo "LDFLAGS=$LDFLAGS" >> config.mak
1405 echo "LDCONFIG=$LDCONFIG" >> config.mak
1406 echo "FFSLDFLAGS=$FFSLDFLAGS" >> config.mak
1407 echo "SHFLAGS=$SHFLAGS" >> config.mak
1408 echo "LIBOBJFLAGS=$LIBOBJFLAGS" >> config.mak
1409 echo "BUILDSUF=$BUILDSUF" >> config.mak
1410 echo "LIBPREF=$LIBPREF" >> config.mak
1411 echo "LIBSUF=\${BUILDSUF}$LIBSUF" >> config.mak
1412 if test "$lstatic" = "yes" ; then
1413   echo "LIB=$LIB" >> config.mak
1414 fi
1415 echo "SLIBPREF=$SLIBPREF" >> config.mak
1416 echo "SLIBSUF=\${BUILDSUF}$SLIBSUF" >> config.mak
1417 echo "EXESUF=\${BUILDSUF}$EXESUF" >> config.mak
1418 echo "TARGET_OS=$TARGET_OS" >> config.mak
1419 if test "$cpu" = "x86" ; then
1420   echo "TARGET_ARCH_X86=yes" >> config.mak
1421   echo "#define ARCH_X86 1" >> $TMPH
1422 elif test "$cpu" = "x86_64" ; then
1423   echo "TARGET_ARCH_X86_64=yes" >> config.mak
1424   echo "#define ARCH_X86_64 1" >> $TMPH
1425 elif test "$cpu" = "armv4l" ; then
1426   echo "TARGET_ARCH_ARMV4L=yes" >> config.mak
1427   echo "#define ARCH_ARMV4L 1" >> $TMPH
1428 elif test "$cpu" = "alpha" ; then
1429   echo "TARGET_ARCH_ALPHA=yes" >> config.mak
1430   echo "#define ARCH_ALPHA 1" >> $TMPH
1431 elif test "$cpu" = "sparc64" ; then
1432   echo "TARGET_ARCH_SPARC64=yes" >> config.mak
1433   echo "#define ARCH_SPARC64 1" >> $TMPH
1434   echo "TARGET_ARCH_SPARC=yes" >> config.mak
1435   echo "#define ARCH_SPARC 1" >> $TMPH
1436 elif test "$cpu" = "sparc" ; then
1437   echo "TARGET_ARCH_SPARC=yes" >> config.mak
1438   echo "#define ARCH_SPARC 1" >> $TMPH
1439 elif test "$cpu" = "powerpc" ; then
1440   echo "TARGET_ARCH_POWERPC=yes" >> config.mak
1441   echo "#define ARCH_POWERPC 1" >> $TMPH
1442   if test $POWERPCMODE = "32bits"; then
1443     echo "#define POWERPC_MODE_32BITS 1" >> $TMPH
1444   else
1445     echo "#define POWERPC_MODE_64BITS 1" >> $TMPH
1446   fi
1447   if test "$powerpc_perf" = "yes"; then
1448     echo "#define POWERPC_PERFORMANCE_REPORT 1" >> $TMPH
1449   fi
1450 elif test "$cpu" = "mips" ; then
1451   echo "TARGET_ARCH_MIPS=yes" >> config.mak
1452   echo "#define ARCH_MIPS 1" >> $TMPH
1453 elif test "$cpu" = "sh4" ; then
1454   echo "TARGET_ARCH_SH4=yes" >> config.mak
1455   echo "#define ARCH_SH4 1" >> $TMPH
1456 elif test "$cpu" = "parisc" ; then
1457   echo "TARGET_ARCH_PARISC=yes" >> config.mak
1458   echo "#define ARCH_PARISC 1" >> $TMPH
1459 elif test "$cpu" = "s390" ; then
1460   echo "TARGET_ARCH_S390=yes" >> config.mak
1461   echo "#define ARCH_S390 1" >> $TMPH
1462 elif test "$cpu" = "m68k" ; then
1463   echo "TARGET_ARCH_M68K=yes" >> config.mak
1464   echo "#define ARCH_M68K 1" >> $TMPH
1465 elif test "$cpu" = "ia64" ; then
1466   echo "TARGET_ARCH_IA64=yes" >> config.mak
1467   echo "#define ARCH_IA64 1" >> $TMPH
1468 fi
1469 echo "#define TUNECPU $TUNECPU" >> $TMPH
1470 if test "$bigendian" = "yes" ; then
1471   echo "WORDS_BIGENDIAN=yes" >> config.mak
1472   echo "#define WORDS_BIGENDIAN 1" >> $TMPH
1473 fi
1474 if test "$inttypes" != "yes" ; then
1475   echo "#define EMULATE_INTTYPES 1" >> $TMPH
1476 fi
1477 if test "$emu_fast_int" = "yes" ; then
1478   echo "#define EMULATE_FAST_INT 1" >> $TMPH
1479 fi
1480 if test "$mmx" = "yes" ; then
1481   echo "TARGET_MMX=yes" >> config.mak
1482   echo "#define HAVE_MMX 1" >> $TMPH
1483   echo "#define __CPU__ 586" >> $TMPH
1484 fi
1485 if test "$builtin_vector" = "yes" ; then
1486   echo "TARGET_BUILTIN_VECTOR=yes" >> config.mak
1487   echo "#define HAVE_BUILTIN_VECTOR 1" >> $TMPH
1488 fi
1489 if test "$iwmmxt" = "yes" ; then
1490   echo "TARGET_IWMMXT=yes" >> config.mak
1491   echo "#define HAVE_IWMMXT 1" >> $TMPH
1492 fi
1493 if test "$mmi" = "yes" ; then
1494   echo "TARGET_MMI=yes" >> config.mak
1495   echo "#define HAVE_MMI 1" >> $TMPH
1496 fi
1497 if test "$altivec" = "yes" ; then
1498   echo "TARGET_ALTIVEC=yes" >> config.mak
1499   echo "#define HAVE_ALTIVEC 1" >> $TMPH
1500   echo "// Enable the next line to use the reference C code instead of AltiVec" >> $TMPH
1501   echo "// #define ALTIVEC_USE_REFERENCE_C_CODE 1" >> $TMPH
1502   if test "$_altivec_h" = "yes" ; then
1503     echo "#define HAVE_ALTIVEC_H 1" >> $TMPH
1504   else
1505     echo "#undef HAVE_ALTIVEC_H" >> $TMPH
1506   fi
1507 fi
1508 if test "$gprof" = "yes" ; then
1509   echo "TARGET_GPROF=yes" >> config.mak
1510   echo "#define HAVE_GPROF 1" >> $TMPH
1511 fi
1512 if test "$localtime_r" = "yes" ; then
1513   echo "#define HAVE_LOCALTIME_R 1" >> $TMPH
1514 fi
1515 if test "$imlib2" = "yes" ; then
1516   echo "HAVE_IMLIB2=yes" >> config.mak
1517 fi
1518 if test "$freetype2" = "yes" ; then
1519   echo "HAVE_FREETYPE2=yes" >> config.mak
1520 fi
1521 if test "$sunmlib" = "yes" ; then
1522   echo "HAVE_MLIB=yes" >> config.mak
1523   echo "#define HAVE_MLIB 1" >> $TMPH
1524   extralibs="$extralibs -lmlib"
1525 fi
1526 if test "$pthreads" = "yes" ; then
1527   echo "HAVE_PTHREADS=yes" >> config.mak
1528   echo "#define HAVE_PTHREADS 1" >> $TMPH
1529   echo "#define HAVE_THREADS 1" >> $TMPH
1530   if test $targetos != FreeBSD -a $targetos != OpenBSD ; then
1531      extralibs="$extralibs -lpthread"
1532   fi
1533 fi
1534 if test "$sdl" = "yes" ; then
1535   echo "CONFIG_SDL=yes" >> config.mak
1536   echo "SDL_LIBS=`sdl-config --libs`" >> config.mak
1537   echo "SDL_CFLAGS=`sdl-config --cflags`" >> config.mak
1538 fi
1539 if test "$texi2html" = "yes"; then
1540   echo "BUILD_DOC=yes" >> config.mak
1541 fi
1542 if test "$have_lrintf" = "yes" ; then
1543   echo "#define HAVE_LRINTF 1" >> $TMPH
1544 fi
1545 if test "$vhook" = "yes" ; then
1546   echo "BUILD_VHOOK=yes" >> config.mak
1547   echo "#define HAVE_VHOOK 1" >> $TMPH
1548 fi
1549
1550 pp_version=`grep '#define LIBPOSTPROC_VERSION ' "$source_path/libavcodec/libpostproc/postprocess.h" | sed 's/[^0-9\.]//g'`
1551 lavc_version=`grep '#define LIBAVCODEC_VERSION ' "$source_path/libavcodec/avcodec.h" | sed 's/[^0-9\.]//g'`
1552 lavf_version=`grep '#define LIBAVFORMAT_VERSION ' "$source_path/libavformat/avformat.h" | sed 's/[^0-9\.]//g'`
1553 lavu_version=`grep '#define LIBAVUTIL_VERSION ' "$source_path/libavutil/avutil.h" | sed 's/[^0-9\.]//g'`
1554
1555
1556
1557 if test "$lshared" = "yes" ; then
1558   echo "#define BUILD_SHARED_AV 1" >> $TMPH
1559   echo "BUILD_SHARED=yes" >> config.mak
1560   echo "PIC=-fPIC -DPIC" >> config.mak
1561   echo "SPPMAJOR=${lavc_version%%.*}" >> config.mak
1562   echo "SPPVERSION=$lavc_version" >> config.mak
1563   echo "LAVCMAJOR=${lavc_version%%.*}" >> config.mak
1564   echo "LAVCVERSION=$lavc_version" >> config.mak
1565   echo "LAVFMAJOR=${lavf_version%%.*}" >> config.mak
1566   echo "LAVFVERSION=$lavf_version" >> config.mak
1567   echo "LAVUMAJOR=${lavu_version%%.*}" >> config.mak
1568   echo "LAVUVERSION=$lavu_version" >> config.mak
1569   echo "SLIBNAME=${SLIBNAME}" >> config.mak
1570   echo "SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}" >> config.mak
1571   echo "SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}" >> config.mak
1572 fi
1573 echo "EXTRALIBS=$extralibs" >> config.mak
1574 version=`grep '#define FFMPEG_VERSION ' "$source_path/libavcodec/avcodec.h" |
1575  cut -d '"' -f 2`
1576 echo "VERSION=$version" >>config.mak
1577 # If you do not want to use encoders, disable them.
1578 echo "#define CONFIG_ENCODERS 1" >> $TMPH
1579 echo "CONFIG_ENCODERS=yes" >> config.mak
1580
1581 # If you do not want to use decoders, disable them.
1582 echo "#define CONFIG_DECODERS 1" >> $TMPH
1583 echo "CONFIG_DECODERS=yes" >> config.mak
1584
1585 # muxers
1586 if test "$muxers" = "yes" ; then
1587   echo "#define CONFIG_MUXERS 1" >> $TMPH
1588   echo "CONFIG_MUXERS=yes" >> config.mak
1589 fi
1590
1591 # demuxers
1592 if test "$demuxers" = "yes" ; then
1593   echo "#define CONFIG_DEMUXERS 1" >> $TMPH
1594   echo "CONFIG_DEMUXERS=yes" >> config.mak
1595 fi
1596
1597 # AC3
1598 if test "$a52" = "yes" ; then
1599   echo "#define CONFIG_AC3 1" >> $TMPH
1600   echo "CONFIG_AC3=yes" >> config.mak
1601
1602   if test "$a52bin" = "yes" ; then
1603     echo "#define CONFIG_A52BIN 1" >> $TMPH
1604     echo "CONFIG_A52BIN=yes" >> config.mak
1605   fi
1606 fi
1607
1608 # DTS
1609 if test "$dts" = "yes" ; then
1610   echo "#define CONFIG_DTS 1" >> $TMPH
1611   echo "CONFIG_DTS=yes" >> config.mak
1612 fi
1613
1614 # PP
1615 if test "$pp" = "yes" ; then
1616   echo "#define CONFIG_PP 1" >> $TMPH
1617   echo "CONFIG_PP=yes" >> config.mak
1618 fi
1619
1620 # MPEG audio high precision mode
1621 if test "$mpegaudio_hp" = "yes" ; then
1622   echo "#define CONFIG_MPEGAUDIO_HP 1" >> $TMPH
1623 fi
1624
1625 if test "$v4l" = "yes" ; then
1626   echo "#define CONFIG_VIDEO4LINUX 1" >> $TMPH
1627   echo "CONFIG_VIDEO4LINUX=yes" >> config.mak
1628 fi
1629
1630 if test "$v4l2" = "yes" ; then
1631   echo "#define CONFIG_VIDEO4LINUX2 1" >> $TMPH
1632   echo "CONFIG_VIDEO4LINUX2=yes" >> config.mak
1633 fi
1634
1635 if test "$bktr" = "yes" ; then
1636   echo "#define CONFIG_BKTR 1" >> $TMPH
1637   echo "CONFIG_BKTR=yes" >> config.mak
1638 fi
1639
1640 if test "$dv1394" = "yes" ; then
1641   echo "#define CONFIG_DV1394 1" >> $TMPH
1642   echo "CONFIG_DV1394=yes" >> config.mak
1643 fi
1644
1645 if test "$dc1394" = "yes" ; then
1646   echo "#define CONFIG_DC1394 1" >> $TMPH
1647   echo "CONFIG_DC1394=yes" >> config.mak
1648 fi
1649
1650 if test "$dlopen" = "yes" ; then
1651   echo "#define CONFIG_HAVE_DLOPEN 1" >> $TMPH
1652 fi
1653
1654 if test "$dlfcn" = "yes" ; then
1655   echo "#define CONFIG_HAVE_DLFCN 1" >> $TMPH
1656 fi
1657
1658 if test "$audio_oss" = "yes" ; then
1659   echo "#define CONFIG_AUDIO_OSS 1" >> $TMPH
1660   echo "CONFIG_AUDIO_OSS=yes" >> config.mak
1661 fi
1662
1663 if test "$audio_beos" = "yes" ; then
1664   echo "#define CONFIG_AUDIO_BEOS 1" >> $TMPH
1665   echo "CONFIG_AUDIO_BEOS=yes" >> config.mak
1666 fi
1667
1668 if test "$network" = "yes" ; then
1669   echo "#define CONFIG_NETWORK 1" >> $TMPH
1670   echo "CONFIG_NETWORK=yes" >> config.mak
1671 fi
1672
1673 if test "$ipv6" = "yes" ; then
1674   echo "#define CONFIG_IPV6 1" >> $TMPH
1675 fi
1676
1677 if test "$zlib" = "yes" ; then
1678   echo "#define CONFIG_ZLIB 1" >> $TMPH
1679   echo "CONFIG_ZLIB=yes" >> config.mak
1680 fi
1681
1682 if test "$lzo" = "yes" ; then
1683   echo "#define CONFIG_LZO 1" >> $TMPH
1684   echo "CONFIG_LZO=yes" >> config.mak
1685 fi
1686
1687 if test "$libgsm" = "yes" ; then
1688   echo "#define CONFIG_LIBGSM 1" >> $TMPH
1689   echo "CONFIG_LIBGSM=yes" >> config.mak
1690 fi
1691
1692 if test "$mp3lame" = "yes" ; then
1693   echo "#define CONFIG_MP3LAME 1" >> $TMPH
1694   echo "CONFIG_MP3LAME=yes" >> config.mak
1695 fi
1696
1697 if test "$libogg" = "yes" ; then
1698   echo "#define CONFIG_LIBOGG 1" >> $TMPH
1699   echo "CONFIG_LIBOGG=yes" >> config.mak
1700 fi
1701
1702 if test "$vorbis" = "yes" ; then
1703   echo "#define CONFIG_LIBVORBIS 1" >> $TMPH
1704   echo "CONFIG_LIBVORBIS=yes" >> config.mak
1705 fi
1706
1707 if test "$theora" = "yes" ; then
1708   echo "#define CONFIG_LIBTHEORA 1" >> $TMPH
1709   echo "CONFIG_LIBTHEORA=yes" >> config.mak
1710 fi
1711
1712 if test "$faad" = "yes" ; then
1713   echo "#define CONFIG_FAAD 1" >> $TMPH
1714   echo "CONFIG_FAAD=yes" >> config.mak
1715 fi
1716
1717 if test "$faadbin" = "yes" ; then
1718   echo "#define CONFIG_FAADBIN 1" >> $TMPH
1719   echo "CONFIG_FAADBIN=yes" >> config.mak
1720 fi
1721
1722 if test "$faac" = "yes" ; then
1723   echo "#define CONFIG_FAAC 1" >> $TMPH
1724   echo "CONFIG_FAAC=yes" >> config.mak
1725 fi
1726
1727 if test "$xvid" = "yes" ; then
1728   echo "#define CONFIG_XVID 1" >> $TMPH
1729   echo "CONFIG_XVID=yes" >> config.mak
1730 fi
1731
1732 if test "$x264" = "yes" ; then
1733   echo "#define CONFIG_X264 1" >> $TMPH
1734   echo "CONFIG_X264=yes" >> config.mak
1735 fi
1736
1737 if test "$mingw32" = "yes" ; then
1738   echo "#define CONFIG_WIN32 1" >> $TMPH
1739   echo "CONFIG_WIN32=yes" >> config.mak
1740   echo "HAVE_W32THREADS=yes" >> config.mak
1741   echo "#define HAVE_W32THREADS 1" >> $TMPH
1742   echo "#define HAVE_THREADS 1" >> $TMPH
1743   echo "#ifndef __MINGW32__" >> $TMPH
1744   echo "#define __MINGW32__ 1" >> $TMPH
1745   echo "#endif" >> $TMPH
1746 fi
1747
1748 if test "$mingwce" = "yes" ; then
1749   echo "#define CONFIG_WIN32 1" >> $TMPH
1750   echo "CONFIG_WIN32=yes" >> config.mak
1751   echo "#define CONFIG_WINCE 1" >> $TMPH
1752   echo "CONFIG_WINCE=yes" >> config.mak
1753   echo "#ifndef __MINGW32__" >> $TMPH
1754   echo "#define __MINGW32__ 1" >> $TMPH
1755   echo "#endif" >> $TMPH
1756 fi
1757
1758 if test "$os2" = "yes" ; then
1759   echo "#define CONFIG_OS2 1" >> $TMPH
1760   echo "CONFIG_OS2=yes" >> config.mak
1761   echo "HAVE_OS2THREADS=yes" >> config.mak
1762   echo "#define HAVE_OS2THREADS 1" >> $TMPH
1763   echo "#define HAVE_THREADS 1" >> $TMPH
1764 fi
1765
1766 if test "$TARGET_OS" = "SunOS" ; then
1767   echo "#define CONFIG_SUNOS 1" >> $TMPH
1768 fi
1769
1770 if test "$TARGET_OS" = "BeOS" ; then
1771   echo "HAVE_BEOSTHREADS=yes" >> config.mak
1772   echo "#define HAVE_BEOSTHREADS 1" >> $TMPH
1773   echo "#define HAVE_THREADS 1" >> $TMPH
1774 fi
1775
1776 if test "$darwin" = "yes"; then
1777   echo "#define CONFIG_DARWIN 1"  >> $TMPH
1778   echo "CONFIG_DARWIN=yes" >> config.mak
1779 fi
1780
1781 if test "$_malloc_h" = "yes" ; then
1782   echo "#define HAVE_MALLOC_H 1" >> $TMPH
1783 else
1784   echo "#undef  HAVE_MALLOC_H" >> $TMPH
1785 fi
1786
1787 if test "$_memalign" = "yes" ; then
1788   echo "#define HAVE_MEMALIGN 1" >> $TMPH
1789 else
1790   echo "#undef  HAVE_MEMALIGN" >> $TMPH
1791 fi
1792
1793 if test "$memalignhack" = "yes" ; then
1794   echo "#define MEMALIGN_HACK 1" >> $TMPH
1795 fi
1796
1797
1798 if test "$netserver" = "yes" ; then
1799   echo "#define CONFIG_BEOS_NETSERVER 1" >> $TMPH
1800   echo "CONFIG_BEOS_NETSERVER=yes" >> config.mak
1801 fi
1802
1803 if test "$need_inet_aton" = "yes" ; then
1804   echo "NEED_INET_ATON=yes" >> config.mak
1805 fi
1806
1807 if test "$simpleidct" = "yes" ; then
1808   echo "#define SIMPLE_IDCT 1" >> $TMPH
1809 fi
1810
1811 if test "$protocols" = "yes" ; then
1812   echo "#define CONFIG_PROTOCOLS 1" >> $TMPH
1813   echo "CONFIG_PROTOCOLS=yes" >> config.mak
1814 fi
1815
1816 if test "$ffserver" = "yes" ; then
1817   echo "#define CONFIG_FFSERVER 1" >> $TMPH
1818   echo "CONFIG_FFSERVER=yes" >> config.mak
1819 fi
1820
1821 if test "$ffplay" = "yes" ; then
1822   echo "CONFIG_FFPLAY=yes" >> config.mak
1823 fi
1824
1825 if test "$gpl" = "yes" ; then
1826   echo "#define CONFIG_GPL 1" >> $TMPH
1827   echo "CONFIG_GPL=yes" >> config.mak
1828 fi
1829
1830 echo "#define restrict $_restrict" >> $TMPH
1831
1832 if test "$optimize" = "small"; then
1833   echo "#define always_inline"  >> $TMPH
1834 fi
1835
1836 # build tree in object directory if source path is different from current one
1837 if test "$source_path_used" = "yes" ; then
1838     DIRS="\
1839          doc \
1840          libavformat \
1841          libavcodec \
1842          libavcodec/alpha \
1843          libavcodec/armv4l \
1844          libavcodec/i386 \
1845          libavcodec/sparc \
1846          libavcodec/mlib \
1847          libavcodec/ppc \
1848          libavcodec/liba52 \
1849          libavcodec/libpostproc \
1850          libavutil \
1851          tests \
1852          vhook \
1853          "
1854     FILES="\
1855           Makefile \
1856           libavformat/Makefile \
1857           libavcodec/Makefile \
1858           libavcodec/libpostproc/Makefile \
1859           libavutil/Makefile \
1860           tests/Makefile \
1861           vhook/Makefile \
1862           doc/Makefile \
1863           doc/texi2pod.pl \
1864           "
1865     for dir in $DIRS ; do
1866             mkdir -p $dir
1867     done
1868     for f in $FILES ; do
1869         ln -sf "$source_path/$f" $f
1870     done
1871     echo "SRC_PATH=$source_path" >> config.mak
1872 else
1873     echo "SRC_PATH='$source_path'" >> config.mak
1874 fi
1875
1876 if test "$amr_wb" = "yes" ; then
1877   echo "#define AMR_WB 1" >> $TMPH
1878   echo "AMR_WB=yes" >> config.mak
1879   echo
1880   echo "AMR WB FLOAT NOTICE ! Make sure you have downloaded TS26.204"
1881   echo "V5.1.0 from "
1882   echo "http://www.3gpp.org/ftp/Specs/archive/26_series/26.204/26204-510.zip"
1883   echo "and extracted the source to libavcodec/amrwb_float"
1884   echo
1885 fi
1886
1887 if test "$amr_nb" = "yes" ; then
1888   echo "#define AMR_NB 1" >> $TMPH
1889   echo "AMR_NB=yes" >> config.mak
1890   echo
1891 if test "$amr_nb_fixed" = "yes" ; then
1892   echo "AMR_NB_FIXED=yes" >> config.mak
1893   echo "#define AMR_NB_FIXED 1" >> $TMPH
1894   echo "AMR NB FIXED POINT NOTICE! Make sure you have downloaded TS26.073 "
1895   echo "REL-5 version 5.1.0 from "
1896   echo "http://www.3gpp.org/ftp/Specs/latest/Rel-5/26_series/26073-5??.zip"
1897   echo "and extracted src to libavcodec/amr"
1898   echo "You must also add -DMMS_IO and remove -pedantic-errors to/from CFLAGS in libavcodec/amr/makefile."
1899   echo "i.e. CFLAGS = -Wall -I. \$(CFLAGS_\$(MODE)) -D\$(VAD) -DMMS_IO"
1900   echo
1901 else
1902   echo "AMR NB FLOAT NOTICE ! Make sure you have downloaded TS26.104"
1903   echo "REL-5 V5.1.0 from "
1904   echo "http://www.3gpp.org/ftp/Specs/latest/Rel-5/26_series/26104-5??.zip"
1905   echo "and extracted the source to libavcodec/amr_float"
1906   echo "and if u try this on an alpha, u may need to change Word32 to int in amr/typedef.h"
1907   echo
1908 fi
1909
1910 if test "$amr_if2" = "yes" ; then
1911   echo "AMR_CFLAGS=-DIF2=1" >> config.mak
1912 fi
1913
1914 fi
1915
1916 for codec in $CODEC_LIST ; do
1917     echo "#define CONFIG_`echo $codec | tr a-z A-Z` 1" >> $TMPH
1918     echo "CONFIG_`echo $codec | tr a-z A-Z`=yes" >> config.mak
1919 done
1920
1921 diff $TMPH config.h >/dev/null 2>&1
1922 if test $? -ne 0 ; then
1923         mv -f $TMPH config.h
1924 else
1925         echo "config.h is unchanged"
1926 fi
1927
1928 rm -f $TMPO $TMPC $TMPE $TMPS $TMPH
1929
1930
1931 # build pkg-config files libav*.pc and libpostproc.pc
1932 # libavutil.pc
1933 cat <<EOF >libavutil.pc
1934 prefix=$prefix
1935 exec_prefix=\${prefix}
1936 libdir=\${exec_prefix}/lib
1937 includedir=\${prefix}/include
1938
1939 Name: libavutil
1940 Description: FFmpeg utility library
1941 Version: $lavu_version
1942 Requires:
1943 Conflicts:
1944 Libs: -L\${libdir} -lavutil
1945 Cflags: -I\${includedir} -I\${includedir}/ffmpeg
1946 EOF
1947
1948 cat <<EOF >libavutil-uninstalled.pc
1949 prefix=
1950 exec_prefix=
1951 libdir=\${pcfiledir}/libavutil
1952 includedir=\${pcfiledir}/libavutil
1953
1954 Name: libavutil
1955 Description: FFmpeg utility library
1956 Version: $lavu_version
1957 Requires:
1958 Conflicts:
1959 Libs: \${libdir}/${LIBPREF}avutil${LIBSUF}
1960 Cflags: -I\${includedir}
1961 EOF
1962
1963 # libavcodec.pc
1964 cat <<EOF >libavcodec.pc
1965 prefix=$prefix
1966 exec_prefix=\${prefix}
1967 libdir=\${exec_prefix}/lib
1968 includedir=\${prefix}/include
1969
1970 Name: libavcodec
1971 Description: FFmpeg codec library
1972 Version: $lavc_version
1973 Requires: $pkg_requires libavutil = $lavu_version
1974 Conflicts:
1975 Libs: -L\${libdir} -lavcodec $extralibs
1976 Cflags: -I\${includedir} -I\${includedir}/ffmpeg
1977 EOF
1978
1979 cat <<EOF >libavcodec-uninstalled.pc
1980 prefix=
1981 exec_prefix=
1982 libdir=\${pcfiledir}/libavcodec
1983 includedir=\${pcfiledir}/libavcodec
1984
1985 Name: libavcodec
1986 Description: FFmpeg codec library
1987 Version: $lavc_version
1988 Requires: $pkg_requires libavutil = $lavu_version
1989 Conflicts:
1990 Libs: \${libdir}/${LIBPREF}avcodec${LIBSUF} $extralibs
1991 Cflags: -I\${includedir}
1992 EOF
1993
1994 # libavformat.pc
1995 cat <<EOF >libavformat.pc
1996 prefix=$prefix
1997 exec_prefix=\${prefix}
1998 libdir=\${exec_prefix}/lib
1999 includedir=\${prefix}/include
2000
2001 Name: libavformat
2002 Description: FFmpeg container format library
2003 Version: $lavf_version
2004 Requires: $pkg_requires libavcodec = $lavc_version
2005 Conflicts:
2006 Libs: -L\${libdir} -lavformat $extralibs
2007 Cflags: -I\${includedir} -I\${includedir}/ffmpeg
2008 EOF
2009
2010 cat <<EOF >libavformat-uninstalled.pc
2011 prefix=
2012 exec_prefix=
2013 libdir=\${pcfiledir}/libavformat
2014 includedir=\${pcfiledir}/libavformat
2015
2016 Name: libavformat
2017 Description: FFmpeg container format library
2018 Version: $lavf_version
2019 Requires: $pkg_requires libavcodec = $lavc_version
2020 Conflicts:
2021 Libs: \${libdir}/${LIBPREF}avformat${LIBSUF} $extralibs
2022 Cflags: -I\${includedir}
2023 EOF
2024
2025
2026 # libpostproc.pc
2027 cat <<EOF >libpostproc.pc
2028 prefix=$prefix
2029 exec_prefix=\${prefix}
2030 libdir=\${exec_prefix}/lib
2031 includedir=\${prefix}/include
2032
2033 Name: libpostproc
2034 Description: FFmpeg post processing library
2035 Version: $lavc_version
2036 Requires:
2037 Conflicts:
2038 Libs: -L\${libdir} -lpostproc
2039 Cflags: -I\${includedir} -I\${includedir}/postproc
2040 EOF
2041
2042 cat <<EOF >libpostproc-uninstalled.pc
2043 prefix=
2044 exec_prefix=
2045 libdir=\${pcfiledir}/libavcodec/libpostproc
2046 includedir=\${pcfiledir}/libavcodec/libpostproc
2047
2048 Name: libpostproc
2049 Description: FFmpeg post processing library
2050 Version: $lavc_version
2051 Requires:
2052 Conflicts:
2053 Libs: \${libdir}/${LIBPREF}postproc${LIBSUF}
2054 Cflags: -I\${includedir}
2055 EOF