Commit | Line | Data |
---|---|---|
aeb29222 | 1 | #!/bin/sh |
0f3cb305 | 2 | # |
f57620d5 MR |
3 | # FFmpeg configure script |
4 | # | |
949906ea DB |
5 | # Copyright (c) 2000-2002 Fabrice Bellard |
6 | # Copyright (c) 2005-2008 Diego Biurrun | |
7 | # Copyright (c) 2005-2008 Mans Rullgard | |
0f3cb305 | 8 | # |
cf9d24ad | 9 | |
31e647f8 | 10 | # Prevent locale nonsense from breaking basic text processing. |
79ab96ba DB |
11 | LC_ALL=C |
12 | export LC_ALL | |
31e647f8 | 13 | |
cde2d79a | 14 | # make sure we are running under a compatible shell |
c21d6325 MR |
15 | # try to make this part work with most shells |
16 | ||
17 | try_exec(){ | |
0dbe81bb | 18 | echo "Trying shell $1" |
2270b4b2 | 19 | type "$1" > /dev/null 2>&1 && exec "$@" |
c21d6325 MR |
20 | } |
21 | ||
5237ce67 | 22 | unset foo |
2270b4b2 | 23 | (: ${foo%%bar}) 2> /dev/null |
0dbe81bb MR |
24 | E1="$?" |
25 | ||
2270b4b2 | 26 | (: ${foo?}) 2> /dev/null |
0dbe81bb MR |
27 | E2="$?" |
28 | ||
29 | if test "$E1" != 0 || test "$E2" = 0; then | |
30 | echo "Broken shell detected. Trying alternatives." | |
c21d6325 MR |
31 | export FF_CONF_EXEC |
32 | if test "0$FF_CONF_EXEC" -lt 1; then | |
33 | FF_CONF_EXEC=1 | |
34 | try_exec bash "$0" "$@" | |
35 | fi | |
36 | if test "0$FF_CONF_EXEC" -lt 2; then | |
37 | FF_CONF_EXEC=2 | |
38 | try_exec ksh "$0" "$@" | |
39 | fi | |
40 | if test "0$FF_CONF_EXEC" -lt 3; then | |
41 | FF_CONF_EXEC=3 | |
42 | try_exec /usr/xpg4/bin/sh "$0" "$@" | |
cde2d79a MR |
43 | fi |
44 | echo "No compatible shell script interpreter found." | |
fc53da20 | 45 | echo "This configure script requires a POSIX-compatible shell" |
c21d6325 | 46 | echo "such as bash or ksh." |
505dfb09 DB |
47 | echo "THIS IS NOT A BUG IN FFMPEG, DO NOT REPORT IT AS SUCH." |
48 | echo "Instead, install a working POSIX-compatible shell." | |
49 | echo "Disabling this configure test will create a broken FFmpeg." | |
c21d6325 MR |
50 | if test "$BASH_VERSION" = '2.04.0(1)-release'; then |
51 | echo "This bash version ($BASH_VERSION) is broken on your platform." | |
52 | echo "Upgrade to a later version if available." | |
53 | fi | |
cde2d79a MR |
54 | exit 1 |
55 | fi | |
56 | ||
74c53c2d | 57 | show_help(){ |
06454877 MR |
58 | cat <<EOF |
59 | Usage: configure [options] | |
60 | Options: [defaults in brackets after descriptions] | |
61 | ||
62 | Standard options: | |
63 | --help print this message | |
64 | --logfile=FILE log tests and output to FILE [config.err] | |
65 | --disable-logging do not log configure debug information | |
66 | --prefix=PREFIX install in PREFIX [$prefix] | |
67 | --bindir=DIR install binaries in DIR [PREFIX/bin] | |
68 | --datadir=DIR install data files in DIR [PREFIX/share/ffmpeg] | |
69 | --libdir=DIR install libs in DIR [PREFIX/lib] | |
70 | --shlibdir=DIR install shared libs in DIR [PREFIX/lib] | |
71 | --incdir=DIR install includes in DIR [PREFIX/include] | |
72 | --mandir=DIR install man page in DIR [PREFIX/share/man] | |
73 | ||
74 | Configuration options: | |
75 | --disable-static do not build static libraries [no] | |
76 | --enable-shared build shared libraries [no] | |
77 | --enable-gpl allow use of GPL code, the resulting libs | |
78 | and binaries will be under GPL [no] | |
79 | --enable-version3 upgrade (L)GPL to version 3 [no] | |
80 | --enable-nonfree allow use of nonfree code, the resulting libs | |
81 | and binaries will be unredistributable [no] | |
82 | --disable-doc do not build documentation | |
83 | --disable-ffmpeg disable ffmpeg build | |
84 | --disable-ffplay disable ffplay build | |
85 | --disable-ffserver disable ffserver build | |
86 | --enable-postproc enable GPLed postprocessing support [no] | |
87 | --enable-avfilter video filter support [no] | |
88 | --enable-avfilter-lavf video filters dependent on avformat [no] | |
89 | --enable-beosthreads use BeOS threads [no] | |
90 | --enable-os2threads use OS/2 threads [no] | |
91 | --enable-pthreads use pthreads [no] | |
92 | --enable-w32threads use Win32 threads [no] | |
93 | --enable-x11grab enable X11 grabbing [no] | |
94 | --disable-network disable network support [no] | |
95 | --disable-ipv6 disable IPv6 support [no] | |
96 | --disable-mpegaudio-hp faster (but less accurate) MPEG audio decoding [no] | |
97 | --enable-gray enable full grayscale support (slower color) | |
98 | --disable-swscale-alpha disable alpha channel support in swscale | |
99 | --disable-fastdiv disable table-based division | |
100 | --enable-small optimize for size instead of speed | |
101 | --disable-aandct disable AAN DCT code | |
102 | --disable-fft disable FFT code | |
103 | --disable-golomb disable Golomb code | |
104 | --disable-lpc disable LPC code | |
105 | --disable-mdct disable MDCT code | |
106 | --disable-rdft disable RDFT code | |
107 | --disable-vaapi disable VAAPI code | |
108 | --disable-vdpau disable VDPAU code | |
109 | --enable-runtime-cpudetect detect cpu capabilities at runtime (bigger binary) | |
110 | --enable-hardcoded-tables use hardcoded tables instead of runtime generation | |
111 | --enable-memalign-hack emulate memalign, interferes with memory debuggers | |
112 | --enable-beos-netserver enable BeOS netserver | |
113 | --disable-encoder=NAME disable encoder NAME | |
114 | --enable-encoder=NAME enable encoder NAME | |
115 | --disable-encoders disable all encoders | |
116 | --disable-decoder=NAME disable decoder NAME | |
117 | --enable-decoder=NAME enable decoder NAME | |
118 | --disable-decoders disable all decoders | |
119 | --disable-hwaccel=NAME disable hwaccel NAME | |
120 | --enable-hwaccel=NAME enable hwaccel NAME | |
121 | --disable-hwaccels disable all hwaccels | |
122 | --disable-muxer=NAME disable muxer NAME | |
123 | --enable-muxer=NAME enable muxer NAME | |
124 | --disable-muxers disable all muxers | |
125 | --disable-demuxer=NAME disable demuxer NAME | |
126 | --enable-demuxer=NAME enable demuxer NAME | |
127 | --disable-demuxers disable all demuxers | |
128 | --enable-parser=NAME enable parser NAME | |
129 | --disable-parser=NAME disable parser NAME | |
130 | --disable-parsers disable all parsers | |
131 | --enable-bsf=NAME enable bitstream filter NAME | |
132 | --disable-bsf=NAME disable bitstream filter NAME | |
133 | --disable-bsfs disable all bitstream filters | |
134 | --enable-protocol=NAME enable protocol NAME | |
135 | --disable-protocol=NAME disable protocol NAME | |
136 | --disable-protocols disable all protocols | |
137 | --disable-indev=NAME disable input device NAME | |
138 | --disable-outdev=NAME disable output device NAME | |
139 | --disable-indevs disable input devices | |
140 | --disable-outdevs disable output devices | |
141 | --disable-devices disable all devices | |
142 | --enable-filter=NAME enable filter NAME | |
143 | --disable-filter=NAME disable filter NAME | |
144 | --disable-filters disable all filters | |
145 | --list-decoders show all available decoders | |
146 | --list-encoders show all available encoders | |
147 | --list-hwaccels show all available hardware accelerators | |
148 | --list-muxers show all available muxers | |
149 | --list-demuxers show all available demuxers | |
150 | --list-parsers show all available parsers | |
151 | --list-protocols show all available protocols | |
152 | --list-bsfs show all available bitstream filters | |
153 | --list-indevs show all available input devices | |
154 | --list-outdevs show all available output devices | |
155 | --list-filters show all available filters | |
156 | ||
157 | External library support: | |
158 | --enable-avisynth enable reading of AVISynth script files [no] | |
159 | --enable-bzlib enable bzlib [autodetect] | |
160 | --enable-libopencore-amrnb enable AMR-NB de/encoding via libopencore-amrnb [no] | |
161 | --enable-libopencore-amrwb enable AMR-WB decoding via libopencore-amrwb [no] | |
162 | --enable-libdc1394 enable IIDC-1394 grabbing using libdc1394 | |
163 | and libraw1394 [no] | |
164 | --enable-libdirac enable Dirac support via libdirac [no] | |
165 | --enable-libfaac enable FAAC support via libfaac [no] | |
166 | --enable-libfaad enable FAAD support via libfaad [no] | |
167 | --enable-libfaadbin open libfaad.so.0 at runtime [no] | |
168 | --enable-libgsm enable GSM support via libgsm [no] | |
169 | --enable-libmp3lame enable MP3 encoding via libmp3lame [no] | |
170 | --enable-libnut enable NUT (de)muxing via libnut, | |
171 | native (de)muxer exists [no] | |
172 | --enable-libopenjpeg enable JPEG 2000 decoding via OpenJPEG [no] | |
173 | --enable-libschroedinger enable Dirac support via libschroedinger [no] | |
174 | --enable-libspeex enable Speex decoding via libspeex [no] | |
175 | --enable-libtheora enable Theora encoding via libtheora [no] | |
176 | --enable-libvorbis enable Vorbis encoding via libvorbis, | |
177 | native implementation exists [no] | |
178 | --enable-libx264 enable H.264 encoding via x264 [no] | |
179 | --enable-libxvid enable Xvid encoding via xvidcore, | |
180 | native MPEG-4/Xvid encoder exists [no] | |
181 | --enable-mlib enable Sun medialib [no] | |
182 | --enable-zlib enable zlib [autodetect] | |
183 | ||
184 | Advanced options (experts only): | |
185 | --source-path=PATH path to source code [$source_path] | |
186 | --cross-prefix=PREFIX use PREFIX for compilation tools [$cross_prefix] | |
187 | --enable-cross-compile assume a cross-compiler is used | |
188 | --sysroot=PATH root of cross-build tree | |
189 | --sysinclude=PATH location of cross-build system headers | |
190 | --target-os=OS compiler targets OS [$target_os] | |
191 | --target-exec=CMD command to run executables on target | |
192 | --target-path=DIR path to view of build directory on target | |
193 | --nm=NM use nm tool | |
194 | --as=AS use assembler AS [$as_default] | |
195 | --cc=CC use C compiler CC [$cc_default] | |
196 | --ld=LD use linker LD | |
197 | --host-cc=HOSTCC use host C compiler HOSTCC | |
198 | --host-cflags=HCFLAGS use HCFLAGS when compiling for host | |
199 | --host-ldflags=HLDFLAGS use HLDFLAGS when linking for host | |
200 | --host-libs=HLIBS use libs HLIBS when linking for host | |
201 | --extra-cflags=ECFLAGS add ECFLAGS to CFLAGS [$CFLAGS] | |
202 | --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS] | |
203 | --extra-libs=ELIBS add ELIBS [$ELIBS] | |
204 | --extra-version=STRING version string suffix [] | |
205 | --build-suffix=SUFFIX library name suffix [] | |
206 | --arch=ARCH select architecture [$arch] | |
207 | --cpu=CPU select the minimum required CPU (affects | |
208 | instruction selection, may crash on older CPUs) | |
209 | --enable-powerpc-perf enable performance report on PPC | |
210 | (requires enabling PMC) | |
211 | --disable-altivec disable AltiVec optimizations | |
212 | --disable-amd3dnow disable 3DNow! optimizations | |
213 | --disable-amd3dnowext disable 3DNow! extended optimizations | |
214 | --disable-mmx disable MMX optimizations | |
215 | --disable-mmx2 disable MMX2 optimizations | |
216 | --disable-sse disable SSE optimizations | |
217 | --disable-ssse3 disable SSSE3 optimizations | |
218 | --disable-armv5te disable armv5te optimizations | |
219 | --disable-armv6 disable armv6 optimizations | |
220 | --disable-armv6t2 disable armv6t2 optimizations | |
221 | --disable-armvfp disable ARM VFP optimizations | |
222 | --disable-iwmmxt disable iwmmxt optimizations | |
223 | --disable-mmi disable MMI optimizations | |
224 | --disable-neon disable neon optimizations | |
225 | --disable-vis disable VIS optimizations | |
226 | --disable-yasm disable use of yasm assembler | |
227 | --enable-pic build position-independent code | |
228 | ||
229 | Developer options (useful when working on FFmpeg itself): | |
230 | --disable-debug disable debugging symbols | |
231 | --enable-debug=LEVEL set the debug level [$debuglevel] | |
232 | --enable-gprof enable profiling with gprof [$gprof] | |
233 | --disable-optimizations disable compiler optimizations | |
234 | --enable-extra-warnings enable more compiler warnings | |
235 | --disable-stripping disable stripping of executables and shared libraries | |
236 | ||
237 | NOTE: Object files are built at the place where configure is launched. | |
238 | EOF | |
60e8bc13 | 239 | exit 0 |
74c53c2d | 240 | } |
cf9d24ad | 241 | |
57bd82d4 | 242 | log(){ |
2270b4b2 | 243 | echo "$@" >> $logfile |
57bd82d4 MR |
244 | } |
245 | ||
720c69da | 246 | log_file(){ |
c8e9f801 | 247 | log BEGIN $1 |
2270b4b2 | 248 | pr -n -t $1 >> $logfile |
c8e9f801 MR |
249 | log END $1 |
250 | } | |
251 | ||
2ba042a7 | 252 | echolog(){ |
c8e9f801 | 253 | log "$@" |
57bd82d4 | 254 | echo "$@" |
2ba042a7 MR |
255 | } |
256 | ||
257 | die(){ | |
258 | echolog "$@" | |
259 | cat <<EOF | |
d326cf7f | 260 | |
2ba042a7 MR |
261 | If you think configure made a mistake, make sure you are using the latest |
262 | version from SVN. If the latest version fails, report the problem to the | |
e5d8ccd7 | 263 | ffmpeg-user@mplayerhq.hu mailing list or IRC #ffmpeg on irc.freenode.net. |
2ba042a7 | 264 | EOF |
e155a21a | 265 | if disabled logging; then |
2ba042a7 | 266 | cat <<EOF |
e155a21a DB |
267 | Rerun configure with logging enabled (do not use --disable-logging), and |
268 | include the log this produces with your report. | |
2ba042a7 MR |
269 | EOF |
270 | else | |
271 | cat <<EOF | |
e155a21a DB |
272 | Include the log file "$logfile" produced by configure as this will help |
273 | solving the problem. | |
2ba042a7 MR |
274 | EOF |
275 | fi | |
57bd82d4 MR |
276 | exit 1 |
277 | } | |
278 | ||
6c6007d6 | 279 | # Avoid locale weirdness, besides we really just want to translate ASCII. |
44161118 | 280 | toupper(){ |
6c6007d6 | 281 | echo "$@" | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ |
44161118 MR |
282 | } |
283 | ||
4a5444db | 284 | tolower(){ |
6c6007d6 | 285 | echo "$@" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz |
4a5444db MR |
286 | } |
287 | ||
14a8acf1 MR |
288 | c_escape(){ |
289 | echo "$*" | sed 's/["\\]/\\\0/g' | |
290 | } | |
291 | ||
b04251c5 MR |
292 | sh_quote(){ |
293 | v=$(echo "$1" | sed "s/'/'\\\\''/g") | |
294 | test "$v" = "${v#*[ |&;<>()$\`\\\"\'*?\[\]#~=%]}" || v="'$v'" | |
295 | echo "$v" | |
296 | } | |
297 | ||
be8f2501 MR |
298 | filter(){ |
299 | pat=$1 | |
300 | shift | |
301 | for v; do | |
98ef6079 | 302 | eval "case $v in $pat) echo $v ;; esac" |
be8f2501 MR |
303 | done |
304 | } | |
305 | ||
a8d04fba MR |
306 | set_all(){ |
307 | value=$1 | |
308 | shift | |
309 | for var in $*; do | |
310 | eval $var=$value | |
311 | done | |
312 | } | |
313 | ||
72a43668 MR |
314 | set_weak(){ |
315 | value=$1 | |
316 | shift | |
317 | for var; do | |
318 | eval : \${$var:=$value} | |
319 | done | |
320 | } | |
321 | ||
799c9e9b MR |
322 | pushvar(){ |
323 | for var in $*; do | |
324 | eval level=\${${var}_level:=0} | |
325 | eval ${var}_${level}="\$$var" | |
326 | eval ${var}_level=$(($level+1)) | |
327 | done | |
328 | } | |
329 | ||
330 | popvar(){ | |
331 | for var in $*; do | |
332 | eval level=\${${var}_level:-0} | |
333 | test $level = 0 && continue | |
334 | eval level=$(($level-1)) | |
335 | eval $var="\${${var}_${level}}" | |
336 | eval ${var}_level=$level | |
337 | eval unset ${var}_${level} | |
338 | done | |
339 | } | |
340 | ||
a8d04fba MR |
341 | enable(){ |
342 | set_all yes $* | |
343 | } | |
344 | ||
345 | disable(){ | |
346 | set_all no $* | |
347 | } | |
348 | ||
72a43668 MR |
349 | enable_weak(){ |
350 | set_weak yes $* | |
351 | } | |
352 | ||
353 | disable_weak(){ | |
354 | set_weak no $* | |
355 | } | |
356 | ||
72702705 | 357 | enable_safe(){ |
fd07f803 MR |
358 | for var; do |
359 | enable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g') | |
360 | done | |
72702705 MR |
361 | } |
362 | ||
363 | disable_safe(){ | |
fd07f803 MR |
364 | for var; do |
365 | disable $(echo "$var" | sed 's/[^A-Za-z0-9_]/_/g') | |
366 | done | |
72702705 MR |
367 | } |
368 | ||
f9d328da MR |
369 | do_enable_deep(){ |
370 | for var; do | |
371 | enabled $var && continue | |
372 | eval sel="\$${var}_select" | |
c510c7b5 MR |
373 | eval sgs="\$${var}_suggest" |
374 | pushvar var sgs | |
f9d328da | 375 | enable_deep $sel |
c510c7b5 MR |
376 | popvar sgs |
377 | enable_deep_weak $sgs | |
f9d328da MR |
378 | popvar var |
379 | done | |
380 | } | |
381 | ||
382 | enable_deep(){ | |
383 | do_enable_deep $* | |
384 | enable $* | |
385 | } | |
386 | ||
72a43668 MR |
387 | enable_deep_weak(){ |
388 | do_enable_deep $* | |
389 | enable_weak $* | |
390 | } | |
391 | ||
57bd82d4 | 392 | enabled(){ |
3250003c MR |
393 | test "${1#!}" = "$1" && op== || op=!= |
394 | eval test "x\$${1#!}" $op "xyes" | |
44161118 MR |
395 | } |
396 | ||
37970ebf | 397 | disabled(){ |
3250003c MR |
398 | test "${1#!}" = "$1" && op== || op=!= |
399 | eval test "x\$${1#!}" $op "xno" | |
37970ebf RP |
400 | } |
401 | ||
44161118 MR |
402 | enabled_all(){ |
403 | for opt; do | |
404 | enabled $opt || return 1 | |
405 | done | |
406 | } | |
407 | ||
85bca2c5 DB |
408 | disabled_all(){ |
409 | for opt; do | |
410 | disabled $opt || return 1 | |
411 | done | |
412 | } | |
413 | ||
44161118 MR |
414 | enabled_any(){ |
415 | for opt; do | |
416 | enabled $opt && return 0 | |
417 | done | |
418 | } | |
419 | ||
85bca2c5 DB |
420 | disabled_any(){ |
421 | for opt; do | |
422 | disabled $opt && return 0 | |
423 | done | |
f7b230a7 | 424 | return 1 |
85bca2c5 DB |
425 | } |
426 | ||
c9d19248 MR |
427 | set_default(){ |
428 | for opt; do | |
88268e94 | 429 | eval : \${$opt:=\$${opt}_default} |
c9d19248 MR |
430 | done |
431 | } | |
432 | ||
4a0d6686 AJ |
433 | is_in(){ |
434 | value=$1 | |
435 | shift | |
436 | for var in $*; do | |
437 | [ $var = $value ] && return 0 | |
438 | done | |
439 | return 1 | |
440 | } | |
441 | ||
30fd06be MR |
442 | check_deps(){ |
443 | for cfg; do | |
3250003c | 444 | cfg="${cfg#!}" |
799c9e9b MR |
445 | enabled ${cfg}_checking && die "Circular dependency for $cfg." |
446 | disabled ${cfg}_checking && continue | |
447 | enable ${cfg}_checking | |
448 | ||
30fd06be MR |
449 | eval dep_all="\$${cfg}_deps" |
450 | eval dep_any="\$${cfg}_deps_any" | |
7ef3425f | 451 | eval dep_sel="\$${cfg}_select" |
c510c7b5 | 452 | eval dep_sgs="\$${cfg}_suggest" |
3d7453e0 MR |
453 | eval dep_ifa="\$${cfg}_if" |
454 | eval dep_ifn="\$${cfg}_if_any" | |
799c9e9b | 455 | |
3d7453e0 MR |
456 | pushvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn |
457 | check_deps $dep_all $dep_any $dep_sel $dep_sgs $dep_ifa $dep_ifn | |
458 | popvar cfg dep_all dep_any dep_sel dep_sgs dep_ifa dep_ifn | |
799c9e9b | 459 | |
3d7453e0 MR |
460 | [ -n "$dep_ifa" ] && { enabled_all $dep_ifa && enable_weak $cfg; } |
461 | [ -n "$dep_ifn" ] && { enabled_any $dep_ifn && enable_weak $cfg; } | |
6a702d4c MR |
462 | enabled_all $dep_all || disable $cfg |
463 | enabled_any $dep_any || disable $cfg | |
7ef3425f | 464 | disabled_any $dep_sel && disable $cfg |
799c9e9b | 465 | |
4ec45764 RP |
466 | if enabled $cfg; then |
467 | eval dep_extralibs="\$${cfg}_extralibs" | |
468 | test -n "$dep_extralibs" && add_extralibs $dep_extralibs | |
f9d328da | 469 | enable_deep $dep_sel |
c510c7b5 | 470 | enable_deep_weak $dep_sgs |
4ec45764 RP |
471 | fi |
472 | ||
799c9e9b | 473 | disable ${cfg}_checking |
30fd06be MR |
474 | done |
475 | } | |
476 | ||
44161118 MR |
477 | print_config(){ |
478 | pfx=$1 | |
479 | header=$2 | |
480 | makefile=$3 | |
481 | shift 3 | |
482 | for cfg; do | |
5e622c40 | 483 | ucname="$(toupper $cfg)" |
44161118 | 484 | if enabled $cfg; then |
3d907e22 | 485 | echo "#define ${pfx}${ucname} 1" >> $header |
3d907e22 MR |
486 | echo "${pfx}${ucname}=yes" >> $makefile |
487 | else | |
b250f9c6 | 488 | echo "#define ${pfx}${ucname} 0" >> $header |
fbb6c6c2 | 489 | echo "!${pfx}${ucname}=yes" >> $makefile |
44161118 MR |
490 | fi |
491 | done | |
57bd82d4 MR |
492 | } |
493 | ||
494 | flags_saved(){ | |
2270b4b2 | 495 | (: ${SAVE_CFLAGS?}) 2> /dev/null |
57bd82d4 MR |
496 | } |
497 | ||
dcd479c0 | 498 | save_flags(){ |
57bd82d4 | 499 | flags_saved && return |
dcd479c0 MR |
500 | SAVE_CFLAGS="$CFLAGS" |
501 | SAVE_LDFLAGS="$LDFLAGS" | |
502 | SAVE_extralibs="$extralibs" | |
503 | } | |
504 | ||
505 | restore_flags(){ | |
f5d28d10 | 506 | flags_saved || return |
dcd479c0 MR |
507 | CFLAGS="$SAVE_CFLAGS" |
508 | LDFLAGS="$SAVE_LDFLAGS" | |
509 | extralibs="$SAVE_extralibs" | |
510 | unset SAVE_CFLAGS | |
511 | unset SAVE_LDFLAGS | |
512 | unset SAVE_extralibs | |
513 | } | |
514 | ||
515 | temp_cflags(){ | |
516 | save_flags | |
517 | CFLAGS="$CFLAGS $*" | |
518 | } | |
519 | ||
520 | temp_ldflags(){ | |
521 | save_flags | |
522 | LDFLAGS="$LDFLAGS $*" | |
523 | } | |
524 | ||
525 | temp_extralibs(){ | |
526 | save_flags | |
527 | extralibs="$extralibs $*" | |
528 | } | |
529 | ||
57bd82d4 MR |
530 | append(){ |
531 | var=$1 | |
532 | shift | |
533 | flags_saved && eval "SAVE_$var=\"\$SAVE_$var $*\"" | |
534 | eval "$var=\"\$$var $*\"" | |
535 | } | |
536 | ||
50a334e4 | 537 | add_cppflags(){ |
caf458dd | 538 | append CPPFLAGS $($filter_cppflags "$@") |
50a334e4 MR |
539 | } |
540 | ||
57bd82d4 | 541 | add_cflags(){ |
caf458dd | 542 | append CFLAGS $($filter_cflags "$@") |
57bd82d4 MR |
543 | } |
544 | ||
2f2e6c7c | 545 | add_asflags(){ |
caf458dd | 546 | append ASFLAGS $($filter_asflags "$@") |
2f2e6c7c MR |
547 | } |
548 | ||
57bd82d4 MR |
549 | add_ldflags(){ |
550 | append LDFLAGS "$@" | |
551 | } | |
552 | ||
553 | add_extralibs(){ | |
554 | append extralibs "$@" | |
555 | } | |
556 | ||
b0cfb663 | 557 | check_cmd(){ |
b3cb5d51 | 558 | log "$@" |
2270b4b2 | 559 | "$@" >> $logfile 2>&1 |
b0cfb663 MR |
560 | } |
561 | ||
dcd479c0 | 562 | check_cc(){ |
57bd82d4 | 563 | log check_cc "$@" |
2270b4b2 | 564 | cat > $TMPC |
720c69da | 565 | log_file $TMPC |
50a334e4 | 566 | check_cmd $cc $CPPFLAGS $CFLAGS "$@" -c -o $TMPO $TMPC |
57bd82d4 MR |
567 | } |
568 | ||
569 | check_cpp(){ | |
570 | log check_cpp "$@" | |
2270b4b2 | 571 | cat > $TMPC |
720c69da | 572 | log_file $TMPC |
9e7f3277 | 573 | check_cmd $cc $CPPFLAGS $CFLAGS "$@" -E -o $TMPO $TMPC |
dcd479c0 MR |
574 | } |
575 | ||
f65883c8 MR |
576 | check_as(){ |
577 | log check_as "$@" | |
578 | cat > $TMPC | |
579 | log_file $TMPC | |
2f2e6c7c | 580 | check_cmd $as $CPPFLAGS $ASFLAGS "$@" -c -o $TMPO $TMPC |
f65883c8 MR |
581 | } |
582 | ||
940f335a MR |
583 | check_asm(){ |
584 | log check_asm "$@" | |
585 | name="$1" | |
586 | asm="$2" | |
587 | shift 2 | |
49214f61 MR |
588 | disable $name |
589 | check_as "$@" <<EOF && enable $name | |
124c21d7 | 590 | void foo(void){ __asm__ volatile($asm); } |
940f335a MR |
591 | EOF |
592 | } | |
593 | ||
304d586d LM |
594 | check_yasm(){ |
595 | log check_yasm "$@" | |
596 | echo "$1" > $TMPS | |
597 | log_file $TMPS | |
598 | shift 1 | |
599 | check_cmd $yasmexe $YASMFLAGS "$@" -o $TMPO $TMPS | |
600 | } | |
601 | ||
dcd479c0 | 602 | check_ld(){ |
57bd82d4 | 603 | log check_ld "$@" |
3155a644 MR |
604 | flags='' |
605 | libs='' | |
606 | for f; do | |
607 | test "${f}" = "${f#-l}" && flags="$flags $f" || libs="$libs $f" | |
608 | done | |
2a194acd | 609 | check_cc $($filter_cflags $flags) || return |
684b28e0 | 610 | check_cmd $ld $LDFLAGS $flags -o $TMPE $TMPO $extralibs $libs |
dcd479c0 MR |
611 | } |
612 | ||
50a334e4 MR |
613 | check_cppflags(){ |
614 | log check_cppflags "$@" | |
caf458dd MR |
615 | set -- $($filter_cppflags "$@") |
616 | check_cc "$@" <<EOF && append CPPFLAGS "$@" | |
50a334e4 MR |
617 | int x; |
618 | EOF | |
619 | } | |
620 | ||
dcd479c0 | 621 | check_cflags(){ |
57bd82d4 | 622 | log check_cflags "$@" |
caf458dd MR |
623 | set -- $($filter_cflags "$@") |
624 | check_cc "$@" <<EOF && append CFLAGS "$@" | |
dcd479c0 MR |
625 | int x; |
626 | EOF | |
627 | } | |
628 | ||
2ed46eea MR |
629 | test_ldflags(){ |
630 | log test_ldflags "$@" | |
631 | check_ld "$@" <<EOF | |
c23a0ac8 | 632 | int main(void){ return 0; } |
dcd479c0 MR |
633 | EOF |
634 | } | |
635 | ||
2ed46eea MR |
636 | check_ldflags(){ |
637 | log check_ldflags "$@" | |
638 | test_ldflags "$@" && add_ldflags "$@" | |
639 | } | |
640 | ||
dcd479c0 | 641 | check_header(){ |
57bd82d4 | 642 | log check_header "$@" |
dcd479c0 MR |
643 | header=$1 |
644 | shift | |
b77df637 MR |
645 | disable_safe $header |
646 | check_cpp "$@" <<EOF && enable_safe $header | |
dcd479c0 MR |
647 | #include <$header> |
648 | int x; | |
649 | EOF | |
650 | } | |
651 | ||
652 | check_func(){ | |
57bd82d4 | 653 | log check_func "$@" |
dcd479c0 MR |
654 | func=$1 |
655 | shift | |
d8bc5f06 MR |
656 | disable $func |
657 | check_ld "$@" <<EOF && enable $func | |
dcd479c0 | 658 | extern int $func(); |
c23a0ac8 | 659 | int main(void){ $func(); } |
dcd479c0 MR |
660 | EOF |
661 | } | |
662 | ||
2446d3d6 DB |
663 | check_func_headers(){ |
664 | log check_func_headers "$@" | |
f8d7b072 MR |
665 | headers=$1 |
666 | func=$2 | |
667 | shift 2 | |
668 | disable $func | |
669 | incs="" | |
670 | for hdr in $headers; do | |
671 | incs="$incs | |
672 | #include <$hdr>" | |
673 | done | |
cd0d9a9d | 674 | check_ld "$@" <<EOF && enable $func && enable_safe $headers |
f8d7b072 | 675 | $incs |
d6773f56 | 676 | int main(int argc, char **argv){ |
2b2c2a81 | 677 | return (long) $func; |
f8d7b072 MR |
678 | } |
679 | EOF | |
680 | } | |
681 | ||
a5344cf7 SS |
682 | check_cpp_condition(){ |
683 | log check_cpp_condition "$@" | |
684 | header=$1 | |
685 | condition=$2 | |
f855b7b9 MR |
686 | shift 2 |
687 | check_cpp $($filter_cppflags "$@") <<EOF | |
a5344cf7 SS |
688 | #include <$header> |
689 | #if !($condition) | |
690 | #error "unsatisfied condition: $condition" | |
691 | #endif | |
692 | EOF | |
693 | } | |
694 | ||
57bd82d4 MR |
695 | check_lib(){ |
696 | log check_lib "$@" | |
697 | header="$1" | |
698 | func="$2" | |
699 | shift 2 | |
fcfcde17 MR |
700 | temp_extralibs "$@" |
701 | check_header $header && check_func $func && add_extralibs "$@" | |
702 | err=$? | |
703 | restore_flags | |
704 | return $err | |
57bd82d4 MR |
705 | } |
706 | ||
f8d7b072 MR |
707 | check_lib2(){ |
708 | log check_lib2 "$@" | |
709 | headers="$1" | |
710 | func="$2" | |
711 | shift 2 | |
300cde27 | 712 | check_func_headers "$headers" $func "$@" && add_extralibs "$@" |
f8d7b072 MR |
713 | } |
714 | ||
dcd479c0 | 715 | check_exec(){ |
2270b4b2 | 716 | check_ld "$@" && { enabled cross_compile || $TMPE >> $logfile 2>&1; } |
57bd82d4 MR |
717 | } |
718 | ||
7dfef245 | 719 | check_exec_crash(){ |
5e622c40 | 720 | code=$(cat) |
7dfef245 MR |
721 | |
722 | # exit() is not async signal safe. _Exit (C99) and _exit (POSIX) | |
723 | # are safe but may not be available everywhere. Thus we use | |
724 | # raise(SIGTERM) instead. The check is run in a subshell so we | |
725 | # can redirect the "Terminated" message from the shell. SIGBUS | |
726 | # is not defined by standard C so it is used conditionally. | |
727 | ||
2270b4b2 | 728 | (check_exec "$@") >> $logfile 2>&1 <<EOF |
7dfef245 MR |
729 | #include <signal.h> |
730 | static void sighandler(int sig){ | |
731 | raise(SIGTERM); | |
732 | } | |
e5af4a11 | 733 | int main(void){ |
7dfef245 MR |
734 | signal(SIGILL, sighandler); |
735 | signal(SIGFPE, sighandler); | |
736 | signal(SIGSEGV, sighandler); | |
737 | #ifdef SIGBUS | |
738 | signal(SIGBUS, sighandler); | |
739 | #endif | |
740 | { $code } | |
741 | } | |
742 | EOF | |
743 | } | |
744 | ||
72be9e73 DY |
745 | check_type(){ |
746 | log check_type "$@" | |
747 | headers=$1 | |
748 | type=$2 | |
749 | shift 2 | |
ae550ce9 | 750 | disable_safe "$type" |
72be9e73 DY |
751 | incs="" |
752 | for hdr in $headers; do | |
753 | incs="$incs | |
754 | #include <$hdr>" | |
755 | done | |
ae550ce9 | 756 | check_cc "$@" <<EOF && enable_safe "$type" |
72be9e73 DY |
757 | $incs |
758 | $type v; | |
759 | EOF | |
760 | } | |
761 | ||
14d36751 MR |
762 | check_struct(){ |
763 | log check_type "$@" | |
764 | headers=$1 | |
765 | struct=$2 | |
766 | member=$3 | |
767 | shift 3 | |
768 | disable_safe "${struct}_${member}" | |
769 | incs="" | |
770 | for hdr in $headers; do | |
771 | incs="$incs | |
772 | #include <$hdr>" | |
773 | done | |
774 | check_cc "$@" <<EOF && enable_safe "${struct}_${member}" | |
775 | $incs | |
776 | const void *p = &(($struct *)0)->$member; | |
777 | EOF | |
778 | } | |
779 | ||
57bd82d4 MR |
780 | require(){ |
781 | name="$1" | |
782 | header="$2" | |
783 | func="$3" | |
784 | shift 3 | |
785 | check_lib $header $func "$@" || die "ERROR: $name not found" | |
dcd479c0 MR |
786 | } |
787 | ||
f8d7b072 MR |
788 | require2(){ |
789 | name="$1" | |
790 | headers="$2" | |
791 | func="$3" | |
792 | shift 3 | |
793 | check_lib2 "$headers" $func "$@" || die "ERROR: $name not found" | |
794 | } | |
795 | ||
eea50282 MR |
796 | check_foo_config(){ |
797 | cfg=$1 | |
798 | pkg=$2 | |
799 | header=$3 | |
800 | func=$4 | |
801 | shift 4 | |
802 | disable $cfg | |
803 | check_cmd ${pkg}-config --version | |
804 | err=$? | |
805 | if test "$err" = 0; then | |
5e622c40 DB |
806 | temp_cflags $(${pkg}-config --cflags) |
807 | temp_extralibs $(${pkg}-config --libs) | |
eea50282 MR |
808 | check_lib "$@" $header $func && enable $cfg |
809 | fi | |
810 | return $err | |
811 | } | |
812 | ||
f0125de9 MR |
813 | check_host_cc(){ |
814 | log check_host_cc "$@" | |
815 | cat > $TMPC | |
816 | log_file $TMPC | |
817 | check_cmd $host_cc $host_cflags "$@" -c -o $TMPO $TMPC | |
818 | } | |
819 | ||
820 | check_host_cflags(){ | |
821 | log check_host_cflags "$@" | |
822 | check_host_cc "$@" <<EOF && append host_cflags "$@" | |
823 | int x; | |
824 | EOF | |
825 | } | |
826 | ||
c505dd31 MR |
827 | apply(){ |
828 | file=$1 | |
829 | shift | |
830 | "$@" < "$file" > "$file.tmp" && mv "$file.tmp" "$file" || rm "$file.tmp" | |
831 | } | |
832 | ||
dcd61286 DB |
833 | # CONFIG_LIST contains configurable options, while HAVE_LIST is for |
834 | # system-dependent things. | |
835 | ||
4a0d6686 AJ |
836 | COMPONENT_LIST=" |
837 | bsfs | |
838 | decoders | |
839 | demuxers | |
840 | encoders | |
3cde40aa | 841 | filters |
5666fd73 | 842 | hwaccels |
c552605c | 843 | indevs |
4a0d6686 | 844 | muxers |
c552605c | 845 | outdevs |
4a0d6686 AJ |
846 | parsers |
847 | protocols | |
848 | " | |
849 | ||
850 | CONFIG_LIST=" | |
851 | $COMPONENT_LIST | |
e8ed9b7a | 852 | aandct |
f7679c54 VS |
853 | avfilter |
854 | avfilter_lavf | |
c88f5d72 MR |
855 | avisynth |
856 | beos_netserver | |
f402916e | 857 | bzlib |
c73f65d9 | 858 | doc |
27a9466b | 859 | fastdiv |
c88f5d72 MR |
860 | ffmpeg |
861 | ffplay | |
862 | ffserver | |
1848f7d9 | 863 | fft |
4f034993 | 864 | golomb |
c88f5d72 | 865 | gpl |
ecfc4f44 | 866 | gprof |
d8d0d0b2 | 867 | gray |
3abe5fbd | 868 | hardcoded_tables |
c88f5d72 | 869 | ipv6 |
f7b8bffe | 870 | libdc1394 |
690bfceb | 871 | libdirac |
2eed5a46 DB |
872 | libfaac |
873 | libfaad | |
874 | libfaadbin | |
c88f5d72 | 875 | libgsm |
6ebe07fb | 876 | libmp3lame |
c88f5d72 | 877 | libnut |
0b175caa DB |
878 | libopencore_amrnb |
879 | libopencore_amrwb | |
9a77d59a | 880 | libopenjpeg |
f7cd9eed | 881 | libschroedinger |
ae14f311 | 882 | libspeex |
150d2772 | 883 | libtheora |
c88f5d72 | 884 | libvorbis |
1cc60c47 DB |
885 | libx264 |
886 | libxvid | |
f4d608e3 | 887 | lpc |
47a158cb | 888 | mdct |
c88f5d72 | 889 | memalign_hack |
a8150374 | 890 | mlib |
c88f5d72 MR |
891 | mpegaudio_hp |
892 | network | |
3fe142e2 | 893 | nonfree |
8a3c8627 | 894 | pic |
4a24ab64 | 895 | postproc |
2b4c3615 | 896 | powerpc_perf |
68602540 | 897 | rdft |
e90f5b5a | 898 | runtime_cpudetect |
2e35e684 | 899 | shared |
bd2216e4 | 900 | small |
2e35e684 | 901 | static |
a9ddb5b1 | 902 | swscale_alpha |
17492d5e DB |
903 | vaapi |
904 | vdpau | |
9cad0e4e | 905 | version3 |
56a059ac | 906 | x11grab |
c88f5d72 | 907 | zlib |
4a0d6686 | 908 | " |
c88f5d72 | 909 | |
8eee7025 DB |
910 | THREADS_LIST=' |
911 | beosthreads | |
d22e8442 | 912 | os2threads |
8eee7025 DB |
913 | pthreads |
914 | w32threads | |
915 | ' | |
916 | ||
3f5b56e5 MR |
917 | ARCH_LIST=' |
918 | alpha | |
a2fc0f6a | 919 | arm |
fdcd782d MR |
920 | avr32 |
921 | avr32_ap | |
922 | avr32_uc | |
3f5b56e5 MR |
923 | bfin |
924 | ia64 | |
925 | m68k | |
926 | mips | |
bae3abb0 | 927 | mips64 |
3f5b56e5 | 928 | parisc |
79cb09b2 | 929 | ppc |
34d11b87 | 930 | ppc64 |
3f5b56e5 MR |
931 | s390 |
932 | sh4 | |
933 | sparc | |
934 | sparc64 | |
935 | x86 | |
936 | x86_32 | |
937 | x86_64 | |
938 | ' | |
939 | ||
940 | ARCH_EXT_LIST=' | |
1ac9331a | 941 | altivec |
3bf96eec | 942 | amd3dnow |
a1ef9f08 | 943 | amd3dnowext |
1ac9331a | 944 | armv5te |
edab3048 | 945 | armv6 |
ab5cb084 | 946 | armv6t2 |
f55b299a | 947 | armvfp |
3f5b56e5 MR |
948 | iwmmxt |
949 | mmi | |
950 | mmx | |
d7f0920b | 951 | mmx2 |
6b18d278 | 952 | neon |
799fde37 | 953 | ppc4xx |
1bb04d5a | 954 | sse |
9eeed841 | 955 | ssse3 |
bd9d34a0 | 956 | vis |
3f5b56e5 MR |
957 | ' |
958 | ||
959 | HAVE_LIST=" | |
960 | $ARCH_EXT_LIST | |
961 | $THREADS_LIST | |
35fd8122 | 962 | alsa_asoundlib_h |
3f5b56e5 | 963 | altivec_h |
c9fdab0d | 964 | arpa_inet_h |
e7ea5e3d | 965 | attribute_packed |
08a85a59 | 966 | bigendian |
6bd859d6 | 967 | bswap |
ecf97f22 | 968 | closesocket |
1ac9331a | 969 | cmov |
e16e49ac | 970 | conio_h |
c88f5d72 | 971 | dcbzl |
f8aa696f DB |
972 | dev_bktr_ioctl_bt848_h |
973 | dev_bktr_ioctl_meteor_h | |
974 | dev_ic_bt8xx_h | |
975 | dev_video_meteor_ioctl_meteor_h | |
976 | dev_video_bktr_ioctl_bt848_h | |
18b67ae5 | 977 | dlfcn_h |
c88f5d72 | 978 | dlopen |
bc574408 | 979 | dos_paths |
245626d0 DB |
980 | ebp_available |
981 | ebx_available | |
6b7c7703 VS |
982 | exp2 |
983 | exp2f | |
c2a29455 | 984 | fast_64bit |
669b5583 | 985 | fast_clz |
7073e9fc | 986 | fast_cmov |
7b829d2a | 987 | fast_unaligned |
9d99cc5a | 988 | fork |
84882df6 | 989 | getaddrinfo |
da9e86f8 | 990 | gethrtime |
4e68cb8a | 991 | GetProcessTimes |
66be5b45 | 992 | getrusage |
2e1913b1 | 993 | inet_aton |
61d251db | 994 | inline_asm |
abfc8d05 | 995 | isatty |
9f5ff83f | 996 | ldbrx |
0b4a1821 AS |
997 | libdc1394_1 |
998 | libdc1394_2 | |
a33cab3a | 999 | llrint |
291fd18a | 1000 | log2 |
6b7c7703 | 1001 | log2f |
85dd97ad | 1002 | loongson |
a33cab3a | 1003 | lrint |
c88f5d72 | 1004 | lrintf |
e4673692 | 1005 | lzo1x_999_compress |
f8aa696f DB |
1006 | machine_ioctl_bt848_h |
1007 | machine_ioctl_meteor_h | |
c88f5d72 MR |
1008 | malloc_h |
1009 | memalign | |
6ffa87d3 | 1010 | mkstemp |
b4e806b2 | 1011 | pld |
1f91cdce | 1012 | posix_memalign |
a33cab3a MK |
1013 | round |
1014 | roundf | |
c88f5d72 MR |
1015 | sdl |
1016 | sdl_video_size | |
b507ebd1 | 1017 | setmode |
72be9e73 | 1018 | socklen_t |
deb29777 | 1019 | soundcard_h |
f8cda19e | 1020 | poll_h |
c0018613 | 1021 | struct_addrinfo |
33a4dbdd | 1022 | struct_sockaddr_storage |
b58412f1 | 1023 | sys_mman_h |
b091aa44 | 1024 | sys_resource_h |
81644c2e | 1025 | sys_select_h |
deb29777 | 1026 | sys_soundcard_h |
1b6e8b73 | 1027 | sys_videoio_h |
d3a4b4e0 | 1028 | ten_operands |
e16e49ac | 1029 | termios_h |
b265431e | 1030 | threads |
7b04b8a0 | 1031 | truncf |
ce742de2 | 1032 | vfp_args |
7c5bfe7a | 1033 | VirtualAlloc |
6ff3f3e7 | 1034 | winsock2_h |
cc078b5d | 1035 | xform_asm |
304d586d | 1036 | yasm |
0cb78cef | 1037 | " |
44161118 | 1038 | |
b6bb00b0 MR |
1039 | # options emitted with CONFIG_ prefix but not available on command line |
1040 | CONFIG_EXTRA=" | |
9cad0e4e DB |
1041 | gplv3 |
1042 | lgplv3 | |
b6bb00b0 MR |
1043 | " |
1044 | ||
520cc7f1 | 1045 | CMDLINE_SELECT=" |
3f5b56e5 | 1046 | $ARCH_EXT_LIST |
520cc7f1 | 1047 | $CONFIG_LIST |
8eee7025 | 1048 | $THREADS_LIST |
db6107b6 | 1049 | cross_compile |
520cc7f1 MR |
1050 | debug |
1051 | extra_warnings | |
8c6afa4d | 1052 | logging |
d2bbb2f7 | 1053 | optimizations |
87a0fb62 | 1054 | stripping |
7595a5e4 | 1055 | yasm |
520cc7f1 | 1056 | " |
426be5dc DB |
1057 | |
1058 | PATHS_LIST=' | |
d156bede | 1059 | bindir |
14a8acf1 | 1060 | datadir |
26759c44 MR |
1061 | incdir |
1062 | libdir | |
26759c44 MR |
1063 | mandir |
1064 | prefix | |
1065 | shlibdir | |
426be5dc DB |
1066 | ' |
1067 | ||
1068 | CMDLINE_SET=" | |
1069 | $PATHS_LIST | |
1070 | arch | |
313c46a6 | 1071 | as |
426be5dc DB |
1072 | build_suffix |
1073 | cc | |
1074 | cpu | |
1075 | cross_prefix | |
50567afa | 1076 | dep_cc |
ac63af34 | 1077 | extra_version |
9da6609f MR |
1078 | host_cc |
1079 | host_cflags | |
1080 | host_ldflags | |
1081 | host_libs | |
82bb3329 | 1082 | host_os |
684b28e0 | 1083 | ld |
426be5dc | 1084 | logfile |
89641463 | 1085 | nm |
26759c44 | 1086 | source_path |
c5200f17 MR |
1087 | sysinclude |
1088 | sysroot | |
a7ada2ba | 1089 | target_exec |
26759c44 | 1090 | target_os |
a7ada2ba | 1091 | target_path |
426be5dc | 1092 | " |
520cc7f1 | 1093 | |
89f2932b MR |
1094 | CMDLINE_APPEND=" |
1095 | extra_cflags | |
1096 | " | |
1097 | ||
912f3148 DB |
1098 | # code dependency declarations |
1099 | ||
9eeed841 | 1100 | # architecture extensions |
808fa33c | 1101 | |
a2fc0f6a MR |
1102 | armv5te_deps="arm" |
1103 | armv6_deps="arm" | |
ab5cb084 | 1104 | armv6t2_deps="arm" |
a2fc0f6a MR |
1105 | armvfp_deps="arm" |
1106 | iwmmxt_deps="arm" | |
808fa33c MR |
1107 | neon_deps="arm" |
1108 | ||
e241ba14 | 1109 | mmi_deps="mips" |
808fa33c MR |
1110 | |
1111 | altivec_deps="ppc" | |
1112 | ppc4xx_deps="ppc" | |
1113 | ||
1114 | vis_deps="sparc" | |
1115 | ||
1116 | amd3dnow_deps="mmx" | |
1117 | amd3dnowext_deps="amd3dnow" | |
9eeed841 | 1118 | mmx_deps="x86" |
75aa95a6 | 1119 | mmx2_deps="mmx" |
75aa95a6 DB |
1120 | sse_deps="mmx" |
1121 | ssse3_deps="sse" | |
9eeed841 | 1122 | |
669b5583 MR |
1123 | fast_clz_if_any="alpha armv5te avr32 mips ppc x86" |
1124 | ||
89e053f8 | 1125 | need_memalign="altivec neon sse" |
6fec122a | 1126 | inline_asm_deps="!tms470" |
89e053f8 | 1127 | |
5666fd73 | 1128 | # decoders / encoders / hardware accelerators |
f1e94694 | 1129 | aac_decoder_select="fft mdct aac_parser" |
84c04e25 | 1130 | aac_encoder_select="fft mdct" |
5b423887 | 1131 | ac3_decoder_select="fft mdct ac3_parser" |
f4d608e3 | 1132 | alac_encoder_select="lpc" |
47a158cb | 1133 | atrac3_decoder_select="fft mdct" |
4f034993 | 1134 | cavs_decoder_select="golomb" |
47a158cb | 1135 | cook_decoder_select="fft mdct" |
2eef7c62 | 1136 | cscd_decoder_suggest="zlib" |
47a158cb | 1137 | dca_decoder_select="fft mdct" |
e8ed9b7a | 1138 | dnxhd_encoder_select="aandct" |
2eef7c62 | 1139 | dxa_decoder_select="zlib" |
baf91bb9 | 1140 | eac3_decoder_select="ac3_decoder" |
84c04e25 | 1141 | eamad_decoder_select="aandct" |
e8ed9b7a | 1142 | eatgq_decoder_select="aandct" |
d52b39c7 | 1143 | eatqi_decoder_select="aandct" |
4f034993 MR |
1144 | ffv1_decoder_select="golomb" |
1145 | flac_decoder_select="golomb" | |
f4d608e3 | 1146 | flac_encoder_select="golomb lpc" |
2eef7c62 AJ |
1147 | flashsv_decoder_select="zlib" |
1148 | flashsv_encoder_select="zlib" | |
4414137e | 1149 | flv_decoder_select="h263_decoder" |
4d4b4bd1 | 1150 | flv_encoder_select="h263_encoder" |
e8ed9b7a | 1151 | h261_encoder_select="aandct" |
7f647ae0 | 1152 | h263_decoder_select="h263_parser" |
e8ed9b7a | 1153 | h263_encoder_select="aandct" |
ff418735 | 1154 | h263_vaapi_hwaccel_deps="va_va_h" |
95a61cfc | 1155 | h263_vaapi_hwaccel_select="vaapi h263_decoder" |
4414137e | 1156 | h263i_decoder_select="h263_decoder" |
fe629c2d | 1157 | h263p_encoder_select="h263_encoder" |
4f034993 | 1158 | h264_decoder_select="golomb" |
ff418735 | 1159 | h264_vaapi_hwaccel_deps="va_va_h" |
17492d5e | 1160 | h264_vaapi_hwaccel_select="vaapi" |
711dae77 | 1161 | h264_vdpau_decoder_deps="vdpau_vdpau_h vdpau_vdpau_x11_h" |
95a61cfc | 1162 | h264_vdpau_decoder_select="vdpau h264_decoder" |
47a158cb | 1163 | imc_decoder_select="fft mdct" |
4f034993 MR |
1164 | jpegls_decoder_select="golomb" |
1165 | jpegls_encoder_select="golomb" | |
e8ed9b7a | 1166 | ljpeg_encoder_select="aandct" |
4f034993 | 1167 | loco_decoder_select="golomb" |
e8ed9b7a | 1168 | mjpeg_encoder_select="aandct" |
2cca233b | 1169 | mlp_decoder_select="mlp_parser" |
e8ed9b7a DB |
1170 | mpeg1video_encoder_select="aandct" |
1171 | mpeg2video_encoder_select="aandct" | |
4414137e | 1172 | mpeg4_decoder_select="h263_decoder mpeg4video_parser" |
c37de5e1 | 1173 | mpeg4_encoder_select="h263_encoder" |
711dae77 | 1174 | mpeg_vdpau_decoder_deps="vdpau_vdpau_h vdpau_vdpau_x11_h" |
95a61cfc | 1175 | mpeg_vdpau_decoder_select="vdpau mpegvideo_decoder" |
711dae77 | 1176 | mpeg1_vdpau_decoder_deps="vdpau_vdpau_h vdpau_vdpau_x11_h" |
95a61cfc | 1177 | mpeg1_vdpau_decoder_select="vdpau mpeg1video_decoder" |
ff418735 | 1178 | mpeg2_vaapi_hwaccel_deps="va_va_h" |
95a61cfc | 1179 | mpeg2_vaapi_hwaccel_select="vaapi mpeg2video_decoder" |
ff418735 | 1180 | mpeg4_vaapi_hwaccel_deps="va_va_h" |
95a61cfc | 1181 | mpeg4_vaapi_hwaccel_select="vaapi mpeg4_decoder" |
70e0c871 NC |
1182 | mpeg4_vdpau_decoder_deps="vdpau_vdpau_h vdpau_vdpau_x11_h" |
1183 | mpeg4_vdpau_decoder_select="vdpau mpeg4_decoder" | |
8f6f050a | 1184 | mpeg_xvmc_decoder_deps="X11_extensions_XvMClib_h" |
4d8eecf4 | 1185 | mpeg_xvmc_decoder_select="mpegvideo_decoder" |
4414137e | 1186 | msmpeg4v1_decoder_select="h263_decoder" |
4e169d89 | 1187 | msmpeg4v1_encoder_select="h263_encoder" |
4414137e | 1188 | msmpeg4v2_decoder_select="h263_decoder" |
4e169d89 | 1189 | msmpeg4v2_encoder_select="h263_encoder" |
4414137e | 1190 | msmpeg4v3_decoder_select="h263_decoder" |
4e169d89 | 1191 | msmpeg4v3_encoder_select="h263_encoder" |
47a158cb MR |
1192 | nellymoser_decoder_select="fft mdct" |
1193 | nellymoser_encoder_select="fft mdct" | |
2eef7c62 AJ |
1194 | png_decoder_select="zlib" |
1195 | png_encoder_select="zlib" | |
63cae55d | 1196 | qdm2_decoder_select="fft mdct rdft" |
a8beb22f | 1197 | rv10_decoder_select="h263_decoder" |
b2bf38b4 | 1198 | rv10_encoder_select="h263_encoder" |
a8beb22f | 1199 | rv20_decoder_select="h263_decoder" |
b2bf38b4 | 1200 | rv20_encoder_select="h263_encoder" |
d52b39c7 AJ |
1201 | rv30_decoder_select="golomb" |
1202 | rv40_decoder_select="golomb" | |
4f034993 MR |
1203 | shorten_decoder_select="golomb" |
1204 | sonic_decoder_select="golomb" | |
1205 | sonic_encoder_select="golomb" | |
1206 | sonic_ls_encoder_select="golomb" | |
1207 | svq3_decoder_select="golomb" | |
bee2eac5 | 1208 | svq3_decoder_suggest="zlib" |
4eef77c1 | 1209 | theora_decoder_select="vp3_decoder" |
2eef7c62 AJ |
1210 | tiff_decoder_suggest="zlib" |
1211 | tiff_encoder_suggest="zlib" | |
aec09a00 | 1212 | truehd_decoder_select="mlp_decoder" |
2eef7c62 | 1213 | tscc_decoder_select="zlib" |
f95bfab0 | 1214 | vc1_decoder_select="h263_decoder" |
ff418735 | 1215 | vc1_vaapi_hwaccel_deps="va_va_h" |
95a61cfc | 1216 | vc1_vaapi_hwaccel_select="vaapi vc1_decoder" |
711dae77 | 1217 | vc1_vdpau_decoder_deps="vdpau_vdpau_h vdpau_vdpau_x11_h" |
95a61cfc | 1218 | vc1_vdpau_decoder_select="vdpau vc1_decoder" |
47a158cb MR |
1219 | vorbis_decoder_select="fft mdct" |
1220 | vorbis_encoder_select="fft mdct" | |
e82dc4c9 DB |
1221 | vp6a_decoder_select="vp6_decoder" |
1222 | vp6f_decoder_select="vp6_decoder" | |
47a158cb MR |
1223 | wmav1_decoder_select="fft mdct" |
1224 | wmav1_encoder_select="fft mdct" | |
1225 | wmav2_decoder_select="fft mdct" | |
1226 | wmav2_encoder_select="fft mdct" | |
f95bfab0 | 1227 | wmv1_decoder_select="h263_decoder" |
665507aa | 1228 | wmv1_encoder_select="h263_encoder" |
f95bfab0 | 1229 | wmv2_decoder_select="h263_decoder" |
1746e2a9 | 1230 | wmv2_encoder_select="h263_encoder" |
015f8ee0 DB |
1231 | wmv3_decoder_select="vc1_decoder" |
1232 | wmv3_vaapi_hwaccel_select="vc1_vaapi_hwaccel" | |
1233 | wmv3_vdpau_decoder_select="vc1_vdpau_decoder" | |
2eef7c62 AJ |
1234 | zlib_decoder_select="zlib" |
1235 | zlib_encoder_select="zlib" | |
1236 | zmbv_decoder_select="zlib" | |
1237 | zmbv_encoder_select="zlib" | |
30fd06be | 1238 | |
28b80940 DB |
1239 | # parsers |
1240 | h264_parser_select="golomb" | |
1241 | ||
f1e94694 DB |
1242 | # bitstream_filters |
1243 | aac_adtstoasc_bsf_select="aac_parser" | |
1244 | ||
912f3148 | 1245 | # external libraries |
1b71f045 | 1246 | libdirac_decoder_deps="libdirac !libschroedinger" |
690bfceb | 1247 | libdirac_encoder_deps="libdirac" |
c9171a83 | 1248 | libfaac_encoder_deps="libfaac" |
69ddbd1d | 1249 | libfaad_decoder_deps="libfaad" |
4ec45764 | 1250 | libfaadbin_decoder_extralibs='$ldl' |
299c77d5 MR |
1251 | libgsm_decoder_deps="libgsm" |
1252 | libgsm_encoder_deps="libgsm" | |
8ffed8d8 MR |
1253 | libgsm_ms_decoder_deps="libgsm" |
1254 | libgsm_ms_encoder_deps="libgsm" | |
1cc60c47 | 1255 | libmp3lame_encoder_deps="libmp3lame" |
0b175caa DB |
1256 | libopencore_amrnb_decoder_deps="libopencore_amrnb" |
1257 | libopencore_amrnb_encoder_deps="libopencore_amrnb" | |
1258 | libopencore_amrwb_decoder_deps="libopencore_amrwb" | |
9a77d59a | 1259 | libopenjpeg_decoder_deps="libopenjpeg" |
f7cd9eed AS |
1260 | libschroedinger_decoder_deps="libschroedinger" |
1261 | libschroedinger_encoder_deps="libschroedinger" | |
ae14f311 | 1262 | libspeex_decoder_deps="libspeex" |
150d2772 | 1263 | libtheora_encoder_deps="libtheora" |
b0caf888 | 1264 | libvorbis_encoder_deps="libvorbis" |
1cc60c47 DB |
1265 | libx264_encoder_deps="libx264" |
1266 | libxvid_encoder_deps="libxvid" | |
30fd06be | 1267 | |
912f3148 | 1268 | # demuxers / muxers |
03a76ba9 | 1269 | ac3_demuxer_deps="ac3_parser" |
647c2356 | 1270 | asf_stream_muxer_select="asf_muxer" |
4e622dea SS |
1271 | avisynth_demuxer_deps="avisynth" |
1272 | dirac_demuxer_deps="dirac_parser" | |
5b423887 | 1273 | eac3_demuxer_select="ac3_parser" |
647c2356 | 1274 | ipod_muxer_select="mov_muxer" |
4e622dea SS |
1275 | libnut_demuxer_deps="libnut" |
1276 | libnut_muxer_deps="libnut" | |
647c2356 | 1277 | matroska_audio_muxer_select="matroska_muxer" |
4e622dea SS |
1278 | matroska_demuxer_suggest="zlib bzlib" |
1279 | mov_demuxer_suggest="zlib" | |
1280 | mp3_demuxer_deps="mpegaudio_parser" | |
647c2356 DB |
1281 | mp4_muxer_select="mov_muxer" |
1282 | mpegtsraw_demuxer_select="mpegts_demuxer" | |
1283 | mxf_d10_muxer_select="mxf_muxer" | |
24ca518b | 1284 | ogg_demuxer_select="golomb" |
647c2356 | 1285 | psp_muxer_select="mov_muxer" |
4e622dea SS |
1286 | rtsp_demuxer_deps="sdp_demuxer" |
1287 | sdp_demuxer_deps="rtp_protocol mpegts_demuxer" | |
f1e94694 | 1288 | spdif_muxer_select="aac_parser" |
647c2356 DB |
1289 | tg2_muxer_select="mov_muxer" |
1290 | tgp_muxer_select="mov_muxer" | |
6bdaa5f4 | 1291 | w64_demuxer_deps="wav_demuxer" |
4e622dea SS |
1292 | |
1293 | # indevs / outdevs | |
38e54a75 SS |
1294 | alsa_indev_deps="alsa_asoundlib_h snd_pcm_htimestamp" |
1295 | alsa_indev_extralibs="-lasound" | |
1296 | alsa_outdev_deps="alsa_asoundlib_h" | |
1297 | alsa_outdev_extralibs="-lasound" | |
1298 | audio_beos_indev_deps="audio_beos" | |
1299 | audio_beos_indev_extralibs="-lmedia -lbe" | |
1300 | audio_beos_outdev_deps="audio_beos" | |
1301 | audio_beos_outdev_extralibs="-lmedia -lbe" | |
38e54a75 | 1302 | bktr_indev_deps_any="dev_bktr_ioctl_bt848_h machine_ioctl_bt848_h dev_video_bktr_ioctl_bt848_h dev_ic_bt8xx_h" |
38e54a75 SS |
1303 | dv1394_indev_deps="dv1394 dv_demuxer" |
1304 | jack_indev_deps="jack_jack_h" | |
1305 | jack_indev_extralibs="-ljack" | |
1306 | libdc1394_indev_deps="libdc1394" | |
38e54a75 SS |
1307 | oss_indev_deps_any="soundcard_h sys_soundcard_h" |
1308 | oss_outdev_deps_any="soundcard_h sys_soundcard_h" | |
38e54a75 SS |
1309 | v4l_indev_deps="linux_videodev_h" |
1310 | v4l2_indev_deps_any="linux_videodev2_h sys_videoio_h" | |
1311 | vfwcap_indev_deps="capCreateCaptureWindow" | |
1312 | vfwcap_indev_extralibs="-lvfw32" | |
1313 | x11_grab_device_indev_deps="x11grab XShmCreateImage" | |
781c1aa6 | 1314 | x11_grab_device_indev_extralibs="-lX11 -lXext -lXfixes" |
30fd06be | 1315 | |
912f3148 | 1316 | # protocols |
3fff6382 | 1317 | gopher_protocol_deps="network" |
c08fb000 | 1318 | http_protocol_deps="network" |
cbf29889 | 1319 | rtmp_protocol_deps="tcp_protocol" |
c08fb000 AB |
1320 | rtp_protocol_deps="udp_protocol" |
1321 | tcp_protocol_deps="network" | |
1322 | udp_protocol_deps="network" | |
1323 | ||
f7679c54 | 1324 | # filters |
81124ba0 | 1325 | movie_filter_deps="avfilter_lavf" |
f7679c54 | 1326 | |
912f3148 | 1327 | # programs |
fa859b4d | 1328 | ffplay_deps="sdl" |
6ad42348 | 1329 | ffserver_deps="ffm_muxer rtp_protocol rtsp_demuxer" |
4ec45764 | 1330 | ffserver_extralibs='$ldl' |
a2830dca | 1331 | |
c73f65d9 | 1332 | doc_deps="texi2html" |
912f3148 | 1333 | |
de6d9b64 | 1334 | # default parameters |
8a608357 | 1335 | |
2ba042a7 | 1336 | logfile="config.err" |
8a608357 MR |
1337 | |
1338 | # installation paths | |
c9d19248 MR |
1339 | prefix_default="/usr/local" |
1340 | bindir_default='${prefix}/bin' | |
14a8acf1 | 1341 | datadir_default='${prefix}/share/ffmpeg' |
c9d19248 MR |
1342 | incdir_default='${prefix}/include' |
1343 | libdir_default='${prefix}/lib' | |
1344 | mandir_default='${prefix}/share/man' | |
1345 | shlibdir_default="$libdir_default" | |
8a608357 MR |
1346 | |
1347 | # toolchain | |
11e6d03a | 1348 | ar="ar" |
13c7df3d | 1349 | cc_default="gcc" |
a3d7c197 | 1350 | cc_version=\"unknown\" |
9da6609f | 1351 | host_cc_default="gcc" |
11e6d03a | 1352 | ln_s="ln -sf" |
89641463 | 1353 | nm_default="nm" |
11e6d03a | 1354 | objformat="elf" |
be7109c1 | 1355 | ranlib="ranlib" |
0f3cb305 | 1356 | strip="strip" |
11e6d03a | 1357 | yasmexe="yasm" |
8a608357 MR |
1358 | |
1359 | # machine | |
5e622c40 | 1360 | arch=$(uname -m) |
38d0a8aa | 1361 | cpu="generic" |
8a608357 | 1362 | |
8a608357 | 1363 | # OS |
4f854758 | 1364 | target_os=$(tolower $(uname -s)) |
82bb3329 | 1365 | host_os=$target_os |
8a608357 | 1366 | |
8a608357 | 1367 | # configurable options |
497237c7 | 1368 | enable debug |
c73f65d9 | 1369 | enable doc |
aa033b1e | 1370 | enable fastdiv |
497237c7 RP |
1371 | enable ffmpeg |
1372 | enable ffplay | |
1373 | enable ffserver | |
1374 | enable ipv6 | |
497237c7 RP |
1375 | enable mpegaudio_hp |
1376 | enable network | |
8400d6b8 | 1377 | enable optimizations |
497237c7 | 1378 | enable protocols |
530dc538 | 1379 | enable static |
87a0fb62 | 1380 | enable stripping |
a9ddb5b1 | 1381 | enable swscale_alpha |
8a608357 | 1382 | |
8a608357 | 1383 | # build settings |
9987769a | 1384 | SHFLAGS='-shared -Wl,-soname,$$(@F)' |
c536cb09 | 1385 | FFSERVERLDFLAGS=-Wl,-E |
f3ec2d46 SG |
1386 | LIBPREF="lib" |
1387 | LIBSUF=".a" | |
c5f14466 RP |
1388 | FULLNAME='$(NAME)$(BUILDSUF)' |
1389 | LIBNAME='$(LIBPREF)$(FULLNAME)$(LIBSUF)' | |
f3ec2d46 SG |
1390 | SLIBPREF="lib" |
1391 | SLIBSUF=".so" | |
c5f14466 | 1392 | SLIBNAME='$(SLIBPREF)$(FULLNAME)$(SLIBSUF)' |
b29bddab DB |
1393 | SLIBNAME_WITH_VERSION='$(SLIBNAME).$(LIBVERSION)' |
1394 | SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)' | |
24743a76 | 1395 | LIB_INSTALL_EXTRA_CMD='$(RANLIB) "$(LIBDIR)/$(LIBNAME)"' |
ef0bc4c9 | 1396 | |
7e6c86e6 MR |
1397 | CC_O='-o $@' |
1398 | ||
f0125de9 | 1399 | host_cflags='-D_ISOC99_SOURCE -D_POSIX_C_SOURCE=200112 -O3 -g -Wall' |
9da6609f MR |
1400 | host_libs='-lm' |
1401 | ||
a7ada2ba MR |
1402 | target_path='.' |
1403 | ||
0d7dca36 DB |
1404 | # gcc stupidly only outputs the basename of targets with -MM, but we need the |
1405 | # full relative path for objects in subdirectories for non-recursive Make. | |
c1c3933a | 1406 | DEPEND_CMD='$(DEPCC) $(DEPFLAGS) $< | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(*F)\\.o,$(@D)/$(*F).o," > $(@:.o=.d)' |
d8059267 | 1407 | DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -MM' |
315c741d | 1408 | |
c597172e | 1409 | # find source path |
5e622c40 | 1410 | source_path="$(dirname "$0")" |
497237c7 | 1411 | enable source_path_used |
24524f36 | 1412 | if test -f configure; then |
5e622c40 | 1413 | source_path="$(pwd)" |
497237c7 | 1414 | disable source_path_used |
c597172e | 1415 | else |
5e622c40 | 1416 | source_path="$(cd "$source_path"; pwd)" |
c597172e | 1417 | echo "$source_path" | grep -q '[[:blank:]]' && |
7483e694 | 1418 | die "Out of tree builds are impossible with whitespace in source path." |
337cee68 MC |
1419 | test -e "$source_path/config.h" && |
1420 | die "Out of tree builds are impossible with config.h in source dir." | |
c597172e MR |
1421 | fi |
1422 | ||
13cbe2c0 | 1423 | for v in "$@"; do |
b04251c5 MR |
1424 | r=${v#*=} |
1425 | l=${v%"$r"} | |
1426 | r=$(sh_quote "$r") | |
13cbe2c0 MR |
1427 | FFMPEG_CONFIGURATION="${FFMPEG_CONFIGURATION# } ${l}${r}" |
1428 | done | |
c597172e | 1429 | |
73ef8980 MR |
1430 | find_things(){ |
1431 | thing=$1 | |
1432 | pattern=$2 | |
1433 | file=$source_path/$3 | |
932ccf39 | 1434 | sed -n "s/^[^#]*$pattern.*([^,]*, *\([^,]*\)\(,.*\)*).*/\1_$thing/p" "$file" |
73ef8980 MR |
1435 | } |
1436 | ||
1437 | ENCODER_LIST=$(find_things encoder ENC libavcodec/allcodecs.c) | |
1438 | DECODER_LIST=$(find_things decoder DEC libavcodec/allcodecs.c) | |
5666fd73 | 1439 | HWACCEL_LIST=$(find_things hwaccel HWACCEL libavcodec/allcodecs.c) |
73ef8980 MR |
1440 | PARSER_LIST=$(find_things parser PARSER libavcodec/allcodecs.c) |
1441 | BSF_LIST=$(find_things bsf BSF libavcodec/allcodecs.c) | |
1442 | MUXER_LIST=$(find_things muxer _MUX libavformat/allformats.c) | |
1443 | DEMUXER_LIST=$(find_things demuxer DEMUX libavformat/allformats.c) | |
38e54a75 SS |
1444 | OUTDEV_LIST=$(find_things outdev OUTDEV libavdevice/alldevices.c) |
1445 | INDEV_LIST=$(find_things indev _IN libavdevice/alldevices.c) | |
73ef8980 | 1446 | PROTOCOL_LIST=$(find_things protocol PROTOCOL libavformat/allformats.c) |
81124ba0 | 1447 | FILTER_LIST=$(find_things filter FILTER libavfilter/allfilters.c) |
c597172e | 1448 | |
7483e694 DB |
1449 | enable $ARCH_EXT_LIST \ |
1450 | $DECODER_LIST \ | |
1451 | $ENCODER_LIST \ | |
5666fd73 | 1452 | $HWACCEL_LIST \ |
7483e694 DB |
1453 | $PARSER_LIST \ |
1454 | $BSF_LIST \ | |
1455 | $DEMUXER_LIST \ | |
1456 | $MUXER_LIST \ | |
f7679c54 | 1457 | $FILTER_LIST \ |
7483e694 DB |
1458 | $PROTOCOL_LIST \ |
1459 | $INDEV_LIST \ | |
1460 | $OUTDEV_LIST \ | |
c597172e MR |
1461 | |
1462 | die_unknown(){ | |
1463 | echo "Unknown option \"$1\"." | |
1464 | echo "See $0 --help for available options." | |
1465 | exit 1 | |
1466 | } | |
1467 | ||
794f8e97 | 1468 | show_list() { |
bf0c4afa RP |
1469 | suffix=_$1 |
1470 | shift | |
1471 | echo $* | sed s/$suffix//g | tr ' ' '\n' | sort | |
794f8e97 PI |
1472 | exit 0 |
1473 | } | |
1474 | ||
c597172e | 1475 | for opt do |
7483e694 DB |
1476 | optval="${opt#*=}" |
1477 | case "$opt" in | |
0f010b2f | 1478 | --extra-ldflags=*) add_ldflags $optval |
7483e694 | 1479 | ;; |
0f010b2f | 1480 | --extra-libs=*) add_extralibs $optval |
7483e694 | 1481 | ;; |
8fb1cb58 | 1482 | --disable-devices) disable $INDEV_LIST $OUTDEV_LIST |
9aa8ed9d | 1483 | ;; |
40bcf4c7 BL |
1484 | --enable-debug=*) debuglevel="$optval" |
1485 | ;; | |
7483e694 | 1486 | --enable-*=*|--disable-*=*) |
8b93ddc3 | 1487 | eval $(echo "${opt%%=*}" | sed 's/--/action=/;s/-/ thing=/') |
be8f2501 MR |
1488 | is_in "${thing}s" $COMPONENT_LIST || die_unknown "$opt" |
1489 | eval list=\$$(toupper $thing)_LIST | |
8b93ddc3 MR |
1490 | name=$(echo "${optval}" | sed "s/,/_${thing}|/g")_${thing} |
1491 | $action $(filter "$name" $list) | |
7483e694 DB |
1492 | ;; |
1493 | --enable-?*|--disable-?*) | |
5e622c40 | 1494 | eval $(echo "$opt" | sed 's/--/action=/;s/-/ option=/;s/-/_/g') |
e3773a55 | 1495 | if is_in $option $COMPONENT_LIST; then |
fed5d54b | 1496 | test $action = disable && action=unset |
e3773a55 MR |
1497 | eval $action \$$(toupper ${option%s})_LIST |
1498 | elif is_in $option $CMDLINE_SELECT; then | |
1499 | $action $option | |
1500 | else | |
1501 | die_unknown $opt | |
1502 | fi | |
7483e694 DB |
1503 | ;; |
1504 | --list-*) | |
1505 | NAME="${opt#--list-}" | |
1506 | is_in $NAME $COMPONENT_LIST || die_unknown $opt | |
1507 | NAME=${NAME%s} | |
1508 | eval show_list $NAME \$$(toupper $NAME)_LIST | |
1509 | ;; | |
1510 | --help|-h) show_help | |
1511 | ;; | |
1512 | *) | |
884a36a7 | 1513 | optname="${opt%%=*}" |
26759c44 MR |
1514 | optname="${optname#--}" |
1515 | optname=$(echo "$optname" | sed 's/-/_/g') | |
89f2932b MR |
1516 | if is_in $optname $CMDLINE_SET; then |
1517 | eval $optname='$optval' | |
1518 | elif is_in $optname $CMDLINE_APPEND; then | |
1519 | append $optname "$optval" | |
1520 | else | |
1521 | die_unknown $opt | |
1522 | fi | |
7483e694 DB |
1523 | ;; |
1524 | esac | |
c597172e MR |
1525 | done |
1526 | ||
bcea99bb MR |
1527 | disabled logging && logfile=/dev/null |
1528 | ||
13cbe2c0 | 1529 | echo "# $0 $FFMPEG_CONFIGURATION" > $logfile |
bcea99bb MR |
1530 | set >> $logfile |
1531 | ||
9da6609f MR |
1532 | test -n "$cross_prefix" && enable cross_compile |
1533 | ||
adb2b908 | 1534 | ar="${cross_prefix}${ar}" |
11e6d03a | 1535 | cc_default="${cross_prefix}${cc_default}" |
20e0ed95 | 1536 | nm_default="${cross_prefix}${nm_default}" |
adb2b908 RP |
1537 | ranlib="${cross_prefix}${ranlib}" |
1538 | strip="${cross_prefix}${strip}" | |
1539 | ||
c5200f17 MR |
1540 | sysinclude_default="${sysroot}/usr/include" |
1541 | ||
75800dce | 1542 | set_default cc nm sysinclude |
9da6609f MR |
1543 | enabled cross_compile || host_cc_default=$cc |
1544 | set_default host_cc | |
13c7df3d | 1545 | |
82bb3329 MR |
1546 | exesuf() { |
1547 | case $1 in | |
1548 | mingw32*|cygwin*|*-dos|freedos|opendos|os/2*) echo .exe ;; | |
1549 | esac | |
1550 | } | |
1551 | ||
1552 | EXESUF=$(exesuf $target_os) | |
1553 | HOSTEXESUF=$(exesuf $host_os) | |
c0f5b7f1 | 1554 | |
e4e69e0b | 1555 | # set temporary file name |
a49d42c2 | 1556 | : ${TMPDIR:=$TEMPDIR} |
c51fafa1 | 1557 | : ${TMPDIR:=$TMP} |
a49d42c2 | 1558 | : ${TMPDIR:=/tmp} |
e4e69e0b | 1559 | |
54460a83 MR |
1560 | if ! check_cmd type mktemp; then |
1561 | # simple replacement for missing mktemp | |
1562 | # NOT SAFE FOR GENERAL USE | |
1563 | mktemp(){ | |
1564 | echo "${2%XXX*}.${HOSTNAME}.${UID}.$$" | |
1565 | } | |
1566 | fi | |
1567 | ||
1568 | tmpfile(){ | |
1569 | tmp=$(mktemp -u "${TMPDIR}/ffconf.XXXXXXXX")$2 && | |
1570 | (set -C; exec > $tmp) 2>/dev/null || | |
f7ba16a7 | 1571 | die "Unable to create temporary file in $TMPDIR." |
54460a83 MR |
1572 | append TMPFILES $tmp |
1573 | eval $1=$tmp | |
1574 | } | |
1575 | ||
1576 | trap 'rm -f -- $TMPFILES' EXIT | |
1577 | trap exit HUP INT TERM | |
1578 | ||
1579 | tmpfile TMPC .c | |
1580 | tmpfile TMPE $EXESUF | |
1581 | tmpfile TMPH .h | |
1582 | tmpfile TMPO .o | |
1583 | tmpfile TMPS .S | |
a482e61b | 1584 | tmpfile TMPV .ver |
54460a83 MR |
1585 | tmpfile TMPSH .sh |
1586 | ||
1587 | unset -f mktemp | |
e4e69e0b | 1588 | |
993f2d0f MR |
1589 | # make sure we can execute files in $TMPDIR |
1590 | cat > $TMPSH 2>> $logfile <<EOF | |
1591 | #! /bin/sh | |
1592 | EOF | |
1593 | chmod +x $TMPSH >> $logfile 2>&1 | |
1594 | if ! $TMPSH >> $logfile 2>&1; then | |
1595 | cat <<EOF | |
1596 | Unable to create and execute files in $TMPDIR. Set the TMPDIR environment | |
1597 | variable to another directory and make sure that it is not mounted noexec. | |
1598 | EOF | |
1599 | die "Sanity test failed." | |
1600 | fi | |
993f2d0f | 1601 | |
19b4c628 MR |
1602 | filter_cflags=echo |
1603 | filter_cppflags=echo | |
1604 | filter_asflags=echo | |
1605 | ||
8f0c157a | 1606 | if $cc -v 2>&1 | grep -qi ^gcc; then |
629687f6 | 1607 | cc_type=gcc |
a3d7c197 | 1608 | cc_version=__VERSION__ |
aef6bd1b MR |
1609 | if ! $cc -dumpversion | grep -q '^2\.'; then |
1610 | CC_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@' | |
1611 | AS_DEPFLAGS='-MMD -MF $(@:.o=.d) -MT $@' | |
1612 | fi | |
629687f6 MR |
1613 | elif $cc --version 2>/dev/null | grep -q Intel; then |
1614 | cc_type=icc | |
6e3fa35d | 1615 | cc_version="AV_STRINGIFY(__INTEL_COMPILER)" |
07dec06e MR |
1616 | CC_DEPFLAGS='-MMD' |
1617 | AS_DEPFLAGS='-MMD' | |
629687f6 MR |
1618 | elif $cc -v 2>&1 | grep -q xlc; then |
1619 | cc_type=xlc | |
6e3fa35d | 1620 | cc_version="AV_STRINGIFY(__IBMC__)" |
df442a8d MR |
1621 | elif $cc -V 2>/dev/null | grep -q Compaq; then |
1622 | cc_type=ccc | |
6e3fa35d | 1623 | cc_version="AV_STRINGIFY(__DECC_VER)" |
d8059267 | 1624 | DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -M' |
03754fcd | 1625 | debuglevel=3 |
df442a8d | 1626 | add_ldflags -Wl,-z,now # calls to libots crash without this |
6a0d5493 | 1627 | elif $cc --vsn 2>/dev/null | grep -q "ARM C/C++ Compiler"; then |
03e37762 MR |
1628 | test -d "$sysroot" || die "No valid sysroot specified." |
1629 | cc_type=armcc | |
6e3fa35d | 1630 | cc_version="AV_STRINGIFY(__ARMCC_VERSION)" |
03e37762 MR |
1631 | armcc_conf="$PWD/armcc.conf" |
1632 | $cc --arm_linux_configure \ | |
1633 | --arm_linux_config_file="$armcc_conf" \ | |
1634 | --configure_sysroot="$sysroot" \ | |
1635 | --configure_cpp_headers="$sysinclude" >>$logfile 2>&1 || | |
1636 | die "Error creating armcc configuration file." | |
1637 | cc="$cc --arm_linux_config_file=$armcc_conf --translate_gcc" | |
75800dce | 1638 | as_default="${cross_prefix}gcc" |
07dec06e MR |
1639 | CC_DEPFLAGS='-MMD' |
1640 | AS_DEPFLAGS='-MMD' | |
6fec122a MR |
1641 | elif $cc -version 2>/dev/null | grep -q TMS470; then |
1642 | cc_type=tms470 | |
6e3fa35d | 1643 | cc_version="AV_STRINGIFY(__TI_COMPILER_VERSION__)" |
6fec122a MR |
1644 | cc="$cc --gcc --abi=eabi -eo=.o -mc -me" |
1645 | CC_O='-fr=$(@D)' | |
1646 | as_default="${cross_prefix}gcc" | |
1647 | ld_default="${cross_prefix}gcc" | |
6fec122a MR |
1648 | TMPO=$(basename $TMPC .c).o |
1649 | append TMPFILES $TMPO | |
1650 | add_cflags -D__gnuc_va_list=va_list -D__USER_LABEL_PREFIX__= | |
07dec06e MR |
1651 | CC_DEPFLAGS='-ppa -ppd=$(@:.o=.d)' |
1652 | AS_DEPFLAGS='-MMD' | |
6fec122a MR |
1653 | filter_cflags=tms470_flags |
1654 | tms470_flags(){ | |
1655 | for flag; do | |
1656 | case $flag in | |
1657 | -march=*|-mcpu=*) | |
1658 | case "${flag#*=}" in | |
1659 | armv7-a|cortex-a*) echo -mv=7a8 ;; | |
1660 | armv7-r|cortex-r*) echo -mv=7r4 ;; | |
1661 | armv7-m|cortex-m*) echo -mv=7m3 ;; | |
1662 | armv6*|arm11*) echo -mv=6 ;; | |
1663 | armv5*e|arm[79]*e*|arm9[24]6*|arm96*|arm102[26]) | |
1664 | echo -mv=5e ;; | |
1665 | armv4*|arm7*|arm9[24]*) echo -mv=4 ;; | |
1666 | esac | |
1667 | ;; | |
1668 | -mfpu=neon) echo --float_support=vfpv3 --neon ;; | |
1669 | -mfpu=vfp) echo --float_support=vfpv2 ;; | |
a2709020 | 1670 | -msoft-float) echo --float_support=vfplib ;; |
6fec122a MR |
1671 | -Os) echo -O3 -mf=2 ;; |
1672 | -O[0-3]) echo $flag -mf=5 ;; | |
1673 | -g) echo -g -mn ;; | |
1674 | esac | |
1675 | done | |
1676 | } | |
06da6943 DC |
1677 | elif $cc -v 2>&1 | grep -q clang; then |
1678 | cc_type=clang | |
1679 | cc_version=__VERSION__ | |
1680 | CC_DEPFLAGS='-MMD' | |
1681 | AS_DEPFLAGS='-MMD' | |
2a472e9c MK |
1682 | elif $cc -V 2>&1 | grep -q Sun; then |
1683 | cc_type=suncc | |
1684 | cc_version="AV_STRINGIFY(__SUNPRO_C)" | |
faa374b7 | 1685 | DEPEND_CMD='$(DEPCC) $(DEPFLAGS) $< | sed -e "1s,^.*: ,$@: ," -e "\$$!s,\$$, \\\," -e "1!s,^.*: , ," > $(@:.o=.d)' |
2a472e9c | 1686 | DEPFLAGS='$(CPPFLAGS) $(CFLAGS) -xM1' |
03279bbe MK |
1687 | filter_cflags=suncc_flags |
1688 | suncc_flags(){ | |
1689 | for flag; do | |
1690 | case $flag in | |
1691 | -march=*|-mcpu=*) | |
1692 | case "${flag#*=}" in | |
1693 | native) echo -xtarget=native ;; | |
1694 | v9) echo -xarch=sparc ;; | |
1695 | ultrasparc) echo -xarch=sparcvis ;; | |
1696 | ultrasparc3|niagara*) echo -xarch=sparcvis2 ;; | |
1697 | i586|pentium) echo -xchip=pentium ;; | |
1698 | i686|pentiumpro|pentium2) echo -xtarget=pentium_pro ;; | |
1699 | pentium3*|c3-2) echo -xtarget=pentium3 ;; | |
1700 | pentium-m) echo -xarch=sse2 -xchip=pentium3 ;; | |
1701 | pentium4*) echo -xtarget=pentium4 ;; | |
1702 | prescott|nocona) echo -xarch=sse3 -xchip=pentium4 ;; | |
1703 | *-sse3) echo -xarch=sse3 ;; | |
1704 | core2) echo -xarch=ssse3 -xchip=core2 ;; | |
1705 | amdfam10|barcelona) echo -xarch=sse4_1 ;; | |
1706 | athlon-4|athlon-[mx]p) echo -xarch=ssea ;; | |
1707 | k8|opteron|athlon64|athlon-fx) | |
1708 | echo -xarch=sse2a ;; | |
1709 | athlon*) echo -xarch=pentium_proa ;; | |
1710 | esac | |
1711 | ;; | |
1712 | -std=c99) echo -xc99 ;; | |
1713 | -fomit-frame-pointer) echo -xregs=frameptr ;; | |
1714 | -fPIC) echo -KPIC -xcode=pic32 ;; | |
1715 | -Os) echo -O5 -xspace ;; | |
1716 | -W*,*) echo $flag ;; | |
1717 | -f*-*|-W*) ;; | |
1718 | *) echo $flag ;; | |
1719 | esac | |
1720 | done | |
1721 | } | |
629687f6 MR |
1722 | fi |
1723 | ||
1724 | test -n "$cc_type" && enable $cc_type || echolog "Unknown C compiler $cc" | |
1725 | ||
75bafbac | 1726 | : ${as_default:=$cc} |
50567afa | 1727 | : ${dep_cc_default:=$cc} |
684b28e0 | 1728 | : ${ld_default:=$cc} |
50567afa | 1729 | set_default as dep_cc ld |
75800dce | 1730 | |
07dec06e MR |
1731 | test -n "$CC_DEPFLAGS" || CCDEP=$DEPEND_CMD |
1732 | test -n "$AS_DEPFLAGS" || ASDEP=$DEPEND_CMD | |
1733 | ||
7f32f40c | 1734 | add_cflags $extra_cflags |
2f2e6c7c | 1735 | add_asflags $extra_cflags |
7f32f40c | 1736 | |
154d432c MR |
1737 | if test -n "$sysroot"; then |
1738 | case "$cc_type" in | |
1739 | gcc) | |
467256f2 | 1740 | add_cppflags --sysroot="$sysroot" |
154d432c MR |
1741 | add_ldflags --sysroot="$sysroot" |
1742 | ;; | |
6fec122a MR |
1743 | tms470) |
1744 | add_cppflags -I"$sysinclude" | |
1745 | add_ldflags --sysroot="$sysroot" | |
1746 | ;; | |
06da6943 DC |
1747 | clang) |
1748 | add_cppflags -isysroot="$sysroot" | |
1749 | add_ldflags -isysroot="$sysroot" | |
1750 | ;; | |
154d432c MR |
1751 | esac |
1752 | fi | |
1753 | ||
d22c13a8 MR |
1754 | if test "$cpu" = host; then |
1755 | enabled cross_compile && die "--cpu=host makes no sense when cross-compiling." | |
1756 | ||
1757 | case "$cc_type" in | |
1758 | gcc) | |
1759 | check_native(){ | |
1760 | $cc $1=native -v -c -o $TMPO $TMPC >$TMPE 2>&1 || return | |
1761 | awk "/$1=/{ match(\$0, /$1=(\\w+)/, a);print a[1];exit }" $TMPE | |
1762 | } | |
1763 | cpu=$(check_native -march || check_native -mcpu) | |
1764 | ;; | |
1765 | esac | |
1766 | ||
1767 | test "${cpu:-host}" = host && die "--cpu=host not supported with compiler $cc" | |
1768 | fi | |
1769 | ||
df5cdc24 MR |
1770 | # Add processor-specific flags |
1771 | case $cpu in | |
1772 | 601|ppc601|PowerPC601) | |
1773 | cpuflags="-mcpu=601" | |
1774 | ;; | |
1775 | 603*|ppc603*|PowerPC603*) | |
1776 | cpuflags="-mcpu=603" | |
1777 | ;; | |
1778 | 604*|ppc604*|PowerPC604*) | |
1779 | cpuflags="-mcpu=604" | |
1780 | ;; | |
1781 | G3|g3|75*|ppc75*|PowerPC75*) | |
1782 | cpuflags="-mcpu=750 -mpowerpc-gfxopt" | |
1783 | ;; | |
1784 | G4|g4|745*|ppc745*|PowerPC745*) | |
1785 | cpuflags="-mcpu=7450 -mpowerpc-gfxopt" | |
1786 | ;; | |
1787 | 74*|ppc74*|PowerPC74*) | |
1788 | cpuflags="-mcpu=7400 -mpowerpc-gfxopt" | |
1789 | ;; | |
1790 | G5|g5|970|ppc970|PowerPC970|power4*|Power4*) | |
1791 | cpuflags="-mcpu=970 -mpowerpc-gfxopt -mpowerpc64" | |
1792 | ;; | |
1793 | Cell|CELL|cell) | |
1794 | cpuflags="-mcpu=cell" | |
1795 | enable ldbrx | |
1796 | ;; | |
8d072dd2 MR |
1797 | i[345]86|pentium) |
1798 | cpuflags="-march=$cpu" | |
1799 | disable mmx | |
1800 | ;; | |
df5cdc24 | 1801 | # targets that do NOT support conditional mov (cmov) |
8d072dd2 | 1802 | pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3) |
df5cdc24 MR |
1803 | cpuflags="-march=$cpu" |
1804 | disable cmov | |
1805 | ;; | |
1806 | # targets that do support conditional mov (cmov) | |
d3ee7715 | 1807 | i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64|k8|opteron|athlon-fx|core2|amdfam10) |
df5cdc24 MR |
1808 | cpuflags="-march=$cpu" |
1809 | enable cmov | |
1810 | enable fast_cmov | |
1811 | ;; | |
1812 | # targets that do support conditional mov but on which it's slow | |
1813 | pentium4|pentium4m|prescott|nocona) | |
1814 | cpuflags="-march=$cpu" | |
1815 | enable cmov | |
1816 | disable fast_cmov | |
1817 | ;; | |
1818 | sparc64) | |
1819 | cpuflags="-mcpu=v9" | |
1820 | ;; | |
1821 | arm11*|cortex*) | |
1822 | cpuflags="-mcpu=$cpu" | |
1823 | enable fast_unaligned | |
1824 | ;; | |
1825 | armv[67]*) | |
1826 | cpuflags="-march=$cpu" | |
1827 | enable fast_unaligned | |
1828 | ;; | |
1829 | armv*) | |
1830 | cpuflags="-march=$cpu" | |
1831 | ;; | |
1832 | arm*) | |
1833 | cpuflags="-mcpu=$cpu" | |
1834 | ;; | |
1835 | ev4|ev45|ev5|ev56|pca56|ev6|ev67) | |
1836 | enabled ccc && cpuflags="-arch $cpu" || cpuflags="-mcpu=$cpu" | |
1837 | ;; | |
1838 | bf*) | |
1839 | cpuflags="-mcpu=$cpu" | |
1840 | ;; | |
1841 | mips*|[45]k*|[237]4k*|m4k|r*000|loongson2[ef]) | |
1842 | cpuflags="-march=$cpu" | |
1843 | ;; | |
fdcd782d MR |
1844 | ap7[02]0[0-2]) |
1845 | subarch="avr32_ap" | |
1846 | cpuflags="-mpart=$cpu" | |
1847 | ;; | |
1848 | ap) | |
1849 | subarch="avr32_ap" | |
1850 | cpuflags="-march=$cpu" | |
1851 | ;; | |
1852 | uc3[ab]*) | |
1853 | subarch="avr32_uc" | |
1854 | cpuflags="-mcpu=$cpu" | |
1855 | ;; | |
1856 | uc) | |
1857 | subarch="avr32_uc" | |
1858 | cpuflags="-march=$cpu" | |
1859 | ;; | |
df5cdc24 MR |
1860 | generic) |
1861 | ;; | |
1862 | *) | |
1863 | echo "WARNING: Unknown CPU \"$cpu\", ignored." | |
1864 | ;; | |
1865 | esac | |
1866 | ||
1867 | add_cflags $cpuflags | |
1868 | add_asflags $cpuflags | |
1869 | ||
993f2d0f MR |
1870 | # compiler sanity check |
1871 | check_exec <<EOF | |
1872 | int main(void){ return 0; } | |
1873 | EOF | |
1874 | if test "$?" != 0; then | |
1875 | echo "$cc is unable to create an executable file." | |
1876 | if test -z "$cross_prefix" && ! enabled cross_compile ; then | |
1877 | echo "If $cc is a cross-compiler, use the --enable-cross-compile option." | |
1878 | echo "Only do this if you know what cross compiling means." | |
1879 | fi | |
1880 | die "C compiler test failed." | |
1881 | fi | |
1882 | ||
38a9c529 | 1883 | add_cppflags -D_ISOC99_SOURCE -D_POSIX_C_SOURCE=200112 |
e9b9a2f8 | 1884 | check_cflags -std=c99 |
50a334e4 | 1885 | check_cc -D_FILE_OFFSET_BITS=64 <<EOF && add_cppflags -D_FILE_OFFSET_BITS=64 |
9d821fc2 DB |
1886 | #include <stdlib.h> |
1887 | EOF | |
50a334e4 | 1888 | check_cc -D_LARGEFILE_SOURCE <<EOF && add_cppflags -D_LARGEFILE_SOURCE |
9d821fc2 DB |
1889 | #include <stdlib.h> |
1890 | EOF | |
e9b9a2f8 | 1891 | |
f0125de9 MR |
1892 | check_host_cflags -std=c99 |
1893 | ||
b24dbcbd | 1894 | case "$arch" in |
b24dbcbd RP |
1895 | alpha) |
1896 | arch="alpha" | |
1897 | enable fast_64bit | |
c0a02a3e | 1898 | check_cflags -mieee |
8a3c8627 | 1899 | spic=$shared |
b24dbcbd | 1900 | ;; |
cfdb6148 MR |
1901 | arm|armv[4567]*l) |
1902 | arch="arm" | |
b24dbcbd | 1903 | ;; |
f4870943 MR |
1904 | avr32) |
1905 | ;; | |
cfdb6148 MR |
1906 | bfin) |
1907 | arch="bfin" | |
1908 | ;; | |
1909 | ia64) | |
1910 | arch="ia64" | |
b24dbcbd | 1911 | enable fast_64bit |
8a3c8627 | 1912 | spic=$shared |
0956bc9b | 1913 | # HACK: currently fails to build if .bss is > 4MB and shared libs are built |
ffa3bd54 | 1914 | enabled shared && enable_weak hardcoded_tables |
cfdb6148 MR |
1915 | ;; |
1916 | m68k) | |
1917 | arch="m68k" | |
b24dbcbd | 1918 | ;; |
de3a1240 | 1919 | mips|mipsel|IP*) |
b24dbcbd | 1920 | arch="mips" |
8a3c8627 | 1921 | spic=$shared |
b24dbcbd | 1922 | ;; |
de3a1240 DB |
1923 | mips64) |
1924 | arch="mips" | |
bae3abb0 | 1925 | subarch="mips64" |
de3a1240 | 1926 | enable fast_64bit |
8a3c8627 | 1927 | spic=$shared |
de3a1240 | 1928 | ;; |
61597a98 | 1929 | parisc|hppa) |
b24dbcbd | 1930 | arch="parisc" |
8a3c8627 | 1931 | spic=$shared |
b24dbcbd | 1932 | ;; |
61597a98 | 1933 | parisc64|hppa64) |
b24dbcbd RP |
1934 | arch="parisc" |
1935 | enable fast_64bit | |
8a3c8627 | 1936 | spic=$shared |
b24dbcbd | 1937 | ;; |
cfdb6148 MR |
1938 | "Power Macintosh"|ppc|powerpc) |
1939 | arch="ppc" | |
1940 | enable fast_unaligned | |
1941 | ;; | |
1942 | ppc64) | |
1943 | arch="ppc" | |
34d11b87 | 1944 | subarch="ppc64" |
cfdb6148 MR |
1945 | enable fast_64bit |
1946 | enable fast_unaligned | |
1947 | ;; | |
b24dbcbd RP |
1948 | s390|s390x) |
1949 | arch="s390" | |
1950 | ;; | |
cfdb6148 MR |
1951 | sh4|sh) |
1952 | arch="sh4" | |
b24dbcbd | 1953 | ;; |
cfdb6148 MR |
1954 | sparc) |
1955 | arch="sparc" | |
8a3c8627 | 1956 | spic=$shared |
cfdb6148 MR |
1957 | ;; |
1958 | sun4u|sparc64) | |
1959 | arch="sparc" | |
1960 | subarch="sparc64" | |
b24dbcbd | 1961 | enable fast_64bit |
8a3c8627 | 1962 | spic=$shared |
b24dbcbd | 1963 | ;; |
de27f4d9 | 1964 | i386|i486|i586|i686|i86pc|BePC|x86_64|amd64) |
cfdb6148 MR |
1965 | arch="x86" |
1966 | subarch="x86_32" | |
1967 | enable fast_unaligned | |
8a3c8627 | 1968 | check_cc <<EOF && enable fast_64bit && subarch="x86_64" && spic=$shared |
58b3536d | 1969 | int test[(int)sizeof(char*) - 7]; |
cfdb6148 | 1970 | EOF |
de27f4d9 DC |
1971 | if test "$subarch" = "x86_64"; then |
1972 | enable cmov | |
1973 | enable fast_cmov | |
1974 | fi | |
b24dbcbd RP |
1975 | ;; |
1976 | *) | |
1977 | arch="unknown" | |
1978 | ;; | |
1979 | esac | |
1980 | ||
62045d48 | 1981 | enable $arch $subarch |
8a3c8627 | 1982 | enabled spic && enable pic |
5755bc88 | 1983 | check_cpp_condition stdlib.h "defined(__PIC__) || defined(__pic__) || defined(PIC)" && enable pic |
b24dbcbd | 1984 | |
7483e694 | 1985 | # OS specific |
4f854758 | 1986 | case $target_os in |
7483e694 | 1987 | beos|haiku|zeta) |
c9d19248 | 1988 | prefix_default="$HOME/config" |
7483e694 | 1989 | # 3 gcc releases known for BeOS, each with ugly bugs |
5e622c40 | 1990 | gcc_version="$($cc -v 2>&1 | grep version | cut -d ' ' -f3-)" |
7483e694 DB |
1991 | case "$gcc_version" in |
1992 | 2.9-beos-991026*|2.9-beos-000224*) echo "R5/GG gcc" | |
1993 | disable mmx | |
1994 | ;; | |
1995 | *20010315*) echo "BeBits gcc" | |
0f010b2f | 1996 | add_cflags -fno-expensive-optimizations |
7483e694 DB |
1997 | ;; |
1998 | esac | |
7483e694 DB |
1999 | SHFLAGS=-nostart |
2000 | # enable BeOS things | |
2001 | enable audio_beos | |
2002 | # no need for libm, but the inet stuff | |
2003 | # Check for BONE | |
2004 | # XXX: actually should check for NOT net_server | |
78fe7631 | 2005 | if echo $BEINCLUDES | grep -q 'headers/be/bone'; then |
7483e694 DB |
2006 | network_extralibs="-lbind -lsocket" |
2007 | else | |
2008 | enable beos_netserver | |
2009 | network_extralibs="-lnet" | |
2010 | fi ;; | |
2011 | sunos) | |
2012 | FFSERVERLDFLAGS="" | |
9987769a | 2013 | SHFLAGS='-shared -Wl,-h,$$(@F)' |
0600d30a | 2014 | enabled x86 && SHFLAGS="-mimpure-text $SHFLAGS" |
7483e694 | 2015 | network_extralibs="-lsocket -lnsl" |
50a334e4 | 2016 | add_cppflags -D__EXTENSIONS__ |
7483e694 DB |
2017 | ;; |
2018 | netbsd) | |
07a8eef6 MR |
2019 | oss_indev_extralibs="-lossaudio" |
2020 | oss_outdev_extralibs="-lossaudio" | |
7483e694 DB |
2021 | ;; |
2022 | openbsd) | |
89e053f8 | 2023 | enable malloc_aligned |
7c4a001a MR |
2024 | # On OpenBSD 4.5. the compiler does not use PIC unless |
2025 | # explicitly using -fPIC. FFmpeg builds fine without PIC, | |
2026 | # however the generated executable will not do anything | |
2027 | # (simply quits with exit-code 1, no crash, no output). | |
a7b9c8ae | 2028 | # Thus explicitly enable PIC here. |
cd78208b | 2029 | enable pic |
7483e694 | 2030 | SHFLAGS='-shared' |
07a8eef6 MR |
2031 | oss_indev_extralibs="-lossaudio" |
2032 | oss_outdev_extralibs="-lossaudio" | |
7483e694 | 2033 | ;; |
90b4f091 | 2034 | freebsd|dragonfly) |
89e053f8 | 2035 | enable malloc_aligned |
7483e694 DB |
2036 | ;; |
2037 | bsd/os) | |
2038 | osextralibs="-lpoll -lgnugetopt" | |
2039 | strip="strip -d" | |
2040 | ;; | |
2041 | darwin) | |
89e053f8 | 2042 | enable malloc_aligned |
0138c54e | 2043 | SHFLAGS='-dynamiclib -Wl,-single_module -Wl,-install_name,$(SHLIBDIR)/$(SLIBNAME),-current_version,$(LIBVERSION),-compatibility_version,$(LIBMAJOR) -Wl,-read_only_relocs,suppress' |
7483e694 DB |
2044 | strip="strip -x" |
2045 | FFLDFLAGS="-Wl,-dynamic,-search_paths_first" | |
2046 | SLIBSUF=".dylib" | |
2047 | SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME).$(LIBVERSION)$(SLIBSUF)' | |
2048 | SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME).$(LIBMAJOR)$(SLIBSUF)' | |
2049 | FFSERVERLDFLAGS=-Wl,-bind_at_load | |
304d586d | 2050 | objformat="macho" |
1b0f6fb8 | 2051 | enabled x86_64 && objformat="macho64" |
8dfa86f7 | 2052 | enabled_any pic shared || |
2704bd1a | 2053 | { check_cflags -mdynamic-no-pic && add_asflags -mdynamic-no-pic; } |
7483e694 DB |
2054 | ;; |
2055 | mingw32*) | |
ad7da0b5 RP |
2056 | # Only WinXP or greater are supported |
2057 | add_cflags -D_WIN32_WINNT=0x0501 | |
9d3f4f50 | 2058 | if test $target_os = "mingw32ce"; then |
1aa71e25 MS |
2059 | disable network |
2060 | else | |
2061 | target_os=mingw32 | |
2062 | fi | |
dcc01c06 | 2063 | LIBTARGET=i386 |
1fc9fb8a | 2064 | if enabled x86_64; then |
89e053f8 | 2065 | enable malloc_aligned |
dcc01c06 | 2066 | LIBTARGET=x64 |
336cc1b0 MS |
2067 | elif enabled arm; then |
2068 | LIBTARGET=arm | |
dcc01c06 | 2069 | fi |
fbd971a4 | 2070 | shlibdir_default="$bindir_default" |
7483e694 DB |
2071 | disable ffserver |
2072 | SLIBPREF="" | |
2073 | SLIBSUF=".dll" | |
7483e694 DB |
2074 | SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)' |
2075 | SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)' | |
06abe7f5 | 2076 | SLIB_EXTRA_CMD='-lib.exe /machine:$(LIBTARGET) /def:$$(@:$(SLIBSUF)=.def) /out:$(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib)' |
4c25d159 | 2077 | SLIB_INSTALL_EXTRA_CMD='-install -m 644 $(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib) "$(SHLIBDIR)/$(SLIBNAME:$(SLIBSUF)=.lib)"; \ |
b9349ff4 MS |
2078 | install -m 644 $(SUBDIR)$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib) "$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib)"; \ |
2079 | install -d "$(LIBDIR)"; \ | |
2080 | install -m 644 $(SUBDIR)lib$(SLIBNAME:$(SLIBSUF)=.dll.a) "$(LIBDIR)/lib$(SLIBNAME:$(SLIBSUF)=.dll.a)"' | |
7483e694 | 2081 | SLIB_UNINSTALL_EXTRA_CMD='rm -f "$(SHLIBDIR)/$(SLIBNAME:$(SLIBSUF)=.lib)"' |
4b51fb1c | 2082 | SHFLAGS='-shared -Wl,--output-def,$$(@:$(SLIBSUF)=.def) -Wl,--out-implib,$(SUBDIR)lib$(SLIBNAME:$(SLIBSUF)=.dll.a) -Wl,--enable-runtime-pseudo-reloc -Wl,--enable-auto-image-base' |
304d586d | 2083 | objformat="win32" |
bc574408 | 2084 | enable dos_paths |
1894e741 | 2085 | check_cflags -fno-common |
b1549d61 | 2086 | if ! enabled x86_64; then |
f7ad5aa2 RP |
2087 | check_cpp_condition _mingw.h "(__MINGW32_MAJOR_VERSION > 3) || (__MINGW32_MAJOR_VERSION == 3 && __MINGW32_MINOR_VERSION >= 15)" || |
2088 | die "ERROR: MinGW runtime version must be >= 3.15." | |
8beb4178 | 2089 | enabled_any avisynth vfwcap_indev && |
f7ad5aa2 | 2090 | { check_cpp_condition w32api.h "(__W32API_MAJOR_VERSION > 3) || (__W32API_MAJOR_VERSION == 3 && __W32API_MINOR_VERSION >= 13)" || |
8beb4178 | 2091 | die "ERROR: avisynth and vfwcap_indev require w32api version 3.13 or later."; } |
f7ad5aa2 | 2092 | fi |
7483e694 DB |
2093 | ;; |
2094 | cygwin*) | |
4f854758 | 2095 | target_os=cygwin |
fbd971a4 | 2096 | shlibdir_default="$bindir_default" |
7483e694 DB |
2097 | SLIBPREF="cyg" |
2098 | SLIBSUF=".dll" | |
2099 | SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)' | |
2100 | SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)' | |
2101 | SHFLAGS='-shared -Wl,--enable-auto-image-base' | |
304d586d | 2102 | objformat="win32" |
bc574408 | 2103 | enable dos_paths |
1894e741 | 2104 | check_cflags -fno-common |
7483e694 | 2105 | ;; |
4f365f37 | 2106 | *-dos|freedos|opendos) |
fdf11906 | 2107 | disable ffplay ffserver |
4f365f37 MK |
2108 | disable $INDEV_LIST $OUTDEV_LIST |
2109 | network_extralibs="-lsocket" | |
ff1c015d | 2110 | objformat="coff" |
bc574408 | 2111 | enable dos_paths |
4f365f37 | 2112 | ;; |
7483e694 | 2113 | linux) |
7483e694 DB |
2114 | enable dv1394 |
2115 | ;; | |
2116 | irix*) | |
4f854758 | 2117 | target_os=irix |
7483e694 DB |
2118 | ranlib="echo ignoring ranlib" |
2119 | ;; | |
d22e8442 | 2120 | os/2*) |
d22e8442 DY |
2121 | strip="lxlite" |
2122 | ln_s="cp -f" | |
d22e8442 | 2123 | FFLDFLAGS="-Zomf -Zbin-files -Zargs-wild -Zmap" |
71c61f62 | 2124 | SHFLAGS='$(SUBDIR)$(NAME).def -Zdll -Zomf' |
d22e8442 | 2125 | FFSERVERLDFLAGS="" |
287d3b13 | 2126 | LIBSUF="_s.a" |
d22e8442 DY |
2127 | SLIBPREF="" |
2128 | SLIBSUF=".dll" | |
2129 | SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)' | |
2130 | SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(shell echo $(NAME) | cut -c1-6)$(LIBMAJOR)$(SLIBSUF)' | |
71c61f62 MR |
2131 | SLIB_CREATE_DEF_CMD='echo LIBRARY $(SLIBNAME_WITH_MAJOR) INITINSTANCE TERMINSTANCE > $(SUBDIR)$(NAME).def; \ |
2132 | echo PROTMODE >> $(SUBDIR)$(NAME).def; \ | |
2133 | echo CODE PRELOAD MOVEABLE DISCARDABLE >> $(SUBDIR)$(NAME).def; \ | |
2134 | echo DATA PRELOAD MOVEABLE MULTIPLE NONSHARED >> $(SUBDIR)$(NAME).def; \ | |
2135 | echo EXPORTS >> $(SUBDIR)$(NAME).def; \ | |
2136 | emxexp -o $(OBJS) >> $(SUBDIR)$(NAME).def' | |
2137 | SLIB_EXTRA_CMD='emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(NAME).def; \ | |
2138 | emximp -o $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib $(SUBDIR)$(NAME).def;' | |
2139 | SLIB_INSTALL_EXTRA_CMD='install -m 644 $(SUBDIR)$(LIBPREF)$(NAME)_dll.a $(SUBDIR)$(LIBPREF)$(NAME)_dll.lib "$(LIBDIR)"' | |
d22e8442 | 2140 | SLIB_UNINSTALL_EXTRA_CMD='rm -f "$(LIBDIR)"/$(LIBPREF)$(NAME)_dll.a "$(LIBDIR)"/$(LIBPREF)$(NAME)_dll.lib' |
bc574408 | 2141 | enable dos_paths |
d22e8442 | 2142 | ;; |
83993c1c AM |
2143 | gnu/kfreebsd) |
2144 | ;; | |
34e82167 | 2145 | gnu) |
34e82167 | 2146 | ;; |
d22e8442 | 2147 | |
7483e694 | 2148 | *) |
4f924f9a | 2149 | die "Unknown OS '$target_os'." |
7483e694 DB |
2150 | ;; |
2151 | esac | |
2152 | ||
c9d19248 MR |
2153 | set_default $PATHS_LIST |
2154 | ||
c597172e | 2155 | add_extralibs $osextralibs |
de6d9b64 | 2156 | |
28d8e661 DB |
2157 | # Combine FFLDFLAGS and the LDFLAGS environment variable. |
2158 | LDFLAGS="$FFLDFLAGS $LDFLAGS" | |
e89b8b0a | 2159 | |
320d060a | 2160 | # we need to build at least one lib type |
93b3c083 | 2161 | if ! enabled_any static shared; then |
320d060a DB |
2162 | cat <<EOF |
2163 | At least one library type must be built. | |
2164 | Specify --enable-static to build the static libraries or --enable-shared to | |
2165 | build the shared libraries as well. To only build the shared libraries specify | |
2166 | --disable-static in addition to --enable-shared. | |
2167 | EOF | |
2168 | exit 1; | |
2169 | fi | |
2170 | ||
abc4e572 | 2171 | disabled static && LIBNAME="" |
2a320695 | 2172 | |
a2234ceb RP |
2173 | if enabled_any libfaad libfaadbin ; then |
2174 | if check_header faad.h; then | |
295b8c70 | 2175 | check_cc <<EOF |
a2234ceb RP |
2176 | #include <faad.h> |
2177 | #ifndef FAAD2_VERSION | |
2178 | ok faad1 | |
2179 | #endif | |
db817cf3 | 2180 | int main(void) { return 0; } |
a2234ceb RP |
2181 | EOF |
2182 | test $? = 0 && enable libfaad2 | |
2183 | else | |
ff3dac65 | 2184 | die "FAAD test failed." |
a2234ceb RP |
2185 | fi |
2186 | fi | |
2187 | ||
2188 | ||
2184c6f7 | 2189 | die_license_disabled() { |
4c27207c | 2190 | enabled $1 || { enabled $2 && die "$2 is $1 and --enable-$1 is not specified."; } |
2184c6f7 DB |
2191 | } |
2192 | ||
2193 | die_license_disabled gpl libfaad2 | |
2194 | die_license_disabled gpl libx264 | |
2195 | die_license_disabled gpl libxvid | |
2196 | die_license_disabled gpl postproc | |
2197 | die_license_disabled gpl x11grab | |
2198 | ||
2f7ae63b | 2199 | die_license_disabled nonfree libfaac |
b2e3c528 | 2200 | |
0b175caa DB |
2201 | die_license_disabled version3 libopencore_amrnb |
2202 | die_license_disabled version3 libopencore_amrwb | |
2203 | ||
9cad0e4e | 2204 | enabled version3 && { enabled gpl && enable gplv3 || enable lgplv3; } |
3fe142e2 | 2205 | |
9eeed841 | 2206 | check_deps $ARCH_EXT_LIST |
0f3cb305 | 2207 | |
40617a6d | 2208 | disabled optimizations || check_cflags -fomit-frame-pointer |
cf9d24ad | 2209 | |
e276d9e8 MR |
2210 | enable_pic() { |
2211 | enable pic | |
bce7b696 MR |
2212 | add_cppflags -DPIC |
2213 | add_cflags -fPIC | |
2214 | add_asflags -fPIC | |
e276d9e8 MR |
2215 | } |
2216 | ||
2217 | enabled pic && enable_pic | |
bce7b696 | 2218 | |
b4d96ba2 MR |
2219 | check_cc <<EOF || die "Symbol mangling check failed." |
2220 | int ff_extern; | |
2221 | EOF | |
2f05d9c1 | 2222 | sym=$($nm -P -g $TMPO | grep ff_extern) |
b4d96ba2 MR |
2223 | extern_prefix=${sym%%ff_extern*} |
2224 | ||
f65883c8 MR |
2225 | check_cc <<EOF && enable inline_asm |
2226 | void foo(void) { __asm__ volatile ("" ::); } | |
2227 | EOF | |
61d251db | 2228 | |
df5e3978 MR |
2229 | _restrict= |
2230 | for restrict_keyword in restrict __restrict__ __restrict; do | |
2231 | check_cc <<EOF && _restrict=$restrict_keyword && break | |
2232 | void foo(char * $restrict_keyword p); | |
2233 | EOF | |
2234 | done | |
2235 | ||
2236 | check_cc <<EOF && enable attribute_packed | |
2237 | struct { int x; } __attribute__((packed)) x; | |
2238 | EOF | |
2239 | ||
2240 | check_cc <<EOF || die "endian test failed" | |
2241 | unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E'; | |
2242 | EOF | |
2243 | od -A n -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian | |
2244 | ||
fa0912fe | 2245 | if enabled arm; then |
e45391bb | 2246 | |
50fa82e6 MR |
2247 | check_cflags -marm |
2248 | ||
fa0912fe MR |
2249 | check_ld <<EOF && enable vfp_args |
2250 | __asm__ (".eabi_attribute 28, 1"); | |
2251 | int main(void) { return 0; } | |
2252 | EOF | |
2253 | ||
2254 | # We have to check if pld is a nop and disable it. | |
2255 | check_asm pld '"pld [r0]"' | |
2256 | ||
2257 | enabled armv5te && check_asm armv5te '"qadd r0, r0, r0"' | |
2258 | enabled armv6 && check_asm armv6 '"sadd16 r0, r0, r0"' | |
2259 | enabled armv6t2 && check_asm armv6t2 '"movt r0, #0"' | |
2260 | enabled armvfp && check_asm armvfp '"fadds s0, s0, s0"' | |
2261 | enabled iwmmxt && check_asm iwmmxt '"wunpckelub wr6, wr4"' | |
2262 | enabled neon && check_asm neon '"vadd.i16 q0, q0, q0"' | |
e45391bb | 2263 | |
e276d9e8 MR |
2264 | enabled_all armv6t2 shared !pic && enable_pic |
2265 | ||
fa0912fe | 2266 | elif enabled mips; then |
e45391bb | 2267 | |
fa0912fe MR |
2268 | check_asm loongson '"dmult.g $1, $2, $3"' |
2269 | enabled mmi && check_asm mmi '"lq $2, 0($2)"' | |
e45391bb | 2270 | |
fa0912fe | 2271 | elif enabled ppc; then |
e45391bb | 2272 | |
fa0912fe MR |
2273 | check_asm dcbzl '"dcbzl 0, 1"' |
2274 | check_asm ppc4xx '"maclhw r10, r11, r12"' | |
64de20d1 | 2275 | check_asm xform_asm '"lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)' |
fa0912fe MR |
2276 | |
2277 | # AltiVec flags: The FSF version of GCC differs from the Apple version | |
2278 | if enabled altivec; then | |
2279 | check_cflags -maltivec -mabi=altivec && | |
2280 | { check_header altivec.h && inc_altivec_h="#include <altivec.h>" ; } || | |
2281 | check_cflags -faltivec | |
2282 | ||
2283 | # check if our compiler supports Motorola AltiVec C API | |
2284 | check_cc <<EOF || disable altivec | |
2285 | $inc_altivec_h | |
2286 | int main(void) { | |
2287 | vector signed int v1, v2, v3; | |
2288 | v1 = vec_add(v2,v3); | |
2289 | return 0; | |
2290 | } | |
2291 | EOF | |
2292 | ||
2293 | # check if our compiler supports braces for vector declarations | |
2294 | check_cc <<EOF || die "You need a compiler that supports {} in AltiVec vector declarations." | |
2295 | $inc_altivec_h | |
2296 | int main (void) { (vector int) {1}; return 0; } | |
2297 | EOF | |
2298 | fi | |
e45391bb | 2299 | |
fa0912fe | 2300 | elif enabled sparc; then |
e45391bb | 2301 | |
fa0912fe MR |
2302 | enabled vis && check_asm vis '"pdist %f0, %f0, %f0"' -mcpu=ultrasparc && |
2303 | add_cflags -mcpu=ultrasparc -mtune=ultrasparc | |
e45391bb | 2304 | |
fa0912fe | 2305 | elif enabled x86; then |
e45391bb | 2306 | |
44965991 PI |
2307 | # check whether EBP is available on x86 |
2308 | # As 'i' is stored on the stack, this program will crash | |
2309 | # if the base pointer is used to access it because the | |
2310 | # base pointer is cleared in the inline assembly code. | |
7dfef245 | 2311 | check_exec_crash <<EOF && enable ebp_available |
44965991 | 2312 | volatile int i=0; |
be449fca | 2313 | __asm__ volatile ( |
44965991 PI |
2314 | "xorl %%ebp, %%ebp" |
2315 | ::: "%ebp"); | |
2316 | return i; | |
44965991 PI |
2317 | EOF |
2318 | ||
f494213c | 2319 | # check whether EBX is available on x86 |
7cee5421 MR |
2320 | check_asm ebx_available '""::"b"(0)' && |
2321 | check_asm ebx_available '"":::"%ebx"' | |
8e380710 | 2322 | |
d3a4b4e0 DB |
2323 | # check whether more than 10 operands are supported |
2324 | check_cc <<EOF && enable ten_operands | |
2325 | int main(void) { | |
2326 | int x=0; | |
2327 | __asm__ volatile( | |
2328 | "" | |
2329 | :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x) | |
2330 | ); | |
2331 | return 0; | |
2332 | } | |
2333 | EOF | |
2334 | ||
d7f0920b | 2335 | # check whether binutils is new enough to compile SSSE3/MMX2 |
940f335a | 2336 | enabled ssse3 && check_asm ssse3 '"pabsw %xmm0, %xmm0"' |
5fd89ca0 | 2337 | enabled mmx2 && check_asm mmx2 '"pmaxub %mm0, %mm1"' |
6bd859d6 MR |
2338 | |
2339 | check_asm bswap '"bswap %%eax" ::: "%eax"' | |
304d586d | 2340 | |
d52481b9 | 2341 | YASMFLAGS="-f $objformat -DARCH_$(toupper $subarch)" |
304d586d | 2342 | enabled x86_64 && append YASMFLAGS "-m amd64" |
a34ebe60 | 2343 | enabled pic && append YASMFLAGS "-DPIC" |
5f36d94d | 2344 | test -n "$extern_prefix" && append YASMFLAGS "-DPREFIX" |
304d586d LM |
2345 | case "$objformat" in |
2346 | elf) enabled debug && append YASMFLAGS "-g dwarf2" ;; | |
304d586d | 2347 | esac |
7595a5e4 | 2348 | disabled yasm || { check_yasm "pabsw xmm0, xmm0" && enable yasm; } |
e45391bb | 2349 | |
669b5583 MR |
2350 | case "$cpu" in |
2351 | athlon*|opteron*|k8*|pentium|pentium-mmx|prescott|nocona|atom|geode) | |
2352 | disable fast_clz | |
2353 | ;; | |
2354 | esac | |
2355 | ||
44965991 PI |
2356 | fi |
2357 | ||
a98bb16d RP |
2358 | if check_func dlopen; then |
2359 | ldl= | |
2360 | elif check_func dlopen -ldl; then | |
2361 | ldl=-ldl | |
8bf5d58f MN |
2362 | fi |
2363 | ||
75ecf149 DB |
2364 | # Solaris has nanosleep in -lrt, OpenSolaris no longer needs that |
2365 | check_func nanosleep || { check_func nanosleep -lrt && add_extralibs -lrt; } | |
2366 | ||
7483e694 | 2367 | check_func fork |
84882df6 | 2368 | check_func getaddrinfo $network_extralibs |
7483e694 DB |
2369 | check_func gethrtime |
2370 | check_func getrusage | |
094c09bb | 2371 | check_func inet_aton $network_extralibs |
abfc8d05 | 2372 | check_func isatty |
7483e694 DB |
2373 | check_func memalign |
2374 | check_func mkstemp | |
1f91cdce | 2375 | check_func posix_memalign |
b507ebd1 | 2376 | check_func_headers io.h setmode |
e4673692 | 2377 | check_func_headers lzo/lzo1x.h lzo1x_999_compress |
2446d3d6 | 2378 | check_func_headers windows.h GetProcessTimes |
7c5bfe7a | 2379 | check_func_headers windows.h VirtualAlloc |
6ffa87d3 | 2380 | |
e16e49ac | 2381 | check_header conio.h |
a98bb16d RP |
2382 | check_header dlfcn.h |
2383 | check_header malloc.h | |
bf6ce82d | 2384 | check_header poll.h |
b58412f1 | 2385 | check_header sys/mman.h |
b091aa44 | 2386 | check_header sys/resource.h |
bf6ce82d | 2387 | check_header sys/select.h |
a98bb16d | 2388 | check_header termios.h |
272081b0 CEH |
2389 | check_header vdpau/vdpau.h |
2390 | check_header vdpau/vdpau_x11.h | |
68178ca9 | 2391 | check_header X11/extensions/XvMClib.h |
a98bb16d | 2392 | |
89e053f8 MR |
2393 | if ! enabled_any memalign memalign_hack posix_memalign malloc_aligned && |
2394 | enabled_any $need_memalign ; then | |
1f91cdce | 2395 | die "Error, no aligned memory allocator but SSE enabled, disable it or use --enable-memalign-hack." |
a98bb16d | 2396 | fi |
e16e49ac | 2397 | |
a4fa192c | 2398 | disabled zlib || check_lib zlib.h zlibVersion -lz || disable zlib |
632948bd | 2399 | disabled bzlib || check_lib2 bzlib.h BZ2_bzlibVersion -lbz2 || disable bzlib |
57bd82d4 MR |
2400 | |
2401 | # check for some common methods of building with pthread support | |
2402 | # do this before the optional library checks as some of them require pthreads | |
2403 | if enabled pthreads; then | |
9e7fd101 MR |
2404 | if check_func pthread_create; then |
2405 | : | |
2406 | elif check_func pthread_create -pthread; then | |
2407 | add_cflags -pthread | |
afc9aee2 | 2408 | add_extralibs -pthread |
9e7fd101 MR |
2409 | elif check_func pthread_create -pthreads; then |
2410 | add_cflags -pthreads | |
afc9aee2 | 2411 | add_extralibs -pthreads |
8d94f606 GT |
2412 | elif check_func pthread_create -lpthreadGC2; then |
2413 | add_extralibs -lpthreadGC2 | |
9e7fd101 MR |
2414 | elif ! check_lib pthread.h pthread_create -lpthread; then |
2415 | die "ERROR: can't find pthreads library" | |
2416 | fi | |
57bd82d4 MR |
2417 | fi |
2418 | ||
8eee7025 | 2419 | for thread in $THREADS_LIST; do |
e5f94c2b | 2420 | if enabled $thread; then |
3ae3b721 RP |
2421 | test -n "$thread_type" && |
2422 | die "ERROR: Only one thread type must be selected." || | |
e5f94c2b | 2423 | thread_type="$thread" |
e5f94c2b RP |
2424 | fi |
2425 | done | |
2426 | ||
fdf88598 | 2427 | check_lib math.h sin -lm |
ff418735 | 2428 | check_lib va/va.h vaInitialize -lva |
fdf88598 | 2429 | |
6b7c7703 VS |
2430 | check_func exp2 |
2431 | check_func exp2f | |
ad420e25 MR |
2432 | check_func llrint |
2433 | check_func log2 | |
6b7c7703 | 2434 | check_func log2f |
ad420e25 MR |
2435 | check_func lrint |
2436 | check_func lrintf | |
2437 | check_func round | |
2438 | check_func roundf | |
2439 | check_func truncf | |
f32adb22 | 2440 | |
57bd82d4 | 2441 | # these are off by default, so fail if requested and not available |
79fda097 | 2442 | enabled avisynth && require2 vfw32 "windows.h vfw.h" AVIFileInit -lvfw32 |
e3cc7d6f | 2443 | enabled libdirac && add_cflags $(pkg-config --cflags dirac) && |
2513b2b4 DB |
2444 | require libdirac libdirac_decoder/dirac_parser.h dirac_decoder_init $(pkg-config --libs dirac) && |
2445 | require libdirac libdirac_encoder/dirac_encoder.h dirac_encoder_init $(pkg-config --libs dirac) | |
79fda097 DB |
2446 | enabled libfaac && require2 libfaac "stdint.h faac.h" faacEncGetVersion -lfaac |
2447 | enabled libfaad && require2 libfaad faad.h faacDecOpen -lfaad | |
7483e694 | 2448 | enabled libgsm && require libgsm gsm.h gsm_create -lgsm |
2bfecf73 | 2449 | enabled libmp3lame && require libmp3lame lame/lame.h lame_init -lmp3lame -lm |
7483e694 | 2450 | enabled libnut && require libnut libnut.h nut_demuxer_init -lnut |
0b175caa DB |
2451 | enabled libopencore_amrnb && require libopencore_amrnb opencore-amrnb/interf_dec.h Decoder_Interface_init -lopencore-amrnb -lm |
2452 | enabled libopencore_amrwb && require libopencore_amrwb opencore-amrwb/dec_if.h D_IF_init -lopencore-amrwb -lm | |
3d6fac8c | 2453 | enabled libopenjpeg && require libopenjpeg openjpeg.h opj_version -lopenjpeg |
36718e51 DB |
2454 | enabled libschroedinger && add_cflags $(pkg-config --cflags schroedinger-1.0) && |
2455 | require libschroedinger schroedinger/schro.h schro_init $(pkg-config --libs schroedinger-1.0) | |
ae14f311 | 2456 | enabled libspeex && require libspeex speex/speex.h speex_decoder_init -lspeex |
c261a5d9 | 2457 | enabled libtheora && require libtheora theora/theoraenc.h th_info_init -ltheoraenc -ltheoradec -logg |
7483e694 | 2458 | enabled libvorbis && require libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbisenc -lvorbis -logg |
e69bb386 | 2459 | enabled libx264 && require libx264 x264.h x264_encoder_encode -lx264 -lm && |
096c87f6 JGG |
2460 | { check_cpp_condition x264.h "X264_BUILD >= 79" || |
2461 | die "ERROR: libx264 version must be >= 0.79."; } | |
2bfecf73 | 2462 | enabled libxvid && require libxvid xvid.h xvid_global -lxvidcore |
7483e694 | 2463 | enabled mlib && require mediaLib mlib_types.h mlib_VectorSub_S16_U8_Mod -lmlib |
8ac17293 | 2464 | |
0b4a1821 AS |
2465 | # libdc1394 check |
2466 | if enabled libdc1394; then | |
2467 | { check_lib dc1394/dc1394.h dc1394_new -ldc1394 -lraw1394 && | |
2468 | enable libdc1394_2; } || | |
2469 | { check_lib libdc1394/dc1394_control.h dc1394_create_handle -ldc1394_control -lraw1394 && | |
2470 | enable libdc1394_1; } || | |
2471 | die "ERROR: No version of libdc1394 found " | |
2472 | fi | |
2473 | ||
6a1a892f | 2474 | SDL_CONFIG="${cross_prefix}sdl-config" |
2270b4b2 | 2475 | if "${SDL_CONFIG}" --version > /dev/null 2>&1; then |
5e622c40 | 2476 | sdl_cflags=$("${SDL_CONFIG}" --cflags) |
b4f93564 | 2477 | sdl_libs=$("${SDL_CONFIG}" --libs) |
aa692d54 MR |
2478 | check_func_headers SDL.h SDL_Init $sdl_cflags $sdl_libs && |
2479 | check_cpp_condition SDL.h "(SDL_MAJOR_VERSION<<16 | SDL_MINOR_VERSION<<8 | SDL_PATCHLEVEL) >= 0x010201" $sdl_cflags && | |
2480 | enable sdl && | |
2481 | check_struct SDL.h SDL_VideoInfo current_w $sdl_cflags && enable sdl_video_size | |
c3f6b472 | 2482 | fi |
57bd82d4 | 2483 | |
2270b4b2 | 2484 | texi2html -version > /dev/null 2>&1 && enable texi2html || disable texi2html |
146ea952 | 2485 | |
73b46a95 | 2486 | if enabled network; then |
96000432 | 2487 | check_type "sys/types.h sys/socket.h" socklen_t |
c0018613 | 2488 | check_type netdb.h "struct addrinfo" |
33a4dbdd | 2489 | check_type sys/socket.h "struct sockaddr_storage" |
73b46a95 RP |
2490 | # Prefer arpa/inet.h over winsock2 |
2491 | if check_header arpa/inet.h ; then | |
2492 | check_func closesocket | |
2493 | elif check_header winsock2.h ; then | |
f4c13872 MS |
2494 | check_func_headers winsock2.h closesocket -lws2 && \ |
2495 | network_extralibs="-lws2" || \ | |
2496 | { check_func_headers winsock2.h closesocket -lws2_32 && \ | |
2497 | network_extralibs="-lws2_32"; } | |
72be9e73 | 2498 | check_type ws2tcpip.h socklen_t |
c0018613 | 2499 | check_type ws2tcpip.h "struct addrinfo" |
33a4dbdd | 2500 | check_type ws2tcpip.h "struct sockaddr_storage" |
28c9f069 MK |
2501 | else |
2502 | disable network | |
73b46a95 RP |
2503 | fi |
2504 | fi | |
2505 | ||
b6f3d925 | 2506 | enabled_all network ipv6 && check_ld <<EOF || disable ipv6 |
7a91333f HZ |
2507 | #include <sys/types.h> |
2508 | #include <sys/socket.h> | |
2509 | #include <netinet/in.h> | |
2510 | #include <netdb.h> | |
db817cf3 | 2511 | int main(void) { |
7483e694 DB |
2512 | struct sockaddr_storage saddr; |
2513 | struct ipv6_mreq mreq6; | |
2514 | getaddrinfo(0,0,0,0); | |
2515 | getnameinfo(0,0,0,0,0,0,0); | |
2516 | IN6_IS_ADDR_MULTICAST((const struct in6_addr *)0); | |
7a91333f HZ |
2517 | } |
2518 | EOF | |
2519 | ||
06e31011 RP |
2520 | check_header linux/videodev.h |
2521 | check_header linux/videodev2.h | |
1b6e8b73 | 2522 | check_header sys/videoio.h |
47f38850 | 2523 | |
2446d3d6 | 2524 | check_func_headers "windows.h vfw.h" capCreateCaptureWindow -lvfw32 |
c2345207 | 2525 | |
f8aa696f | 2526 | # check for ioctl_meteor.h, ioctl_bt848.h and alternatives |
1c915f83 RP |
2527 | { check_header dev/bktr/ioctl_meteor.h && |
2528 | check_header dev/bktr/ioctl_bt848.h; } || | |
2529 | { check_header machine/ioctl_meteor.h && | |
2530 | check_header machine/ioctl_bt848.h; } || | |
2531 | { check_header dev/video/meteor/ioctl_meteor.h && | |
2532 | check_header dev/video/bktr/ioctl_bt848.h; } || | |
2533 | check_header dev/ic/bt8xx.h | |
f8aa696f | 2534 | |
c7682de0 RP |
2535 | check_header sys/soundcard.h |
2536 | check_header soundcard.h | |
deb29777 | 2537 | |
b6f3d925 | 2538 | enabled_any alsa_indev alsa_outdev && check_lib2 alsa/asoundlib.h snd_pcm_htimestamp -lasound |
35fd8122 | 2539 | |
0e57fe17 | 2540 | enabled jack_indev && check_lib2 jack/jack.h jack_client_open -ljack |
80ff8a16 | 2541 | |
56a059ac | 2542 | enabled x11grab && |
f58f4ce1 GP |
2543 | check_header X11/Xlib.h && |
2544 | check_header X11/extensions/XShm.h && | |
0a045661 | 2545 | check_header X11/extensions/Xfixes.h && |
f58f4ce1 | 2546 | check_func XOpenDisplay -lX11 && |
781c1aa6 R |
2547 | check_func XShmCreateImage -lX11 -lXext && |
2548 | check_func XFixesGetCursorImage -lX11 -lXext -lXfixes | |
f58f4ce1 | 2549 | |
598ef02b | 2550 | if ! disabled vdpau && enabled vdpau_vdpau_h; then |
deda2a4a AC |
2551 | check_cpp_condition \ |
2552 | vdpau/vdpau.h "defined VDP_DECODER_PROFILE_MPEG4_PART2_ASP" || | |
d1ebd4a9 AC |
2553 | { echolog "Please upgrade to libvdpau >= 0.2 if you would like vdpau support." && |
2554 | disable vdpau; } | |
abf649c7 | 2555 | fi |
deda2a4a | 2556 | |
95e561ec | 2557 | enabled debug && add_cflags -g"$debuglevel" && add_asflags -g"$debuglevel" |
57bd82d4 MR |
2558 | |
2559 | # add some useful compiler flags if supported | |
2560 | check_cflags -Wdeclaration-after-statement | |
dcd479c0 MR |
2561 | check_cflags -Wall |
2562 | check_cflags -Wno-switch | |
c07bd6a9 MN |
2563 | check_cflags -Wdisabled-optimization |
2564 | check_cflags -Wpointer-arith | |
2565 | check_cflags -Wredundant-decls | |
cc1fb623 | 2566 | check_cflags -Wno-pointer-sign |
f4929996 | 2567 | check_cflags -Wcast-qual |
9aceb3cf | 2568 | check_cflags -Wwrite-strings |
652a5bf6 | 2569 | check_cflags -Wtype-limits |
764551c6 | 2570 | check_cflags -Wundef |
5af4e0cc | 2571 | enabled extra_warnings && check_cflags -Winline |
cf9d24ad | 2572 | |
57bd82d4 | 2573 | # add some linker flags |
5c0e9479 | 2574 | check_ldflags -Wl,--warn-common |
8351d2ba DB |
2575 | check_ldflags -Wl,--as-needed |
2576 | check_ldflags '-Wl,-rpath-link,\$(BUILD_ROOT)/libpostproc -Wl,-rpath-link,\$(BUILD_ROOT)/libswscale -Wl,-rpath-link,\$(BUILD_ROOT)/libavfilter -Wl,-rpath-link,\$(BUILD_ROOT)/libavdevice -Wl,-rpath-link,\$(BUILD_ROOT)/libavformat -Wl,-rpath-link,\$(BUILD_ROOT)/libavcodec -Wl,-rpath-link,\$(BUILD_ROOT)/libavutil' | |
c2fd6530 | 2577 | check_ldflags -Wl,-Bsymbolic |
94a3401e | 2578 | |
a482e61b MR |
2579 | echo "X{};" > $TMPV |
2580 | test_ldflags -Wl,--version-script,$TMPV && | |
2581 | append SHFLAGS '-Wl,--version-script,\$(SUBDIR)lib\$(NAME).ver' | |
2582 | ||
bd2216e4 MR |
2583 | if enabled small; then |
2584 | check_cflags -Os # not all compilers support -Os | |
8400d6b8 DB |
2585 | optimizations="small" |
2586 | elif enabled optimizations; then | |
629687f6 | 2587 | if enabled xlc; then |
0f010b2f DB |
2588 | add_cflags -O5 |
2589 | add_ldflags -O5 | |
03279bbe MK |
2590 | elif enabled suncc; then |
2591 | add_cflags -O5 | |
df442a8d MR |
2592 | elif enabled ccc; then |
2593 | add_cflags -fast | |
cf9d24ad | 2594 | else |
0f010b2f | 2595 | add_cflags -O3 |
cf9d24ad | 2596 | fi |
cddf3f45 | 2597 | fi |
11fdbc44 | 2598 | check_cflags -fno-math-errno |
b2eb2ff0 | 2599 | check_cflags -fno-signed-zeros |
cddf3f45 | 2600 | |
629687f6 | 2601 | if enabled icc; then |
b1598b58 MR |
2602 | # Just warnings, no remarks |
2603 | check_cflags -w1 | |
2604 | # -wd: Disable following warnings | |
2605 | # 144, 167, 556: -Wno-pointer-sign | |
2606 | # 10006: ignoring unknown option -fno-signed-zeros | |
2607 | # 10156: ignoring option '-W'; no argument required | |
2608 | check_cflags -wd144,167,556,10006,10156 | |
2609 | # 11030: Warning unknown option --as-needed | |
2610 | # 10156: ignoring option '-export'; no argument required | |
2611 | check_ldflags -wd10156,11030 | |
2612 | # Allow to compile with optimizations | |
2613 | check_ldflags -march=$cpu | |
be2cf98a CEH |
2614 | # icc 11.0 and 11.1 work with ebp_available, but don't pass the test |
2615 | enable ebp_available | |
df442a8d MR |
2616 | elif enabled ccc; then |
2617 | # disable some annoying warnings | |
2618 | add_cflags -msg_disable cvtu32to64 | |
2619 | add_cflags -msg_disable embedcomment | |
2620 | add_cflags -msg_disable needconstext | |
2621 | add_cflags -msg_disable nomainieee | |
2622 | add_cflags -msg_disable ptrmismatch1 | |
2623 | add_cflags -msg_disable unreachcode | |
973859f5 MR |
2624 | elif enabled gcc; then |
2625 | check_cflags -fno-tree-vectorize | |
06da6943 DC |
2626 | elif enabled clang; then |
2627 | check_cflags -Qunused-arguments | |
504a64b9 CEH |
2628 | fi |
2629 | ||
90be59ef | 2630 | if enabled gprof; then |
0f010b2f DB |
2631 | add_cflags -p |
2632 | add_ldflags -p | |
1db54e20 DB |
2633 | fi |
2634 | ||
7f3c02fc | 2635 | # Find out if the .align argument is a power of two or not. |
9377b6ce | 2636 | check_asm asmalign_pot '".align 3"' |
4454dc1b | 2637 | |
7483e694 DB |
2638 | enabled_any $DECODER_LIST && enable decoders |
2639 | enabled_any $ENCODER_LIST && enable encoders | |
5666fd73 | 2640 | enabled_any $HWACCEL_LIST && enable hwaccels |
7483e694 DB |
2641 | enabled_any $BSF_LIST && enable bsfs |
2642 | enabled_any $DEMUXER_LIST && enable demuxers | |
2643 | enabled_any $MUXER_LIST && enable muxers | |
f7679c54 | 2644 | enabled_any $FILTER_LIST && enable filters |
63d72fda DB |
2645 | enabled_any $INDEV_LIST && enable indevs |
2646 | enabled_any $OUTDEV_LIST && enable outdevs | |
7483e694 DB |
2647 | enabled_any $PROTOCOL_LIST && enable protocols |
2648 | ||
2649 | enabled_any $THREADS_LIST && enable threads | |
2650 | ||
2651 | check_deps $CONFIG_LIST \ | |
b6bb00b0 | 2652 | $CONFIG_EXTRA \ |
7483e694 DB |
2653 | $HAVE_LIST \ |
2654 | $DECODER_LIST \ | |
2655 | $ENCODER_LIST \ | |
5666fd73 | 2656 | $HWACCEL_LIST \ |
7483e694 DB |
2657 | $PARSER_LIST \ |
2658 | $BSF_LIST \ | |
2659 | $DEMUXER_LIST \ | |
2660 | $MUXER_LIST \ | |
f7679c54 | 2661 | $FILTER_LIST \ |
7483e694 DB |
2662 | $INDEV_LIST \ |
2663 | $OUTDEV_LIST \ | |
2664 | $PROTOCOL_LIST \ | |
f70f03f6 | 2665 | |
3e89171a | 2666 | echo "install prefix $prefix" |
f36958f8 DB |
2667 | echo "source path $source_path" |
2668 | echo "C compiler $cc" | |
bfd5afd8 | 2669 | echo ".align is power-of-two $asmalign_pot" |
f36958f8 | 2670 | echo "ARCH $arch ($cpu)" |
ce8871c2 MR |
2671 | if test "$build_suffix" != ""; then |
2672 | echo "build suffix $build_suffix" | |
eb94aca9 | 2673 | fi |
ac63af34 DB |
2674 | if test "$extra_version" != ""; then |
2675 | echo "version string suffix $extra_version" | |
2676 | fi | |
0db2ce77 | 2677 | echo "big-endian ${bigendian-no}" |
e90f5b5a | 2678 | echo "runtime cpu detection ${runtime_cpudetect-no}" |
5b6c2cbd | 2679 | if enabled x86; then |
af44e8e4 | 2680 | echo "yasm ${yasm-no}" |
0db2ce77 | 2681 | echo "MMX enabled ${mmx-no}" |
30e98e62 | 2682 | echo "MMX2 enabled ${mmx2-no}" |
3bf96eec | 2683 | echo "3DNow! enabled ${amd3dnow-no}" |
a1ef9f08 | 2684 | echo "3DNow! extended enabled ${amd3dnowext-no}" |
1bb04d5a | 2685 | echo "SSE enabled ${sse-no}" |
30e98e62 | 2686 | echo "SSSE3 enabled ${ssse3-no}" |
0db2ce77 MR |
2687 | echo "CMOV enabled ${cmov-no}" |
2688 | echo "CMOV is fast ${fast_cmov-no}" | |
971cc990 MN |
2689 | echo "EBX available ${ebx_available-no}" |
2690 | echo "EBP available ${ebp_available-no}" | |
d3a4b4e0 | 2691 | echo "10 operands supported ${ten_operands-no}" |
e41e8342 | 2692 | fi |
5b6c2cbd | 2693 | if enabled arm; then |
0db2ce77 MR |
2694 | echo "ARMv5TE enabled ${armv5te-no}" |
2695 | echo "ARMv6 enabled ${armv6-no}" | |
ab5cb084 | 2696 | echo "ARMv6T2 enabled ${armv6t2-no}" |
f55b299a | 2697 | echo "ARM VFP enabled ${armvfp-no}" |
0db2ce77 | 2698 | echo "IWMMXT enabled ${iwmmxt-no}" |
6b18d278 | 2699 | echo "NEON enabled ${neon-no}" |
eba9ae3c | 2700 | fi |
5b6c2cbd | 2701 | if enabled mips; then |
0db2ce77 | 2702 | echo "MMI enabled ${mmi-no}" |
e41e8342 | 2703 | fi |
5b6c2cbd | 2704 | if enabled ppc; then |
0db2ce77 | 2705 | echo "AltiVec enabled ${altivec-no}" |
30e98e62 | 2706 | echo "PPC 4xx optimizations ${ppc4xx-no}" |
0db2ce77 | 2707 | echo "dcbzl available ${dcbzl-no}" |
30e98e62 DB |
2708 | echo "performance report ${powerpc_perf-no}" |
2709 | fi | |
2710 | if enabled sparc; then | |
2711 | echo "VIS enabled ${vis-no}" | |
e41e8342 | 2712 | fi |
0db2ce77 MR |
2713 | echo "gprof enabled ${gprof-no}" |
2714 | echo "debug symbols ${debug-no}" | |
87a0fb62 | 2715 | echo "strip symbols ${stripping-no}" |
8400d6b8 | 2716 | echo "optimizations ${optimizations-no}" |
0db2ce77 MR |
2717 | echo "static ${static-no}" |
2718 | echo "shared ${shared-no}" | |
4a24ab64 | 2719 | echo "postprocessing support ${postproc-no}" |
f7679c54 | 2720 | echo "new filter support ${avfilter-no}" |
81124ba0 | 2721 | echo "filters using lavformat ${avfilter_lavf-no}" |
0db2ce77 | 2722 | echo "network support ${network-no}" |
90be59ef | 2723 | if enabled network; then |
0db2ce77 | 2724 | echo "IPv6 support ${ipv6-no}" |
bfd5afd8 | 2725 | fi |
0db2ce77 MR |
2726 | echo "threading support ${thread_type-no}" |
2727 | echo "SDL support ${sdl-no}" | |
0db2ce77 MR |
2728 | echo "Sun medialib support ${mlib-no}" |
2729 | echo "AVISynth enabled ${avisynth-no}" | |
f7b8bffe | 2730 | echo "libdc1394 support ${libdc1394-no}" |
690bfceb | 2731 | echo "libdirac enabled ${libdirac-no}" |
0db2ce77 MR |
2732 | echo "libfaac enabled ${libfaac-no}" |
2733 | echo "libfaad enabled ${libfaad-no}" | |
7e0871a7 | 2734 | echo "libfaad dlopened ${libfaadbin-no}" |
0db2ce77 MR |
2735 | echo "libgsm enabled ${libgsm-no}" |
2736 | echo "libmp3lame enabled ${libmp3lame-no}" | |
2737 | echo "libnut enabled ${libnut-no}" | |
0b175caa DB |
2738 | echo "libopencore-amrnb support ${libopencore_amrnb-no}" |
2739 | echo "libopencore-amrwb support ${libopencore_amrwb-no}" | |
9a77d59a | 2740 | echo "libopenjpeg enabled ${libopenjpeg-no}" |
f7cd9eed | 2741 | echo "libschroedinger enabled ${libschroedinger-no}" |
ae14f311 | 2742 | echo "libspeex enabled ${libspeex-no}" |
0db2ce77 MR |
2743 | echo "libtheora enabled ${libtheora-no}" |
2744 | echo "libvorbis enabled ${libvorbis-no}" | |
d6bd62db DB |
2745 | echo "libx264 enabled ${libx264-no}" |
2746 | echo "libxvid enabled ${libxvid-no}" | |
0db2ce77 | 2747 | echo "zlib enabled ${zlib-no}" |
f402916e | 2748 | echo "bzlib enabled ${bzlib-no}" |
2c62e737 | 2749 | echo |
de6d9b64 | 2750 | |
5666fd73 | 2751 | for type in decoder encoder hwaccel parser demuxer muxer protocol filter bsf indev outdev; do |
8138b9db | 2752 | echo "Enabled ${type}s:" |
f65c9da1 | 2753 | eval list=\$$(toupper $type)_LIST |
8138b9db | 2754 | for part in $list; do |
f65c9da1 MR |
2755 | enabled $part && echo ${part%_*} |
2756 | done | sort | pr -3 -t | |
2757 | echo | |
8138b9db RP |
2758 | done |
2759 | ||
ba7a7039 | 2760 | license="LGPL version 2.1 or later" |
ba321adb | 2761 | if enabled nonfree; then |
ba7a7039 | 2762 | license="nonfree and unredistributable" |
9cad0e4e DB |
2763 | elif enabled gplv3; then |
2764 | license="GPL version 3 or later" | |
2765 | elif enabled lgplv3; then | |
2766 | license="LGPL version 3 or later" | |
ba321adb | 2767 | elif enabled gpl; then |
ba7a7039 | 2768 | license="GPL version 2 or later" |
ba321adb JK |
2769 | fi |
2770 | ||
2771 | echo "License: $license" | |
ca5323af | 2772 | |
cf1392e9 DB |
2773 | echo "Creating config.mak and config.h..." |
2774 | ||
ad212cc6 MR |
2775 | enabled stripping || strip="echo skipping strip" |
2776 | ||
173c983b MR |
2777 | cat > config.mak <<EOF |
2778 | # Automatically generated by configure - do not modify! | |
2779 | ifndef FFMPEG_CONFIG_MAK | |
2780 | FFMPEG_CONFIG_MAK=1 | |
2781 | FFMPEG_CONFIGURATION=$FFMPEG_CONFIGURATION | |
2782 | prefix=$prefix | |
2783 | LIBDIR=\$(DESTDIR)$libdir | |
2784 | SHLIBDIR=\$(DESTDIR)$shlibdir | |
2785 | INCDIR=\$(DESTDIR)$incdir | |
2786 | BINDIR=\$(DESTDIR)$bindir | |
2787 | DATADIR=\$(DESTDIR)$datadir | |
2788 | MANDIR=\$(DESTDIR)$mandir | |
2789 | SRC_PATH="$source_path" | |
2790 | SRC_PATH_BARE=$source_path | |
2791 | BUILD_ROOT="$PWD" | |
2792 | ARCH=$arch | |
2793 | CC=$cc | |
2794 | AS=$as | |
2795 | LD=$ld | |
2796 | DEPCC=$dep_cc | |
2797 | YASM=$yasmexe | |
2798 | AR=$ar | |
2799 | RANLIB=$ranlib | |
2800 | LN_S=$ln_s | |
2801 | STRIP=$strip | |
2802 | CPPFLAGS=$CPPFLAGS | |
2803 | CFLAGS=$CFLAGS | |
2804 | ASFLAGS=$ASFLAGS | |
2805 | CC_O=$CC_O | |
2806 | LDFLAGS=$LDFLAGS | |
2807 | FFSERVERLDFLAGS=$FFSERVERLDFLAGS | |
2808 | SHFLAGS=$SHFLAGS | |
2809 | YASMFLAGS=$YASMFLAGS | |
2810 | BUILDSUF=$build_suffix | |
2811 | FULLNAME=$FULLNAME | |
2812 | LIBPREF=$LIBPREF | |
2813 | LIBSUF=$LIBSUF | |
2814 | LIBNAME=$LIBNAME | |
2815 | SLIBPREF=$SLIBPREF | |
2816 | SLIBSUF=$SLIBSUF | |
2817 | EXESUF=$EXESUF | |
2818 | EXTRA_VERSION=$extra_version | |
2819 | DEPFLAGS=$DEPFLAGS | |
2820 | CCDEP=$CCDEP | |
2821 | ASDEP=$ASDEP | |
2822 | CC_DEPFLAGS=$CC_DEPFLAGS | |
2823 | AS_DEPFLAGS=$AS_DEPFLAGS | |
2824 | HOSTCC=$host_cc | |
2825 | HOSTCFLAGS=$host_cflags | |
2826 | HOSTEXESUF=$HOSTEXESUF | |
2827 | HOSTLDFLAGS=$host_ldflags | |
2828 | HOSTLIBS=$host_libs | |
2829 | TARGET_EXEC=$target_exec | |
2830 | TARGET_PATH=$target_path | |
2831 | SDL_LIBS=$sdl_libs | |
2832 | SDL_CFLAGS=$sdl_cflags | |
2833 | LIB_INSTALL_EXTRA_CMD=$LIB_INSTALL_EXTRA_CMD | |
2834 | EXTRALIBS=$extralibs | |
2835 | EOF | |
5a872801 | 2836 | |
719c8e00 MR |
2837 | get_version(){ |
2838 | name=$1 | |
2839 | file=$source_path/$2 | |
147e7692 MR |
2840 | eval $(grep "#define ${name}_VERSION_M" "$file" | awk '{ print $2"="$3 }') |
2841 | eval ${name}_VERSION=\$${name}_VERSION_MAJOR.\$${name}_VERSION_MINOR.\$${name}_VERSION_MICRO | |
0e32c8c6 MR |
2842 | lcname=$(tolower $name) |
2843 | eval echo "${lcname}_VERSION=\$${name}_VERSION" >> config.mak | |
2844 | eval echo "${lcname}_VERSION_MAJOR=\$${name}_VERSION_MAJOR" >> config.mak | |
719c8e00 MR |
2845 | } |
2846 | ||
147e7692 MR |
2847 | get_version LIBSWSCALE libswscale/swscale.h |
2848 | get_version LIBPOSTPROC libpostproc/postprocess.h | |
2849 | get_version LIBAVCODEC libavcodec/avcodec.h | |
2850 | get_version LIBAVDEVICE libavdevice/avdevice.h | |
2851 | get_version LIBAVFORMAT libavformat/avformat.h | |
2852 | get_version LIBAVUTIL libavutil/avutil.h | |
a6601d69 | 2853 | get_version LIBAVFILTER libavfilter/avfilter.h |
5a872801 | 2854 | |
173c983b MR |
2855 | enabled shared && cat >> config.mak <<EOF |
2856 | LIBTARGET=${LIBTARGET} | |
2857 | SLIBNAME=${SLIBNAME} | |
2858 | SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION} | |
2859 | SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR} | |
2860 | SLIB_CREATE_DEF_CMD=${SLIB_CREATE_DEF_CMD} | |
2861 | SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD} | |
2862 | SLIB_INSTALL_EXTRA_CMD=${SLIB_INSTALL_EXTRA_CMD} | |
2863 | SLIB_UNINSTALL_EXTRA_CMD=${SLIB_UNINSTALL_EXTRA_CMD} | |
2864 | EOF | |
523ef551 | 2865 | |
173c983b MR |
2866 | enabled asmalign_pot || align_shift="1 <<" |
2867 | ||
2868 | cat > $TMPH <<EOF | |
2869 | /* Automatically generated by configure - do not modify! */ | |
2870 | #ifndef FFMPEG_CONFIG_H | |
2871 | #define FFMPEG_CONFIG_H | |
2872 | #define FFMPEG_CONFIGURATION "$(c_escape $FFMPEG_CONFIGURATION)" | |
c1736936 | 2873 | #define FFMPEG_LICENSE "$(c_escape $license)" |
173c983b MR |
2874 | #define FFMPEG_DATADIR "$(eval c_escape $datadir)" |
2875 | #define CC_TYPE "$cc_type" | |
2876 | #define CC_VERSION $cc_version | |
2877 | #define restrict $_restrict | |
2878 | #define ASMALIGN(ZEROBITS) ".align $align_shift " #ZEROBITS "\\n\\t" | |
2879 | #define EXTERN_PREFIX "${extern_prefix}" | |
2880 | #define EXTERN_ASM ${extern_prefix} | |
2881 | EOF | |
523ef551 DB |
2882 | |
2883 | if enabled small || disabled optimizations; then | |
2884 | echo "#define av_always_inline" >> $TMPH | |
2885 | fi | |
2886 | ||
3d907e22 MR |
2887 | print_config ARCH_ $TMPH config.mak $ARCH_LIST |
2888 | print_config HAVE_ $TMPH config.mak $HAVE_LIST | |
7483e694 | 2889 | print_config CONFIG_ $TMPH config.mak $CONFIG_LIST \ |
b6bb00b0 | 2890 | $CONFIG_EXTRA \ |
7483e694 DB |
2891 | $DECODER_LIST \ |
2892 | $ENCODER_LIST \ | |
5666fd73 | 2893 | $HWACCEL_LIST \ |
7483e694 DB |
2894 | $PARSER_LIST \ |
2895 | $BSF_LIST \ | |
2896 | $DEMUXER_LIST \ | |
2897 | $MUXER_LIST \ | |
f7679c54 | 2898 | $FILTER_LIST \ |
7483e694 DB |
2899 | $PROTOCOL_LIST \ |
2900 | $INDEV_LIST \ | |
2901 | $OUTDEV_LIST \ | |
8ac17293 | 2902 | |
9c05103f | 2903 | echo "#endif /* FFMPEG_CONFIG_H */" >> $TMPH |
8c6d2da5 | 2904 | echo "endif # FFMPEG_CONFIG_MAK" >> config.mak |
9c05103f | 2905 | |
b7860763 | 2906 | # Do not overwrite an unchanged config.h to avoid superfluous rebuilds. |
3ae3b721 RP |
2907 | cmp -s $TMPH config.h && |
2908 | echo "config.h is unchanged" || | |
2909 | mv -f $TMPH config.h | |
3d204385 | 2910 | |
165af439 | 2911 | # build tree in object directory if source path is different from current one |
90be59ef | 2912 | if enabled source_path_used; then |
b767b9cd MR |
2913 | DIRS=" |
2914 | doc | |
2915 | libavcodec | |
2916 | libavcodec/$arch | |
2917 | libavdevice | |
2918 | libavfilter | |
2919 | libavformat | |
2920 | libavutil | |
2921 | libavutil/$arch | |
2922 | libpostproc | |
2923 | libswscale | |
2924 | libswscale/$arch | |
2925 | tests | |
2926 | tools | |
2927 | " | |
2928 | FILES=" | |
2929 | Makefile | |
2930 | common.mak | |
2931 | subdir.mak | |
2932 | doc/texi2pod.pl | |
2933 | libavcodec/Makefile | |
2934 | libavdevice/Makefile | |
2935 | libavfilter/Makefile | |
2936 | libavformat/Makefile | |
2937 | libavutil/Makefile | |
2938 | libpostproc/Makefile | |
2939 | libswscale/Makefile | |
2940 | " | |
165af439 | 2941 | for dir in $DIRS ; do |
7483e694 | 2942 | mkdir -p $dir |
165af439 MR |
2943 | done |
2944 | for f in $FILES ; do | |
20369773 | 2945 | $ln_s "$source_path/$f" $f |
165af439 MR |
2946 | done |
2947 | fi | |
def4272a | 2948 | |
def4272a | 2949 | |
d0674868 | 2950 | # build pkg-config files |
def4272a | 2951 | |
d0674868 DB |
2952 | pkgconfig_generate(){ |
2953 | name=$1 | |
b0dfd108 | 2954 | shortname=${name#lib}${build_suffix} |
d0674868 DB |
2955 | comment=$2 |
2956 | version=$3 | |
2957 | libs=$4 | |
2958 | requires=$5 | |
25cd5cb3 | 2959 | cat <<EOF > $name/$name.pc |
3e89171a | 2960 | prefix=$prefix |
a94e666c | 2961 | exec_prefix=\${prefix} |
f2b7382c | 2962 | libdir=$libdir |
7622778e | 2963 | includedir=$incdir |
def4272a | 2964 | |
d0674868 DB |
2965 | Name: $name |
2966 | Description: $comment | |
2967 | Version: $version | |
8cd6b388 | 2968 | Requires: $(enabled shared || echo $requires) |
5dcfe9f8 | 2969 | Requires.private: $(enabled shared && echo $requires) |
def4272a | 2970 | Conflicts: |
8cd6b388 | 2971 | Libs: -L\${libdir} -l${shortname} $(enabled shared || echo $libs) |
12701f6e | 2972 | Libs.private: $(enabled shared && echo $libs) |
76a448ed | 2973 | Cflags: -I\${includedir} |
def4272a | 2974 | EOF |
25cd5cb3 | 2975 | cat <<EOF > $name/$name-uninstalled.pc |
def4272a AJ |
2976 | prefix= |
2977 | exec_prefix= | |
46d1ff83 | 2978 | libdir=\${pcfiledir} |
1d44d365 | 2979 | includedir=${source_path} |
def4272a | 2980 | |
d0674868 DB |
2981 | Name: $name |
2982 | Description: $comment | |
2983 | Version: $version | |
2984 | Requires: $requires | |
def4272a | 2985 | Conflicts: |
12701f6e | 2986 | Libs: \${libdir}/${LIBPREF}${shortname}${LIBSUF} $libs |
def4272a AJ |
2987 | Cflags: -I\${includedir} |
2988 | EOF | |
d0674868 | 2989 | } |
def4272a | 2990 | |
e426941d | 2991 | pkgconfig_generate libavutil "FFmpeg utility library" "$LIBAVUTIL_VERSION" |
46983309 RT |
2992 | pkgconfig_generate libavcodec "FFmpeg codec library" "$LIBAVCODEC_VERSION" "$extralibs" "libavutil = $LIBAVUTIL_VERSION" |
2993 | pkgconfig_generate libavformat "FFmpeg container format library" "$LIBAVFORMAT_VERSION" "$extralibs" "libavcodec = $LIBAVCODEC_VERSION" | |
2994 | pkgconfig_generate libavdevice "FFmpeg device handling library" "$LIBAVDEVICE_VERSION" "$extralibs" "libavformat = $LIBAVFORMAT_VERSION" | |
3ed1a2ee | 2995 | enabled avfilter && |
46983309 | 2996 | pkgconfig_generate libavfilter "FFmpeg video filtering library" "$LIBAVFILTER_VERSION" "$extralibs" "libavutil = $LIBAVUTIL_VERSION" |
3ed1a2ee | 2997 | enabled postproc && |
e426941d | 2998 | pkgconfig_generate libpostproc "FFmpeg post processing library" "$LIBPOSTPROC_VERSION" |
5add54b4 | 2999 | pkgconfig_generate libswscale "FFmpeg image rescaling library" "$LIBSWSCALE_VERSION" "" "libavutil = $LIBAVUTIL_VERSION" |