Commit | Line | Data |
---|---|---|
de6d9b64 | 1 | #!/bin/sh |
0f3cb305 | 2 | # |
5cbcf02c | 3 | # ffmpeg configure script (c) 2000, 2001, 2002 Fabrice Bellard |
0f3cb305 | 4 | # |
cf9d24ad DC |
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]" | |
cc973ecb | 16 | echo " --libdir=DIR install libs in DIR [PREFIX/lib]" |
cf9d24ad DC |
17 | echo " --mandir=DIR man documentation in DIR [PREFIX/man]" |
18 | echo " --enable-mp3lame enable mp3 encoding via libmp3lame [default=no]" | |
9146ca37 | 19 | echo " --enable-libogg enable ogg support via libogg [default=no]" |
5c5dea3f NB |
20 | echo " --enable-vorbis enable vorbis support via libvorbis [default=no]" |
21 | echo " --enable-theora enable theora support via libtheora [default=no]" | |
cf9d24ad DC |
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]" | |
1ddadfa9 | 25 | echo " --enable-xvid enable xvid support via xvidcore [default=no]" |
6662ec29 | 26 | echo " --enable-x264 enable H.264 encoding via x264 [default=no]" |
cf9d24ad DC |
27 | echo " --enable-mingw32 enable mingw32 native/cross windows compile" |
28 | echo " --enable-a52 enable GPL'ed A52 support [default=no]" | |
29 | echo " --enable-a52bin open liba52.so.0 at runtime [default=no]" | |
23c99253 | 30 | echo " --enable-dts enable GPL'ed DTS support [default=no]" |
cf9d24ad DC |
31 | echo " --enable-pp enable GPL'ed post processing support [default=no]" |
32 | echo " --enable-shared-pp use libpostproc.so [default=no]" | |
33 | echo " --enable-shared build shared libraries [default=no]" | |
34 | echo " --enable-amr_nb enable amr_nb float audio codec" | |
35 | echo " --enable-amr_nb-fixed use fixed point for amr-nb codec" | |
64cba748 | 36 | echo " --enable-amr_wb enable amr_wb float audio codec" |
cf9d24ad | 37 | echo " --enable-sunmlib use Sun medialib [default=no]" |
9c3d33d6 | 38 | echo " --enable-pthreads use pthreads [default=no]" |
f02be79d | 39 | echo " --enable-dc1394 enable IIDC-1394 grabbing using libdc1394 and libraw1394 [default=no]" |
b2e3c528 | 40 | echo " --enable-gpl allow use of gpl code, the resulting libav* and ffmpeg will be under gpl [default=no]" |
cf9d24ad DC |
41 | echo "" |
42 | echo "Advanced options (experts only):" | |
43 | echo " --source-path=PATH path of source code [$source_path]" | |
44 | echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]" | |
45 | echo " --cc=CC use C compiler CC [$cc]" | |
46 | echo " --make=MAKE use specified make [$make]" | |
47 | echo " --extra-cflags=ECFLAGS add ECFLAGS to CFLAGS [$CFLAGS]" | |
48 | echo " --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]" | |
49 | echo " --extra-libs=ELIBS add ELIBS [$ELIBS]" | |
eb94aca9 | 50 | echo " --build-suffix=SUFFIX suffix for application specific build []" |
cf9d24ad DC |
51 | echo " --cpu=CPU force cpu to CPU [$cpu]" |
52 | echo " --tune=PROCESSOR tune code for a particular CPU (may fails or misperforms on other CPUs)" | |
53 | echo " --powerpc-perf-enable enable performance report on PPC (requires enabling PMC)" | |
54 | echo " --disable-mmx disable mmx usage" | |
55 | echo " --disable-altivec disable AltiVec usage" | |
56 | echo " --disable-audio-oss disable OSS audio support [default=no]" | |
57 | echo " --disable-audio-beos disable BeOS audio support [default=no]" | |
58 | echo " --disable-v4l disable video4linux grabbing [default=no]" | |
59 | echo " --disable-dv1394 disable DV1394 grabbing [default=no]" | |
60 | echo " --disable-network disable network support [default=no]" | |
61 | echo " --disable-zlib disable zlib [default=no]" | |
62 | echo " --disable-simple_idct disable simple IDCT routines [default=no]" | |
63 | echo " --disable-vhook disable video hooking support" | |
64 | echo " --enable-gprof enable profiling with gprof [$gprof]" | |
65 | echo " --disable-debug disable debugging symbols" | |
66 | echo " --disable-opts disable compiler optimizations" | |
67 | echo " --disable-mpegaudio-hp faster (but less accurate)" | |
68 | echo " mpegaudio decoding [default=no]" | |
69 | echo " --disable-ffserver disable ffserver build" | |
70 | echo " --disable-ffplay disable ffplay build" | |
cf9d24ad | 71 | echo " --enable-small optimize for size instead of speed" |
da9b170c | 72 | echo " --enable-memalign-hack emulate memalign, interferes with memory debuggers" |
65d1bea2 | 73 | echo " --disable-strip disable stripping of executables and shared libraries" |
5e3419b1 MN |
74 | echo " --enable-codec=codec enables codec" |
75 | echo " --disable-codec=codec disables codec" | |
009cf97d | 76 | echo " --disable-encoders disables all encoders" |
cf9d24ad DC |
77 | echo "" |
78 | echo "NOTE: The object files are build at the place where configure is launched" | |
79 | exit 1 | |
80 | fi | |
81 | ||
0f3cb305 | 82 | # set temporary file name |
57514323 | 83 | if test ! -z "$TMPDIR" ; then |
0f3cb305 | 84 | TMPDIR1="${TMPDIR}" |
57514323 | 85 | elif test ! -z "$TEMPDIR" ; then |
0f3cb305 | 86 | TMPDIR1="${TEMPDIR}" |
3d204385 | 87 | else |
0f3cb305 | 88 | TMPDIR1="/tmp" |
3d204385 NK |
89 | fi |
90 | ||
0f3cb305 FB |
91 | TMPC="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.c" |
92 | TMPO="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.o" | |
f3ec2d46 | 93 | TMPE="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}" |
0f3cb305 FB |
94 | TMPS="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.S" |
95 | TMPH="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.h" | |
96 | ||
de6d9b64 FB |
97 | # default parameters |
98 | prefix="/usr/local" | |
cc973ecb | 99 | libdir="" |
23a65308 | 100 | mandir="" |
951bf3e6 | 101 | bindir="" |
0f3cb305 | 102 | cross_prefix="" |
de6d9b64 FB |
103 | cc="gcc" |
104 | ar="ar" | |
be7109c1 | 105 | ranlib="ranlib" |
4a908fbc | 106 | make="make" |
0f3cb305 | 107 | strip="strip" |
de6d9b64 | 108 | cpu=`uname -m` |
a4adb608 | 109 | tune="generic" |
e45a2872 | 110 | powerpc_perf="no" |
0f3cb305 | 111 | mmx="default" |
ab6c65f6 | 112 | altivec="default" |
d46aba26 | 113 | mmi="default" |
de6d9b64 | 114 | case "$cpu" in |
ef0bc4c9 | 115 | i386|i486|i586|i686|i86pc|BePC) |
de6d9b64 | 116 | cpu="x86" |
de6d9b64 | 117 | ;; |
7bf9648e JM |
118 | x86_64|amd64) |
119 | cpu="x86" | |
120 | canon_arch="`cc -dumpmachine | sed -e 's,\([^-]*\)-.*,\1,'`" | |
121 | if [ x"$canon_arch" = x"x86_64" -o x"$canon_arch" = x"amd64" ]; then | |
122 | if [ -z "`echo $CFLAGS | grep -- -m32`" ]; then | |
123 | cpu="x86_64" | |
124 | fi | |
053dea12 AJ |
125 | fi |
126 | ;; | |
93caefc7 AB |
127 | # armv4l is a subset of armv5tel |
128 | armv4l|armv5tel) | |
6ed7422a | 129 | cpu="armv4l" |
6ed7422a | 130 | ;; |
91d1f1a4 NK |
131 | alpha) |
132 | cpu="alpha" | |
91d1f1a4 | 133 | ;; |
a43bd1d7 | 134 | "Power Macintosh"|ppc) |
90cee0c3 MN |
135 | cpu="powerpc" |
136 | ;; | |
d46aba26 LS |
137 | mips) |
138 | cpu="mips" | |
139 | ;; | |
bb476ff3 | 140 | sun4u|sparc64) |
a7beab73 RS |
141 | cpu="sparc64" |
142 | ;; | |
bb476ff3 JM |
143 | sparc) |
144 | cpu="sparc" | |
145 | ;; | |
bdb2e37c AB |
146 | sh4) |
147 | cpu="sh4" | |
148 | ;; | |
de6d9b64 | 149 | *) |
0f3cb305 | 150 | cpu="unknown" |
de6d9b64 FB |
151 | ;; |
152 | esac | |
153 | gprof="no" | |
5cbcf02c FB |
154 | v4l="yes" |
155 | audio_oss="yes" | |
dfdfa47c | 156 | audio_beos="no" |
8aa3ee32 | 157 | dv1394="yes" |
f02be79d | 158 | dc1394="no" |
5cbcf02c | 159 | network="yes" |
0147f198 | 160 | zlib="yes" |
a6741398 | 161 | mp3lame="no" |
9146ca37 | 162 | libogg="no" |
81e0d0b4 | 163 | vorbis="no" |
5c5dea3f | 164 | theora="no" |
0fc50e58 ZK |
165 | faad="no" |
166 | faadbin="no" | |
29d48296 | 167 | faac="no" |
1ddadfa9 | 168 | xvid="no" |
6662ec29 | 169 | x264="no" |
ba9261e5 | 170 | a52="no" |
57514323 | 171 | a52bin="no" |
23c99253 | 172 | dts="no" |
ba9261e5 | 173 | pp="no" |
bba9b16c | 174 | shared_pp="no" |
732d9245 | 175 | mingw32="no" |
3f027ca7 | 176 | cygwin="no" |
f3ec2d46 | 177 | os2="no" |
83286d2a | 178 | lshared="no" |
cddf3f45 GM |
179 | optimize="yes" |
180 | debug="yes" | |
65d1bea2 | 181 | dostrip="yes" |
ef0bc4c9 | 182 | extralibs="-lm" |
c02dbee1 | 183 | simpleidct="yes" |
0f3cb305 | 184 | bigendian="no" |
7f965c1c | 185 | inttypes="yes" |
b5c950c4 | 186 | emu_fast_int="no" |
a8721c09 | 187 | vhook="default" |
adbc0510 PG |
188 | dlfcn="no" |
189 | dlopen="no" | |
1eb2212e | 190 | mpegaudio_hp="yes" |
e1707f52 | 191 | SHFLAGS=-shared |
26b35efb | 192 | netserver="no" |
4baca069 | 193 | need_inet_aton="no" |
8154d2e0 | 194 | ffserver="yes" |
a86b921c | 195 | ffplay="yes" |
4baca069 PG |
196 | LDFLAGS=-Wl,--warn-common |
197 | FFSLDFLAGS=-Wl,-E | |
f3ec2d46 SG |
198 | LIBPREF="lib" |
199 | LIBSUF=".a" | |
200 | SLIBPREF="lib" | |
201 | SLIBSUF=".so" | |
951bf3e6 | 202 | EXESUF="" |
eb94aca9 | 203 | BUILDSUF="" |
891f64b3 | 204 | amr_nb="no" |
d663a1fd | 205 | amr_wb="no" |
bc634f6f | 206 | amr_nb_fixed="no" |
2a515c08 | 207 | amr_if2="no" |
f80f7964 | 208 | sunmlib="no" |
9c3d33d6 | 209 | pthreads="no" |
b2e3c528 | 210 | gpl="no" |
da9b170c | 211 | memalignhack="no" |
ef0bc4c9 FR |
212 | |
213 | # OS specific | |
214 | targetos=`uname -s` | |
215 | case $targetos in | |
216 | BeOS) | |
217 | prefix="/boot/home/config" | |
218 | # helps building libavcodec | |
cddf3f45 | 219 | CFLAGS="-DPIC -fomit-frame-pointer" |
31ba0b4d | 220 | # 3 gcc releases known for BeOS, each with ugly bugs |
b2924696 | 221 | gcc_version="`$cc -v 2>&1 | grep version | cut -d ' ' -f3-`" |
31ba0b4d FR |
222 | case "$gcc_version" in |
223 | 2.9-beos-991026*|2.9-beos-000224*) echo "R5/GG gcc" | |
224 | mmx="no" | |
225 | ;; | |
226 | *20010315*) echo "BeBits gcc" | |
227 | CFLAGS="$CFLAGS -fno-expensive-optimizations" | |
228 | ;; | |
229 | esac | |
e1707f52 MN |
230 | SHFLAGS=-nostart |
231 | # disable linux things | |
232 | audio_oss="no" | |
5cbcf02c | 233 | v4l="no" |
8aa3ee32 | 234 | dv1394="no" |
dfdfa47c FR |
235 | # enable beos things |
236 | audio_beos="yes" | |
ef0bc4c9 FR |
237 | # no need for libm, but the inet stuff |
238 | # Check for BONE | |
239 | if (echo $BEINCLUDES|grep 'headers/be/bone' >/dev/null); then | |
240 | extralibs="-lbind -lsocket" | |
241 | else | |
26b35efb | 242 | netserver="yes" |
4baca069 | 243 | need_inet_aton="yes" |
26b35efb | 244 | extralibs="-lnet" |
ef0bc4c9 | 245 | fi ;; |
4baca069 PG |
246 | SunOS) |
247 | v4l="no" | |
248 | audio_oss="no" | |
8aa3ee32 | 249 | dv1394="no" |
4baca069 PG |
250 | make="gmake" |
251 | LDFLAGS="" | |
252 | FFSLDFLAGS="" | |
253 | need_inet_aton="yes" | |
254 | extralibs="$extralibs -lsocket -lnsl" | |
255 | ;; | |
b7aa4a59 SS |
256 | NetBSD) |
257 | v4l="no" | |
258 | audio_oss="yes" | |
259 | dv1394="no" | |
260 | make="gmake" | |
261 | LDFLAGS="$LDFLAGS -export-dynamic" | |
262 | case `uname -r` in | |
263 | 2.*) extralibs="-lossaudio" | |
264 | ;; | |
265 | esac | |
266 | ;; | |
8c802695 JM |
267 | OpenBSD) |
268 | v4l="no" | |
269 | audio_oss="yes" | |
270 | dv1394="no" | |
271 | make="gmake" | |
272 | CFLAGS="$CFLAGS \$(PIC)" | |
273 | LDFLAGS="$LDFLAGS -export-dynamic -pthread" | |
274 | extralibs="$extralibs -lossaudio" | |
275 | ;; | |
9c938e77 PG |
276 | FreeBSD) |
277 | v4l="no" | |
278 | audio_oss="yes" | |
8aa3ee32 | 279 | dv1394="no" |
9c938e77 | 280 | make="gmake" |
12043e1d SS |
281 | CFLAGS="-pthread" |
282 | LDFLAGS="$LDFLAGS -export-dynamic -pthread" | |
9c938e77 | 283 | ;; |
4a908fbc | 284 | BSD/OS) |
5cbcf02c | 285 | v4l="no" |
6063bce7 | 286 | audio_oss="yes" |
8aa3ee32 | 287 | dv1394="no" |
4a908fbc AB |
288 | extralibs="-lpoll -lgnugetopt -lm" |
289 | make="gmake" | |
290 | ;; | |
90cee0c3 | 291 | Darwin) |
a43bd1d7 | 292 | cc="cc" |
90cee0c3 MN |
293 | v4l="no" |
294 | audio_oss="no" | |
8aa3ee32 | 295 | dv1394="no" |
d3b15036 | 296 | ffserver="no" |
a43bd1d7 | 297 | SHFLAGS="-dynamiclib" |
90cee0c3 | 298 | extralibs="" |
a43bd1d7 | 299 | darwin="yes" |
47930f09 | 300 | strip="strip -x" |
ad5a429c | 301 | LDFLAGS="-Wl,-d,-search_paths_first" |
4baca069 | 302 | FFSLDFLAGS=-Wl,-bind_at_load |
90cee0c3 | 303 | ;; |
732d9245 | 304 | MINGW32*) |
951bf3e6 FB |
305 | # Note: the rest of the mingw32 config is done afterwards as mingw32 |
306 | # can be forced on command line for linux cross compilation | |
732d9245 BE |
307 | mingw32="yes" |
308 | ;; | |
3f027ca7 FB |
309 | CYGWIN*) |
310 | v4l="no" | |
311 | audio_oss="yes" | |
8aa3ee32 | 312 | dv1394="no" |
487c2fad | 313 | ffserver="no" |
3f027ca7 FB |
314 | extralibs="" |
315 | cygwin="yes" | |
487c2fad | 316 | EXESUF=".exe" |
3f027ca7 FB |
317 | test -f /usr/include/inttypes.h || \ |
318 | test -f /usr/local/include/inttypes.h || \ | |
319 | echo "Missing inttypes.h, please copy cygwin_inttypes.h to" \ | |
24689bce | 320 | "/usr/local/include/inttypes.h !!!" |
3f027ca7 | 321 | ;; |
b55e4ef4 | 322 | Linux) |
4baca069 | 323 | LDFLAGS="$LDFLAGS -rdynamic" |
b55e4ef4 | 324 | ;; |
99614dd4 MB |
325 | IRIX*) |
326 | ranlib="echo ignoring ranlib" | |
327 | v4l="no" | |
328 | audio_oss="no" | |
329 | make="gmake" | |
330 | ;; | |
f3ec2d46 SG |
331 | OS/2) |
332 | TMPE=$TMPE".exe" | |
3ca4b654 | 333 | ar="emxomfar -p128" |
69db4e10 SG |
334 | ranlib="echo ignoring ranlib" |
335 | strip="echo ignoring strip" | |
cddf3f45 | 336 | CFLAGS="-Zomf" |
69db4e10 | 337 | LDFLAGS="-Zomf -Zstack 16384 -s" |
3ca4b654 | 338 | SHFLAGS="-Zdll -Zomf" |
f3ec2d46 SG |
339 | FFSLDFLAGS="" |
340 | LIBPREF="" | |
341 | LIBSUF=".lib" | |
342 | SLIBPREF="" | |
343 | SLIBSUF=".dll" | |
951bf3e6 | 344 | EXESUF=".exe" |
f3ec2d46 SG |
345 | extralibs="" |
346 | v4l="no" | |
347 | audio_oss="no" | |
8aa3ee32 | 348 | dv1394="no" |
f3ec2d46 SG |
349 | network="no" |
350 | ffserver="no" | |
3ca4b654 | 351 | vhook="no" |
f3ec2d46 | 352 | os2="yes" |
3ca4b654 | 353 | |
f3ec2d46 | 354 | ;; |
ef0bc4c9 FR |
355 | *) ;; |
356 | esac | |
de6d9b64 | 357 | |
6852ac95 RD |
358 | # From mplayer configure. We need TARGET_OS available |
359 | # to the Makefile, so it can distinguish between flavors | |
360 | # of AltiVec on PowerPC | |
361 | TARGET_OS=`( uname -s ) 2>&1` | |
362 | case "$TARGET_OS" in | |
2450cff2 | 363 | Linux|FreeBSD|NetBSD|BSD/OS|OpenBSD|SunOS|QNX|Darwin|GNU|BeOS) |
6852ac95 RD |
364 | ;; |
365 | IRIX*) | |
366 | TARGET_OS=IRIX | |
367 | ;; | |
368 | HP-UX*) | |
369 | TARGET_OS=HP-UX | |
370 | ;; | |
371 | [cC][yY][gG][wW][iI][nN]*) | |
372 | TARGET_OS=CYGWIN | |
373 | ;; | |
374 | *) | |
375 | TARGET_OS="$TARGET_OS-UNKNOWN" | |
376 | ;; | |
377 | esac | |
378 | ||
0f3cb305 FB |
379 | # find source path |
380 | # XXX: we assume an absolute path is given when launching configure, | |
381 | # except in './configure' case. | |
586bc755 | 382 | source_path="`echo $0 | sed -e 's#/configure##'`" |
0f3cb305 FB |
383 | source_path_used="yes" |
384 | if test -z "$source_path" -o "$source_path" = "." ; then | |
385 | source_path=`pwd` | |
386 | source_path_used="no" | |
de6d9b64 FB |
387 | fi |
388 | ||
f255e0ab MB |
389 | FFMPEG_CONFIGURATION=" " |
390 | for opt do | |
391 | FFMPEG_CONFIGURATION="$FFMPEG_CONFIGURATION""$opt " | |
392 | done | |
393 | ||
24a9ad7e | 394 | CODEC_LIST=`grep 'register_avcodec(&[a-z]' $source_path/libavcodec/allcodecs.c | sed 's/.*&\(.*\)).*/\1/'` |
009cf97d | 395 | |
de6d9b64 FB |
396 | for opt do |
397 | case "$opt" in | |
398 | --prefix=*) prefix=`echo $opt | cut -d '=' -f 2` | |
399 | ;; | |
cc973ecb LB |
400 | --libdir=*) libdir=`echo $opt | cut -d '=' -f 2` |
401 | ;; | |
23a65308 FB |
402 | --mandir=*) mandir=`echo $opt | cut -d '=' -f 2` |
403 | ;; | |
0f3cb305 FB |
404 | --source-path=*) source_path=`echo $opt | cut -d '=' -f 2` |
405 | ;; | |
406 | --cross-prefix=*) cross_prefix=`echo $opt | cut -d '=' -f 2` | |
407 | ;; | |
de6d9b64 FB |
408 | --cc=*) cc=`echo $opt | cut -d '=' -f 2` |
409 | ;; | |
4a908fbc AB |
410 | --make=*) make=`echo $opt | cut -d '=' -f 2` |
411 | ;; | |
f4e2c4b1 | 412 | --extra-cflags=*) CFLAGS="$CFLAGS ${opt#--extra-cflags=}" |
0f3cb305 | 413 | ;; |
f4e2c4b1 | 414 | --extra-ldflags=*) LDFLAGS="$LDFLAGS ${opt#--extra-ldflags=}" |
0f3cb305 FB |
415 | ;; |
416 | --extra-libs=*) extralibs=${opt#--extra-libs=} | |
417 | ;; | |
eb94aca9 CY |
418 | --build-suffix=*) BUILDSUF=${opt#--build-suffix=} |
419 | ;; | |
de6d9b64 FB |
420 | --cpu=*) cpu=`echo $opt | cut -d '=' -f 2` |
421 | ;; | |
a4adb608 MN |
422 | --tune=*) tune=`echo $opt | cut -d '=' -f 2` |
423 | ;; | |
e45a2872 RD |
424 | --powerpc-perf-enable) powerpc_perf="yes" |
425 | ;; | |
de6d9b64 FB |
426 | --disable-mmx) mmx="no" |
427 | ;; | |
ab6c65f6 BF |
428 | --disable-altivec) altivec="no" |
429 | ;; | |
de6d9b64 FB |
430 | --enable-gprof) gprof="yes" |
431 | ;; | |
5cbcf02c FB |
432 | --disable-v4l) v4l="no" |
433 | ;; | |
434 | --disable-audio-oss) audio_oss="no" | |
435 | ;; | |
dfdfa47c FR |
436 | --disable-audio-beos) audio_beos="no" |
437 | ;; | |
8aa3ee32 MK |
438 | --disable-dv1394) dv1394="no" |
439 | ;; | |
ffc0ef96 | 440 | --disable-network) network="no"; ffserver="no" |
5cbcf02c | 441 | ;; |
0147f198 FR |
442 | --disable-zlib) zlib="no" |
443 | ;; | |
ba9261e5 | 444 | --enable-a52) a52="yes" |
6ed7422a | 445 | ;; |
9c938e77 | 446 | --enable-a52bin) a52bin="yes" ; extralibs="$ldl $extralibs" |
57514323 | 447 | ;; |
23c99253 MN |
448 | --enable-dts) dts="yes" ; extralibs="$extralibs -ldts" |
449 | ;; | |
ba9261e5 | 450 | --enable-pp) pp="yes" |
bba9b16c MN |
451 | ;; |
452 | --enable-shared-pp) shared_pp="yes" | |
453 | ;; | |
a6741398 J |
454 | --enable-mp3lame) mp3lame="yes" |
455 | ;; | |
9146ca37 | 456 | --enable-libogg) libogg="yes" |
5c5dea3f | 457 | ;; |
81e0d0b4 MH |
458 | --enable-vorbis) vorbis="yes" |
459 | ;; | |
5c5dea3f NB |
460 | --enable-theora) theora="yes" |
461 | ;; | |
445ad18d ZK |
462 | --enable-faad) faad="yes" |
463 | ;; | |
464 | --enable-faadbin) faadbin="yes" | |
465 | ;; | |
29d48296 MN |
466 | --enable-faac) faac="yes" |
467 | ;; | |
1ddadfa9 AT |
468 | --enable-xvid) xvid="yes" |
469 | ;; | |
6662ec29 MN |
470 | --enable-x264) x264="yes"; extralibs="$extralibs -lx264" |
471 | ;; | |
f02be79d RS |
472 | --enable-dc1394) dc1394="yes" |
473 | ;; | |
68892110 PG |
474 | --disable-vhook) vhook="no" |
475 | ;; | |
c02dbee1 | 476 | --disable-simple_idct) simpleidct="no" |
045ed63f | 477 | ;; |
732d9245 BE |
478 | --enable-mingw32) mingw32="yes" |
479 | ;; | |
83286d2a | 480 | --enable-shared) lshared="yes" |
0319c531 | 481 | ;; |
cddf3f45 GM |
482 | --disable-debug) debug="no" |
483 | ;; | |
484 | --disable-opts) optimize="no" | |
485 | ;; | |
1eb2212e FB |
486 | --disable-mpegaudio-hp) mpegaudio_hp="no" |
487 | ;; | |
8154d2e0 FB |
488 | --disable-ffserver) ffserver="no" |
489 | ;; | |
a86b921c FB |
490 | --disable-ffplay) ffplay="no" |
491 | ;; | |
cddf3f45 | 492 | --enable-small) optimize="small" |
553a6284 | 493 | ;; |
891f64b3 | 494 | --enable-amr_nb) amr_nb="yes" |
495 | ;; | |
bc634f6f ZK |
496 | --enable-amr_nb-fixed) amr_nb_fixed="yes" |
497 | ;; | |
64cba748 MN |
498 | --enable-amr_wb) amr_wb="yes" |
499 | ;; | |
2a515c08 TM |
500 | --enable-amr_if2) amr_if2="yes" |
501 | ;; | |
f80f7964 RS |
502 | --enable-sunmlib) sunmlib="yes" |
503 | ;; | |
9c3d33d6 MN |
504 | --enable-pthreads) pthreads="yes" |
505 | ;; | |
b2e3c528 MN |
506 | --enable-gpl) gpl="yes" |
507 | ;; | |
da9b170c MN |
508 | --enable-memalign-hack) memalignhack="yes" |
509 | ;; | |
65d1bea2 MB |
510 | --disable-strip) dostrip="no" |
511 | ;; | |
009cf97d MN |
512 | --enable-codec=*) CODEC_LIST="$CODEC_LIST ${opt#--enable-codec=}" |
513 | ;; | |
514 | --disable-codec=*) CODEC_LIST="`echo $CODEC_LIST | sed -e \"s#${opt#--disable-codec=}##\"`" | |
515 | ;; | |
516 | --disable-encoders) CODEC_LIST="`echo $CODEC_LIST | sed 's/[-_a-zA-Z0-9]*encoder//g'`" | |
517 | ;; | |
de6d9b64 FB |
518 | esac |
519 | done | |
520 | ||
5c5dea3f | 521 | if test "$theora" = "yes" ; then |
9146ca37 MR |
522 | if test "$libogg" = "no"; then |
523 | echo "libogg must be enabled to enable Theora" | |
5c5dea3f NB |
524 | fail="yes" |
525 | theora="no" | |
526 | fi | |
527 | fi | |
528 | ||
529 | if test "$vorbis" = "yes" ; then | |
9146ca37 MR |
530 | if test "$libogg" = "no"; then |
531 | echo "libogg must be enabled to enable Vorbis" | |
5c5dea3f NB |
532 | fail="yes" |
533 | vorbis="no" | |
534 | fi | |
535 | fi | |
536 | ||
b2e3c528 MN |
537 | if test "$gpl" != "yes"; then |
538 | if test "$pp" != "no" -o "$shared_pp" != "no"; then | |
539 | echo "The Postprocessing code is under GPL and --enable-gpl is not specified" | |
540 | fail="yes" | |
541 | fi | |
542 | ||
543 | if test "$a52" != "no" -o "$a52bin" != "no"; then | |
544 | echo "liba52 is under GPL and --enable-gpl is not specified" | |
545 | fail="yes" | |
546 | fi | |
23c99253 | 547 | |
1ddadfa9 AT |
548 | if test "$xvid" != "no"; then |
549 | echo "libxvidcore is under GPL and --enable-gpl is not specified" | |
550 | fail="yes" | |
551 | fi | |
552 | ||
6662ec29 MN |
553 | if test "$x264" != "no"; then |
554 | echo "x264 is under GPL and --enable-gpl is not specified" | |
555 | fail="yes" | |
556 | fi | |
557 | ||
23c99253 MN |
558 | if test "$dts" != "no"; then |
559 | echo "libdts is under GPL and --enable-gpl is not specified" | |
560 | fail="yes" | |
561 | fi | |
b2e3c528 MN |
562 | |
563 | if test "$faad" != "no" -o "$faadbin" != "no"; then | |
564 | cat > $TMPC << EOF | |
565 | #include <faad.h> | |
566 | int main( void ) { return 0; } | |
567 | EOF | |
568 | ||
569 | if $cc $CFLAGS -o $TMPE $TMPC 2> /dev/null ; then | |
570 | cat > $TMPC << EOF | |
571 | #include <faad.h> | |
572 | #ifndef FAAD2_VERSION | |
573 | ok faad1 | |
574 | #endif | |
575 | int main( void ) { return 0; } | |
576 | EOF | |
577 | if $cc $CFLAGS -o $TMPE $TMPC 2> /dev/null ; then | |
578 | echo "faad2 is under GPL and --enable-gpl is not specified" | |
579 | fail="yes" | |
580 | fi | |
581 | else | |
582 | faad="no" | |
583 | faadbin="no" | |
584 | echo "faad test failed" | |
585 | fi | |
586 | fi | |
587 | ||
588 | ||
a18b5183 | 589 | if test "$fail" = "yes"; then |
b2e3c528 MN |
590 | exit 1 |
591 | fi | |
592 | fi | |
593 | ||
0f3cb305 FB |
594 | # compute mmx state |
595 | if test $mmx = "default"; then | |
053dea12 | 596 | if test $cpu = "x86" -o $cpu = "x86_64"; then |
0f3cb305 FB |
597 | mmx="yes" |
598 | else | |
599 | mmx="no" | |
600 | fi | |
601 | fi | |
602 | ||
cf9d24ad | 603 | #Darwin CC versions |
75388c74 | 604 | needmdynamicnopic="no" |
cf9d24ad | 605 | if test $targetos = Darwin; then |
b2924696 | 606 | if test -n "`$cc -v 2>&1 | grep xlc`"; then |
747a0554 | 607 | CFLAGS="$CFLAGS -qpdf2 -qlanglvl=extc99 -qmaxmem=-1 -qarch=auto -qtune=auto" |
cf9d24ad | 608 | else |
b2924696 | 609 | gcc_version="`$cc -v 2>&1 | grep version | cut -d ' ' -f3-`" |
cf9d24ad DC |
610 | case "$gcc_version" in |
611 | *2.95*) | |
747a0554 | 612 | CFLAGS="$CFLAGS -no-cpp-precomp -pipe -fomit-frame-pointer" |
cf9d24ad | 613 | ;; |
369a02c2 | 614 | *[34].*) |
747a0554 | 615 | CFLAGS="$CFLAGS -no-cpp-precomp -pipe -fomit-frame-pointer -force_cpusubtype_ALL -Wno-sign-compare" |
75388c74 MN |
616 | if test "$lshared" = no; then |
617 | needmdynamicnopic="yes" | |
618 | fi | |
cf9d24ad DC |
619 | ;; |
620 | *) | |
747a0554 | 621 | CFLAGS="$CFLAGS -no-cpp-precomp -pipe -fomit-frame-pointer" |
75388c74 MN |
622 | if test "$lshared" = no; then |
623 | needmdynamicnopic="yes" | |
624 | fi | |
cf9d24ad DC |
625 | ;; |
626 | esac | |
627 | fi | |
628 | fi | |
629 | ||
ab6c65f6 BF |
630 | # Can only do AltiVec on PowerPC |
631 | if test $altivec = "default"; then | |
632 | if test $cpu = "powerpc"; then | |
633 | altivec="yes" | |
634 | else | |
635 | altivec="no" | |
636 | fi | |
637 | fi | |
638 | ||
a4adb608 MN |
639 | # Add processor-specific flags |
640 | TUNECPU="generic" | |
9007f514 | 641 | POWERPCMODE="32bits" |
a4adb608 MN |
642 | if test $tune != "generic"; then |
643 | case $tune in | |
644 | 601|ppc601|PowerPC601) | |
645 | CFLAGS="$CFLAGS -mcpu=601" | |
646 | if test $altivec = "yes"; then | |
647 | echo "WARNING: tuning for PPC601 but altivec enabled !"; | |
648 | fi | |
649 | TUNECPU=ppc601 | |
650 | ;; | |
651 | 603*|ppc603*|PowerPC603*) | |
652 | CFLAGS="$CFLAGS -mcpu=603" | |
653 | if test $altivec = "yes"; then | |
654 | echo "WARNING: tuning for PPC603 but altivec enabled !"; | |
655 | fi | |
656 | TUNECPU=ppc603 | |
657 | ;; | |
658 | 604*|ppc604*|PowerPC604*) | |
659 | CFLAGS="$CFLAGS -mcpu=604" | |
660 | if test $altivec = "yes"; then | |
661 | echo "WARNING: tuning for PPC604 but altivec enabled !"; | |
662 | fi | |
663 | TUNECPU=ppc604 | |
664 | ;; | |
8d6625b6 | 665 | G3|g3|75*|ppc75*|PowerPC75*) |
fe0f2a97 | 666 | CFLAGS="$CFLAGS -mcpu=750 -mtune=750 -mpowerpc-gfxopt" |
a4adb608 MN |
667 | if test $altivec = "yes"; then |
668 | echo "WARNING: tuning for PPC75x but altivec enabled !"; | |
669 | fi | |
670 | TUNECPU=ppc750 | |
671 | ;; | |
8d6625b6 | 672 | G4|g4|745*|ppc745*|PowerPC745*) |
fe0f2a97 | 673 | CFLAGS="$CFLAGS -mcpu=7450 -mtune=7450 -mpowerpc-gfxopt" |
3efd4952 RD |
674 | if test $altivec = "no"; then |
675 | echo "WARNING: tuning for PPC745x but altivec disabled !"; | |
676 | fi | |
677 | TUNECPU=ppc7450 | |
678 | ;; | |
679 | 74*|ppc74*|PowerPC74*) | |
fe0f2a97 | 680 | CFLAGS="$CFLAGS -mcpu=7400 -mtune=7400 -mpowerpc-gfxopt" |
a4adb608 MN |
681 | if test $altivec = "no"; then |
682 | echo "WARNING: tuning for PPC74xx but altivec disabled !"; | |
683 | fi | |
e45a2872 | 684 | TUNECPU=ppc7400 |
a4adb608 | 685 | ;; |
8d6625b6 | 686 | G5|g5|970|ppc970|PowerPC970|power4*|Power4*) |
9007f514 | 687 | CFLAGS="$CFLAGS -mcpu=970 -mtune=970 -mpowerpc-gfxopt -mpowerpc64" |
a4adb608 MN |
688 | if test $altivec = "no"; then |
689 | echo "WARNING: tuning for PPC970 but altivec disabled !"; | |
690 | fi | |
691 | TUNECPU=ppc970 | |
9007f514 | 692 | POWERPCMODE="64bits" |
a4adb608 | 693 | ;; |
efc39ba8 MR |
694 | 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) |
695 | CFLAGS="$CFLAGS -march=$tune" | |
696 | ;; | |
a4adb608 | 697 | *) |
efc39ba8 | 698 | echo "WARNING: unknown CPU \"$tune\", ignored" |
a4adb608 MN |
699 | ;; |
700 | esac | |
701 | fi | |
702 | ||
cf9d24ad | 703 | # AltiVec flags: The FSF version of GCC differs from the Apple version |
b6e52719 MD |
704 | if test $cpu = "powerpc"; then |
705 | if test $altivec = "yes"; then | |
b2924696 | 706 | if test -n "`$cc -v 2>&1 | grep version | grep Apple`"; then |
b6e52719 MD |
707 | CFLAGS="$CFLAGS -faltivec" |
708 | else | |
709 | CFLAGS="$CFLAGS -maltivec -mabi=altivec" | |
710 | fi | |
711 | fi | |
712 | fi | |
713 | ||
a9a07762 MN |
714 | # See if we have <altivec.h> |
715 | cat > $TMPC << EOF | |
716 | #include <altivec.h> | |
717 | int main( void ) { return 0; } | |
718 | EOF | |
719 | ||
720 | _altivec_h="no" | |
b6e52719 | 721 | if $cc $CFLAGS -o $TMPE $TMPC 2> /dev/null ; then |
a9a07762 MN |
722 | _altivec_h="yes" |
723 | fi | |
724 | ||
ab6c65f6 BF |
725 | # See does our compiler support Motorola AltiVec C API |
726 | if test $altivec = "yes"; then | |
a9a07762 | 727 | if test $_altivec_h = "yes"; then |
ab6c65f6 | 728 | cat > $TMPC << EOF |
a9a07762 | 729 | #include <altivec.h> |
ab6c65f6 BF |
730 | int main(void) { |
731 | vector signed int v1, v2, v3; | |
732 | v1 = vec_add(v2,v3); | |
733 | return 0; | |
734 | } | |
735 | EOF | |
a9a07762 MN |
736 | else |
737 | cat > $TMPC << EOF | |
738 | int main(void) { | |
739 | vector signed int v1, v2, v3; | |
740 | v1 = vec_add(v2,v3); | |
741 | return 0; | |
742 | } | |
743 | EOF | |
744 | fi | |
b6e52719 | 745 | $cc $CFLAGS -o $TMPE $TMPC 2> /dev/null || altivec="no" |
ab6c65f6 BF |
746 | fi |
747 | ||
d46aba26 LS |
748 | # Can only do mmi on mips |
749 | if test $mmi = "default"; then | |
750 | if test $cpu = "mips"; then | |
751 | mmi="yes" | |
752 | else | |
753 | mmi="no" | |
754 | fi | |
755 | fi | |
756 | ||
757 | # See does our compiler support mmi | |
758 | if test $mmi = "yes"; then | |
759 | cat > $TMPC << EOF | |
760 | int main(void) { | |
761 | __asm__ ("lq \$2, 0(\$2)"); | |
762 | return 0; | |
763 | } | |
764 | EOF | |
f3ec2d46 | 765 | $cc -o $TMPE $TMPC 2> /dev/null || mmi="no" |
d46aba26 LS |
766 | fi |
767 | ||
732d9245 | 768 | if test "$mingw32" = "yes" ; then |
732d9245 BE |
769 | v4l="no" |
770 | audio_oss="no" | |
8aa3ee32 | 771 | dv1394="no" |
f02be79d | 772 | dc1394="no" |
951bf3e6 | 773 | ffserver="no" |
732d9245 | 774 | network="no" |
951bf3e6 FB |
775 | LIBPREF="" |
776 | LIBSUF=".lib" | |
777 | SLIBPREF="" | |
778 | SLIBSUF=".dll" | |
779 | EXESUF=".exe" | |
780 | prefix="/c/Program Files/FFmpeg" | |
781 | bindir="$prefix" | |
732d9245 BE |
782 | fi |
783 | ||
0f3cb305 FB |
784 | cc="${cross_prefix}${cc}" |
785 | ar="${cross_prefix}${ar}" | |
be7109c1 | 786 | ranlib="${cross_prefix}${ranlib}" |
0f3cb305 FB |
787 | strip="${cross_prefix}${strip}" |
788 | ||
487a54d7 FB |
789 | if test -z "$cross_prefix" ; then |
790 | ||
3d204385 | 791 | # --- |
a3999908 MN |
792 | # big/little endian test |
793 | cat > $TMPC << EOF | |
794 | #include <inttypes.h> | |
795 | int main(int argc, char ** argv){ | |
796 | volatile uint32_t i=0x01234567; | |
797 | return (*((uint8_t*)(&i))) == 0x67; | |
798 | } | |
799 | EOF | |
800 | ||
f3ec2d46 SG |
801 | if $cc -o $TMPE $TMPC 2>/dev/null ; then |
802 | $TMPE && bigendian="yes" | |
a3999908 MN |
803 | else |
804 | echo big/little test failed | |
805 | fi | |
806 | ||
487a54d7 FB |
807 | else |
808 | ||
809 | # if cross compiling, cannot launch a program, so make a static guess | |
810 | if test "$cpu" = "powerpc" -o "$cpu" = "mips" ; then | |
811 | bigendian="yes" | |
812 | fi | |
813 | ||
814 | fi | |
815 | ||
a3999908 | 816 | # --- |
7f965c1c CF |
817 | # *inttypes.h* test |
818 | cat > $TMPC << EOF | |
819 | #include <inttypes.h> | |
820 | int main(int argc, char ** argv){ | |
821 | return 0; | |
822 | } | |
823 | EOF | |
824 | ||
825 | $cc -o $TMPE $TMPC 2>/dev/null || inttypes="no" | |
826 | ||
827 | # --- | |
b5c950c4 MN |
828 | # *int_fast* test |
829 | cat > $TMPC << EOF | |
830 | #include <inttypes.h> | |
831 | int main(int argc, char ** argv){ | |
832 | volatile uint_fast64_t i=0x01234567; | |
833 | return 0; | |
834 | } | |
835 | EOF | |
836 | ||
837 | $cc -o $TMPE $TMPC 2>/dev/null || emu_fast_int="yes" | |
838 | ||
839 | # --- | |
3d204385 NK |
840 | # check availability of some header files |
841 | ||
842 | cat > $TMPC << EOF | |
843 | #include <malloc.h> | |
844 | int main( void ) { return 0; } | |
845 | EOF | |
846 | ||
847 | _memalign=no | |
848 | _malloc_h=no | |
f3ec2d46 | 849 | if $cc -o $TMPE $TMPC 2> /dev/null ; then |
3d204385 NK |
850 | _malloc_h=yes |
851 | _memalign=yes | |
852 | # check for memalign - atmos | |
853 | cat > $TMPC << EOF | |
487c2fad | 854 | #include <stdio.h> |
3d204385 NK |
855 | #include <malloc.h> |
856 | int main ( void ) { | |
857 | char *string = NULL; | |
858 | string = memalign(64, sizeof(char)); | |
859 | return 0; | |
860 | } | |
861 | EOF | |
f3ec2d46 | 862 | $cc -o $TMPE $TMPC 2> /dev/null || _memalign=no |
3d204385 NK |
863 | fi |
864 | ||
8bf5d58f MN |
865 | if test "$_memalign" = "no" -a "$mmx" = "yes" -a "$memalignhack" != "yes"; then |
866 | echo "error, no memalign() but sse enabled, either disable it or use --enable-memalign-hack" | |
867 | exit 1 | |
868 | fi | |
869 | ||
68892110 | 870 | cat > $TMPC << EOF |
5e4639e2 GM |
871 | #include <time.h> |
872 | int main( void ) { localtime_r(NULL, NULL); } | |
873 | EOF | |
874 | ||
875 | localtime_r=no | |
876 | if $cc -o $TMPE $TMPC 2> /dev/null ; then | |
877 | localtime_r=yes | |
878 | fi | |
879 | ||
0147f198 FR |
880 | if test "$zlib" = "yes"; then |
881 | # check for zlib - mmu_man | |
882 | cat > $TMPC << EOF | |
883 | #include <zlib.h> | |
884 | int main ( void ) { | |
885 | if (zlibVersion() != ZLIB_VERSION) | |
886 | puts("zlib version differs !!!"); | |
887 | return 1; | |
888 | return 0; | |
889 | } | |
890 | EOF | |
e27ca59b | 891 | $cc $CFLAGS $LDFLAGS -o $TMPE $TMPC -lz 2> /dev/null || zlib="no" |
f3ec2d46 | 892 | # $TMPE 2> /dev/null > /dev/null || zlib="no" |
0147f198 FR |
893 | # XXX: more tests needed - runtime test |
894 | fi | |
895 | if test "$zlib" = "yes"; then | |
896 | extralibs="$extralibs -lz" | |
897 | fi | |
898 | ||
95e2ce4a MN |
899 | # test for lrintf in math.h |
900 | cat > $TMPC << EOF | |
901 | #define _ISOC9X_SOURCE 1 | |
902 | #include <math.h> | |
903 | int main( void ) { return (lrintf(3.999f) > 0)?0:1; } | |
904 | EOF | |
905 | ||
906 | have_lrintf="no" | |
f3ec2d46 | 907 | if $cc $extralibs -o $TMPE $TMPC 2> /dev/null ; then |
95e2ce4a | 908 | have_lrintf="yes" |
c2b9685e MN |
909 | # allanc@chickenandporn.com: cannot execute cross-compiled |
910 | # code on the host. Only execute if not cross-compiling. | |
911 | if test -z "$cross_prefix" ; then | |
912 | $TMPE 2> /dev/null > /dev/null || have_lrintf="no" | |
913 | fi | |
95e2ce4a MN |
914 | fi |
915 | ||
c13e1abd FH |
916 | _restrict= |
917 | for restrict_keyword in restrict __restrict__ __restrict; do | |
918 | echo "void foo(char * $restrict_keyword p);" > $TMPC | |
919 | if $cc -c -o $TMPO $TMPC 2> /dev/null; then | |
920 | _restrict=$restrict_keyword | |
921 | break; | |
922 | fi | |
923 | done | |
924 | ||
52b41d7f FB |
925 | # test gcc version to see if vector builtins can be used |
926 | # currently only used on i386 for MMX builtins | |
927 | cat > $TMPC << EOF | |
053dea12 | 928 | #include <xmmintrin.h> |
52b41d7f FB |
929 | int main(void) { |
930 | #if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 2) | |
931 | return 0; | |
932 | #else | |
933 | #error no vector builtins | |
934 | #endif | |
935 | } | |
936 | EOF | |
937 | ||
938 | builtin_vector=no | |
939 | if $cc -o $TMPO $TMPC 2> /dev/null ; then | |
940 | builtin_vector=yes | |
a8721c09 FB |
941 | fi |
942 | ||
943 | # dlopen/dlfcn.h probing | |
944 | ||
945 | cat > $TMPC << EOF | |
946 | #include <dlfcn.h> | |
947 | int main( void ) { return (int) dlopen("foo", 0); } | |
948 | EOF | |
949 | ||
950 | ldl=-ldl | |
951 | ||
cf9d24ad | 952 | if $cc -o $TMPE $TMPC -ldl > /dev/null 2>&1 ; then |
a8721c09 FB |
953 | dlfcn=yes |
954 | dlopen=yes | |
955 | fi | |
956 | ||
cf9d24ad | 957 | if $cc -o $TMPE $TMPC > /dev/null 2>&1 ; then |
a8721c09 FB |
958 | dlfcn=yes |
959 | dlopen=yes | |
960 | ldl="" | |
961 | fi | |
962 | ||
963 | cat > $TMPC << EOF | |
964 | int main( void ) { return (int) dlopen("foo", 0); } | |
965 | EOF | |
966 | ||
cf9d24ad | 967 | if $cc -o $TMPE $TMPC -ldl > /dev/null 2>&1 ; then |
a8721c09 FB |
968 | dlopen=yes |
969 | fi | |
970 | ||
cf9d24ad | 971 | if $cc -o $TMPE $TMPC > /dev/null 2>&1 ; then |
a8721c09 FB |
972 | dlopen=yes |
973 | ldl="" | |
974 | fi | |
975 | ||
976 | if test "$vhook" = "default" ; then | |
977 | vhook="$dlopen" | |
978 | fi | |
979 | ||
a86b921c FB |
980 | ########################################## |
981 | # imlib probe | |
982 | ||
a8721c09 FB |
983 | cat > $TMPC << EOF |
984 | #include <X11/Xlib.h> | |
985 | #include <Imlib2.h> | |
986 | int main( void ) { return (int) imlib_load_font("foo"); } | |
987 | EOF | |
988 | ||
989 | imlib2=no | |
7802d373 | 990 | if $cc -o $TMPE $TMPC -lImlib2 -lm > /dev/null 2>&1 ; then |
a8721c09 | 991 | imlib2=yes |
52b41d7f FB |
992 | fi |
993 | ||
a86b921c FB |
994 | ########################################## |
995 | # freetype probe | |
996 | ||
04511d53 PG |
997 | cat > $TMPC << EOF |
998 | #include <ft2build.h> | |
999 | int main( void ) { return (int) FT_Init_FreeType(0); } | |
1000 | EOF | |
1001 | ||
1002 | freetype2=no | |
69db4e10 | 1003 | if test "x$targetos" != "xBeOS" && test "$os2" != "yes"; then |
e2a3cd59 | 1004 | if (freetype-config --version) >/dev/null 2>&1 ; then |
cf9d24ad | 1005 | if $cc -o $TMPE $TMPC `freetype-config --cflags` `freetype-config --libs` > /dev/null 2>&1 ; then |
dee076fc | 1006 | freetype2=yes |
04511d53 | 1007 | fi |
dee076fc | 1008 | fi |
04511d53 PG |
1009 | fi |
1010 | ||
a86b921c FB |
1011 | ########################################## |
1012 | # SDL probe | |
1013 | ||
1014 | cat > $TMPC << EOF | |
1015 | #include <SDL.h> | |
31319a8c | 1016 | #undef main /* We don't want SDL to override our main() */ |
a86b921c FB |
1017 | int main( void ) { return SDL_Init (SDL_INIT_VIDEO); } |
1018 | EOF | |
1019 | ||
1020 | sdl_too_old=no | |
1021 | sdl=no | |
e2a3cd59 | 1022 | if (sdl-config --version) >/dev/null 2>&1 ; then |
cf9d24ad | 1023 | if $cc -o $TMPE `sdl-config --cflags` $TMPC `sdl-config --libs` > /dev/null 2>&1 ; then |
a86b921c FB |
1024 | _sdlversion=`sdl-config --version | sed 's/[^0-9]//g'` |
1025 | if test "$_sdlversion" -lt 121 ; then | |
1026 | sdl_too_old=yes | |
1027 | else | |
1028 | sdl=yes | |
1029 | fi | |
1030 | fi | |
c3f6b472 | 1031 | fi |
a86b921c | 1032 | |
146ea952 NB |
1033 | ########################################## |
1034 | # texi2html probe | |
1035 | ||
1036 | texi2html=no | |
e2a3cd59 | 1037 | if (texi2html -version) >/dev/null 2>&1; then |
146ea952 NB |
1038 | texi2html=yes |
1039 | fi | |
1040 | ||
7a91333f HZ |
1041 | if test "$network" = "yes" ; then |
1042 | ########################################## | |
1043 | # IPv6 probe | |
1044 | ||
1045 | cat > $TMPC << EOF | |
1046 | #include <sys/types.h> | |
1047 | #include <sys/socket.h> | |
1048 | #include <netinet/in.h> | |
1049 | #include <netdb.h> | |
1050 | int main( void ) { | |
1051 | struct sockaddr_storage saddr; | |
1052 | struct ipv6_mreq mreq6; | |
1053 | getaddrinfo(0,0,0,0); | |
1054 | getnameinfo(0,0,0,0,0,0,0); | |
1055 | IN6_IS_ADDR_MULTICAST(0); | |
1056 | } | |
1057 | EOF | |
1058 | ||
1059 | ipv6=no | |
1060 | if $cc -o $TMPE $TMPC > /dev/null 2>&1 ; then | |
1061 | ipv6=yes | |
1062 | fi | |
1063 | fi | |
1064 | ||
b2924696 | 1065 | case "`$cc -v 2>&1 | grep version`" in |
cf9d24ad | 1066 | *gcc*) |
2f3eca08 | 1067 | CFLAGS="-Wall -Wno-switch $CFLAGS" |
cf9d24ad DC |
1068 | ;; |
1069 | *) | |
1070 | ;; | |
1071 | esac | |
1072 | ||
94a3401e FB |
1073 | if test "$sdl" = "no" ; then |
1074 | ffplay=no | |
1075 | fi | |
1076 | ||
cddf3f45 | 1077 | if test "$debug" = "yes"; then |
7906085f | 1078 | CFLAGS="-g $CFLAGS" |
cddf3f45 GM |
1079 | fi |
1080 | ||
1081 | if test "$optimize" = "small"; then | |
98ca7790 | 1082 | # CFLAGS=${CFLAGS//-O3/-Os} |
553a6284 MN |
1083 | CFLAGS="$CFLAGS -Os" |
1084 | fi | |
1085 | ||
cddf3f45 | 1086 | if test "$optimize" = "yes"; then |
b2924696 | 1087 | if test -n "`$cc -v 2>&1 | grep xlc`"; then |
cf9d24ad DC |
1088 | CFLAGS="$CFLAGS -O5" |
1089 | LDFLAGS="$LDFLAGS -O5" | |
1090 | else | |
7906085f | 1091 | CFLAGS="-O3 $CFLAGS" |
cf9d24ad | 1092 | fi |
cddf3f45 GM |
1093 | fi |
1094 | ||
951bf3e6 FB |
1095 | if test x"$bindir" = x""; then |
1096 | bindir="${prefix}/bin" | |
1097 | fi | |
1098 | ||
cc973ecb LB |
1099 | if test x"$libdir" = x""; then |
1100 | libdir="${prefix}/lib" | |
1101 | fi | |
1102 | ||
23a65308 FB |
1103 | if test x"$mandir" = x""; then |
1104 | mandir="${prefix}/man" | |
1105 | fi | |
1106 | ||
de6d9b64 | 1107 | echo "Install prefix $prefix" |
0f3cb305 | 1108 | echo "Source path $source_path" |
de6d9b64 | 1109 | echo "C compiler $cc" |
4a908fbc | 1110 | echo "make $make" |
a4adb608 | 1111 | echo "CPU $cpu ($tune)" |
eb94aca9 CY |
1112 | if test "$BUILDSUF" != ""; then |
1113 | echo "Build suffix $BUILDSUF" | |
1114 | fi | |
0f3cb305 | 1115 | echo "Big Endian $bigendian" |
7f965c1c | 1116 | echo "inttypes.h $inttypes" |
b5c950c4 | 1117 | echo "broken inttypes.h $emu_fast_int" |
053dea12 | 1118 | if test $cpu = "x86" -o $cpu = "x86_64"; then |
de6d9b64 | 1119 | echo "MMX enabled $mmx" |
52b41d7f | 1120 | echo "Vector Builtins $builtin_vector" |
e41e8342 FB |
1121 | fi |
1122 | if test $cpu = "mips"; then | |
d46aba26 | 1123 | echo "MMI enabled $mmi" |
e41e8342 FB |
1124 | fi |
1125 | if test $cpu = "powerpc"; then | |
ab6c65f6 | 1126 | echo "AltiVec enabled $altivec" |
e41e8342 | 1127 | fi |
de6d9b64 | 1128 | echo "gprof enabled $gprof" |
0147f198 | 1129 | echo "zlib enabled $zlib" |
a6741398 | 1130 | echo "mp3lame enabled $mp3lame" |
9146ca37 | 1131 | echo "libogg enabled $libogg" |
81e0d0b4 | 1132 | echo "vorbis enabled $vorbis" |
5c5dea3f | 1133 | echo "theora enabled $theora" |
445ad18d ZK |
1134 | echo "faad enabled $faad" |
1135 | echo "faadbin enabled $faadbin" | |
29d48296 | 1136 | echo "faac enabled $faac" |
1ddadfa9 | 1137 | echo "xvid enabled $xvid" |
6662ec29 | 1138 | echo "x264 enabled $x264" |
5cbcf02c | 1139 | echo "a52 support $a52" |
57514323 | 1140 | echo "a52 dlopened $a52bin" |
23c99253 | 1141 | echo "dts support $dts" |
bba9b16c | 1142 | echo "pp support $pp" |
cddf3f45 | 1143 | echo "debug symbols $debug" |
65d1bea2 | 1144 | echo "strip symbols $dostrip" |
cddf3f45 | 1145 | echo "optimize $optimize" |
bba9b16c | 1146 | echo "shared pp $shared_pp" |
47930f09 | 1147 | echo "Video hooking $vhook" |
a86b921c FB |
1148 | echo "SDL support $sdl" |
1149 | if test $sdl_too_old = "yes"; then | |
1150 | echo "-> Your SDL version is too old - please upgrade to have FFplay/SDL support" | |
1151 | fi | |
68892110 PG |
1152 | |
1153 | if test "$vhook" = "yes" ; then | |
47930f09 | 1154 | echo "Imlib2 support $imlib2" |
04511d53 | 1155 | echo "freetype support $freetype2" |
68892110 | 1156 | fi |
f80f7964 | 1157 | echo "Sun medialib support" $sunmlib |
9c3d33d6 | 1158 | echo "pthreads support" $pthreads |
bc634f6f ZK |
1159 | echo "AMR-NB float support" $amr_nb |
1160 | echo "AMR-NB fixed support" $amr_nb_fixed | |
d663a1fd | 1161 | echo "AMR-WB float support" $amr_wb |
2a515c08 | 1162 | echo "AMR-WB IF2 support" $amr_if2 |
7a91333f HZ |
1163 | echo "network support $network" |
1164 | if test "$network" = "yes" ; then | |
1165 | echo "IPv6 support $ipv6" | |
1166 | fi | |
b2e3c528 MN |
1167 | if test "$gpl" = "no" ; then |
1168 | echo "License: LGPL" | |
1169 | else | |
1170 | echo "License: GPL" | |
1171 | fi | |
de6d9b64 | 1172 | |
980fc7b8 | 1173 | echo "Creating config.mak and config.h" |
de6d9b64 | 1174 | |
f255e0ab MB |
1175 | date >> config.log |
1176 | echo " $0 $FFMPEG_CONFIGURATION" >> config.log | |
980fc7b8 | 1177 | echo "# Automatically generated by configure - do not modify" > config.mak |
045ed63f | 1178 | echo "/* Automatically generated by configure - do not modify */" > $TMPH |
f255e0ab | 1179 | echo "#define FFMPEG_CONFIGURATION "'"'"$FFMPEG_CONFIGURATION"'"' >> $TMPH |
de6d9b64 | 1180 | |
980fc7b8 | 1181 | echo "prefix=$prefix" >> config.mak |
cc973ecb | 1182 | echo "libdir=$libdir" >> config.mak |
951bf3e6 | 1183 | echo "bindir=$bindir" >> config.mak |
23a65308 | 1184 | echo "mandir=$mandir" >> config.mak |
4a908fbc | 1185 | echo "MAKE=$make" >> config.mak |
980fc7b8 FB |
1186 | echo "CC=$cc" >> config.mak |
1187 | echo "AR=$ar" >> config.mak | |
be7109c1 | 1188 | echo "RANLIB=$ranlib" >> config.mak |
65d1bea2 | 1189 | if test "$dostrip" = "yes" ; then |
0f3cb305 | 1190 | echo "STRIP=$strip" >> config.mak |
65d1bea2 MB |
1191 | echo "INSTALLSTRIP=-s" >> config.mak |
1192 | else | |
1193 | echo "STRIP=echo ignoring strip" >> config.mak | |
1194 | echo "INSTALLSTRIP=" >> config.mak | |
1195 | fi | |
75388c74 MN |
1196 | |
1197 | # SHCFLAGS is a copy of CFLAGS without -mdynamic-no-pic. Used when building | |
1198 | # shared modules on OS/X (vhook/Makefile). | |
1199 | SHCFLAGS=$CFLAGS | |
1200 | if test "$needmdynamicnopic" = yes; then | |
1201 | CFLAGS="$CFLAGS -mdynamic-no-pic" | |
1202 | fi | |
1203 | ||
a9b3f630 | 1204 | echo "OPTFLAGS=$CFLAGS" >> config.mak |
75388c74 | 1205 | echo "SHCFLAGS=$SHCFLAGS">>config.mak |
0f3cb305 | 1206 | echo "LDFLAGS=$LDFLAGS" >> config.mak |
4baca069 | 1207 | echo "FFSLDFLAGS=$FFSLDFLAGS" >> config.mak |
e1707f52 | 1208 | echo "SHFLAGS=$SHFLAGS" >> config.mak |
eb94aca9 | 1209 | echo "BUILDSUF=$BUILDSUF" >> config.mak |
f3ec2d46 | 1210 | echo "LIBPREF=$LIBPREF" >> config.mak |
eb94aca9 | 1211 | echo "LIBSUF=\${BUILDSUF}$LIBSUF" >> config.mak |
f3ec2d46 | 1212 | echo "SLIBPREF=$SLIBPREF" >> config.mak |
eb94aca9 CY |
1213 | echo "SLIBSUF=\${BUILDSUF}$SLIBSUF" >> config.mak |
1214 | echo "EXESUF=\${BUILDSUF}$EXESUF" >> config.mak | |
6852ac95 | 1215 | echo "TARGET_OS=$TARGET_OS" >> config.mak |
57514323 | 1216 | if test "$cpu" = "x86" ; then |
980fc7b8 | 1217 | echo "TARGET_ARCH_X86=yes" >> config.mak |
045ed63f | 1218 | echo "#define ARCH_X86 1" >> $TMPH |
053dea12 AJ |
1219 | elif test "$cpu" = "x86_64" ; then |
1220 | echo "TARGET_ARCH_X86_64=yes" >> config.mak | |
1221 | echo "#define ARCH_X86_64 1" >> $TMPH | |
0f3cb305 | 1222 | elif test "$cpu" = "armv4l" ; then |
6ed7422a | 1223 | echo "TARGET_ARCH_ARMV4L=yes" >> config.mak |
045ed63f | 1224 | echo "#define ARCH_ARMV4L 1" >> $TMPH |
0f3cb305 | 1225 | elif test "$cpu" = "alpha" ; then |
91d1f1a4 | 1226 | echo "TARGET_ARCH_ALPHA=yes" >> config.mak |
045ed63f | 1227 | echo "#define ARCH_ALPHA 1" >> $TMPH |
35fedfc3 PG |
1228 | elif test "$cpu" = "sparc64" ; then |
1229 | echo "TARGET_ARCH_SPARC64=yes" >> config.mak | |
1230 | echo "#define ARCH_SPARC64 1" >> $TMPH | |
bb476ff3 JM |
1231 | echo "TARGET_ARCH_SPARC=yes" >> config.mak |
1232 | echo "#define ARCH_SPARC 1" >> $TMPH | |
1233 | elif test "$cpu" = "sparc" ; then | |
1234 | echo "TARGET_ARCH_SPARC=yes" >> config.mak | |
1235 | echo "#define ARCH_SPARC 1" >> $TMPH | |
0f3cb305 FB |
1236 | elif test "$cpu" = "powerpc" ; then |
1237 | echo "TARGET_ARCH_POWERPC=yes" >> config.mak | |
1238 | echo "#define ARCH_POWERPC 1" >> $TMPH | |
9007f514 RD |
1239 | if test $POWERPCMODE = "32bits"; then |
1240 | echo "#define POWERPC_MODE_32BITS 1" >> $TMPH | |
1241 | else | |
1242 | echo "#define POWERPC_MODE_64BITS 1" >> $TMPH | |
1243 | fi | |
e45a2872 RD |
1244 | if test "$powerpc_perf" = "yes"; then |
1245 | echo "#define POWERPC_PERFORMANCE_REPORT 1" >> $TMPH | |
1246 | fi | |
d46aba26 LS |
1247 | elif test "$cpu" = "mips" ; then |
1248 | echo "TARGET_ARCH_MIPS=yes" >> config.mak | |
1249 | echo "#define ARCH_MIPS 1" >> $TMPH | |
bdb2e37c AB |
1250 | elif test "$cpu" = "sh4" ; then |
1251 | echo "TARGET_ARCH_SH4=yes" >> config.mak | |
1252 | echo "#define ARCH_SH4 1" >> $TMPH | |
1253 | fi | |
a4adb608 | 1254 | echo "#define TUNECPU $TUNECPU" >> $TMPH |
0f3cb305 FB |
1255 | if test "$bigendian" = "yes" ; then |
1256 | echo "WORDS_BIGENDIAN=yes" >> config.mak | |
1257 | echo "#define WORDS_BIGENDIAN 1" >> $TMPH | |
91d1f1a4 | 1258 | fi |
d2a9bddd MN |
1259 | if test "$inttypes" != "yes" ; then |
1260 | echo "#define EMULATE_INTTYPES 1" >> $TMPH | |
7f965c1c | 1261 | fi |
b5c950c4 | 1262 | if test "$emu_fast_int" = "yes" ; then |
19d053c5 | 1263 | echo "#define EMULATE_FAST_INT 1" >> $TMPH |
b5c950c4 | 1264 | fi |
57514323 | 1265 | if test "$mmx" = "yes" ; then |
980fc7b8 | 1266 | echo "TARGET_MMX=yes" >> config.mak |
045ed63f | 1267 | echo "#define HAVE_MMX 1" >> $TMPH |
e82c5a8c | 1268 | echo "#define __CPU__ 586" >> $TMPH |
de6d9b64 | 1269 | fi |
52b41d7f FB |
1270 | if test "$builtin_vector" = "yes" ; then |
1271 | echo "TARGET_BUILTIN_VECTOR=yes" >> config.mak | |
1272 | echo "#define HAVE_BUILTIN_VECTOR 1" >> $TMPH | |
1273 | fi | |
d46aba26 LS |
1274 | if test "$mmi" = "yes" ; then |
1275 | echo "TARGET_MMI=yes" >> config.mak | |
1276 | echo "#define HAVE_MMI 1" >> $TMPH | |
1277 | fi | |
ab6c65f6 BF |
1278 | if test "$altivec" = "yes" ; then |
1279 | echo "TARGET_ALTIVEC=yes" >> config.mak | |
1280 | echo "#define HAVE_ALTIVEC 1" >> $TMPH | |
db40a39a MN |
1281 | echo "// Enable the next line to use the reference C code instead of AltiVec" >> $TMPH |
1282 | echo "// #define ALTIVEC_USE_REFERENCE_C_CODE 1" >> $TMPH | |
a9a07762 MN |
1283 | if test "$_altivec_h" = "yes" ; then |
1284 | echo "#define HAVE_ALTIVEC_H 1" >> $TMPH | |
1285 | else | |
e67e14d5 | 1286 | echo "#undef HAVE_ALTIVEC_H" >> $TMPH |
a9a07762 | 1287 | fi |
ab6c65f6 | 1288 | fi |
57514323 | 1289 | if test "$gprof" = "yes" ; then |
980fc7b8 | 1290 | echo "TARGET_GPROF=yes" >> config.mak |
045ed63f | 1291 | echo "#define HAVE_GPROF 1" >> $TMPH |
de6d9b64 | 1292 | fi |
5e4639e2 GM |
1293 | if test "$localtime_r" = "yes" ; then |
1294 | echo "#define HAVE_LOCALTIME_R 1" >> $TMPH | |
5e4639e2 | 1295 | fi |
68892110 PG |
1296 | if test "$imlib2" = "yes" ; then |
1297 | echo "HAVE_IMLIB2=yes" >> config.mak | |
1298 | fi | |
04511d53 PG |
1299 | if test "$freetype2" = "yes" ; then |
1300 | echo "HAVE_FREETYPE2=yes" >> config.mak | |
1301 | fi | |
f80f7964 RS |
1302 | if test "$sunmlib" = "yes" ; then |
1303 | echo "HAVE_MLIB=yes" >> config.mak | |
1304 | echo "#define HAVE_MLIB 1" >> $TMPH | |
1305 | extralibs="$extralibs -lmlib" | |
1306 | fi | |
9c3d33d6 MN |
1307 | if test "$pthreads" = "yes" ; then |
1308 | echo "HAVE_PTHREADS=yes" >> config.mak | |
1309 | echo "#define HAVE_PTHREADS 1" >> $TMPH | |
2450cff2 | 1310 | echo "#define HAVE_THREADS 1" >> $TMPH |
8c802695 | 1311 | if test $targetos != FreeBSD -a $targetos != OpenBSD ; then |
12043e1d SS |
1312 | extralibs="$extralibs -lpthread" |
1313 | fi | |
9c3d33d6 | 1314 | fi |
a86b921c FB |
1315 | if test "$sdl" = "yes" ; then |
1316 | echo "CONFIG_SDL=yes" >> config.mak | |
1317 | echo "SDL_LIBS=`sdl-config --libs`" >> config.mak | |
1318 | echo "SDL_CFLAGS=`sdl-config --cflags`" >> config.mak | |
1319 | fi | |
146ea952 NB |
1320 | if test "$texi2html" = "yes"; then |
1321 | echo "BUILD_DOC=yes" >> config.mak | |
1322 | fi | |
95e2ce4a MN |
1323 | if test "$have_lrintf" = "yes" ; then |
1324 | echo "#define HAVE_LRINTF 1" >> $TMPH | |
1325 | fi | |
68892110 PG |
1326 | if test "$vhook" = "yes" ; then |
1327 | echo "BUILD_VHOOK=yes" >> config.mak | |
1328 | echo "#define HAVE_VHOOK 1" >> $TMPH | |
9c938e77 | 1329 | extralibs="$extralibs $ldl" |
68892110 | 1330 | fi |
57514323 | 1331 | if test "$lshared" = "yes" ; then |
0319c531 | 1332 | echo "BUILD_SHARED=yes" >> config.mak |
97006039 | 1333 | echo "PIC=-fPIC -DPIC" >> config.mak |
0319c531 | 1334 | fi |
ef0bc4c9 | 1335 | echo "EXTRALIBS=$extralibs" >> config.mak |
281a74da | 1336 | version=`grep '#define FFMPEG_VERSION ' "$source_path/libavcodec/avcodec.h" | |
258207b7 FB |
1337 | cut -d '"' -f 2` |
1338 | echo "VERSION=$version" >>config.mak | |
d771bcae | 1339 | # if you do not want to use encoders, disable that. |
045ed63f | 1340 | echo "#define CONFIG_ENCODERS 1" >> $TMPH |
d771bcae FB |
1341 | echo "CONFIG_ENCODERS=yes" >> config.mak |
1342 | ||
1343 | # if you do not want to use decoders, disable that. | |
045ed63f | 1344 | echo "#define CONFIG_DECODERS 1" >> $TMPH |
d771bcae FB |
1345 | echo "CONFIG_DECODERS=yes" >> config.mak |
1346 | ||
5cbcf02c FB |
1347 | # AC3 |
1348 | if test "$a52" = "yes" ; then | |
1349 | echo "#define CONFIG_AC3 1" >> $TMPH | |
1350 | echo "CONFIG_AC3=yes" >> config.mak | |
d771bcae | 1351 | |
5cbcf02c FB |
1352 | if test "$a52bin" = "yes" ; then |
1353 | echo "#define CONFIG_A52BIN 1" >> $TMPH | |
1354 | echo "CONFIG_A52BIN=yes" >> config.mak | |
1355 | fi | |
1356 | fi | |
1357 | ||
23c99253 MN |
1358 | # DTS |
1359 | if test "$dts" = "yes" ; then | |
1360 | echo "#define CONFIG_DTS 1" >> $TMPH | |
1361 | echo "CONFIG_DTS=yes" >> config.mak | |
1362 | fi | |
1363 | ||
bba9b16c MN |
1364 | # PP |
1365 | if test "$pp" = "yes" ; then | |
1366 | echo "#define CONFIG_PP 1" >> $TMPH | |
1367 | echo "CONFIG_PP=yes" >> config.mak | |
1368 | ||
1369 | if test "$shared_pp" = "yes" ; then | |
1370 | echo "#define SHARED_PP 1" >> $TMPH | |
1371 | echo "SHARED_PP=yes" >> config.mak | |
1372 | fi | |
1373 | fi | |
1374 | ||
1eb2212e FB |
1375 | # mpeg audio high precision mode |
1376 | if test "$mpegaudio_hp" = "yes" ; then | |
1377 | echo "#define CONFIG_MPEGAUDIO_HP 1" >> $TMPH | |
1378 | fi | |
1379 | ||
5cbcf02c FB |
1380 | if test "$v4l" = "yes" ; then |
1381 | echo "#define CONFIG_VIDEO4LINUX 1" >> $TMPH | |
1382 | echo "CONFIG_VIDEO4LINUX=yes" >> config.mak | |
1383 | fi | |
1384 | ||
8aa3ee32 MK |
1385 | if test "$dv1394" = "yes" ; then |
1386 | echo "#define CONFIG_DV1394 1" >> $TMPH | |
1387 | echo "CONFIG_DV1394=yes" >> config.mak | |
1388 | fi | |
1389 | ||
f02be79d RS |
1390 | if test "$dc1394" = "yes" ; then |
1391 | echo "#define CONFIG_DC1394 1" >> $TMPH | |
1392 | echo "CONFIG_DC1394=yes" >> config.mak | |
1393 | fi | |
1394 | ||
adbc0510 PG |
1395 | if test "$dlopen" = "yes" ; then |
1396 | echo "#define CONFIG_HAVE_DLOPEN 1" >> $TMPH | |
1397 | fi | |
1398 | ||
1399 | if test "$dlfcn" = "yes" ; then | |
1400 | echo "#define CONFIG_HAVE_DLFCN 1" >> $TMPH | |
1401 | fi | |
1402 | ||
5cbcf02c FB |
1403 | if test "$audio_oss" = "yes" ; then |
1404 | echo "#define CONFIG_AUDIO_OSS 1" >> $TMPH | |
1405 | echo "CONFIG_AUDIO_OSS=yes" >> config.mak | |
57514323 ZK |
1406 | fi |
1407 | ||
dfdfa47c FR |
1408 | if test "$audio_beos" = "yes" ; then |
1409 | echo "#define CONFIG_AUDIO_BEOS 1" >> $TMPH | |
1410 | echo "CONFIG_AUDIO_BEOS=yes" >> config.mak | |
1411 | fi | |
1412 | ||
5cbcf02c FB |
1413 | if test "$network" = "yes" ; then |
1414 | echo "#define CONFIG_NETWORK 1" >> $TMPH | |
1415 | echo "CONFIG_NETWORK=yes" >> config.mak | |
6ed7422a | 1416 | fi |
daf8e955 | 1417 | |
7a91333f HZ |
1418 | if test "$ipv6" = "yes" ; then |
1419 | echo "#define CONFIG_IPV6 1" >> $TMPH | |
1420 | fi | |
1421 | ||
0147f198 FR |
1422 | if test "$zlib" = "yes" ; then |
1423 | echo "#define CONFIG_ZLIB 1" >> $TMPH | |
1424 | echo "CONFIG_ZLIB=yes" >> config.mak | |
1425 | fi | |
1426 | ||
57514323 | 1427 | if test "$mp3lame" = "yes" ; then |
045ed63f | 1428 | echo "#define CONFIG_MP3LAME 1" >> $TMPH |
a6741398 J |
1429 | echo "CONFIG_MP3LAME=yes" >> config.mak |
1430 | fi | |
1431 | ||
9146ca37 | 1432 | if test "$libogg" = "yes" ; then |
5c5dea3f NB |
1433 | echo "#define CONFIG_LIBOGG 1" >> $TMPH |
1434 | echo "CONFIG_LIBOGG=yes" >> config.mak | |
1435 | fi | |
1436 | ||
81e0d0b4 | 1437 | if test "$vorbis" = "yes" ; then |
5c5dea3f NB |
1438 | echo "#define CONFIG_LIBVORBIS 1" >> $TMPH |
1439 | echo "CONFIG_LIBVORBIS=yes" >> config.mak | |
1440 | fi | |
1441 | ||
1442 | if test "$theora" = "yes" ; then | |
1443 | echo "#define CONFIG_LIBTHEORA 1" >> $TMPH | |
1444 | echo "CONFIG_LIBTHEORA=yes" >> config.mak | |
81e0d0b4 MH |
1445 | fi |
1446 | ||
0fc50e58 ZK |
1447 | if test "$faad" = "yes" ; then |
1448 | echo "#define CONFIG_FAAD 1" >> $TMPH | |
1449 | echo "CONFIG_FAAD=yes" >> config.mak | |
1450 | fi | |
1451 | ||
1452 | if test "$faadbin" = "yes" ; then | |
1453 | echo "#define CONFIG_FAADBIN 1" >> $TMPH | |
445ad18d | 1454 | echo "CONFIG_FAADBIN=yes" >> config.mak |
0fc50e58 ZK |
1455 | fi |
1456 | ||
29d48296 MN |
1457 | if test "$faac" = "yes" ; then |
1458 | echo "#define CONFIG_FAAC 1" >> $TMPH | |
1459 | echo "CONFIG_FAAC=yes" >> config.mak | |
1460 | fi | |
1461 | ||
1ddadfa9 AT |
1462 | if test "$xvid" = "yes" ; then |
1463 | echo "#define CONFIG_XVID 1" >> $TMPH | |
1464 | echo "CONFIG_XVID=yes" >> config.mak | |
1465 | fi | |
1466 | ||
6662ec29 MN |
1467 | if test "$x264" = "yes" ; then |
1468 | echo "#define CONFIG_X264 1" >> $TMPH | |
1469 | echo "CONFIG_X264=yes" >> config.mak | |
1470 | fi | |
1471 | ||
732d9245 BE |
1472 | if test "$mingw32" = "yes" ; then |
1473 | echo "#define CONFIG_WIN32 1" >> $TMPH | |
1474 | echo "CONFIG_WIN32=yes" >> config.mak | |
16806499 MN |
1475 | echo "HAVE_W32THREADS=yes" >> config.mak |
1476 | echo "#define HAVE_W32THREADS 1" >> $TMPH | |
2450cff2 | 1477 | echo "#define HAVE_THREADS 1" >> $TMPH |
7eea5766 | 1478 | echo "#ifndef __MINGW32__" >> $TMPH |
732d9245 | 1479 | echo "#define __MINGW32__ 1" >> $TMPH |
7eea5766 | 1480 | echo "#endif" >> $TMPH |
3f027ca7 FB |
1481 | fi |
1482 | ||
f3ec2d46 SG |
1483 | if test "$os2" = "yes" ; then |
1484 | echo "#define CONFIG_OS2 1" >> $TMPH | |
1485 | echo "CONFIG_OS2=yes" >> config.mak | |
1486 | fi | |
1487 | ||
6e023978 RS |
1488 | if test "$TARGET_OS" = "SunOS" ; then |
1489 | echo "#define CONFIG_SUNOS 1" >> $TMPH | |
1490 | fi | |
1491 | ||
2450cff2 FR |
1492 | if test "$TARGET_OS" = "BeOS" ; then |
1493 | echo "HAVE_BEOSTHREADS=yes" >> config.mak | |
1494 | echo "#define HAVE_BEOSTHREADS 1" >> $TMPH | |
1495 | echo "#define HAVE_THREADS 1" >> $TMPH | |
1496 | fi | |
1497 | ||
90cee0c3 MN |
1498 | if test "$darwin" = "yes"; then |
1499 | echo "#define CONFIG_DARWIN 1" >> $TMPH | |
1500 | echo "CONFIG_DARWIN=yes" >> config.mak | |
1501 | fi | |
1502 | ||
57514323 | 1503 | if test "$_malloc_h" = "yes" ; then |
045ed63f | 1504 | echo "#define HAVE_MALLOC_H 1" >> $TMPH |
3d204385 | 1505 | else |
045ed63f | 1506 | echo "#undef HAVE_MALLOC_H" >> $TMPH |
3d204385 NK |
1507 | fi |
1508 | ||
57514323 | 1509 | if test "$_memalign" = "yes" ; then |
045ed63f ZK |
1510 | echo "#define HAVE_MEMALIGN 1" >> $TMPH |
1511 | else | |
1512 | echo "#undef HAVE_MEMALIGN" >> $TMPH | |
1513 | fi | |
1514 | ||
da9b170c MN |
1515 | if test "$memalignhack" = "yes" ; then |
1516 | echo "#define MEMALIGN_HACK 1" >> $TMPH | |
1517 | fi | |
1518 | ||
1519 | ||
26b35efb FR |
1520 | if test "$netserver" = "yes" ; then |
1521 | echo "#define CONFIG_BEOS_NETSERVER 1" >> $TMPH | |
1522 | echo "CONFIG_BEOS_NETSERVER=yes" >> config.mak | |
1523 | fi | |
1524 | ||
4baca069 PG |
1525 | if test "$need_inet_aton" = "yes" ; then |
1526 | echo "NEED_INET_ATON=yes" >> config.mak | |
1527 | fi | |
1528 | ||
57514323 | 1529 | if test "$simpleidct" = "yes" ; then |
045ed63f ZK |
1530 | echo "#define SIMPLE_IDCT 1" >> $TMPH |
1531 | fi | |
1532 | ||
8154d2e0 FB |
1533 | if test "$ffserver" = "yes" ; then |
1534 | echo "#define CONFIG_FFSERVER 1" >> $TMPH | |
1535 | echo "CONFIG_FFSERVER=yes" >> config.mak | |
1536 | fi | |
1537 | ||
a86b921c FB |
1538 | if test "$ffplay" = "yes" ; then |
1539 | echo "CONFIG_FFPLAY=yes" >> config.mak | |
1540 | fi | |
1541 | ||
b2e3c528 MN |
1542 | if test "$gpl" = "yes" ; then |
1543 | echo "#define CONFIG_GPL 1" >> $TMPH | |
1544 | echo "CONFIG_GPL=yes" >> config.mak | |
1545 | fi | |
1546 | ||
c13e1abd FH |
1547 | echo "#define restrict $_restrict" >> $TMPH |
1548 | ||
bb801c97 MN |
1549 | if test "$optimize" = "small"; then |
1550 | echo "#define always_inline" >> $TMPH | |
1551 | fi | |
1552 | ||
0f3cb305 FB |
1553 | # build tree in object directory if source path is different from current one |
1554 | if test "$source_path_used" = "yes" ; then | |
8b8e1c55 PMH |
1555 | DIRS="doc libavformat libavcodec libavcodec/alpha libavcodec/armv4l \ |
1556 | libavcodec/i386 libavcodec/sparc libavcodec/mlib \ | |
1557 | libavcodec/ppc libavcodec/liba52 libavcodec/libpostproc tests vhook" | |
1558 | FILES="Makefile libavformat/Makefile libavcodec/Makefile \ | |
1559 | libavcodec/libpostproc/Makefile tests/Makefile vhook/Makefile \ | |
1560 | doc/Makefile doc/texi2pod.pl" | |
0f3cb305 FB |
1561 | for dir in $DIRS ; do |
1562 | mkdir -p $dir | |
1563 | done | |
1564 | for f in $FILES ; do | |
281a74da | 1565 | ln -sf "$source_path/$f" $f |
0f3cb305 | 1566 | done |
8b8e1c55 PMH |
1567 | echo "SRC_PATH=$source_path" >> config.mak |
1568 | else | |
1569 | echo "SRC_PATH='$source_path'" >> config.mak | |
0f3cb305 | 1570 | fi |
0f3cb305 | 1571 | |
d663a1fd MN |
1572 | if test "$amr_wb" = "yes" ; then |
1573 | echo "#define AMR_WB 1" >> $TMPH | |
1574 | echo "AMR_WB=yes" >> config.mak | |
1575 | echo | |
1576 | echo "AMR WB FLOAT NOTICE ! Make sure you have downloaded TS26.204" | |
1577 | echo "V5.1.0 from " | |
1578 | echo "http://www.3gpp.org/ftp/Specs/archive/26_series/26.204/26204-510.zip" | |
1579 | echo "and extracted the source to libavcodec/amrwb_float" | |
1580 | echo | |
1581 | fi | |
1582 | ||
891f64b3 | 1583 | if test "$amr_nb" = "yes" ; then |
1584 | echo "#define AMR_NB 1" >> $TMPH | |
1585 | echo "AMR_NB=yes" >> config.mak | |
1586 | echo | |
bc634f6f ZK |
1587 | if test "$amr_nb_fixed" = "yes" ; then |
1588 | echo "AMR_NB_FIXED=yes" >> config.mak | |
1589 | echo "#define AMR_NB_FIXED 1" >> $TMPH | |
1590 | echo "AMR NB FIXED POINT NOTICE! Make sure you have downloaded TS26.073 " | |
1591 | echo "REL-5 version 5.1.0 from " | |
184582de | 1592 | echo "http://www.3gpp.org/ftp/Specs/latest/Rel-5/26_series/26073-5??.zip" |
891f64b3 | 1593 | echo "and extracted src to libavcodec/amr" |
bc634f6f ZK |
1594 | echo "You must also add -DMMS_IO and remove -pedantic-errors to/from CFLAGS in libavcodec/amr/makefile." |
1595 | echo "i.e. CFLAGS = -Wall -I. \$(CFLAGS_\$(MODE)) -D\$(VAD) -DMMS_IO" | |
1596 | echo | |
1597 | else | |
1598 | echo "AMR NB FLOAT NOTICE ! Make sure you have downloaded TS26.104" | |
1599 | echo "REL-5 V5.1.0 from " | |
184582de | 1600 | echo "http://www.3gpp.org/ftp/Specs/latest/Rel-5/26_series/26104-5??.zip" |
bc634f6f | 1601 | echo "and extracted the source to libavcodec/amr_float" |
821e46f4 | 1602 | echo "and if u try this on an alpha, u may need to change Word32 to int in amr/typedef.h" |
891f64b3 | 1603 | echo |
1604 | fi | |
1605 | ||
2a515c08 TM |
1606 | if test "$amr_if2" = "yes" ; then |
1607 | echo "AMR_CFLAGS=-DIF2=1" >> config.mak | |
1608 | fi | |
1609 | ||
bc634f6f ZK |
1610 | fi |
1611 | ||
009cf97d | 1612 | for codec in $CODEC_LIST ; do |
ce869f59 MN |
1613 | echo "#define CONFIG_`echo $codec | tr a-z A-Z` 1" >> $TMPH |
1614 | echo "CONFIG_`echo $codec | tr a-z A-Z`=yes" >> config.mak | |
009cf97d MN |
1615 | done |
1616 | ||
a7c02e25 | 1617 | diff $TMPH config.h >/dev/null 2>&1 |
045ed63f ZK |
1618 | if test $? -ne 0 ; then |
1619 | mv -f $TMPH config.h | |
3d204385 | 1620 | else |
045ed63f | 1621 | echo "config.h is unchanged" |
3d204385 NK |
1622 | fi |
1623 | ||
f3ec2d46 | 1624 | rm -f $TMPO $TMPC $TMPE $TMPS $TMPH |