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