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