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