Commit | Line | Data |
---|---|---|
de6d9b64 | 1 | #!/bin/sh |
0f3cb305 | 2 | # |
f57620d5 MR |
3 | # FFmpeg configure script |
4 | # | |
5 | # Copyright (c) 2000, 2001, 2002 Fabrice Bellard | |
6 | # Copyright (c) 2005-2006 Diego Biurrun | |
7 | # Copyright (c) 2005-2006 Mans Rullgard | |
0f3cb305 | 8 | # |
cf9d24ad | 9 | |
cde2d79a | 10 | # make sure we are running under a compatible shell |
c21d6325 MR |
11 | # try to make this part work with most shells |
12 | ||
13 | try_exec(){ | |
14 | type "$1" >/dev/null 2>&1 && exec "$@" | |
15 | } | |
16 | ||
5237ce67 MR |
17 | unset foo |
18 | (: ${foo%%bar}) 2>/dev/null && ! (: ${foo?}) 2>/dev/null | |
cde2d79a | 19 | if test "$?" != 0; then |
c21d6325 MR |
20 | export FF_CONF_EXEC |
21 | if test "0$FF_CONF_EXEC" -lt 1; then | |
22 | FF_CONF_EXEC=1 | |
23 | try_exec bash "$0" "$@" | |
24 | fi | |
25 | if test "0$FF_CONF_EXEC" -lt 2; then | |
26 | FF_CONF_EXEC=2 | |
27 | try_exec ksh "$0" "$@" | |
28 | fi | |
29 | if test "0$FF_CONF_EXEC" -lt 3; then | |
30 | FF_CONF_EXEC=3 | |
31 | try_exec /usr/xpg4/bin/sh "$0" "$@" | |
cde2d79a MR |
32 | fi |
33 | echo "No compatible shell script interpreter found." | |
c21d6325 MR |
34 | echo "This configure script requires a POSIX compatible shell" |
35 | echo "such as bash or ksh." | |
36 | if test "$BASH_VERSION" = '2.04.0(1)-release'; then | |
37 | echo "This bash version ($BASH_VERSION) is broken on your platform." | |
38 | echo "Upgrade to a later version if available." | |
39 | fi | |
cde2d79a MR |
40 | exit 1 |
41 | fi | |
42 | ||
74c53c2d MR |
43 | show_help(){ |
44 | echo "Usage: configure [options]" | |
45 | echo "Options: [defaults in brackets after descriptions]" | |
46 | echo | |
47 | echo "Standard options:" | |
48 | echo " --help print this message" | |
2ba042a7 | 49 | echo " --log[=FILE|yes|no] log tests and output to FILE [config.err]" |
2266e085 | 50 | echo " --prefix=PREFIX install in PREFIX [$PREFIX]" |
74c53c2d | 51 | echo " --libdir=DIR install libs in DIR [PREFIX/lib]" |
84c22efd | 52 | echo " --shlibdir=DIR install shared libs in DIR [PREFIX/lib]" |
74c53c2d MR |
53 | echo " --incdir=DIR install includes in DIR [PREFIX/include/ffmpeg]" |
54 | echo " --mandir=DIR install man page in DIR [PREFIX/man]" | |
55 | echo " --enable-mp3lame enable MP3 encoding via libmp3lame [default=no]" | |
f956e129 | 56 | echo " --enable-libnut enable NUT support via libnut [default=no]" |
74c53c2d MR |
57 | echo " --enable-libogg enable Ogg support via libogg [default=no]" |
58 | echo " --enable-vorbis enable Vorbis support via libvorbis [default=no]" | |
74c53c2d MR |
59 | echo " --enable-faad enable FAAD support via libfaad [default=no]" |
60 | echo " --enable-faadbin build FAAD support with runtime linking [default=no]" | |
61 | echo " --enable-faac enable FAAC support via libfaac [default=no]" | |
62 | echo " --enable-libgsm enable GSM support via libgsm [default=no]" | |
63 | echo " --enable-xvid enable XviD support via xvidcore [default=no]" | |
64 | echo " --enable-x264 enable H.264 encoding via x264 [default=no]" | |
65 | echo " --enable-mingw32 enable MinGW native/cross Windows compile" | |
66 | echo " --enable-mingwce enable MinGW native/cross WinCE compile" | |
67 | echo " --enable-a52 enable GPLed A52 support [default=no]" | |
68 | echo " --enable-a52bin open liba52.so.0 at runtime [default=no]" | |
69 | echo " --enable-dts enable GPLed DTS support [default=no]" | |
70 | echo " --enable-pp enable GPLed postprocessing support [default=no]" | |
71 | echo " --enable-static build static libraries [default=yes]" | |
72 | echo " --disable-static do not build static libraries [default=no]" | |
73 | echo " --enable-shared build shared libraries [default=no]" | |
74 | echo " --disable-shared do not build shared libraries [default=yes]" | |
75 | echo " --enable-amr_nb enable amr_nb float audio codec" | |
76 | echo " --enable-amr_nb-fixed use fixed point for amr-nb codec" | |
77 | echo " --enable-amr_wb enable amr_wb float audio codec" | |
78 | echo " --enable-amr_if2 enable amr_wb IF2 audio codec" | |
79 | echo " --enable-sunmlib use Sun medialib [default=no]" | |
80 | echo " --enable-pthreads use pthreads [default=no]" | |
81 | echo " --enable-dc1394 enable IIDC-1394 grabbing using libdc1394" | |
82 | echo " and libraw1394 [default=no]" | |
790c9ca7 | 83 | echo " --enable-swscaler software scaler support [default=no]" |
8ac17293 | 84 | echo " --enable-avisynth allow reading AVISynth script files [default=no]" |
74c53c2d MR |
85 | echo " --enable-gpl allow use of GPL code, the resulting libav*" |
86 | echo " and ffmpeg will be under GPL [default=no]" | |
87 | echo "" | |
88 | echo "Advanced options (experts only):" | |
89 | echo " --source-path=PATH path to source code [$source_path]" | |
90 | echo " --cross-prefix=PREFIX use PREFIX for compilation tools [$cross_prefix]" | |
fac252f9 | 91 | echo " --cross-compile assume a cross-compiler is used" |
74c53c2d MR |
92 | echo " --cc=CC use C compiler CC [$cc]" |
93 | echo " --make=MAKE use specified make [$make]" | |
94 | echo " --extra-cflags=ECFLAGS add ECFLAGS to CFLAGS [$CFLAGS]" | |
95 | echo " --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS]" | |
96 | echo " --extra-libs=ELIBS add ELIBS [$ELIBS]" | |
97 | echo " --build-suffix=SUFFIX suffix for application specific build []" | |
cc6a90dd | 98 | echo " --arch=ARCH select architecture [$arch]" |
38d0a8aa GP |
99 | echo " --cpu=CPU selects the minimum cpu required (affects |
100 | instruction selection, may crash on older CPUs)" | |
74c53c2d MR |
101 | echo " --powerpc-perf-enable enable performance report on PPC" |
102 | echo " (requires enabling PMC)" | |
103 | echo " --disable-mmx disable MMX usage" | |
1839e854 | 104 | echo " --disable-armv5te disable armv5te usage" |
74c53c2d MR |
105 | echo " --disable-iwmmxt disable iwmmxt usage" |
106 | echo " --disable-altivec disable AltiVec usage" | |
107 | echo " --disable-audio-oss disable OSS audio support [default=no]" | |
108 | echo " --disable-audio-beos disable BeOS audio support [default=no]" | |
109 | echo " --disable-v4l disable video4linux grabbing [default=no]" | |
110 | echo " --disable-v4l2 disable video4linux2 grabbing [default=no]" | |
111 | echo " --disable-bktr disable bktr video grabbing [default=no]" | |
112 | echo " --disable-dv1394 disable DV1394 grabbing [default=no]" | |
113 | echo " --disable-network disable network support [default=no]" | |
0c7bb0e5 | 114 | echo " --disable-ipv6 disable ipv6 support [default=no]" |
74c53c2d | 115 | echo " --disable-zlib disable zlib [default=no]" |
74c53c2d MR |
116 | echo " --disable-vhook disable video hooking support" |
117 | echo " --enable-gprof enable profiling with gprof [$gprof]" | |
118 | echo " --disable-debug disable debugging symbols" | |
119 | echo " --disable-opts disable compiler optimizations" | |
78fcba8f | 120 | echo " --enable-extra-warnings enable more compiler warnings" |
74c53c2d MR |
121 | echo " --disable-mpegaudio-hp faster (but less accurate)" |
122 | echo " MPEG audio decoding [default=no]" | |
123 | echo " --disable-protocols disable I/O protocols support [default=no]" | |
786b30af | 124 | echo " --disable-ffmpeg disable ffmpeg build" |
74c53c2d MR |
125 | echo " --disable-ffserver disable ffserver build" |
126 | echo " --disable-ffplay disable ffplay build" | |
127 | echo " --enable-small optimize for size instead of speed" | |
128 | echo " --enable-memalign-hack emulate memalign, interferes with memory debuggers" | |
129 | echo " --disable-strip disable stripping of executables and shared libraries" | |
130 | echo " --disable-encoder=NAME disables encoder NAME" | |
131 | echo " --enable-encoder=NAME enables encoder NAME" | |
132 | echo " --disable-decoder=NAME disables decoder NAME" | |
133 | echo " --enable-decoder=NAME enables decoder NAME" | |
134 | echo " --disable-encoders disables all encoders" | |
135 | echo " --disable-decoders disables all decoders" | |
ff70e601 MR |
136 | echo " --disable-muxer=NAME disables muxer NAME" |
137 | echo " --enable-muxer=NAME enables muxer NAME" | |
74c53c2d | 138 | echo " --disable-muxers disables all muxers" |
ff70e601 MR |
139 | echo " --disable-demuxer=NAME disables demuxer NAME" |
140 | echo " --enable-demuxer=NAME enables demuxer NAME" | |
74c53c2d | 141 | echo " --disable-demuxers disables all demuxers" |
af9e7d18 MR |
142 | echo " --enable-parser=NAME enables parser NAME" |
143 | echo " --disable-parser=NAME disables parser NAME" | |
144 | echo " --disable-parsers disables all parsers" | |
74c53c2d MR |
145 | echo "" |
146 | echo "NOTE: Object files are built at the place where configure is launched." | |
147 | exit 1 | |
148 | } | |
cf9d24ad | 149 | |
57bd82d4 MR |
150 | log(){ |
151 | echo "$@" >>$logfile | |
152 | } | |
153 | ||
720c69da | 154 | log_file(){ |
c8e9f801 MR |
155 | log BEGIN $1 |
156 | cat -n $1 >>$logfile | |
157 | log END $1 | |
158 | } | |
159 | ||
2ba042a7 | 160 | echolog(){ |
c8e9f801 | 161 | log "$@" |
57bd82d4 | 162 | echo "$@" |
2ba042a7 MR |
163 | } |
164 | ||
165 | die(){ | |
166 | echolog "$@" | |
167 | cat <<EOF | |
168 | If you think configure made a mistake, make sure you are using the latest | |
169 | version from SVN. If the latest version fails, report the problem to the | |
170 | ffmpeg-devel@mplayerhq.hu mailing list or IRC #ffmpeg on irc.freenode.net. | |
171 | EOF | |
720c69da | 172 | if enabled logging; then |
2ba042a7 MR |
173 | cat <<EOF |
174 | Include the log file "$logfile" produced by configure as this will help | |
175 | solving the problem. | |
176 | EOF | |
177 | else | |
178 | cat <<EOF | |
179 | Rerun configure with logging enabled (do not use --log=no), and include the | |
180 | log this produces with your report. | |
181 | EOF | |
182 | fi | |
57bd82d4 MR |
183 | rm -f $TMPC $TMPO $TMPE $TMPS $TMPH |
184 | exit 1 | |
185 | } | |
186 | ||
904e48f1 | 187 | # "tr '[a-z]' '[A-Z]'" is a workaround for Solaris tr not grokking "tr a-z A-Z" |
44161118 MR |
188 | toupper(){ |
189 | echo "$@" | tr '[a-z]' '[A-Z]' | |
190 | } | |
191 | ||
a8d04fba MR |
192 | set_all(){ |
193 | value=$1 | |
194 | shift | |
195 | for var in $*; do | |
196 | eval $var=$value | |
197 | done | |
198 | } | |
199 | ||
200 | enable(){ | |
201 | set_all yes $* | |
202 | } | |
203 | ||
204 | disable(){ | |
205 | set_all no $* | |
206 | } | |
207 | ||
57bd82d4 | 208 | enabled(){ |
44161118 MR |
209 | eval test "x\$$1" = "xyes" |
210 | } | |
211 | ||
212 | enabled_all(){ | |
213 | for opt; do | |
214 | enabled $opt || return 1 | |
215 | done | |
216 | } | |
217 | ||
218 | enabled_any(){ | |
219 | for opt; do | |
220 | enabled $opt && return 0 | |
221 | done | |
222 | } | |
223 | ||
224 | print_config(){ | |
225 | pfx=$1 | |
226 | header=$2 | |
227 | makefile=$3 | |
228 | shift 3 | |
229 | for cfg; do | |
230 | if enabled $cfg; then | |
231 | ucname="${pfx}`toupper $cfg`" | |
232 | echo "#define ${ucname} 1" >> $header | |
233 | echo "${ucname}=yes" >> $makefile | |
234 | fi | |
235 | done | |
57bd82d4 MR |
236 | } |
237 | ||
238 | flags_saved(){ | |
239 | (: ${SAVE_CFLAGS?}) 2>/dev/null | |
240 | } | |
241 | ||
dcd479c0 | 242 | save_flags(){ |
57bd82d4 | 243 | flags_saved && return |
dcd479c0 MR |
244 | SAVE_CFLAGS="$CFLAGS" |
245 | SAVE_LDFLAGS="$LDFLAGS" | |
246 | SAVE_extralibs="$extralibs" | |
247 | } | |
248 | ||
249 | restore_flags(){ | |
250 | CFLAGS="$SAVE_CFLAGS" | |
251 | LDFLAGS="$SAVE_LDFLAGS" | |
252 | extralibs="$SAVE_extralibs" | |
253 | unset SAVE_CFLAGS | |
254 | unset SAVE_LDFLAGS | |
255 | unset SAVE_extralibs | |
256 | } | |
257 | ||
258 | temp_cflags(){ | |
259 | save_flags | |
260 | CFLAGS="$CFLAGS $*" | |
261 | } | |
262 | ||
263 | temp_ldflags(){ | |
264 | save_flags | |
265 | LDFLAGS="$LDFLAGS $*" | |
266 | } | |
267 | ||
268 | temp_extralibs(){ | |
269 | save_flags | |
270 | extralibs="$extralibs $*" | |
271 | } | |
272 | ||
57bd82d4 MR |
273 | append(){ |
274 | var=$1 | |
275 | shift | |
276 | flags_saved && eval "SAVE_$var=\"\$SAVE_$var $*\"" | |
277 | eval "$var=\"\$$var $*\"" | |
278 | } | |
279 | ||
280 | add_cflags(){ | |
281 | append CFLAGS "$@" | |
282 | } | |
283 | ||
284 | add_ldflags(){ | |
285 | append LDFLAGS "$@" | |
286 | } | |
287 | ||
288 | add_extralibs(){ | |
289 | append extralibs "$@" | |
290 | } | |
291 | ||
b0cfb663 | 292 | check_cmd(){ |
b3cb5d51 | 293 | log "$@" |
9b4f605c | 294 | "$@" >>$logfile 2>&1 |
b0cfb663 MR |
295 | } |
296 | ||
dcd479c0 | 297 | check_cc(){ |
57bd82d4 MR |
298 | log check_cc "$@" |
299 | cat >$TMPC | |
720c69da | 300 | log_file $TMPC |
b0cfb663 | 301 | check_cmd $cc $CFLAGS "$@" -c -o $TMPO $TMPC |
57bd82d4 MR |
302 | } |
303 | ||
304 | check_cpp(){ | |
305 | log check_cpp "$@" | |
dcd479c0 | 306 | cat >$TMPC |
720c69da | 307 | log_file $TMPC |
b0cfb663 | 308 | check_cmd $cc $CFLAGS "$@" -E -o $TMPO $TMPC |
dcd479c0 MR |
309 | } |
310 | ||
311 | check_ld(){ | |
57bd82d4 | 312 | log check_ld "$@" |
0607887f | 313 | check_cc || return |
b0cfb663 | 314 | check_cmd $cc $LDFLAGS "$@" -o $TMPE $TMPO $extralibs |
dcd479c0 MR |
315 | } |
316 | ||
317 | check_cflags(){ | |
57bd82d4 MR |
318 | log check_cflags "$@" |
319 | check_cc "$@" <<EOF && add_cflags "$@" | |
dcd479c0 MR |
320 | int x; |
321 | EOF | |
322 | } | |
323 | ||
324 | check_ldflags(){ | |
57bd82d4 MR |
325 | log check_ldflags "$@" |
326 | check_ld "$@" <<EOF && add_ldflags "$@" | |
327 | int main(){ | |
328 | return 0; | |
329 | } | |
dcd479c0 MR |
330 | EOF |
331 | } | |
332 | ||
333 | check_header(){ | |
57bd82d4 | 334 | log check_header "$@" |
dcd479c0 MR |
335 | header=$1 |
336 | shift | |
57bd82d4 | 337 | check_cpp "$@" <<EOF |
dcd479c0 MR |
338 | #include <$header> |
339 | int x; | |
340 | EOF | |
0701ca7f MR |
341 | err=$? |
342 | var=`echo $header | sed 's/[^[:alnum:]]/_/g'` | |
343 | test "$err" = 0 && enable $var || disable $var | |
344 | return $err | |
dcd479c0 MR |
345 | } |
346 | ||
347 | check_func(){ | |
57bd82d4 | 348 | log check_func "$@" |
dcd479c0 MR |
349 | func=$1 |
350 | shift | |
351 | check_ld "$@" <<EOF | |
352 | extern int $func(); | |
353 | int main(){ | |
354 | $func(); | |
355 | } | |
356 | EOF | |
0701ca7f MR |
357 | err=$? |
358 | test "$err" = 0 && enable $func || disable $func | |
359 | return $err | |
dcd479c0 MR |
360 | } |
361 | ||
57bd82d4 MR |
362 | check_lib(){ |
363 | log check_lib "$@" | |
364 | header="$1" | |
365 | func="$2" | |
366 | shift 2 | |
367 | temp_extralibs "$@" | |
368 | check_header $header && check_func $func && add_extralibs "$@" | |
369 | err=$? | |
370 | restore_flags | |
371 | return $err | |
372 | } | |
373 | ||
dcd479c0 | 374 | check_exec(){ |
bd4700b1 | 375 | check_ld "$@" && { test "$cross_compile" = yes || $TMPE >>$logfile 2>&1; } |
57bd82d4 MR |
376 | } |
377 | ||
378 | require(){ | |
379 | name="$1" | |
380 | header="$2" | |
381 | func="$3" | |
382 | shift 3 | |
383 | check_lib $header $func "$@" || die "ERROR: $name not found" | |
dcd479c0 MR |
384 | } |
385 | ||
c88f5d72 MR |
386 | CONFIG_LIST=' |
387 | encoders | |
388 | decoders | |
389 | parsers | |
390 | muxers | |
391 | demuxers | |
392 | a52 | |
393 | a52bin | |
394 | amr | |
395 | amr_nb | |
396 | amr_nb_fixed | |
397 | amr_wb | |
398 | audio_beos | |
399 | audio_oss | |
400 | avisynth | |
401 | beos_netserver | |
402 | bktr | |
403 | dc1394 | |
404 | dts | |
405 | dv1394 | |
406 | faac | |
407 | faad | |
408 | faadbin | |
409 | ffmpeg | |
410 | ffplay | |
411 | ffserver | |
412 | gpl | |
413 | ipv6 | |
414 | libgsm | |
415 | libnut | |
416 | libogg | |
417 | libvorbis | |
418 | memalign_hack | |
419 | mp3lame | |
420 | mpegaudio_hp | |
421 | network | |
422 | pp | |
423 | protocols | |
424 | swscaler | |
425 | vhook | |
426 | video4linux | |
427 | video4linux2 | |
860391a5 | 428 | wince |
c88f5d72 MR |
429 | x264 |
430 | xvid | |
431 | zlib | |
432 | ' | |
433 | ||
434 | HAVE_LIST=' | |
435 | altivec_h | |
b265431e | 436 | beosthreads |
c88f5d72 MR |
437 | byteswap_h |
438 | dcbzl | |
18b67ae5 | 439 | dlfcn_h |
c88f5d72 MR |
440 | dlopen |
441 | freetype2 | |
442 | gprof | |
443 | imlib2 | |
2e1913b1 | 444 | inet_aton |
c88f5d72 MR |
445 | localtime_r |
446 | lrintf | |
447 | malloc_h | |
448 | memalign | |
449 | mlib | |
9c914398 | 450 | os2 |
b265431e MR |
451 | os2threads |
452 | pthreads | |
c88f5d72 MR |
453 | sdl |
454 | sdl_video_size | |
b265431e MR |
455 | threads |
456 | w32threads | |
c88f5d72 | 457 | ' |
44161118 | 458 | |
0f3cb305 | 459 | # set temporary file name |
57514323 | 460 | if test ! -z "$TMPDIR" ; then |
0f3cb305 | 461 | TMPDIR1="${TMPDIR}" |
57514323 | 462 | elif test ! -z "$TEMPDIR" ; then |
0f3cb305 | 463 | TMPDIR1="${TEMPDIR}" |
3d204385 | 464 | else |
0f3cb305 | 465 | TMPDIR1="/tmp" |
3d204385 NK |
466 | fi |
467 | ||
0f3cb305 FB |
468 | TMPC="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.c" |
469 | TMPO="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.o" | |
f3ec2d46 | 470 | TMPE="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}" |
0f3cb305 FB |
471 | TMPS="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.S" |
472 | TMPH="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.h" | |
473 | ||
de6d9b64 | 474 | # default parameters |
720c69da | 475 | logging="yes" |
2ba042a7 | 476 | logfile="config.err" |
2266e085 DB |
477 | PREFIX="/usr/local" |
478 | libdir='${PREFIX}/lib' | |
84c22efd | 479 | shlibdir="$libdir" |
2266e085 DB |
480 | incdir='${PREFIX}/include/ffmpeg' |
481 | mandir='${PREFIX}/man' | |
482 | bindir='${PREFIX}/bin' | |
0f3cb305 | 483 | cross_prefix="" |
fac252f9 | 484 | cross_compile="no" |
de6d9b64 FB |
485 | cc="gcc" |
486 | ar="ar" | |
be7109c1 | 487 | ranlib="ranlib" |
4a908fbc | 488 | make="make" |
0f3cb305 | 489 | strip="strip" |
cc6a90dd | 490 | arch=`uname -m` |
38d0a8aa | 491 | cpu="generic" |
e45a2872 | 492 | powerpc_perf="no" |
0f3cb305 | 493 | mmx="default" |
e7768fc5 | 494 | cmov="no" |
94e4c3a3 | 495 | cmov_is_fast="no" |
1839e854 | 496 | armv5te="default" |
eba9ae3c | 497 | iwmmxt="default" |
ab6c65f6 | 498 | altivec="default" |
87ea51e0 | 499 | dcbzl="no" |
d46aba26 | 500 | mmi="default" |
cc6a90dd | 501 | case "$arch" in |
ef0bc4c9 | 502 | i386|i486|i586|i686|i86pc|BePC) |
419b8784 | 503 | arch="x86_32" |
de6d9b64 | 504 | ;; |
7bf9648e | 505 | x86_64|amd64) |
a63e5f1c | 506 | arch="x86_32" |
32255f6c | 507 | canon_arch="`$cc -dumpmachine | sed -e 's,\([^-]*\)-.*,\1,'`" |
7bf9648e JM |
508 | if [ x"$canon_arch" = x"x86_64" -o x"$canon_arch" = x"amd64" ]; then |
509 | if [ -z "`echo $CFLAGS | grep -- -m32`" ]; then | |
cc6a90dd | 510 | arch="x86_64" |
7bf9648e | 511 | fi |
053dea12 AJ |
512 | fi |
513 | ;; | |
6dc7b6b3 DB |
514 | # armv4l is a subset of armv[567]*l |
515 | arm|armv[4567]*l) | |
cc6a90dd | 516 | arch="armv4l" |
6ed7422a | 517 | ;; |
91d1f1a4 | 518 | alpha) |
cc6a90dd | 519 | arch="alpha" |
91d1f1a4 | 520 | ;; |
2645e80f | 521 | "Power Macintosh"|ppc|ppc64|powerpc) |
cc6a90dd | 522 | arch="powerpc" |
90cee0c3 | 523 | ;; |
b028a866 | 524 | mips|mipsel|IP*) |
cc6a90dd | 525 | arch="mips" |
d46aba26 | 526 | ;; |
bb476ff3 | 527 | sun4u|sparc64) |
cc6a90dd | 528 | arch="sparc64" |
a7beab73 | 529 | ;; |
bb476ff3 | 530 | sparc) |
cc6a90dd | 531 | arch="sparc" |
bb476ff3 | 532 | ;; |
bdb2e37c | 533 | sh4) |
cc6a90dd | 534 | arch="sh4" |
bdb2e37c | 535 | ;; |
67860b26 | 536 | parisc|parisc64) |
cc6a90dd | 537 | arch="parisc" |
67860b26 SH |
538 | ;; |
539 | s390|s390x) | |
cc6a90dd | 540 | arch="s390" |
67860b26 SH |
541 | ;; |
542 | m68k) | |
cc6a90dd | 543 | arch="m68k" |
67860b26 SH |
544 | ;; |
545 | ia64) | |
cc6a90dd | 546 | arch="ia64" |
67860b26 | 547 | ;; |
81a9b052 | 548 | bfin) |
cc6a90dd | 549 | arch="bfin" |
81a9b052 | 550 | ;; |
de6d9b64 | 551 | *) |
cc6a90dd | 552 | arch="unknown" |
de6d9b64 FB |
553 | ;; |
554 | esac | |
555 | gprof="no" | |
9d2a0f1c MR |
556 | video4linux="yes" |
557 | video4linux2="yes" | |
6beefa40 | 558 | bktr="no" |
5cbcf02c | 559 | audio_oss="yes" |
dfdfa47c | 560 | audio_beos="no" |
8aa3ee32 | 561 | dv1394="yes" |
f02be79d | 562 | dc1394="no" |
5cbcf02c | 563 | network="yes" |
0c7bb0e5 | 564 | ipv6="yes" |
0147f198 | 565 | zlib="yes" |
bb4c2140 | 566 | libgsm="no" |
a6741398 | 567 | mp3lame="no" |
f956e129 | 568 | libnut="no" |
9146ca37 | 569 | libogg="no" |
be74741c | 570 | libvorbis="no" |
0fc50e58 ZK |
571 | faad="no" |
572 | faadbin="no" | |
29d48296 | 573 | faac="no" |
1ddadfa9 | 574 | xvid="no" |
6662ec29 | 575 | x264="no" |
ba9261e5 | 576 | a52="no" |
57514323 | 577 | a52bin="no" |
23c99253 | 578 | dts="no" |
ba9261e5 | 579 | pp="no" |
732d9245 | 580 | mingw32="no" |
860391a5 | 581 | wince="no" |
f3ec2d46 | 582 | os2="no" |
320d060a | 583 | lstatic="yes" |
83286d2a | 584 | lshared="no" |
cddf3f45 GM |
585 | optimize="yes" |
586 | debug="yes" | |
78fcba8f | 587 | extrawarnings="no" |
65d1bea2 | 588 | dostrip="yes" |
da186ae2 | 589 | installstrip="-s" |
ef0bc4c9 | 590 | extralibs="-lm" |
0f3cb305 | 591 | bigendian="no" |
a8721c09 | 592 | vhook="default" |
8ac17293 | 593 | avisynth="no" |
18b67ae5 | 594 | dlfcn_h="no" |
adbc0510 | 595 | dlopen="no" |
1eb2212e | 596 | mpegaudio_hp="yes" |
baa3a937 | 597 | SHFLAGS='-shared -Wl,-soname,$@' |
cab3ef82 | 598 | VHOOKSHFLAGS='$(SHFLAGS)' |
8e72b130 | 599 | beos_netserver="no" |
04f46ced | 600 | protocols="yes" |
786b30af | 601 | ffmpeg="yes" |
8154d2e0 | 602 | ffserver="yes" |
a86b921c | 603 | ffplay="yes" |
80581e98 | 604 | LIBOBJFLAGS="" |
e89b8b0a | 605 | FFLDFLAGS=-Wl,--warn-common |
e240ee67 | 606 | LDLATEFLAGS='-Wl,-rpath-link,\$(BUILD_ROOT)/libavcodec -Wl,-rpath-link,\$(BUILD_ROOT)/libavformat -Wl,-rpath-link,\$(BUILD_ROOT)/libavutil' |
c536cb09 | 607 | FFSERVERLDFLAGS=-Wl,-E |
f39e56a8 | 608 | LDCONFIG="ldconfig" |
f3ec2d46 SG |
609 | LIBPREF="lib" |
610 | LIBSUF=".a" | |
4bdd05e7 | 611 | LIB='$(LIBPREF)$(NAME)$(LIBSUF)' |
f3ec2d46 SG |
612 | SLIBPREF="lib" |
613 | SLIBSUF=".so" | |
4bdd05e7 | 614 | SLIBNAME='$(SLIBPREF)$(NAME)$(SLIBSUF)' |
b29bddab DB |
615 | SLIBNAME_WITH_VERSION='$(SLIBNAME).$(LIBVERSION)' |
616 | SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)' | |
951bf3e6 | 617 | EXESUF="" |
eb94aca9 | 618 | BUILDSUF="" |
891f64b3 | 619 | amr_nb="no" |
d663a1fd | 620 | amr_wb="no" |
bc634f6f | 621 | amr_nb_fixed="no" |
2a515c08 | 622 | amr_if2="no" |
bde24d6e | 623 | mlib="no" |
9c3d33d6 | 624 | pthreads="no" |
790c9ca7 | 625 | swscaler="no" |
b2e3c528 | 626 | gpl="no" |
9ddbcae6 | 627 | memalign_hack="no" |
4454dc1b | 628 | asmalign_pot="unknown" |
d4596ae3 | 629 | LIB_INSTALL_EXTRA_CMD='$(RANLIB) "$(libdir)/$(LIB)"' |
ef0bc4c9 FR |
630 | |
631 | # OS specific | |
632 | targetos=`uname -s` | |
633 | case $targetos in | |
634 | BeOS) | |
2266e085 | 635 | PREFIX="/boot/home/config" |
ef0bc4c9 | 636 | # helps building libavcodec |
30a3e5d4 | 637 | add_cflags "-DPIC -fomit-frame-pointer" |
31ba0b4d | 638 | # 3 gcc releases known for BeOS, each with ugly bugs |
b2924696 | 639 | gcc_version="`$cc -v 2>&1 | grep version | cut -d ' ' -f3-`" |
31ba0b4d FR |
640 | case "$gcc_version" in |
641 | 2.9-beos-991026*|2.9-beos-000224*) echo "R5/GG gcc" | |
642 | mmx="no" | |
643 | ;; | |
644 | *20010315*) echo "BeBits gcc" | |
30a3e5d4 | 645 | add_cflags "-fno-expensive-optimizations" |
31ba0b4d FR |
646 | ;; |
647 | esac | |
e1707f52 | 648 | SHFLAGS=-nostart |
29799f8b | 649 | # disable Linux things |
e1707f52 | 650 | audio_oss="no" |
9d2a0f1c MR |
651 | video4linux="no" |
652 | video4linux2="no" | |
8aa3ee32 | 653 | dv1394="no" |
29799f8b | 654 | # enable BeOS things |
dfdfa47c | 655 | audio_beos="yes" |
b265431e | 656 | beosthreads="yes" |
ef0bc4c9 FR |
657 | # no need for libm, but the inet stuff |
658 | # Check for BONE | |
659 | if (echo $BEINCLUDES|grep 'headers/be/bone' >/dev/null); then | |
660 | extralibs="-lbind -lsocket" | |
661 | else | |
8e72b130 | 662 | beos_netserver="yes" |
26b35efb | 663 | extralibs="-lnet" |
ef0bc4c9 | 664 | fi ;; |
4baca069 | 665 | SunOS) |
9d2a0f1c MR |
666 | video4linux="no" |
667 | video4linux2="no" | |
4baca069 | 668 | audio_oss="no" |
8aa3ee32 | 669 | dv1394="no" |
4baca069 | 670 | make="gmake" |
e89b8b0a | 671 | FFLDFLAGS="" |
c536cb09 | 672 | FFSERVERLDFLAGS="" |
813457e5 | 673 | SHFLAGS="-shared -Wl,-h,\$@" |
30a3e5d4 | 674 | add_extralibs "-lsocket -lnsl" |
4baca069 | 675 | ;; |
b7aa4a59 | 676 | NetBSD) |
9d2a0f1c MR |
677 | video4linux="no" |
678 | video4linux2="no" | |
6beefa40 | 679 | bktr="yes" |
b7aa4a59 SS |
680 | audio_oss="yes" |
681 | dv1394="no" | |
682 | make="gmake" | |
30a3e5d4 | 683 | add_extralibs "-lossaudio" |
b7aa4a59 | 684 | ;; |
8c802695 | 685 | OpenBSD) |
9d2a0f1c MR |
686 | video4linux="no" |
687 | video4linux2="no" | |
6beefa40 | 688 | bktr="yes" |
8c802695 JM |
689 | audio_oss="yes" |
690 | dv1394="no" | |
691 | make="gmake" | |
80581e98 | 692 | LIBOBJFLAGS="\$(PIC)" |
a1309f8f | 693 | LDCONFIG="ldconfig -m \$(shlibdir)" |
30a3e5d4 | 694 | add_extralibs "-lossaudio" |
8c802695 | 695 | ;; |
9c938e77 | 696 | FreeBSD) |
9d2a0f1c MR |
697 | video4linux="no" |
698 | video4linux2="no" | |
6beefa40 | 699 | bktr="yes" |
9c938e77 | 700 | audio_oss="yes" |
8aa3ee32 | 701 | dv1394="no" |
9c938e77 | 702 | make="gmake" |
30a3e5d4 | 703 | add_cflags "-pthread" |
9c938e77 | 704 | ;; |
38f0d3ce | 705 | GNU/kFreeBSD) |
9d2a0f1c MR |
706 | video4linux="no" |
707 | video4linux2="no" | |
38f0d3ce DB |
708 | bktr="yes" |
709 | audio_oss="yes" | |
710 | dv1394="no" | |
30a3e5d4 | 711 | add_cflags "-pthread" |
38f0d3ce | 712 | ;; |
4a908fbc | 713 | BSD/OS) |
9d2a0f1c MR |
714 | video4linux="no" |
715 | video4linux2="no" | |
6beefa40 | 716 | bktr="yes" |
6063bce7 | 717 | audio_oss="yes" |
8aa3ee32 | 718 | dv1394="no" |
4a908fbc AB |
719 | extralibs="-lpoll -lgnugetopt -lm" |
720 | make="gmake" | |
1db68540 SS |
721 | strip="strip -d" |
722 | installstrip="" | |
4a908fbc | 723 | ;; |
90cee0c3 | 724 | Darwin) |
a43bd1d7 | 725 | cc="cc" |
9d2a0f1c MR |
726 | video4linux="no" |
727 | video4linux2="no" | |
90cee0c3 | 728 | audio_oss="no" |
8aa3ee32 | 729 | dv1394="no" |
a1309f8f | 730 | SHFLAGS="-dynamiclib -Wl,-single_module -Wl,-install_name,\$(shlibdir)/\$(SLIBNAME),-current_version,\$(SPPVERSION),-compatibility_version,\$(SPPVERSION)" |
408382a4 | 731 | VHOOKSHFLAGS='-dynamiclib -Wl,-single_module -flat_namespace -undefined suppress -Wl,-install_name,$(shlibdir)/vhook/$@' |
90cee0c3 | 732 | extralibs="" |
47930f09 | 733 | strip="strip -x" |
da186ae2 | 734 | installstrip="" |
e89b8b0a | 735 | FFLDFLAGS="-Wl,-dynamic,-search_paths_first" |
4e159595 | 736 | SLIBSUF=".dylib" |
f3b60109 DB |
737 | SLIBNAME_WITH_FULLVERSION='$(SLIBPREF)$(NAME).$(LIBVERSION)$(SLIBSUF)' |
738 | SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(NAME).$(LIBMAJOR)$(SLIBSUF)' | |
c536cb09 | 739 | FFSERVERLDFLAGS=-Wl,-bind_at_load |
d4596ae3 | 740 | LIB_INSTALL_EXTRA_CMD='$(RANLIB) "$(libdir)/$(LIB)"' |
90cee0c3 | 741 | ;; |
732d9245 | 742 | MINGW32*) |
951bf3e6 | 743 | # Note: the rest of the mingw32 config is done afterwards as mingw32 |
29799f8b | 744 | # can be forced on the command line for Linux cross compilation. |
732d9245 BE |
745 | mingw32="yes" |
746 | ;; | |
3f027ca7 | 747 | CYGWIN*) |
b2828252 | 748 | targetos=CYGWIN |
4581fdff | 749 | shlibdir='${PREFIX}/bin' |
9d2a0f1c MR |
750 | video4linux="no" |
751 | video4linux2="no" | |
3f027ca7 | 752 | audio_oss="yes" |
8aa3ee32 | 753 | dv1394="no" |
07a1b05e | 754 | VHOOKSHFLAGS='-shared -L$(BUILD_ROOT)/libavformat -L$(BUILD_ROOT)/libavcodec -L$(BUILD_ROOT)/libavutil' |
fbb9d104 | 755 | VHOOKLIBS='-lavformat$(BUILDSUF) -lavcodec$(BUILDSUF) -lavutil$(BUILDSUF) $(EXTRALIBS)' |
3f027ca7 | 756 | extralibs="" |
487c2fad | 757 | EXESUF=".exe" |
4581fdff VP |
758 | SLIBPREF="cyg" |
759 | SLIBSUF=".dll" | |
760 | SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)' | |
761 | SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(NAME)-$(LIBMAJOR)$(SLIBSUF)' | |
762 | SHFLAGS='-shared -Wl,--out-implib=lib$(NAME).dll.a' | |
3f027ca7 | 763 | ;; |
b55e4ef4 | 764 | Linux) |
e240ee67 | 765 | LDLATEFLAGS="-Wl,--as-needed $LDLATEFLAGS" |
b55e4ef4 | 766 | ;; |
99614dd4 | 767 | IRIX*) |
b2828252 | 768 | targetos=IRIX |
99614dd4 | 769 | ranlib="echo ignoring ranlib" |
9d2a0f1c MR |
770 | video4linux="no" |
771 | video4linux2="no" | |
99614dd4 MB |
772 | audio_oss="no" |
773 | make="gmake" | |
774 | ;; | |
f3ec2d46 SG |
775 | OS/2) |
776 | TMPE=$TMPE".exe" | |
3ca4b654 | 777 | ar="emxomfar -p128" |
69db4e10 SG |
778 | ranlib="echo ignoring ranlib" |
779 | strip="echo ignoring strip" | |
30a3e5d4 | 780 | add_cflags "-Zomf" |
e89b8b0a | 781 | FFLDFLAGS="-Zomf -Zstack 16384 -s" |
3ca4b654 | 782 | SHFLAGS="-Zdll -Zomf" |
c536cb09 | 783 | FFSERVERLDFLAGS="" |
f3ec2d46 SG |
784 | LIBPREF="" |
785 | LIBSUF=".lib" | |
786 | SLIBPREF="" | |
787 | SLIBSUF=".dll" | |
951bf3e6 | 788 | EXESUF=".exe" |
f3ec2d46 | 789 | extralibs="" |
c99dd233 | 790 | pkg_requires="" |
9d2a0f1c MR |
791 | video4linux="no" |
792 | video4linux2="no" | |
f3ec2d46 | 793 | audio_oss="no" |
8aa3ee32 | 794 | dv1394="no" |
f3ec2d46 | 795 | ffserver="no" |
3ca4b654 | 796 | vhook="no" |
f3ec2d46 | 797 | os2="yes" |
b265431e | 798 | os2threads="yes" |
f3ec2d46 | 799 | ;; |
b2828252 DB |
800 | *) |
801 | targetos="${targetos}-UNKNOWN" | |
802 | ;; | |
ef0bc4c9 | 803 | esac |
de6d9b64 | 804 | |
0f3cb305 | 805 | # find source path |
997baf01 | 806 | source_path="`dirname \"$0\"`" |
0f3cb305 FB |
807 | source_path_used="yes" |
808 | if test -z "$source_path" -o "$source_path" = "." ; then | |
997baf01 | 809 | source_path="`pwd`" |
0f3cb305 | 810 | source_path_used="no" |
e7a4dafb MR |
811 | else |
812 | source_path="`cd \"$source_path\"; pwd`" | |
997baf01 MR |
813 | echo "$source_path" | grep -q '[[:blank:]]' && |
814 | die "Out of tree builds are impossible with whitespace in source path." | |
de6d9b64 FB |
815 | fi |
816 | ||
7d6ed4aa MR |
817 | if test x"$1" = x"-h" -o x"$1" = x"--help" ; then |
818 | show_help | |
819 | fi | |
820 | ||
f255e0ab MB |
821 | FFMPEG_CONFIGURATION=" " |
822 | for opt do | |
823 | FFMPEG_CONFIGURATION="$FFMPEG_CONFIGURATION""$opt " | |
824 | done | |
825 | ||
13638ea9 SH |
826 | ENCODER_LIST=`grep 'register_avcodec(&[a-z0-9_]*_encoder)' "$source_path/libavcodec/allcodecs.c" | sed 's/.*&\(.*\)).*/\1/'` |
827 | DECODER_LIST=`grep 'register_avcodec(&[a-z0-9_]*_decoder)' "$source_path/libavcodec/allcodecs.c" | sed 's/.*&\(.*\)).*/\1/'` | |
828 | PARSER_LIST=`grep 'av_register_codec_parser(&[a-z]' "$source_path/libavcodec/allcodecs.c" | sed 's/.*&\(.*\)).*/\1/'` | |
829 | MUXER_LIST=`grep 'av_register_output_format(&[a-z]' "$source_path/libavformat/allformats.c" | sed 's/.*&\(.*\)).*/\1/'` | |
830 | DEMUXER_LIST=`grep 'av_register_input_format(&[a-z]' "$source_path/libavformat/allformats.c" | sed 's/.*&\(.*\)).*/\1/'` | |
009cf97d | 831 | |
a8d04fba MR |
832 | enable $ENCODER_LIST $DECODER_LIST $PARSER_LIST $MUXER_LIST $DEMUXER_LIST |
833 | ||
de6d9b64 | 834 | for opt do |
fce53524 | 835 | optval="${opt#*=}" |
de6d9b64 | 836 | case "$opt" in |
2ba042a7 MR |
837 | --log) |
838 | ;; | |
fce53524 | 839 | --log=*) logging="$optval" |
57bd82d4 | 840 | ;; |
2266e085 | 841 | --prefix=*) PREFIX="$optval"; force_prefix=yes |
de6d9b64 | 842 | ;; |
fce53524 | 843 | --libdir=*) libdir="$optval"; force_libdir=yes |
cc973ecb | 844 | ;; |
84c22efd DB |
845 | --shlibdir=*) shlibdir="$optval" |
846 | ;; | |
fce53524 | 847 | --incdir=*) incdir="$optval" |
1d67a1d4 | 848 | ;; |
fce53524 | 849 | --mandir=*) mandir="$optval" |
23a65308 | 850 | ;; |
fce53524 | 851 | --source-path=*) source_path="$optval" |
0f3cb305 | 852 | ;; |
fce53524 | 853 | --cross-prefix=*) cross_prefix="$optval" |
0f3cb305 | 854 | ;; |
fac252f9 MR |
855 | --cross-compile) cross_compile=yes |
856 | ;; | |
fce53524 | 857 | --cc=*) cc="$optval" |
de6d9b64 | 858 | ;; |
fce53524 | 859 | --make=*) make="$optval" |
4a908fbc | 860 | ;; |
30a3e5d4 | 861 | --extra-cflags=*) add_cflags "$optval" |
0f3cb305 | 862 | ;; |
28d8e661 | 863 | --extra-ldflags=*) add_ldflags "$optval" |
0f3cb305 | 864 | ;; |
28d8e661 | 865 | --extra-libs=*) add_extralibs "$optval" |
0f3cb305 | 866 | ;; |
fce53524 | 867 | --build-suffix=*) BUILDSUF="$optval" |
eb94aca9 | 868 | ;; |
cc6a90dd | 869 | --arch=*) arch="$optval" |
de6d9b64 | 870 | ;; |
38d0a8aa | 871 | --cpu=*) cpu="$optval" |
a4adb608 | 872 | ;; |
e45a2872 RD |
873 | --powerpc-perf-enable) powerpc_perf="yes" |
874 | ;; | |
de6d9b64 FB |
875 | --disable-mmx) mmx="no" |
876 | ;; | |
1839e854 SS |
877 | --disable-armv5te) armv5te="no" |
878 | ;; | |
eba9ae3c GB |
879 | --disable-iwmmxt) iwmmxt="no" |
880 | ;; | |
ab6c65f6 BF |
881 | --disable-altivec) altivec="no" |
882 | ;; | |
de6d9b64 FB |
883 | --enable-gprof) gprof="yes" |
884 | ;; | |
9d2a0f1c | 885 | --disable-v4l) video4linux="no" |
5cbcf02c | 886 | ;; |
9d2a0f1c | 887 | --disable-v4l2) video4linux2="no" |
0a7b514f | 888 | ;; |
6beefa40 MN |
889 | --disable-bktr) bktr="no" |
890 | ;; | |
5cbcf02c FB |
891 | --disable-audio-oss) audio_oss="no" |
892 | ;; | |
dfdfa47c FR |
893 | --disable-audio-beos) audio_beos="no" |
894 | ;; | |
8aa3ee32 MK |
895 | --disable-dv1394) dv1394="no" |
896 | ;; | |
ffc0ef96 | 897 | --disable-network) network="no"; ffserver="no" |
5cbcf02c | 898 | ;; |
0c7bb0e5 LB |
899 | --disable-ipv6) ipv6="no"; |
900 | ;; | |
0147f198 FR |
901 | --disable-zlib) zlib="no" |
902 | ;; | |
ba9261e5 | 903 | --enable-a52) a52="yes" |
6ed7422a | 904 | ;; |
bfd2edeb | 905 | --enable-a52bin) a52bin="yes" |
57514323 | 906 | ;; |
c99dd233 | 907 | --enable-dts) dts="yes" |
23c99253 | 908 | ;; |
ba9261e5 | 909 | --enable-pp) pp="yes" |
bba9b16c | 910 | ;; |
bb4c2140 MN |
911 | --enable-libgsm) libgsm="yes" |
912 | ;; | |
c99dd233 | 913 | --enable-mp3lame) mp3lame="yes" |
a6741398 | 914 | ;; |
f956e129 OS |
915 | --enable-libnut) libnut="yes" |
916 | ;; | |
9146ca37 | 917 | --enable-libogg) libogg="yes" |
c99dd233 | 918 | pkg_requires="$pkg_requires ogg >= 1.1" |
5c5dea3f | 919 | ;; |
be74741c | 920 | --enable-vorbis) libvorbis="yes" |
c99dd233 | 921 | pkg_requires="$pkg_requires vorbis vorbisenc" |
81e0d0b4 | 922 | ;; |
445ad18d ZK |
923 | --enable-faad) faad="yes" |
924 | ;; | |
925 | --enable-faadbin) faadbin="yes" | |
926 | ;; | |
c99dd233 | 927 | --enable-faac) faac="yes" |
29d48296 | 928 | ;; |
1ddadfa9 AT |
929 | --enable-xvid) xvid="yes" |
930 | ;; | |
c99dd233 | 931 | --enable-x264) x264="yes" |
6662ec29 | 932 | ;; |
8ac17293 SH |
933 | --enable-avisynth) avisynth="yes"; |
934 | ;; | |
f02be79d | 935 | --enable-dc1394) dc1394="yes" |
c99dd233 | 936 | pkg_requires="$pkg_requires libraw1394" |
f02be79d | 937 | ;; |
68892110 PG |
938 | --disable-vhook) vhook="no" |
939 | ;; | |
732d9245 BE |
940 | --enable-mingw32) mingw32="yes" |
941 | ;; | |
860391a5 | 942 | --enable-mingwce) wince="yes" |
ac44871c | 943 | ;; |
320d060a DB |
944 | --enable-static) lstatic="yes" |
945 | ;; | |
946 | --disable-static) lstatic="no" | |
947 | ;; | |
83286d2a | 948 | --enable-shared) lshared="yes" |
0319c531 | 949 | ;; |
320d060a DB |
950 | --disable-shared) lshared="no" |
951 | ;; | |
cddf3f45 GM |
952 | --disable-debug) debug="no" |
953 | ;; | |
954 | --disable-opts) optimize="no" | |
955 | ;; | |
78fcba8f MR |
956 | --enable-extra-warnings) extrawarnings="yes" |
957 | ;; | |
1eb2212e FB |
958 | --disable-mpegaudio-hp) mpegaudio_hp="no" |
959 | ;; | |
04f46ced GB |
960 | --disable-protocols) protocols="no"; network="no"; ffserver="no" |
961 | ;; | |
786b30af DB |
962 | --disable-ffmpeg) ffmpeg="no" |
963 | ;; | |
8154d2e0 FB |
964 | --disable-ffserver) ffserver="no" |
965 | ;; | |
a86b921c FB |
966 | --disable-ffplay) ffplay="no" |
967 | ;; | |
cddf3f45 | 968 | --enable-small) optimize="small" |
553a6284 | 969 | ;; |
60827a1a | 970 | --enable-amr_nb) amr="yes"; amr_nb="yes"; amr_nb_fixed="no" |
891f64b3 | 971 | ;; |
60827a1a | 972 | --enable-amr_nb-fixed) amr="yes"; amr_nb_fixed="yes"; amr_nb="no" |
bc634f6f | 973 | ;; |
60827a1a | 974 | --enable-amr_wb) amr="yes"; amr_wb="yes" |
115329f1 | 975 | ;; |
60827a1a | 976 | --enable-amr_if2) amr="yes"; amr_if2="yes" |
2a515c08 | 977 | ;; |
bde24d6e | 978 | --enable-sunmlib) mlib="yes" |
f80f7964 | 979 | ;; |
9c3d33d6 MN |
980 | --enable-pthreads) pthreads="yes" |
981 | ;; | |
790c9ca7 LA |
982 | --enable-swscaler) swscaler="yes" |
983 | ;; | |
b2e3c528 MN |
984 | --enable-gpl) gpl="yes" |
985 | ;; | |
9ddbcae6 | 986 | --enable-memalign-hack) memalign_hack="yes" |
da9b170c | 987 | ;; |
65d1bea2 MB |
988 | --disable-strip) dostrip="no" |
989 | ;; | |
a8d04fba | 990 | --enable-encoder=*) enable ${optval}_encoder |
009cf97d | 991 | ;; |
a8d04fba | 992 | --enable-decoder=*) enable ${optval}_decoder |
f593b273 | 993 | ;; |
a8d04fba | 994 | --disable-encoder=*) disable ${optval}_encoder |
f593b273 | 995 | ;; |
a8d04fba | 996 | --disable-decoder=*) disable ${optval}_decoder |
009cf97d | 997 | ;; |
a8d04fba | 998 | --disable-encoders) disable $ENCODER_LIST |
009cf97d | 999 | ;; |
a8d04fba | 1000 | --disable-decoders) disable $DECODER_LIST |
b4cad537 | 1001 | ;; |
a8d04fba | 1002 | --enable-muxer=*) enable ${optval}_muxer |
a9e35095 | 1003 | ;; |
a8d04fba | 1004 | --disable-muxer=*) disable ${optval}_muxer |
ff70e601 | 1005 | ;; |
a8d04fba | 1006 | --disable-muxers) disable $MUXER_LIST; ffserver="no" |
ff70e601 | 1007 | ;; |
a8d04fba | 1008 | --enable-demuxer=*) enable ${optval}_demuxer |
ff70e601 | 1009 | ;; |
a8d04fba | 1010 | --disable-demuxer=*) disable ${optval}_demuxer |
ff70e601 | 1011 | ;; |
a8d04fba | 1012 | --disable-demuxers) disable $DEMUXER_LIST |
a9e35095 | 1013 | ;; |
a8d04fba | 1014 | --enable-parser=*) enable ${optval}_parser |
af9e7d18 | 1015 | ;; |
a8d04fba | 1016 | --disable-parser=*) disable ${optval}_parser |
af9e7d18 | 1017 | ;; |
a8d04fba | 1018 | --disable-parsers) disable $PARSER_LIST |
af9e7d18 | 1019 | ;; |
74c53c2d MR |
1020 | --help) show_help |
1021 | ;; | |
b34c63f7 DB |
1022 | *) |
1023 | echo "Unknown option \"$opt\"." | |
1024 | echo "See $0 --help for available options." | |
1025 | exit 1 | |
1026 | ;; | |
de6d9b64 FB |
1027 | esac |
1028 | done | |
1029 | ||
720c69da MR |
1030 | if test "$logging" != no; then |
1031 | test "$logging" = yes || logfile="$logging" | |
57bd82d4 MR |
1032 | echo "# $0 $@" >$logfile |
1033 | set >>$logfile | |
2ba042a7 MR |
1034 | else |
1035 | logfile=/dev/null | |
57bd82d4 | 1036 | fi |
e89b8b0a | 1037 | |
860391a5 | 1038 | if test "$mingw32" = "yes" -o "$wince" = "yes"; then |
e67bcdd9 DB |
1039 | if test "$lshared" = "yes" && test "$lstatic" = "yes" ; then |
1040 | cat <<EOF | |
1041 | You can only build one library type at once on MinGW. | |
1042 | Specify --disable-static --enable-shared to only build | |
1043 | the shared libraries. To build only the static libraries | |
1044 | you do not need to pass additional options. | |
1045 | EOF | |
1046 | exit 1 | |
1047 | fi | |
9d2a0f1c MR |
1048 | video4linux="no" |
1049 | video4linux2="no" | |
e67bcdd9 DB |
1050 | bktr="no" |
1051 | audio_oss="no" | |
1052 | dv1394="no" | |
1053 | dc1394="no" | |
1054 | ffserver="no" | |
1055 | network="no" | |
b265431e MR |
1056 | if enabled mingw32; then |
1057 | w32threads="yes" | |
1058 | fi | |
860391a5 | 1059 | if test "$wince" = "yes"; then |
e67bcdd9 DB |
1060 | protocols="no" |
1061 | fi | |
e67bcdd9 DB |
1062 | SLIBPREF="" |
1063 | SLIBSUF=".dll" | |
1064 | EXESUF=".exe" | |
d6a07a13 DB |
1065 | SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)' |
1066 | SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(NAME)-$(LIBMAJOR)$(SLIBSUF)' | |
dfeb80a5 | 1067 | SLIB_EXTRA_CMD="-lib /machine:i386 /def:\$(@:${SLIBSUF}=.def)" |
b89c8f58 | 1068 | SHFLAGS="-shared -Wl,--output-def,\$(@:${SLIBSUF}=.def),--out-implib,lib\$(SLIBNAME:\$(SLIBSUF)=.dll.a)" |
2266e085 | 1069 | if test "$force_prefix" != yes; then PREFIX="$PROGRAMFILES/FFmpeg"; fi |
1066a995 DB |
1070 | if test "$force_libdir" != yes; then bindir='${PREFIX}'; fi |
1071 | shlibdir='${PREFIX}' | |
e67bcdd9 DB |
1072 | fi |
1073 | ||
28d8e661 DB |
1074 | # Combine FFLDFLAGS and the LDFLAGS environment variable. |
1075 | LDFLAGS="$FFLDFLAGS $LDFLAGS" | |
e89b8b0a | 1076 | |
fac252f9 | 1077 | test -n "$cross_prefix" && cross_compile=yes |
1ea46bed MR |
1078 | cc="${cross_prefix}${cc}" |
1079 | ar="${cross_prefix}${ar}" | |
1080 | ranlib="${cross_prefix}${ranlib}" | |
1081 | strip="${cross_prefix}${strip}" | |
1082 | ||
320d060a DB |
1083 | # we need to build at least one lib type |
1084 | if test "$lstatic" = "no" && test "$lshared" = "no" ; then | |
1085 | cat <<EOF | |
1086 | At least one library type must be built. | |
1087 | Specify --enable-static to build the static libraries or --enable-shared to | |
1088 | build the shared libraries as well. To only build the shared libraries specify | |
1089 | --disable-static in addition to --enable-shared. | |
1090 | EOF | |
1091 | exit 1; | |
1092 | fi | |
1093 | ||
be74741c | 1094 | if test "$libvorbis" = "yes" ; then |
9146ca37 | 1095 | if test "$libogg" = "no"; then |
29799f8b | 1096 | echo "libogg must be enabled to enable Vorbis." |
5c5dea3f | 1097 | fail="yes" |
5c5dea3f NB |
1098 | fi |
1099 | fi | |
1100 | ||
b2e3c528 | 1101 | if test "$gpl" != "yes"; then |
ba64106a | 1102 | if test "$pp" != "no"; then |
29799f8b | 1103 | echo "The Postprocessing code is under GPL and --enable-gpl is not specified." |
b2e3c528 MN |
1104 | fail="yes" |
1105 | fi | |
1106 | ||
1107 | if test "$a52" != "no" -o "$a52bin" != "no"; then | |
29799f8b | 1108 | echo "liba52 is under GPL and --enable-gpl is not specified." |
b2e3c528 MN |
1109 | fail="yes" |
1110 | fi | |
23c99253 | 1111 | |
1ddadfa9 | 1112 | if test "$xvid" != "no"; then |
29799f8b | 1113 | echo "libxvidcore is under GPL and --enable-gpl is not specified." |
1ddadfa9 AT |
1114 | fail="yes" |
1115 | fi | |
1116 | ||
6662ec29 | 1117 | if test "$x264" != "no"; then |
29799f8b | 1118 | echo "x264 is under GPL and --enable-gpl is not specified." |
6662ec29 MN |
1119 | fail="yes" |
1120 | fi | |
1121 | ||
23c99253 | 1122 | if test "$dts" != "no"; then |
29799f8b | 1123 | echo "libdts is under GPL and --enable-gpl is not specified." |
23c99253 MN |
1124 | fail="yes" |
1125 | fi | |
115329f1 | 1126 | |
b2e3c528 | 1127 | if test "$faad" != "no" -o "$faadbin" != "no"; then |
dcd479c0 MR |
1128 | if check_header faad.h; then |
1129 | check_cc << EOF | |
b2e3c528 MN |
1130 | #include <faad.h> |
1131 | #ifndef FAAD2_VERSION | |
1132 | ok faad1 | |
1133 | #endif | |
1134 | int main( void ) { return 0; } | |
1135 | EOF | |
dcd479c0 | 1136 | if test $? = 0 ; then |
29799f8b | 1137 | echo "FAAD2 is under GPL and --enable-gpl is not specified." |
b2e3c528 MN |
1138 | fail="yes" |
1139 | fi | |
1140 | else | |
1141 | faad="no" | |
1142 | faadbin="no" | |
29799f8b | 1143 | echo "FAAD test failed." |
b2e3c528 MN |
1144 | fi |
1145 | fi | |
115329f1 | 1146 | |
790c9ca7 LA |
1147 | if test "$swscaler" != "no"; then |
1148 | echo "The software scaler is under GPL and --enable-gpl is not specified." | |
1149 | fail="yes" | |
1150 | fi | |
ebb810d9 | 1151 | fi |
b2e3c528 | 1152 | |
ebb810d9 RP |
1153 | if test "$fail" = "yes"; then |
1154 | exit 1 | |
b2e3c528 MN |
1155 | fi |
1156 | ||
29799f8b | 1157 | # compute MMX state |
0f3cb305 | 1158 | if test $mmx = "default"; then |
419b8784 | 1159 | if test $arch = "x86_32" -o $arch = "x86_64"; then |
0f3cb305 FB |
1160 | mmx="yes" |
1161 | else | |
1162 | mmx="no" | |
1163 | fi | |
1164 | fi | |
1165 | ||
cf9d24ad | 1166 | #Darwin CC versions |
75388c74 | 1167 | needmdynamicnopic="no" |
cf9d24ad | 1168 | if test $targetos = Darwin; then |
b2924696 | 1169 | if test -n "`$cc -v 2>&1 | grep xlc`"; then |
30a3e5d4 | 1170 | add_cflags "-qpdf2 -qlanglvl=extc99 -qmaxmem=-1 -qarch=auto -qtune=auto" |
cf9d24ad | 1171 | else |
bb270c08 DB |
1172 | gcc_version="`$cc -v 2>&1 | grep version | cut -d ' ' -f3-`" |
1173 | case "$gcc_version" in | |
1174 | *2.95*) | |
30a3e5d4 | 1175 | add_cflags "-no-cpp-precomp -pipe" |
bb270c08 DB |
1176 | ;; |
1177 | *[34].*) | |
30a3e5d4 | 1178 | add_cflags "-no-cpp-precomp -pipe -force_cpusubtype_ALL -Wno-sign-compare" |
bb270c08 DB |
1179 | if test "$lshared" = no; then |
1180 | needmdynamicnopic="yes" | |
1181 | fi | |
1182 | ;; | |
1183 | *) | |
30a3e5d4 | 1184 | add_cflags "-no-cpp-precomp -pipe" |
bb270c08 DB |
1185 | if test "$lshared" = no; then |
1186 | needmdynamicnopic="yes" | |
1187 | fi | |
1188 | ;; | |
1189 | esac | |
cf9d24ad | 1190 | fi |
2a1a6b64 MN |
1191 | fi |
1192 | ||
1193 | if test $optimize != "no"; then | |
1194 | add_cflags "-fomit-frame-pointer" | |
cf9d24ad DC |
1195 | fi |
1196 | ||
ab6c65f6 BF |
1197 | # Can only do AltiVec on PowerPC |
1198 | if test $altivec = "default"; then | |
cc6a90dd | 1199 | if test $arch = "powerpc"; then |
ab6c65f6 BF |
1200 | altivec="yes" |
1201 | else | |
1202 | altivec="no" | |
1203 | fi | |
1204 | fi | |
1205 | ||
a4adb608 | 1206 | # Add processor-specific flags |
9007f514 | 1207 | POWERPCMODE="32bits" |
38d0a8aa GP |
1208 | if test $cpu != "generic"; then |
1209 | case $cpu in | |
bb270c08 | 1210 | 601|ppc601|PowerPC601) |
1c5d830c | 1211 | add_cflags "-mcpu=601" |
bb270c08 DB |
1212 | if test $altivec = "yes"; then |
1213 | echo "WARNING: Tuning for PPC601 but AltiVec enabled!"; | |
1214 | fi | |
bb270c08 DB |
1215 | ;; |
1216 | 603*|ppc603*|PowerPC603*) | |
1c5d830c | 1217 | add_cflags "-mcpu=603" |
bb270c08 DB |
1218 | if test $altivec = "yes"; then |
1219 | echo "WARNING: Tuning for PPC603 but AltiVec enabled!"; | |
1220 | fi | |
bb270c08 DB |
1221 | ;; |
1222 | 604*|ppc604*|PowerPC604*) | |
1c5d830c | 1223 | add_cflags "-mcpu=604" |
bb270c08 DB |
1224 | if test $altivec = "yes"; then |
1225 | echo "WARNING: Tuning for PPC604 but AltiVec enabled!"; | |
1226 | fi | |
bb270c08 DB |
1227 | ;; |
1228 | G3|g3|75*|ppc75*|PowerPC75*) | |
1c5d830c | 1229 | add_cflags "-mcpu=750 -mpowerpc-gfxopt" |
bb270c08 DB |
1230 | if test $altivec = "yes"; then |
1231 | echo "WARNING: Tuning for PPC75x but AltiVec enabled!"; | |
1232 | fi | |
bb270c08 DB |
1233 | ;; |
1234 | G4|g4|745*|ppc745*|PowerPC745*) | |
1c5d830c | 1235 | add_cflags "-mcpu=7450 -mpowerpc-gfxopt" |
bb270c08 DB |
1236 | if test $altivec = "no"; then |
1237 | echo "WARNING: Tuning for PPC745x but AltiVec disabled!"; | |
1238 | fi | |
bb270c08 DB |
1239 | ;; |
1240 | 74*|ppc74*|PowerPC74*) | |
1c5d830c | 1241 | add_cflags "-mcpu=7400 -mpowerpc-gfxopt" |
bb270c08 DB |
1242 | if test $altivec = "no"; then |
1243 | echo "WARNING: Tuning for PPC74xx but AltiVec disabled!"; | |
1244 | fi | |
bb270c08 DB |
1245 | ;; |
1246 | G5|g5|970|ppc970|PowerPC970|power4*|Power4*) | |
1c5d830c | 1247 | add_cflags "-mcpu=970 -mpowerpc-gfxopt -mpowerpc64" |
bb270c08 DB |
1248 | if test $altivec = "no"; then |
1249 | echo "WARNING: Tuning for PPC970 but AltiVec disabled!"; | |
1250 | fi | |
9007f514 | 1251 | POWERPCMODE="64bits" |
bb270c08 | 1252 | ;; |
e7768fc5 GP |
1253 | # targets that do NOT support conditional mov (cmov) |
1254 | i[345]86|pentium|pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3) | |
38d0a8aa | 1255 | add_cflags "-march=$cpu" |
e7768fc5 GP |
1256 | cmov="no" |
1257 | ;; | |
1258 | # targets that do support conditional mov (cmov) | |
94e4c3a3 | 1259 | i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64|k8|opteron|athlon-fx) |
e7768fc5 | 1260 | add_cflags "-march=$cpu" |
4c8d81fa | 1261 | cmov="yes" |
94e4c3a3 GP |
1262 | cmov_is_fast="yes" |
1263 | ;; | |
1264 | # targets that do support conditional mov but on which it's slow | |
1265 | pentium4|prescott|nocona) | |
1266 | add_cflags "-march=$cpu" | |
1267 | cmov="yes" | |
1268 | cmov_is_fast="no" | |
bb270c08 | 1269 | ;; |
d7b34d08 | 1270 | sparc64) |
1c5d830c | 1271 | add_cflags "-mcpu=v9" |
d7b34d08 | 1272 | ;; |
bb270c08 | 1273 | *) |
38d0a8aa | 1274 | echo "WARNING: Unknown CPU \"$cpu\", ignored." |
bb270c08 | 1275 | ;; |
a4adb608 MN |
1276 | esac |
1277 | fi | |
1278 | ||
be0d52ab MR |
1279 | # make sure we can execute files in $TMPDIR |
1280 | cat >$TMPE 2>>$logfile <<EOF | |
1281 | #! /bin/sh | |
1282 | EOF | |
1283 | chmod +x $TMPE >>$logfile 2>&1 | |
1284 | if ! $TMPE >>$logfile 2>&1; then | |
1285 | cat <<EOF | |
1286 | Unable to create and execute files in $TMPDIR1. Set the TMPDIR environment | |
68300911 DB |
1287 | variable to another directory and make sure that $TMPDIR1 is not mounted |
1288 | noexec. | |
be0d52ab MR |
1289 | EOF |
1290 | die "Sanity test failed." | |
1291 | fi | |
0244f743 | 1292 | rm $TMPE |
be0d52ab | 1293 | |
1a268acc MR |
1294 | # compiler sanity check |
1295 | check_exec <<EOF | |
1296 | int main(){ | |
1297 | return 0; | |
1298 | } | |
1299 | EOF | |
1300 | if test "$?" != 0; then | |
1301 | echo "$cc is unable to create an executable file." | |
1302 | if test -z "$cross_prefix" -a "$cross_compile" = no; then | |
1303 | echo "If $cc is a cross-compiler, use the --cross-compile option." | |
c7ae6345 | 1304 | echo "Only do this if you know what cross compiling means." |
1a268acc MR |
1305 | fi |
1306 | die "C compiler test failed." | |
1307 | fi | |
1308 | ||
87ea51e0 LB |
1309 | # check for assembler specific support |
1310 | ||
cc6a90dd | 1311 | if test $arch = "powerpc"; then |
87ea51e0 LB |
1312 | check_cc <<EOF && dcbzl=yes |
1313 | int main(void) { | |
1314 | register long zero = 0; | |
1315 | char data[1024]; | |
1316 | asm volatile("dcbzl %0, %1" : : "b" (data), "r" (zero)); | |
1317 | return 0; | |
1318 | } | |
1319 | EOF | |
1320 | fi | |
1321 | ||
57bd82d4 MR |
1322 | # check for SIMD availability |
1323 | ||
115329f1 | 1324 | # AltiVec flags: The FSF version of GCC differs from the Apple version |
cc6a90dd | 1325 | if test $arch = "powerpc"; then |
b6e52719 | 1326 | if test $altivec = "yes"; then |
b2924696 | 1327 | if test -n "`$cc -v 2>&1 | grep version | grep Apple`"; then |
30a3e5d4 | 1328 | add_cflags "-faltivec" |
b6e52719 | 1329 | else |
30a3e5d4 | 1330 | add_cflags "-maltivec -mabi=altivec" |
b6e52719 MD |
1331 | fi |
1332 | fi | |
1333 | fi | |
1334 | ||
0701ca7f | 1335 | check_header altivec.h |
a9a07762 | 1336 | |
29799f8b | 1337 | # check if our compiler supports Motorola AltiVec C API |
ab6c65f6 | 1338 | if test $altivec = "yes"; then |
6e7a01e4 | 1339 | if test $altivec_h = "yes"; then |
f25fc9b1 MR |
1340 | inc_altivec_h="#include <altivec.h>" |
1341 | else | |
1342 | inc_altivec_h= | |
1343 | fi | |
1344 | check_cc <<EOF || altivec=no | |
dcd479c0 | 1345 | $inc_altivec_h |
a9a07762 MN |
1346 | int main(void) { |
1347 | vector signed int v1, v2, v3; | |
1348 | v1 = vec_add(v2,v3); | |
1349 | return 0; | |
1350 | } | |
1351 | EOF | |
1352 | fi | |
ab6c65f6 | 1353 | |
854fdb51 | 1354 | # check armv5te instructions support |
cc6a90dd | 1355 | if test $armv5te = "default" -a $arch = "armv4l"; then |
854fdb51 MR |
1356 | armv5te=no |
1357 | check_cc <<EOF && armv5te=yes | |
1358 | int main(void) { | |
1359 | __asm__ __volatile__ ("qadd r0, r0, r0"); | |
1360 | } | |
1361 | EOF | |
1362 | fi | |
1363 | ||
1364 | # check iwmmxt support | |
cc6a90dd | 1365 | if test $iwmmxt = "default" -a $arch = "armv4l"; then |
854fdb51 MR |
1366 | iwmmxt=no |
1367 | check_cc <<EOF && iwmmxt=yes | |
1368 | int main(void) { | |
1369 | __asm__ __volatile__ ("wunpckelub wr6, wr4"); | |
1370 | } | |
1371 | EOF | |
1372 | fi | |
1373 | ||
29799f8b | 1374 | # mmi only available on mips |
d46aba26 | 1375 | if test $mmi = "default"; then |
cc6a90dd | 1376 | if test $arch = "mips"; then |
d46aba26 LS |
1377 | mmi="yes" |
1378 | else | |
1379 | mmi="no" | |
1380 | fi | |
1381 | fi | |
1382 | ||
29799f8b | 1383 | # check if our compiler supports mmi |
57bd82d4 | 1384 | enabled mmi && check_cc <<EOF || mmi="no" |
d46aba26 LS |
1385 | int main(void) { |
1386 | __asm__ ("lq \$2, 0(\$2)"); | |
1387 | return 0; | |
1388 | } | |
1389 | EOF | |
57bd82d4 | 1390 | |
57bd82d4 MR |
1391 | # --- |
1392 | # big/little-endian test | |
fac252f9 | 1393 | if test "$cross_compile" = "no"; then |
57bd82d4 | 1394 | check_ld <<EOF || die "endian test failed" && $TMPE && bigendian="yes" |
a3999908 MN |
1395 | #include <inttypes.h> |
1396 | int main(int argc, char ** argv){ | |
bb270c08 DB |
1397 | volatile uint32_t i=0x01234567; |
1398 | return (*((uint8_t*)(&i))) == 0x67; | |
a3999908 MN |
1399 | } |
1400 | EOF | |
487a54d7 | 1401 | else |
f25fc9b1 | 1402 | # programs cannot be launched if cross compiling, so make a static guess |
cc6a90dd | 1403 | if test "$arch" = "powerpc" -o "$arch" = "mips" ; then |
f25fc9b1 MR |
1404 | bigendian="yes" |
1405 | fi | |
487a54d7 FB |
1406 | fi |
1407 | ||
a3999908 | 1408 | # --- |
3d204385 NK |
1409 | # check availability of some header files |
1410 | ||
0701ca7f MR |
1411 | check_header malloc.h |
1412 | check_func memalign | |
3d204385 | 1413 | |
1981aafc | 1414 | if test "$memalign" = "no" -a "$mmx" = "yes" -a \ |
9ddbcae6 | 1415 | "$memalign_hack" != "yes" -a "$targetos" != "Darwin" -a \ |
a9907393 | 1416 | "$targetos" != "FreeBSD" ; then |
57bd82d4 | 1417 | die "Error, no memalign() but SSE enabled, disable it or use --enable-memalign-hack." |
8bf5d58f MN |
1418 | fi |
1419 | ||
0701ca7f | 1420 | check_header byteswap.h |
47d23bbf | 1421 | |
0701ca7f MR |
1422 | check_func inet_aton |
1423 | check_func localtime_r | |
57bd82d4 | 1424 | enabled zlib && check_lib zlib.h zlibVersion -lz || zlib="no" |
57bd82d4 MR |
1425 | |
1426 | # check for some common methods of building with pthread support | |
1427 | # do this before the optional library checks as some of them require pthreads | |
1428 | if enabled pthreads; then | |
1429 | { check_cflags -pthread && check_ldflags -pthread; } || | |
1430 | { check_cflags -pthreads && check_ldflags -pthreads; } || | |
1431 | check_lib pthread.h pthread_create -lpthread || | |
1432 | check_func pthread_create || | |
1433 | die "ERROR: can't find pthreads library" | |
1434 | fi | |
1435 | ||
1436 | # these are off by default, so fail if requested and not available | |
4cbed916 | 1437 | enabled dts && require libdts dts.h dts_init -ldts -lm |
57bd82d4 | 1438 | enabled libgsm && require libgsm gsm.h gsm_create -lgsm |
4cbed916 | 1439 | enabled mp3lame && require LAME lame/lame.h lame_init -lmp3lame -lm |
be74741c | 1440 | enabled libvorbis && require libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbis -lvorbisenc -logg |
aedf11f8 | 1441 | enabled libogg && require libogg ogg/ogg.h ogg_sync_init -logg |
4d8aa1c3 | 1442 | enabled libnut && require libnut libnut.h nut_demuxer_init -lnut |
57bd82d4 MR |
1443 | enabled xvid && require XviD xvid.h xvid_global -lxvidcore |
1444 | enabled x264 && require x264 x264.h x264_encoder_open -lx264 | |
1445 | enabled dc1394 && require libdc1394 libdc1394/dc1394_control.h dc1394_create_handle -ldc1394_control -lraw1394 | |
bde24d6e | 1446 | enabled mlib && require mediaLib mlib_types.h mlib_VectorSub_S16_U8_Mod -lmlib |
e0f80bd7 | 1447 | |
3b9bee88 MR |
1448 | # Ugh, faac uses stdcall calling convention on win32 so we can't use |
1449 | # the generic test functions | |
1450 | if enabled faac; then | |
1451 | save_flags | |
1452 | temp_extralibs -lfaac | |
1453 | check_ld <<EOF && add_extralibs -lfaac || die "ERROR: libfaac not found" | |
1454 | #include <stdint.h> | |
1455 | #include <faac.h> | |
1456 | int main(){ | |
1457 | char *id, *cpr; | |
1458 | faacEncGetVersion(&id, &cpr); | |
1459 | return 0; | |
1460 | } | |
1461 | EOF | |
1462 | restore_flags | |
1463 | fi | |
1464 | ||
87f1c97e MR |
1465 | # Ugh, recent faad2 versions have renamed all functions and #define the |
1466 | # old names in faad.h. Generic tests won't work. | |
1467 | if enabled faad; then | |
1468 | save_flags | |
1469 | temp_extralibs -lfaad | |
1470 | check_ld <<EOF && add_extralibs -lfaad || die "ERROR: libfaad not found" | |
1471 | #include <faad.h> | |
1472 | int main(){ | |
1473 | faacDecOpen(); | |
1474 | return 0; | |
1475 | } | |
1476 | EOF | |
1477 | restore_flags | |
1478 | fi | |
1479 | ||
8ac17293 SH |
1480 | # Ugh, avisynth uses WINAPI calls. Generic tests won't work. |
1481 | if enabled avisynth; then | |
1482 | save_flags | |
1483 | temp_extralibs -lvfw32 | |
1484 | check_ld <<EOF && add_extralibs -lvfw32 || die "ERROR: vfw32 not found" | |
1485 | #include <windows.h> | |
1486 | #include <vfw.h> | |
1487 | int main(){ | |
1488 | AVIFileInit(); | |
1489 | return 0; | |
1490 | } | |
1491 | EOF | |
1492 | restore_flags | |
1493 | fi | |
1494 | ||
1495 | ||
95e2ce4a | 1496 | # test for lrintf in math.h |
fc2b267f | 1497 | check_exec <<EOF && lrintf=yes || lrintf=no |
95e2ce4a MN |
1498 | #define _ISOC9X_SOURCE 1 |
1499 | #include <math.h> | |
1500 | int main( void ) { return (lrintf(3.999f) > 0)?0:1; } | |
1501 | EOF | |
1502 | ||
c13e1abd FH |
1503 | _restrict= |
1504 | for restrict_keyword in restrict __restrict__ __restrict; do | |
57bd82d4 | 1505 | check_cc <<EOF && _restrict=$restrict_keyword && break |
dcd479c0 MR |
1506 | void foo(char * $restrict_keyword p); |
1507 | EOF | |
c13e1abd FH |
1508 | done |
1509 | ||
a8721c09 FB |
1510 | # dlopen/dlfcn.h probing |
1511 | ||
0701ca7f | 1512 | check_header dlfcn.h |
a8721c09 | 1513 | |
dcd479c0 | 1514 | if check_func dlopen; then |
dcd479c0 | 1515 | ldl= |
0701ca7f MR |
1516 | elif check_func dlopen -ldl; then |
1517 | ldl=-ldl | |
a8721c09 FB |
1518 | fi |
1519 | ||
f25fc9b1 MR |
1520 | if test "$vhook" = "default"; then |
1521 | vhook="$dlopen" | |
a8721c09 FB |
1522 | fi |
1523 | ||
22df6d18 | 1524 | if enabled_any vhook a52bin faadbin; then |
57bd82d4 | 1525 | add_extralibs $ldl |
bfd2edeb MN |
1526 | fi |
1527 | ||
fbb9d104 VP |
1528 | if test "$targetos" = "CYGWIN" -a "$lstatic" = "yes" ; then |
1529 | vhook="no" | |
1530 | echo | |
1531 | echo "At the moment vhooks don't work on Cygwin static builds." | |
1532 | echo "Patches welcome." | |
1533 | echo | |
1534 | fi | |
1535 | ||
8d923001 MR |
1536 | if enabled vhook; then |
1537 | check_ldflags -rdynamic | |
1538 | check_ldflags -export-dynamic | |
1539 | fi | |
bfd2edeb | 1540 | |
9464f2b8 DB |
1541 | if enabled audio_beos; then |
1542 | add_extralibs "-lmedia -lbe" | |
1543 | fi | |
1544 | ||
a86b921c | 1545 | ########################################## |
29799f8b | 1546 | # imlib check |
a86b921c | 1547 | |
dcd479c0 MR |
1548 | temp_extralibs -lImlib2 |
1549 | check_ld <<EOF && imlib2=yes || imlib2=no | |
a8721c09 FB |
1550 | #include <X11/Xlib.h> |
1551 | #include <Imlib2.h> | |
1552 | int main( void ) { return (int) imlib_load_font("foo"); } | |
1553 | EOF | |
dcd479c0 | 1554 | restore_flags |
52b41d7f | 1555 | |
a86b921c | 1556 | ########################################## |
29799f8b | 1557 | # FreeType check |
a86b921c | 1558 | |
04511d53 | 1559 | freetype2=no |
e2a5fd20 | 1560 | if test "x$targetos" != "xBeOS"; then |
e2a3cd59 | 1561 | if (freetype-config --version) >/dev/null 2>&1 ; then |
dcd479c0 MR |
1562 | temp_cflags `freetype-config --cflags` |
1563 | temp_extralibs `freetype-config --libs` | |
1564 | check_ld <<EOF && freetype2=yes | |
1565 | #include <ft2build.h> | |
1566 | int main( void ) { return (int) FT_Init_FreeType(0); } | |
1567 | EOF | |
1568 | restore_flags | |
dee076fc | 1569 | fi |
04511d53 PG |
1570 | fi |
1571 | ||
a86b921c | 1572 | ########################################## |
29799f8b | 1573 | # SDL check |
a86b921c | 1574 | |
a86b921c FB |
1575 | sdl_too_old=no |
1576 | sdl=no | |
6a1a892f FD |
1577 | SDL_CONFIG="${cross_prefix}sdl-config" |
1578 | if ("${SDL_CONFIG}" --version) >/dev/null 2>&1 ; then | |
dcd479c0 MR |
1579 | temp_cflags `"${SDL_CONFIG}" --cflags` |
1580 | temp_extralibs `"${SDL_CONFIG}" --libs` | |
1581 | check_ld <<EOF | |
1582 | #include <SDL.h> | |
1583 | #undef main /* We don't want SDL to override our main() */ | |
1584 | int main( void ) { return SDL_Init (SDL_INIT_VIDEO); } | |
1585 | EOF | |
dcd479c0 MR |
1586 | if test $? = 0; then |
1587 | _sdlversion=`"${SDL_CONFIG}" --version | sed 's/[^0-9]//g'` | |
29f3b38a | 1588 | if test "$_sdlversion" -lt 121 ; then |
dcd479c0 MR |
1589 | sdl_too_old=yes |
1590 | else | |
1591 | sdl=yes | |
29f3b38a MR |
1592 | check_cc <<EOF && sdl_video_size=yes || sdl_video_size=no |
1593 | #include <SDL.h> | |
1594 | int main(void){ | |
1595 | const SDL_VideoInfo *vi = SDL_GetVideoInfo(); | |
1596 | int w = vi->current_w; | |
1597 | return 0; | |
1598 | } | |
1599 | EOF | |
dcd479c0 MR |
1600 | fi |
1601 | fi | |
29f3b38a | 1602 | restore_flags |
c3f6b472 | 1603 | fi |
a86b921c | 1604 | |
57bd82d4 MR |
1605 | enabled sdl || ffplay=no |
1606 | ||
146ea952 | 1607 | ########################################## |
29799f8b | 1608 | # texi2html check |
146ea952 NB |
1609 | |
1610 | texi2html=no | |
e2a3cd59 | 1611 | if (texi2html -version) >/dev/null 2>&1; then |
146ea952 NB |
1612 | texi2html=yes |
1613 | fi | |
1614 | ||
7a91333f | 1615 | ########################################## |
29799f8b | 1616 | # IPv6 check |
7a91333f | 1617 | |
0c7bb0e5 | 1618 | enabled network && enabled ipv6 && check_ld <<EOF && ipv6=yes || ipv6=no |
7a91333f HZ |
1619 | #include <sys/types.h> |
1620 | #include <sys/socket.h> | |
1621 | #include <netinet/in.h> | |
1622 | #include <netdb.h> | |
1623 | int main( void ) { | |
1624 | struct sockaddr_storage saddr; | |
1625 | struct ipv6_mreq mreq6; | |
1626 | getaddrinfo(0,0,0,0); | |
1627 | getnameinfo(0,0,0,0,0,0,0); | |
12fe88b4 | 1628 | IN6_IS_ADDR_MULTICAST((const struct in6_addr *)0); |
7a91333f HZ |
1629 | } |
1630 | EOF | |
1631 | ||
47f38850 | 1632 | # check for video4linux2 --- V4L2_PIX_FMT_YUV420 |
9d2a0f1c | 1633 | enabled video4linux2 && check_cc <<EOF || video4linux2="no" |
84fe9963 | 1634 | #include <sys/time.h> |
f743a062 LA |
1635 | #include <asm/types.h> |
1636 | #include <linux/videodev2.h> | |
47f38850 | 1637 | int dummy = V4L2_PIX_FMT_YUV420; |
490c189b | 1638 | struct v4l2_buffer dummy1; |
47f38850 | 1639 | EOF |
47f38850 | 1640 | |
57bd82d4 MR |
1641 | enabled debug && add_cflags -g |
1642 | ||
1643 | # add some useful compiler flags if supported | |
1644 | check_cflags -Wdeclaration-after-statement | |
dcd479c0 MR |
1645 | check_cflags -Wall |
1646 | check_cflags -Wno-switch | |
c07bd6a9 MN |
1647 | check_cflags -Wdisabled-optimization |
1648 | check_cflags -Wpointer-arith | |
1649 | check_cflags -Wredundant-decls | |
78fcba8f | 1650 | enabled extrawarnings && check_cflags -Winline |
cf9d24ad | 1651 | |
57bd82d4 | 1652 | # add some linker flags |
e240ee67 | 1653 | check_ldflags $LDLATEFLAGS |
94a3401e | 1654 | |
57bd82d4 MR |
1655 | # not all compilers support -Os |
1656 | test "$optimize" = "small" && check_cflags -Os | |
cddf3f45 | 1657 | |
57bd82d4 | 1658 | if enabled optimize; then |
b2924696 | 1659 | if test -n "`$cc -v 2>&1 | grep xlc`"; then |
30a3e5d4 NP |
1660 | add_cflags "-O5" |
1661 | add_ldflags "-O5" | |
cf9d24ad | 1662 | else |
30a3e5d4 | 1663 | add_cflags "-O3" |
cf9d24ad | 1664 | fi |
cddf3f45 GM |
1665 | fi |
1666 | ||
80581e98 MN |
1667 | # PIC flags for shared library objects where they are needed |
1668 | if test "$lshared" = "yes" ; then | |
f25fc9b1 MR |
1669 | # LIBOBJFLAGS may have already been set in the OS configuration |
1670 | if test -z "$LIBOBJFLAGS" ; then | |
cc6a90dd | 1671 | case "$arch" in |
813457e5 MR |
1672 | x86_64|ia64|alpha|sparc*) LIBOBJFLAGS="\$(PIC)" ;; |
1673 | esac | |
80581e98 | 1674 | fi |
80581e98 MN |
1675 | fi |
1676 | ||
1db54e20 | 1677 | if test "$gprof" = "yes" ; then |
30a3e5d4 NP |
1678 | add_cflags "-p" |
1679 | add_ldflags "-p" | |
1db54e20 DB |
1680 | fi |
1681 | ||
18451f7d MR |
1682 | VHOOKCFLAGS="-fPIC $CFLAGS" |
1683 | test "$needmdynamicnopic" = yes && add_cflags -mdynamic-no-pic | |
1684 | ||
4454dc1b JD |
1685 | # find if .align arg is power-of-two or not |
1686 | if test $asmalign_pot = "unknown"; then | |
1687 | asmalign_pot="no" | |
1688 | echo 'asm (".align 3");' | check_cc && asmalign_pot="yes" | |
1689 | fi | |
1690 | ||
2266e085 | 1691 | echo "install prefix $PREFIX" |
29799f8b | 1692 | echo "source path $source_path" |
de6d9b64 | 1693 | echo "C compiler $cc" |
4a908fbc | 1694 | echo "make $make" |
38d0a8aa | 1695 | echo "ARCH $arch ($cpu)" |
eb94aca9 | 1696 | if test "$BUILDSUF" != ""; then |
f25fc9b1 | 1697 | echo "build suffix $BUILDSUF" |
eb94aca9 | 1698 | fi |
29799f8b | 1699 | echo "big-endian $bigendian" |
419b8784 | 1700 | if test $arch = "x86_32" -o $arch = "x86_64"; then |
f25fc9b1 | 1701 | echo "MMX enabled $mmx" |
e7768fc5 | 1702 | echo "CMOV enabled $cmov" |
94e4c3a3 | 1703 | echo "CMOV is fast $cmov_is_fast" |
e41e8342 | 1704 | fi |
cc6a90dd | 1705 | if test $arch = "armv4l"; then |
1839e854 | 1706 | echo "ARMv5TE enabled $armv5te" |
f25fc9b1 | 1707 | echo "IWMMXT enabled $iwmmxt" |
eba9ae3c | 1708 | fi |
cc6a90dd | 1709 | if test $arch = "mips"; then |
f25fc9b1 | 1710 | echo "MMI enabled $mmi" |
e41e8342 | 1711 | fi |
cc6a90dd | 1712 | if test $arch = "powerpc"; then |
f25fc9b1 | 1713 | echo "AltiVec enabled $altivec" |
87ea51e0 | 1714 | echo "dcbzl available $dcbzl" |
e41e8342 | 1715 | fi |
de6d9b64 | 1716 | echo "gprof enabled $gprof" |
0147f198 | 1717 | echo "zlib enabled $zlib" |
bb4c2140 | 1718 | echo "libgsm enabled $libgsm" |
a6741398 | 1719 | echo "mp3lame enabled $mp3lame" |
f956e129 | 1720 | echo "libnut enabled $libnut" |
9146ca37 | 1721 | echo "libogg enabled $libogg" |
be74741c | 1722 | echo "Vorbis enabled $libvorbis" |
29799f8b | 1723 | echo "FAAD enabled $faad" |
445ad18d | 1724 | echo "faadbin enabled $faadbin" |
29799f8b DB |
1725 | echo "FAAC enabled $faac" |
1726 | echo "XviD enabled $xvid" | |
6662ec29 | 1727 | echo "x264 enabled $x264" |
5cbcf02c | 1728 | echo "a52 support $a52" |
57514323 | 1729 | echo "a52 dlopened $a52bin" |
29799f8b | 1730 | echo "DTS support $dts" |
bba9b16c | 1731 | echo "pp support $pp" |
790c9ca7 | 1732 | echo "Software Scaler enabled $swscaler" |
8ac17293 | 1733 | echo "AVISynth enabled $avisynth" |
cddf3f45 | 1734 | echo "debug symbols $debug" |
65d1bea2 | 1735 | echo "strip symbols $dostrip" |
cddf3f45 | 1736 | echo "optimize $optimize" |
320d060a | 1737 | echo "static $lstatic" |
1ddf5ba1 | 1738 | echo "shared $lshared" |
29799f8b | 1739 | echo "video hooking $vhook" |
a86b921c FB |
1740 | echo "SDL support $sdl" |
1741 | if test $sdl_too_old = "yes"; then | |
f25fc9b1 | 1742 | echo "-> Your SDL version is too old - please upgrade to have FFplay/SDL support." |
a86b921c | 1743 | fi |
68892110 | 1744 | |
f25fc9b1 MR |
1745 | if test "$vhook" = "yes"; then |
1746 | echo "Imlib2 support $imlib2" | |
1747 | echo "FreeType support $freetype2" | |
68892110 | 1748 | fi |
bde24d6e | 1749 | echo "Sun medialib support" $mlib |
9c3d33d6 | 1750 | echo "pthreads support" $pthreads |
bc634f6f ZK |
1751 | echo "AMR-NB float support" $amr_nb |
1752 | echo "AMR-NB fixed support" $amr_nb_fixed | |
d663a1fd | 1753 | echo "AMR-WB float support" $amr_wb |
2a515c08 | 1754 | echo "AMR-WB IF2 support" $amr_if2 |
7a91333f HZ |
1755 | echo "network support $network" |
1756 | if test "$network" = "yes" ; then | |
f25fc9b1 | 1757 | echo "IPv6 support $ipv6" |
7a91333f | 1758 | fi |
4454dc1b | 1759 | echo ".align is power-of-two" $asmalign_pot |
b2e3c528 | 1760 | if test "$gpl" = "no" ; then |
f25fc9b1 | 1761 | echo "License: LGPL" |
b2e3c528 | 1762 | else |
f25fc9b1 | 1763 | echo "License: GPL" |
b2e3c528 | 1764 | fi |
de6d9b64 | 1765 | |
29799f8b | 1766 | echo "Creating config.mak and config.h..." |
de6d9b64 | 1767 | |
f255e0ab MB |
1768 | date >> config.log |
1769 | echo " $0 $FFMPEG_CONFIGURATION" >> config.log | |
29799f8b DB |
1770 | echo "# Automatically generated by configure - do not modify!" > config.mak |
1771 | echo "/* Automatically generated by configure - do not modify! */" > $TMPH | |
f255e0ab | 1772 | echo "#define FFMPEG_CONFIGURATION "'"'"$FFMPEG_CONFIGURATION"'"' >> $TMPH |
de6d9b64 | 1773 | |
2266e085 DB |
1774 | echo "PREFIX=$PREFIX" >> config.mak |
1775 | echo "prefix=\$(DESTDIR)\${PREFIX}" >> config.mak | |
9a695e98 | 1776 | echo "libdir=\$(DESTDIR)$libdir" >> config.mak |
84c22efd | 1777 | echo "shlibdir=\$(DESTDIR)$shlibdir" >> config.mak |
1d67a1d4 | 1778 | echo "incdir=\$(DESTDIR)$incdir" >> config.mak |
9a695e98 DB |
1779 | echo "bindir=\$(DESTDIR)$bindir" >> config.mak |
1780 | echo "mandir=\$(DESTDIR)$mandir" >> config.mak | |
4a908fbc | 1781 | echo "MAKE=$make" >> config.mak |
980fc7b8 FB |
1782 | echo "CC=$cc" >> config.mak |
1783 | echo "AR=$ar" >> config.mak | |
be7109c1 | 1784 | echo "RANLIB=$ranlib" >> config.mak |
65d1bea2 | 1785 | if test "$dostrip" = "yes" ; then |
f25fc9b1 MR |
1786 | echo "STRIP=$strip" >> config.mak |
1787 | echo "INSTALLSTRIP=$installstrip" >> config.mak | |
65d1bea2 | 1788 | else |
f25fc9b1 MR |
1789 | echo "STRIP=echo ignoring strip" >> config.mak |
1790 | echo "INSTALLSTRIP=" >> config.mak | |
65d1bea2 | 1791 | fi |
75388c74 | 1792 | |
a9b3f630 | 1793 | echo "OPTFLAGS=$CFLAGS" >> config.mak |
408382a4 | 1794 | echo "VHOOKCFLAGS=$VHOOKCFLAGS">>config.mak |
0f3cb305 | 1795 | echo "LDFLAGS=$LDFLAGS" >> config.mak |
f39e56a8 | 1796 | echo "LDCONFIG=$LDCONFIG" >> config.mak |
c536cb09 | 1797 | echo "FFSERVERLDFLAGS=$FFSERVERLDFLAGS" >> config.mak |
e1707f52 | 1798 | echo "SHFLAGS=$SHFLAGS" >> config.mak |
408382a4 | 1799 | echo "VHOOKSHFLAGS=$VHOOKSHFLAGS" >> config.mak |
fbb9d104 | 1800 | echo "VHOOKLIBS=$VHOOKLIBS" >> config.mak |
80581e98 | 1801 | echo "LIBOBJFLAGS=$LIBOBJFLAGS" >> config.mak |
b12f8273 | 1802 | echo "BUILD_STATIC=$lstatic" >> config.mak |
eb94aca9 | 1803 | echo "BUILDSUF=$BUILDSUF" >> config.mak |
f3ec2d46 | 1804 | echo "LIBPREF=$LIBPREF" >> config.mak |
eb94aca9 | 1805 | echo "LIBSUF=\${BUILDSUF}$LIBSUF" >> config.mak |
320d060a DB |
1806 | if test "$lstatic" = "yes" ; then |
1807 | echo "LIB=$LIB" >> config.mak | |
1a44a8b6 AS |
1808 | else # Some Make complain if this variable does not exist. |
1809 | echo "LIB=" >> config.mak | |
320d060a | 1810 | fi |
f3ec2d46 | 1811 | echo "SLIBPREF=$SLIBPREF" >> config.mak |
eb94aca9 CY |
1812 | echo "SLIBSUF=\${BUILDSUF}$SLIBSUF" >> config.mak |
1813 | echo "EXESUF=\${BUILDSUF}$EXESUF" >> config.mak | |
b2828252 | 1814 | echo "TARGET_OS=$targetos" >> config.mak |
4dc62701 MR |
1815 | |
1816 | ucarch=`toupper $arch` | |
1817 | echo "TARGET_ARCH_${ucarch}=yes" >> config.mak | |
1818 | echo "#define ARCH_${ucarch} 1" >> $TMPH | |
1819 | ||
1820 | # special cases | |
1821 | case "$arch" in | |
1822 | x86_32|x86_64) | |
1823 | echo "TARGET_ARCH_X86=yes" >> config.mak | |
1824 | echo "#define ARCH_X86 1" >> $TMPH | |
1825 | ;; | |
1826 | powerpc) | |
1827 | if test "$POWERPCMODE" = "64bits"; then | |
1828 | echo "#define POWERPC_MODE_64BITS 1" >> $TMPH | |
1829 | fi | |
1830 | if test "$powerpc_perf" = "yes"; then | |
1831 | echo "#define POWERPC_PERFORMANCE_REPORT 1" >> $TMPH | |
1832 | fi | |
1833 | ;; | |
1834 | sparc64) | |
1835 | echo "TARGET_ARCH_SPARC=yes" >> config.mak | |
1836 | echo "#define ARCH_SPARC 1" >> $TMPH | |
1837 | ;; | |
1838 | esac | |
1839 | ||
0f3cb305 FB |
1840 | if test "$bigendian" = "yes" ; then |
1841 | echo "WORDS_BIGENDIAN=yes" >> config.mak | |
1842 | echo "#define WORDS_BIGENDIAN 1" >> $TMPH | |
91d1f1a4 | 1843 | fi |
57514323 | 1844 | if test "$mmx" = "yes" ; then |
980fc7b8 | 1845 | echo "TARGET_MMX=yes" >> config.mak |
045ed63f | 1846 | echo "#define HAVE_MMX 1" >> $TMPH |
e82c5a8c | 1847 | echo "#define __CPU__ 586" >> $TMPH |
de6d9b64 | 1848 | fi |
e7768fc5 GP |
1849 | if test "$cmov" = "yes" ; then |
1850 | echo "TARGET_CMOV=yes" >> config.mak | |
1851 | echo "#define HAVE_CMOV 1" >> $TMPH | |
1852 | fi | |
94e4c3a3 GP |
1853 | if test "$cmov_is_fast" = "yes" ; then |
1854 | echo "TARGET_CMOV_IS_FAST=yes" >> config.mak | |
1855 | echo "#define CMOV_IS_FAST 1" >> $TMPH | |
1856 | fi | |
1839e854 SS |
1857 | if test "$armv5te" = "yes" ; then |
1858 | echo "TARGET_ARMV5TE=yes" >> config.mak | |
1859 | echo "#define HAVE_ARMV5TE 1" >> $TMPH | |
1860 | fi | |
eba9ae3c GB |
1861 | if test "$iwmmxt" = "yes" ; then |
1862 | echo "TARGET_IWMMXT=yes" >> config.mak | |
1863 | echo "#define HAVE_IWMMXT 1" >> $TMPH | |
1864 | fi | |
d46aba26 LS |
1865 | if test "$mmi" = "yes" ; then |
1866 | echo "TARGET_MMI=yes" >> config.mak | |
1867 | echo "#define HAVE_MMI 1" >> $TMPH | |
1868 | fi | |
87ea51e0 | 1869 | |
ab6c65f6 BF |
1870 | if test "$altivec" = "yes" ; then |
1871 | echo "TARGET_ALTIVEC=yes" >> config.mak | |
1872 | echo "#define HAVE_ALTIVEC 1" >> $TMPH | |
f80f7964 | 1873 | fi |
44161118 | 1874 | |
a86b921c | 1875 | if test "$sdl" = "yes" ; then |
6a1a892f FD |
1876 | echo "SDL_LIBS=`"${SDL_CONFIG}" --libs`" >> config.mak |
1877 | echo "SDL_CFLAGS=`"${SDL_CONFIG}" --cflags`" >> config.mak | |
a86b921c | 1878 | fi |
146ea952 NB |
1879 | if test "$texi2html" = "yes"; then |
1880 | echo "BUILD_DOC=yes" >> config.mak | |
1881 | fi | |
5a872801 | 1882 | |
790c9ca7 | 1883 | sws_version=`grep '#define LIBSWSCALE_VERSION ' "$source_path/libswscale/swscale.h" | sed 's/[^0-9\.]//g'` |
6d9a2421 | 1884 | pp_version=`grep '#define LIBPOSTPROC_VERSION ' "$source_path/libpostproc/postprocess.h" | sed 's/[^0-9\.]//g'` |
5a872801 LB |
1885 | lavc_version=`grep '#define LIBAVCODEC_VERSION ' "$source_path/libavcodec/avcodec.h" | sed 's/[^0-9\.]//g'` |
1886 | lavf_version=`grep '#define LIBAVFORMAT_VERSION ' "$source_path/libavformat/avformat.h" | sed 's/[^0-9\.]//g'` | |
1887 | lavu_version=`grep '#define LIBAVUTIL_VERSION ' "$source_path/libavutil/avutil.h" | sed 's/[^0-9\.]//g'` | |
1888 | ||
1889 | ||
1890 | ||
57514323 | 1891 | if test "$lshared" = "yes" ; then |
320d060a | 1892 | echo "#define BUILD_SHARED_AV 1" >> $TMPH |
0319c531 | 1893 | echo "BUILD_SHARED=yes" >> config.mak |
97006039 | 1894 | echo "PIC=-fPIC -DPIC" >> config.mak |
39503a27 | 1895 | echo "SPPMAJOR=${lavc_version%%.*}" >> config.mak |
5a872801 | 1896 | echo "SPPVERSION=$lavc_version" >> config.mak |
39503a27 | 1897 | echo "LAVCMAJOR=${lavc_version%%.*}" >> config.mak |
5a872801 | 1898 | echo "LAVCVERSION=$lavc_version" >> config.mak |
39503a27 | 1899 | echo "LAVFMAJOR=${lavf_version%%.*}" >> config.mak |
5a872801 | 1900 | echo "LAVFVERSION=$lavf_version" >> config.mak |
39503a27 | 1901 | echo "LAVUMAJOR=${lavu_version%%.*}" >> config.mak |
5a872801 | 1902 | echo "LAVUVERSION=$lavu_version" >> config.mak |
790c9ca7 LA |
1903 | echo "SWSMAJOR=${sws_version%%.*}" >> config.mak |
1904 | echo "SWSVERSION=$sws_version" >> config.mak | |
4bdd05e7 | 1905 | echo "SLIBNAME=${SLIBNAME}" >> config.mak |
f3b60109 DB |
1906 | echo "SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}" >> config.mak |
1907 | echo "SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}" >> config.mak | |
5cb854e1 | 1908 | echo "SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}" >> config.mak |
0319c531 | 1909 | fi |
d7e27559 | 1910 | echo "LIB_INSTALL_EXTRA_CMD=${LIB_INSTALL_EXTRA_CMD}" >> config.mak |
ef0bc4c9 | 1911 | echo "EXTRALIBS=$extralibs" >> config.mak |
d2845d68 | 1912 | |
44161118 MR |
1913 | enabled_any $ENCODER_LIST && enable encoders |
1914 | enabled_any $DECODER_LIST && enable decoders | |
1915 | enabled_any $MUXER_LIST && enable muxers | |
1916 | enabled_any $DEMUXER_LIST && enable demuxers | |
f956e129 | 1917 | |
b265431e MR |
1918 | enabled_any pthreads beosthreads os2threads w32threads && enable threads |
1919 | ||
44161118 MR |
1920 | print_config HAVE_ $TMPH config.mak $HAVE_LIST |
1921 | print_config CONFIG_ $TMPH config.mak $CONFIG_LIST | |
8ac17293 | 1922 | |
b2828252 | 1923 | if test "$targetos" = "Darwin"; then |
90cee0c3 | 1924 | echo "#define CONFIG_DARWIN 1" >> $TMPH |
90cee0c3 MN |
1925 | fi |
1926 | ||
c13e1abd FH |
1927 | echo "#define restrict $_restrict" >> $TMPH |
1928 | ||
bb801c97 MN |
1929 | if test "$optimize" = "small"; then |
1930 | echo "#define always_inline" >> $TMPH | |
e5f28e8f | 1931 | echo "#define CONFIG_SMALL 1" >> $TMPH |
bb801c97 MN |
1932 | fi |
1933 | ||
997baf01 MR |
1934 | echo "SRC_PATH=\"$source_path\"" >> config.mak |
1935 | echo "SRC_PATH_BARE=$source_path" >> config.mak | |
1936 | echo "BUILD_ROOT=\"$PWD\"" >> config.mak | |
0f3cb305 | 1937 | |
2a515c08 TM |
1938 | if test "$amr_if2" = "yes" ; then |
1939 | echo "AMR_CFLAGS=-DIF2=1" >> config.mak | |
1940 | fi | |
1941 | ||
8156056e | 1942 | # Apparently it's not possible to portably echo a backslash. |
4454dc1b | 1943 | if test "$asmalign_pot" = "yes" ; then |
8156056e | 1944 | printf '#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\\n\\t"\n' >> $TMPH |
4454dc1b | 1945 | else |
8156056e | 1946 | printf '#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\\n\\t"\n' >> $TMPH |
4454dc1b JD |
1947 | fi |
1948 | ||
bc634f6f | 1949 | |
55006fc0 | 1950 | for codec in $DECODER_LIST $ENCODER_LIST $PARSER_LIST $DEMUXER_LIST $MUXER_LIST; do |
44161118 | 1951 | ucname="`toupper $codec`" |
a8d04fba MR |
1952 | config_name="CONFIG_$ucname" |
1953 | enabled_name="ENABLE_$ucname" | |
1954 | if enabled $codec; then | |
1955 | echo "#define $config_name 1" >> $TMPH | |
1956 | echo "#define $enabled_name 1" >> $TMPH | |
1957 | echo "$config_name=yes" >> config.mak | |
1958 | else | |
1959 | echo "#define $enabled_name 0" >> $TMPH | |
1960 | fi | |
009cf97d MN |
1961 | done |
1962 | ||
9cb2cf10 | 1963 | # Do not overwrite config.h if unchanged to avoid superfluous rebuilds. |
c683a5d1 | 1964 | if ! cmp -s $TMPH config.h; then |
9cb2cf10 DB |
1965 | mv -f $TMPH config.h |
1966 | else | |
1967 | echo "config.h is unchanged" | |
1968 | fi | |
3d204385 | 1969 | |
f3ec2d46 | 1970 | rm -f $TMPO $TMPC $TMPE $TMPS $TMPH |
def4272a | 1971 | |
165af439 MR |
1972 | # build tree in object directory if source path is different from current one |
1973 | if test "$source_path_used" = "yes" ; then | |
1974 | DIRS="\ | |
1975 | doc \ | |
1976 | libavformat \ | |
1977 | libavcodec \ | |
1978 | libavcodec/alpha \ | |
1979 | libavcodec/armv4l \ | |
1980 | libavcodec/bfin \ | |
1981 | libavcodec/i386 \ | |
1982 | libavcodec/sparc \ | |
1983 | libavcodec/mlib \ | |
1984 | libavcodec/ppc \ | |
1985 | libavcodec/liba52 \ | |
1986 | libpostproc \ | |
1987 | libavutil \ | |
1988 | libswscale \ | |
1989 | tests \ | |
1990 | vhook \ | |
1991 | " | |
1992 | FILES="\ | |
1993 | Makefile \ | |
1994 | common.mak \ | |
1995 | libavformat/Makefile \ | |
1996 | libavcodec/Makefile \ | |
1997 | libpostproc/Makefile \ | |
1998 | libavutil/Makefile \ | |
1999 | libswscale/Makefile \ | |
2000 | tests/Makefile \ | |
2001 | vhook/Makefile \ | |
2002 | doc/Makefile \ | |
2003 | doc/texi2pod.pl \ | |
2004 | " | |
2005 | for dir in $DIRS ; do | |
2006 | mkdir -p $dir | |
2007 | done | |
2008 | for f in $FILES ; do | |
2009 | ln -sf "$source_path/$f" $f | |
2010 | done | |
2011 | fi | |
def4272a | 2012 | |
29799f8b | 2013 | # build pkg-config files libav*.pc and libpostproc.pc |
31abdc45 | 2014 | # libavutil.pc |
2015 | cat <<EOF >libavutil.pc | |
2266e085 | 2016 | prefix=$PREFIX |
a94e666c | 2017 | exec_prefix=\${prefix} |
31abdc45 | 2018 | libdir=\${exec_prefix}/lib |
a94e666c | 2019 | includedir=\${prefix}/include |
31abdc45 | 2020 | |
2021 | Name: libavutil | |
2022 | Description: FFmpeg utility library | |
2023 | Version: $lavu_version | |
115329f1 | 2024 | Requires: |
31abdc45 | 2025 | Conflicts: |
2026 | Libs: -L\${libdir} -lavutil | |
2027 | Cflags: -I\${includedir} -I\${includedir}/ffmpeg | |
2028 | EOF | |
2029 | ||
2030 | cat <<EOF >libavutil-uninstalled.pc | |
2031 | prefix= | |
2032 | exec_prefix= | |
2033 | libdir=\${pcfiledir}/libavutil | |
2034 | includedir=\${pcfiledir}/libavutil | |
2035 | ||
2036 | Name: libavutil | |
2037 | Description: FFmpeg utility library | |
2038 | Version: $lavu_version | |
115329f1 | 2039 | Requires: |
31abdc45 | 2040 | Conflicts: |
2041 | Libs: \${libdir}/${LIBPREF}avutil${LIBSUF} | |
2042 | Cflags: -I\${includedir} | |
2043 | EOF | |
def4272a AJ |
2044 | |
2045 | # libavcodec.pc | |
2046 | cat <<EOF >libavcodec.pc | |
2266e085 | 2047 | prefix=$PREFIX |
a94e666c | 2048 | exec_prefix=\${prefix} |
def4272a | 2049 | libdir=\${exec_prefix}/lib |
a94e666c | 2050 | includedir=\${prefix}/include |
def4272a AJ |
2051 | |
2052 | Name: libavcodec | |
2053 | Description: FFmpeg codec library | |
31abdc45 | 2054 | Version: $lavc_version |
c99dd233 | 2055 | Requires: $pkg_requires libavutil = $lavu_version |
def4272a AJ |
2056 | Conflicts: |
2057 | Libs: -L\${libdir} -lavcodec $extralibs | |
2058 | Cflags: -I\${includedir} -I\${includedir}/ffmpeg | |
2059 | EOF | |
2060 | ||
2061 | cat <<EOF >libavcodec-uninstalled.pc | |
2062 | prefix= | |
2063 | exec_prefix= | |
2064 | libdir=\${pcfiledir}/libavcodec | |
2065 | includedir=\${pcfiledir}/libavcodec | |
2066 | ||
2067 | Name: libavcodec | |
2068 | Description: FFmpeg codec library | |
31abdc45 | 2069 | Version: $lavc_version |
c99dd233 | 2070 | Requires: $pkg_requires libavutil = $lavu_version |
def4272a AJ |
2071 | Conflicts: |
2072 | Libs: \${libdir}/${LIBPREF}avcodec${LIBSUF} $extralibs | |
2073 | Cflags: -I\${includedir} | |
2074 | EOF | |
2075 | ||
2076 | # libavformat.pc | |
2077 | cat <<EOF >libavformat.pc | |
2266e085 | 2078 | prefix=$PREFIX |
a94e666c | 2079 | exec_prefix=\${prefix} |
def4272a | 2080 | libdir=\${exec_prefix}/lib |
a94e666c | 2081 | includedir=\${prefix}/include |
def4272a AJ |
2082 | |
2083 | Name: libavformat | |
2084 | Description: FFmpeg container format library | |
31abdc45 | 2085 | Version: $lavf_version |
c99dd233 | 2086 | Requires: $pkg_requires libavcodec = $lavc_version |
def4272a AJ |
2087 | Conflicts: |
2088 | Libs: -L\${libdir} -lavformat $extralibs | |
2089 | Cflags: -I\${includedir} -I\${includedir}/ffmpeg | |
2090 | EOF | |
2091 | ||
2092 | cat <<EOF >libavformat-uninstalled.pc | |
2093 | prefix= | |
2094 | exec_prefix= | |
2095 | libdir=\${pcfiledir}/libavformat | |
2096 | includedir=\${pcfiledir}/libavformat | |
2097 | ||
2098 | Name: libavformat | |
2099 | Description: FFmpeg container format library | |
31abdc45 | 2100 | Version: $lavf_version |
c99dd233 | 2101 | Requires: $pkg_requires libavcodec = $lavc_version |
def4272a AJ |
2102 | Conflicts: |
2103 | Libs: \${libdir}/${LIBPREF}avformat${LIBSUF} $extralibs | |
2104 | Cflags: -I\${includedir} | |
2105 | EOF | |
2106 | ||
2107 | ||
2108 | # libpostproc.pc | |
2109 | cat <<EOF >libpostproc.pc | |
2266e085 | 2110 | prefix=$PREFIX |
a94e666c | 2111 | exec_prefix=\${prefix} |
def4272a | 2112 | libdir=\${exec_prefix}/lib |
a94e666c | 2113 | includedir=\${prefix}/include |
def4272a AJ |
2114 | |
2115 | Name: libpostproc | |
2116 | Description: FFmpeg post processing library | |
31abdc45 | 2117 | Version: $lavc_version |
115329f1 | 2118 | Requires: |
def4272a AJ |
2119 | Conflicts: |
2120 | Libs: -L\${libdir} -lpostproc | |
2121 | Cflags: -I\${includedir} -I\${includedir}/postproc | |
2122 | EOF | |
2123 | ||
2124 | cat <<EOF >libpostproc-uninstalled.pc | |
2125 | prefix= | |
2126 | exec_prefix= | |
6d9a2421 DB |
2127 | libdir=\${pcfiledir}/libpostproc |
2128 | includedir=\${pcfiledir}/libpostproc | |
def4272a AJ |
2129 | |
2130 | Name: libpostproc | |
2131 | Description: FFmpeg post processing library | |
31abdc45 | 2132 | Version: $lavc_version |
115329f1 | 2133 | Requires: |
def4272a AJ |
2134 | Conflicts: |
2135 | Libs: \${libdir}/${LIBPREF}postproc${LIBSUF} | |
2136 | Cflags: -I\${includedir} | |
2137 | EOF | |
790c9ca7 | 2138 | |
6c0d0413 | 2139 | if test "$swscaler" != "no"; then |
2140 | sws_pc_libs="-L\${libdir} -lswscale" | |
2141 | sws_pc_uninstalled_libs="\${libdir}/${LIBPREF}swscale${LIBSUF}" | |
2142 | sws_pc_requires="$pkg_requires libavutil = $lavu_version" | |
2143 | else | |
2144 | sws_pc_libs="" | |
2145 | sws_pc_uninstalled_libs="" | |
2146 | sws_pc_requires="$pkg_requires libavcodec = $lavc_version" | |
2147 | fi | |
790c9ca7 LA |
2148 | # libswscale.pc |
2149 | cat <<EOF >libswscale.pc | |
2150 | prefix=$PREFIX | |
2151 | exec_prefix=\${prefix} | |
2152 | libdir=\${exec_prefix}/lib | |
2153 | includedir=\${prefix}/include | |
2154 | ||
2155 | Name: libswscale | |
2156 | Description: FFmpeg image rescaling library | |
2157 | Version: $sws_version | |
6c0d0413 | 2158 | Requires: $sws_pc_requires |
790c9ca7 | 2159 | Conflicts: |
6c0d0413 | 2160 | Libs: $sws_pc_libs |
790c9ca7 LA |
2161 | Cflags: -I\${includedir} -I\${includedir}/swscale |
2162 | EOF | |
2163 | ||
2164 | cat <<EOF >libswscale-uninstalled.pc | |
2165 | prefix= | |
2166 | exec_prefix= | |
2167 | libdir=\${pcfiledir}/libswscale | |
2168 | includedir=\${pcfiledir}/libswscale | |
2169 | ||
2170 | Name: libswscale | |
2171 | Description: FFmpeg image rescaling library | |
2172 | Version: $sws_version | |
6c0d0413 | 2173 | Requires: $sws_pc_requires |
790c9ca7 | 2174 | Conflicts: |
6c0d0413 | 2175 | Libs: $sws_pc_uninstalled_libs |
790c9ca7 LA |
2176 | Cflags: -I\${includedir} |
2177 | EOF |