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 | ||
1839e854 SS |
1007 | # check armv5te instructions support |
1008 | if test $armv5te = "default" -a $cpu = "armv4l"; then | |
1009 | armv5te=no | |
1010 | check_cc <<EOF && armv5te=yes | |
1011 | int main(void) { | |
1012 | __asm__ __volatile__ ("qadd r0, r0, r0"); | |
1013 | } | |
1014 | EOF | |
1015 | fi | |
1016 | ||
eba9ae3c GB |
1017 | # check iwmmxt support |
1018 | if test $iwmmxt = "default" -a $cpu = "armv4l"; then | |
dcd479c0 MR |
1019 | iwmmxt=no |
1020 | check_cc <<EOF && iwmmxt=yes | |
115329f1 | 1021 | int main(void) { |
eba9ae3c GB |
1022 | __asm__ __volatile__ ("wunpckelub wr6, wr4"); |
1023 | } | |
1024 | EOF | |
eba9ae3c GB |
1025 | fi |
1026 | ||
cf9d24ad | 1027 | #Darwin CC versions |
75388c74 | 1028 | needmdynamicnopic="no" |
cf9d24ad | 1029 | if test $targetos = Darwin; then |
b2924696 | 1030 | if test -n "`$cc -v 2>&1 | grep xlc`"; then |
30a3e5d4 | 1031 | add_cflags "-qpdf2 -qlanglvl=extc99 -qmaxmem=-1 -qarch=auto -qtune=auto" |
cf9d24ad | 1032 | else |
bb270c08 DB |
1033 | gcc_version="`$cc -v 2>&1 | grep version | cut -d ' ' -f3-`" |
1034 | case "$gcc_version" in | |
1035 | *2.95*) | |
30a3e5d4 | 1036 | add_cflags "-no-cpp-precomp -pipe" |
bb270c08 DB |
1037 | ;; |
1038 | *[34].*) | |
30a3e5d4 | 1039 | add_cflags "-no-cpp-precomp -pipe -force_cpusubtype_ALL -Wno-sign-compare" |
bb270c08 DB |
1040 | if test "$lshared" = no; then |
1041 | needmdynamicnopic="yes" | |
1042 | fi | |
1043 | ;; | |
1044 | *) | |
30a3e5d4 | 1045 | add_cflags "-no-cpp-precomp -pipe" |
bb270c08 DB |
1046 | if test "$lshared" = no; then |
1047 | needmdynamicnopic="yes" | |
1048 | fi | |
1049 | ;; | |
1050 | esac | |
cf9d24ad | 1051 | fi |
abafc9c3 | 1052 | if test $optimize != "no"; then |
30a3e5d4 | 1053 | add_cflags "-fomit-frame-pointer" |
abafc9c3 | 1054 | fi |
cf9d24ad DC |
1055 | fi |
1056 | ||
ab6c65f6 BF |
1057 | # Can only do AltiVec on PowerPC |
1058 | if test $altivec = "default"; then | |
1059 | if test $cpu = "powerpc"; then | |
1060 | altivec="yes" | |
1061 | else | |
1062 | altivec="no" | |
1063 | fi | |
1064 | fi | |
1065 | ||
a4adb608 MN |
1066 | # Add processor-specific flags |
1067 | TUNECPU="generic" | |
9007f514 | 1068 | POWERPCMODE="32bits" |
a4adb608 MN |
1069 | if test $tune != "generic"; then |
1070 | case $tune in | |
bb270c08 | 1071 | 601|ppc601|PowerPC601) |
30a3e5d4 | 1072 | add_cflags "-mcpu=601" |
bb270c08 DB |
1073 | if test $altivec = "yes"; then |
1074 | echo "WARNING: Tuning for PPC601 but AltiVec enabled!"; | |
1075 | fi | |
1076 | TUNECPU=ppc601 | |
1077 | ;; | |
1078 | 603*|ppc603*|PowerPC603*) | |
30a3e5d4 | 1079 | add_cflags "-mcpu=603" |
bb270c08 DB |
1080 | if test $altivec = "yes"; then |
1081 | echo "WARNING: Tuning for PPC603 but AltiVec enabled!"; | |
1082 | fi | |
1083 | TUNECPU=ppc603 | |
1084 | ;; | |
1085 | 604*|ppc604*|PowerPC604*) | |
30a3e5d4 | 1086 | add_cflags "-mcpu=604" |
bb270c08 DB |
1087 | if test $altivec = "yes"; then |
1088 | echo "WARNING: Tuning for PPC604 but AltiVec enabled!"; | |
1089 | fi | |
1090 | TUNECPU=ppc604 | |
1091 | ;; | |
1092 | G3|g3|75*|ppc75*|PowerPC75*) | |
30a3e5d4 | 1093 | add_cflags "-mcpu=750 -mtune=750 -mpowerpc-gfxopt" |
bb270c08 DB |
1094 | if test $altivec = "yes"; then |
1095 | echo "WARNING: Tuning for PPC75x but AltiVec enabled!"; | |
1096 | fi | |
1097 | TUNECPU=ppc750 | |
1098 | ;; | |
1099 | G4|g4|745*|ppc745*|PowerPC745*) | |
30a3e5d4 | 1100 | add_cflags "-mcpu=7450 -mtune=7450 -mpowerpc-gfxopt" |
bb270c08 DB |
1101 | if test $altivec = "no"; then |
1102 | echo "WARNING: Tuning for PPC745x but AltiVec disabled!"; | |
1103 | fi | |
1104 | TUNECPU=ppc7450 | |
1105 | ;; | |
1106 | 74*|ppc74*|PowerPC74*) | |
30a3e5d4 | 1107 | add_cflags "-mcpu=7400 -mtune=7400 -mpowerpc-gfxopt" |
bb270c08 DB |
1108 | if test $altivec = "no"; then |
1109 | echo "WARNING: Tuning for PPC74xx but AltiVec disabled!"; | |
1110 | fi | |
1111 | TUNECPU=ppc7400 | |
1112 | ;; | |
1113 | G5|g5|970|ppc970|PowerPC970|power4*|Power4*) | |
30a3e5d4 | 1114 | add_cflags "-mcpu=970 -mtune=970 -mpowerpc-gfxopt -mpowerpc64" |
bb270c08 DB |
1115 | if test $altivec = "no"; then |
1116 | echo "WARNING: Tuning for PPC970 but AltiVec disabled!"; | |
1117 | fi | |
1118 | TUNECPU=ppc970 | |
9007f514 | 1119 | POWERPCMODE="64bits" |
bb270c08 DB |
1120 | ;; |
1121 | 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 | 1122 | add_cflags "-march=$tune" |
bb270c08 | 1123 | ;; |
d7b34d08 | 1124 | sparc64) |
30a3e5d4 | 1125 | add_cflags "-mcpu=v9 -mtune=v9" |
d7b34d08 | 1126 | ;; |
bb270c08 DB |
1127 | *) |
1128 | echo "WARNING: Unknown CPU \"$tune\", ignored." | |
1129 | ;; | |
a4adb608 MN |
1130 | esac |
1131 | fi | |
1132 | ||
1a268acc MR |
1133 | # compiler sanity check |
1134 | check_exec <<EOF | |
1135 | int main(){ | |
1136 | return 0; | |
1137 | } | |
1138 | EOF | |
1139 | if test "$?" != 0; then | |
1140 | echo "$cc is unable to create an executable file." | |
1141 | if test -z "$cross_prefix" -a "$cross_compile" = no; then | |
1142 | echo "If $cc is a cross-compiler, use the --cross-compile option." | |
c7ae6345 | 1143 | echo "Only do this if you know what cross compiling means." |
1a268acc MR |
1144 | fi |
1145 | die "C compiler test failed." | |
1146 | fi | |
1147 | ||
57bd82d4 MR |
1148 | # check for SIMD availability |
1149 | ||
115329f1 | 1150 | # AltiVec flags: The FSF version of GCC differs from the Apple version |
b6e52719 MD |
1151 | if test $cpu = "powerpc"; then |
1152 | if test $altivec = "yes"; then | |
b2924696 | 1153 | if test -n "`$cc -v 2>&1 | grep version | grep Apple`"; then |
30a3e5d4 | 1154 | add_cflags "-faltivec" |
b6e52719 | 1155 | else |
30a3e5d4 | 1156 | add_cflags "-maltivec -mabi=altivec" |
b6e52719 MD |
1157 | fi |
1158 | fi | |
1159 | fi | |
1160 | ||
dcd479c0 | 1161 | check_header altivec.h && _altivec_h=yes || _altivec_h=no |
a9a07762 | 1162 | |
29799f8b | 1163 | # check if our compiler supports Motorola AltiVec C API |
ab6c65f6 | 1164 | if test $altivec = "yes"; then |
f25fc9b1 MR |
1165 | if test $_altivec_h = "yes"; then |
1166 | inc_altivec_h="#include <altivec.h>" | |
1167 | else | |
1168 | inc_altivec_h= | |
1169 | fi | |
1170 | check_cc <<EOF || altivec=no | |
dcd479c0 | 1171 | $inc_altivec_h |
a9a07762 MN |
1172 | int main(void) { |
1173 | vector signed int v1, v2, v3; | |
1174 | v1 = vec_add(v2,v3); | |
1175 | return 0; | |
1176 | } | |
1177 | EOF | |
1178 | fi | |
ab6c65f6 | 1179 | |
29799f8b | 1180 | # mmi only available on mips |
d46aba26 LS |
1181 | if test $mmi = "default"; then |
1182 | if test $cpu = "mips"; then | |
1183 | mmi="yes" | |
1184 | else | |
1185 | mmi="no" | |
1186 | fi | |
1187 | fi | |
1188 | ||
29799f8b | 1189 | # check if our compiler supports mmi |
57bd82d4 | 1190 | enabled mmi && check_cc <<EOF || mmi="no" |
d46aba26 LS |
1191 | int main(void) { |
1192 | __asm__ ("lq \$2, 0(\$2)"); | |
1193 | return 0; | |
1194 | } | |
1195 | EOF | |
57bd82d4 MR |
1196 | |
1197 | # test gcc version to see if vector builtins can be used | |
1198 | # currently only used on i386 for MMX builtins | |
1199 | check_cc -msse <<EOF && builtin_vector=yes || builtin_vector=no | |
1200 | #include <xmmintrin.h> | |
1201 | int main(void) { | |
1202 | #if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 2) | |
1203 | return 0; | |
1204 | #else | |
1205 | #error no vector builtins | |
1206 | #endif | |
1207 | } | |
1208 | EOF | |
1209 | ||
1210 | # test for mm3dnow.h | |
1211 | test "$cpu" = "x86_64" && march=k8 || march=athlon | |
1212 | check_cc -march=$march <<EOF && mm3dnow=yes || mm3dnow=no | |
1213 | #include <mm3dnow.h> | |
1214 | int main(void) { | |
1215 | __m64 b1; | |
1216 | b1 = _m_pswapd(b1); | |
1217 | _m_femms(); | |
1218 | return 0; | |
1219 | } | |
1220 | EOF | |
d46aba26 | 1221 | |
57bd82d4 MR |
1222 | # --- |
1223 | # big/little-endian test | |
fac252f9 | 1224 | if test "$cross_compile" = "no"; then |
57bd82d4 | 1225 | check_ld <<EOF || die "endian test failed" && $TMPE && bigendian="yes" |
a3999908 MN |
1226 | #include <inttypes.h> |
1227 | int main(int argc, char ** argv){ | |
bb270c08 DB |
1228 | volatile uint32_t i=0x01234567; |
1229 | return (*((uint8_t*)(&i))) == 0x67; | |
a3999908 MN |
1230 | } |
1231 | EOF | |
487a54d7 | 1232 | else |
f25fc9b1 MR |
1233 | # programs cannot be launched if cross compiling, so make a static guess |
1234 | if test "$cpu" = "powerpc" -o "$cpu" = "mips" ; then | |
1235 | bigendian="yes" | |
1236 | fi | |
487a54d7 FB |
1237 | fi |
1238 | ||
a3999908 | 1239 | # --- |
7f965c1c | 1240 | # *inttypes.h* test |
dcd479c0 | 1241 | check_header inttypes.h || inttypes=no |
7f965c1c CF |
1242 | |
1243 | # --- | |
b5c950c4 | 1244 | # *int_fast* test |
dcd479c0 | 1245 | check_cc <<EOF || emu_fast_int=yes |
b5c950c4 MN |
1246 | #include <inttypes.h> |
1247 | int main(int argc, char ** argv){ | |
bb270c08 DB |
1248 | volatile uint_fast64_t i=0x01234567; |
1249 | return 0; | |
b5c950c4 MN |
1250 | } |
1251 | EOF | |
1252 | ||
b5c950c4 | 1253 | # --- |
3d204385 NK |
1254 | # check availability of some header files |
1255 | ||
3d204385 NK |
1256 | _memalign=no |
1257 | _malloc_h=no | |
dcd479c0 MR |
1258 | if check_header malloc.h; then |
1259 | _malloc_h=yes | |
1260 | _memalign=yes | |
1261 | check_func memalign || _memalign="no" | |
3d204385 NK |
1262 | fi |
1263 | ||
8b3a43cf | 1264 | if test "$_memalign" = "no" -a "$mmx" = "yes" -a \ |
a9907393 DM |
1265 | "$memalignhack" != "yes" -a "$targetos" != "Darwin" -a \ |
1266 | "$targetos" != "FreeBSD" ; then | |
57bd82d4 | 1267 | die "Error, no memalign() but SSE enabled, disable it or use --enable-memalign-hack." |
8bf5d58f MN |
1268 | fi |
1269 | ||
dcd479c0 | 1270 | check_func localtime_r && localtime_r=yes || localtime_r=no |
57bd82d4 | 1271 | enabled zlib && check_lib zlib.h zlibVersion -lz || zlib="no" |
57bd82d4 MR |
1272 | |
1273 | # check for some common methods of building with pthread support | |
1274 | # do this before the optional library checks as some of them require pthreads | |
1275 | if enabled pthreads; then | |
1276 | { check_cflags -pthread && check_ldflags -pthread; } || | |
1277 | { check_cflags -pthreads && check_ldflags -pthreads; } || | |
1278 | check_lib pthread.h pthread_create -lpthread || | |
1279 | check_func pthread_create || | |
1280 | die "ERROR: can't find pthreads library" | |
1281 | fi | |
1282 | ||
1283 | # these are off by default, so fail if requested and not available | |
1284 | enabled dts && require libdts dts.h dts_init -ldts | |
1285 | enabled libgsm && require libgsm gsm.h gsm_create -lgsm | |
1286 | enabled mp3lame && require LAME lame/lame.h lame_init -lmp3lame | |
8515d1c8 | 1287 | enabled vorbis && require libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbis -lvorbisenc -logg |
aedf11f8 | 1288 | enabled libogg && require libogg ogg/ogg.h ogg_sync_init -logg |
57bd82d4 MR |
1289 | enabled xvid && require XviD xvid.h xvid_global -lxvidcore |
1290 | enabled x264 && require x264 x264.h x264_encoder_open -lx264 | |
1291 | enabled dc1394 && require libdc1394 libdc1394/dc1394_control.h dc1394_create_handle -ldc1394_control -lraw1394 | |
1292 | enabled sunmlib && require mediaLib mlib_types.h mlib_VectorSub_S16_U8_Mod -lmlib | |
e0f80bd7 | 1293 | |
3b9bee88 MR |
1294 | # Ugh, faac uses stdcall calling convention on win32 so we can't use |
1295 | # the generic test functions | |
1296 | if enabled faac; then | |
1297 | save_flags | |
1298 | temp_extralibs -lfaac | |
1299 | check_ld <<EOF && add_extralibs -lfaac || die "ERROR: libfaac not found" | |
1300 | #include <stdint.h> | |
1301 | #include <faac.h> | |
1302 | int main(){ | |
1303 | char *id, *cpr; | |
1304 | faacEncGetVersion(&id, &cpr); | |
1305 | return 0; | |
1306 | } | |
1307 | EOF | |
1308 | restore_flags | |
1309 | fi | |
1310 | ||
87f1c97e MR |
1311 | # Ugh, recent faad2 versions have renamed all functions and #define the |
1312 | # old names in faad.h. Generic tests won't work. | |
1313 | if enabled faad; then | |
1314 | save_flags | |
1315 | temp_extralibs -lfaad | |
1316 | check_ld <<EOF && add_extralibs -lfaad || die "ERROR: libfaad not found" | |
1317 | #include <faad.h> | |
1318 | int main(){ | |
1319 | faacDecOpen(); | |
1320 | return 0; | |
1321 | } | |
1322 | EOF | |
1323 | restore_flags | |
1324 | fi | |
1325 | ||
8ac17293 SH |
1326 | # Ugh, avisynth uses WINAPI calls. Generic tests won't work. |
1327 | if enabled avisynth; then | |
1328 | save_flags | |
1329 | temp_extralibs -lvfw32 | |
1330 | check_ld <<EOF && add_extralibs -lvfw32 || die "ERROR: vfw32 not found" | |
1331 | #include <windows.h> | |
1332 | #include <vfw.h> | |
1333 | int main(){ | |
1334 | AVIFileInit(); | |
1335 | return 0; | |
1336 | } | |
1337 | EOF | |
1338 | restore_flags | |
1339 | fi | |
1340 | ||
1341 | ||
95e2ce4a | 1342 | # test for lrintf in math.h |
dcd479c0 | 1343 | check_exec <<EOF && have_lrintf=yes || have_lrintf=no |
95e2ce4a MN |
1344 | #define _ISOC9X_SOURCE 1 |
1345 | #include <math.h> | |
1346 | int main( void ) { return (lrintf(3.999f) > 0)?0:1; } | |
1347 | EOF | |
1348 | ||
c13e1abd FH |
1349 | _restrict= |
1350 | for restrict_keyword in restrict __restrict__ __restrict; do | |
57bd82d4 | 1351 | check_cc <<EOF && _restrict=$restrict_keyword && break |
dcd479c0 MR |
1352 | void foo(char * $restrict_keyword p); |
1353 | EOF | |
c13e1abd FH |
1354 | done |
1355 | ||
a8721c09 FB |
1356 | # dlopen/dlfcn.h probing |
1357 | ||
dcd479c0 | 1358 | check_header dlfcn.h && dlfcn=yes |
a8721c09 | 1359 | |
dcd479c0 MR |
1360 | temp_extralibs -ldl |
1361 | if check_func dlopen; then | |
1362 | dlopen=yes | |
1363 | ldl=-ldl | |
a8721c09 | 1364 | fi |
dcd479c0 | 1365 | restore_flags |
a8721c09 | 1366 | |
dcd479c0 MR |
1367 | if check_func dlopen; then |
1368 | dlopen=yes | |
1369 | ldl= | |
a8721c09 FB |
1370 | fi |
1371 | ||
f25fc9b1 MR |
1372 | if test "$vhook" = "default"; then |
1373 | vhook="$dlopen" | |
a8721c09 FB |
1374 | fi |
1375 | ||
bfd2edeb | 1376 | if test "$vhook" = "yes" -o "$a52bin" = "yes" -o "$faadbin" = "yes"; then |
57bd82d4 | 1377 | add_extralibs $ldl |
bfd2edeb MN |
1378 | fi |
1379 | ||
fbb9d104 VP |
1380 | if test "$targetos" = "CYGWIN" -a "$lstatic" = "yes" ; then |
1381 | vhook="no" | |
1382 | echo | |
1383 | echo "At the moment vhooks don't work on Cygwin static builds." | |
1384 | echo "Patches welcome." | |
1385 | echo | |
1386 | fi | |
1387 | ||
8d923001 MR |
1388 | if enabled vhook; then |
1389 | check_ldflags -rdynamic | |
1390 | check_ldflags -export-dynamic | |
1391 | fi | |
bfd2edeb | 1392 | |
a86b921c | 1393 | ########################################## |
29799f8b | 1394 | # imlib check |
a86b921c | 1395 | |
dcd479c0 MR |
1396 | temp_extralibs -lImlib2 |
1397 | check_ld <<EOF && imlib2=yes || imlib2=no | |
a8721c09 FB |
1398 | #include <X11/Xlib.h> |
1399 | #include <Imlib2.h> | |
1400 | int main( void ) { return (int) imlib_load_font("foo"); } | |
1401 | EOF | |
dcd479c0 | 1402 | restore_flags |
52b41d7f | 1403 | |
a86b921c | 1404 | ########################################## |
29799f8b | 1405 | # FreeType check |
a86b921c | 1406 | |
04511d53 | 1407 | freetype2=no |
e2a5fd20 | 1408 | if test "x$targetos" != "xBeOS"; then |
e2a3cd59 | 1409 | if (freetype-config --version) >/dev/null 2>&1 ; then |
dcd479c0 MR |
1410 | temp_cflags `freetype-config --cflags` |
1411 | temp_extralibs `freetype-config --libs` | |
1412 | check_ld <<EOF && freetype2=yes | |
1413 | #include <ft2build.h> | |
1414 | int main( void ) { return (int) FT_Init_FreeType(0); } | |
1415 | EOF | |
1416 | restore_flags | |
dee076fc | 1417 | fi |
04511d53 PG |
1418 | fi |
1419 | ||
a86b921c | 1420 | ########################################## |
29799f8b | 1421 | # SDL check |
a86b921c | 1422 | |
a86b921c FB |
1423 | sdl_too_old=no |
1424 | sdl=no | |
6a1a892f FD |
1425 | SDL_CONFIG="${cross_prefix}sdl-config" |
1426 | if ("${SDL_CONFIG}" --version) >/dev/null 2>&1 ; then | |
dcd479c0 MR |
1427 | temp_cflags `"${SDL_CONFIG}" --cflags` |
1428 | temp_extralibs `"${SDL_CONFIG}" --libs` | |
1429 | check_ld <<EOF | |
1430 | #include <SDL.h> | |
1431 | #undef main /* We don't want SDL to override our main() */ | |
1432 | int main( void ) { return SDL_Init (SDL_INIT_VIDEO); } | |
1433 | EOF | |
dcd479c0 MR |
1434 | if test $? = 0; then |
1435 | _sdlversion=`"${SDL_CONFIG}" --version | sed 's/[^0-9]//g'` | |
29f3b38a | 1436 | if test "$_sdlversion" -lt 121 ; then |
dcd479c0 MR |
1437 | sdl_too_old=yes |
1438 | else | |
1439 | sdl=yes | |
29f3b38a MR |
1440 | check_cc <<EOF && sdl_video_size=yes || sdl_video_size=no |
1441 | #include <SDL.h> | |
1442 | int main(void){ | |
1443 | const SDL_VideoInfo *vi = SDL_GetVideoInfo(); | |
1444 | int w = vi->current_w; | |
1445 | return 0; | |
1446 | } | |
1447 | EOF | |
dcd479c0 MR |
1448 | fi |
1449 | fi | |
29f3b38a | 1450 | restore_flags |
c3f6b472 | 1451 | fi |
a86b921c | 1452 | |
57bd82d4 MR |
1453 | enabled sdl || ffplay=no |
1454 | ||
146ea952 | 1455 | ########################################## |
29799f8b | 1456 | # texi2html check |
146ea952 NB |
1457 | |
1458 | texi2html=no | |
e2a3cd59 | 1459 | if (texi2html -version) >/dev/null 2>&1; then |
146ea952 NB |
1460 | texi2html=yes |
1461 | fi | |
1462 | ||
7a91333f | 1463 | ########################################## |
29799f8b | 1464 | # IPv6 check |
7a91333f | 1465 | |
0c7bb0e5 | 1466 | enabled network && enabled ipv6 && check_ld <<EOF && ipv6=yes || ipv6=no |
7a91333f HZ |
1467 | #include <sys/types.h> |
1468 | #include <sys/socket.h> | |
1469 | #include <netinet/in.h> | |
1470 | #include <netdb.h> | |
1471 | int main( void ) { | |
1472 | struct sockaddr_storage saddr; | |
1473 | struct ipv6_mreq mreq6; | |
1474 | getaddrinfo(0,0,0,0); | |
1475 | getnameinfo(0,0,0,0,0,0,0); | |
12fe88b4 | 1476 | IN6_IS_ADDR_MULTICAST((const struct in6_addr *)0); |
7a91333f HZ |
1477 | } |
1478 | EOF | |
1479 | ||
47f38850 | 1480 | # check for video4linux2 --- V4L2_PIX_FMT_YUV420 |
57bd82d4 | 1481 | enabled v4l2 && check_cc <<EOF || v4l2="no" |
84fe9963 | 1482 | #include <sys/time.h> |
f743a062 LA |
1483 | #include <asm/types.h> |
1484 | #include <linux/videodev2.h> | |
47f38850 | 1485 | int dummy = V4L2_PIX_FMT_YUV420; |
490c189b | 1486 | struct v4l2_buffer dummy1; |
47f38850 | 1487 | EOF |
47f38850 | 1488 | |
57bd82d4 MR |
1489 | enabled debug && add_cflags -g |
1490 | ||
1491 | # add some useful compiler flags if supported | |
1492 | check_cflags -Wdeclaration-after-statement | |
dcd479c0 MR |
1493 | check_cflags -Wall |
1494 | check_cflags -Wno-switch | |
c07bd6a9 MN |
1495 | check_cflags -Wdisabled-optimization |
1496 | check_cflags -Wpointer-arith | |
1497 | check_cflags -Wredundant-decls | |
1498 | check_cflags -Winline | |
cf9d24ad | 1499 | |
57bd82d4 MR |
1500 | # add some linker flags |
1501 | check_ldflags '-Wl,--as-needed' '-Wl,-rpath-link,\$(BUILD_ROOT)/libavcodec' '-Wl,-rpath-link,\$(BUILD_ROOT)/libavformat' '-Wl,-rpath-link,\$(BUILD_ROOT)/libavutil' | |
94a3401e | 1502 | |
57bd82d4 MR |
1503 | # not all compilers support -Os |
1504 | test "$optimize" = "small" && check_cflags -Os | |
cddf3f45 | 1505 | |
57bd82d4 | 1506 | if enabled optimize; then |
b2924696 | 1507 | if test -n "`$cc -v 2>&1 | grep xlc`"; then |
30a3e5d4 NP |
1508 | add_cflags "-O5" |
1509 | add_ldflags "-O5" | |
cf9d24ad | 1510 | else |
30a3e5d4 | 1511 | add_cflags "-O3" |
cf9d24ad | 1512 | fi |
cddf3f45 GM |
1513 | fi |
1514 | ||
80581e98 MN |
1515 | # PIC flags for shared library objects where they are needed |
1516 | if test "$lshared" = "yes" ; then | |
f25fc9b1 MR |
1517 | # LIBOBJFLAGS may have already been set in the OS configuration |
1518 | if test -z "$LIBOBJFLAGS" ; then | |
813457e5 MR |
1519 | case "$cpu" in |
1520 | x86_64|ia64|alpha|sparc*) LIBOBJFLAGS="\$(PIC)" ;; | |
1521 | esac | |
80581e98 | 1522 | fi |
80581e98 MN |
1523 | fi |
1524 | ||
1db54e20 | 1525 | if test "$gprof" = "yes" ; then |
30a3e5d4 NP |
1526 | add_cflags "-p" |
1527 | add_ldflags "-p" | |
1db54e20 DB |
1528 | fi |
1529 | ||
4454dc1b JD |
1530 | # find if .align arg is power-of-two or not |
1531 | if test $asmalign_pot = "unknown"; then | |
1532 | asmalign_pot="no" | |
1533 | echo 'asm (".align 3");' | check_cc && asmalign_pot="yes" | |
1534 | fi | |
1535 | ||
2266e085 | 1536 | echo "install prefix $PREFIX" |
29799f8b | 1537 | echo "source path $source_path" |
de6d9b64 | 1538 | echo "C compiler $cc" |
4a908fbc | 1539 | echo "make $make" |
a4adb608 | 1540 | echo "CPU $cpu ($tune)" |
eb94aca9 | 1541 | if test "$BUILDSUF" != ""; then |
f25fc9b1 | 1542 | echo "build suffix $BUILDSUF" |
eb94aca9 | 1543 | fi |
29799f8b | 1544 | echo "big-endian $bigendian" |
7f965c1c | 1545 | echo "inttypes.h $inttypes" |
b5c950c4 | 1546 | echo "broken inttypes.h $emu_fast_int" |
053dea12 | 1547 | if test $cpu = "x86" -o $cpu = "x86_64"; then |
f25fc9b1 MR |
1548 | echo "MMX enabled $mmx" |
1549 | echo "Vector Builtins $builtin_vector" | |
1550 | echo "3DNow! Builtins $mm3dnow" | |
e41e8342 | 1551 | fi |
eba9ae3c | 1552 | if test $cpu = "armv4l"; then |
1839e854 | 1553 | echo "ARMv5TE enabled $armv5te" |
f25fc9b1 | 1554 | echo "IWMMXT enabled $iwmmxt" |
eba9ae3c | 1555 | fi |
e41e8342 | 1556 | if test $cpu = "mips"; then |
f25fc9b1 | 1557 | echo "MMI enabled $mmi" |
e41e8342 FB |
1558 | fi |
1559 | if test $cpu = "powerpc"; then | |
f25fc9b1 | 1560 | echo "AltiVec enabled $altivec" |
e41e8342 | 1561 | fi |
de6d9b64 | 1562 | echo "gprof enabled $gprof" |
0147f198 | 1563 | echo "zlib enabled $zlib" |
bb4c2140 | 1564 | echo "libgsm enabled $libgsm" |
a6741398 | 1565 | echo "mp3lame enabled $mp3lame" |
9146ca37 | 1566 | echo "libogg enabled $libogg" |
29799f8b | 1567 | echo "Vorbis enabled $vorbis" |
29799f8b | 1568 | echo "FAAD enabled $faad" |
445ad18d | 1569 | echo "faadbin enabled $faadbin" |
29799f8b DB |
1570 | echo "FAAC enabled $faac" |
1571 | echo "XviD enabled $xvid" | |
6662ec29 | 1572 | echo "x264 enabled $x264" |
5cbcf02c | 1573 | echo "a52 support $a52" |
57514323 | 1574 | echo "a52 dlopened $a52bin" |
29799f8b | 1575 | echo "DTS support $dts" |
bba9b16c | 1576 | echo "pp support $pp" |
790c9ca7 | 1577 | echo "Software Scaler enabled $swscaler" |
8ac17293 | 1578 | echo "AVISynth enabled $avisynth" |
cddf3f45 | 1579 | echo "debug symbols $debug" |
65d1bea2 | 1580 | echo "strip symbols $dostrip" |
cddf3f45 | 1581 | echo "optimize $optimize" |
320d060a | 1582 | echo "static $lstatic" |
1ddf5ba1 | 1583 | echo "shared $lshared" |
29799f8b | 1584 | echo "video hooking $vhook" |
a86b921c FB |
1585 | echo "SDL support $sdl" |
1586 | if test $sdl_too_old = "yes"; then | |
f25fc9b1 | 1587 | echo "-> Your SDL version is too old - please upgrade to have FFplay/SDL support." |
a86b921c | 1588 | fi |
68892110 | 1589 | |
f25fc9b1 MR |
1590 | if test "$vhook" = "yes"; then |
1591 | echo "Imlib2 support $imlib2" | |
1592 | echo "FreeType support $freetype2" | |
68892110 | 1593 | fi |
f80f7964 | 1594 | echo "Sun medialib support" $sunmlib |
9c3d33d6 | 1595 | echo "pthreads support" $pthreads |
bc634f6f ZK |
1596 | echo "AMR-NB float support" $amr_nb |
1597 | echo "AMR-NB fixed support" $amr_nb_fixed | |
d663a1fd | 1598 | echo "AMR-WB float support" $amr_wb |
2a515c08 | 1599 | echo "AMR-WB IF2 support" $amr_if2 |
7a91333f HZ |
1600 | echo "network support $network" |
1601 | if test "$network" = "yes" ; then | |
f25fc9b1 | 1602 | echo "IPv6 support $ipv6" |
7a91333f | 1603 | fi |
4454dc1b | 1604 | echo ".align is power-of-two" $asmalign_pot |
b2e3c528 | 1605 | if test "$gpl" = "no" ; then |
f25fc9b1 | 1606 | echo "License: LGPL" |
b2e3c528 | 1607 | else |
f25fc9b1 | 1608 | echo "License: GPL" |
b2e3c528 | 1609 | fi |
de6d9b64 | 1610 | |
29799f8b | 1611 | echo "Creating config.mak and config.h..." |
de6d9b64 | 1612 | |
f255e0ab MB |
1613 | date >> config.log |
1614 | echo " $0 $FFMPEG_CONFIGURATION" >> config.log | |
29799f8b DB |
1615 | echo "# Automatically generated by configure - do not modify!" > config.mak |
1616 | echo "/* Automatically generated by configure - do not modify! */" > $TMPH | |
f255e0ab | 1617 | echo "#define FFMPEG_CONFIGURATION "'"'"$FFMPEG_CONFIGURATION"'"' >> $TMPH |
de6d9b64 | 1618 | |
2266e085 DB |
1619 | echo "PREFIX=$PREFIX" >> config.mak |
1620 | echo "prefix=\$(DESTDIR)\${PREFIX}" >> config.mak | |
9a695e98 | 1621 | echo "libdir=\$(DESTDIR)$libdir" >> config.mak |
84c22efd | 1622 | echo "shlibdir=\$(DESTDIR)$shlibdir" >> config.mak |
1d67a1d4 | 1623 | echo "incdir=\$(DESTDIR)$incdir" >> config.mak |
9a695e98 DB |
1624 | echo "bindir=\$(DESTDIR)$bindir" >> config.mak |
1625 | echo "mandir=\$(DESTDIR)$mandir" >> config.mak | |
4a908fbc | 1626 | echo "MAKE=$make" >> config.mak |
980fc7b8 FB |
1627 | echo "CC=$cc" >> config.mak |
1628 | echo "AR=$ar" >> config.mak | |
be7109c1 | 1629 | echo "RANLIB=$ranlib" >> config.mak |
65d1bea2 | 1630 | if test "$dostrip" = "yes" ; then |
f25fc9b1 MR |
1631 | echo "STRIP=$strip" >> config.mak |
1632 | echo "INSTALLSTRIP=$installstrip" >> config.mak | |
65d1bea2 | 1633 | else |
f25fc9b1 MR |
1634 | echo "STRIP=echo ignoring strip" >> config.mak |
1635 | echo "INSTALLSTRIP=" >> config.mak | |
65d1bea2 | 1636 | fi |
75388c74 | 1637 | |
408382a4 | 1638 | VHOOKCFLAGS="-fPIC $CFLAGS" |
57bd82d4 | 1639 | test "$needmdynamicnopic" = yes && add_cflags -mdynamic-no-pic |
75388c74 | 1640 | |
a9b3f630 | 1641 | echo "OPTFLAGS=$CFLAGS" >> config.mak |
408382a4 | 1642 | echo "VHOOKCFLAGS=$VHOOKCFLAGS">>config.mak |
0f3cb305 | 1643 | echo "LDFLAGS=$LDFLAGS" >> config.mak |
f39e56a8 | 1644 | echo "LDCONFIG=$LDCONFIG" >> config.mak |
c536cb09 | 1645 | echo "FFSERVERLDFLAGS=$FFSERVERLDFLAGS" >> config.mak |
e1707f52 | 1646 | echo "SHFLAGS=$SHFLAGS" >> config.mak |
408382a4 | 1647 | echo "VHOOKSHFLAGS=$VHOOKSHFLAGS" >> config.mak |
fbb9d104 | 1648 | echo "VHOOKLIBS=$VHOOKLIBS" >> config.mak |
80581e98 | 1649 | echo "LIBOBJFLAGS=$LIBOBJFLAGS" >> config.mak |
b12f8273 | 1650 | echo "BUILD_STATIC=$lstatic" >> config.mak |
eb94aca9 | 1651 | echo "BUILDSUF=$BUILDSUF" >> config.mak |
f3ec2d46 | 1652 | echo "LIBPREF=$LIBPREF" >> config.mak |
eb94aca9 | 1653 | echo "LIBSUF=\${BUILDSUF}$LIBSUF" >> config.mak |
320d060a DB |
1654 | if test "$lstatic" = "yes" ; then |
1655 | echo "LIB=$LIB" >> config.mak | |
1a44a8b6 AS |
1656 | else # Some Make complain if this variable does not exist. |
1657 | echo "LIB=" >> config.mak | |
320d060a | 1658 | fi |
f3ec2d46 | 1659 | echo "SLIBPREF=$SLIBPREF" >> config.mak |
eb94aca9 CY |
1660 | echo "SLIBSUF=\${BUILDSUF}$SLIBSUF" >> config.mak |
1661 | echo "EXESUF=\${BUILDSUF}$EXESUF" >> config.mak | |
b2828252 | 1662 | echo "TARGET_OS=$targetos" >> config.mak |
57514323 | 1663 | if test "$cpu" = "x86" ; then |
980fc7b8 | 1664 | echo "TARGET_ARCH_X86=yes" >> config.mak |
045ed63f | 1665 | echo "#define ARCH_X86 1" >> $TMPH |
053dea12 AJ |
1666 | elif test "$cpu" = "x86_64" ; then |
1667 | echo "TARGET_ARCH_X86_64=yes" >> config.mak | |
1668 | echo "#define ARCH_X86_64 1" >> $TMPH | |
0f3cb305 | 1669 | elif test "$cpu" = "armv4l" ; then |
6ed7422a | 1670 | echo "TARGET_ARCH_ARMV4L=yes" >> config.mak |
045ed63f | 1671 | echo "#define ARCH_ARMV4L 1" >> $TMPH |
0f3cb305 | 1672 | elif test "$cpu" = "alpha" ; then |
91d1f1a4 | 1673 | echo "TARGET_ARCH_ALPHA=yes" >> config.mak |
045ed63f | 1674 | echo "#define ARCH_ALPHA 1" >> $TMPH |
35fedfc3 PG |
1675 | elif test "$cpu" = "sparc64" ; then |
1676 | echo "TARGET_ARCH_SPARC64=yes" >> config.mak | |
1677 | echo "#define ARCH_SPARC64 1" >> $TMPH | |
bb476ff3 JM |
1678 | echo "TARGET_ARCH_SPARC=yes" >> config.mak |
1679 | echo "#define ARCH_SPARC 1" >> $TMPH | |
1680 | elif test "$cpu" = "sparc" ; then | |
1681 | echo "TARGET_ARCH_SPARC=yes" >> config.mak | |
1682 | echo "#define ARCH_SPARC 1" >> $TMPH | |
0f3cb305 FB |
1683 | elif test "$cpu" = "powerpc" ; then |
1684 | echo "TARGET_ARCH_POWERPC=yes" >> config.mak | |
1685 | echo "#define ARCH_POWERPC 1" >> $TMPH | |
9007f514 RD |
1686 | if test $POWERPCMODE = "32bits"; then |
1687 | echo "#define POWERPC_MODE_32BITS 1" >> $TMPH | |
1688 | else | |
1689 | echo "#define POWERPC_MODE_64BITS 1" >> $TMPH | |
1690 | fi | |
e45a2872 RD |
1691 | if test "$powerpc_perf" = "yes"; then |
1692 | echo "#define POWERPC_PERFORMANCE_REPORT 1" >> $TMPH | |
1693 | fi | |
d46aba26 LS |
1694 | elif test "$cpu" = "mips" ; then |
1695 | echo "TARGET_ARCH_MIPS=yes" >> config.mak | |
1696 | echo "#define ARCH_MIPS 1" >> $TMPH | |
bdb2e37c AB |
1697 | elif test "$cpu" = "sh4" ; then |
1698 | echo "TARGET_ARCH_SH4=yes" >> config.mak | |
1699 | echo "#define ARCH_SH4 1" >> $TMPH | |
67860b26 SH |
1700 | elif test "$cpu" = "parisc" ; then |
1701 | echo "TARGET_ARCH_PARISC=yes" >> config.mak | |
1702 | echo "#define ARCH_PARISC 1" >> $TMPH | |
1703 | elif test "$cpu" = "s390" ; then | |
1704 | echo "TARGET_ARCH_S390=yes" >> config.mak | |
1705 | echo "#define ARCH_S390 1" >> $TMPH | |
1706 | elif test "$cpu" = "m68k" ; then | |
1707 | echo "TARGET_ARCH_M68K=yes" >> config.mak | |
1708 | echo "#define ARCH_M68K 1" >> $TMPH | |
1709 | elif test "$cpu" = "ia64" ; then | |
1710 | echo "TARGET_ARCH_IA64=yes" >> config.mak | |
1711 | echo "#define ARCH_IA64 1" >> $TMPH | |
81a9b052 MB |
1712 | elif test "$cpu" = "bfin" ; then |
1713 | echo "TARGET_ARCH_BFIN=yes" >> config.mak | |
1714 | echo "#define ARCH_BFIN 1" >> $TMPH | |
bdb2e37c | 1715 | fi |
a4adb608 | 1716 | echo "#define TUNECPU $TUNECPU" >> $TMPH |
0f3cb305 FB |
1717 | if test "$bigendian" = "yes" ; then |
1718 | echo "WORDS_BIGENDIAN=yes" >> config.mak | |
1719 | echo "#define WORDS_BIGENDIAN 1" >> $TMPH | |
91d1f1a4 | 1720 | fi |
d2a9bddd MN |
1721 | if test "$inttypes" != "yes" ; then |
1722 | echo "#define EMULATE_INTTYPES 1" >> $TMPH | |
7f965c1c | 1723 | fi |
b5c950c4 | 1724 | if test "$emu_fast_int" = "yes" ; then |
19d053c5 | 1725 | echo "#define EMULATE_FAST_INT 1" >> $TMPH |
b5c950c4 | 1726 | fi |
57514323 | 1727 | if test "$mmx" = "yes" ; then |
980fc7b8 | 1728 | echo "TARGET_MMX=yes" >> config.mak |
045ed63f | 1729 | echo "#define HAVE_MMX 1" >> $TMPH |
e82c5a8c | 1730 | echo "#define __CPU__ 586" >> $TMPH |
de6d9b64 | 1731 | fi |
52b41d7f FB |
1732 | if test "$builtin_vector" = "yes" ; then |
1733 | echo "TARGET_BUILTIN_VECTOR=yes" >> config.mak | |
1734 | echo "#define HAVE_BUILTIN_VECTOR 1" >> $TMPH | |
1735 | fi | |
82eb4b0f ZM |
1736 | if test "$mm3dnow" = "yes" ; then |
1737 | echo "TARGET_BUILTIN_3DNOW=yes" >> config.mak | |
1738 | echo "#define HAVE_MM3DNOW 1" >> $TMPH | |
1739 | fi | |
1839e854 SS |
1740 | if test "$armv5te" = "yes" ; then |
1741 | echo "TARGET_ARMV5TE=yes" >> config.mak | |
1742 | echo "#define HAVE_ARMV5TE 1" >> $TMPH | |
1743 | fi | |
eba9ae3c GB |
1744 | if test "$iwmmxt" = "yes" ; then |
1745 | echo "TARGET_IWMMXT=yes" >> config.mak | |
1746 | echo "#define HAVE_IWMMXT 1" >> $TMPH | |
1747 | fi | |
d46aba26 LS |
1748 | if test "$mmi" = "yes" ; then |
1749 | echo "TARGET_MMI=yes" >> config.mak | |
1750 | echo "#define HAVE_MMI 1" >> $TMPH | |
1751 | fi | |
ab6c65f6 BF |
1752 | if test "$altivec" = "yes" ; then |
1753 | echo "TARGET_ALTIVEC=yes" >> config.mak | |
1754 | echo "#define HAVE_ALTIVEC 1" >> $TMPH | |
db40a39a MN |
1755 | echo "// Enable the next line to use the reference C code instead of AltiVec" >> $TMPH |
1756 | echo "// #define ALTIVEC_USE_REFERENCE_C_CODE 1" >> $TMPH | |
a9a07762 MN |
1757 | if test "$_altivec_h" = "yes" ; then |
1758 | echo "#define HAVE_ALTIVEC_H 1" >> $TMPH | |
1759 | else | |
e67e14d5 | 1760 | echo "#undef HAVE_ALTIVEC_H" >> $TMPH |
a9a07762 | 1761 | fi |
ab6c65f6 | 1762 | fi |
57514323 | 1763 | if test "$gprof" = "yes" ; then |
045ed63f | 1764 | echo "#define HAVE_GPROF 1" >> $TMPH |
de6d9b64 | 1765 | fi |
5e4639e2 GM |
1766 | if test "$localtime_r" = "yes" ; then |
1767 | echo "#define HAVE_LOCALTIME_R 1" >> $TMPH | |
5e4639e2 | 1768 | fi |
68892110 PG |
1769 | if test "$imlib2" = "yes" ; then |
1770 | echo "HAVE_IMLIB2=yes" >> config.mak | |
1771 | fi | |
04511d53 PG |
1772 | if test "$freetype2" = "yes" ; then |
1773 | echo "HAVE_FREETYPE2=yes" >> config.mak | |
1774 | fi | |
f80f7964 RS |
1775 | if test "$sunmlib" = "yes" ; then |
1776 | echo "HAVE_MLIB=yes" >> config.mak | |
1777 | echo "#define HAVE_MLIB 1" >> $TMPH | |
f80f7964 | 1778 | fi |
9c3d33d6 MN |
1779 | if test "$pthreads" = "yes" ; then |
1780 | echo "HAVE_PTHREADS=yes" >> config.mak | |
1781 | echo "#define HAVE_PTHREADS 1" >> $TMPH | |
2450cff2 | 1782 | echo "#define HAVE_THREADS 1" >> $TMPH |
9c3d33d6 | 1783 | fi |
a86b921c FB |
1784 | if test "$sdl" = "yes" ; then |
1785 | echo "CONFIG_SDL=yes" >> config.mak | |
6a1a892f FD |
1786 | echo "SDL_LIBS=`"${SDL_CONFIG}" --libs`" >> config.mak |
1787 | echo "SDL_CFLAGS=`"${SDL_CONFIG}" --cflags`" >> config.mak | |
29f3b38a MR |
1788 | if test "$sdl_video_size" = "yes"; then |
1789 | echo "#define HAVE_SDL_VIDEO_SIZE 1" >> $TMPH | |
1790 | fi | |
a86b921c | 1791 | fi |
146ea952 NB |
1792 | if test "$texi2html" = "yes"; then |
1793 | echo "BUILD_DOC=yes" >> config.mak | |
1794 | fi | |
95e2ce4a MN |
1795 | if test "$have_lrintf" = "yes" ; then |
1796 | echo "#define HAVE_LRINTF 1" >> $TMPH | |
1797 | fi | |
68892110 PG |
1798 | if test "$vhook" = "yes" ; then |
1799 | echo "BUILD_VHOOK=yes" >> config.mak | |
1800 | echo "#define HAVE_VHOOK 1" >> $TMPH | |
68892110 | 1801 | fi |
5a872801 | 1802 | |
790c9ca7 | 1803 | sws_version=`grep '#define LIBSWSCALE_VERSION ' "$source_path/libswscale/swscale.h" | sed 's/[^0-9\.]//g'` |
6d9a2421 | 1804 | pp_version=`grep '#define LIBPOSTPROC_VERSION ' "$source_path/libpostproc/postprocess.h" | sed 's/[^0-9\.]//g'` |
5a872801 LB |
1805 | lavc_version=`grep '#define LIBAVCODEC_VERSION ' "$source_path/libavcodec/avcodec.h" | sed 's/[^0-9\.]//g'` |
1806 | lavf_version=`grep '#define LIBAVFORMAT_VERSION ' "$source_path/libavformat/avformat.h" | sed 's/[^0-9\.]//g'` | |
1807 | lavu_version=`grep '#define LIBAVUTIL_VERSION ' "$source_path/libavutil/avutil.h" | sed 's/[^0-9\.]//g'` | |
1808 | ||
1809 | ||
1810 | ||
57514323 | 1811 | if test "$lshared" = "yes" ; then |
320d060a | 1812 | echo "#define BUILD_SHARED_AV 1" >> $TMPH |
0319c531 | 1813 | echo "BUILD_SHARED=yes" >> config.mak |
97006039 | 1814 | echo "PIC=-fPIC -DPIC" >> config.mak |
39503a27 | 1815 | echo "SPPMAJOR=${lavc_version%%.*}" >> config.mak |
5a872801 | 1816 | echo "SPPVERSION=$lavc_version" >> config.mak |
39503a27 | 1817 | echo "LAVCMAJOR=${lavc_version%%.*}" >> config.mak |
5a872801 | 1818 | echo "LAVCVERSION=$lavc_version" >> config.mak |
39503a27 | 1819 | echo "LAVFMAJOR=${lavf_version%%.*}" >> config.mak |
5a872801 | 1820 | echo "LAVFVERSION=$lavf_version" >> config.mak |
39503a27 | 1821 | echo "LAVUMAJOR=${lavu_version%%.*}" >> config.mak |
5a872801 | 1822 | echo "LAVUVERSION=$lavu_version" >> config.mak |
790c9ca7 LA |
1823 | echo "SWSMAJOR=${sws_version%%.*}" >> config.mak |
1824 | echo "SWSVERSION=$sws_version" >> config.mak | |
4bdd05e7 | 1825 | echo "SLIBNAME=${SLIBNAME}" >> config.mak |
f3b60109 DB |
1826 | echo "SLIBNAME_WITH_VERSION=${SLIBNAME_WITH_VERSION}" >> config.mak |
1827 | echo "SLIBNAME_WITH_MAJOR=${SLIBNAME_WITH_MAJOR}" >> config.mak | |
5cb854e1 | 1828 | echo "SLIB_EXTRA_CMD=${SLIB_EXTRA_CMD}" >> config.mak |
0319c531 | 1829 | fi |
d7e27559 | 1830 | echo "LIB_INSTALL_EXTRA_CMD=${LIB_INSTALL_EXTRA_CMD}" >> config.mak |
ef0bc4c9 | 1831 | echo "EXTRALIBS=$extralibs" >> config.mak |
d2845d68 | 1832 | |
29799f8b | 1833 | # If you do not want to use encoders, disable them. |
55006fc0 | 1834 | if echo "$ENCODER_LIST" | grep -q encoder; then |
6eefb6fd MR |
1835 | echo "#define CONFIG_ENCODERS 1" >> $TMPH |
1836 | echo "CONFIG_ENCODERS=yes" >> config.mak | |
1837 | fi | |
d771bcae | 1838 | |
29799f8b | 1839 | # If you do not want to use decoders, disable them. |
55006fc0 | 1840 | if echo "$DECODER_LIST" | grep -q decoder; then |
6eefb6fd MR |
1841 | echo "#define CONFIG_DECODERS 1" >> $TMPH |
1842 | echo "CONFIG_DECODERS=yes" >> config.mak | |
1843 | fi | |
d771bcae | 1844 | |
a9e35095 | 1845 | # muxers |
ff70e601 | 1846 | if echo "$MUXER_LIST" | grep -q muxer; then |
a9e35095 DB |
1847 | echo "#define CONFIG_MUXERS 1" >> $TMPH |
1848 | echo "CONFIG_MUXERS=yes" >> config.mak | |
1849 | fi | |
1850 | ||
1851 | # demuxers | |
ff70e601 | 1852 | if echo "$DEMUXER_LIST" | grep -q demuxer; then |
a9e35095 DB |
1853 | echo "#define CONFIG_DEMUXERS 1" >> $TMPH |
1854 | echo "CONFIG_DEMUXERS=yes" >> config.mak | |
1855 | fi | |
1856 | ||
5cbcf02c FB |
1857 | # AC3 |
1858 | if test "$a52" = "yes" ; then | |
1859 | echo "#define CONFIG_AC3 1" >> $TMPH | |
1860 | echo "CONFIG_AC3=yes" >> config.mak | |
d771bcae | 1861 | |
5cbcf02c FB |
1862 | if test "$a52bin" = "yes" ; then |
1863 | echo "#define CONFIG_A52BIN 1" >> $TMPH | |
1864 | echo "CONFIG_A52BIN=yes" >> config.mak | |
1865 | fi | |
1866 | fi | |
1867 | ||
23c99253 MN |
1868 | # DTS |
1869 | if test "$dts" = "yes" ; then | |
1870 | echo "#define CONFIG_DTS 1" >> $TMPH | |
1871 | echo "CONFIG_DTS=yes" >> config.mak | |
1872 | fi | |
1873 | ||
bba9b16c MN |
1874 | # PP |
1875 | if test "$pp" = "yes" ; then | |
1876 | echo "#define CONFIG_PP 1" >> $TMPH | |
1877 | echo "CONFIG_PP=yes" >> config.mak | |
bba9b16c MN |
1878 | fi |
1879 | ||
790c9ca7 LA |
1880 | if test "$swscaler" = "yes" ; then |
1881 | echo "#define CONFIG_SWSCALER 1" >> $TMPH | |
1882 | echo "CONFIG_SWSCALER=yes" >> config.mak | |
1883 | fi | |
1884 | ||
29799f8b | 1885 | # MPEG audio high precision mode |
1eb2212e FB |
1886 | if test "$mpegaudio_hp" = "yes" ; then |
1887 | echo "#define CONFIG_MPEGAUDIO_HP 1" >> $TMPH | |
1888 | fi | |
1889 | ||
5cbcf02c FB |
1890 | if test "$v4l" = "yes" ; then |
1891 | echo "#define CONFIG_VIDEO4LINUX 1" >> $TMPH | |
1892 | echo "CONFIG_VIDEO4LINUX=yes" >> config.mak | |
1893 | fi | |
1894 | ||
0a7b514f LA |
1895 | if test "$v4l2" = "yes" ; then |
1896 | echo "#define CONFIG_VIDEO4LINUX2 1" >> $TMPH | |
1897 | echo "CONFIG_VIDEO4LINUX2=yes" >> config.mak | |
1898 | fi | |
1899 | ||
6beefa40 MN |
1900 | if test "$bktr" = "yes" ; then |
1901 | echo "#define CONFIG_BKTR 1" >> $TMPH | |
1902 | echo "CONFIG_BKTR=yes" >> config.mak | |
1903 | fi | |
1904 | ||
8aa3ee32 MK |
1905 | if test "$dv1394" = "yes" ; then |
1906 | echo "#define CONFIG_DV1394 1" >> $TMPH | |
1907 | echo "CONFIG_DV1394=yes" >> config.mak | |
1908 | fi | |
1909 | ||
f02be79d RS |
1910 | if test "$dc1394" = "yes" ; then |
1911 | echo "#define CONFIG_DC1394 1" >> $TMPH | |
1912 | echo "CONFIG_DC1394=yes" >> config.mak | |
1913 | fi | |
1914 | ||
adbc0510 PG |
1915 | if test "$dlopen" = "yes" ; then |
1916 | echo "#define CONFIG_HAVE_DLOPEN 1" >> $TMPH | |
1917 | fi | |
1918 | ||
1919 | if test "$dlfcn" = "yes" ; then | |
1920 | echo "#define CONFIG_HAVE_DLFCN 1" >> $TMPH | |
1921 | fi | |
1922 | ||
5cbcf02c FB |
1923 | if test "$audio_oss" = "yes" ; then |
1924 | echo "#define CONFIG_AUDIO_OSS 1" >> $TMPH | |
1925 | echo "CONFIG_AUDIO_OSS=yes" >> config.mak | |
57514323 ZK |
1926 | fi |
1927 | ||
dfdfa47c FR |
1928 | if test "$audio_beos" = "yes" ; then |
1929 | echo "#define CONFIG_AUDIO_BEOS 1" >> $TMPH | |
1930 | echo "CONFIG_AUDIO_BEOS=yes" >> config.mak | |
1931 | fi | |
1932 | ||
5cbcf02c FB |
1933 | if test "$network" = "yes" ; then |
1934 | echo "#define CONFIG_NETWORK 1" >> $TMPH | |
1935 | echo "CONFIG_NETWORK=yes" >> config.mak | |
6ed7422a | 1936 | fi |
daf8e955 | 1937 | |
7a91333f HZ |
1938 | if test "$ipv6" = "yes" ; then |
1939 | echo "#define CONFIG_IPV6 1" >> $TMPH | |
1940 | fi | |
1941 | ||
0147f198 FR |
1942 | if test "$zlib" = "yes" ; then |
1943 | echo "#define CONFIG_ZLIB 1" >> $TMPH | |
1944 | echo "CONFIG_ZLIB=yes" >> config.mak | |
1945 | fi | |
1946 | ||
bb4c2140 MN |
1947 | if test "$libgsm" = "yes" ; then |
1948 | echo "#define CONFIG_LIBGSM 1" >> $TMPH | |
1949 | echo "CONFIG_LIBGSM=yes" >> config.mak | |
1950 | fi | |
1951 | ||
57514323 | 1952 | if test "$mp3lame" = "yes" ; then |
045ed63f | 1953 | echo "#define CONFIG_MP3LAME 1" >> $TMPH |
a6741398 J |
1954 | echo "CONFIG_MP3LAME=yes" >> config.mak |
1955 | fi | |
1956 | ||
9146ca37 | 1957 | if test "$libogg" = "yes" ; then |
5c5dea3f NB |
1958 | echo "#define CONFIG_LIBOGG 1" >> $TMPH |
1959 | echo "CONFIG_LIBOGG=yes" >> config.mak | |
1960 | fi | |
1961 | ||
81e0d0b4 | 1962 | if test "$vorbis" = "yes" ; then |
5c5dea3f NB |
1963 | echo "#define CONFIG_LIBVORBIS 1" >> $TMPH |
1964 | echo "CONFIG_LIBVORBIS=yes" >> config.mak | |
1965 | fi | |
1966 | ||
0fc50e58 ZK |
1967 | if test "$faad" = "yes" ; then |
1968 | echo "#define CONFIG_FAAD 1" >> $TMPH | |
1969 | echo "CONFIG_FAAD=yes" >> config.mak | |
1970 | fi | |
1971 | ||
1972 | if test "$faadbin" = "yes" ; then | |
1973 | echo "#define CONFIG_FAADBIN 1" >> $TMPH | |
445ad18d | 1974 | echo "CONFIG_FAADBIN=yes" >> config.mak |
0fc50e58 ZK |
1975 | fi |
1976 | ||
29d48296 MN |
1977 | if test "$faac" = "yes" ; then |
1978 | echo "#define CONFIG_FAAC 1" >> $TMPH | |
1979 | echo "CONFIG_FAAC=yes" >> config.mak | |
1980 | fi | |
1981 | ||
1ddadfa9 AT |
1982 | if test "$xvid" = "yes" ; then |
1983 | echo "#define CONFIG_XVID 1" >> $TMPH | |
1984 | echo "CONFIG_XVID=yes" >> config.mak | |
1985 | fi | |
1986 | ||
6662ec29 MN |
1987 | if test "$x264" = "yes" ; then |
1988 | echo "#define CONFIG_X264 1" >> $TMPH | |
1989 | echo "CONFIG_X264=yes" >> config.mak | |
1990 | fi | |
1991 | ||
8ac17293 SH |
1992 | if test "$avisynth" = "yes" ; then |
1993 | echo "#define CONFIG_AVISYNTH 1" >> $TMPH | |
1994 | echo "CONFIG_AVISYNTH=yes" >> config.mak | |
1995 | fi | |
1996 | ||
732d9245 | 1997 | if test "$mingw32" = "yes" ; then |
2f30a81d | 1998 | echo "CONFIG_MINGW=yes" >> config.mak |
16806499 MN |
1999 | echo "HAVE_W32THREADS=yes" >> config.mak |
2000 | echo "#define HAVE_W32THREADS 1" >> $TMPH | |
2450cff2 | 2001 | echo "#define HAVE_THREADS 1" >> $TMPH |
7eea5766 | 2002 | echo "#ifndef __MINGW32__" >> $TMPH |
732d9245 | 2003 | echo "#define __MINGW32__ 1" >> $TMPH |
7eea5766 | 2004 | echo "#endif" >> $TMPH |
3f027ca7 FB |
2005 | fi |
2006 | ||
ac44871c | 2007 | if test "$mingwce" = "yes" ; then |
2f30a81d | 2008 | echo "CONFIG_MINGW=yes" >> config.mak |
ac44871c GB |
2009 | echo "#define CONFIG_WINCE 1" >> $TMPH |
2010 | echo "CONFIG_WINCE=yes" >> config.mak | |
2011 | echo "#ifndef __MINGW32__" >> $TMPH | |
2012 | echo "#define __MINGW32__ 1" >> $TMPH | |
2013 | echo "#endif" >> $TMPH | |
2014 | fi | |
2015 | ||
f3ec2d46 SG |
2016 | if test "$os2" = "yes" ; then |
2017 | echo "#define CONFIG_OS2 1" >> $TMPH | |
2018 | echo "CONFIG_OS2=yes" >> config.mak | |
e2a5fd20 MN |
2019 | echo "HAVE_OS2THREADS=yes" >> config.mak |
2020 | echo "#define HAVE_OS2THREADS 1" >> $TMPH | |
2021 | echo "#define HAVE_THREADS 1" >> $TMPH | |
f3ec2d46 SG |
2022 | fi |
2023 | ||
b2828252 | 2024 | if test "$targetos" = "SunOS" ; then |
6e023978 RS |
2025 | echo "#define CONFIG_SUNOS 1" >> $TMPH |
2026 | fi | |
2027 | ||
b2828252 | 2028 | if test "$targetos" = "BeOS" ; then |
2450cff2 FR |
2029 | echo "HAVE_BEOSTHREADS=yes" >> config.mak |
2030 | echo "#define HAVE_BEOSTHREADS 1" >> $TMPH | |
2031 | echo "#define HAVE_THREADS 1" >> $TMPH | |
2032 | fi | |
2033 | ||
b2828252 | 2034 | if test "$targetos" = "Darwin"; then |
90cee0c3 MN |
2035 | echo "#define CONFIG_DARWIN 1" >> $TMPH |
2036 | echo "CONFIG_DARWIN=yes" >> config.mak | |
2037 | fi | |
2038 | ||
57514323 | 2039 | if test "$_malloc_h" = "yes" ; then |
045ed63f | 2040 | echo "#define HAVE_MALLOC_H 1" >> $TMPH |
3d204385 | 2041 | else |
045ed63f | 2042 | echo "#undef HAVE_MALLOC_H" >> $TMPH |
3d204385 NK |
2043 | fi |
2044 | ||
57514323 | 2045 | if test "$_memalign" = "yes" ; then |
045ed63f ZK |
2046 | echo "#define HAVE_MEMALIGN 1" >> $TMPH |
2047 | else | |
2048 | echo "#undef HAVE_MEMALIGN" >> $TMPH | |
2049 | fi | |
2050 | ||
da9b170c MN |
2051 | if test "$memalignhack" = "yes" ; then |
2052 | echo "#define MEMALIGN_HACK 1" >> $TMPH | |
2053 | fi | |
2054 | ||
2055 | ||
26b35efb FR |
2056 | if test "$netserver" = "yes" ; then |
2057 | echo "#define CONFIG_BEOS_NETSERVER 1" >> $TMPH | |
2058 | echo "CONFIG_BEOS_NETSERVER=yes" >> config.mak | |
2059 | fi | |
2060 | ||
4baca069 PG |
2061 | if test "$need_inet_aton" = "yes" ; then |
2062 | echo "NEED_INET_ATON=yes" >> config.mak | |
2063 | fi | |
2064 | ||
57514323 | 2065 | if test "$simpleidct" = "yes" ; then |
045ed63f ZK |
2066 | echo "#define SIMPLE_IDCT 1" >> $TMPH |
2067 | fi | |
2068 | ||
04f46ced GB |
2069 | if test "$protocols" = "yes" ; then |
2070 | echo "#define CONFIG_PROTOCOLS 1" >> $TMPH | |
2071 | echo "CONFIG_PROTOCOLS=yes" >> config.mak | |
2072 | fi | |
2073 | ||
8154d2e0 FB |
2074 | if test "$ffserver" = "yes" ; then |
2075 | echo "#define CONFIG_FFSERVER 1" >> $TMPH | |
2076 | echo "CONFIG_FFSERVER=yes" >> config.mak | |
2077 | fi | |
2078 | ||
a86b921c FB |
2079 | if test "$ffplay" = "yes" ; then |
2080 | echo "CONFIG_FFPLAY=yes" >> config.mak | |
2081 | fi | |
2082 | ||
b2e3c528 MN |
2083 | if test "$gpl" = "yes" ; then |
2084 | echo "#define CONFIG_GPL 1" >> $TMPH | |
2085 | echo "CONFIG_GPL=yes" >> config.mak | |
2086 | fi | |
2087 | ||
c13e1abd FH |
2088 | echo "#define restrict $_restrict" >> $TMPH |
2089 | ||
bb801c97 MN |
2090 | if test "$optimize" = "small"; then |
2091 | echo "#define always_inline" >> $TMPH | |
e5f28e8f | 2092 | echo "#define CONFIG_SMALL 1" >> $TMPH |
bb801c97 MN |
2093 | fi |
2094 | ||
0f3cb305 FB |
2095 | # build tree in object directory if source path is different from current one |
2096 | if test "$source_path_used" = "yes" ; then | |
2a4e872b AS |
2097 | DIRS="\ |
2098 | doc \ | |
2099 | libavformat \ | |
2100 | libavcodec \ | |
2101 | libavcodec/alpha \ | |
2102 | libavcodec/armv4l \ | |
2103 | libavcodec/i386 \ | |
2104 | libavcodec/sparc \ | |
2105 | libavcodec/mlib \ | |
2106 | libavcodec/ppc \ | |
2107 | libavcodec/liba52 \ | |
6d9a2421 | 2108 | libpostproc \ |
2a4e872b | 2109 | libavutil \ |
790c9ca7 | 2110 | libswscale \ |
2a4e872b AS |
2111 | tests \ |
2112 | vhook \ | |
2113 | " | |
2114 | FILES="\ | |
2115 | Makefile \ | |
2116 | libavformat/Makefile \ | |
2117 | libavcodec/Makefile \ | |
6d9a2421 | 2118 | libpostproc/Makefile \ |
2a4e872b | 2119 | libavutil/Makefile \ |
790c9ca7 | 2120 | libswscale/Makefile \ |
2a4e872b AS |
2121 | tests/Makefile \ |
2122 | vhook/Makefile \ | |
2123 | doc/Makefile \ | |
2124 | doc/texi2pod.pl \ | |
2125 | " | |
0f3cb305 FB |
2126 | for dir in $DIRS ; do |
2127 | mkdir -p $dir | |
2128 | done | |
2129 | for f in $FILES ; do | |
281a74da | 2130 | ln -sf "$source_path/$f" $f |
0f3cb305 FB |
2131 | done |
2132 | fi | |
8e955b13 | 2133 | echo "SRC_PATH=$source_path" >> config.mak |
8b2121e3 | 2134 | echo "BUILD_ROOT=$PWD" >> config.mak |
0f3cb305 | 2135 | |
60827a1a | 2136 | if test "$amr" = "yes" ; then |
6636b7e8 MR |
2137 | echo "#define CONFIG_AMR 1" >> $TMPH |
2138 | echo "CONFIG_AMR=yes" >> config.mak | |
60827a1a DB |
2139 | fi |
2140 | ||
d663a1fd | 2141 | if test "$amr_wb" = "yes" ; then |
6636b7e8 MR |
2142 | echo "#define CONFIG_AMR_WB 1" >> $TMPH |
2143 | echo "CONFIG_AMR_WB=yes" >> config.mak | |
d663a1fd MN |
2144 | echo |
2145 | echo "AMR WB FLOAT NOTICE ! Make sure you have downloaded TS26.204" | |
2146 | echo "V5.1.0 from " | |
2147 | echo "http://www.3gpp.org/ftp/Specs/archive/26_series/26.204/26204-510.zip" | |
2148 | echo "and extracted the source to libavcodec/amrwb_float" | |
d663a1fd MN |
2149 | fi |
2150 | ||
891f64b3 | 2151 | if test "$amr_nb" = "yes" ; then |
6636b7e8 MR |
2152 | echo "#define CONFIG_AMR_NB 1" >> $TMPH |
2153 | echo "CONFIG_AMR_NB=yes" >> config.mak | |
891f64b3 | 2154 | echo |
6eb07e73 DB |
2155 | echo "AMR NB FLOAT NOTICE ! Make sure you have downloaded TS26.104" |
2156 | echo "REL-5 V5.1.0 from " | |
c51c4fa0 | 2157 | echo "http://www.3gpp.org/ftp/Specs/archive/26_series/26.104/26104-510.zip" |
6eb07e73 DB |
2158 | echo "and extracted the source to libavcodec/amr_float" |
2159 | echo "If you try this on alpha, you may need to change Word32 to int in amr/typedef.h" | |
2160 | fi | |
2161 | ||
bc634f6f | 2162 | if test "$amr_nb_fixed" = "yes" ; then |
6636b7e8 MR |
2163 | echo "#define CONFIG_AMR_NB_FIXED 1" >> $TMPH |
2164 | echo "CONFIG_AMR_NB_FIXED=yes" >> config.mak | |
b9ca6d47 | 2165 | echo |
bc634f6f ZK |
2166 | echo "AMR NB FIXED POINT NOTICE! Make sure you have downloaded TS26.073 " |
2167 | echo "REL-5 version 5.1.0 from " | |
c51c4fa0 | 2168 | echo "http://www.3gpp.org/ftp/Specs/archive/26_series/26.073/26073-510.zip" |
891f64b3 | 2169 | echo "and extracted src to libavcodec/amr" |
bc634f6f ZK |
2170 | echo "You must also add -DMMS_IO and remove -pedantic-errors to/from CFLAGS in libavcodec/amr/makefile." |
2171 | echo "i.e. CFLAGS = -Wall -I. \$(CFLAGS_\$(MODE)) -D\$(VAD) -DMMS_IO" | |
891f64b3 | 2172 | fi |
2173 | ||
2a515c08 TM |
2174 | if test "$amr_if2" = "yes" ; then |
2175 | echo "AMR_CFLAGS=-DIF2=1" >> config.mak | |
2176 | fi | |
2177 | ||
8156056e | 2178 | # Apparently it's not possible to portably echo a backslash. |
4454dc1b | 2179 | if test "$asmalign_pot" = "yes" ; then |
8156056e | 2180 | printf '#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\\n\\t"\n' >> $TMPH |
4454dc1b | 2181 | else |
8156056e | 2182 | printf '#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\\n\\t"\n' >> $TMPH |
4454dc1b JD |
2183 | fi |
2184 | ||
bc634f6f | 2185 | |
fe84b3f0 | 2186 | # "tr '[a-z]' '[A-Z]'" is a workaround for Solaris tr not grokking "tr a-z A-Z" |
55006fc0 | 2187 | for codec in $DECODER_LIST $ENCODER_LIST $PARSER_LIST $DEMUXER_LIST $MUXER_LIST; do |
fe84b3f0 DB |
2188 | echo "#define CONFIG_`echo $codec | tr '[a-z]' '[A-Z]'` 1" >> $TMPH |
2189 | echo "CONFIG_`echo $codec | tr '[a-z]' '[A-Z]'`=yes" >> config.mak | |
009cf97d MN |
2190 | done |
2191 | ||
9cb2cf10 DB |
2192 | # Do not overwrite config.h if unchanged to avoid superfluous rebuilds. |
2193 | diff $TMPH config.h >/dev/null 2>&1 | |
214c5f26 | 2194 | if test "$?" != "0" ; then |
9cb2cf10 DB |
2195 | mv -f $TMPH config.h |
2196 | else | |
2197 | echo "config.h is unchanged" | |
2198 | fi | |
3d204385 | 2199 | |
f3ec2d46 | 2200 | rm -f $TMPO $TMPC $TMPE $TMPS $TMPH |
def4272a AJ |
2201 | |
2202 | ||
29799f8b | 2203 | # build pkg-config files libav*.pc and libpostproc.pc |
31abdc45 | 2204 | # libavutil.pc |
2205 | cat <<EOF >libavutil.pc | |
2266e085 | 2206 | prefix=$PREFIX |
a94e666c | 2207 | exec_prefix=\${prefix} |
31abdc45 | 2208 | libdir=\${exec_prefix}/lib |
a94e666c | 2209 | includedir=\${prefix}/include |
31abdc45 | 2210 | |
2211 | Name: libavutil | |
2212 | Description: FFmpeg utility library | |
2213 | Version: $lavu_version | |
115329f1 | 2214 | Requires: |
31abdc45 | 2215 | Conflicts: |
2216 | Libs: -L\${libdir} -lavutil | |
2217 | Cflags: -I\${includedir} -I\${includedir}/ffmpeg | |
2218 | EOF | |
2219 | ||
2220 | cat <<EOF >libavutil-uninstalled.pc | |
2221 | prefix= | |
2222 | exec_prefix= | |
2223 | libdir=\${pcfiledir}/libavutil | |
2224 | includedir=\${pcfiledir}/libavutil | |
2225 | ||
2226 | Name: libavutil | |
2227 | Description: FFmpeg utility library | |
2228 | Version: $lavu_version | |
115329f1 | 2229 | Requires: |
31abdc45 | 2230 | Conflicts: |
2231 | Libs: \${libdir}/${LIBPREF}avutil${LIBSUF} | |
2232 | Cflags: -I\${includedir} | |
2233 | EOF | |
def4272a AJ |
2234 | |
2235 | # libavcodec.pc | |
2236 | cat <<EOF >libavcodec.pc | |
2266e085 | 2237 | prefix=$PREFIX |
a94e666c | 2238 | exec_prefix=\${prefix} |
def4272a | 2239 | libdir=\${exec_prefix}/lib |
a94e666c | 2240 | includedir=\${prefix}/include |
def4272a AJ |
2241 | |
2242 | Name: libavcodec | |
2243 | Description: FFmpeg codec library | |
31abdc45 | 2244 | Version: $lavc_version |
c99dd233 | 2245 | Requires: $pkg_requires libavutil = $lavu_version |
def4272a AJ |
2246 | Conflicts: |
2247 | Libs: -L\${libdir} -lavcodec $extralibs | |
2248 | Cflags: -I\${includedir} -I\${includedir}/ffmpeg | |
2249 | EOF | |
2250 | ||
2251 | cat <<EOF >libavcodec-uninstalled.pc | |
2252 | prefix= | |
2253 | exec_prefix= | |
2254 | libdir=\${pcfiledir}/libavcodec | |
2255 | includedir=\${pcfiledir}/libavcodec | |
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: \${libdir}/${LIBPREF}avcodec${LIBSUF} $extralibs | |
2263 | Cflags: -I\${includedir} | |
2264 | EOF | |
2265 | ||
2266 | # libavformat.pc | |
2267 | cat <<EOF >libavformat.pc | |
2266e085 | 2268 | prefix=$PREFIX |
a94e666c | 2269 | exec_prefix=\${prefix} |
def4272a | 2270 | libdir=\${exec_prefix}/lib |
a94e666c | 2271 | includedir=\${prefix}/include |
def4272a AJ |
2272 | |
2273 | Name: libavformat | |
2274 | Description: FFmpeg container format library | |
31abdc45 | 2275 | Version: $lavf_version |
c99dd233 | 2276 | Requires: $pkg_requires libavcodec = $lavc_version |
def4272a AJ |
2277 | Conflicts: |
2278 | Libs: -L\${libdir} -lavformat $extralibs | |
2279 | Cflags: -I\${includedir} -I\${includedir}/ffmpeg | |
2280 | EOF | |
2281 | ||
2282 | cat <<EOF >libavformat-uninstalled.pc | |
2283 | prefix= | |
2284 | exec_prefix= | |
2285 | libdir=\${pcfiledir}/libavformat | |
2286 | includedir=\${pcfiledir}/libavformat | |
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: \${libdir}/${LIBPREF}avformat${LIBSUF} $extralibs | |
2294 | Cflags: -I\${includedir} | |
2295 | EOF | |
2296 | ||
2297 | ||
2298 | # libpostproc.pc | |
2299 | cat <<EOF >libpostproc.pc | |
2266e085 | 2300 | prefix=$PREFIX |
a94e666c | 2301 | exec_prefix=\${prefix} |
def4272a | 2302 | libdir=\${exec_prefix}/lib |
a94e666c | 2303 | includedir=\${prefix}/include |
def4272a AJ |
2304 | |
2305 | Name: libpostproc | |
2306 | Description: FFmpeg post processing library | |
31abdc45 | 2307 | Version: $lavc_version |
115329f1 | 2308 | Requires: |
def4272a AJ |
2309 | Conflicts: |
2310 | Libs: -L\${libdir} -lpostproc | |
2311 | Cflags: -I\${includedir} -I\${includedir}/postproc | |
2312 | EOF | |
2313 | ||
2314 | cat <<EOF >libpostproc-uninstalled.pc | |
2315 | prefix= | |
2316 | exec_prefix= | |
6d9a2421 DB |
2317 | libdir=\${pcfiledir}/libpostproc |
2318 | includedir=\${pcfiledir}/libpostproc | |
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: \${libdir}/${LIBPREF}postproc${LIBSUF} | |
2326 | Cflags: -I\${includedir} | |
2327 | EOF | |
790c9ca7 LA |
2328 | |
2329 | # libswscale.pc | |
2330 | cat <<EOF >libswscale.pc | |
2331 | prefix=$PREFIX | |
2332 | exec_prefix=\${prefix} | |
2333 | libdir=\${exec_prefix}/lib | |
2334 | includedir=\${prefix}/include | |
2335 | ||
2336 | Name: libswscale | |
2337 | Description: FFmpeg image rescaling library | |
2338 | Version: $sws_version | |
2339 | Requires: $pkg_requires libavutil = $lavu_version | |
2340 | Conflicts: | |
2341 | Libs: -L\${libdir} -lswscale | |
2342 | Cflags: -I\${includedir} -I\${includedir}/swscale | |
2343 | EOF | |
2344 | ||
2345 | cat <<EOF >libswscale-uninstalled.pc | |
2346 | prefix= | |
2347 | exec_prefix= | |
2348 | libdir=\${pcfiledir}/libswscale | |
2349 | includedir=\${pcfiledir}/libswscale | |
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: \${libdir}/${LIBPREF}swscale${LIBSUF} | |
2357 | Cflags: -I\${includedir} | |
2358 | EOF |