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