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