vo_corevideo: Send KEY_CLOSE_WIN instead of KEY_ESC for quit
[mplayer/glamo.git] / configure
blob0dec63967a9278350cfbd1ff920f045b3b08a2a3
1 #! /bin/sh
3 # Original version (C) 2000 Pontscho/fresh!mindworkz
4 # pontscho@makacs.poliod.hu
6 # History / Contributors: Check the Subversion log.
8 # Cleanups all over the place (c) 2001 pl
11 # This configure script is *not* autoconf-based and has different semantics.
12 # It attempts to autodetect all settings and options where possible. It is
13 # possible to override autodetection with the --enable-option/--disable-option
14 # command line parameters. --enable-option forces the option on skipping
15 # autodetection. Yes, this means that compilation may fail and yes, this is not
16 # how autoconf-based configure scripts behave.
18 # configure generates a series of configuration files:
19 # - config.h contains #defines that are used in the C code.
20 # - config.mak is included from the Makefiles.
22 # If you want to add a new check for $feature, here is a simple skeleton:
24 # echocheck "$feature"
25 # if test "$_feature" = auto; then
26 # cat > $TMPC << EOF
27 # #include <feature.h>
28 # int main(void) { return 0; }
29 # EOF
30 # _feature=no
31 # cc_check && _feature=yes
32 # fi
33 # if test "$_feature" = yes ; then
34 # def_feature='#define CONFIG_FEATURE 1'
35 # else
36 # def_feature='#undef CONFIG_FEATURE'
37 # fi
38 # echores "$_feature"
40 # Furthermore you need to add the variable _feature to the list of default
41 # settings and set it to one of yes/no/auto. Also add appropriate
42 # --enable-feature/--disable-feature command line options.
43 # The results of the check should be written to config.h and config.mak
44 # at the end of this script. The variable names used for this should be
45 # uniform, i.e. if the option is named 'feature':
47 # _feature : should have a value of yes/no/auto
48 # def_feature : '#define ... 1' or '#undef ...' for conditional compilation
49 # _ld_feature : '-L/path/dir -lfeature' GCC options
51 #############################################################################
53 # Prevent locale nonsense from breaking basic text processing utils
54 export LC_ALL=C
56 # Store the configure line that was used
57 configuration="$*"
59 # Prefer these macros to full length text !
60 # These macros only return an error code - NO display is done
61 compile_check() {
62 source="$1"
63 shift
64 echo >> "$TMPLOG"
65 cat "$source" >> "$TMPLOG"
66 echo >> "$TMPLOG"
67 echo "$_cc $source $CFLAGS $extra_cflags $_ld_static $extra_ldflags $libs_mplayer $libs_mencoder -o $TMPEXE $@" >> "$TMPLOG"
68 rm -f "$TMPEXE"
69 $_cc $CFLAGS "$source" $extra_cflags $_ld_static $extra_ldflags $libs_mplayer $libs_mencoder -o "$TMPEXE" "$@" >> "$TMPLOG" 2>&1
70 TMPRES="$?"
71 echo >> "$TMPLOG"
72 echo >> "$TMPLOG"
73 return "$TMPRES"
76 cc_check() {
77 compile_check $TMPC $@
80 cxx_check() {
81 compile_check $TMPCPP $@ -lstdc++
84 cflag_check() {
85 cat > $TMPC << EOF
86 int main(void) { return 0; }
87 EOF
88 compile_check $TMPC $@
91 function_check() {
92 cat > $TMPC << EOF
93 #include <$1>
94 int main(void) { $2; return 0; }
95 EOF
96 shift
97 compile_check $TMPC $@
100 header_check() {
101 cat > $TMPC << EOF
102 #include <$1>
103 int main(void) { return 0; }
105 shift
106 compile_check $TMPC $@
109 yasm_check() {
110 echo >> "$TMPLOG"
111 cat "$TMPS" >> "$TMPLOG"
112 echo >> "$TMPLOG"
113 echo "$_yasm $YASMFLAGS -o $TMPEXE $TMPS $@" >> "$TMPLOG"
114 rm -f "$TMPEXE"
115 $_yasm $YASMFLAGS -o "$TMPEXE" "$TMPS" "$@" >> "$TMPLOG" 2>&1
116 TMPRES="$?"
117 echo >> "$TMPLOG"
118 echo >> "$TMPLOG"
119 return "$TMPRES"
122 tmp_run() {
123 "$TMPEXE" >> "$TMPLOG" 2>&1
126 # Display error message, flushes tempfile, exit
127 die () {
128 echo
129 echo "Error: $@" >&2
130 echo >&2
131 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP"
132 echo "Check \"$TMPLOG\" if you do not understand why it failed."
133 exit 1
136 # OS test booleans functions
137 issystem() {
138 test "$(echo $system_name | tr A-Z a-z)" = "$(echo $1 | tr A-Z a-z)"
140 aix() { issystem "AIX"; }
141 amigaos() { issystem "AmigaOS"; }
142 beos() { issystem "BEOS"; }
143 bsdos() { issystem "BSD/OS"; }
144 cygwin() { issystem "CYGWIN"; }
145 darwin() { issystem "Darwin"; }
146 dragonfly() { issystem "DragonFly"; }
147 freebsd() { issystem "FreeBSD" || issystem "GNU/kFreeBSD"; }
148 gnu() { issystem "GNU"; }
149 hpux() { issystem "HP-UX"; }
150 irix() { issystem "IRIX"; }
151 linux() { issystem "Linux"; }
152 mingw32() { issystem "MINGW32"; }
153 morphos() { issystem "MorphOS"; }
154 netbsd() { issystem "NetBSD"; }
155 openbsd() { issystem "OpenBSD"; }
156 os2() { issystem "OS/2"; }
157 qnx() { issystem "QNX"; }
158 sunos() { issystem "SunOS"; }
159 win32() { cygwin || mingw32; }
161 # arch test boolean functions
162 # x86/x86pc is used by QNX
163 x86_32() {
164 case "$host_arch" in
165 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686) return 0 ;;
166 *) return 1 ;;
167 esac
170 x86_64() {
171 case "$host_arch" in
172 x86_64|amd64) return 0 ;;
173 *) return 1 ;;
174 esac
177 x86() {
178 x86_32 || x86_64
181 ppc() {
182 case "$host_arch" in
183 ppc|ppc64|powerpc|powerpc64) return 0;;
184 *) return 1;;
185 esac
188 alpha() {
189 case "$host_arch" in
190 alpha*) return 0;;
191 *) return 1;;
192 esac
195 arm() {
196 case "$host_arch" in
197 arm*) return 0;;
198 *) return 1;;
199 esac
202 # Use this before starting a check
203 echocheck() {
204 echo "============ Checking for $@ ============" >> "$TMPLOG"
205 echo ${_echo_n} "Checking for $@ ... ${_echo_c}"
208 # Use this to echo the results of a check
209 echores() {
210 if test "$res_comment" ; then
211 res_comment="($res_comment)"
213 echo "Result is: $@ $res_comment" >> "$TMPLOG"
214 echo "##########################################" >> "$TMPLOG"
215 echo "" >> "$TMPLOG"
216 echo "$@ $res_comment"
217 res_comment=""
219 #############################################################################
221 # Check how echo works in this /bin/sh
222 case $(echo -n) in
223 -n) _echo_n= _echo_c='\c' ;; # SysV echo
224 *) _echo_n='-n ' _echo_c= ;; # BSD echo
225 esac
227 msg_lang_all=''
228 ls po/*.po >/dev/null 2>&1 && msg_lang_all=$(echo po/*.po | sed -e 's:po/\([^[:space:]]*\)\.po:\1:g')
229 man_lang_all=$(echo DOCS/man/??/mplayer.1 DOCS/man/??_??/mplayer.1 | sed -e "s:DOCS/man/\(..\)/mplayer.1:\1:g" -e "s:DOCS/man/\(.._..\)/mplayer.1:\1:g")
230 doc_lang_all=$(echo DOCS/xml/??/ DOCS/xml/??_??/ | sed -e "s:DOCS/xml/\(..\)/:\1:g" -e "s:DOCS/xml/\(.._..\)/:\1:g")
232 show_help(){
233 cat << EOF
234 Usage: $0 [OPTIONS]...
236 Configuration:
237 -h, --help display this help and exit
239 Installation directories:
240 --prefix=DIR prefix directory for installation [/usr/local]
241 --bindir=DIR directory for installing binaries [PREFIX/bin]
242 --datadir=DIR directory for installing machine independent
243 data files (skins, etc) [PREFIX/share/mplayer]
244 --mandir=DIR directory for installing man pages [PREFIX/share/man]
245 --confdir=DIR directory for installing configuration files
246 [PREFIX/etc/mplayer]
247 --localedir=DIR directory for locale tree [PREFIX/share/locale]
248 --libdir=DIR directory for object code libraries [PREFIX/lib]
249 --codecsdir=DIR directory for binary codecs [LIBDIR/codecs]
251 Optional features:
252 --disable-mencoder disable MEncoder (A/V encoder) compilation [enable]
253 --disable-mplayer disable MPlayer compilation [enable]
254 --disable-largefiles disable support for files > 2GB [enable]
255 --enable-termcap use termcap database for key codes [autodetect]
256 --enable-termios use termios database for key codes [autodetect]
257 --disable-iconv disable iconv for encoding conversion [autodetect]
258 --disable-langinfo do not use langinfo [autodetect]
259 --enable-lirc enable LIRC (remote control) support [autodetect]
260 --enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect]
261 --enable-joystick enable joystick support [disable]
262 --enable-apple-remote enable Apple Remote input (Mac OS X only) [autodetect]
263 --enable-apple-ir enable Apple IR Remote input (Linux only) [autodetect]
264 --disable-vm disable X video mode extensions [autodetect]
265 --disable-xf86keysym disable support for multimedia keys [autodetect]
266 --enable-radio enable radio interface [disable]
267 --enable-radio-capture enable radio capture (through PCI/line-in) [disable]
268 --disable-radio-v4l2 disable Video4Linux2 radio interface [autodetect]
269 --disable-radio-bsdbt848 disable BSD BT848 radio interface [autodetect]
270 --disable-tv disable TV interface (TV/DVB grabbers) [enable]
271 --disable-tv-v4l1 disable Video4Linux TV interface [autodetect]
272 --disable-tv-v4l2 disable Video4Linux2 TV interface [autodetect]
273 --disable-tv-bsdbt848 disable BSD BT848 interface [autodetect]
274 --disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
275 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
276 --disable-networking disable networking [enable]
277 --enable-winsock2_h enable winsock2_h [autodetect]
278 --enable-smb enable Samba (SMB) input [autodetect]
279 --enable-live enable LIVE555 Streaming Media [autodetect]
280 --enable-nemesi enable Nemesi Streaming Media [autodetect]
281 --disable-vcd disable VCD support [autodetect]
282 --disable-bluray disable Blu-ray support [autodetect]
283 --disable-dvdnav disable libdvdnav [autodetect]
284 --disable-dvdread disable libdvdread [autodetect]
285 --disable-dvdread-internal disable internal libdvdread [autodetect]
286 --disable-libdvdcss-internal disable internal libdvdcss [autodetect]
287 --disable-cdparanoia disable cdparanoia [autodetect]
288 --disable-cddb disable cddb [autodetect]
289 --disable-bitmap-font disable bitmap font support [enable]
290 --disable-freetype disable FreeType 2 font rendering [autodetect]
291 --disable-fontconfig disable fontconfig font lookup [autodetect]
292 --disable-unrarexec disable using of UnRAR executable [enabled]
293 --enable-menu enable OSD menu (not DVD menu) [disabled]
294 --disable-sortsub disable subtitle sorting [enabled]
295 --enable-fribidi enable the FriBiDi libs [autodetect]
296 --disable-enca disable ENCA charset oracle library [autodetect]
297 --disable-maemo disable maemo specific features [autodetect]
298 --enable-macosx-finder enable Mac OS X Finder invocation parameter
299 parsing [disabled]
300 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
301 --disable-inet6 disable IPv6 support [autodetect]
302 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
303 --disable-ftp disable FTP support [enabled]
304 --disable-vstream disable TiVo vstream client support [autodetect]
305 --disable-pthreads disable Posix threads support [autodetect]
306 --disable-w32threads disable Win32 threads support [autodetect]
307 --disable-ass disable internal SSA/ASS subtitle support [autodetect]
308 --enable-rpath enable runtime linker path for extra libs [disabled]
310 Codecs:
311 --enable-gif enable GIF support [autodetect]
312 --enable-png enable PNG input/output support [autodetect]
313 --enable-mng enable MNG input support [autodetect]
314 --enable-jpeg enable JPEG input/output support [autodetect]
315 --enable-libcdio enable libcdio support [autodetect]
316 --enable-liblzo enable liblzo support [autodetect]
317 --disable-win32dll disable Win32 DLL support [autodetect]
318 --disable-qtx disable QuickTime codecs support [enabled]
319 --disable-xanim disable XAnim codecs support [enabled]
320 --disable-real disable RealPlayer codecs support [enabled]
321 --disable-xvid disable Xvid [autodetect]
322 --disable-x264 disable x264 [autodetect]
323 --disable-libnut disable libnut [autodetect]
324 --disable-libavutil disable libavutil [autodetect]
325 --disable-libavcodec disable libavcodec [autodetect]
326 --disable-libavformat disable libavformat [autodetect]
327 --disable-libpostproc disable libpostproc [autodetect]
328 --disable-libswscale disable libswscale [autodetect]
329 --disable-tremor-internal disable internal Tremor [enabled]
330 --enable-tremor-low enable lower accuracy internal Tremor [disabled]
331 --enable-tremor enable external Tremor [autodetect]
332 --disable-libvorbis disable libvorbis support [autodetect]
333 --disable-speex disable Speex support [autodetect]
334 --enable-theora enable OggTheora libraries [autodetect]
335 --enable-faad enable external FAAD2 (AAC) [autodetect]
336 --disable-faad-internal disable internal FAAD2 (AAC) [autodetect]
337 --enable-faad-fixed enable fixed-point mode in internal FAAD2 [disabled]
338 --disable-faac disable support for FAAC (AAC encoder) [autodetect]
339 --disable-ladspa disable LADSPA plugin support [autodetect]
340 --disable-libbs2b disable libbs2b audio filter support [autodetect]
341 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
342 --disable-mpg123 disable libmpg123 MP3 decoding support [autodetect]
343 --disable-mad disable libmad (MPEG audio) support [autodetect]
344 --disable-mp3lame disable LAME MP3 encoding support [autodetect]
345 --disable-toolame disable Toolame (MPEG layer 2) encoding [autodetect]
346 --disable-twolame disable Twolame (MPEG layer 2) encoding [autodetect]
347 --enable-xmms enable XMMS input plugin support [disabled]
348 --enable-libdca enable libdca support [autodetect]
349 --disable-mp3lib disable builtin mp3lib [autodetect]
350 --disable-liba52 disable liba52 [autodetect]
351 --disable-libmpeg2 disable builtin libmpeg2 [autodetect]
352 --disable-musepack disable musepack support [autodetect]
354 Video output:
355 --disable-vidix disable VIDIX [for x86 *nix]
356 --with-vidix-drivers[=*] list of VIDIX drivers to be compiled in
357 Available: cyberblade,ivtv,mach64,mga,mga_crtc2,
358 nvidia,pm2,pm3,radeon,rage128,s3,sis,unichrome
359 --disable-vidix-pcidb disable VIDIX PCI device name database
360 --enable-dhahelper enable VIDIX dhahelper support
361 --enable-svgalib_helper enable VIDIX svgalib_helper support
362 --enable-gl enable OpenGL video output [autodetect]
363 --disable-matrixview disable OpenGL MatrixView video output [autodetect]
364 --enable-dga2 enable DGA 2 support [autodetect]
365 --enable-dga1 enable DGA 1 support [autodetect]
366 --enable-vesa enable VESA video output [autodetect]
367 --enable-svga enable SVGAlib video output [autodetect]
368 --enable-sdl enable SDL video output [autodetect]
369 --enable-kva enable KVA video output [autodetect]
370 --enable-aa enable AAlib video output [autodetect]
371 --enable-caca enable CACA video output [autodetect]
372 --enable-ggi enable GGI video output [autodetect]
373 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
374 --enable-direct3d enable Direct3D video output [autodetect]
375 --enable-directx enable DirectX video output [autodetect]
376 --enable-dxr2 enable DXR2 video output [autodetect]
377 --enable-dxr3 enable DXR3/H+ video output [autodetect]
378 --enable-ivtv enable IVTV TV-Out video output [autodetect]
379 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
380 --enable-dvb enable DVB video output [autodetect]
381 --enable-mga enable mga_vid video output [autodetect]
382 --enable-xmga enable mga_vid X11 video output [autodetect]
383 --enable-xv enable Xv video output [autodetect]
384 --enable-xvmc enable XvMC acceleration [disable]
385 --enable-vdpau enable VDPAU acceleration [autodetect]
386 --enable-vm enable XF86VidMode support [autodetect]
387 --enable-xinerama enable Xinerama support [autodetect]
388 --enable-x11 enable X11 video output [autodetect]
389 --enable-xshape enable XShape support [autodetect]
390 --disable-xss disable screensaver support via xss [autodetect]
391 --enable-fbdev enable FBDev video output [autodetect]
392 --enable-mlib enable mediaLib video output (Solaris) [disable]
393 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
394 --enable-tdfxfb enable tdfxfb video output [disable]
395 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
396 --enable-wii enable Nintendo Wii/GameCube video output [disable]
397 --enable-directfb enable DirectFB video output [autodetect]
398 --enable-zr enable ZR360[56]7/ZR36060 video output [autodetect]
399 --enable-bl enable Blinkenlights video output [disable]
400 --enable-tdfxvid enable tdfx_vid video output [disable]
401 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
402 --disable-tga disable Targa video output [enable]
403 --disable-pnm disable PNM video output [enable]
404 --disable-md5sum disable md5sum video output [enable]
405 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
406 --disable-corevideo disable CoreVideo video output [autodetect]
407 --disable-quartz disable Quartz video output [autodetect]
409 Audio output:
410 --disable-alsa disable ALSA audio output [autodetect]
411 --disable-ossaudio disable OSS audio output [autodetect]
412 --disable-arts disable aRts audio output [autodetect]
413 --disable-esd disable esd audio output [autodetect]
414 --disable-pulse disable Pulseaudio audio output [autodetect]
415 --disable-jack disable JACK audio output [autodetect]
416 --enable-openal enable OpenAL audio output [disable]
417 --disable-nas disable NAS audio output [autodetect]
418 --disable-sgiaudio disable SGI audio output [autodetect]
419 --disable-sunaudio disable Sun audio output [autodetect]
420 --disable-kai disable KAI audio output [autodetect]
421 --disable-dart disable DART audio output [autodetect]
422 --disable-win32waveout disable Windows waveout audio output [autodetect]
423 --disable-coreaudio disable CoreAudio audio output [autodetect]
424 --disable-select disable using select() on the audio device [enable]
426 Language options:
427 --enable-translation enable support for translated output [disable]
428 --charset=charset convert the console messages to this character set
429 --language-doc=lang language to use for the documentation [en]
430 --language-man=lang language to use for the man pages [en]
431 --language-msg=lang extra languages for program messages [all]
432 --language=lang default language to use [en]
433 Specific options override --language. You can pass a list of languages separated
434 by whitespace or commas instead of a single language. Nonexisting translations
435 will be dropped from each list. All translations available in the list will be
436 installed. The value "all" will activate all translations. The LINGUAS
437 environment variable is honored. In all cases the fallback is English.
438 The program always supports English-language output; additional message
439 languages are only installed if --enable-translation is also specified.
440 Available values for --language-doc are: all $doc_lang_all
441 Available values for --language-man are: all $man_lang_all
442 Available values for --language-msg are: all $msg_lang_all
444 Miscellaneous options:
445 --enable-runtime-cpudetection enable runtime CPU detection [disable]
446 --enable-cross-compile enable cross-compilation [autodetect]
447 --cc=COMPILER C compiler to build MPlayer [gcc]
448 --host-cc=COMPILER C compiler for tools needed while building [gcc]
449 --as=ASSEMBLER assembler to build MPlayer [as]
450 --nm=NM nm tool to build MPlayer [nm]
451 --yasm=YASM Yasm assembler to build MPlayer [yasm]
452 --ar=AR librarian to build MPlayer [ar]
453 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
454 --windres=WINDRES windres to build MPlayer [windres]
455 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
456 --enable-static build a statically linked binary
457 --with-install=PATH path to a custom install program
459 Advanced options:
460 --enable-mmx enable MMX [autodetect]
461 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
462 --enable-3dnow enable 3DNow! [autodetect]
463 --enable-3dnowext enable extended 3DNow! [autodetect]
464 --enable-sse enable SSE [autodetect]
465 --enable-sse2 enable SSE2 [autodetect]
466 --enable-ssse3 enable SSSE3 [autodetect]
467 --enable-shm enable shm [autodetect]
468 --enable-altivec enable AltiVec (PowerPC) [autodetect]
469 --enable-armv5te enable DSP extensions (ARM) [autodetect]
470 --enable-armv6 enable ARMv6 (ARM) [autodetect]
471 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
472 --enable-armvfp enable ARM VFP (ARM) [autodetect]
473 --enable-neon enable NEON (ARM) [autodetect]
474 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
475 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
476 --enable-big-endian force byte order to big-endian [autodetect]
477 --enable-debug[=1-3] compile-in debugging information [disable]
478 --enable-profile compile-in profiling information [disable]
479 --disable-sighandler disable sighandler for crashes [enable]
480 --enable-crash-debug enable automatic gdb attach on crash [disable]
481 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
482 --ffmpeg-source-dir=PATH enable features requiring internal FFmpeg headers
484 Use these options if autodetection fails:
485 --extra-cflags=FLAGS extra CFLAGS
486 --extra-ldflags=FLAGS extra LDFLAGS
487 --extra-libs=FLAGS extra linker flags
488 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
489 --extra-libs-mencoder=FLAGS extra linker flags for MEncoder
490 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
492 --with-freetype-config=PATH path to freetype-config
493 --with-glib-config=PATH path to glib*-config
494 --with-gtk-config=PATH path to gtk*-config
495 --with-sdl-config=PATH path to sdl*-config
496 --with-dvdnav-config=PATH path to dvdnav-config
497 --with-dvdread-config=PATH path to dvdread-config
499 This configure script is NOT autoconf-based, even though its output is similar.
500 It will try to autodetect all configuration options. If you --enable an option
501 it will be forcefully turned on, skipping autodetection. This can break
502 compilation, so you need to know what you are doing.
504 exit 0
505 } #show_help()
507 # GOTCHA: the variables below defines the default behavior for autodetection
508 # and have - unless stated otherwise - at least 2 states : yes no
509 # If autodetection is available then the third state is: auto
510 _mmx=auto
511 _3dnow=auto
512 _3dnowext=auto
513 _mmxext=auto
514 _sse=auto
515 _sse2=auto
516 _ssse3=auto
517 _cmov=auto
518 _fast_cmov=auto
519 _fast_clz=auto
520 _armv5te=auto
521 _armv6=auto
522 _armv6t2=auto
523 _armvfp=auto
524 neon=auto
525 _iwmmxt=auto
526 _mtrr=auto
527 _altivec=auto
528 _install=install
529 _ranlib=ranlib
530 _windres=windres
531 _cc=cc
532 _ar=ar
533 test "$CC" && _cc="$CC"
534 _as=auto
535 _nm=auto
536 _yasm=yasm
537 _runtime_cpudetection=no
538 _cross_compile=auto
539 _prefix="/usr/local"
540 _libavutil=auto
541 _libavcodec=auto
542 _libavformat=auto
543 _libpostproc=auto
544 _libswscale=auto
545 _libavcodec_internals=no
546 _libswscale_internals=no
547 _mencoder=yes
548 _mplayer=yes
549 _x11=auto
550 _xshape=auto
551 _xss=auto
552 _dga1=auto
553 _dga2=auto
554 _xv=auto
555 _xvmc=no #auto when complete
556 _vdpau=auto
557 _sdl=auto
558 _kva=auto
559 _direct3d=auto
560 _directx=auto
561 _win32waveout=auto
562 _nas=auto
563 _png=auto
564 _mng=auto
565 _jpeg=auto
566 _pnm=yes
567 _md5sum=yes
568 _yuv4mpeg=yes
569 _gif=auto
570 _gl=auto
571 matrixview=yes
572 _ggi=auto
573 _ggiwmh=auto
574 _aa=auto
575 _caca=auto
576 _svga=auto
577 _vesa=auto
578 _fbdev=auto
579 _dvb=auto
580 _dxr2=auto
581 _dxr3=auto
582 _ivtv=auto
583 _v4l2=auto
584 _iconv=auto
585 _langinfo=auto
586 _rtc=auto
587 _ossaudio=auto
588 _arts=auto
589 _esd=auto
590 _pulse=auto
591 _jack=auto
592 _kai=auto
593 _dart=auto
594 _openal=no
595 _libcdio=auto
596 _liblzo=auto
597 _mad=auto
598 _mp3lame=auto
599 _toolame=auto
600 _twolame=auto
601 _tremor=auto
602 _tremor_internal=yes
603 _tremor_low=no
604 _libvorbis=auto
605 _speex=auto
606 _theora=auto
607 _mpg123=auto
608 _mp3lib=auto
609 _liba52=auto
610 _libdca=auto
611 _libmpeg2=auto
612 _faad=auto
613 _faad_internal=auto
614 _faad_fixed=no
615 _faac=auto
616 _ladspa=auto
617 _libbs2b=auto
618 _xmms=no
619 _vcd=auto
620 _bluray=auto
621 _dvdnav=auto
622 _dvdnavconfig=dvdnav-config
623 _dvdreadconfig=dvdread-config
624 _dvdread=auto
625 _dvdread_internal=auto
626 _libdvdcss_internal=auto
627 _xanim=auto
628 _real=auto
629 _live=auto
630 _nemesi=auto
631 _native_rtsp=yes
632 _xinerama=auto
633 _mga=auto
634 _xmga=auto
635 _vm=auto
636 _xf86keysym=auto
637 _mlib=no #broken, thus disabled
638 _sgiaudio=auto
639 _sunaudio=auto
640 _alsa=auto
641 _fastmemcpy=yes
642 _unrar_exec=auto
643 _win32dll=auto
644 _select=yes
645 _radio=no
646 _radio_capture=no
647 _radio_v4l=auto
648 _radio_v4l2=auto
649 _radio_bsdbt848=auto
650 _tv=yes
651 _tv_v4l1=auto
652 _tv_v4l2=auto
653 _tv_bsdbt848=auto
654 _tv_dshow=auto
655 _pvr=auto
656 networking=yes
657 _winsock2_h=auto
658 _smb=auto
659 _vidix=auto
660 _vidix_pcidb=yes
661 _dhahelper=no
662 _svgalib_helper=no
663 _joystick=no
664 _xvid=auto
665 _x264=auto
666 _libnut=auto
667 _lirc=auto
668 _lircc=auto
669 _apple_remote=auto
670 _apple_ir=auto
671 _gui=no
672 _gtk1=no
673 _termcap=auto
674 _termios=auto
675 _3dfx=no
676 _s3fb=no
677 _wii=no
678 _tdfxfb=no
679 _tdfxvid=no
680 _xvr100=auto
681 _tga=yes
682 _directfb=auto
683 _zr=auto
684 _bl=no
685 _largefiles=yes
686 #language=en
687 _shm=auto
688 _translation=no
689 _charset="UTF-8"
690 _dynamic_plugins=no
691 _crash_debug=no
692 _sighandler=yes
693 _libdv=auto
694 _cdparanoia=auto
695 _cddb=auto
696 _big_endian=auto
697 _bitmap_font=yes
698 _freetype=auto
699 _fontconfig=auto
700 _menu=no
701 _qtx=auto
702 _maemo=auto
703 _coreaudio=auto
704 _corevideo=auto
705 _quartz=auto
706 quicktime=auto
707 _macosx_finder=no
708 _macosx_bundle=auto
709 _sortsub=yes
710 _freetypeconfig='freetype-config'
711 _fribidi=auto
712 _enca=auto
713 _inet6=auto
714 _gethostbyname2=auto
715 _ftp=yes
716 _musepack=auto
717 _vstream=auto
718 _pthreads=auto
719 _w32threads=auto
720 _ass=auto
721 _rpath=no
722 _asmalign_pot=auto
723 _stream_cache=yes
724 _priority=no
725 def_dos_paths="#define HAVE_DOS_PATHS 0"
726 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
727 def_priority="#undef CONFIG_PRIORITY"
728 def_pthread_cache="#undef PTHREAD_CACHE"
729 _need_shmem=yes
730 for ac_option do
731 case "$ac_option" in
732 --help|-help|-h)
733 show_help
735 --prefix=*)
736 _prefix=$(echo $ac_option | cut -d '=' -f 2)
738 --bindir=*)
739 _bindir=$(echo $ac_option | cut -d '=' -f 2)
741 --datadir=*)
742 _datadir=$(echo $ac_option | cut -d '=' -f 2)
744 --mandir=*)
745 _mandir=$(echo $ac_option | cut -d '=' -f 2)
747 --confdir=*)
748 _confdir=$(echo $ac_option | cut -d '=' -f 2)
750 --libdir=*)
751 _libdir=$(echo $ac_option | cut -d '=' -f 2)
753 --codecsdir=*)
754 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
756 --localedir=*)
757 _localedir=$(echo $ac_option | cut -d '=' -f 2)
760 --with-install=*)
761 _install=$(echo $ac_option | cut -d '=' -f 2 )
763 --with-xvmclib=*)
764 _xvmclib=$(echo $ac_option | cut -d '=' -f 2)
767 --with-sdl-config=*)
768 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
770 --with-freetype-config=*)
771 _freetypeconfig=$(echo $ac_option | cut -d '=' -f 2)
773 --with-gtk-config=*)
774 _gtkconfig=$(echo $ac_option | cut -d '=' -f 2)
776 --with-glib-config=*)
777 _glibconfig=$(echo $ac_option | cut -d '=' -f 2)
779 --with-dvdnav-config=*)
780 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
782 --with-dvdread-config=*)
783 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
786 --extra-cflags=*)
787 extra_cflags="$extra_cflags $(echo $ac_option | cut -d '=' -f 2-)"
789 --extra-ldflags=*)
790 extra_ldflags="$extra_ldflags $(echo $ac_option | cut -d '=' -f 2-)"
792 --extra-libs=*)
793 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
795 --extra-libs-mplayer=*)
796 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
798 --extra-libs-mencoder=*)
799 libs_mencoder=$(echo $ac_option | cut -d '=' -f 2)
802 --target=*)
803 _target=$(echo $ac_option | cut -d '=' -f 2)
805 --cc=*)
806 _cc=$(echo $ac_option | cut -d '=' -f 2)
808 --host-cc=*)
809 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
811 --as=*)
812 _as=$(echo $ac_option | cut -d '=' -f 2)
814 --nm=*)
815 _nm=$(echo $ac_option | cut -d '=' -f 2)
817 --yasm=*)
818 _yasm=$(echo $ac_option | cut -d '=' -f 2)
820 --ar=*)
821 _ar=$(echo $ac_option | cut -d '=' -f 2)
823 --ranlib=*)
824 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
826 --windres=*)
827 _windres=$(echo $ac_option | cut -d '=' -f 2)
829 --charset=*)
830 _charset=$(echo $ac_option | cut -d '=' -f 2)
832 --language-doc=*)
833 language_doc=$(echo $ac_option | cut -d '=' -f 2)
835 --language-man=*)
836 language_man=$(echo $ac_option | cut -d '=' -f 2)
838 --language-msg=*)
839 language_msg=$(echo $ac_option | cut -d '=' -f 2)
841 --language=*)
842 language=$(echo $ac_option | cut -d '=' -f 2)
845 --enable-static)
846 _ld_static='-static'
848 --disable-static)
849 _ld_static=''
851 --enable-profile)
852 _profile='-p'
854 --disable-profile)
855 _profile=
857 --enable-debug)
858 _debug='-g'
860 --enable-debug=*)
861 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
863 --disable-debug)
864 _debug=
866 --enable-translation) _translation=yes ;;
867 --disable-translation) _translation=no ;;
868 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
869 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
870 --enable-cross-compile) _cross_compile=yes ;;
871 --disable-cross-compile) _cross_compile=no ;;
872 --enable-mencoder) _mencoder=yes ;;
873 --disable-mencoder) _mencoder=no ;;
874 --enable-mplayer) _mplayer=yes ;;
875 --disable-mplayer) _mplayer=no ;;
876 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
877 --disable-dynamic-plugins) _dynamic_plugins=no ;;
878 --enable-x11) _x11=yes ;;
879 --disable-x11) _x11=no ;;
880 --enable-xshape) _xshape=yes ;;
881 --disable-xshape) _xshape=no ;;
882 --enable-xss) _xss=yes ;;
883 --disable-xss) _xss=no ;;
884 --enable-xv) _xv=yes ;;
885 --disable-xv) _xv=no ;;
886 --enable-xvmc) _xvmc=yes ;;
887 --disable-xvmc) _xvmc=no ;;
888 --enable-vdpau) _vdpau=yes ;;
889 --disable-vdpau) _vdpau=no ;;
890 --enable-sdl) _sdl=yes ;;
891 --disable-sdl) _sdl=no ;;
892 --enable-kva) _kva=yes ;;
893 --disable-kva) _kva=no ;;
894 --enable-direct3d) _direct3d=yes ;;
895 --disable-direct3d) _direct3d=no ;;
896 --enable-directx) _directx=yes ;;
897 --disable-directx) _directx=no ;;
898 --enable-win32waveout) _win32waveout=yes ;;
899 --disable-win32waveout) _win32waveout=no ;;
900 --enable-nas) _nas=yes ;;
901 --disable-nas) _nas=no ;;
902 --enable-png) _png=yes ;;
903 --disable-png) _png=no ;;
904 --enable-mng) _mng=yes ;;
905 --disable-mng) _mng=no ;;
906 --enable-jpeg) _jpeg=yes ;;
907 --disable-jpeg) _jpeg=no ;;
908 --enable-pnm) _pnm=yes ;;
909 --disable-pnm) _pnm=no ;;
910 --enable-md5sum) _md5sum=yes ;;
911 --disable-md5sum) _md5sum=no ;;
912 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
913 --disable-yuv4mpeg) _yuv4mpeg=no ;;
914 --enable-gif) _gif=yes ;;
915 --disable-gif) _gif=no ;;
916 --enable-gl) _gl=yes ;;
917 --disable-gl) _gl=no ;;
918 --enable-matrixview) matrixview=yes ;;
919 --disable-matrixview) matrixview=no ;;
920 --enable-ggi) _ggi=yes ;;
921 --disable-ggi) _ggi=no ;;
922 --enable-ggiwmh) _ggiwmh=yes ;;
923 --disable-ggiwmh) _ggiwmh=no ;;
924 --enable-aa) _aa=yes ;;
925 --disable-aa) _aa=no ;;
926 --enable-caca) _caca=yes ;;
927 --disable-caca) _caca=no ;;
928 --enable-svga) _svga=yes ;;
929 --disable-svga) _svga=no ;;
930 --enable-vesa) _vesa=yes ;;
931 --disable-vesa) _vesa=no ;;
932 --enable-fbdev) _fbdev=yes ;;
933 --disable-fbdev) _fbdev=no ;;
934 --enable-dvb) _dvb=yes ;;
935 --disable-dvb) _dvb=no ;;
936 --enable-dxr2) _dxr2=yes ;;
937 --disable-dxr2) _dxr2=no ;;
938 --enable-dxr3) _dxr3=yes ;;
939 --disable-dxr3) _dxr3=no ;;
940 --enable-ivtv) _ivtv=yes ;;
941 --disable-ivtv) _ivtv=no ;;
942 --enable-v4l2) _v4l2=yes ;;
943 --disable-v4l2) _v4l2=no ;;
944 --enable-iconv) _iconv=yes ;;
945 --disable-iconv) _iconv=no ;;
946 --enable-langinfo) _langinfo=yes ;;
947 --disable-langinfo) _langinfo=no ;;
948 --enable-rtc) _rtc=yes ;;
949 --disable-rtc) _rtc=no ;;
950 --enable-libdv) _libdv=yes ;;
951 --disable-libdv) _libdv=no ;;
952 --enable-ossaudio) _ossaudio=yes ;;
953 --disable-ossaudio) _ossaudio=no ;;
954 --enable-arts) _arts=yes ;;
955 --disable-arts) _arts=no ;;
956 --enable-esd) _esd=yes ;;
957 --disable-esd) _esd=no ;;
958 --enable-pulse) _pulse=yes ;;
959 --disable-pulse) _pulse=no ;;
960 --enable-jack) _jack=yes ;;
961 --disable-jack) _jack=no ;;
962 --enable-openal) _openal=yes ;;
963 --disable-openal) _openal=no ;;
964 --enable-kai) _kai=yes ;;
965 --disable-kai) _kai=no ;;
966 --enable-dart) _dart=yes ;;
967 --disable-dart) _dart=no ;;
968 --enable-mad) _mad=yes ;;
969 --disable-mad) _mad=no ;;
970 --enable-mp3lame) _mp3lame=yes ;;
971 --disable-mp3lame) _mp3lame=no ;;
972 --enable-toolame) _toolame=yes ;;
973 --disable-toolame) _toolame=no ;;
974 --enable-twolame) _twolame=yes ;;
975 --disable-twolame) _twolame=no ;;
976 --enable-libcdio) _libcdio=yes ;;
977 --disable-libcdio) _libcdio=no ;;
978 --enable-liblzo) _liblzo=yes ;;
979 --disable-liblzo) _liblzo=no ;;
980 --enable-libvorbis) _libvorbis=yes ;;
981 --disable-libvorbis) _libvorbis=no ;;
982 --enable-speex) _speex=yes ;;
983 --disable-speex) _speex=no ;;
984 --enable-tremor) _tremor=yes ;;
985 --disable-tremor) _tremor=no ;;
986 --enable-tremor-internal) _tremor_internal=yes ;;
987 --disable-tremor-internal) _tremor_internal=no ;;
988 --enable-tremor-low) _tremor_low=yes ;;
989 --disable-tremor-low) _tremor_low=no ;;
990 --enable-theora) _theora=yes ;;
991 --disable-theora) _theora=no ;;
992 --enable-mpg123) _mpg123=yes ;;
993 --disable-mpg123) _mpg123=no ;;
994 --enable-mp3lib) _mp3lib=yes ;;
995 --disable-mp3lib) _mp3lib=no ;;
996 --enable-liba52) _liba52=yes ;;
997 --disable-liba52) _liba52=no ;;
998 --enable-libdca) _libdca=yes ;;
999 --disable-libdca) _libdca=no ;;
1000 --enable-libmpeg2) _libmpeg2=yes ;;
1001 --disable-libmpeg2) _libmpeg2=no ;;
1002 --enable-musepack) _musepack=yes ;;
1003 --disable-musepack) _musepack=no ;;
1004 --enable-faad) _faad=yes ;;
1005 --disable-faad) _faad=no ;;
1006 --enable-faad-internal) _faad_internal=yes ;;
1007 --disable-faad-internal) _faad_internal=no ;;
1008 --enable-faad-fixed) _faad_fixed=yes ;;
1009 --disable-faad-fixed) _faad_fixed=no ;;
1010 --enable-faac) _faac=yes ;;
1011 --disable-faac) _faac=no ;;
1012 --enable-ladspa) _ladspa=yes ;;
1013 --disable-ladspa) _ladspa=no ;;
1014 --enable-libbs2b) _libbs2b=yes ;;
1015 --disable-libbs2b) _libbs2b=no ;;
1016 --enable-xmms) _xmms=yes ;;
1017 --disable-xmms) _xmms=no ;;
1018 --enable-vcd) _vcd=yes ;;
1019 --disable-vcd) _vcd=no ;;
1020 --enable-bluray) _bluray=yes ;;
1021 --disable-bluray) _bluray=no ;;
1022 --enable-dvdread) _dvdread=yes ;;
1023 --disable-dvdread) _dvdread=no ;;
1024 --enable-dvdread-internal) _dvdread_internal=yes ;;
1025 --disable-dvdread-internal) _dvdread_internal=no ;;
1026 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
1027 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
1028 --enable-dvdnav) _dvdnav=yes ;;
1029 --disable-dvdnav) _dvdnav=no ;;
1030 --enable-xanim) _xanim=yes ;;
1031 --disable-xanim) _xanim=no ;;
1032 --enable-real) _real=yes ;;
1033 --disable-real) _real=no ;;
1034 --enable-live) _live=yes ;;
1035 --disable-live) _live=no ;;
1036 --enable-nemesi) _nemesi=yes ;;
1037 --disable-nemesi) _nemesi=no ;;
1038 --enable-xinerama) _xinerama=yes ;;
1039 --disable-xinerama) _xinerama=no ;;
1040 --enable-mga) _mga=yes ;;
1041 --disable-mga) _mga=no ;;
1042 --enable-xmga) _xmga=yes ;;
1043 --disable-xmga) _xmga=no ;;
1044 --enable-vm) _vm=yes ;;
1045 --disable-vm) _vm=no ;;
1046 --enable-xf86keysym) _xf86keysym=yes ;;
1047 --disable-xf86keysym) _xf86keysym=no ;;
1048 --enable-mlib) _mlib=yes ;;
1049 --disable-mlib) _mlib=no ;;
1050 --enable-sunaudio) _sunaudio=yes ;;
1051 --disable-sunaudio) _sunaudio=no ;;
1052 --enable-sgiaudio) _sgiaudio=yes ;;
1053 --disable-sgiaudio) _sgiaudio=no ;;
1054 --enable-alsa) _alsa=yes ;;
1055 --disable-alsa) _alsa=no ;;
1056 --enable-tv) _tv=yes ;;
1057 --disable-tv) _tv=no ;;
1058 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1059 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1060 --enable-tv-v4l1) _tv_v4l1=yes ;;
1061 --disable-tv-v4l1) _tv_v4l1=no ;;
1062 --enable-tv-v4l2) _tv_v4l2=yes ;;
1063 --disable-tv-v4l2) _tv_v4l2=no ;;
1064 --enable-tv-dshow) _tv_dshow=yes ;;
1065 --disable-tv-dshow) _tv_dshow=no ;;
1066 --enable-radio) _radio=yes ;;
1067 --enable-radio-capture) _radio_capture=yes ;;
1068 --disable-radio-capture) _radio_capture=no ;;
1069 --disable-radio) _radio=no ;;
1070 --enable-radio-v4l) _radio_v4l=yes ;;
1071 --disable-radio-v4l) _radio_v4l=no ;;
1072 --enable-radio-v4l2) _radio_v4l2=yes ;;
1073 --disable-radio-v4l2) _radio_v4l2=no ;;
1074 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1075 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1076 --enable-pvr) _pvr=yes ;;
1077 --disable-pvr) _pvr=no ;;
1078 --enable-fastmemcpy) _fastmemcpy=yes ;;
1079 --disable-fastmemcpy) _fastmemcpy=no ;;
1080 --enable-networking) networking=yes ;;
1081 --disable-networking) networking=no ;;
1082 --enable-winsock2_h) _winsock2_h=yes ;;
1083 --disable-winsock2_h) _winsock2_h=no ;;
1084 --enable-smb) _smb=yes ;;
1085 --disable-smb) _smb=no ;;
1086 --enable-vidix) _vidix=yes ;;
1087 --disable-vidix) _vidix=no ;;
1088 --with-vidix-drivers=*)
1089 _vidix_drivers=$(echo $ac_option | cut -d '=' -f 2)
1091 --disable-vidix-pcidb) _vidix_pcidb=no ;;
1092 --enable-dhahelper) _dhahelper=yes ;;
1093 --disable-dhahelper) _dhahelper=no ;;
1094 --enable-svgalib_helper) _svgalib_helper=yes ;;
1095 --disable-svgalib_helper) _svgalib_helper=no ;;
1096 --enable-joystick) _joystick=yes ;;
1097 --disable-joystick) _joystick=no ;;
1098 --enable-xvid) _xvid=yes ;;
1099 --disable-xvid) _xvid=no ;;
1100 --enable-x264) _x264=yes ;;
1101 --disable-x264) _x264=no ;;
1102 --enable-libnut) _libnut=yes ;;
1103 --disable-libnut) _libnut=no ;;
1104 --enable-libavutil) _libavutil=yes ;;
1105 --disable-libavutil) _libavutil=no ;;
1106 --enable-libavcodec) _libavcodec=yes ;;
1107 --disable-libavcodec) _libavcodec=no ;;
1108 --enable-libavformat) _libavformat=yes ;;
1109 --disable-libavformat) _libavformat=no ;;
1110 --enable-libpostproc) _libpostproc=yes ;;
1111 --disable-libpostproc) _libpostproc=no ;;
1112 --enable-libswscale) _libswscale=yes ;;
1113 --disable-libswscale) _libswscale=no ;;
1114 --ffmpeg-source-dir=*)
1115 _ffmpeg_source=$(echo $ac_option | cut -d '=' -f 2 ) ;;
1117 --enable-lirc) _lirc=yes ;;
1118 --disable-lirc) _lirc=no ;;
1119 --enable-lircc) _lircc=yes ;;
1120 --disable-lircc) _lircc=no ;;
1121 --enable-apple-remote) _apple_remote=yes ;;
1122 --disable-apple-remote) _apple_remote=no ;;
1123 --enable-apple-ir) _apple_ir=yes ;;
1124 --disable-apple-ir) _apple_ir=no ;;
1125 --enable-gui) _gui=yes ;;
1126 --disable-gui) _gui=no ;;
1127 --enable-gtk1) _gtk1=yes ;;
1128 --disable-gtk1) _gtk1=no ;;
1129 --enable-termcap) _termcap=yes ;;
1130 --disable-termcap) _termcap=no ;;
1131 --enable-termios) _termios=yes ;;
1132 --disable-termios) _termios=no ;;
1133 --enable-3dfx) _3dfx=yes ;;
1134 --disable-3dfx) _3dfx=no ;;
1135 --enable-s3fb) _s3fb=yes ;;
1136 --disable-s3fb) _s3fb=no ;;
1137 --enable-wii) _wii=yes ;;
1138 --disable-wii) _wii=no ;;
1139 --enable-tdfxfb) _tdfxfb=yes ;;
1140 --disable-tdfxfb) _tdfxfb=no ;;
1141 --disable-tdfxvid) _tdfxvid=no ;;
1142 --enable-tdfxvid) _tdfxvid=yes ;;
1143 --disable-xvr100) _xvr100=no ;;
1144 --enable-xvr100) _xvr100=yes ;;
1145 --disable-tga) _tga=no ;;
1146 --enable-tga) _tga=yes ;;
1147 --enable-directfb) _directfb=yes ;;
1148 --disable-directfb) _directfb=no ;;
1149 --enable-zr) _zr=yes ;;
1150 --disable-zr) _zr=no ;;
1151 --enable-bl) _bl=yes ;;
1152 --disable-bl) _bl=no ;;
1153 --enable-mtrr) _mtrr=yes ;;
1154 --disable-mtrr) _mtrr=no ;;
1155 --enable-largefiles) _largefiles=yes ;;
1156 --disable-largefiles) _largefiles=no ;;
1157 --enable-shm) _shm=yes ;;
1158 --disable-shm) _shm=no ;;
1159 --enable-select) _select=yes ;;
1160 --disable-select) _select=no ;;
1161 --enable-cdparanoia) _cdparanoia=yes ;;
1162 --disable-cdparanoia) _cdparanoia=no ;;
1163 --enable-cddb) _cddb=yes ;;
1164 --disable-cddb) _cddb=no ;;
1165 --enable-big-endian) _big_endian=yes ;;
1166 --disable-big-endian) _big_endian=no ;;
1167 --enable-bitmap-font) _bitmap_font=yes ;;
1168 --disable-bitmap-font) _bitmap_font=no ;;
1169 --enable-freetype) _freetype=yes ;;
1170 --disable-freetype) _freetype=no ;;
1171 --enable-fontconfig) _fontconfig=yes ;;
1172 --disable-fontconfig) _fontconfig=no ;;
1173 --enable-unrarexec) _unrar_exec=yes ;;
1174 --disable-unrarexec) _unrar_exec=no ;;
1175 --enable-ftp) _ftp=yes ;;
1176 --disable-ftp) _ftp=no ;;
1177 --enable-vstream) _vstream=yes ;;
1178 --disable-vstream) _vstream=no ;;
1179 --enable-pthreads) _pthreads=yes ;;
1180 --disable-pthreads) _pthreads=no ;;
1181 --enable-w32threads) _w32threads=yes ;;
1182 --disable-w32threads) _w32threads=no ;;
1183 --enable-ass) _ass=yes ;;
1184 --disable-ass) _ass=no ;;
1185 --enable-rpath) _rpath=yes ;;
1186 --disable-rpath) _rpath=no ;;
1188 --enable-fribidi) _fribidi=yes ;;
1189 --disable-fribidi) _fribidi=no ;;
1191 --enable-enca) _enca=yes ;;
1192 --disable-enca) _enca=no ;;
1194 --enable-inet6) _inet6=yes ;;
1195 --disable-inet6) _inet6=no ;;
1197 --enable-gethostbyname2) _gethostbyname2=yes ;;
1198 --disable-gethostbyname2) _gethostbyname2=no ;;
1200 --enable-dga1) _dga1=yes ;;
1201 --disable-dga1) _dga1=no ;;
1202 --enable-dga2) _dga2=yes ;;
1203 --disable-dga2) _dga2=no ;;
1205 --enable-menu) _menu=yes ;;
1206 --disable-menu) _menu=no ;;
1208 --enable-qtx) _qtx=yes ;;
1209 --disable-qtx) _qtx=no ;;
1211 --enable-coreaudio) _coreaudio=yes ;;
1212 --disable-coreaudio) _coreaudio=no ;;
1213 --enable-corevideo) _corevideo=yes ;;
1214 --disable-corevideo) _corevideo=no ;;
1215 --enable-quartz) _quartz=yes ;;
1216 --disable-quartz) _quartz=no ;;
1217 --enable-macosx-finder) _macosx_finder=yes ;;
1218 --disable-macosx-finder) _macosx_finder=no ;;
1219 --enable-macosx-bundle) _macosx_bundle=yes ;;
1220 --disable-macosx-bundle) _macosx_bundle=no ;;
1222 --enable-maemo) _maemo=yes ;;
1223 --disable-maemo) _maemo=no ;;
1225 --enable-sortsub) _sortsub=yes ;;
1226 --disable-sortsub) _sortsub=no ;;
1228 --enable-crash-debug) _crash_debug=yes ;;
1229 --disable-crash-debug) _crash_debug=no ;;
1230 --enable-sighandler) _sighandler=yes ;;
1231 --disable-sighandler) _sighandler=no ;;
1232 --enable-win32dll) _win32dll=yes ;;
1233 --disable-win32dll) _win32dll=no ;;
1235 --enable-sse) _sse=yes ;;
1236 --disable-sse) _sse=no ;;
1237 --enable-sse2) _sse2=yes ;;
1238 --disable-sse2) _sse2=no ;;
1239 --enable-ssse3) _ssse3=yes ;;
1240 --disable-ssse3) _ssse3=no ;;
1241 --enable-mmxext) _mmxext=yes ;;
1242 --disable-mmxext) _mmxext=no ;;
1243 --enable-3dnow) _3dnow=yes ;;
1244 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1245 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1246 --disable-3dnowext) _3dnowext=no ;;
1247 --enable-cmov) _cmov=yes ;;
1248 --disable-cmov) _cmov=no ;;
1249 --enable-fast-cmov) _fast_cmov=yes ;;
1250 --disable-fast-cmov) _fast_cmov=no ;;
1251 --enable-fast-clz) _fast_clz=yes ;;
1252 --disable-fast-clz) _fast_clz=no ;;
1253 --enable-altivec) _altivec=yes ;;
1254 --disable-altivec) _altivec=no ;;
1255 --enable-armv5te) _armv5te=yes ;;
1256 --disable-armv5te) _armv5te=no ;;
1257 --enable-armv6) _armv6=yes ;;
1258 --disable-armv6) _armv6=no ;;
1259 --enable-armv6t2) _armv6t2=yes ;;
1260 --disable-armv6t2) _armv6t2=no ;;
1261 --enable-armvfp) _armvfp=yes ;;
1262 --disable-armvfp) _armvfp=no ;;
1263 --enable-neon) neon=yes ;;
1264 --disable-neon) neon=no ;;
1265 --enable-iwmmxt) _iwmmxt=yes ;;
1266 --disable-iwmmxt) _iwmmxt=no ;;
1267 --enable-mmx) _mmx=yes ;;
1268 --disable-mmx) # 3Dnow! and MMX2 require MMX
1269 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1272 echo "Unknown parameter: $ac_option"
1273 exit 1
1276 esac
1277 done
1279 if test "$_gui" = yes ; then
1280 die "Internal GUI was removed from MPlayer. Please use one of many available\n frontends\
1281 (http://www.mplayerhq.hu/design7/projects.html#mplayer_frontends)."
1284 # Atmos: moved this here, to be correct, if --prefix is specified
1285 test -z "$_bindir" && _bindir="$_prefix/bin"
1286 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1287 test -z "$_mandir" && _mandir="$_prefix/share/man"
1288 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1289 test -z "$_libdir" && _libdir="$_prefix/lib"
1290 test -z "$_localedir" && _localedir="$_prefix/share/locale"
1292 # Determine our OS name and CPU architecture
1293 if test -z "$_target" ; then
1294 # OS name
1295 system_name=$(uname -s 2>&1)
1296 case "$system_name" in
1297 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1299 Haiku)
1300 system_name=BeOS
1302 IRIX*)
1303 system_name=IRIX
1305 GNU/kFreeBSD)
1306 system_name=FreeBSD
1308 HP-UX*)
1309 system_name=HP-UX
1311 [cC][yY][gG][wW][iI][nN]*)
1312 system_name=CYGWIN
1314 MINGW32*)
1315 system_name=MINGW32
1317 OS/2*)
1318 system_name=OS/2
1321 system_name="$system_name-UNKNOWN"
1323 esac
1326 # host's CPU/instruction set
1327 host_arch=$(uname -p 2>&1)
1328 case "$host_arch" in
1329 i386|sparc|ppc|alpha|arm|mips|vax)
1331 powerpc) # Darwin returns 'powerpc'
1332 host_arch=ppc
1334 *) # uname -p on Linux returns 'unknown' for the processor type,
1335 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1337 # Maybe uname -m (machine hardware name) returns something we
1338 # recognize.
1340 # x86/x86pc is used by QNX
1341 case "$(uname -m 2>&1)" in
1342 x86_64|amd64|i[3-9]86*|x86|x86pc|k5|k6|k6_2|k6_3|k6-2|k6-3|pentium*|athlon*|i586_i686|i586-i686|BePC) host_arch=i386 ;;
1343 ia64) host_arch=ia64 ;;
1344 macppc|ppc) host_arch=ppc ;;
1345 ppc64) host_arch=ppc64 ;;
1346 alpha) host_arch=alpha ;;
1347 sparc) host_arch=sparc ;;
1348 sparc64) host_arch=sparc64 ;;
1349 parisc*|hppa*|9000*) host_arch=hppa ;;
1350 arm*|zaurus|cats) host_arch=arm ;;
1351 sh3|sh4|sh4a) host_arch=sh ;;
1352 s390) host_arch=s390 ;;
1353 s390x) host_arch=s390x ;;
1354 *mips*) host_arch=mips ;;
1355 vax) host_arch=vax ;;
1356 xtensa*) host_arch=xtensa ;;
1357 *) host_arch=UNKNOWN ;;
1358 esac
1360 esac
1361 else # if test -z "$_target"
1362 system_name=$(echo $_target | cut -d '-' -f 2)
1363 case "$(echo $system_name | tr A-Z a-z)" in
1364 linux) system_name=Linux ;;
1365 freebsd) system_name=FreeBSD ;;
1366 gnu/kfreebsd) system_name=FreeBSD ;;
1367 netbsd) system_name=NetBSD ;;
1368 bsd/os) system_name=BSD/OS ;;
1369 openbsd) system_name=OpenBSD ;;
1370 dragonfly) system_name=DragonFly ;;
1371 sunos) system_name=SunOS ;;
1372 qnx) system_name=QNX ;;
1373 morphos) system_name=MorphOS ;;
1374 amigaos) system_name=AmigaOS ;;
1375 mingw32*) system_name=MINGW32 ;;
1376 esac
1377 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1378 host_arch=$(echo $_target | cut -d '-' -f 1)
1379 if test $(echo $host_arch) != "x86_64" ; then
1380 host_arch=$(echo $host_arch | tr '_' '-')
1384 extra_cflags="-I. $extra_cflags"
1385 _timer=timer-linux.c
1386 _getch=getch2.c
1387 if freebsd ; then
1388 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1389 extra_cflags="$extra_cflags -I/usr/local/include"
1392 if netbsd || dragonfly ; then
1393 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1394 extra_cflags="$extra_cflags -I/usr/pkg/include"
1397 if darwin; then
1398 extra_cflags="-mdynamic-no-pic -falign-loops=16 -shared-libgcc $extra_cflags"
1399 _timer=timer-darwin.c
1402 if aix ; then
1403 extra_ldflags="$extra_ldflags -lC"
1406 if irix ; then
1407 _ranlib='ar -r'
1408 elif linux ; then
1409 _ranlib='true'
1412 if win32 ; then
1413 _exesuf=".exe"
1414 extra_cflags="$extra_cflags -fno-common"
1415 # -lwinmm is always needed for osdep/timer-win2.c
1416 extra_ldflags="$extra_ldflags -lwinmm"
1417 _pe_executable=yes
1418 _timer=timer-win2.c
1419 _priority=yes
1420 def_dos_paths="#define HAVE_DOS_PATHS 1"
1421 def_priority="#define CONFIG_PRIORITY 1"
1424 if mingw32 ; then
1425 _getch=getch2-win.c
1426 _need_shmem=no
1429 if amigaos ; then
1430 _select=no
1431 _sighandler=no
1432 _stream_cache=no
1433 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1434 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1437 if qnx ; then
1438 extra_ldflags="$extra_ldflags -lph"
1441 if os2 ; then
1442 _exesuf=".exe"
1443 _getch=getch2-os2.c
1444 _need_shmem=no
1445 _priority=yes
1446 def_dos_paths="#define HAVE_DOS_PATHS 1"
1447 def_priority="#define CONFIG_PRIORITY 1"
1450 for tmpdir in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1451 test "$tmpdir" && break
1452 done
1454 mplayer_tmpdir="$tmpdir/mplayer-configure-$RANDOM-$$"
1455 mkdir $mplayer_tmpdir || die "Unable to create tmpdir."
1457 TMPLOG="config.log"
1458 TMPC="$mplayer_tmpdir/tmp.c"
1459 TMPCPP="$mplayer_tmpdir/tmp.cpp"
1460 TMPEXE="$mplayer_tmpdir/tmp$_exesuf"
1461 TMPH="$mplayer_tmpdir/tmp.h"
1462 TMPS="$mplayer_tmpdir/tmp.S"
1464 rm -f "$TMPLOG"
1465 echo configuration: $configuration > "$TMPLOG"
1466 echo >> "$TMPLOG"
1469 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1470 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1474 # Checking CC version...
1475 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1476 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1477 echocheck "$_cc version"
1478 cc_vendor=intel
1479 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1480 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1481 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1482 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1483 # TODO verify older icc/ecc compatibility
1484 case $cc_version in
1486 cc_version="v. ?.??, bad"
1487 cc_fail=yes
1489 10.1|11.0|11.1)
1490 cc_version="$cc_version, ok"
1493 cc_version="$cc_version, bad"
1494 cc_fail=yes
1496 esac
1497 echores "$cc_version"
1498 else
1499 for _cc in "$_cc" gcc cc ; do
1500 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1501 if test "$cc_name_tmp" = "gcc"; then
1502 cc_name=$cc_name_tmp
1503 echocheck "$_cc version"
1504 cc_vendor=gnu
1505 cc_version=$($_cc -dumpversion 2>&1)
1506 case $cc_version in
1507 2.96*)
1508 cc_fail=yes
1511 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1512 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1513 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1515 esac
1516 echores "$cc_version"
1517 break
1519 cc_name_tmp=$($_cc -v 2>&1 | head -n 1 | cut -d ' ' -f 1)
1520 if test "$cc_name_tmp" = "clang"; then
1521 echocheck "$_cc version"
1522 cc_vendor=clang
1523 cc_version=$($_cc -dumpversion 2>&1)
1524 res_comment="experimental support only"
1525 echores "clang $cc_version"
1526 break
1528 cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
1529 if test "$cc_name_tmp" = "Sun C"; then
1530 echocheck "$_cc version"
1531 cc_vendor=sun
1532 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 4)
1533 res_comment="experimental support only"
1534 echores "Sun C $cc_version"
1535 break
1537 done
1538 fi # icc
1539 test "$cc_fail" = yes && die "unsupported compiler version"
1541 if test -z "$_target" && x86 ; then
1542 cat > $TMPC << EOF
1543 int main(void) {
1544 int test[(int)sizeof(char *)-7];
1545 return 0;
1548 cc_check && host_arch=x86_64 || host_arch=i386
1551 echo "Detected operating system: $system_name"
1552 echo "Detected host architecture: $host_arch"
1554 echocheck "host cc"
1555 test "$_host_cc" || _host_cc=$_cc
1556 echores $_host_cc
1558 echocheck "cross compilation"
1559 if test $_cross_compile = auto ; then
1560 _cross_compile=yes
1561 cflag_check "" && "$TMPEXE" && _cross_compile=no
1563 echores $_cross_compile
1565 if test $_cross_compile = yes; then
1566 tmp_run() {
1567 return 0
1571 # ---
1573 # now that we know what compiler should be used for compilation, try to find
1574 # out which assembler is used by the $_cc compiler
1575 if test "$_as" = auto ; then
1576 _as=$($_cc -print-prog-name=as)
1577 test -z "$_as" && _as=as
1580 if test "$_nm" = auto ; then
1581 _nm=$($_cc -print-prog-name=nm)
1582 test -z "$_nm" && _nm=nm
1585 # XXX: this should be ok..
1586 _cpuinfo="echo"
1588 if test "$_runtime_cpudetection" = no ; then
1590 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1591 # FIXME: Remove the cygwin check once AMD CPUs are supported
1592 if test -r /proc/cpuinfo && ! cygwin; then
1593 # Linux with /proc mounted, extract CPU information from it
1594 _cpuinfo="cat /proc/cpuinfo"
1595 elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
1596 # FreeBSD with Linux emulation /proc mounted,
1597 # extract CPU information from it
1598 # Don't use it on x86 though, it never reports 3Dnow
1599 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1600 elif darwin && ! x86 ; then
1601 # use hostinfo on Darwin
1602 _cpuinfo="hostinfo"
1603 elif aix; then
1604 # use 'lsattr' on AIX
1605 _cpuinfo="lsattr -E -l proc0 -a type"
1606 elif x86; then
1607 # all other OSes try to extract CPU information from a small helper
1608 # program cpuinfo instead
1609 $_cc -o cpuinfo$_exesuf cpuinfo.c
1610 _cpuinfo="./cpuinfo$_exesuf"
1613 if x86 ; then
1614 # gather more CPU information
1615 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1616 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1617 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1618 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1619 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1621 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1623 pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1624 -e s/xmm/sse/ -e s/kni/sse/)
1626 for ext in $pparam ; do
1627 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1628 done
1630 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1631 test $_sse = kernel_check && _mmxext=kernel_check
1633 echocheck "CPU vendor"
1634 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1636 echocheck "CPU type"
1637 echores "$pname"
1640 fi # test "$_runtime_cpudetection" = no
1642 if x86 && test "$_runtime_cpudetection" = no ; then
1643 extcheck() {
1644 if test "$1" = kernel_check ; then
1645 echocheck "kernel support of $2"
1646 cat > $TMPC <<EOF
1647 #include <stdlib.h>
1648 #include <signal.h>
1649 void catch(int sig) { exit(1); }
1650 int main(void) {
1651 signal(SIGILL, catch);
1652 __asm__ volatile ("$3":::"memory"); return 0;
1656 if cc_check && tmp_run ; then
1657 eval _$2=yes
1658 echores "yes"
1659 _optimizing="$_optimizing $2"
1660 return 0
1661 else
1662 eval _$2=no
1663 echores "failed"
1664 echo "It seems that your kernel does not correctly support $2."
1665 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1666 return 1
1669 return 0
1672 extcheck $_mmx "mmx" "emms"
1673 extcheck $_mmxext "mmxext" "sfence"
1674 extcheck $_3dnow "3dnow" "femms"
1675 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1676 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1677 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1678 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1679 extcheck $_cmov "cmov" "cmovb %%eax,%%ebx"
1681 echocheck "mtrr support"
1682 if test "$_mtrr" = kernel_check ; then
1683 _mtrr="yes"
1684 _optimizing="$_optimizing mtrr"
1686 echores "$_mtrr"
1688 if test "$_gcc3_ext" != ""; then
1689 # if we had to disable sse/sse2 because the active kernel does not
1690 # support this instruction set extension, we also have to tell
1691 # gcc3 to not generate sse/sse2 instructions for normal C code
1692 cflag_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1698 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1699 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1700 arch_all='X86 IA64 SPARC ARM AVR32 SH4 PPC ALPHA MIPS PA_RISC S390 S390X VAX BFIN XTENSA TOMI GENERIC'
1701 subarch_all='X86_32 X86_64 PPC64'
1702 case "$host_arch" in
1703 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1704 arch='x86'
1705 subarch='x86_32'
1706 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1707 iproc=486
1708 proc=i486
1711 if test "$_runtime_cpudetection" = no ; then
1712 case "$pvendor" in
1713 AuthenticAMD)
1714 case "$pfamily" in
1715 3) proc=i386 iproc=386 ;;
1716 4) proc=i486 iproc=486 ;;
1717 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1718 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1719 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1720 proc=k6-3
1721 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1722 proc=geode
1723 elif test "$pmodel" -ge 8; then
1724 proc=k6-2
1725 elif test "$pmodel" -ge 6; then
1726 proc=k6
1727 else
1728 proc=i586
1731 6) iproc=686
1732 # It's a bit difficult to determine the correct type of Family 6
1733 # AMD CPUs just from their signature. Instead, we check directly
1734 # whether it supports SSE.
1735 if test "$_sse" = yes; then
1736 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1737 proc=athlon-xp
1738 else
1739 # Again, gcc treats athlon and athlon-tbird similarly.
1740 proc=athlon
1743 15) iproc=686
1744 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1745 # caught and remedied in the optimization tests below.
1746 proc=k8
1749 *) proc=amdfam10 iproc=686
1750 test $_fast_clz = "auto" && _fast_clz=yes
1752 esac
1754 GenuineIntel)
1755 case "$pfamily" in
1756 3) proc=i386 iproc=386 ;;
1757 4) proc=i486 iproc=486 ;;
1758 5) iproc=586
1759 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1760 proc=pentium-mmx # 4 is desktop, 8 is mobile
1761 else
1762 proc=i586
1765 6) iproc=686
1766 if test "$pmodel" -ge 15; then
1767 proc=core2
1768 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1769 proc=pentium-m
1770 elif test "$pmodel" -ge 7; then
1771 proc=pentium3
1772 elif test "$pmodel" -ge 3; then
1773 proc=pentium2
1774 else
1775 proc=i686
1777 test $_fast_clz = "auto" && _fast_clz=yes
1779 15) iproc=686
1780 # A nocona in 32-bit mode has no more capabilities than a prescott.
1781 if test "$pmodel" -ge 3; then
1782 proc=prescott
1783 else
1784 proc=pentium4
1785 test $_fast_clz = "auto" && _fast_clz=yes
1787 test $_fast_cmov = "auto" && _fast_cmov=no
1789 *) proc=prescott iproc=686 ;;
1790 esac
1792 CentaurHauls)
1793 case "$pfamily" in
1794 5) iproc=586
1795 if test "$pmodel" -ge 8; then
1796 proc=winchip2
1797 elif test "$pmodel" -ge 4; then
1798 proc=winchip-c6
1799 else
1800 proc=i586
1803 6) iproc=686
1804 if test "$pmodel" -ge 9; then
1805 proc=c3-2
1806 else
1807 proc=c3
1808 iproc=586
1811 *) proc=i686 iproc=i686 ;;
1812 esac
1814 unknown)
1815 case "$pfamily" in
1816 3) proc=i386 iproc=386 ;;
1817 4) proc=i486 iproc=486 ;;
1818 *) proc=i586 iproc=586 ;;
1819 esac
1822 proc=i586 iproc=586 ;;
1823 esac
1824 test $_fast_clz = "auto" && _fast_clz=no
1825 fi # test "$_runtime_cpudetection" = no
1828 # check that gcc supports our CPU, if not, fall back to earlier ones
1829 # LGB: check -mcpu and -march swithing step by step with enabling
1830 # to fall back till 386.
1832 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1834 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1835 cpuopt=-mtune
1836 else
1837 cpuopt=-mcpu
1840 echocheck "GCC & CPU optimization abilities"
1841 if test "$_runtime_cpudetection" = no ; then
1842 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1843 cflag_check -march=native && proc=native
1845 if test "$proc" = "amdfam10"; then
1846 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1848 if test "$proc" = "k8"; then
1849 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1851 if test "$proc" = "athlon-xp"; then
1852 cflag_check -march=$proc $cpuopt=$proc || proc=athlon
1854 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1855 cflag_check -march=$proc $cpuopt=$proc || proc=k6
1857 if test "$proc" = "k6" || test "$proc" = "c3"; then
1858 if ! cflag_check -march=$proc $cpuopt=$proc; then
1859 if cflag_check -march=i586 $cpuopt=i686; then
1860 proc=i586-i686
1861 else
1862 proc=i586
1866 if test "$proc" = "prescott" ; then
1867 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
1869 if test "$proc" = "core2" ; then
1870 cflag_check -march=$proc $cpuopt=$proc || proc=pentium-m
1872 if test "$proc" = "pentium4" || test "$proc" = "pentium-m" || test "$proc" = "pentium3" || test "$proc" = "pentium2" || test "$proc" = "athlon" || test "$proc" = "c3-2" || test "$proc" = "geode"; then
1873 cflag_check -march=$proc $cpuopt=$proc || proc=i686
1875 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1876 cflag_check -march=$proc $cpuopt=$proc || proc=i586
1878 if test "$proc" = "i586"; then
1879 cflag_check -march=$proc $cpuopt=$proc || proc=i486
1881 if test "$proc" = "i486" ; then
1882 cflag_check -march=$proc $cpuopt=$proc || proc=i386
1884 if test "$proc" = "i386" ; then
1885 cflag_check -march=$proc $cpuopt=$proc || proc=error
1887 if test "$proc" = "error" ; then
1888 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1889 _mcpu=""
1890 _march=""
1891 _optimizing=""
1892 elif test "$proc" = "i586-i686"; then
1893 _march="-march=i586"
1894 _mcpu="$cpuopt=i686"
1895 _optimizing="$proc"
1896 else
1897 _march="-march=$proc"
1898 _mcpu="$cpuopt=$proc"
1899 _optimizing="$proc"
1901 else # if test "$_runtime_cpudetection" = no
1902 _mcpu="$cpuopt=generic"
1903 # at least i486 required, for bswap instruction
1904 _march="-march=i486"
1905 cflag_check $_mcpu || _mcpu="$cpuopt=i686"
1906 cflag_check $_mcpu || _mcpu=""
1907 cflag_check $_march $_mcpu || _march=""
1910 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1911 ## autodetected mcpu/march parameters
1912 if test "$_target" ; then
1913 # TODO: it may be a good idea to check GCC and fall back in all cases
1914 if test "$host_arch" = "i586-i686"; then
1915 _march="-march=i586"
1916 _mcpu="$cpuopt=i686"
1917 else
1918 _march="-march=$host_arch"
1919 _mcpu="$cpuopt=$host_arch"
1922 proc="$host_arch"
1924 case "$proc" in
1925 i386) iproc=386 ;;
1926 i486) iproc=486 ;;
1927 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1928 i686|athlon*|pentium*) iproc=686 ;;
1929 *) iproc=586 ;;
1930 esac
1933 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1934 _fast_cmov="yes"
1935 else
1936 _fast_cmov="no"
1938 test $_fast_clz = "auto" && _fast_clz=yes
1940 echores "$proc"
1943 ia64)
1944 arch='ia64'
1945 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1946 iproc='ia64'
1949 x86_64|amd64)
1950 arch='x86'
1951 subarch='x86_64'
1952 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1953 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1954 iproc='x86_64'
1956 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1957 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1958 cpuopt=-mtune
1959 else
1960 cpuopt=-mcpu
1962 if test "$_runtime_cpudetection" = no ; then
1963 case "$pvendor" in
1964 AuthenticAMD)
1965 case "$pfamily" in
1966 15) proc=k8
1967 test $_fast_clz = "auto" && _fast_clz=no
1969 *) proc=amdfam10;;
1970 esac
1972 GenuineIntel)
1973 case "$pfamily" in
1974 6) proc=core2;;
1976 # 64-bit prescotts exist, but as far as GCC is concerned they
1977 # have the same capabilities as a nocona.
1978 proc=nocona
1979 test $_fast_cmov = "auto" && _fast_cmov=no
1980 test $_fast_clz = "auto" && _fast_clz=no
1982 esac
1985 proc=error;;
1986 esac
1987 fi # test "$_runtime_cpudetection" = no
1989 echocheck "GCC & CPU optimization abilities"
1990 # This is a stripped-down version of the i386 fallback.
1991 if test "$_runtime_cpudetection" = no ; then
1992 if test $cc_vendor != "intel" && test $cc_vendor != "clang" ; then
1993 cflag_check -march=native && proc=native
1995 # --- AMD processors ---
1996 if test "$proc" = "amdfam10"; then
1997 cflag_check -march=$proc $cpuopt=$proc || proc=k8
1999 if test "$proc" = "k8"; then
2000 cflag_check -march=$proc $cpuopt=$proc || proc=athlon-xp
2002 # This will fail if gcc version < 3.3, which is ok because earlier
2003 # versions don't really support 64-bit on amd64.
2004 # Is this a valid assumption? -Corey
2005 if test "$proc" = "athlon-xp"; then
2006 cflag_check -march=$proc $cpuopt=$proc || proc=error
2008 # --- Intel processors ---
2009 if test "$proc" = "core2"; then
2010 cflag_check -march=$proc $cpuopt=$proc || proc=x86-64
2012 if test "$proc" = "x86-64"; then
2013 cflag_check -march=$proc $cpuopt=$proc || proc=nocona
2015 if test "$proc" = "nocona"; then
2016 cflag_check -march=$proc $cpuopt=$proc || proc=pentium4
2018 if test "$proc" = "pentium4"; then
2019 cflag_check -march=$proc $cpuopt=$proc || proc=error
2022 _march="-march=$proc"
2023 _mcpu="$cpuopt=$proc"
2024 if test "$proc" = "error" ; then
2025 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
2026 _mcpu=""
2027 _march=""
2029 else # if test "$_runtime_cpudetection" = no
2030 # x86-64 is an undocumented option, an intersection of k8 and nocona.
2031 _march="-march=x86-64"
2032 _mcpu="$cpuopt=generic"
2033 cflag_check $_mcpu || _mcpu="x86-64"
2034 cflag_check $_mcpu || _mcpu=""
2035 cflag_check $_march $_mcpu || _march=""
2038 _optimizing="$proc"
2039 test $_fast_cmov = "auto" && _fast_cmov=yes
2040 test $_fast_clz = "auto" && _fast_clz=yes
2042 echores "$proc"
2045 sparc|sparc64)
2046 arch='sparc'
2047 iproc='sparc'
2048 if test "$host_arch" = "sparc64" ; then
2049 _vis='yes'
2050 proc='ultrasparc'
2051 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2052 elif sunos ; then
2053 echocheck "CPU type"
2054 karch=$(uname -m)
2055 case "$(echo $karch)" in
2056 sun4) proc=v7 ;;
2057 sun4c) proc=v7 ;;
2058 sun4d) proc=v8 ;;
2059 sun4m) proc=v8 ;;
2060 sun4u) proc=ultrasparc _vis='yes' ;;
2061 sun4v) proc=v9 ;;
2062 *) proc=v8 ;;
2063 esac
2064 echores "$proc"
2065 else
2066 proc=v8
2068 _mcpu="-mcpu=$proc"
2069 _optimizing="$proc"
2072 arm*)
2073 arch='arm'
2074 iproc='arm'
2077 avr32)
2078 arch='avr32'
2079 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2080 iproc='avr32'
2081 test $_fast_clz = "auto" && _fast_clz=yes
2084 sh|sh4)
2085 arch='sh4'
2086 iproc='sh4'
2089 ppc|ppc64|powerpc|powerpc64)
2090 arch='ppc'
2091 def_dcbzl='#define HAVE_DCBZL 0'
2092 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2093 iproc='ppc'
2095 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2096 subarch='ppc64'
2097 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2099 echocheck "CPU type"
2100 case $system_name in
2101 Linux)
2102 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2103 if test -n "$($_cpuinfo | grep altivec)"; then
2104 test $_altivec = auto && _altivec=yes
2107 Darwin)
2108 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2109 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2110 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2111 test $_altivec = auto && _altivec=yes
2114 NetBSD)
2115 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2116 case $cc_version in
2117 2*|3.0*|3.1*|3.2*|3.3*)
2120 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2121 test $_altivec = auto && _altivec=yes
2124 esac
2126 AIX)
2127 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2129 esac
2130 if test "$_altivec" = yes; then
2131 echores "$proc altivec"
2132 else
2133 _altivec=no
2134 echores "$proc"
2137 echocheck "GCC & CPU optimization abilities"
2139 if test -n "$proc"; then
2140 case "$proc" in
2141 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2142 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2143 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2144 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2145 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2146 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2147 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2148 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2149 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2150 *) ;;
2151 esac
2152 # gcc 3.1(.1) and up supports 7400 and 7450
2153 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2154 case "$proc" in
2155 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2156 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2157 *) ;;
2158 esac
2160 # gcc 3.2 and up supports 970
2161 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2162 case "$proc" in
2163 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2164 def_dcbzl='#define HAVE_DCBZL 1' ;;
2165 *) ;;
2166 esac
2168 # gcc 3.3 and up supports POWER4
2169 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2170 case "$proc" in
2171 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2172 *) ;;
2173 esac
2175 # gcc 3.4 and up supports 440*
2176 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2177 case "$proc" in
2178 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2179 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2180 *) ;;
2181 esac
2183 # gcc 4.0 and up supports POWER5
2184 if test "$_cc_major" -ge "4"; then
2185 case "$proc" in
2186 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2187 *) ;;
2188 esac
2192 if test -n "$_mcpu"; then
2193 _optimizing=$(echo $_mcpu | cut -c 8-)
2194 echores "$_optimizing"
2195 else
2196 echores "none"
2199 test $_fast_clz = "auto" && _fast_clz=yes
2203 alpha*)
2204 arch='alpha'
2205 iproc='alpha'
2206 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2208 echocheck "CPU type"
2209 cat > $TMPC << EOF
2210 int main(void) {
2211 unsigned long ver, mask;
2212 __asm__ ("implver %0" : "=r" (ver));
2213 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2214 printf("%ld-%x\n", ver, ~mask);
2215 return 0;
2218 $_cc -o "$TMPEXE" "$TMPC"
2219 case $("$TMPEXE") in
2221 0-0) proc="ev4"; _mvi="0";;
2222 1-0) proc="ev5"; _mvi="0";;
2223 1-1) proc="ev56"; _mvi="0";;
2224 1-101) proc="pca56"; _mvi="1";;
2225 2-303) proc="ev6"; _mvi="1";;
2226 2-307) proc="ev67"; _mvi="1";;
2227 2-1307) proc="ev68"; _mvi="1";;
2228 esac
2229 echores "$proc"
2231 echocheck "GCC & CPU optimization abilities"
2232 if test "$proc" = "ev68" ; then
2233 cc_check -mcpu=$proc || proc=ev67
2235 if test "$proc" = "ev67" ; then
2236 cc_check -mcpu=$proc || proc=ev6
2238 _mcpu="-mcpu=$proc"
2239 echores "$proc"
2241 test $_fast_clz = "auto" && _fast_clz=yes
2243 _optimizing="$proc"
2246 mips)
2247 arch='mips'
2248 iproc='mips'
2250 if irix ; then
2251 echocheck "CPU type"
2252 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2253 case "$(echo $proc)" in
2254 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2255 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2256 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2257 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2258 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2259 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2260 esac
2261 # gcc < 3.x does not support -mtune.
2262 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2263 _mcpu=''
2265 echores "$proc"
2268 test $_fast_clz = "auto" && _fast_clz=yes
2272 hppa)
2273 arch='pa_risc'
2274 iproc='PA-RISC'
2277 s390)
2278 arch='s390'
2279 iproc='390'
2282 s390x)
2283 arch='s390x'
2284 iproc='390x'
2287 vax)
2288 arch='vax'
2289 iproc='vax'
2292 xtensa)
2293 arch='xtensa'
2294 iproc='xtensa'
2297 generic)
2298 arch='generic'
2302 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2303 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2304 die "unsupported architecture $host_arch"
2306 esac # case "$host_arch" in
2308 if test "$_runtime_cpudetection" = yes ; then
2309 if x86 ; then
2310 test "$_cmov" != no && _cmov=yes
2311 x86_32 && _cmov=no
2312 test "$_mmx" != no && _mmx=yes
2313 test "$_3dnow" != no && _3dnow=yes
2314 test "$_3dnowext" != no && _3dnowext=yes
2315 test "$_mmxext" != no && _mmxext=yes
2316 test "$_sse" != no && _sse=yes
2317 test "$_sse2" != no && _sse2=yes
2318 test "$_ssse3" != no && _ssse3=yes
2319 test "$_mtrr" != no && _mtrr=yes
2321 if ppc; then
2322 _altivec=yes
2327 # endian testing
2328 echocheck "byte order"
2329 if test "$_big_endian" = auto ; then
2330 cat > $TMPC <<EOF
2331 short ascii_name[] = { (('M'<<8)|'P'),(('l'<<8)|'a'),(('y'<<8)|'e'),(('r'<<8)|'B'),
2332 (('i'<<8)|'g'),(('E'<<8)|'n'),(('d'<<8)|'i'),(('a'<<8)|'n'),0};
2333 int main(void) { return (int)ascii_name; }
2335 if cc_check ; then
2336 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2337 _big_endian=yes
2338 else
2339 _big_endian=no
2341 else
2342 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2345 if test "$_big_endian" = yes ; then
2346 _byte_order='big-endian'
2347 def_words_endian='#define WORDS_BIGENDIAN 1'
2348 def_bigendian='#define HAVE_BIGENDIAN 1'
2349 else
2350 _byte_order='little-endian'
2351 def_words_endian='#undef WORDS_BIGENDIAN'
2352 def_bigendian='#define HAVE_BIGENDIAN 0'
2354 echores "$_byte_order"
2357 echocheck "extern symbol prefix"
2358 cat > $TMPC << EOF
2359 int ff_extern;
2361 cc_check -c || die "Symbol mangling check failed."
2362 sym=$($_nm -P -g $TMPEXE)
2363 extern_prefix=${sym%%ff_extern*}
2364 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2365 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2366 echores $extern_prefix
2369 echocheck "assembler support of -pipe option"
2370 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2371 cflag_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2374 echocheck "compiler support of named assembler arguments"
2375 _named_asm_args=yes
2376 def_named_asm_args="#define NAMED_ASM_ARGS 1"
2377 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2378 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2379 _named_asm_args=no
2380 def_named_asm_args="#undef NAMED_ASM_ARGS"
2382 echores $_named_asm_args
2385 if darwin && test "$cc_vendor" = "gnu" ; then
2386 echocheck "GCC support of -mstackrealign"
2387 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2388 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2389 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2390 # wrong code with this flag, but this can be worked around by adding
2391 # -fno-unit-at-a-time as described in the blog post at
2392 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2393 cat > $TMPC << EOF
2394 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2395 int main(void) { return foo3(1,2,3) == 3 ? 0 : 1; }
2397 cc_check -O2 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2398 test -z "$cflags_stackrealign" && cc_check -O2 -mstackrealign -fno-unit-at-a-time \
2399 && tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2400 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2401 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2404 # Checking for CFLAGS
2405 _install_strip="-s"
2406 if test "$_profile" != "" || test "$_debug" != "" ; then
2407 CFLAGS="-W -Wall -O2 $_march $_mcpu $_pipe $_debug $_profile"
2408 _install_strip=
2409 elif test -z "$CFLAGS" ; then
2410 if test "$cc_vendor" = "intel" ; then
2411 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer -wd167 -wd556 -wd144"
2412 elif test "$cc_vendor" = "sun" ; then
2413 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2414 elif test "$cc_vendor" != "gnu" ; then
2415 CFLAGS="-O2 $_march $_mcpu $_pipe"
2416 else
2417 CFLAGS="-Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2418 extra_ldflags="$extra_ldflags -ffast-math"
2420 else
2421 warn_cflags=yes
2424 if test "$cc_vendor" = "gnu" ; then
2425 cflag_check -std=gnu99 && CFLAGS="-std=gnu99 $CFLAGS"
2426 cflag_check -Wno-pointer-sign && CFLAGS="-Wno-pointer-sign $CFLAGS"
2427 cflag_check -Wdisabled-optimization && CFLAGS="-Wdisabled-optimization $CFLAGS"
2428 cflag_check -Wundef && CFLAGS="-Wundef $CFLAGS"
2429 cflag_check -Wmissing-prototypes && CFLAGS="-Wmissing-prototypes $CFLAGS"
2430 cflag_check -Wstrict-prototypes && CFLAGS="-Wstrict-prototypes $CFLAGS"
2431 else
2432 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2435 cflag_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2436 cflag_check -MD -MP && DEPFLAGS="-MD -MP $CFLAGS"
2439 if test -n "$LDFLAGS" ; then
2440 extra_ldflags="$extra_ldflags $LDFLAGS"
2441 warn_cflags=yes
2442 elif test "$cc_vendor" = "intel" ; then
2443 extra_ldflags="$extra_ldflags -i-static"
2445 if test -n "$CPPFLAGS" ; then
2446 extra_cflags="$extra_cflags $CPPFLAGS"
2447 warn_cflags=yes
2452 if x86_32 ; then
2453 # Checking assembler (_as) compatibility...
2454 # Added workaround for older as that reads from stdin by default - atmos
2455 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2456 echocheck "assembler ($_as $as_version)"
2458 _pref_as_version='2.9.1'
2459 echo 'nop' > $TMPS
2460 if test "$_mmx" = yes ; then
2461 echo 'emms' >> $TMPS
2463 if test "$_3dnow" = yes ; then
2464 _pref_as_version='2.10.1'
2465 echo 'femms' >> $TMPS
2467 if test "$_3dnowext" = yes ; then
2468 _pref_as_version='2.10.1'
2469 echo 'pswapd %mm0, %mm0' >> $TMPS
2471 if test "$_mmxext" = yes ; then
2472 _pref_as_version='2.10.1'
2473 echo 'movntq %mm0, (%eax)' >> $TMPS
2475 if test "$_sse" = yes ; then
2476 _pref_as_version='2.10.1'
2477 echo 'xorps %xmm0, %xmm0' >> $TMPS
2479 #if test "$_sse2" = yes ; then
2480 # _pref_as_version='2.11'
2481 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2483 if test "$_cmov" = yes ; then
2484 _pref_as_version='2.10.1'
2485 echo 'cmovb %eax, %ebx' >> $TMPS
2487 if test "$_ssse3" = yes ; then
2488 _pref_as_version='2.16.92'
2489 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2491 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2493 if test "$as_verc_fail" != yes ; then
2494 echores "ok"
2495 else
2496 res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2497 echores "failed"
2498 die "obsolete binutils version"
2501 fi #if x86_32
2503 echocheck ".align is a power of two"
2504 if test "$_asmalign_pot" = auto ; then
2505 _asmalign_pot=no
2506 cat > $TMPC << EOF
2507 int main(void) { __asm__ (".align 3"); return 0; }
2509 cc_check && _asmalign_pot=yes
2511 if test "$_asmalign_pot" = "yes" ; then
2512 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2513 else
2514 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2516 echores $_asmalign_pot
2519 echocheck "PIC"
2520 pic=no
2521 cat > $TMPC << EOF
2522 int main(void) {
2523 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2524 #error PIC not enabled
2525 #endif
2526 return 0;
2529 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2530 echores $pic
2533 if x86 ; then
2534 echocheck "10 assembler operands"
2535 ten_operands=no
2536 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2537 cat > $TMPC << EOF
2538 int main(void) {
2539 int x=0;
2540 __asm__ volatile(
2542 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2544 return 0;
2547 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2548 echores $ten_operands
2550 echocheck "ebx availability"
2551 ebx_available=no
2552 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2553 cat > $TMPC << EOF
2554 int main(void) {
2555 int x;
2556 __asm__ volatile(
2557 "xor %0, %0"
2558 :"=b"(x)
2559 // just adding ebx to clobber list seems unreliable with some
2560 // compilers, e.g. Haiku's gcc 2.95
2562 // and the above check does not work for OSX 64 bit...
2563 __asm__ volatile("":::"%ebx");
2564 return 0;
2567 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2568 echores $ebx_available
2571 echocheck "yasm"
2572 if test -z "$YASMFLAGS" ; then
2573 if darwin ; then
2574 x86_64 && objformat="macho64" || objformat="macho"
2575 elif win32 ; then
2576 objformat="win32"
2577 else
2578 objformat="elf"
2580 # currently tested for Linux x86, x86_64
2581 YASMFLAGS="-f $objformat"
2582 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2583 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2584 case "$objformat" in
2585 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2586 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2587 esac
2588 else
2589 warn_cflags=yes
2592 echo "pabsw xmm0, xmm0" > $TMPS
2593 yasm_check || _yasm=""
2594 if test $_yasm ; then
2595 def_yasm='#define HAVE_YASM 1'
2596 have_yasm="yes"
2597 echores "$_yasm"
2598 else
2599 def_yasm='#define HAVE_YASM 0'
2600 have_yasm="no"
2601 echores "no"
2604 echocheck "bswap"
2605 def_bswap='#define HAVE_BSWAP 0'
2606 echo 'bswap %eax' > $TMPS
2607 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2608 echores "$bswap"
2609 fi #if x86
2612 #FIXME: This should happen before the check for CFLAGS..
2613 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2614 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2616 # check if AltiVec is supported by the compiler, and how to enable it
2617 echocheck "GCC AltiVec flags"
2618 if $(cflag_check -maltivec -mabi=altivec) ; then
2619 _altivec_gcc_flags="-maltivec -mabi=altivec"
2620 # check if <altivec.h> should be included
2621 if $(header_check altivec.h $_altivec_gcc_flags) ; then
2622 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2623 inc_altivec_h='#include <altivec.h>'
2624 else
2625 if $(cflag_check -faltivec) ; then
2626 _altivec_gcc_flags="-faltivec"
2627 else
2628 _altivec=no
2629 _altivec_gcc_flags="none, AltiVec disabled"
2633 echores "$_altivec_gcc_flags"
2635 # check if the compiler supports braces for vector declarations
2636 cat > $TMPC << EOF
2637 $inc_altivec_h
2638 int main(void) { (vector int) {1}; return 0; }
2640 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2642 # Disable runtime cpudetection if we cannot generate AltiVec code or
2643 # AltiVec is disabled by the user.
2644 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2645 && _runtime_cpudetection=no
2647 # Show that we are optimizing for AltiVec (if enabled and supported).
2648 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2649 && _optimizing="$_optimizing altivec"
2651 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2652 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2655 if ppc ; then
2656 def_xform_asm='#define HAVE_XFORM_ASM 0'
2657 xform_asm=no
2658 echocheck "XFORM ASM support"
2659 cat > $TMPC << EOF
2660 int main(void) { __asm__ volatile ("lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)); return 0; }
2662 cc_check && xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2663 echores "$xform_asm"
2666 if arm ; then
2667 echocheck "ARM pld instruction"
2668 cat > $TMPC << EOF
2669 int main(void) { __asm__ volatile ("pld [r0]"); return 0; }
2671 pld=no
2672 cc_check && pld=yes
2673 echores "$pld"
2675 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2676 if test $_armv5te = "auto" ; then
2677 cat > $TMPC << EOF
2678 int main(void) { __asm__ volatile ("qadd r0, r0, r0"); return 0; }
2680 _armv5te=no
2681 cc_check && _armv5te=yes
2683 echores "$_armv5te"
2685 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2687 echocheck "ARMv6 (SIMD instructions)"
2688 if test $_armv6 = "auto" ; then
2689 cat > $TMPC << EOF
2690 int main(void) { __asm__ volatile ("sadd16 r0, r0, r0"); return 0; }
2692 _armv6=no
2693 cc_check && _armv6=yes
2695 echores "$_armv6"
2697 echocheck "ARMv6t2 (SIMD instructions)"
2698 if test $_armv6t2 = "auto" ; then
2699 cat > $TMPC << EOF
2700 int main(void) { __asm__ volatile ("movt r0, #0"); return 0; }
2702 _armv6t2=no
2703 cc_check && _armv6t2=yes
2705 echores "$_armv6"
2707 echocheck "ARM VFP"
2708 if test $_armvfp = "auto" ; then
2709 cat > $TMPC << EOF
2710 int main(void) { __asm__ volatile ("fadds s0, s0, s0"); return 0; }
2712 _armvfp=no
2713 cc_check && _armvfp=yes
2715 echores "$_armvfp"
2717 echocheck "ARM NEON"
2718 if test $neon = "auto" ; then
2719 cat > $TMPC << EOF
2720 int main(void) { __asm__ volatile ("vadd.i16 q0, q0, q0"); return 0; }
2722 neon=no
2723 cc_check && neon=yes
2725 echores "$neon"
2727 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2728 if test $_iwmmxt = "auto" ; then
2729 cat > $TMPC << EOF
2730 int main(void) { __asm__ volatile ("wunpckelub wr6, wr4"); return 0; }
2732 _iwmmxt=no
2733 cc_check && _iwmmxt=yes
2735 echores "$_iwmmxt"
2738 cpuexts_all='ALTIVEC MMX MMX2 AMD3DNOW AMD3DNOWEXT SSE SSE2 SSSE3 FAST_CMOV CMOV FAST_CLZ PLD ARMV5TE ARMV6 ARMV6T2 ARMVFP NEON IWMMXT MMI VIS MVI'
2739 test "$_altivec" = yes && cpuexts="ALTIVEC $cpuexts"
2740 test "$_mmx" = yes && cpuexts="MMX $cpuexts"
2741 test "$_mmxext" = yes && cpuexts="MMX2 $cpuexts"
2742 test "$_3dnow" = yes && cpuexts="AMD3DNOW $cpuexts"
2743 test "$_3dnowext" = yes && cpuexts="AMD3DNOWEXT $cpuexts"
2744 test "$_sse" = yes && cpuexts="SSE $cpuexts"
2745 test "$_sse2" = yes && cpuexts="SSE2 $cpuexts"
2746 test "$_ssse3" = yes && cpuexts="SSSE3 $cpuexts"
2747 test "$_cmov" = yes && cpuexts="CMOV $cpuexts"
2748 test "$_fast_cmov" = yes && cpuexts="FAST_CMOV $cpuexts"
2749 test "$_fast_clz" = yes && cpuexts="FAST_CLZ $cpuexts"
2750 test "$pld" = yes && cpuexts="PLD $cpuexts"
2751 test "$_armv5te" = yes && cpuexts="ARMV5TE $cpuexts"
2752 test "$_armv6" = yes && cpuexts="ARMV6 $cpuexts"
2753 test "$_armv6t2" = yes && cpuexts="ARMV6T2 $cpuexts"
2754 test "$_armvfp" = yes && cpuexts="ARMVFP $cpuexts"
2755 test "$neon" = yes && cpuexts="NEON $cpuexts"
2756 test "$_iwmmxt" = yes && cpuexts="IWMMXT $cpuexts"
2757 test "$_vis" = yes && cpuexts="VIS $cpuexts"
2758 test "$_mvi" = yes && cpuexts="MVI $cpuexts"
2760 # Checking kernel version...
2761 if x86_32 && linux ; then
2762 _k_verc_problem=no
2763 kernel_version=$(uname -r 2>&1)
2764 echocheck "$system_name kernel version"
2765 case "$kernel_version" in
2766 '') kernel_version="?.??"; _k_verc_fail=yes;;
2767 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2768 _k_verc_problem=yes;;
2769 esac
2770 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2771 _k_verc_fail=yes
2773 if test "$_k_verc_fail" ; then
2774 echores "$kernel_version, fail"
2775 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2776 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2777 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2778 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2779 echo "2.2.x you must upgrade it to get SSE support!"
2780 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2781 else
2782 echores "$kernel_version, ok"
2786 ######################
2787 # MAIN TESTS GO HERE #
2788 ######################
2791 echocheck "-lposix"
2792 if cflag_check -lposix ; then
2793 extra_ldflags="$extra_ldflags -lposix"
2794 echores "yes"
2795 else
2796 echores "no"
2799 echocheck "-lm"
2800 if cflag_check -lm ; then
2801 _ld_lm="-lm"
2802 echores "yes"
2803 else
2804 _ld_lm=""
2805 echores "no"
2809 echocheck "langinfo"
2810 if test "$_langinfo" = auto ; then
2811 cat > $TMPC <<EOF
2812 #include <langinfo.h>
2813 int main(void) { nl_langinfo(CODESET); return 0; }
2815 _langinfo=no
2816 cc_check && _langinfo=yes
2818 if test "$_langinfo" = yes ; then
2819 def_langinfo='#define HAVE_LANGINFO 1'
2820 else
2821 def_langinfo='#undef HAVE_LANGINFO'
2823 echores "$_langinfo"
2826 echocheck "translation support"
2827 if test "$_translation" = yes; then
2828 def_translation="#define CONFIG_TRANSLATION 1"
2829 else
2830 def_translation="#undef CONFIG_TRANSLATION"
2832 echores "$_translation"
2834 echocheck "language"
2835 # Set preferred languages, "all" uses English as main language.
2836 test -z "$language" && language=$LINGUAS
2837 test -z "$language_doc" && language_doc=$language
2838 test -z "$language_man" && language_man=$language
2839 test -z "$language_msg" && language_msg="all"
2840 language_doc=$(echo $language_doc | tr , " ")
2841 language_man=$(echo $language_man | tr , " ")
2842 language_msg=$(echo $language_msg | tr , " ")
2844 test "$language_doc" = "all" && language_doc=$doc_lang_all
2845 test "$language_man" = "all" && language_man=$man_lang_all
2846 test "$language_msg" = "all" && language_msg=$msg_lang_all
2848 if test "$_translation" != yes ; then
2849 language_msg=""
2852 # Prune non-existing translations from language lists.
2853 # Set message translation to the first available language.
2854 # Fall back on English.
2855 for lang in $language_doc ; do
2856 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2857 done
2858 language_doc=$tmp_language_doc
2859 test -z "$language_doc" && language_doc=en
2861 for lang in $language_man ; do
2862 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2863 done
2864 language_man=$tmp_language_man
2865 test -z "$language_man" && language_man=en
2867 for lang in $language_msg ; do
2868 test -f po/$lang.po && tmp_language_msg="$tmp_language_msg $lang"
2869 done
2870 language_msg=$tmp_language_msg
2872 echores "messages (en+): $language_msg - man pages: $language_man - documentation: $language_doc"
2875 echocheck "enable sighandler"
2876 if test "$_sighandler" = yes ; then
2877 def_sighandler='#define CONFIG_SIGHANDLER 1'
2878 else
2879 def_sighandler='#undef CONFIG_SIGHANDLER'
2881 echores "$_sighandler"
2883 echocheck "runtime cpudetection"
2884 if test "$_runtime_cpudetection" = yes ; then
2885 _optimizing="Runtime CPU-Detection enabled"
2886 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2887 else
2888 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2890 echores "$_runtime_cpudetection"
2893 echocheck "restrict keyword"
2894 for restrict_keyword in restrict __restrict __restrict__ ; do
2895 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2896 if cc_check; then
2897 def_restrict_keyword=$restrict_keyword
2898 break;
2900 done
2901 if [ -n "$def_restrict_keyword" ]; then
2902 echores "$def_restrict_keyword"
2903 else
2904 echores "none"
2906 # Avoid infinite recursion loop ("#define restrict restrict")
2907 if [ "$def_restrict_keyword" != "restrict" ]; then
2908 def_restrict_keyword="#define restrict $def_restrict_keyword"
2909 else
2910 def_restrict_keyword=""
2914 echocheck "__builtin_expect"
2915 # GCC branch prediction hint
2916 cat > $TMPC << EOF
2917 int foo(int a) {
2918 a = __builtin_expect(a, 10);
2919 return a == 10 ? 0 : 1;
2921 int main(void) { return foo(10) && foo(0); }
2923 _builtin_expect=no
2924 cc_check && _builtin_expect=yes
2925 if test "$_builtin_expect" = yes ; then
2926 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2927 else
2928 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2930 echores "$_builtin_expect"
2933 echocheck "kstat"
2934 cat > $TMPC << EOF
2935 #include <kstat.h>
2936 int main(void) { (void) kstat_open(); (void) kstat_close(0); return 0; }
2938 _kstat=no
2939 cc_check -lkstat && _kstat=yes
2940 if test "$_kstat" = yes ; then
2941 def_kstat="#define HAVE_LIBKSTAT 1"
2942 extra_ldflags="$extra_ldflags -lkstat"
2943 else
2944 def_kstat="#undef HAVE_LIBKSTAT"
2946 echores "$_kstat"
2949 echocheck "posix4"
2950 # required for nanosleep on some systems
2951 cat > $TMPC << EOF
2952 #include <time.h>
2953 int main(void) { (void) nanosleep(0, 0); return 0; }
2955 _posix4=no
2956 cc_check -lposix4 && _posix4=yes
2957 if test "$_posix4" = yes ; then
2958 extra_ldflags="$extra_ldflags -lposix4"
2960 echores "$_posix4"
2962 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
2963 echocheck $func
2964 cat > $TMPC << EOF
2965 #include <math.h>
2966 int main(void) { long (*foo)(float); foo = $func; (void)(*foo)(0.0); return 0; }
2968 eval _$func=no
2969 cc_check -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2970 if eval test "x\$_$func" = "xyes"; then
2971 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2972 echores yes
2973 else
2974 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
2975 echores no
2977 done
2980 echocheck "mkstemp"
2981 cat > $TMPC << EOF
2982 #include <stdlib.h>
2983 int main(void) { char a; mkstemp(&a); return 0; }
2985 _mkstemp=no
2986 cc_check && _mkstemp=yes
2987 if test "$_mkstemp" = yes ; then
2988 def_mkstemp='#define HAVE_MKSTEMP 1'
2989 else
2990 def_mkstemp='#undef HAVE_MKSTEMP'
2992 echores "$_mkstemp"
2995 echocheck "nanosleep"
2996 # also check for nanosleep
2997 cat > $TMPC << EOF
2998 #include <time.h>
2999 int main(void) { (void) nanosleep(0, 0); return 0; }
3001 _nanosleep=no
3002 cc_check && _nanosleep=yes
3003 if test "$_nanosleep" = yes ; then
3004 def_nanosleep='#define HAVE_NANOSLEEP 1'
3005 else
3006 def_nanosleep='#undef HAVE_NANOSLEEP'
3008 echores "$_nanosleep"
3011 echocheck "socklib"
3012 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
3013 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
3014 cat > $TMPC << EOF
3015 #include <netdb.h>
3016 #include <sys/socket.h>
3017 int main(void) { (void) gethostbyname(0); (void) socket(AF_INET, SOCK_STREAM, 0); return 0; }
3019 _socklib=no
3020 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
3021 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
3022 done
3023 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
3024 if test $_winsock2_h = auto ; then
3025 _winsock2_h=no
3026 cat > $TMPC << EOF
3027 #include <winsock2.h>
3028 int main(void) { (void) gethostbyname(0); return 0; }
3030 cc_check -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
3032 test "$_ld_sock" && res_comment="using $_ld_sock"
3033 echores "$_socklib"
3036 if test $_winsock2_h = yes ; then
3037 _ld_sock="-lws2_32"
3038 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
3039 else
3040 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
3044 echocheck "arpa/inet.h"
3045 arpa_inet_h=no
3046 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
3047 header_check arpa/inet.h && arpa_inet_h=yes &&
3048 def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
3049 echores "$arpa_inet_h"
3052 echocheck "inet_pton()"
3053 def_inet_pton='#define HAVE_INET_PTON 0'
3054 inet_pton=no
3055 cat > $TMPC << EOF
3056 #include <sys/types.h>
3057 #include <sys/socket.h>
3058 #include <arpa/inet.h>
3059 int main(void) { (void) inet_pton(0, 0, 0); return 0; }
3061 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3062 cc_check $_ld_tmp && inet_pton=yes && break
3063 done
3064 if test $inet_pton = yes ; then
3065 test "$_ld_tmp" && res_comment="using $_ld_tmp"
3066 def_inet_pton='#define HAVE_INET_PTON 1'
3068 echores "$inet_pton"
3071 echocheck "inet_aton()"
3072 def_inet_aton='#define HAVE_INET_ATON 0'
3073 inet_aton=no
3074 cat > $TMPC << EOF
3075 #include <sys/types.h>
3076 #include <sys/socket.h>
3077 #include <arpa/inet.h>
3078 int main(void) { (void) inet_aton(0, 0); return 0; }
3080 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3081 cc_check $_ld_tmp && inet_aton=yes && break
3082 done
3083 if test $inet_aton = yes ; then
3084 test "$_ld_tmp" && res_comment="using $_ld_tmp"
3085 def_inet_aton='#define HAVE_INET_ATON 1'
3087 echores "$inet_aton"
3090 echocheck "socklen_t"
3091 _socklen_t=no
3092 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
3093 cat > $TMPC << EOF
3094 #include <$header>
3095 int main(void) { socklen_t v = 0; return v; }
3097 cc_check && _socklen_t=yes && break
3098 done
3099 if test "$_socklen_t" = yes ; then
3100 def_socklen_t='#define HAVE_SOCKLEN_T 1'
3101 else
3102 def_socklen_t='#define HAVE_SOCKLEN_T 0'
3104 echores "$_socklen_t"
3107 echocheck "closesocket()"
3108 _closesocket=no
3109 cat > $TMPC << EOF
3110 #include <winsock2.h>
3111 int main(void) { closesocket(~0); return 0; }
3113 cc_check $_ld_sock && _closesocket=yes
3114 if test "$_closesocket" = yes ; then
3115 def_closesocket='#define HAVE_CLOSESOCKET 1'
3116 else
3117 def_closesocket='#define HAVE_CLOSESOCKET 0'
3119 echores "$_closesocket"
3122 echocheck "networking"
3123 test $_winsock2_h = no && test $inet_pton = no &&
3124 test $inet_aton = no && networking=no
3125 if test "$networking" = yes ; then
3126 def_network='#define CONFIG_NETWORK 1'
3127 def_networking='#define CONFIG_NETWORKING 1'
3128 extra_ldflags="$extra_ldflags $_ld_sock"
3129 inputmodules="networking $inputmodules"
3130 else
3131 noinputmodules="networking $noinputmodules"
3132 def_network='#undef CONFIG_NETWORK'
3133 def_networking='#undef CONFIG_NETWORKING'
3134 _ftp=no
3136 echores "$networking"
3139 echocheck "inet6"
3140 if test "$_inet6" = auto ; then
3141 cat > $TMPC << EOF
3142 #include <sys/types.h>
3143 #if !defined(_WIN32) || defined(__CYGWIN__)
3144 #include <sys/socket.h>
3145 #include <netinet/in.h>
3146 #else
3147 #include <ws2tcpip.h>
3148 #endif
3149 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3151 _inet6=no
3152 if cc_check $_ld_sock ; then
3153 _inet6=yes
3156 if test "$_inet6" = yes ; then
3157 def_inet6='#define HAVE_AF_INET6 1'
3158 else
3159 def_inet6='#undef HAVE_AF_INET6'
3161 echores "$_inet6"
3164 echocheck "gethostbyname2"
3165 if test "$_gethostbyname2" = auto ; then
3166 cat > $TMPC << EOF
3167 #include <sys/types.h>
3168 #include <sys/socket.h>
3169 #include <netdb.h>
3170 int main(void) { gethostbyname2("", AF_INET); return 0; }
3172 _gethostbyname2=no
3173 if cc_check ; then
3174 _gethostbyname2=yes
3177 if test "$_gethostbyname2" = yes ; then
3178 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3179 else
3180 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3182 echores "$_gethostbyname2"
3185 echocheck "inttypes.h (required)"
3186 _inttypes=no
3187 header_check inttypes.h && _inttypes=yes
3188 echores "$_inttypes"
3190 if test "$_inttypes" = no ; then
3191 echocheck "sys/bitypes.h (inttypes.h predecessor)"
3192 header_check sys/bitypes.h && _inttypes=yes
3193 if test "$_inttypes" = yes ; then
3194 die "You don't have inttypes.h, but sys/bitypes.h is present. Please copy etc/inttypes.h into the include path, and re-run configure."
3195 else
3196 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3201 echocheck "int_fastXY_t in inttypes.h"
3202 cat > $TMPC << EOF
3203 #include <inttypes.h>
3204 int main(void) {
3205 volatile int_fast16_t v= 0;
3206 return v; }
3208 _fast_inttypes=no
3209 cc_check && _fast_inttypes=yes
3210 if test "$_fast_inttypes" = no ; then
3211 def_fast_inttypes='
3212 typedef signed char int_fast8_t;
3213 typedef signed int int_fast16_t;
3214 typedef signed int int_fast32_t;
3215 typedef signed long long int_fast64_t;
3216 typedef unsigned char uint_fast8_t;
3217 typedef unsigned int uint_fast16_t;
3218 typedef unsigned int uint_fast32_t;
3219 typedef unsigned long long uint_fast64_t;'
3221 echores "$_fast_inttypes"
3224 echocheck "malloc.h"
3225 _malloc=no
3226 header_check malloc.h && _malloc=yes
3227 if test "$_malloc" = yes ; then
3228 def_malloc_h='#define HAVE_MALLOC_H 1'
3229 else
3230 def_malloc_h='#define HAVE_MALLOC_H 0'
3232 echores "$_malloc"
3235 echocheck "memalign()"
3236 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3237 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3238 cat > $TMPC << EOF
3239 #include <malloc.h>
3240 int main(void) { (void) memalign(64, sizeof(char)); return 0; }
3242 _memalign=no
3243 cc_check && _memalign=yes
3244 if test "$_memalign" = yes ; then
3245 def_memalign='#define HAVE_MEMALIGN 1'
3246 else
3247 def_memalign='#define HAVE_MEMALIGN 0'
3248 def_map_memalign='#define memalign(a,b) malloc(b)'
3249 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3251 echores "$_memalign"
3254 echocheck "posix_memalign()"
3255 posix_memalign=no
3256 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3257 cat > $TMPC << EOF
3258 #define _XOPEN_SOURCE 600
3259 #include <stdlib.h>
3260 int main(void) { posix_memalign(NULL, 0, 0); }
3262 cc_check && posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3263 echores "$posix_memalign"
3266 echocheck "alloca.h"
3267 cat > $TMPC << EOF
3268 #include <alloca.h>
3269 int main(void) { (void) alloca(0); return 0; }
3271 _alloca=no
3272 cc_check && _alloca=yes
3273 if cc_check ; then
3274 def_alloca_h='#define HAVE_ALLOCA_H 1'
3275 else
3276 def_alloca_h='#undef HAVE_ALLOCA_H'
3278 echores "$_alloca"
3281 echocheck "fastmemcpy"
3282 if test "$_fastmemcpy" = yes ; then
3283 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3284 else
3285 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3287 echores "$_fastmemcpy"
3290 echocheck "mman.h"
3291 cat > $TMPC << EOF
3292 #include <sys/types.h>
3293 #include <sys/mman.h>
3294 int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; }
3296 _mman=no
3297 cc_check && _mman=yes
3298 if test "$_mman" = yes ; then
3299 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3300 else
3301 def_mman_h='#undef HAVE_SYS_MMAN_H'
3302 os2 && _need_mmap=yes
3304 echores "$_mman"
3306 cat > $TMPC << EOF
3307 #include <sys/types.h>
3308 #include <sys/mman.h>
3309 int main(void) { void *p = MAP_FAILED; return 0; }
3311 _mman_has_map_failed=no
3312 cc_check && _mman_has_map_failed=yes
3313 if test "$_mman_has_map_failed" = yes ; then
3314 def_mman_has_map_failed=''
3315 else
3316 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3319 echocheck "dynamic loader"
3320 cat > $TMPC << EOF
3321 #include <stddef.h>
3322 #include <dlfcn.h>
3323 int main(void) { dlopen("", 0); dlclose(NULL); dlsym(NULL, ""); return 0; }
3325 _dl=no
3326 for _ld_tmp in "" "-ldl" ; do
3327 cc_check $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3328 done
3329 if test "$_dl" = yes ; then
3330 def_dl='#define HAVE_LIBDL 1'
3331 else
3332 def_dl='#undef HAVE_LIBDL'
3334 echores "$_dl"
3337 echocheck "dynamic a/v plugins support"
3338 if test "$_dl" = no ; then
3339 _dynamic_plugins=no
3341 if test "$_dynamic_plugins" = yes ; then
3342 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3343 else
3344 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3346 echores "$_dynamic_plugins"
3349 def_threads='#define HAVE_THREADS 0'
3351 echocheck "pthread"
3352 if linux ; then
3353 THREAD_CFLAGS=-D_REENTRANT
3354 elif freebsd || netbsd || openbsd || bsdos ; then
3355 THREAD_CFLAGS=-D_THREAD_SAFE
3357 if test "$_pthreads" = auto ; then
3358 cat > $TMPC << EOF
3359 #include <pthread.h>
3360 void* func(void *arg) { return arg; }
3361 int main(void) { pthread_t tid; return pthread_create(&tid, 0, func, 0) == 0 ? 0 : 1; }
3363 _pthreads=no
3364 if ! hpux ; then
3365 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3366 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3367 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3368 done
3371 if test "$_pthreads" = yes ; then
3372 test $_ld_pthread && res_comment="using $_ld_pthread"
3373 def_pthreads='#define HAVE_PTHREADS 1'
3374 def_threads='#define HAVE_THREADS 1'
3375 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3376 else
3377 res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3378 def_pthreads='#undef HAVE_PTHREADS'
3379 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3380 mingw32 || _win32dll=no
3382 echores "$_pthreads"
3384 if cygwin ; then
3385 if test "$_pthreads" = yes ; then
3386 def_pthread_cache="#define PTHREAD_CACHE 1"
3387 else
3388 _stream_cache=no
3389 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3393 echocheck "w32threads"
3394 if test "$_pthreads" = yes ; then
3395 res_comment="using pthread instead"
3396 _w32threads=no
3398 if test "$_w32threads" = auto ; then
3399 _w32threads=no
3400 mingw32 && _w32threads=yes
3402 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3403 echores "$_w32threads"
3405 echocheck "rpath"
3406 netbsd &&_rpath=yes
3407 if test "$_rpath" = yes ; then
3408 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3409 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3410 done
3411 extra_ldflags=$tmp
3413 echores "$_rpath"
3415 echocheck "iconv"
3416 if test "$_iconv" = auto ; then
3417 cat > $TMPC << EOF
3418 #include <stdio.h>
3419 #include <unistd.h>
3420 #include <iconv.h>
3421 #define INBUFSIZE 1024
3422 #define OUTBUFSIZE 4096
3424 char inbuffer[INBUFSIZE];
3425 char outbuffer[OUTBUFSIZE];
3427 int main(void) {
3428 size_t numread;
3429 iconv_t icdsc;
3430 char *tocode="UTF-8";
3431 char *fromcode="cp1250";
3432 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3433 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3434 char *iptr=inbuffer;
3435 char *optr=outbuffer;
3436 size_t inleft=numread;
3437 size_t outleft=OUTBUFSIZE;
3438 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft)
3439 != (size_t)(-1)) {
3440 write(1, outbuffer, OUTBUFSIZE - outleft);
3443 if (iconv_close(icdsc) == -1)
3446 return 0;
3449 _iconv=no
3450 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3451 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3452 _iconv=yes && break
3453 done
3455 if test "$_iconv" = yes ; then
3456 def_iconv='#define CONFIG_ICONV 1'
3457 else
3458 def_iconv='#undef CONFIG_ICONV'
3460 echores "$_iconv"
3463 echocheck "soundcard.h"
3464 _soundcard_h=no
3465 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3466 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3467 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3468 header_check $_soundcard_header && _soundcard_h=yes &&
3469 res_comment="$_soundcard_header" && break
3470 done
3472 if test "$_soundcard_h" = yes ; then
3473 if test $_soundcard_header = "sys/soundcard.h"; then
3474 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3475 else
3476 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3479 echores "$_soundcard_h"
3482 echocheck "sys/dvdio.h"
3483 _dvdio=no
3484 header_check sys/dvdio.h && _dvdio=yes
3485 if test "$_dvdio" = yes ; then
3486 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3487 else
3488 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3490 echores "$_dvdio"
3493 echocheck "sys/cdio.h"
3494 _cdio=no
3495 header_check sys/cdio.h && _cdio=yes
3496 if test "$_cdio" = yes ; then
3497 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3498 else
3499 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3501 echores "$_cdio"
3504 echocheck "linux/cdrom.h"
3505 _cdrom=no
3506 header_check linux/cdrom.h && _cdrom=yes
3507 if test "$_cdrom" = yes ; then
3508 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3509 else
3510 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3512 echores "$_cdrom"
3515 echocheck "dvd.h"
3516 _dvd=no
3517 header_check dvd.h && _dvd=yes
3518 if test "$_dvd" = yes ; then
3519 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3520 else
3521 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3523 echores "$_dvd"
3526 if bsdos; then
3527 echocheck "BSDI dvd.h"
3528 _bsdi_dvd=no
3529 header_check dvd.h && _bsdi_dvd=yes
3530 if test "$_bsdi_dvd" = yes ; then
3531 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3532 else
3533 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3535 echores "$_bsdi_dvd"
3536 fi #if bsdos
3539 if hpux; then
3540 # also used by AIX, but AIX does not support VCD and/or libdvdread
3541 echocheck "HP-UX SCSI header"
3542 _hpux_scsi_h=no
3543 header_check sys/scsi.h && _hpux_scsi_h=yes
3544 if test "$_hpux_scsi_h" = yes ; then
3545 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3546 else
3547 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3549 echores "$_hpux_scsi_h"
3550 fi #if hpux
3553 if sunos; then
3554 echocheck "userspace SCSI headers (Solaris)"
3555 _sol_scsi_h=no
3556 header_check sys/scsi/scsi_types.h && header_check sys/scsi/impl/uscsi.h &&
3557 _sol_scsi_h=yes
3558 if test "$_sol_scsi_h" = yes ; then
3559 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3560 else
3561 def_sol_scsi_h='#undef SOLARIS_USCSI'
3563 echores "$_sol_scsi_h"
3564 fi #if sunos
3567 echocheck "termcap"
3568 if test "$_termcap" = auto ; then
3569 cat > $TMPC <<EOF
3570 #include <stddef.h>
3571 #include <term.h>
3572 int main(void) { tgetent(NULL, NULL); return 0; }
3574 _termcap=no
3575 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3576 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
3577 && _termcap=yes && break
3578 done
3580 if test "$_termcap" = yes ; then
3581 def_termcap='#define HAVE_TERMCAP 1'
3582 test $_ld_tmp && res_comment="using $_ld_tmp"
3583 else
3584 def_termcap='#undef HAVE_TERMCAP'
3586 echores "$_termcap"
3589 echocheck "termios"
3590 def_termios='#undef HAVE_TERMIOS'
3591 def_termios_h='#undef HAVE_TERMIOS_H'
3592 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3593 if test "$_termios" = auto ; then
3594 _termios=no
3595 for _termios_header in "termios.h" "sys/termios.h"; do
3596 header_check $_termios_header && _termios=yes &&
3597 res_comment="using $_termios_header" && break
3598 done
3601 if test "$_termios" = yes ; then
3602 def_termios='#define HAVE_TERMIOS 1'
3603 if test "$_termios_header" = "termios.h" ; then
3604 def_termios_h='#define HAVE_TERMIOS_H 1'
3605 else
3606 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3609 echores "$_termios"
3612 echocheck "shm"
3613 if test "$_shm" = auto ; then
3614 cat > $TMPC << EOF
3615 #include <sys/types.h>
3616 #include <sys/shm.h>
3617 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3619 _shm=no
3620 cc_check && _shm=yes
3622 if test "$_shm" = yes ; then
3623 def_shm='#define HAVE_SHM 1'
3624 else
3625 def_shm='#undef HAVE_SHM'
3627 echores "$_shm"
3630 echocheck "strsep()"
3631 cat > $TMPC << EOF
3632 #include <string.h>
3633 int main(void) { char *s = "Hello, world!"; (void) strsep(&s, ","); return 0; }
3635 _strsep=no
3636 cc_check && _strsep=yes
3637 if test "$_strsep" = yes ; then
3638 def_strsep='#define HAVE_STRSEP 1'
3639 _need_strsep=no
3640 else
3641 def_strsep='#undef HAVE_STRSEP'
3642 _need_strsep=yes
3644 echores "$_strsep"
3647 echocheck "vsscanf()"
3648 cat > $TMPC << EOF
3649 #define _ISOC99_SOURCE
3650 #include <stdarg.h>
3651 #include <stdio.h>
3652 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3654 _vsscanf=no
3655 cc_check && _vsscanf=yes
3656 if test "$_vsscanf" = yes ; then
3657 def_vsscanf='#define HAVE_VSSCANF 1'
3658 _need_vsscanf=no
3659 else
3660 def_vsscanf='#undef HAVE_VSSCANF'
3661 _need_vsscanf=yes
3663 echores "$_vsscanf"
3666 echocheck "swab()"
3667 cat > $TMPC << EOF
3668 #define _XOPEN_SOURCE 600
3669 #include <unistd.h>
3670 int main(void) { swab(0, 0, 0); return 0; }
3672 _swab=no
3673 cc_check && _swab=yes
3674 if test "$_swab" = yes ; then
3675 def_swab='#define HAVE_SWAB 1'
3676 _need_swab=no
3677 else
3678 def_swab='#undef HAVE_SWAB'
3679 _need_swab=yes
3681 echores "$_swab"
3683 echocheck "POSIX select()"
3684 cat > $TMPC << EOF
3685 #include <stdio.h>
3686 #include <stdlib.h>
3687 #include <sys/types.h>
3688 #include <string.h>
3689 #include <sys/time.h>
3690 #include <unistd.h>
3691 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
3693 _posix_select=no
3694 def_posix_select='#undef HAVE_POSIX_SELECT'
3695 #select() of kLIBC (OS/2) supports socket only
3696 ! os2 && cc_check && _posix_select=yes \
3697 && def_posix_select='#define HAVE_POSIX_SELECT 1'
3698 echores "$_posix_select"
3701 echocheck "audio select()"
3702 if test "$_select" = no ; then
3703 def_select='#undef HAVE_AUDIO_SELECT'
3704 elif test "$_select" = yes ; then
3705 def_select='#define HAVE_AUDIO_SELECT 1'
3707 echores "$_select"
3710 echocheck "gettimeofday()"
3711 cat > $TMPC << EOF
3712 #include <sys/time.h>
3713 int main(void) {struct timeval tv; struct timezone tz; gettimeofday(&tv, &tz); return 0; }
3715 _gettimeofday=no
3716 cc_check && _gettimeofday=yes
3717 if test "$_gettimeofday" = yes ; then
3718 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3719 _need_gettimeofday=no
3720 else
3721 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3722 _need_gettimeofday=yes
3724 echores "$_gettimeofday"
3727 echocheck "glob()"
3728 cat > $TMPC << EOF
3729 #include <stdio.h>
3730 #include <glob.h>
3731 int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
3733 _glob=no
3734 cc_check && _glob=yes
3735 if test "$_glob" = yes ; then
3736 def_glob='#define HAVE_GLOB 1'
3737 _need_glob=no
3738 else
3739 def_glob='#undef HAVE_GLOB'
3740 _need_glob=yes
3742 echores "$_glob"
3745 echocheck "setenv()"
3746 cat > $TMPC << EOF
3747 #include <stdlib.h>
3748 int main(void) { setenv("","",0); return 0; }
3750 _setenv=no
3751 cc_check && _setenv=yes
3752 if test "$_setenv" = yes ; then
3753 def_setenv='#define HAVE_SETENV 1'
3754 _need_setenv=no
3755 else
3756 def_setenv='#undef HAVE_SETENV'
3757 _need_setenv=yes
3759 echores "$_setenv"
3762 echocheck "setmode()"
3763 _setmode=no
3764 def_setmode='#define HAVE_SETMODE 0'
3765 cat > $TMPC << EOF
3766 #include <io.h>
3767 int main(void) { setmode(0, 0); return 0; }
3769 cc_check && _setmode=yes && def_setmode='#define HAVE_SETMODE 1'
3770 echores "$_setmode"
3773 if sunos; then
3774 echocheck "sysi86()"
3775 cat > $TMPC << EOF
3776 #include <sys/sysi86.h>
3777 int main(void) { sysi86(0); return 0; }
3779 _sysi86=no
3780 cc_check && _sysi86=yes
3781 if test "$_sysi86" = yes ; then
3782 def_sysi86='#define HAVE_SYSI86 1'
3783 cat > $TMPC << EOF
3784 #include <sys/sysi86.h>
3785 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
3787 cc_check && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3788 else
3789 def_sysi86='#undef HAVE_SYSI86'
3791 echores "$_sysi86"
3792 fi #if sunos
3795 echocheck "sys/sysinfo.h"
3796 cat > $TMPC << EOF
3797 #include <sys/sysinfo.h>
3798 int main(void) {
3799 struct sysinfo s_info;
3800 sysinfo(&s_info);
3801 return 0;
3804 _sys_sysinfo=no
3805 cc_check && _sys_sysinfo=yes
3806 if test "$_sys_sysinfo" = yes ; then
3807 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3808 else
3809 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3811 echores "$_sys_sysinfo"
3814 if darwin; then
3816 echocheck "Mac OS X Finder Support"
3817 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3818 if test "$_macosx_finder" = yes ; then
3819 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3820 extra_ldflags="$extra_ldflags -framework Carbon"
3822 echores "$_macosx_finder"
3824 echocheck "Mac OS X Bundle file locations"
3825 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3826 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3827 if test "$_macosx_bundle" = yes ; then
3828 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3829 extra_ldflags="$extra_ldflags -framework Carbon"
3831 echores "$_macosx_bundle"
3833 echocheck "Apple Remote"
3834 if test "$_apple_remote" = auto ; then
3835 _apple_remote=no
3836 cat > $TMPC <<EOF
3837 #include <stdio.h>
3838 #include <IOKit/IOCFPlugIn.h>
3839 int main(void) {
3840 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3841 CFMutableDictionaryRef hidMatchDictionary;
3842 IOReturn ioReturnValue;
3844 // Set up a matching dictionary to search the I/O Registry by class.
3845 // name for all HID class devices
3846 hidMatchDictionary = IOServiceMatching("AppleIRController");
3848 // Now search I/O Registry for matching devices.
3849 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3850 hidMatchDictionary, &hidObjectIterator);
3852 // If search is unsuccessful, return nonzero.
3853 if (ioReturnValue != kIOReturnSuccess ||
3854 !IOIteratorIsValid(hidObjectIterator)) {
3855 return 1;
3857 return 0;
3860 cc_check -framework IOKit && tmp_run && _apple_remote=yes
3862 if test "$_apple_remote" = yes ; then
3863 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3864 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3865 else
3866 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3868 echores "$_apple_remote"
3870 fi #if darwin
3872 if linux; then
3874 echocheck "Apple IR"
3875 if test "$_apple_ir" = auto ; then
3876 _apple_ir=no
3877 cat > $TMPC <<EOF
3878 #include <linux/types.h>
3879 #include <linux/input.h>
3880 int main(void) {
3881 struct input_event ev;
3882 struct input_id id;
3883 return 0;
3886 cc_check && _apple_ir=yes
3888 if test "$_apple_ir" = yes ; then
3889 def_apple_ir='#define CONFIG_APPLE_IR 1'
3890 else
3891 def_apple_ir='#undef CONFIG_APPLE_IR'
3893 echores "$_apple_ir"
3894 fi #if linux
3896 echocheck "pkg-config"
3897 _pkg_config=pkg-config
3898 if $($_pkg_config --version > /dev/null 2>&1); then
3899 if test "$_ld_static"; then
3900 _pkg_config="$_pkg_config --static"
3902 echores "yes"
3903 else
3904 _pkg_config=false
3905 echores "no"
3909 echocheck "Samba support (libsmbclient)"
3910 if test "$_smb" = yes; then
3911 extra_ldflags="$extra_ldflags -lsmbclient"
3913 if test "$_smb" = auto; then
3914 _smb=no
3915 cat > $TMPC << EOF
3916 #include <libsmbclient.h>
3917 int main(void) { smbc_opendir("smb://"); return 0; }
3919 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3920 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3921 _smb=yes && break
3922 done
3925 if test "$_smb" = yes; then
3926 def_smb="#define CONFIG_LIBSMBCLIENT 1"
3927 inputmodules="smb $inputmodules"
3928 else
3929 def_smb="#undef CONFIG_LIBSMBCLIENT"
3930 noinputmodules="smb $noinputmodules"
3932 echores "$_smb"
3935 #########
3936 # VIDEO #
3937 #########
3940 echocheck "tdfxfb"
3941 if test "$_tdfxfb" = yes ; then
3942 def_tdfxfb='#define CONFIG_TDFXFB 1'
3943 vomodules="tdfxfb $vomodules"
3944 else
3945 def_tdfxfb='#undef CONFIG_TDFXFB'
3946 novomodules="tdfxfb $novomodules"
3948 echores "$_tdfxfb"
3950 echocheck "s3fb"
3951 if test "$_s3fb" = yes ; then
3952 def_s3fb='#define CONFIG_S3FB 1'
3953 vomodules="s3fb $vomodules"
3954 else
3955 def_s3fb='#undef CONFIG_S3FB'
3956 novomodules="s3fb $novomodules"
3958 echores "$_s3fb"
3960 echocheck "wii"
3961 if test "$_wii" = yes ; then
3962 def_wii='#define CONFIG_WII 1'
3963 vomodules="wii $vomodules"
3964 else
3965 def_wii='#undef CONFIG_WII'
3966 novomodules="wii $novomodules"
3968 echores "$_wii"
3970 echocheck "tdfxvid"
3971 if test "$_tdfxvid" = yes ; then
3972 def_tdfxvid='#define CONFIG_TDFX_VID 1'
3973 vomodules="tdfx_vid $vomodules"
3974 else
3975 def_tdfxvid='#undef CONFIG_TDFX_VID'
3976 novomodules="tdfx_vid $novomodules"
3978 echores "$_tdfxvid"
3980 echocheck "xvr100"
3981 if test "$_xvr100" = auto ; then
3982 cat > $TMPC << EOF
3983 #include <unistd.h>
3984 #include <sys/fbio.h>
3985 #include <sys/visual_io.h>
3986 int main(void) {
3987 struct vis_identifier ident;
3988 struct fbgattr attr;
3989 ioctl(0, VIS_GETIDENTIFIER, &ident);
3990 ioctl(0, FBIOGATTR, &attr);
3991 return 0;
3994 _xvr100=no
3995 cc_check && _xvr100=yes
3997 if test "$_xvr100" = yes ; then
3998 def_xvr100='#define CONFIG_XVR100 1'
3999 vomodules="xvr100 $vomodules"
4000 else
4001 def_tdfxvid='#undef CONFIG_XVR100'
4002 novomodules="xvr100 $novomodules"
4004 echores "$_xvr100"
4006 echocheck "tga"
4007 if test "$_tga" = yes ; then
4008 def_tga='#define CONFIG_TGA 1'
4009 vomodules="tga $vomodules"
4010 else
4011 def_tga='#undef CONFIG_TGA'
4012 novomodules="tga $novomodules"
4014 echores "$_tga"
4017 echocheck "md5sum support"
4018 if test "$_md5sum" = yes; then
4019 def_md5sum="#define CONFIG_MD5SUM 1"
4020 vomodules="md5sum $vomodules"
4021 else
4022 def_md5sum="#undef CONFIG_MD5SUM"
4023 novomodules="md5sum $novomodules"
4025 echores "$_md5sum"
4028 echocheck "yuv4mpeg support"
4029 if test "$_yuv4mpeg" = yes; then
4030 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
4031 vomodules="yuv4mpeg $vomodules"
4032 else
4033 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
4034 novomodules="yuv4mpeg $novomodules"
4036 echores "$_yuv4mpeg"
4039 echocheck "bl"
4040 if test "$_bl" = yes ; then
4041 def_bl='#define CONFIG_BL 1'
4042 vomodules="bl $vomodules"
4043 else
4044 def_bl='#undef CONFIG_BL'
4045 novomodules="bl $novomodules"
4047 echores "$_bl"
4050 echocheck "DirectFB"
4051 if test "$_directfb" = auto ; then
4052 _directfb=no
4053 cat > $TMPC <<EOF
4054 #include <directfb.h>
4055 int main(void) { DirectFBInit(0, 0); return 0; }
4057 for _inc_tmp in "" -I/usr/local/include/directfb \
4058 -I/usr/include/directfb -I/usr/local/include; do
4059 cc_check $_inc_tmp -ldirectfb && _directfb=yes && \
4060 extra_cflags="$extra_cflags $_inc_tmp" && break
4061 done
4064 dfb_version() {
4065 expr $1 \* 65536 + $2 \* 256 + $3
4068 if test "$_directfb" = yes; then
4069 cat > $TMPC << EOF
4070 #include <directfb_version.h>
4072 dfb_ver = DIRECTFB_MAJOR_VERSION.DIRECTFB_MINOR_VERSION.DIRECTFB_MICRO_VERSION
4075 if $_cc -E $TMPC $extra_cflags > "$TMPEXE"; then
4076 _directfb_version=$(sed -n 's/^dfb_ver[^0-9]*\(.*\)/\1/p' "$TMPEXE" | tr -d '()')
4077 _dfb_major=$(echo $_directfb_version | cut -d . -f 1)
4078 _dfb_minor=$(echo $_directfb_version | cut -d . -f 2)
4079 _dfb_micro=$(echo $_directfb_version | cut -d . -f 3)
4080 _dfb_version=$(dfb_version $_dfb_major $_dfb_minor $_dfb_micro)
4081 if test "$_dfb_version" -ge $(dfb_version 0 9 13); then
4082 def_directfb_version="#define DIRECTFBVERSION $_dfb_version"
4083 res_comment="$_directfb_version"
4084 test "$_dfb_version" -ge $(dfb_version 0 9 15) && _dfbmga=yes
4085 else
4086 def_directfb_version='#undef DIRECTFBVERSION'
4087 _directfb=no
4088 res_comment="version >=0.9.13 required"
4090 else
4091 _directfb=no
4092 res_comment="failed to get version"
4095 echores "$_directfb"
4097 if test "$_directfb" = yes ; then
4098 def_directfb='#define CONFIG_DIRECTFB 1'
4099 vomodules="directfb $vomodules"
4100 libs_mplayer="$libs_mplayer -ldirectfb"
4101 else
4102 def_directfb='#undef CONFIG_DIRECTFB'
4103 novomodules="directfb $novomodules"
4105 if test "$_dfbmga" = yes; then
4106 vomodules="dfbmga $vomodules"
4107 def_dfbmga='#define CONFIG_DFBMGA 1'
4108 else
4109 novomodules="dfbmga $novomodules"
4110 def_dfbmga='#undef CONFIG_DFBMGA'
4114 echocheck "X11 headers presence"
4115 _x11_headers="no"
4116 res_comment="check if the dev(el) packages are installed"
4117 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
4118 if test -f "$I/X11/Xlib.h" ; then
4119 _x11_headers="yes"
4120 res_comment=""
4121 break
4123 done
4124 if test $_cross_compile = no; then
4125 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
4126 /usr/include/X11R6 /usr/openwin/include ; do
4127 if test -f "$I/X11/Xlib.h" ; then
4128 extra_cflags="$extra_cflags -I$I"
4129 _x11_headers="yes"
4130 res_comment="using $I"
4131 break
4133 done
4135 echores "$_x11_headers"
4138 echocheck "X11"
4139 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
4140 cat > $TMPC <<EOF
4141 #include <X11/Xlib.h>
4142 #include <X11/Xutil.h>
4143 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; }
4145 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
4146 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
4147 -L/usr/lib ; do
4148 if netbsd; then
4149 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
4150 else
4151 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
4153 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" \
4154 && _x11=yes && break
4155 done
4157 if test "$_x11" = yes ; then
4158 def_x11='#define CONFIG_X11 1'
4159 vomodules="x11 xover $vomodules"
4160 else
4161 _x11=no
4162 def_x11='#undef CONFIG_X11'
4163 novomodules="x11 $novomodules"
4164 res_comment="check if the dev(el) packages are installed"
4165 # disable stuff that depends on X
4166 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
4168 echores "$_x11"
4170 echocheck "Xss screensaver extensions"
4171 if test "$_xss" = auto ; then
4172 cat > $TMPC << EOF
4173 #include <X11/Xlib.h>
4174 #include <X11/extensions/scrnsaver.h>
4175 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
4177 _xss=no
4178 cc_check -lXss && _xss=yes
4180 if test "$_xss" = yes ; then
4181 def_xss='#define CONFIG_XSS 1'
4182 libs_mplayer="$libs_mplayer -lXss"
4183 else
4184 def_xss='#undef CONFIG_XSS'
4186 echores "$_xss"
4188 echocheck "DPMS"
4189 _xdpms3=no
4190 _xdpms4=no
4191 if test "$_x11" = yes ; then
4192 cat > $TMPC <<EOF
4193 #include <X11/Xmd.h>
4194 #include <X11/Xlib.h>
4195 #include <X11/Xutil.h>
4196 #include <X11/Xatom.h>
4197 #include <X11/extensions/dpms.h>
4198 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4200 cc_check -lXdpms && _xdpms3=yes
4201 cat > $TMPC <<EOF
4202 #include <X11/Xlib.h>
4203 #include <X11/extensions/dpms.h>
4204 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4206 cc_check -lXext && _xdpms4=yes
4208 if test "$_xdpms4" = yes ; then
4209 def_xdpms='#define CONFIG_XDPMS 1'
4210 res_comment="using Xdpms 4"
4211 echores "yes"
4212 elif test "$_xdpms3" = yes ; then
4213 def_xdpms='#define CONFIG_XDPMS 1'
4214 libs_mplayer="$libs_mplayer -lXdpms"
4215 res_comment="using Xdpms 3"
4216 echores "yes"
4217 else
4218 def_xdpms='#undef CONFIG_XDPMS'
4219 echores "no"
4223 echocheck "Xv"
4224 if test "$_xv" = auto ; then
4225 cat > $TMPC <<EOF
4226 #include <X11/Xlib.h>
4227 #include <X11/extensions/Xvlib.h>
4228 int main(void) {
4229 (void) XvGetPortAttribute(0, 0, 0, 0);
4230 (void) XvQueryPortAttributes(0, 0, 0);
4231 return 0; }
4233 _xv=no
4234 cc_check -lXv && _xv=yes
4237 if test "$_xv" = yes ; then
4238 def_xv='#define CONFIG_XV 1'
4239 libs_mplayer="$libs_mplayer -lXv"
4240 vomodules="xv $vomodules"
4241 else
4242 def_xv='#undef CONFIG_XV'
4243 novomodules="xv $novomodules"
4245 echores "$_xv"
4248 echocheck "XvMC"
4249 if test "$_xv" = yes && test "$_xvmc" != no ; then
4250 _xvmc=no
4251 cat > $TMPC <<EOF
4252 #include <X11/Xlib.h>
4253 #include <X11/extensions/Xvlib.h>
4254 #include <X11/extensions/XvMClib.h>
4255 int main(void) {
4256 (void) XvMCQueryExtension(0,0,0);
4257 (void) XvMCCreateContext(0,0,0,0,0,0,0);
4258 return 0; }
4260 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
4261 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
4262 done
4264 if test "$_xvmc" = yes ; then
4265 def_xvmc='#define CONFIG_XVMC 1'
4266 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
4267 vomodules="xvmc $vomodules"
4268 res_comment="using $_xvmclib"
4269 else
4270 def_xvmc='#define CONFIG_XVMC 0'
4271 novomodules="xvmc $novomodules"
4273 echores "$_xvmc"
4276 echocheck "VDPAU"
4277 if test "$_vdpau" = auto ; then
4278 _vdpau=no
4279 if test "$_dl" = yes ; then
4280 cat > $TMPC <<EOF
4281 #include <vdpau/vdpau_x11.h>
4282 int main(void) {
4283 (void) vdp_device_create_x11(0, 0, 0, 0);
4284 return VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L1; }
4286 cc_check -lvdpau && _vdpau=yes
4289 if test "$_vdpau" = yes ; then
4290 def_vdpau='#define CONFIG_VDPAU 1'
4291 libs_mplayer="$libs_mplayer -lvdpau"
4292 vomodules="vdpau $vomodules"
4293 else
4294 def_vdpau='#define CONFIG_VDPAU 0'
4295 novomodules="vdpau $novomodules"
4297 echores "$_vdpau"
4300 echocheck "Xinerama"
4301 if test "$_xinerama" = auto ; then
4302 cat > $TMPC <<EOF
4303 #include <X11/Xlib.h>
4304 #include <X11/extensions/Xinerama.h>
4305 int main(void) { (void) XineramaIsActive(0); return 0; }
4307 _xinerama=no
4308 cc_check -lXinerama && _xinerama=yes
4311 if test "$_xinerama" = yes ; then
4312 def_xinerama='#define CONFIG_XINERAMA 1'
4313 libs_mplayer="$libs_mplayer -lXinerama"
4314 else
4315 def_xinerama='#undef CONFIG_XINERAMA'
4317 echores "$_xinerama"
4320 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4321 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4322 # named 'X extensions' or something similar.
4323 # This check may be useful for future mplayer versions (to change resolution)
4324 # If you run into problems, remove '-lXxf86vm'.
4325 echocheck "Xxf86vm"
4326 if test "$_vm" = auto ; then
4327 cat > $TMPC <<EOF
4328 #include <X11/Xlib.h>
4329 #include <X11/extensions/xf86vmode.h>
4330 int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; }
4332 _vm=no
4333 cc_check -lXxf86vm && _vm=yes
4335 if test "$_vm" = yes ; then
4336 def_vm='#define CONFIG_XF86VM 1'
4337 libs_mplayer="$libs_mplayer -lXxf86vm"
4338 else
4339 def_vm='#undef CONFIG_XF86VM'
4341 echores "$_vm"
4343 # Check for the presence of special keycodes, like audio control buttons
4344 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4345 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4346 # have these new keycodes.
4347 echocheck "XF86keysym"
4348 if test "$_xf86keysym" = auto; then
4349 _xf86keysym=no
4350 cat > $TMPC <<EOF
4351 #include <X11/Xlib.h>
4352 #include <X11/XF86keysym.h>
4353 int main(void) { return XF86XK_AudioPause; }
4355 cc_check && _xf86keysym=yes
4357 if test "$_xf86keysym" = yes ; then
4358 def_xf86keysym='#define CONFIG_XF86XK 1'
4359 else
4360 def_xf86keysym='#undef CONFIG_XF86XK'
4362 echores "$_xf86keysym"
4364 echocheck "DGA"
4365 if test "$_dga2" = auto && test "$_x11" = yes ; then
4366 cat > $TMPC << EOF
4367 #include <X11/Xlib.h>
4368 #include <X11/extensions/xf86dga.h>
4369 int main(void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4371 _dga2=no
4372 cc_check -lXxf86dga && _dga2=yes
4374 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4375 cat > $TMPC << EOF
4376 #include <X11/Xlib.h>
4377 #include <X11/extensions/xf86dga.h>
4378 int main(void) { (void) XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4380 _dga1=no
4381 cc_check -lXxf86dga -lXxf86vm && _dga1=yes
4384 _dga=no
4385 def_dga='#undef CONFIG_DGA'
4386 def_dga1='#undef CONFIG_DGA1'
4387 def_dga2='#undef CONFIG_DGA2'
4388 if test "$_dga1" = yes ; then
4389 _dga=yes
4390 def_dga1='#define CONFIG_DGA1 1'
4391 res_comment="using DGA 1.0"
4392 elif test "$_dga2" = yes ; then
4393 _dga=yes
4394 def_dga2='#define CONFIG_DGA2 1'
4395 res_comment="using DGA 2.0"
4397 if test "$_dga" = yes ; then
4398 def_dga='#define CONFIG_DGA 1'
4399 libs_mplayer="$libs_mplayer -lXxf86dga"
4400 vomodules="dga $vomodules"
4401 else
4402 novomodules="dga $novomodules"
4404 echores "$_dga"
4407 echocheck "3dfx"
4408 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4409 def_3dfx='#define CONFIG_3DFX 1'
4410 vomodules="3dfx $vomodules"
4411 else
4412 def_3dfx='#undef CONFIG_3DFX'
4413 novomodules="3dfx $novomodules"
4415 echores "$_3dfx"
4418 echocheck "VIDIX"
4419 def_vidix='#undef CONFIG_VIDIX'
4420 def_vidix_drv_cyberblade='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4421 _vidix_drv_cyberblade=no
4422 def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4423 _vidix_drv_ivtv=no
4424 def_vidix_drv_mach64='#undef CONFIG_VIDIX_DRV_MACH64'
4425 _vidix_drv_mach64=no
4426 def_vidix_drv_mga='#undef CONFIG_VIDIX_DRV_MGA'
4427 _vidix_drv_mga=no
4428 def_vidix_drv_mga_crtc2='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4429 _vidix_drv_mga_crtc2=no
4430 def_vidix_drv_nvidia='#undef CONFIG_VIDIX_DRV_NVIDIA'
4431 _vidix_drv_nvidia=no
4432 def_vidix_drv_pm2='#undef CONFIG_VIDIX_DRV_PM2'
4433 _vidix_drv_pm2=no
4434 def_vidix_drv_pm3='#undef CONFIG_VIDIX_DRV_PM3'
4435 _vidix_drv_pm3=no
4436 def_vidix_drv_radeon='#undef CONFIG_VIDIX_DRV_RADEON'
4437 _vidix_drv_radeon=no
4438 def_vidix_drv_rage128='#undef CONFIG_VIDIX_DRV_RAGE128'
4439 _vidix_drv_rage128=no
4440 def_vidix_drv_s3='#undef CONFIG_VIDIX_DRV_S3'
4441 _vidix_drv_s3=no
4442 def_vidix_drv_sh_veu='#undef CONFIG_VIDIX_DRV_SH_VEU'
4443 _vidix_drv_sh_veu=no
4444 def_vidix_drv_sis='#undef CONFIG_VIDIX_DRV_SIS'
4445 _vidix_drv_sis=no
4446 def_vidix_drv_unichrome='#undef CONFIG_VIDIX_DRV_UNICHROME'
4447 _vidix_drv_unichrome=no
4448 if test "$_vidix" = auto ; then
4449 _vidix=no
4450 x86 && (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32) \
4451 && _vidix=yes
4452 x86_64 && ! linux && _vidix=no
4453 (ppc || alpha) && linux && _vidix=yes
4455 echores "$_vidix"
4457 if test "$_vidix" = yes ; then
4458 def_vidix='#define CONFIG_VIDIX 1'
4459 vomodules="cvidix $vomodules"
4460 # FIXME: ivtv driver temporarily disabled until we have a proper test
4461 #test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4462 test "$_vidix_drivers" || _vidix_drivers="cyberblade mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4464 # some vidix drivers are architecture and os specific, discard them elsewhere
4465 x86 || _vidix_drivers=$(echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome// -e s/s3//)
4466 (test $host_arch = "sh" && linux) || _vidix_drivers=$(echo $_vidix_drivers | sed s/sh_veu//)
4468 for driver in $_vidix_drivers ; do
4469 uc_driver=$(echo $driver | tr '[a-z]' '[A-Z]')
4470 eval _vidix_drv_${driver}=yes
4471 eval def_vidix_drv_${driver}=\"\#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4472 done
4474 echocheck "VIDIX PCI device name database"
4475 echores "$_vidix_pcidb"
4476 if test "$_vidix_pcidb" = yes ; then
4477 _vidix_pcidb_val=1
4478 else
4479 _vidix_pcidb_val=0
4482 echocheck "VIDIX dhahelper support"
4483 test "$_dhahelper" = yes && cflags_dhahelper=-DCONFIG_DHAHELPER
4484 echores "$_dhahelper"
4486 echocheck "VIDIX svgalib_helper support"
4487 test "$_svgalib_helper" = yes && cflags_svgalib_helper=-DCONFIG_SVGAHELPER
4488 echores "$_svgalib_helper"
4490 else
4491 novomodules="cvidix $novomodules"
4494 if test "$_vidix" = yes && win32; then
4495 winvidix=yes
4496 vomodules="winvidix $vomodules"
4497 libs_mplayer="$libs_mplayer -lgdi32"
4498 else
4499 novomodules="winvidix $novomodules"
4501 if test "$_vidix" = yes && test "$_x11" = yes; then
4502 xvidix=yes
4503 vomodules="xvidix $vomodules"
4504 else
4505 novomodules="xvidix $novomodules"
4508 echocheck "GGI"
4509 if test "$_ggi" = auto ; then
4510 cat > $TMPC << EOF
4511 #include <ggi/ggi.h>
4512 int main(void) { ggiInit(); return 0; }
4514 _ggi=no
4515 cc_check -lggi && _ggi=yes
4517 if test "$_ggi" = yes ; then
4518 def_ggi='#define CONFIG_GGI 1'
4519 libs_mplayer="$libs_mplayer -lggi"
4520 vomodules="ggi $vomodules"
4521 else
4522 def_ggi='#undef CONFIG_GGI'
4523 novomodules="ggi $novomodules"
4525 echores "$_ggi"
4527 echocheck "GGI extension: libggiwmh"
4528 if test "$_ggiwmh" = auto ; then
4529 _ggiwmh=no
4530 cat > $TMPC << EOF
4531 #include <ggi/ggi.h>
4532 #include <ggi/wmh.h>
4533 int main(void) { ggiInit(); ggiWmhInit(); return 0; }
4535 cc_check -lggi -lggiwmh && _ggiwmh=yes
4537 # needed to get right output on obscure combination
4538 # like --disable-ggi --enable-ggiwmh
4539 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4540 def_ggiwmh='#define CONFIG_GGIWMH 1'
4541 libs_mplayer="$libs_mplayer -lggiwmh"
4542 else
4543 _ggiwmh=no
4544 def_ggiwmh='#undef CONFIG_GGIWMH'
4546 echores "$_ggiwmh"
4549 echocheck "AA"
4550 if test "$_aa" = auto ; then
4551 cat > $TMPC << EOF
4552 #include <aalib.h>
4553 extern struct aa_hardware_params aa_defparams;
4554 extern struct aa_renderparams aa_defrenderparams;
4555 int main(void) {
4556 aa_context *c;
4557 aa_renderparams *p;
4558 (void) aa_init(0, 0, 0);
4559 c = aa_autoinit(&aa_defparams);
4560 p = aa_getrenderparams();
4561 aa_autoinitkbd(c,0);
4562 return 0; }
4564 _aa=no
4565 for _ld_tmp in "-laa" ; do
4566 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4567 done
4569 if test "$_aa" = yes ; then
4570 def_aa='#define CONFIG_AA 1'
4571 if cygwin ; then
4572 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4574 vomodules="aa $vomodules"
4575 else
4576 def_aa='#undef CONFIG_AA'
4577 novomodules="aa $novomodules"
4579 echores "$_aa"
4582 echocheck "CACA"
4583 if test "$_caca" = auto ; then
4584 _caca=no
4585 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4586 cat > $TMPC << EOF
4587 #include <caca.h>
4588 #ifdef CACA_API_VERSION_1
4589 #include <caca0.h>
4590 #endif
4591 int main(void) { (void) caca_init(); return 0; }
4593 cc_check $(caca-config --libs) && _caca=yes
4596 if test "$_caca" = yes ; then
4597 def_caca='#define CONFIG_CACA 1'
4598 extra_cflags="$extra_cflags $(caca-config --cflags)"
4599 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4600 vomodules="caca $vomodules"
4601 else
4602 def_caca='#undef CONFIG_CACA'
4603 novomodules="caca $novomodules"
4605 echores "$_caca"
4608 echocheck "SVGAlib"
4609 if test "$_svga" = auto ; then
4610 _svga=no
4611 header_check vga.h -lvga $_ld_lm && _svga=yes
4613 if test "$_svga" = yes ; then
4614 def_svga='#define CONFIG_SVGALIB 1'
4615 libs_mplayer="$libs_mplayer -lvga"
4616 vomodules="svga $vomodules"
4617 else
4618 def_svga='#undef CONFIG_SVGALIB'
4619 novomodules="svga $novomodules"
4621 echores "$_svga"
4624 echocheck "FBDev"
4625 if test "$_fbdev" = auto ; then
4626 _fbdev=no
4627 linux && _fbdev=yes
4629 if test "$_fbdev" = yes ; then
4630 def_fbdev='#define CONFIG_FBDEV 1'
4631 vomodules="fbdev $vomodules"
4632 else
4633 def_fbdev='#undef CONFIG_FBDEV'
4634 novomodules="fbdev $novomodules"
4636 echores "$_fbdev"
4640 echocheck "DVB"
4641 if test "$_dvb" = auto ; then
4642 _dvb=no
4643 cat >$TMPC << EOF
4644 #include <poll.h>
4645 #include <sys/ioctl.h>
4646 #include <stdio.h>
4647 #include <time.h>
4648 #include <unistd.h>
4649 #include <linux/dvb/dmx.h>
4650 #include <linux/dvb/frontend.h>
4651 #include <linux/dvb/video.h>
4652 #include <linux/dvb/audio.h>
4653 int main(void) {return 0;}
4655 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4656 cc_check $_inc_tmp && _dvb=yes && \
4657 extra_cflags="$extra_cflags $_inc_tmp" && break
4658 done
4660 echores "$_dvb"
4661 if test "$_dvb" = yes ; then
4662 _dvbin=yes
4663 inputmodules="dvb $inputmodules"
4664 def_dvb='#define CONFIG_DVB 1'
4665 def_dvbin='#define CONFIG_DVBIN 1'
4666 aomodules="mpegpes(dvb) $aomodules"
4667 vomodules="mpegpes(dvb) $vomodules"
4668 else
4669 _dvbin=no
4670 noinputmodules="dvb $noinputmodules"
4671 def_dvb='#undef CONFIG_DVB'
4672 def_dvbin='#undef CONFIG_DVBIN '
4673 aomodules="mpegpes(file) $aomodules"
4674 vomodules="mpegpes(file) $vomodules"
4678 if darwin; then
4680 echocheck "QuickTime"
4681 if test "$quicktime" = auto ; then
4682 cat > $TMPC <<EOF
4683 #include <QuickTime/QuickTime.h>
4684 int main(void) {
4685 ImageDescription *desc;
4686 EnterMovies();
4687 ExitMovies();
4688 return 0;
4691 quicktime=no
4692 cc_check -framework QuickTime && quicktime=yes
4694 if test "$quicktime" = yes ; then
4695 extra_ldflags="$extra_ldflags -framework QuickTime"
4696 def_quicktime='#define CONFIG_QUICKTIME 1'
4697 else
4698 def_quicktime='#undef CONFIG_QUICKTIME'
4699 _quartz=no
4701 echores $quicktime
4703 echocheck "Quartz"
4704 if test "$_quartz" = auto ; then
4705 cat > $TMPC <<EOF
4706 #include <Carbon/Carbon.h>
4707 int main(void) {
4708 CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false);
4709 return 0;
4712 _quartz=no
4713 cc_check -framework Carbon && _quartz=yes
4715 if test "$_quartz" = yes ; then
4716 libs_mplayer="$libs_mplayer -framework Carbon"
4717 def_quartz='#define CONFIG_QUARTZ 1'
4718 vomodules="quartz $vomodules"
4719 else
4720 def_quartz='#undef CONFIG_QUARTZ'
4721 novomodules="quartz $novomodules"
4723 echores $_quartz
4725 echocheck "CoreVideo"
4726 if test "$_corevideo" = auto ; then
4727 cat > $TMPC <<EOF
4728 #include <Carbon/Carbon.h>
4729 #include <CoreServices/CoreServices.h>
4730 #include <OpenGL/OpenGL.h>
4731 #include <QuartzCore/CoreVideo.h>
4732 int main(void) { return 0; }
4734 _corevideo=no
4735 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4737 if test "$_corevideo" = yes ; then
4738 vomodules="corevideo $vomodules"
4739 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4740 def_corevideo='#define CONFIG_COREVIDEO 1'
4741 else
4742 novomodules="corevideo $novomodules"
4743 def_corevideo='#undef CONFIG_COREVIDEO'
4745 echores "$_corevideo"
4747 fi #if darwin
4750 echocheck "PNG support"
4751 if test "$_png" = auto ; then
4752 _png=no
4753 if irix ; then
4754 # Don't check for -lpng on irix since it has its own libpng
4755 # incompatible with the GNU libpng
4756 res_comment="disabled on irix (not GNU libpng)"
4757 else
4758 cat > $TMPC << EOF
4759 #include <png.h>
4760 #include <string.h>
4761 int main(void) {
4762 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4763 printf("libpng: %s\n", png_libpng_ver);
4764 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4767 cc_check -lpng -lz $_ld_lm && _png=yes
4770 echores "$_png"
4771 if test "$_png" = yes ; then
4772 def_png='#define CONFIG_PNG 1'
4773 extra_ldflags="$extra_ldflags -lpng -lz"
4774 else
4775 def_png='#undef CONFIG_PNG'
4778 echocheck "MNG support"
4779 if test "$_mng" = auto ; then
4780 _mng=no
4781 cat > $TMPC << EOF
4782 #include <libmng.h>
4783 int main(void) {
4784 const char * p_ver = mng_version_text();
4785 return !p_ver || p_ver[0] == 0;
4788 if cc_check -lmng -lz $_ld_lm ; then
4789 _mng=yes
4792 echores "$_mng"
4793 if test "$_mng" = yes ; then
4794 def_mng='#define CONFIG_MNG 1'
4795 extra_ldflags="$extra_ldflags -lmng -lz"
4796 else
4797 def_mng='#undef CONFIG_MNG'
4800 echocheck "JPEG support"
4801 if test "$_jpeg" = auto ; then
4802 _jpeg=no
4803 cat > $TMPC << EOF
4804 #include <stdio.h>
4805 #include <stdlib.h>
4806 #include <setjmp.h>
4807 #include <string.h>
4808 #include <jpeglib.h>
4809 int main(void) { return 0; }
4811 cc_check -ljpeg $_ld_lm && _jpeg=yes
4813 echores "$_jpeg"
4815 if test "$_jpeg" = yes ; then
4816 def_jpeg='#define CONFIG_JPEG 1'
4817 vomodules="jpeg $vomodules"
4818 extra_ldflags="$extra_ldflags -ljpeg"
4819 else
4820 def_jpeg='#undef CONFIG_JPEG'
4821 novomodules="jpeg $novomodules"
4826 echocheck "PNM support"
4827 if test "$_pnm" = yes; then
4828 def_pnm="#define CONFIG_PNM 1"
4829 vomodules="pnm $vomodules"
4830 else
4831 def_pnm="#undef CONFIG_PNM"
4832 novomodules="pnm $novomodules"
4834 echores "$_pnm"
4838 echocheck "GIF support"
4839 # This is to appease people who want to force gif support.
4840 # If it is forced to yes, then we still do checks to determine
4841 # which gif library to use.
4842 if test "$_gif" = yes ; then
4843 _force_gif=yes
4844 _gif=auto
4847 if test "$_gif" = auto ; then
4848 _gif=no
4849 cat > $TMPC << EOF
4850 #include <gif_lib.h>
4851 int main(void) { QuantizeBuffer(0, 0, 0, 0, 0, 0, 0, 0); return 0; }
4853 for _ld_gif in "-lungif" "-lgif" ; do
4854 cc_check $_ld_gif && _gif=yes && break
4855 done
4858 # If no library was found, and the user wants support forced,
4859 # then we force it on with libgif, as this is the safest
4860 # assumption IMHO. (libungif & libregif both create symbolic
4861 # links to libgif. We also assume that no x11 support is needed,
4862 # because if you are forcing this, then you _should_ know what
4863 # you are doing. [ Besides, package maintainers should never
4864 # have compiled x11 deps into libungif in the first place. ] )
4865 # </rant>
4866 # --Joey
4867 if test "$_force_gif" = yes && test "$_gif" = no ; then
4868 _gif=yes
4869 _ld_gif="-lgif"
4872 if test "$_gif" = yes ; then
4873 def_gif='#define CONFIG_GIF 1'
4874 codecmodules="gif $codecmodules"
4875 vomodules="gif89a $vomodules"
4876 res_comment="old version, some encoding functions disabled"
4877 def_gif_4='#undef CONFIG_GIF_4'
4878 extra_ldflags="$extra_ldflags $_ld_gif"
4880 cat > $TMPC << EOF
4881 #include <signal.h>
4882 #include <gif_lib.h>
4883 void catch(int sig) { exit(1); }
4884 int main(void) {
4885 signal(SIGSEGV, catch); // catch segfault
4886 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4887 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4888 return 0;
4891 if cc_check "$_ld_gif" ; then
4892 def_gif_4='#define CONFIG_GIF_4 1'
4893 res_comment=""
4895 else
4896 def_gif='#undef CONFIG_GIF'
4897 def_gif_4='#undef CONFIG_GIF_4'
4898 novomodules="gif89a $novomodules"
4899 nocodecmodules="gif $nocodecmodules"
4901 echores "$_gif"
4904 case "$_gif" in yes*)
4905 echocheck "broken giflib workaround"
4906 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
4908 cat > $TMPC << EOF
4909 #include <gif_lib.h>
4910 int main(void) {
4911 GifFileType gif;
4912 printf("UserData is at address %p\n", gif.UserData);
4913 return 0;
4916 if cc_check "$_ld_gif" ; then
4917 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
4918 echores "disabled"
4919 else
4920 echores "enabled"
4923 esac
4926 echocheck "VESA support"
4927 if test "$_vesa" = auto ; then
4928 cat > $TMPC << EOF
4929 #include <vbe.h>
4930 int main(void) { vbeVersion(); return 0; }
4932 _vesa=no
4933 cc_check -lvbe -llrmi && _vesa=yes
4935 if test "$_vesa" = yes ; then
4936 def_vesa='#define CONFIG_VESA 1'
4937 libs_mplayer="$libs_mplayer -lvbe -llrmi"
4938 vomodules="vesa $vomodules"
4939 else
4940 def_vesa='#undef CONFIG_VESA'
4941 novomodules="vesa $novomodules"
4943 echores "$_vesa"
4945 #################
4946 # VIDEO + AUDIO #
4947 #################
4950 echocheck "SDL"
4951 _inc_tmp=""
4952 _ld_tmp=""
4953 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
4954 if test -z "$_sdlconfig" ; then
4955 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
4956 _sdlconfig="sdl-config"
4957 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
4958 _sdlconfig="sdl11-config"
4959 else
4960 _sdlconfig=false
4963 if test "$_sdl" = auto || test "$_sdl" = yes ; then
4964 cat > $TMPC << EOF
4965 #ifdef CONFIG_SDL_SDL_H
4966 #include <SDL/SDL.h>
4967 #else
4968 #include <SDL.h>
4969 #endif
4970 #ifndef __APPLE__
4971 // we allow SDL hacking our main() only on OSX
4972 #undef main
4973 #endif
4974 int main(int argc, char *argv[]) {
4975 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
4976 return 0;
4979 _sdl=no
4980 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
4981 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
4982 _sdl=yes
4983 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
4984 break
4986 done
4987 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
4988 res_comment="using $_sdlconfig"
4989 if cygwin ; then
4990 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
4991 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
4992 elif mingw32 ; then
4993 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
4994 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
4995 else
4996 _inc_tmp="$($_sdlconfig --cflags)"
4997 _ld_tmp="$($_sdlconfig --libs)"
4999 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
5000 _sdl=yes
5004 if test "$_sdl" = yes ; then
5005 def_sdl='#define CONFIG_SDL 1'
5006 extra_cflags="$extra_cflags $_inc_tmp"
5007 libs_mplayer="$libs_mplayer $_ld_tmp"
5008 vomodules="sdl $vomodules"
5009 aomodules="sdl $aomodules"
5010 else
5011 def_sdl='#undef CONFIG_SDL'
5012 novomodules="sdl $novomodules"
5013 noaomodules="sdl $noaomodules"
5015 echores "$_sdl"
5018 # make sure this stays below CoreVideo to avoid issues due to namespace
5019 # conflicts between -lGL and -framework OpenGL
5020 echocheck "OpenGL"
5021 #Note: this test is run even with --enable-gl since we autodetect linker flags
5022 if (test "$_x11" = yes || test "$_sdl" = yes || win32) && test "$_gl" != no ; then
5023 cat > $TMPC << EOF
5024 #ifdef GL_WIN32
5025 #include <windows.h>
5026 #include <GL/gl.h>
5027 #elif defined(GL_SDL)
5028 #include <GL/gl.h>
5029 #ifdef CONFIG_SDL_SDL_H
5030 #include <SDL/SDL.h>
5031 #else
5032 #include <SDL.h>
5033 #endif
5034 #ifndef __APPLE__
5035 // we allow SDL hacking our main() only on OSX
5036 #undef main
5037 #endif
5038 #else
5039 #include <GL/gl.h>
5040 #include <X11/Xlib.h>
5041 #include <GL/glx.h>
5042 #endif
5043 int main(int argc, char *argv[]) {
5044 #ifdef GL_WIN32
5045 HDC dc;
5046 wglCreateContext(dc);
5047 #elif defined(GL_SDL)
5048 SDL_GL_SwapBuffers();
5049 #else
5050 glXCreateContext(NULL, NULL, NULL, True);
5051 #endif
5052 glFinish();
5053 return 0;
5056 _gl=no
5057 for _ld_tmp in "" -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
5058 if cc_check $_ld_tmp $_ld_lm ; then
5059 _gl=yes
5060 _gl_x11=yes
5061 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
5062 break
5064 done
5065 if cc_check -DGL_WIN32 -lopengl32 ; then
5066 _gl=yes
5067 _gl_win32=yes
5068 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
5070 # last so it can reuse any linker etc. flags detected before
5071 if test "$_sdl" = yes ; then
5072 if cc_check -DGL_SDL ||
5073 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL ; then
5074 _gl=yes
5075 _gl_sdl=yes
5076 elif cc_check -DGL_SDL -lGL ||
5077 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL -lGL ; then
5078 _gl=yes
5079 _gl_sdl=yes
5080 libs_mplayer="$libs_mplayer -lGL"
5083 else
5084 _gl=no
5086 if test "$_gl" = yes ; then
5087 def_gl='#define CONFIG_GL 1'
5088 res_comment="backends:"
5089 if test "$_gl_win32" = yes ; then
5090 def_gl_win32='#define CONFIG_GL_WIN32 1'
5091 res_comment="$res_comment win32"
5093 if test "$_gl_x11" = yes ; then
5094 def_gl_x11='#define CONFIG_GL_X11 1'
5095 res_comment="$res_comment x11"
5097 if test "$_gl_sdl" = yes ; then
5098 def_gl_sdl='#define CONFIG_GL_SDL 1'
5099 res_comment="$res_comment sdl"
5101 vomodules="opengl $vomodules"
5102 else
5103 def_gl='#undef CONFIG_GL'
5104 def_gl_win32='#undef CONFIG_GL_WIN32'
5105 def_gl_x11='#undef CONFIG_GL_X11'
5106 def_gl_sdl='#undef CONFIG_GL_SDL'
5107 novomodules="opengl $novomodules"
5109 echores "$_gl"
5112 echocheck "MatrixView"
5113 if test "$_gl" = no ; then
5114 matrixview=no
5116 if test "$matrixview" = yes ; then
5117 vomodules="matrixview $vomodules"
5118 def_matrixview='#define CONFIG_MATRIXVIEW 1'
5119 else
5120 novomodules="matrixview $novomodules"
5121 def_matrixview='#undef CONFIG_MATRIXVIEW'
5123 echores "$matrixview"
5126 if os2 ; then
5127 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
5128 if test "$_kva" = auto; then
5129 cat > $TMPC << EOF
5130 #include <os2.h>
5131 #include <kva.h>
5132 int main(void) { return 0; }
5134 _kva=no;
5135 cc_check -lkva && _kva=yes
5137 if test "$_kva" = yes ; then
5138 def_kva='#define CONFIG_KVA 1'
5139 libs_mplayer="$libs_mplayer -lkva"
5140 vomodules="kva $vomodules"
5141 else
5142 def_kva='#undef CONFIG_KVA'
5143 novomodules="kva $novomodules"
5145 echores "$_kva"
5146 fi #if os2
5149 if win32; then
5151 echocheck "Windows waveout"
5152 if test "$_win32waveout" = auto ; then
5153 cat > $TMPC << EOF
5154 #include <windows.h>
5155 #include <mmsystem.h>
5156 int main(void) { return 0; }
5158 _win32waveout=no
5159 cc_check -lwinmm && _win32waveout=yes
5161 if test "$_win32waveout" = yes ; then
5162 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
5163 libs_mplayer="$libs_mplayer -lwinmm"
5164 aomodules="win32 $aomodules"
5165 else
5166 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
5167 noaomodules="win32 $noaomodules"
5169 echores "$_win32waveout"
5171 echocheck "Direct3D"
5172 if test "$_direct3d" = auto ; then
5173 cat > $TMPC << EOF
5174 #include <windows.h>
5175 #include <d3d9.h>
5176 int main(void) { return 0; }
5178 _direct3d=no
5179 cc_check && _direct3d=yes
5181 if test "$_direct3d" = yes ; then
5182 def_direct3d='#define CONFIG_DIRECT3D 1'
5183 vomodules="direct3d $vomodules"
5184 else
5185 def_direct3d='#undef CONFIG_DIRECT3D'
5186 novomodules="direct3d $novomodules"
5188 echores "$_direct3d"
5190 echocheck "Directx"
5191 if test "$_directx" = auto ; then
5192 cat > $TMPC << EOF
5193 #include <windows.h>
5194 #include <ddraw.h>
5195 #include <dsound.h>
5196 int main(void) { return 0; }
5198 _directx=no
5199 cc_check -lgdi32 && _directx=yes
5201 if test "$_directx" = yes ; then
5202 def_directx='#define CONFIG_DIRECTX 1'
5203 libs_mplayer="$libs_mplayer -lgdi32"
5204 vomodules="directx $vomodules"
5205 aomodules="dsound $aomodules"
5206 else
5207 def_directx='#undef CONFIG_DIRECTX'
5208 novomodules="directx $novomodules"
5209 noaomodules="dsound $noaomodules"
5211 echores "$_directx"
5213 fi #if win32; then
5216 echocheck "DXR2"
5217 if test "$_dxr2" = auto; then
5218 _dxr2=no
5219 for _inc_tmp in "" -I/usr/local/include/dxr2 -I/usr/include/dxr2; do
5220 header_check dxr2ioctl.h $_inc_tmp && _dxr2=yes &&
5221 extra_cflags="$extra_cflags $_inc_tmp" && break
5222 done
5224 if test "$_dxr2" = yes; then
5225 def_dxr2='#define CONFIG_DXR2 1'
5226 aomodules="dxr2 $aomodules"
5227 vomodules="dxr2 $vomodules"
5228 else
5229 def_dxr2='#undef CONFIG_DXR2'
5230 noaomodules="dxr2 $noaomodules"
5231 novomodules="dxr2 $novomodules"
5233 echores "$_dxr2"
5235 echocheck "DXR3/H+"
5236 if test "$_dxr3" = auto ; then
5237 _dxr3=no
5238 header_check linux/em8300.h && _dxr3=yes
5240 if test "$_dxr3" = yes ; then
5241 def_dxr3='#define CONFIG_DXR3 1'
5242 vomodules="dxr3 $vomodules"
5243 else
5244 def_dxr3='#undef CONFIG_DXR3'
5245 novomodules="dxr3 $novomodules"
5247 echores "$_dxr3"
5250 echocheck "IVTV TV-Out (pre linux-2.6.24)"
5251 if test "$_ivtv" = auto ; then
5252 cat > $TMPC << EOF
5253 #include <stdlib.h>
5254 #include <inttypes.h>
5255 #include <linux/types.h>
5256 #include <linux/videodev2.h>
5257 #include <linux/ivtv.h>
5258 #include <sys/ioctl.h>
5259 int main(void) {
5260 struct ivtv_cfg_stop_decode sd;
5261 struct ivtv_cfg_start_decode sd1;
5262 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
5263 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
5264 return 0; }
5266 _ivtv=no
5267 cc_check && _ivtv=yes
5269 if test "$_ivtv" = yes ; then
5270 def_ivtv='#define CONFIG_IVTV 1'
5271 vomodules="ivtv $vomodules"
5272 aomodules="ivtv $aomodules"
5273 else
5274 def_ivtv='#undef CONFIG_IVTV'
5275 novomodules="ivtv $novomodules"
5276 noaomodules="ivtv $noaomodules"
5278 echores "$_ivtv"
5281 echocheck "V4L2 MPEG Decoder"
5282 if test "$_v4l2" = auto ; then
5283 cat > $TMPC << EOF
5284 #include <stdlib.h>
5285 #include <inttypes.h>
5286 #include <linux/types.h>
5287 #include <linux/videodev2.h>
5288 #include <linux/version.h>
5289 int main(void) {
5290 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
5291 #error kernel headers too old, need 2.6.22
5292 #endif
5293 struct v4l2_ext_controls ctrls;
5294 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
5295 return 0;
5298 _v4l2=no
5299 cc_check && _v4l2=yes
5301 if test "$_v4l2" = yes ; then
5302 def_v4l2='#define CONFIG_V4L2_DECODER 1'
5303 vomodules="v4l2 $vomodules"
5304 aomodules="v4l2 $aomodules"
5305 else
5306 def_v4l2='#undef CONFIG_V4L2_DECODER'
5307 novomodules="v4l2 $novomodules"
5308 noaomodules="v4l2 $noaomodules"
5310 echores "$_v4l2"
5314 #########
5315 # AUDIO #
5316 #########
5319 echocheck "OSS Audio"
5320 if test "$_ossaudio" = auto ; then
5321 cat > $TMPC << EOF
5322 #include <sys/ioctl.h>
5323 #include <$_soundcard_header>
5324 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
5326 _ossaudio=no
5327 cc_check && _ossaudio=yes
5329 if test "$_ossaudio" = yes ; then
5330 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
5331 aomodules="oss $aomodules"
5332 cat > $TMPC << EOF
5333 #include <sys/ioctl.h>
5334 #include <$_soundcard_header>
5335 #ifdef OPEN_SOUND_SYSTEM
5336 int main(void) { return 0; }
5337 #else
5338 #error Not the real thing
5339 #endif
5341 _real_ossaudio=no
5342 cc_check && _real_ossaudio=yes
5343 if test "$_real_ossaudio" = yes; then
5344 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5345 # Check for OSS4 headers (override default headers)
5346 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
5347 if test -f /etc/oss.conf; then
5348 . /etc/oss.conf
5349 _ossinc="$OSSLIBDIR/include"
5350 if test -f "$_ossinc/sys/soundcard.h"; then
5351 extra_cflags="-I$_ossinc $extra_cflags"
5354 elif netbsd || openbsd ; then
5355 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
5356 extra_ldflags="$extra_ldflags -lossaudio"
5357 else
5358 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5360 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
5361 else
5362 def_ossaudio='#undef CONFIG_OSS_AUDIO'
5363 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
5364 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
5365 noaomodules="oss $noaomodules"
5367 echores "$_ossaudio"
5370 echocheck "aRts"
5371 if test "$_arts" = auto ; then
5372 _arts=no
5373 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
5374 header_check artsc.h $(artsc-config --libs) $(artsc-config --cflags) &&
5375 _arts=yes
5379 if test "$_arts" = yes ; then
5380 def_arts='#define CONFIG_ARTS 1'
5381 aomodules="arts $aomodules"
5382 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
5383 extra_cflags="$extra_cflags $(artsc-config --cflags)"
5384 else
5385 noaomodules="arts $noaomodules"
5387 echores "$_arts"
5390 echocheck "EsounD"
5391 if test "$_esd" = auto ; then
5392 _esd=no
5393 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
5395 cat > $TMPC << EOF
5396 #include <esd.h>
5397 int main(void) { int fd = esd_open_sound("test"); return fd; }
5399 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd=yes
5403 echores "$_esd"
5405 if test "$_esd" = yes ; then
5406 def_esd='#define CONFIG_ESD 1'
5407 aomodules="esd $aomodules"
5408 libs_mplayer="$libs_mplayer $(esd-config --libs)"
5409 extra_cflags="$extra_cflags $(esd-config --cflags)"
5411 echocheck "esd_get_latency()"
5412 cat > $TMPC << EOF
5413 #include <esd.h>
5414 int main(void) { return esd_get_latency(0); }
5416 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
5417 echores "$_esd_latency"
5418 else
5419 def_esd='#undef CONFIG_ESD'
5420 def_esd_latency='#undef CONFIG_ESD_LATENCY'
5421 noaomodules="esd $noaomodules"
5425 echocheck "NAS"
5426 if test "$_nas" = auto ; then
5427 _nas=no
5428 header_check audio/audiolib.h $_ld_lm -laudio -lXt && _nas=yes
5430 if test "$_nas" = yes ; then
5431 def_nas='#define CONFIG_NAS 1'
5432 libs_mplayer="$libs_mplayer -laudio -lXt"
5433 aomodules="nas $aomodules"
5434 else
5435 noaomodules="nas $noaomodules"
5436 def_nas='#undef CONFIG_NAS'
5438 echores "$_nas"
5441 echocheck "pulse"
5442 if test "$_pulse" = auto ; then
5443 _pulse=no
5444 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5445 header_check pulse/pulseaudio.h $($_pkg_config --libs --cflags libpulse) &&
5446 _pulse=yes
5449 echores "$_pulse"
5451 if test "$_pulse" = yes ; then
5452 def_pulse='#define CONFIG_PULSE 1'
5453 aomodules="pulse $aomodules"
5454 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
5455 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
5456 else
5457 def_pulse='#undef CONFIG_PULSE'
5458 noaomodules="pulse $noaomodules"
5462 echocheck "JACK"
5463 if test "$_jack" = auto ; then
5464 _jack=yes
5466 cat > $TMPC << EOF
5467 #include <jack/jack.h>
5468 int main(void) { jack_client_open("test", JackUseExactName, NULL); return 0; }
5470 if cc_check -ljack ; then
5471 libs_mplayer="$libs_mplayer -ljack"
5472 elif cc_check $($_pkg_config --libs --cflags --silence-errors jack) ; then
5473 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
5474 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
5475 else
5476 _jack=no
5480 if test "$_jack" = yes ; then
5481 def_jack='#define CONFIG_JACK 1'
5482 aomodules="jack $aomodules"
5483 else
5484 noaomodules="jack $noaomodules"
5486 echores "$_jack"
5488 echocheck "OpenAL"
5489 if test "$_openal" = auto ; then
5490 _openal=no
5491 cat > $TMPC << EOF
5492 #ifdef OPENAL_AL_H
5493 #include <OpenAL/al.h>
5494 #else
5495 #include <AL/al.h>
5496 #endif
5497 int main(void) {
5498 alSourceQueueBuffers(0, 0, 0);
5499 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5500 return 0;
5503 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5504 cc_check $I && _openal=yes && break
5505 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5506 done
5507 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
5509 if test "$_openal" = yes ; then
5510 def_openal='#define CONFIG_OPENAL 1'
5511 aomodules="openal $aomodules"
5512 else
5513 noaomodules="openal $noaomodules"
5515 echores "$_openal"
5517 echocheck "ALSA audio"
5518 if test "$_alloca" != yes ; then
5519 _alsa=no
5520 res_comment="alloca missing"
5522 if test "$_alsa" != no ; then
5523 _alsa=no
5524 cat > $TMPC << EOF
5525 #include <sys/asoundlib.h>
5526 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5527 #error "alsa version != 0.5.x"
5528 #endif
5529 int main(void) { return 0; }
5531 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5533 cat > $TMPC << EOF
5534 #include <sys/asoundlib.h>
5535 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5536 #error "alsa version != 0.9.x"
5537 #endif
5538 int main(void) { return 0; }
5540 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5541 cat > $TMPC << EOF
5542 #include <alsa/asoundlib.h>
5543 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5544 #error "alsa version != 0.9.x"
5545 #endif
5546 int main(void) { return 0; }
5548 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5550 cat > $TMPC << EOF
5551 #include <sys/asoundlib.h>
5552 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5553 #error "alsa version != 1.0.x"
5554 #endif
5555 int main(void) { return 0; }
5557 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5558 cat > $TMPC << EOF
5559 #include <alsa/asoundlib.h>
5560 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5561 #error "alsa version != 1.0.x"
5562 #endif
5563 int main(void) { return 0; }
5565 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5567 def_alsa='#undef CONFIG_ALSA'
5568 def_alsa5='#undef CONFIG_ALSA5'
5569 def_alsa9='#undef CONFIG_ALSA9'
5570 def_alsa1x='#undef CONFIG_ALSA1X'
5571 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5572 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5573 if test "$_alsaver" ; then
5574 _alsa=yes
5575 if test "$_alsaver" = '0.5.x' ; then
5576 _alsa5=yes
5577 aomodules="alsa5 $aomodules"
5578 def_alsa5='#define CONFIG_ALSA5 1'
5579 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5580 res_comment="using alsa 0.5.x and sys/asoundlib.h"
5581 elif test "$_alsaver" = '0.9.x-sys' ; then
5582 _alsa9=yes
5583 aomodules="alsa $aomodules"
5584 def_alsa='#define CONFIG_ALSA 1'
5585 def_alsa9='#define CONFIG_ALSA9 1'
5586 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5587 res_comment="using alsa 0.9.x and sys/asoundlib.h"
5588 elif test "$_alsaver" = '0.9.x-alsa' ; then
5589 _alsa9=yes
5590 aomodules="alsa $aomodules"
5591 def_alsa='#define CONFIG_ALSA 1'
5592 def_alsa9='#define CONFIG_ALSA9 1'
5593 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5594 res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5595 elif test "$_alsaver" = '1.0.x-sys' ; then
5596 _alsa1x=yes
5597 aomodules="alsa $aomodules"
5598 def_alsa='#define CONFIG_ALSA 1'
5599 def_alsa1x="#define CONFIG_ALSA1X 1"
5600 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5601 res_comment="using alsa 1.0.x and sys/asoundlib.h"
5602 elif test "$_alsaver" = '1.0.x-alsa' ; then
5603 _alsa1x=yes
5604 aomodules="alsa $aomodules"
5605 def_alsa='#define CONFIG_ALSA 1'
5606 def_alsa1x="#define CONFIG_ALSA1X 1"
5607 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5608 res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5609 else
5610 _alsa=no
5611 res_comment="unknown version"
5613 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5614 else
5615 noaomodules="alsa $noaomodules"
5617 echores "$_alsa"
5620 echocheck "Sun audio"
5621 if test "$_sunaudio" = auto ; then
5622 cat > $TMPC << EOF
5623 #include <sys/types.h>
5624 #include <sys/audioio.h>
5625 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5627 _sunaudio=no
5628 cc_check && _sunaudio=yes
5630 if test "$_sunaudio" = yes ; then
5631 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5632 aomodules="sun $aomodules"
5633 else
5634 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5635 noaomodules="sun $noaomodules"
5637 echores "$_sunaudio"
5640 def_mlib='#define CONFIG_MLIB 0'
5641 if sunos; then
5642 echocheck "Sun mediaLib"
5643 if test "$_mlib" = auto ; then
5644 _mlib=no
5645 cat > $TMPC << EOF
5646 #include <mlib.h>
5647 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; }
5649 cc_check -lmlib && _mlib=yes && def_mlib='#define CONFIG_MLIB 1'
5651 echores "$_mlib"
5652 fi #if sunos
5655 if darwin; then
5656 echocheck "CoreAudio"
5657 if test "$_coreaudio" = auto ; then
5658 cat > $TMPC <<EOF
5659 #include <CoreAudio/CoreAudio.h>
5660 #include <AudioToolbox/AudioToolbox.h>
5661 #include <AudioUnit/AudioUnit.h>
5662 int main(void) { return 0; }
5664 _coreaudio=no
5665 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5667 if test "$_coreaudio" = yes ; then
5668 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5669 def_coreaudio='#define CONFIG_COREAUDIO 1'
5670 aomodules="coreaudio $aomodules"
5671 else
5672 def_coreaudio='#undef CONFIG_COREAUDIO'
5673 noaomodules="coreaudio $noaomodules"
5675 echores $_coreaudio
5676 fi #if darwin
5679 if irix; then
5680 echocheck "SGI audio"
5681 if test "$_sgiaudio" = auto ; then
5682 _sgiaudio=no
5683 header_check dmedia/audio.h && _sgiaudio=yes
5685 if test "$_sgiaudio" = "yes" ; then
5686 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5687 libs_mplayer="$libs_mplayer -laudio"
5688 aomodules="sgi $aomodules"
5689 else
5690 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5691 noaomodules="sgi $noaomodules"
5693 echores "$_sgiaudio"
5694 fi #if irix
5697 if os2 ; then
5698 echocheck "KAI (UNIAUD/DART)"
5699 if test "$_kai" = auto; then
5700 cat > $TMPC << EOF
5701 #include <os2.h>
5702 #include <kai.h>
5703 int main(void) { return 0; }
5705 _kai=no;
5706 cc_check -lkai && _kai=yes
5708 if test "$_kai" = yes ; then
5709 def_kai='#define CONFIG_KAI 1'
5710 libs_mplayer="$libs_mplayer -lkai"
5711 aomodules="kai $aomodules"
5712 else
5713 def_kai='#undef CONFIG_KAI'
5714 noaomodules="kai $noaomodules"
5716 echores "$_kai"
5718 echocheck "DART"
5719 if test "$_dart" = auto; then
5720 cat > $TMPC << EOF
5721 #include <os2.h>
5722 #include <dart.h>
5723 int main(void) { return 0; }
5725 _dart=no;
5726 cc_check -ldart && _dart=yes
5728 if test "$_dart" = yes ; then
5729 def_dart='#define CONFIG_DART 1'
5730 libs_mplayer="$libs_mplayer -ldart"
5731 aomodules="dart $aomodules"
5732 else
5733 def_dart='#undef CONFIG_DART'
5734 noaomodules="dart $noaomodules"
5736 echores "$_dart"
5737 fi #if os2
5740 # set default CD/DVD devices
5741 if win32 || os2 ; then
5742 default_cdrom_device="D:"
5743 elif darwin ; then
5744 default_cdrom_device="/dev/disk1"
5745 elif dragonfly ; then
5746 default_cdrom_device="/dev/cd0"
5747 elif freebsd ; then
5748 default_cdrom_device="/dev/acd0"
5749 elif openbsd ; then
5750 default_cdrom_device="/dev/rcd0a"
5751 elif sunos ; then
5752 default_cdrom_device="/vol/dev/aliases/cdrom0"
5753 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5754 # file system and the volfs service.
5755 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5756 elif amigaos ; then
5757 default_cdrom_device="a1ide.device:2"
5758 else
5759 default_cdrom_device="/dev/cdrom"
5762 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5763 default_dvd_device=$default_cdrom_device
5764 elif darwin ; then
5765 default_dvd_device="/dev/rdiskN"
5766 else
5767 default_dvd_device="/dev/dvd"
5771 echocheck "VCD support"
5772 if test "$_vcd" = auto; then
5773 _vcd=no
5774 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2; then
5775 _vcd=yes
5776 elif mingw32; then
5777 header_check ddk/ntddcdrm.h && _vcd=yes
5780 if test "$_vcd" = yes; then
5781 inputmodules="vcd $inputmodules"
5782 def_vcd='#define CONFIG_VCD 1'
5783 else
5784 def_vcd='#undef CONFIG_VCD'
5785 noinputmodules="vcd $noinputmodules"
5786 res_comment="not supported on this OS"
5788 echores "$_vcd"
5792 echocheck "Blu-ray support"
5793 if test "$_bluray" = auto ; then
5794 _bluray=no
5796 cat > $TMPC << EOF
5797 #include <stdlib.h>
5798 #include <libbluray/bluray.h>
5799 int main(void) {
5800 BLURAY_TITLE_INFO *i = bd_get_title_info(NULL, 0);
5801 return 0;
5804 compile_check $TMPC -lbluray && _bluray=yes
5806 if test "$_bluray" = yes ; then
5807 def_bluray='#define CONFIG_LIBBLURAY 1'
5808 extra_ldflags="$extra_ldflags -lbluray"
5809 inputmodules="bluray $inputmodules"
5810 else
5811 def_bluray='#undef CONFIG_LIBBLURAY'
5812 noinputmodules="bluray $noinputmodules"
5814 echores "$_bluray"
5816 echocheck "dvdread"
5817 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5818 _dvdread_internal=no
5820 if test "$_dvdread_internal" = auto ; then
5821 _dvdread_internal=no
5822 _dvdread=no
5823 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) \
5824 && (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
5825 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) \
5826 || darwin || win32 || os2; then
5827 _dvdread_internal=yes
5828 _dvdread=yes
5829 extra_cflags="-Ilibdvdread4 $extra_cflags"
5831 elif test "$_dvdread" = auto ; then
5832 _dvdread=no
5833 if test "$_dl" = yes; then
5834 cat > $TMPC << EOF
5835 #include <inttypes.h>
5836 #include <dvdread/dvd_reader.h>
5837 #include <dvdread/ifo_types.h>
5838 #include <dvdread/ifo_read.h>
5839 #include <dvdread/nav_read.h>
5840 int main(void) { return 0; }
5842 _dvdreadcflags=$($_dvdreadconfig --cflags)
5843 _dvdreadlibs=$($_dvdreadconfig --libs)
5844 if cc_check -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
5845 $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5846 _dvdread=yes
5847 extra_cflags="$extra_cflags $_dvdreadcflags"
5848 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5849 res_comment="external"
5854 if test "$_dvdread_internal" = yes; then
5855 def_dvdread='#define CONFIG_DVDREAD 1'
5856 inputmodules="dvdread(internal) $inputmodules"
5857 _largefiles=yes
5858 res_comment="internal"
5859 elif test "$_dvdread" = yes; then
5860 def_dvdread='#define CONFIG_DVDREAD 1'
5861 _largefiles=yes
5862 extra_ldflags="$extra_ldflags -ldvdread"
5863 inputmodules="dvdread(external) $inputmodules"
5864 res_comment="external"
5865 else
5866 def_dvdread='#undef CONFIG_DVDREAD'
5867 noinputmodules="dvdread $noinputmodules"
5869 echores "$_dvdread"
5872 echocheck "internal libdvdcss"
5873 if test "$_libdvdcss_internal" = auto ; then
5874 _libdvdcss_internal=no
5875 test "$_dvdread_internal" = yes && _libdvdcss_internal=yes
5876 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5878 if test "$_libdvdcss_internal" = yes ; then
5879 if linux || netbsd || openbsd || bsdos ; then
5880 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5881 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5882 elif freebsd || dragonfly ; then
5883 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5884 elif darwin ; then
5885 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5886 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5887 elif cygwin ; then
5888 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5889 elif beos ; then
5890 cflags_libdvdcss="-DSYS_BEOS"
5891 elif os2 ; then
5892 cflags_libdvdcss="-DSYS_OS2"
5894 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5895 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5896 inputmodules="libdvdcss(internal) $inputmodules"
5897 _largefiles=yes
5898 else
5899 noinputmodules="libdvdcss(internal) $noinputmodules"
5901 echores "$_libdvdcss_internal"
5904 echocheck "cdparanoia"
5905 if test "$_cdparanoia" = auto ; then
5906 cat > $TMPC <<EOF
5907 #include <cdda_interface.h>
5908 #include <cdda_paranoia.h>
5909 // This need a better test. How ?
5910 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5912 _cdparanoia=no
5913 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5914 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
5915 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5916 done
5918 if test "$_cdparanoia" = yes ; then
5919 _cdda='yes'
5920 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5921 openbsd && extra_ldflags="$extra_ldflags -lutil"
5923 echores "$_cdparanoia"
5926 echocheck "libcdio"
5927 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5928 cat > $TMPC << EOF
5929 #include <stdio.h>
5930 #include <cdio/version.h>
5931 #include <cdio/cdda.h>
5932 #include <cdio/paranoia.h>
5933 int main(void) {
5934 void *test = cdda_verbose_set;
5935 printf("%s\n", CDIO_VERSION);
5936 return test == (void *)1;
5939 _libcdio=no
5940 for _ld_tmp in "" "-lwinmm" ; do
5941 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
5942 cc_check $_ld_tmp $_ld_lm \
5943 && _libcdio=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
5944 done
5945 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
5946 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
5947 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
5948 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes \
5949 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5952 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
5953 _cdda='yes'
5954 def_libcdio='#define CONFIG_LIBCDIO 1'
5955 def_havelibcdio='yes'
5956 else
5957 if test "$_cdparanoia" = yes ; then
5958 res_comment="using cdparanoia"
5960 def_libcdio='#undef CONFIG_LIBCDIO'
5961 def_havelibcdio='no'
5963 echores "$_libcdio"
5965 if test "$_cdda" = yes ; then
5966 test $_cddb = auto && test $networking = yes && _cddb=yes
5967 def_cdparanoia='#define CONFIG_CDDA 1'
5968 inputmodules="cdda $inputmodules"
5969 else
5970 def_cdparanoia='#undef CONFIG_CDDA'
5971 noinputmodules="cdda $noinputmodules"
5974 if test "$_cddb" = yes ; then
5975 def_cddb='#define CONFIG_CDDB 1'
5976 inputmodules="cddb $inputmodules"
5977 else
5978 _cddb=no
5979 def_cddb='#undef CONFIG_CDDB'
5980 noinputmodules="cddb $noinputmodules"
5983 echocheck "bitmap font support"
5984 if test "$_bitmap_font" = yes ; then
5985 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
5986 else
5987 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
5989 echores "$_bitmap_font"
5992 echocheck "freetype >= 2.0.9"
5994 # freetype depends on iconv
5995 if test "$_iconv" = no ; then
5996 _freetype=no
5997 res_comment="iconv support needed"
6000 if test "$_freetype" = auto ; then
6001 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
6002 cat > $TMPC << EOF
6003 #include <stdio.h>
6004 #include <ft2build.h>
6005 #include FT_FREETYPE_H
6006 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
6007 #error "Need FreeType 2.0.9 or newer"
6008 #endif
6009 int main(void) {
6010 FT_Library library;
6011 FT_Int major=-1,minor=-1,patch=-1;
6012 int err=FT_Init_FreeType(&library);
6013 return 0;
6016 _freetype=no
6017 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
6018 else
6019 _freetype=no
6022 if test "$_freetype" = yes ; then
6023 def_freetype='#define CONFIG_FREETYPE 1'
6024 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
6025 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
6026 else
6027 def_freetype='#undef CONFIG_FREETYPE'
6029 echores "$_freetype"
6031 if test "$_freetype" = no ; then
6032 _fontconfig=no
6033 res_comment="FreeType support needed"
6035 echocheck "fontconfig"
6036 if test "$_fontconfig" = auto ; then
6037 cat > $TMPC << EOF
6038 #include <stdio.h>
6039 #include <stdlib.h>
6040 #include <fontconfig/fontconfig.h>
6041 #if FC_VERSION < 20402
6042 #error At least version 2.4.2 of fontconfig required
6043 #endif
6044 int main(void) {
6045 int err = FcInit();
6046 if (err == FcFalse) {
6047 printf("Couldn't initialize fontconfig lib\n");
6048 exit(err);
6050 return 0;
6053 _fontconfig=no
6054 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
6055 _ld_tmp="-lfontconfig $_ld_tmp"
6056 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6057 done
6058 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
6059 _inc_tmp=$($_pkg_config --cflags fontconfig)
6060 _ld_tmp=$($_pkg_config --libs fontconfig)
6061 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes \
6062 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6065 if test "$_fontconfig" = yes ; then
6066 def_fontconfig='#define CONFIG_FONTCONFIG 1'
6067 else
6068 def_fontconfig='#undef CONFIG_FONTCONFIG'
6070 echores "$_fontconfig"
6073 echocheck "SSA/ASS support"
6074 if test "$_ass" = auto -o "$_ass" = yes ; then
6075 if $_pkg_config libass; then
6076 _ass=yes
6077 def_ass='#define CONFIG_ASS 1'
6078 extra_ldflags="$extra_ldflags $($_pkg_config --libs libass)"
6079 extra_cflags="$extra_cflags $($_pkg_config --cflags libass)"
6080 else
6081 _ass=no
6082 def_ass='#undef CONFIG_ASS'
6084 else
6085 def_ass='#undef CONFIG_ASS'
6087 echores "$_ass"
6090 echocheck "fribidi with charsets"
6091 _inc_tmp=""
6092 _ld_tmp=""
6093 if test "$_fribidi" = auto ; then
6094 cat > $TMPC << EOF
6095 #include <stdlib.h>
6096 /* workaround for fribidi 0.10.4 and below */
6097 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
6098 #include <fribidi/fribidi.h>
6099 int main(void) {
6100 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8)
6101 exit(1);
6102 return 0;
6105 _fribidi=no
6106 _inc_tmp=""
6107 _ld_tmp="-lfribidi"
6108 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6109 if $_pkg_config --exists fribidi > /dev/null 2>&1 &&
6110 test "$_fribidi" = no ; then
6111 _inc_tmp="$($_pkg_config --cflags)"
6112 _ld_tmp="$($_pkg_config --libs)"
6113 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6116 if test "$_fribidi" = yes ; then
6117 def_fribidi='#define CONFIG_FRIBIDI 1'
6118 extra_cflags="$extra_cflags $_inc_tmp"
6119 extra_ldflags="$extra_ldflags $_ld_tmp"
6120 else
6121 def_fribidi='#undef CONFIG_FRIBIDI'
6123 echores "$_fribidi"
6126 echocheck "ENCA"
6127 if test "$_enca" = auto ; then
6128 cat > $TMPC << EOF
6129 #include <sys/types.h>
6130 #include <enca.h>
6131 int main(void) {
6132 const char **langs;
6133 size_t langcnt;
6134 langs = enca_get_languages(&langcnt);
6135 return 0;
6138 _enca=no
6139 cc_check -lenca $_ld_lm && _enca=yes
6141 if test "$_enca" = yes ; then
6142 def_enca='#define CONFIG_ENCA 1'
6143 extra_ldflags="$extra_ldflags -lenca"
6144 else
6145 def_enca='#undef CONFIG_ENCA'
6147 echores "$_enca"
6150 echocheck "zlib"
6151 cat > $TMPC << EOF
6152 #include <zlib.h>
6153 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; }
6155 _zlib=no
6156 cc_check -lz && _zlib=yes
6157 if test "$_zlib" = yes ; then
6158 def_zlib='#define CONFIG_ZLIB 1'
6159 extra_ldflags="$extra_ldflags -lz"
6160 else
6161 def_zlib='#define CONFIG_ZLIB 0'
6163 echores "$_zlib"
6166 echocheck "bzlib"
6167 bzlib=no
6168 def_bzlib='#define CONFIG_BZLIB 0'
6169 cat > $TMPC << EOF
6170 #include <bzlib.h>
6171 int main(void) { BZ2_bzlibVersion(); return 0; }
6173 cc_check -lbz2 && bzlib=yes
6174 if test "$bzlib" = yes ; then
6175 def_bzlib='#define CONFIG_BZLIB 1'
6176 extra_ldflags="$extra_ldflags -lbz2"
6178 echores "$bzlib"
6181 echocheck "RTC"
6182 if test "$_rtc" = auto ; then
6183 cat > $TMPC << EOF
6184 #include <sys/ioctl.h>
6185 #ifdef __linux__
6186 #include <linux/rtc.h>
6187 #else
6188 #include <rtc.h>
6189 #define RTC_PIE_ON RTCIO_PIE_ON
6190 #endif
6191 int main(void) { return RTC_PIE_ON; }
6193 _rtc=no
6194 cc_check && _rtc=yes
6195 ppc && _rtc=no
6197 if test "$_rtc" = yes ; then
6198 def_rtc='#define HAVE_RTC 1'
6199 else
6200 def_rtc='#undef HAVE_RTC'
6202 echores "$_rtc"
6205 echocheck "liblzo2 support"
6206 if test "$_liblzo" = auto ; then
6207 _liblzo=no
6208 cat > $TMPC << EOF
6209 #include <lzo/lzo1x.h>
6210 int main(void) { lzo_init(); return 0; }
6212 cc_check -llzo2 && _liblzo=yes
6214 if test "$_liblzo" = yes ; then
6215 def_liblzo='#define CONFIG_LIBLZO 1'
6216 extra_ldflags="$extra_ldflags -llzo2"
6217 codecmodules="liblzo $codecmodules"
6218 else
6219 def_liblzo='#undef CONFIG_LIBLZO'
6220 nocodecmodules="liblzo $nocodecmodules"
6222 echores "$_liblzo"
6225 echocheck "mad support"
6226 if test "$_mad" = auto ; then
6227 _mad=no
6228 header_check mad.h -lmad && _mad=yes
6230 if test "$_mad" = yes ; then
6231 def_mad='#define CONFIG_LIBMAD 1'
6232 extra_ldflags="$extra_ldflags -lmad"
6233 codecmodules="libmad $codecmodules"
6234 else
6235 def_mad='#undef CONFIG_LIBMAD'
6236 nocodecmodules="libmad $nocodecmodules"
6238 echores "$_mad"
6240 echocheck "Twolame"
6241 if test "$_twolame" = auto ; then
6242 cat > $TMPC <<EOF
6243 #include <twolame.h>
6244 int main(void) { twolame_init(); return 0; }
6246 _twolame=no
6247 cc_check -ltwolame $_ld_lm && _twolame=yes
6249 if test "$_twolame" = yes ; then
6250 def_twolame='#define CONFIG_TWOLAME 1'
6251 libs_mencoder="$libs_mencoder -ltwolame"
6252 codecmodules="twolame $codecmodules"
6253 else
6254 def_twolame='#undef CONFIG_TWOLAME'
6255 nocodecmodules="twolame $nocodecmodules"
6257 echores "$_twolame"
6259 echocheck "Toolame"
6260 if test "$_toolame" = auto ; then
6261 _toolame=no
6262 if test "$_twolame" = yes ; then
6263 res_comment="disabled by twolame"
6264 else
6265 cat > $TMPC <<EOF
6266 #include <toolame.h>
6267 int main(void) { toolame_init(); return 0; }
6269 cc_check -ltoolame $_ld_lm && _toolame=yes
6272 if test "$_toolame" = yes ; then
6273 def_toolame='#define CONFIG_TOOLAME 1'
6274 libs_mencoder="$libs_mencoder -ltoolame"
6275 codecmodules="toolame $codecmodules"
6276 else
6277 def_toolame='#undef CONFIG_TOOLAME'
6278 nocodecmodules="toolame $nocodecmodules"
6280 if test "$_toolamedir" ; then
6281 res_comment="using $_toolamedir"
6283 echores "$_toolame"
6285 echocheck "OggVorbis support"
6286 if test "$_tremor_internal" = yes; then
6287 _libvorbis=no
6288 elif test "$_tremor" = auto; then
6289 _tremor=no
6290 cat > $TMPC << EOF
6291 #include <tremor/ivorbiscodec.h>
6292 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6294 cc_check -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
6296 if test "$_libvorbis" = auto; then
6297 _libvorbis=no
6298 cat > $TMPC << EOF
6299 #include <vorbis/codec.h>
6300 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6302 cc_check -lvorbis -logg $_ld_lm && _libvorbis=yes
6304 if test "$_tremor_internal" = yes ; then
6305 _vorbis=yes
6306 def_vorbis='#define CONFIG_OGGVORBIS 1'
6307 def_tremor='#define CONFIG_TREMOR 1'
6308 codecmodules="tremor(internal) $codecmodules"
6309 res_comment="internal Tremor"
6310 if test "$_tremor_low" = yes ; then
6311 cflags_tremor_low="-D_LOW_ACCURACY_"
6312 res_comment="internal low accuracy Tremor"
6314 elif test "$_tremor" = yes ; then
6315 _vorbis=yes
6316 def_vorbis='#define CONFIG_OGGVORBIS 1'
6317 def_tremor='#define CONFIG_TREMOR 1'
6318 codecmodules="tremor(external) $codecmodules"
6319 res_comment="external Tremor"
6320 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
6321 elif test "$_libvorbis" = yes ; then
6322 _vorbis=yes
6323 def_vorbis='#define CONFIG_OGGVORBIS 1'
6324 codecmodules="libvorbis $codecmodules"
6325 res_comment="libvorbis"
6326 extra_ldflags="$extra_ldflags -lvorbis -logg"
6327 else
6328 _vorbis=no
6329 nocodecmodules="libvorbis $nocodecmodules"
6331 echores "$_vorbis"
6333 echocheck "libspeex (version >= 1.1 required)"
6334 if test "$_speex" = auto ; then
6335 _speex=no
6336 cat > $TMPC << EOF
6337 #include <speex/speex.h>
6338 int main(void) { SpeexBits bits; void *dec; speex_decode_int(dec, &bits, dec); return 0; }
6340 cc_check -lspeex $_ld_lm && _speex=yes
6342 if test "$_speex" = yes ; then
6343 def_speex='#define CONFIG_SPEEX 1'
6344 extra_ldflags="$extra_ldflags -lspeex"
6345 codecmodules="speex $codecmodules"
6346 else
6347 def_speex='#undef CONFIG_SPEEX'
6348 nocodecmodules="speex $nocodecmodules"
6350 echores "$_speex"
6352 echocheck "OggTheora support"
6353 if test "$_theora" = auto ; then
6354 _theora=no
6355 cat > $TMPC << EOF
6356 #include <theora/theora.h>
6357 #include <string.h>
6358 int main(void) {
6359 /* Theora is in flux, make sure that all interface routines and datatypes
6360 * exist and work the way we expect it, so we don't break MPlayer. */
6361 ogg_packet op;
6362 theora_comment tc;
6363 theora_info inf;
6364 theora_state st;
6365 yuv_buffer yuv;
6366 int r;
6367 double t;
6369 theora_info_init(&inf);
6370 theora_comment_init(&tc);
6372 return 0;
6374 /* we don't want to execute this kind of nonsense; just for making sure
6375 * that compilation works... */
6376 memset(&op, 0, sizeof(op));
6377 r = theora_decode_header(&inf, &tc, &op);
6378 r = theora_decode_init(&st, &inf);
6379 t = theora_granule_time(&st, op.granulepos);
6380 r = theora_decode_packetin(&st, &op);
6381 r = theora_decode_YUVout(&st, &yuv);
6382 theora_clear(&st);
6384 return 0;
6387 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6388 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6389 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
6390 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6391 if test _theora = no; then
6392 _ld_theora="-ltheora -logg"
6393 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6395 if test "$_theora" = no && test "$_tremor_internal" = yes; then
6396 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6397 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6398 cc_check tremor/bitwise.c $_inc_theora $_ld_theora &&
6399 extra_ldflags="$extra_ldflags $_ld_theora" &&
6400 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6401 if test _theora = no; then
6402 _ld_theora="-ltheora -logg"
6403 cc_check tremor/bitwise.c $_ld_theora &&
6404 extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6408 if test "$_theora" = yes ; then
6409 def_theora='#define CONFIG_OGGTHEORA 1'
6410 codecmodules="libtheora $codecmodules"
6411 # when --enable-theora is forced, we'd better provide a probably sane
6412 # $_ld_theora than nothing
6413 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
6414 else
6415 def_theora='#undef CONFIG_OGGTHEORA'
6416 nocodecmodules="libtheora $nocodecmodules"
6418 echores "$_theora"
6420 echocheck "mp3lib support"
6421 if test "$_mp3lib" = auto ; then
6422 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _mp3lib=no || _mp3lib=yes
6424 if test "$_mp3lib" = yes ; then
6425 def_mp3lib='#define CONFIG_MP3LIB 1'
6426 codecmodules="mp3lib(internal) $codecmodules"
6427 else
6428 def_mp3lib='#undef CONFIG_MP3LIB'
6429 nocodecmodules="mp3lib(internal) $nocodecmodules"
6431 echores "$_mp3lib"
6433 # Any version of libmpg123 shall be fine.
6434 echocheck "mpg123 support"
6435 def_mpg123='#undef CONFIG_MPG123'
6436 if test "$_mpg123" = auto; then
6437 _mpg123=no
6438 cat > $TMPC <<EOF
6439 #include <mpg123.h>
6440 int main(void){ mpg123_init(); return 0; }
6442 cc_check -lmpg123 && _mpg123=yes && extra_ldflags="$extra_ldflags -lmpg123"
6444 if test "$_mpg123" = yes ; then
6445 def_mpg123='#define CONFIG_MPG123 1'
6446 codecmodules="mpg123 $codecmodules"
6447 else
6448 nocodecmodules="mpg123 $nocodecmodules"
6450 echores "$_mpg123"
6452 echocheck "liba52 support"
6453 def_liba52='#undef CONFIG_LIBA52'
6454 if test "$_liba52" = auto ; then
6455 _liba52=no
6456 cat > $TMPC << EOF
6457 #include <inttypes.h>
6458 #include <a52dec/a52.h>
6459 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6461 cc_check -la52 && _liba52=yes && extra_ldflags="$extra_ldflags -la52"
6463 if test "$_liba52" = yes ; then
6464 def_liba52='#define CONFIG_LIBA52 1'
6465 codecmodules="liba52 $codecmodules"
6466 else
6467 nocodecmodules="liba52 $nocodecmodules"
6469 echores "$_liba52"
6471 echocheck "internal libmpeg2 support"
6472 if test "$_libmpeg2" = auto ; then
6473 _libmpeg2=yes
6474 if alpha && test cc_vendor=gnu; then
6475 case $cc_version in
6476 2*|3.0*|3.1*) # cannot compile MVI instructions
6477 _libmpeg2=no
6478 res_comment="broken gcc"
6480 esac
6483 if test "$_libmpeg2" = yes ; then
6484 def_libmpeg2='#define CONFIG_LIBMPEG2 1'
6485 codecmodules="libmpeg2(internal) $codecmodules"
6486 else
6487 def_libmpeg2='#undef CONFIG_LIBMPEG2'
6488 nocodecmodules="libmpeg2(internal) $nocodecmodules"
6490 echores "$_libmpeg2"
6492 echocheck "libdca support"
6493 if test "$_libdca" = auto ; then
6494 _libdca=no
6495 cat > $TMPC << EOF
6496 #include <inttypes.h>
6497 #include <dts.h>
6498 int main(void) { dts_init(0); return 0; }
6500 for _ld_dca in -ldca -ldts ; do
6501 cc_check $_ld_dca $_ld_lm && extra_ldflags="$extra_ldflags $_ld_dca" \
6502 && _libdca=yes && break
6503 done
6505 if test "$_libdca" = yes ; then
6506 def_libdca='#define CONFIG_LIBDCA 1'
6507 codecmodules="libdca $codecmodules"
6508 else
6509 def_libdca='#undef CONFIG_LIBDCA'
6510 nocodecmodules="libdca $nocodecmodules"
6512 echores "$_libdca"
6514 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
6515 if test "$_musepack" = auto ; then
6516 _musepack=no
6517 cat > $TMPC << EOF
6518 #include <stddef.h>
6519 #include <mpcdec/mpcdec.h>
6520 int main(void) {
6521 mpc_streaminfo info;
6522 mpc_decoder decoder;
6523 mpc_decoder_set_streaminfo(&decoder, &info);
6524 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6525 return 0;
6528 cc_check -lmpcdec $_ld_lm && _musepack=yes
6530 if test "$_musepack" = yes ; then
6531 def_musepack='#define CONFIG_MUSEPACK 1'
6532 extra_ldflags="$extra_ldflags -lmpcdec"
6533 codecmodules="musepack $codecmodules"
6534 else
6535 def_musepack='#undef CONFIG_MUSEPACK'
6536 nocodecmodules="musepack $nocodecmodules"
6538 echores "$_musepack"
6541 echocheck "FAAC support"
6542 if test "$_faac" = auto ; then
6543 cat > $TMPC <<EOF
6544 #include <inttypes.h>
6545 #include <faac.h>
6546 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6548 _faac=no
6549 for _ld_faac in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6550 cc_check $_ld_faac $_ld_lm && libs_mencoder="$libs_mencoder $_ld_faac" && _faac=yes && break
6551 done
6553 if test "$_faac" = yes ; then
6554 def_faac="#define CONFIG_FAAC 1"
6555 codecmodules="faac $codecmodules"
6556 else
6557 def_faac="#undef CONFIG_FAAC"
6558 nocodecmodules="faac $nocodecmodules"
6560 echores "$_faac"
6563 echocheck "FAAD2 support"
6564 if test "$_faad_internal" = auto ; then
6565 if x86_32 && test cc_vendor=gnu; then
6566 case $cc_version in
6567 3.1*|3.2) # ICE/insn with these versions
6568 _faad_internal=no
6569 res_comment="broken gcc"
6572 _faad=yes
6573 _faad_internal=yes
6575 esac
6576 else
6577 _faad=yes
6578 _faad_internal=yes
6581 if test "$_faad" = auto ; then
6582 cat > $TMPC << EOF
6583 #include <faad.h>
6584 #ifndef FAAD_MIN_STREAMSIZE
6585 #error Too old version
6586 #endif
6587 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6588 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6590 cc_check -lfaad $_ld_lm && _faad=yes
6593 def_faad='#undef CONFIG_FAAD'
6594 def_faad_internal="#undef CONFIG_FAAD_INTERNAL"
6595 if test "$_faad_internal" = yes ; then
6596 def_faad_internal="#define CONFIG_FAAD_INTERNAL 1"
6597 res_comment="internal floating-point"
6598 if test "$_faad_fixed" = yes ; then
6599 # The FIXED_POINT implementation of FAAD2 improves performance
6600 # on some platforms, especially for SBR files.
6601 cflags_faad_fixed="-DFIXED_POINT"
6602 res_comment="internal fixed-point"
6604 elif test "$_faad" = yes ; then
6605 extra_ldflags="$extra_ldflags -lfaad"
6608 if test "$_faad" = yes ; then
6609 def_faad='#define CONFIG_FAAD 1'
6610 if test "$_faad_internal" = yes ; then
6611 codecmodules="faad2(internal) $codecmodules"
6612 else
6613 codecmodules="faad2 $codecmodules"
6615 else
6616 _faad=no
6617 nocodecmodules="faad2 $nocodecmodules"
6619 echores "$_faad"
6622 echocheck "LADSPA plugin support"
6623 if test "$_ladspa" = auto ; then
6624 cat > $TMPC <<EOF
6625 #include <ladspa.h>
6626 int main(void) {
6627 LADSPA_Descriptor ld = {0};
6628 return 0;
6631 _ladspa=no
6632 cc_check && _ladspa=yes
6634 if test "$_ladspa" = yes; then
6635 def_ladspa="#define CONFIG_LADSPA 1"
6636 else
6637 def_ladspa="#undef CONFIG_LADSPA"
6639 echores "$_ladspa"
6642 echocheck "libbs2b audio filter support"
6643 if test "$_libbs2b" = auto ; then
6644 cat > $TMPC <<EOF
6645 #include <bs2b.h>
6646 #if BS2B_VERSION_MAJOR < 3
6647 #error Please use libbs2b >= 3.0.0, older versions are not supported.
6648 #endif
6649 int main(void) {
6650 t_bs2bdp filter;
6651 filter=bs2b_open();
6652 bs2b_close(filter);
6653 return 0;
6656 _libbs2b=no
6657 if $_pkg_config --exists libbs2b ; then
6658 _inc_tmp=$($_pkg_config --cflags libbs2b)
6659 _ld_tmp=$($_pkg_config --libs libbs2b)
6660 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
6661 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
6662 else
6663 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
6664 -I/usr/local/include/bs2b ; do
6665 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
6666 extra_ldflags="$extra_ldflags -lbs2b"
6667 extra_cflags="$extra_cflags $_inc_tmp"
6668 _libbs2b=yes
6669 break
6671 done
6674 def_libbs2b="#undef CONFIG_LIBBS2B"
6675 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
6676 echores "$_libbs2b"
6679 if test -z "$_codecsdir" ; then
6680 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
6681 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
6682 if test -d "$dir" ; then
6683 _codecsdir="$dir"
6684 break;
6686 done
6688 # Fall back on default directory.
6689 if test -z "$_codecsdir" ; then
6690 _codecsdir="$_libdir/codecs"
6691 mingw32 || os2 && _codecsdir="codecs"
6695 echocheck "Win32 codecs"
6696 if test "$_win32dll" = auto ; then
6697 _win32dll=no
6698 if x86_32 && ! qnx; then
6699 _win32dll=yes
6702 if test "$_win32dll" = yes ; then
6703 def_win32dll='#define CONFIG_WIN32DLL 1'
6704 if ! win32 ; then
6705 def_win32_loader='#define WIN32_LOADER 1'
6706 _win32_emulation=yes
6707 else
6708 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
6709 res_comment="using native windows"
6711 codecmodules="win32 $codecmodules"
6712 else
6713 def_win32dll='#undef CONFIG_WIN32DLL'
6714 def_win32_loader='#undef WIN32_LOADER'
6715 nocodecmodules="win32 $nocodecmodules"
6717 echores "$_win32dll"
6720 echocheck "XAnim codecs"
6721 if test "$_xanim" = auto ; then
6722 _xanim=no
6723 res_comment="dynamic loader support needed"
6724 if test "$_dl" = yes ; then
6725 _xanim=yes
6728 if test "$_xanim" = yes ; then
6729 def_xanim='#define CONFIG_XANIM 1'
6730 codecmodules="xanim $codecmodules"
6731 else
6732 def_xanim='#undef CONFIG_XANIM'
6733 nocodecmodules="xanim $nocodecmodules"
6735 echores "$_xanim"
6738 echocheck "RealPlayer codecs"
6739 if test "$_real" = auto ; then
6740 _real=no
6741 res_comment="dynamic loader support needed"
6742 if test "$_dl" = yes || test "$_win32dll" = yes &&
6743 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2) ; then
6744 _real=yes
6747 if test "$_real" = yes ; then
6748 def_real='#define CONFIG_REALCODECS 1'
6749 codecmodules="real $codecmodules"
6750 else
6751 def_real='#undef CONFIG_REALCODECS'
6752 nocodecmodules="real $nocodecmodules"
6754 echores "$_real"
6757 echocheck "QuickTime codecs"
6758 _qtx_emulation=no
6759 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
6760 if test "$_qtx" = auto ; then
6761 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
6763 if test "$_qtx" = yes ; then
6764 def_qtx='#define CONFIG_QTX_CODECS 1'
6765 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
6766 codecmodules="qtx $codecmodules"
6767 darwin || win32 || _qtx_emulation=yes
6768 else
6769 def_qtx='#undef CONFIG_QTX_CODECS'
6770 nocodecmodules="qtx $nocodecmodules"
6772 echores "$_qtx"
6774 echocheck "Nemesi Streaming Media libraries"
6775 if test "$_nemesi" = auto && test "$networking" = yes ; then
6776 _nemesi=no
6777 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
6778 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
6779 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
6780 _nemesi=yes
6783 if test "$_nemesi" = yes; then
6784 _native_rtsp=no
6785 def_nemesi='#define CONFIG_LIBNEMESI 1'
6786 inputmodules="nemesi $inputmodules"
6787 else
6788 _native_rtsp="$networking"
6789 _nemesi=no
6790 def_nemesi='#undef CONFIG_LIBNEMESI'
6791 noinputmodules="nemesi $noinputmodules"
6793 echores "$_nemesi"
6795 echocheck "LIVE555 Streaming Media libraries"
6796 if test "$_live" = auto && test "$networking" = yes ; then
6797 cat > $TMPCPP << EOF
6798 #include <liveMedia.hh>
6799 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6800 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6801 #endif
6802 int main(void) { return 0; }
6805 _live=no
6806 for I in $extra_cflags "-I$_libdir/live" "-I/usr/lib/live" "-I/usr/lib64/live" "-I/usr/local/live" "-I/usr/local/lib/live" ; do
6807 cxx_check $I/liveMedia/include $I/UsageEnvironment/include \
6808 $I/groupsock/include && _livelibdir=$(echo $I| sed s/-I//) && \
6809 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
6810 $_livelibdir/groupsock/libgroupsock.a \
6811 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6812 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6813 $extra_ldflags -lstdc++" \
6814 extra_cxxflags="-I$_livelibdir/liveMedia/include \
6815 -I$_livelibdir/UsageEnvironment/include \
6816 -I$_livelibdir/BasicUsageEnvironment/include \
6817 -I$_livelibdir/groupsock/include" && \
6818 _live=yes && break
6819 done
6820 if test "$_live" != yes ; then
6821 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6822 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
6823 _live_dist=yes
6827 if test "$_live" = yes && test "$networking" = yes; then
6828 test $_livelibdir && res_comment="using $_livelibdir"
6829 def_live='#define CONFIG_LIVE555 1'
6830 inputmodules="live555 $inputmodules"
6831 elif test "$_live_dist" = yes && test "$networking" = yes; then
6832 res_comment="using distribution version"
6833 _live="yes"
6834 def_live='#define CONFIG_LIVE555 1'
6835 extra_ldflags="$extra_ldflags $ld_tmp"
6836 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
6837 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6838 inputmodules="live555 $inputmodules"
6839 else
6840 _live=no
6841 def_live='#undef CONFIG_LIVE555'
6842 noinputmodules="live555 $noinputmodules"
6844 echores "$_live"
6847 echocheck "FFmpeg libavutil"
6848 if test "$_libavutil" = auto ; then
6849 _libavutil=no
6850 cat > $TMPC << EOF
6851 #include <libavutil/common.h>
6852 int main(void) { av_clip(1, 1, 1); return 0; }
6854 if $_pkg_config --exists libavutil ; then
6855 _inc_libavutil=$($_pkg_config --cflags libavutil)
6856 _ld_tmp=$($_pkg_config --libs libavutil)
6857 cc_check $_inc_libavutil $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libavutil" \
6858 && _libavutil=yes
6859 elif cc_check -lavutil $_ld_lm ; then
6860 extra_ldflags="$extra_ldflags -lavutil"
6861 _libavutil=yes
6864 def_libavutil='#undef CONFIG_LIBAVUTIL'
6865 test "$_libavutil" = yes && def_libavutil='#define CONFIG_LIBAVUTIL 1'
6866 # libavutil is not available, but it is mandatory ...
6867 if test "$_libavutil" = no ; then
6868 die "You need libavutil, MPlayer will not compile without!"
6870 echores "$_libavutil"
6872 echocheck "FFmpeg libavcodec"
6873 if test "$_libavcodec" = auto ; then
6874 _libavcodec=no
6875 cat > $TMPC << EOF
6876 #include <libavcodec/avcodec.h>
6877 int main(void) { avcodec_find_encoder_by_name(""); return 0; }
6879 if $_pkg_config --exists libavcodec ; then
6880 _inc_libavcodec=$($_pkg_config --cflags libavcodec)
6881 _ld_tmp=$($_pkg_config --libs libavcodec)
6882 cc_check $_inc_libavcodec $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavcodec" \
6883 && _libavcodec=yes
6884 elif cc_check -lavcodec $_ld_lm ; then
6885 extra_ldflags="$extra_ldflags -lavcodec"
6886 _libavcodec=yes
6889 def_libavcodec='#undef CONFIG_LIBAVCODEC'
6890 test "$_libavcodec" = yes && def_libavcodec='#define CONFIG_LIBAVCODEC 1'
6891 if test "$_libavcodec" = yes ; then
6892 codecmodules="libavcodec $codecmodules"
6893 else
6894 nocodecmodules="libavcodec $nocodecmodules"
6896 echores "$_libavcodec"
6898 echocheck "FFmpeg libavformat"
6899 if test "$_libavformat" = auto ; then
6900 _libavformat=no
6901 cat > $TMPC <<EOF
6902 #include <libavformat/avformat.h>
6903 int main(void) { av_alloc_format_context(); return 0; }
6905 if $_pkg_config --exists libavformat ; then
6906 _inc_libavformat=$($_pkg_config --cflags libavformat)
6907 _ld_tmp=$($_pkg_config --libs libavformat)
6908 cc_check $_inc_libavformat $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavformat" \
6909 && _libavformat=yes
6910 elif cc_check $_ld_lm -lavformat ; then
6911 extra_ldflags="$extra_ldflags -lavformat"
6912 _libavformat=yes
6915 def_libavformat='#undef CONFIG_LIBAVFORMAT'
6916 test "$_libavformat" = yes && def_libavformat='#define CONFIG_LIBAVFORMAT 1'
6917 echores "$_libavformat"
6919 echocheck "FFmpeg libpostproc"
6920 if test "$_libpostproc" = auto ; then
6921 _libpostproc=no
6922 cat > $TMPC << EOF
6923 #include <libpostproc/postprocess.h>
6924 int main(void) { pp_get_mode_by_name_and_quality("de", 0); return 0; }
6926 if $_pkg_config --exists libpostproc ; then
6927 _inc_libpostproc=$($_pkg_config --cflags libpostproc)
6928 _ld_tmp=$($_pkg_config --libs libpostproc)
6929 cc_check $_inc_libpostproc $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libpostproc" \
6930 && _libpostproc=yes
6931 elif cc_check -lpostproc $_ld_lm ; then
6932 extra_ldflags="$extra_ldflags -lpostproc"
6933 _libpostproc=yes
6936 def_libpostproc='#undef CONFIG_LIBPOSTPROC'
6937 test "$_libpostproc" = yes && def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
6938 echores "$_libpostproc"
6940 echocheck "FFmpeg libswscale"
6941 if test "$_libswscale" = auto ; then
6942 _libswscale=no
6943 cat > $TMPC << EOF
6944 #include <libswscale/swscale.h>
6945 int main(void) { sws_scale(0, 0, 0, 0, 0, 0, 0); return 0; }
6947 if $_pkg_config --exists libswscale ; then
6948 _inc_libswscale=$($_pkg_config --cflags libswscale)
6949 _ld_tmp=$($_pkg_config --libs libswscale)
6950 cc_check $_inc_libswscale $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libswscale" \
6951 && _libswscale=yes
6952 elif cc_check -lswscale ; then
6953 extra_ldflags="$extra_ldflags -lswscale"
6954 _libswscale=yes
6957 def_libswscale='#undef CONFIG_LIBSWSCALE'
6958 test "$_libswscale" = yes && def_libswscale='#define CONFIG_LIBSWSCALE 1'
6959 echores "$_libswscale"
6961 def_libswscale_internals="#undef CONFIG_LIBSWSCALE_INTERNALS"
6962 if ! test -z "$_ffmpeg_source" ; then
6963 test "$_libswscale" = yes && def_libswscale_internals="#define CONFIG_LIBSWSCALE_INTERNALS 1" && _libswscale_internals=yes
6966 def_libavcodec_internals="#undef CONFIG_LIBAVCODEC_INTERNALS"
6967 if ! test -z "$_ffmpeg_source" ; then
6968 test "$_libavcodec" = yes && def_libavcodec_internals="#define CONFIG_LIBAVCODEC_INTERNALS 1" && _libavcodec_internals=yes
6971 echocheck "libdv-0.9.5+"
6972 if test "$_libdv" = auto ; then
6973 _libdv=no
6974 cat > $TMPC <<EOF
6975 #include <libdv/dv.h>
6976 int main(void) { dv_encoder_t* enc=dv_encoder_new(1,1,1); return 0; }
6978 cc_check -ldv $_ld_pthread $_ld_lm && _libdv=yes
6980 if test "$_libdv" = yes ; then
6981 def_libdv='#define CONFIG_LIBDV095 1'
6982 extra_ldflags="$extra_ldflags -ldv"
6983 codecmodules="libdv $codecmodules"
6984 else
6985 def_libdv='#undef CONFIG_LIBDV095'
6986 nocodecmodules="libdv $nocodecmodules"
6988 echores "$_libdv"
6991 echocheck "Xvid"
6992 if test "$_xvid" = auto ; then
6993 _xvid=no
6994 cat > $TMPC << EOF
6995 #include <xvid.h>
6996 int main(void) { xvid_global(0, 0, 0, 0); return 0; }
6998 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
6999 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
7000 done
7003 if test "$_xvid" = yes ; then
7004 def_xvid='#define CONFIG_XVID4 1'
7005 codecmodules="xvid $codecmodules"
7006 else
7007 def_xvid='#undef CONFIG_XVID4'
7008 nocodecmodules="xvid $nocodecmodules"
7010 echores "$_xvid"
7012 echocheck "x264"
7013 if test "$_x264" = auto ; then
7014 cat > $TMPC << EOF
7015 #include <inttypes.h>
7016 #include <x264.h>
7017 #if X264_BUILD < 98
7018 #error We do not support old versions of x264. Get the latest from git.
7019 #endif
7020 int main(void) { x264_encoder_open((void*)0); return 0; }
7022 _x264=no
7023 for _ld_x264 in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
7024 cc_check $_ld_x264 && libs_mencoder="$libs_mencoder $_ld_x264" && _x264=yes && break
7025 done
7028 if test "$_x264" = yes ; then
7029 def_x264='#define CONFIG_X264 1'
7030 codecmodules="x264 $codecmodules"
7031 else
7032 def_x264='#undef CONFIG_X264'
7033 nocodecmodules="x264 $nocodecmodules"
7035 echores "$_x264"
7037 echocheck "libnut"
7038 if test "$_libnut" = auto ; then
7039 cat > $TMPC << EOF
7040 #include <libnut.h>
7041 nut_context_tt * nut;
7042 int main(void) { (void)nut_error(0); return 0; }
7044 _libnut=no
7045 cc_check -lnut && _libnut=yes
7048 if test "$_libnut" = yes ; then
7049 def_libnut='#define CONFIG_LIBNUT 1'
7050 extra_ldflags="$extra_ldflags -lnut"
7051 else
7052 def_libnut='#undef CONFIG_LIBNUT'
7054 echores "$_libnut"
7056 # These VO checks must be done after libavcodec/libswscale one
7057 echocheck "/dev/mga_vid"
7058 if test "$_mga" = auto ; then
7059 _mga=no
7060 test -c /dev/mga_vid && _mga=yes
7062 if test "$_mga" = yes ; then
7063 if test "$_libswscale_internals" = yes ; then
7064 def_mga='#define CONFIG_MGA 1'
7065 vomodules="mga $vomodules"
7066 else
7067 res_comment="libswscale internal headers are required by mga, sorry"
7068 _mga=no
7069 def_mga='#undef CONFIG_MGA'
7070 novomodules="mga $novomodules"
7072 else
7073 def_mga='#undef CONFIG_MGA'
7074 novomodules="mga $novomodules"
7076 echores "$_mga"
7079 echocheck "xmga"
7080 if test "$_xmga" = auto ; then
7081 _xmga=no
7082 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
7084 if test "$_xmga" = yes ; then
7085 if test "$_libswscale_internals" = yes ; then
7086 def_xmga='#define CONFIG_XMGA 1'
7087 vomodules="xmga $vomodules"
7088 else
7089 res_comment="libswscale internal headers are required by xmga, sorry"
7090 _xmga=no
7091 def_xmga='#undef CONFIG_XMGA'
7092 novomodules="xmga $novomodules"
7094 else
7095 def_xmga='#undef CONFIG_XMGA'
7096 novomodules="xmga $novomodules"
7098 echores "$_xmga"
7100 echocheck "zr"
7101 if test "$_zr" = auto ; then
7102 #36067's seem to identify themselves as 36057PQC's, so the line
7103 #below should work for 36067's and 36057's.
7104 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc/pci ; then
7105 _zr=yes
7106 else
7107 _zr=no
7110 if test "$_zr" = yes ; then
7111 if test "$_libavcodec_internals" = yes ; then
7112 def_zr='#define CONFIG_ZR 1'
7113 vomodules="zr zr2 $vomodules"
7114 else
7115 res_comment="libavcodec internal headers are required by zr, sorry"
7116 novomodules="zr $novomodules"
7117 def_zr='#undef CONFIG_ZR'
7119 else
7120 def_zr='#undef CONFIG_ZR'
7121 novomodules="zr zr2 $novomodules"
7123 echores "$_zr"
7125 # mencoder requires (optional) those libs: libmp3lame
7126 if test "$_mencoder" != no ; then
7128 echocheck "libmp3lame"
7129 def_mp3lame_preset='#undef CONFIG_MP3LAME_PRESET'
7130 def_mp3lame_preset_medium='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
7131 if test "$_mp3lame" = auto ; then
7132 _mp3lame=no
7133 cat > $TMPC <<EOF
7134 #include <lame/lame.h>
7135 int main(void) { lame_version_t lv; (void) lame_init();
7136 get_lame_version_numerical(&lv);
7137 return 0; }
7139 cc_check -lmp3lame $_ld_lm && _mp3lame=yes
7141 if test "$_mp3lame" = yes ; then
7142 def_mp3lame="#define CONFIG_MP3LAME 1"
7143 _ld_mp3lame=-lmp3lame
7144 libs_mencoder="$libs_mencoder $_ld_mp3lame"
7145 cat > $TMPC << EOF
7146 #include <lame/lame.h>
7147 int main(void) { lame_set_preset(NULL, STANDARD_FAST); return 0; }
7149 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset="#define CONFIG_MP3LAME_PRESET 1"
7150 cat > $TMPC << EOF
7151 #include <lame/lame.h>
7152 int main(void) { lame_set_preset(NULL, MEDIUM_FAST); return 0; }
7154 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset_medium="#define CONFIG_MP3LAME_PRESET_MEDIUM 1"
7155 else
7156 def_mp3lame='#undef CONFIG_MP3LAME'
7158 echores "$_mp3lame"
7160 fi # test "$_mencoder" != no
7162 echocheck "mencoder"
7163 if test "$_mencoder" = yes ; then
7164 def_muxers='#define CONFIG_MUXERS 1'
7165 else
7166 def_muxers='#define CONFIG_MUXERS 0'
7168 echores "$_mencoder"
7171 echocheck "UnRAR executable"
7172 if test "$_unrar_exec" = auto ; then
7173 _unrar_exec="yes"
7174 mingw32 && _unrar_exec="no"
7176 if test "$_unrar_exec" = yes ; then
7177 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
7178 else
7179 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
7181 echores "$_unrar_exec"
7183 echocheck "TV interface"
7184 if test "$_tv" = yes ; then
7185 def_tv='#define CONFIG_TV 1'
7186 inputmodules="tv $inputmodules"
7187 else
7188 noinputmodules="tv $noinputmodules"
7189 def_tv='#undef CONFIG_TV'
7191 echores "$_tv"
7194 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
7195 echocheck "*BSD BT848 bt8xx header"
7196 _ioctl_bt848_h=no
7197 for file in "machine/ioctl_bt848.h" \
7198 "dev/bktr/ioctl_bt848.h" \
7199 "dev/video/bktr/ioctl_bt848.h" \
7200 "dev/ic/bt8xx.h" ; do
7201 cat > $TMPC <<EOF
7202 #include <sys/types.h>
7203 #include <sys/ioctl.h>
7204 #include <$file>
7205 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
7207 if cc_check ; then
7208 _ioctl_bt848_h=yes
7209 _ioctl_bt848_h_name="$file"
7210 break;
7212 done
7213 if test "$_ioctl_bt848_h" = yes ; then
7214 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
7215 res_comment="using $_ioctl_bt848_h_name"
7216 else
7217 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
7219 echores "$_ioctl_bt848_h"
7221 echocheck "*BSD ioctl_meteor.h"
7222 _ioctl_meteor_h=no
7223 for file in "machine/ioctl_meteor.h" \
7224 "dev/bktr/ioctl_meteor.h" \
7225 "dev/video/bktr/ioctl_meteor.h" ; do
7226 cat > $TMPC <<EOF
7227 #include <sys/types.h>
7228 #include <$file>
7229 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
7231 if cc_check ; then
7232 _ioctl_meteor_h=yes
7233 _ioctl_meteor_h_name="$file"
7234 break;
7236 done
7237 if test "$_ioctl_meteor_h" = yes ; then
7238 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
7239 res_comment="using $_ioctl_meteor_h_name"
7240 else
7241 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
7243 echores "$_ioctl_meteor_h"
7245 echocheck "*BSD BrookTree 848 TV interface"
7246 if test "$_tv_bsdbt848" = auto ; then
7247 _tv_bsdbt848=no
7248 if test "$_tv" = yes ; then
7249 cat > $TMPC <<EOF
7250 #include <sys/types.h>
7251 $def_ioctl_meteor_h_name
7252 $def_ioctl_bt848_h_name
7253 #ifdef IOCTL_METEOR_H_NAME
7254 #include IOCTL_METEOR_H_NAME
7255 #endif
7256 #ifdef IOCTL_BT848_H_NAME
7257 #include IOCTL_BT848_H_NAME
7258 #endif
7259 int main(void) {
7260 ioctl(0, METEORSINPUT, 0);
7261 ioctl(0, TVTUNER_GETFREQ, 0);
7262 return 0;
7265 cc_check && _tv_bsdbt848=yes
7268 if test "$_tv_bsdbt848" = yes ; then
7269 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
7270 inputmodules="tv-bsdbt848 $inputmodules"
7271 else
7272 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
7273 noinputmodules="tv-bsdbt848 $noinputmodules"
7275 echores "$_tv_bsdbt848"
7276 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
7279 echocheck "DirectShow TV interface"
7280 if test "$_tv_dshow" = auto ; then
7281 _tv_dshow=no
7282 if test "$_tv" = yes && win32 ; then
7283 cat > $TMPC <<EOF
7284 #include <ole2.h>
7285 int main(void) {
7286 void* p;
7287 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
7288 return 0;
7291 cc_check -lole32 -luuid && _tv_dshow=yes
7294 if test "$_tv_dshow" = yes ; then
7295 inputmodules="tv-dshow $inputmodules"
7296 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
7297 extra_ldflags="$extra_ldflags -lole32 -luuid"
7298 else
7299 noinputmodules="tv-dshow $noinputmodules"
7300 def_tv_dshow='#undef CONFIG_TV_DSHOW'
7302 echores "$_tv_dshow"
7305 echocheck "Video 4 Linux TV interface"
7306 if test "$_tv_v4l1" = auto ; then
7307 _tv_v4l1=no
7308 if test "$_tv" = yes && linux ; then
7309 header_check linux/videodev.h && _tv_v4l1=yes
7312 if test "$_tv_v4l1" = yes ; then
7313 _audio_input=yes
7314 _tv_v4l=yes
7315 def_tv_v4l='#define CONFIG_TV_V4L 1'
7316 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
7317 inputmodules="tv-v4l $inputmodules"
7318 else
7319 noinputmodules="tv-v4l1 $noinputmodules"
7320 def_tv_v4l='#undef CONFIG_TV_V4L'
7322 echores "$_tv_v4l1"
7325 echocheck "Video 4 Linux 2 TV interface"
7326 if test "$_tv_v4l2" = auto ; then
7327 _tv_v4l2=no
7328 if test "$_tv" = yes && linux ; then
7329 header_check linux/videodev2.h && _tv_v4l2=yes
7332 if test "$_tv_v4l2" = yes ; then
7333 _audio_input=yes
7334 _tv_v4l=yes
7335 def_tv_v4l='#define CONFIG_TV_V4L 1'
7336 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
7337 inputmodules="tv-v4l2 $inputmodules"
7338 else
7339 noinputmodules="tv-v4l2 $noinputmodules"
7340 def_tv_v4l2='#undef CONFIG_TV_V4L2'
7342 echores "$_tv_v4l2"
7345 echocheck "Radio interface"
7346 if test "$_radio" = yes ; then
7347 def_radio='#define CONFIG_RADIO 1'
7348 inputmodules="radio $inputmodules"
7349 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
7350 _radio_capture=no
7352 if test "$_radio_capture" = yes ; then
7353 _audio_input=yes
7354 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
7355 else
7356 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7358 else
7359 noinputmodules="radio $noinputmodules"
7360 def_radio='#undef CONFIG_RADIO'
7361 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7362 _radio_capture=no
7364 echores "$_radio"
7365 echocheck "Capture for Radio interface"
7366 echores "$_radio_capture"
7368 echocheck "Video 4 Linux 2 Radio interface"
7369 if test "$_radio_v4l2" = auto ; then
7370 _radio_v4l2=no
7371 if test "$_radio" = yes && linux ; then
7372 header_check linux/videodev2.h && _radio_v4l2=yes
7375 if test "$_radio_v4l2" = yes ; then
7376 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
7377 else
7378 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
7380 echores "$_radio_v4l2"
7382 echocheck "Video 4 Linux Radio interface"
7383 if test "$_radio_v4l" = auto ; then
7384 _radio_v4l=no
7385 if test "$_radio" = yes && linux ; then
7386 header_check linux/videodev.h && _radio_v4l=yes
7389 if test "$_radio_v4l" = yes ; then
7390 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
7391 else
7392 def_radio_v4l='#undef CONFIG_RADIO_V4L'
7394 echores "$_radio_v4l"
7396 if freebsd || netbsd || openbsd || dragonfly || bsdos \
7397 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
7398 echocheck "*BSD BrookTree 848 Radio interface"
7399 _radio_bsdbt848=no
7400 cat > $TMPC <<EOF
7401 #include <sys/types.h>
7402 $def_ioctl_bt848_h_name
7403 #ifdef IOCTL_BT848_H_NAME
7404 #include IOCTL_BT848_H_NAME
7405 #endif
7406 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
7408 cc_check && _radio_bsdbt848=yes
7409 echores "$_radio_bsdbt848"
7410 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
7412 if test "$_radio_bsdbt848" = yes ; then
7413 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
7414 else
7415 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
7418 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no && \
7419 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
7420 die "Radio driver requires BSD BT848, V4L or V4L2!"
7423 echocheck "Video 4 Linux 2 MPEG PVR interface"
7424 if test "$_pvr" = auto ; then
7425 _pvr=no
7426 if test "$_tv_v4l2" = yes && linux ; then
7427 cat > $TMPC <<EOF
7428 #include <linux/videodev2.h>
7429 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
7431 cc_check && _pvr=yes
7434 if test "$_pvr" = yes ; then
7435 def_pvr='#define CONFIG_PVR 1'
7436 inputmodules="pvr $inputmodules"
7437 else
7438 noinputmodules="pvr $noinputmodules"
7439 def_pvr='#undef CONFIG_PVR'
7441 echores "$_pvr"
7444 echocheck "ftp"
7445 if ! beos && test "$_ftp" = yes ; then
7446 def_ftp='#define CONFIG_FTP 1'
7447 inputmodules="ftp $inputmodules"
7448 else
7449 noinputmodules="ftp $noinputmodules"
7450 def_ftp='#undef CONFIG_FTP'
7452 echores "$_ftp"
7454 echocheck "vstream client"
7455 if test "$_vstream" = auto ; then
7456 _vstream=no
7457 cat > $TMPC <<EOF
7458 #include <vstream-client.h>
7459 void vstream_error(const char *format, ... ) {}
7460 int main(void) { vstream_start(); return 0; }
7462 cc_check -lvstream-client && _vstream=yes
7464 if test "$_vstream" = yes ; then
7465 def_vstream='#define CONFIG_VSTREAM 1'
7466 inputmodules="vstream $inputmodules"
7467 extra_ldflags="$extra_ldflags -lvstream-client"
7468 else
7469 noinputmodules="vstream $noinputmodules"
7470 def_vstream='#undef CONFIG_VSTREAM'
7472 echores "$_vstream"
7475 echocheck "OSD menu"
7476 if test "$_menu" = yes ; then
7477 def_menu='#define CONFIG_MENU 1'
7478 test $_dvbin = "yes" && _menu_dvbin=yes
7479 else
7480 def_menu='#undef CONFIG_MENU'
7481 _menu_dvbin=no
7483 echores "$_menu"
7486 echocheck "Subtitles sorting"
7487 if test "$_sortsub" = yes ; then
7488 def_sortsub='#define CONFIG_SORTSUB 1'
7489 else
7490 def_sortsub='#undef CONFIG_SORTSUB'
7492 echores "$_sortsub"
7495 echocheck "XMMS inputplugin support"
7496 if test "$_xmms" = yes ; then
7497 if ( xmms-config --version ) >/dev/null 2>&1 ; then
7498 _xmmsplugindir=$(xmms-config --input-plugin-dir)
7499 _xmmslibdir=$(xmms-config --exec-prefix)/lib
7500 else
7501 _xmmsplugindir=/usr/lib/xmms/Input
7502 _xmmslibdir=/usr/lib
7505 def_xmms='#define CONFIG_XMMS 1'
7506 if darwin ; then
7507 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
7508 else
7509 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
7511 else
7512 def_xmms='#undef CONFIG_XMMS'
7514 echores "$_xmms"
7516 if test "$_charset" != "noconv" ; then
7517 def_charset="#define MSG_CHARSET \"$_charset\""
7518 else
7519 def_charset="#undef MSG_CHARSET"
7520 _charset="UTF-8"
7523 #############################################################################
7525 echocheck "automatic gdb attach"
7526 if test "$_crash_debug" = yes ; then
7527 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
7528 else
7529 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
7530 _crash_debug=no
7532 echores "$_crash_debug"
7534 echocheck "compiler support for noexecstack"
7535 if cflag_check -Wl,-z,noexecstack ; then
7536 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
7537 echores "yes"
7538 else
7539 echores "no"
7542 echocheck "linker support for --nxcompat --no-seh --dynamicbase"
7543 if cflag_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
7544 extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
7545 echores "yes"
7546 else
7547 echores "no"
7551 # Dynamic linking flags
7552 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
7553 _ld_dl_dynamic=''
7554 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
7555 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
7556 _ld_dl_dynamic='-rdynamic'
7559 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
7560 bsdos && extra_ldflags="$extra_ldflags -ldvd"
7561 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
7563 def_debug='#undef MP_DEBUG'
7564 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
7567 echocheck "joystick"
7568 def_joystick='#undef CONFIG_JOYSTICK'
7569 if test "$_joystick" = yes ; then
7570 if linux ; then
7571 # TODO add some check
7572 def_joystick='#define CONFIG_JOYSTICK 1'
7573 else
7574 _joystick="no"
7575 res_comment="unsupported under $system_name"
7578 echores "$_joystick"
7580 echocheck "lirc"
7581 if test "$_lirc" = auto ; then
7582 _lirc=no
7583 header_check lirc/lirc_client.h -llirc_client && _lirc=yes
7585 if test "$_lirc" = yes ; then
7586 def_lirc='#define CONFIG_LIRC 1'
7587 libs_mplayer="$libs_mplayer -llirc_client"
7588 else
7589 def_lirc='#undef CONFIG_LIRC'
7591 echores "$_lirc"
7593 echocheck "lircc"
7594 if test "$_lircc" = auto ; then
7595 _lircc=no
7596 header_check lirc/lircc.h -llircc && _lircc=yes
7598 if test "$_lircc" = yes ; then
7599 def_lircc='#define CONFIG_LIRCC 1'
7600 libs_mplayer="$libs_mplayer -llircc"
7601 else
7602 def_lircc='#undef CONFIG_LIRCC'
7604 echores "$_lircc"
7606 if arm; then
7607 # Detect maemo development platform libraries availability (http://www.maemo.org),
7608 # they are used when run on Nokia 770|8x0
7609 echocheck "maemo (Nokia 770|8x0)"
7610 if test "$_maemo" = auto ; then
7611 _maemo=no
7612 cat > $TMPC << EOF
7613 #include <libosso.h>
7614 int main(void) { (void) osso_initialize("", "", 0, NULL); return 0; }
7616 cc_check $($_pkg_config --cflags --libs libosso 2>/dev/null) && _maemo=yes
7618 if test "$_maemo" = yes ; then
7619 def_maemo='#define CONFIG_MAEMO 1'
7620 extra_cflags="$extra_cflags $($_pkg_config --cflags libosso)"
7621 extra_ldflags="$extra_ldflags $($_pkg_config --libs libosso) -lXsp"
7622 else
7623 def_maemo='#undef CONFIG_MAEMO'
7625 echores "$_maemo"
7628 #############################################################################
7630 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
7631 # the OMF format needs to come after the 'extern symbol prefix' check, which
7632 # uses nm.
7633 if os2 ; then
7634 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
7637 # linker paths should be the same for mencoder and mplayer
7638 _ld_tmp=""
7639 for I in $libs_mplayer ; do
7640 _tmp=$(echo $I | sed -e 's/^-L.*$//')
7641 if test -z "$_tmp" ; then
7642 extra_ldflags="$extra_ldflags $I"
7643 else
7644 _ld_tmp="$_ld_tmp $I"
7646 done
7647 libs_mplayer=$_ld_tmp
7650 #############################################################################
7651 # 64 bit file offsets?
7652 if test "$_largefiles" = yes || freebsd ; then
7653 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
7654 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
7655 # dvdread support requires this (for off64_t)
7656 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
7660 CXXFLAGS=" $CFLAGS -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS"
7662 # This must be the last test to be performed. Any other tests following it
7663 # could fail due to linker errors. libdvdnavmini is intentionally not linked
7664 # against libdvdread (to permit MPlayer to use its own copy of the library).
7665 # So any compilation using the flags added here but not linking against
7666 # libdvdread can fail.
7667 echocheck "DVD support (libdvdnav)"
7668 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
7669 _dvdnav=no
7671 dvdnav_internal=no
7672 if test "$_dvdnav" = auto ; then
7673 if test "$_dvdread_internal" = yes ; then
7674 _dvdnav=yes
7675 dvdnav_internal=yes
7676 res_comment="internal"
7677 else
7678 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
7681 if test "$_dvdnav" = auto ; then
7682 cat > $TMPC <<EOF
7683 #include <inttypes.h>
7684 #include <dvdnav/dvdnav.h>
7685 int main(void) { dvdnav_t *dvd=0; return 0; }
7687 _dvdnav=no
7688 _dvdnavdir=$($_dvdnavconfig --cflags)
7689 _dvdnavlibs=$($_dvdnavconfig --libs)
7690 cc_check $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
7692 if test "$_dvdnav" = yes ; then
7693 _largefiles=yes
7694 def_dvdnav='#define CONFIG_DVDNAV 1'
7695 if test "$dvdnav_internal" = yes ; then
7696 cflags_libdvdnav="-Ilibdvdnav"
7697 inputmodules="dvdnav(internal) $inputmodules"
7698 else
7699 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
7700 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
7701 inputmodules="dvdnav $inputmodules"
7703 else
7704 def_dvdnav='#undef CONFIG_DVDNAV'
7705 noinputmodules="dvdnav $noinputmodules"
7707 echores "$_dvdnav"
7709 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
7710 # Read dvdnav comment above.
7712 mak_enable () {
7713 list=$(echo $1 | tr '[a-z]' '[A-Z]')
7714 item=$(echo $2 | tr '[a-z]' '[A-Z]')
7715 nprefix=$3;
7716 for part in $list; do
7717 if $(echo $item | grep -q -E "(^| )$part($| )"); then
7718 echo "${nprefix}_$part = yes"
7720 done
7723 #############################################################################
7724 echo "Creating config.mak"
7725 cat > config.mak << EOF
7726 # -------- Generated by configure -----------
7728 # Ensure that locale settings do not interfere with shell commands.
7729 export LC_ALL = C
7731 CONFIGURATION = $configuration
7733 CHARSET = $_charset
7734 DOC_LANGS = $language_doc
7735 DOC_LANG_ALL = $doc_lang_all
7736 MAN_LANGS = $language_man
7737 MAN_LANG_ALL = $man_lang_all
7738 MSG_LANGS = $language_msg
7739 MSG_LANG_ALL = $msg_lang_all
7741 prefix = \$(DESTDIR)$_prefix
7742 BINDIR = \$(DESTDIR)$_bindir
7743 DATADIR = \$(DESTDIR)$_datadir
7744 LIBDIR = \$(DESTDIR)$_libdir
7745 MANDIR = \$(DESTDIR)$_mandir
7746 CONFDIR = \$(DESTDIR)$_confdir
7747 LOCALEDIR = \$(DESTDIR)$_localedir
7749 AR = $_ar
7750 AS = $_cc
7751 CC = $_cc
7752 CXX = $_cc
7753 HOST_CC = $_host_cc
7754 INSTALL = $_install
7755 INSTALLSTRIP = $_install_strip
7756 WINDRES = $_windres
7758 CFLAGS = $CFLAGS $extra_cflags
7759 CXXFLAGS = $CXXFLAGS $extra_cflags $extra_cxxflags
7760 DEPFLAGS = $DEPFLAGS
7762 CFLAGS_DHAHELPER = $cflags_dhahelper
7763 CFLAGS_FAAD_FIXED = $cflags_faad_fixed
7764 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
7765 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
7766 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
7767 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
7768 CFLAGS_STACKREALIGN = $cflags_stackrealign
7769 CFLAGS_SVGALIB_HELPER = $cflags_svgalib_helper
7770 CFLAGS_TREMOR_LOW = $cflags_tremor_low
7772 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
7773 EXTRALIBS_MPLAYER = $libs_mplayer
7774 EXTRALIBS_MENCODER = $libs_mencoder
7776 GETCH = $_getch
7777 TIMER = $_timer
7779 EXESUF = $_exesuf
7780 EXESUFS_ALL = .exe
7782 ARCH = $arch
7783 $(mak_enable "$arch_all" "$arch" ARCH)
7784 $(mak_enable "$subarch_all" "$subarch" ARCH)
7785 $(mak_enable "$cpuexts_all" "$cpuexts" HAVE)
7787 MENCODER = $_mencoder
7788 MPLAYER = $_mplayer
7790 NEED_GETTIMEOFDAY = $_need_gettimeofday
7791 NEED_GLOB = $_need_glob
7792 NEED_MMAP = $_need_mmap
7793 NEED_SETENV = $_need_setenv
7794 NEED_SHMEM = $_need_shmem
7795 NEED_STRSEP = $_need_strsep
7796 NEED_SWAB = $_need_swab
7797 NEED_VSSCANF = $_need_vsscanf
7799 # features
7800 3DFX = $_3dfx
7801 AA = $_aa
7802 ALSA1X = $_alsa1x
7803 ALSA9 = $_alsa9
7804 ALSA5 = $_alsa5
7805 APPLE_IR = $_apple_ir
7806 APPLE_REMOTE = $_apple_remote
7807 ARTS = $_arts
7808 AUDIO_INPUT = $_audio_input
7809 BITMAP_FONT = $_bitmap_font
7810 BL = $_bl
7811 CACA = $_caca
7812 CDDA = $_cdda
7813 CDDB = $_cddb
7814 COREAUDIO = $_coreaudio
7815 COREVIDEO = $_corevideo
7816 DART = $_dart
7817 DFBMGA = $_dfbmga
7818 DGA = $_dga
7819 DIRECT3D = $_direct3d
7820 DIRECTFB = $_directfb
7821 DIRECTX = $_directx
7822 DVBIN = $_dvbin
7823 DVDNAV = $_dvdnav
7824 DVDNAV_INTERNAL = $dvdnav_internal
7825 DVDREAD = $_dvdread
7826 DVDREAD_INTERNAL = $_dvdread_internal
7827 DXR2 = $_dxr2
7828 DXR3 = $_dxr3
7829 ESD = $_esd
7830 FAAC=$_faac
7831 FAAD = $_faad
7832 FAAD_INTERNAL = $_faad_internal
7833 FASTMEMCPY = $_fastmemcpy
7834 FBDEV = $_fbdev
7835 FREETYPE = $_freetype
7836 FTP = $_ftp
7837 GIF = $_gif
7838 GGI = $_ggi
7839 GL = $_gl
7840 GL_WIN32 = $_gl_win32
7841 GL_X11 = $_gl_x11
7842 GL_SDL = $_gl_sdl
7843 MATRIXVIEW = $matrixview
7844 HAVE_POSIX_SELECT = $_posix_select
7845 HAVE_SYS_MMAN_H = $_mman
7846 IVTV = $_ivtv
7847 JACK = $_jack
7848 JOYSTICK = $_joystick
7849 JPEG = $_jpeg
7850 KAI = $_kai
7851 KVA = $_kva
7852 LADSPA = $_ladspa
7853 LIBA52 = $_liba52
7854 LIBASS = $_ass
7855 LIBBLURAY = $_bluray
7856 LIBBS2B = $_libbs2b
7857 LIBDCA = $_libdca
7858 LIBDV = $_libdv
7859 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
7860 LIBLZO = $_liblzo
7861 LIBMAD = $_mad
7862 LIBMENU = $_menu
7863 LIBMENU_DVBIN = $_menu_dvbin
7864 LIBMPEG2 = $_libmpeg2
7865 LIBNEMESI = $_nemesi
7866 LIBNUT = $_libnut
7867 LIBSMBCLIENT = $_smb
7868 LIBTHEORA = $_theora
7869 LIRC = $_lirc
7870 LIVE555 = $_live
7871 MACOSX_FINDER = $_macosx_finder
7872 MD5SUM = $_md5sum
7873 MGA = $_mga
7874 MNG = $_mng
7875 MP3LAME = $_mp3lame
7876 MP3LIB = $_mp3lib
7877 MPG123 = $_mpg123
7878 MUSEPACK = $_musepack
7879 NAS = $_nas
7880 NATIVE_RTSP = $_native_rtsp
7881 NETWORKING = $networking
7882 OPENAL = $_openal
7883 OSS = $_ossaudio
7884 PE_EXECUTABLE = $_pe_executable
7885 PNG = $_png
7886 PNM = $_pnm
7887 PRIORITY = $_priority
7888 PULSE = $_pulse
7889 PVR = $_pvr
7890 QTX_CODECS = $_qtx
7891 QTX_CODECS_WIN32 = $_qtx_codecs_win32
7892 QTX_EMULATION = $_qtx_emulation
7893 QUARTZ = $_quartz
7894 RADIO=$_radio
7895 RADIO_CAPTURE=$_radio_capture
7896 REAL_CODECS = $_real
7897 S3FB = $_s3fb
7898 SDL = $_sdl
7899 SPEEX = $_speex
7900 STREAM_CACHE = $_stream_cache
7901 SGIAUDIO = $_sgiaudio
7902 SUNAUDIO = $_sunaudio
7903 SVGA = $_svga
7904 TDFXFB = $_tdfxfb
7905 TDFXVID = $_tdfxvid
7906 TGA = $_tga
7907 TOOLAME=$_toolame
7908 TREMOR_INTERNAL = $_tremor_internal
7909 TV = $_tv
7910 TV_BSDBT848 = $_tv_bsdbt848
7911 TV_DSHOW = $_tv_dshow
7912 TV_V4L = $_tv_v4l
7913 TV_V4L1 = $_tv_v4l1
7914 TV_V4L2 = $_tv_v4l2
7915 TWOLAME=$_twolame
7916 UNRAR_EXEC = $_unrar_exec
7917 V4L2 = $_v4l2
7918 VCD = $_vcd
7919 VDPAU = $_vdpau
7920 VESA = $_vesa
7921 VIDIX = $_vidix
7922 VIDIX_PCIDB = $_vidix_pcidb_val
7923 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
7924 VIDIX_IVTV=$_vidix_drv_ivtv
7925 VIDIX_MACH64=$_vidix_drv_mach64
7926 VIDIX_MGA=$_vidix_drv_mga
7927 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
7928 VIDIX_NVIDIA=$_vidix_drv_nvidia
7929 VIDIX_PM2=$_vidix_drv_pm2
7930 VIDIX_PM3=$_vidix_drv_pm3
7931 VIDIX_RADEON=$_vidix_drv_radeon
7932 VIDIX_RAGE128=$_vidix_drv_rage128
7933 VIDIX_S3=$_vidix_drv_s3
7934 VIDIX_SH_VEU=$_vidix_drv_sh_veu
7935 VIDIX_SIS=$_vidix_drv_sis
7936 VIDIX_UNICHROME=$_vidix_drv_unichrome
7937 VORBIS = $_vorbis
7938 VSTREAM = $_vstream
7939 WII = $_wii
7940 WIN32DLL = $_win32dll
7941 WIN32WAVEOUT = $_win32waveout
7942 WIN32_EMULATION = $_win32_emulation
7943 WINVIDIX = $winvidix
7944 X11 = $_x11
7945 X264 = $_x264
7946 XANIM_CODECS = $_xanim
7947 XMGA = $_xmga
7948 XMMS_PLUGINS = $_xmms
7949 XV = $_xv
7950 XVID4 = $_xvid
7951 XVIDIX = $xvidix
7952 XVMC = $_xvmc
7953 XVR100 = $_xvr100
7954 YUV4MPEG = $_yuv4mpeg
7955 ZR = $_zr
7957 # FFmpeg
7958 LIBAVUTIL = $_libavutil
7959 LIBAVCODEC = $_libavcodec
7960 LIBAVFORMAT = $_libavformat
7961 LIBPOSTPROC = $_libpostproc
7962 LIBSWSCALE = $_libswscale
7963 LIBAVCODEC_INTERNALS = $_libavcodec_internals
7964 LIBSWSCALE_INTERNALS = $_libswscale_internals
7965 FFMPEG_SOURCE_PATH = $_ffmpeg_source
7967 RANLIB = $_ranlib
7968 YASM = $_yasm
7969 YASMFLAGS = $YASMFLAGS
7971 # Some FFmpeg codecs depend on these. Enable them unconditionally for now.
7972 CONFIG_AANDCT = yes
7973 CONFIG_FFT = yes
7974 CONFIG_GOLOMB = yes
7975 CONFIG_H264DSP = yes
7976 CONFIG_LPC = yes
7977 CONFIG_MDCT = yes
7978 CONFIG_RDFT = yes
7980 CONFIG_BZLIB = $bzlib
7981 CONFIG_ENCODERS = yes
7982 CONFIG_GPL = yes
7983 CONFIG_MLIB = $_mlib
7984 CONFIG_MUXERS = $_mencoder
7985 CONFIG_VDPAU = $_vdpau
7986 CONFIG_XVMC = $_xvmc
7987 CONFIG_ZLIB = $_zlib
7989 HAVE_PTHREADS = $_pthreads
7990 HAVE_SHM = $_shm
7991 HAVE_W32THREADS = $_w32threads
7992 HAVE_YASM = $have_yasm
7996 #############################################################################
7998 ff_config_enable () {
7999 list=$(echo $1 | tr '[a-z]' '[A-Z]')
8000 item=$(echo $2 | tr '[a-z]' '[A-Z]')
8001 _nprefix=$3;
8002 test -z "$_nprefix" && _nprefix='CONFIG'
8003 for part in $list; do
8004 if $(echo $item | grep -q -E "(^| )$part($| )"); then
8005 echo "#define ${_nprefix}_$part 1"
8006 else
8007 echo "#define ${_nprefix}_$part 0"
8009 done
8012 echo "Creating config.h"
8013 cat > $TMPH << EOF
8014 /*----------------------------------------------------------------------------
8015 ** This file has been automatically generated by configure any changes in it
8016 ** will be lost when you run configure again.
8017 ** Instead of modifying definitions here, use the --enable/--disable options
8018 ** of the configure script! See ./configure --help for details.
8019 *---------------------------------------------------------------------------*/
8021 #ifndef MPLAYER_CONFIG_H
8022 #define MPLAYER_CONFIG_H
8024 /* Undefine this if you do not want to select mono audio (left or right)
8025 with a stereo MPEG layer 2/3 audio stream. The command line option
8026 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
8027 right-only), with 0 being the default.
8029 #define CONFIG_FAKE_MONO 1
8031 /* set up audio OUTBURST. Do not change this! */
8032 #define OUTBURST 512
8034 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
8035 #undef FAST_OSD
8036 #undef FAST_OSD_TABLE
8038 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
8039 #define MPEG12_POSTPROC 1
8040 #define ATTRIBUTE_ALIGNED_MAX 16
8044 #define CONFIGURATION "$configuration"
8046 #define MPLAYER_DATADIR "$_datadir"
8047 #define MPLAYER_CONFDIR "$_confdir"
8048 #define MPLAYER_LIBDIR "$_libdir"
8049 #define MPLAYER_LOCALEDIR "$_localedir"
8051 $def_translation
8053 /* definitions needed by included libraries */
8054 #define HAVE_INTTYPES_H 1
8055 /* libmpeg2 + FFmpeg */
8056 $def_fast_inttypes
8057 /* libdvdcss */
8058 #define HAVE_ERRNO_H 1
8059 /* libdvdcss + libdvdread */
8060 #define HAVE_LIMITS_H 1
8061 /* libdvdcss + libfaad2 */
8062 #define HAVE_UNISTD_H 1
8063 /* libfaad2 + libdvdread */
8064 #define STDC_HEADERS 1
8065 #define HAVE_MEMCPY 1
8066 /* libfaad2 */
8067 #define HAVE_STRING_H 1
8068 #define HAVE_STRINGS_H 1
8069 #define HAVE_SYS_STAT_H 1
8070 #define HAVE_SYS_TYPES_H 1
8071 /* libdvdnav */
8072 #define READ_CACHE_TRACE 0
8073 /* libdvdread */
8074 #define HAVE_DLFCN_H 1
8075 $def_dvdcss
8078 /* system headers */
8079 $def_alloca_h
8080 $def_alsa_asoundlib_h
8081 $def_altivec_h
8082 $def_malloc_h
8083 $def_mman_h
8084 $def_mman_has_map_failed
8085 $def_soundcard_h
8086 $def_sys_asoundlib_h
8087 $def_sys_soundcard_h
8088 $def_sys_sysinfo_h
8089 $def_termios_h
8090 $def_termios_sys_h
8091 $def_winsock2_h
8094 /* system functions */
8095 $def_gethostbyname2
8096 $def_gettimeofday
8097 $def_glob
8098 $def_langinfo
8099 $def_lrintf
8100 $def_map_memalign
8101 $def_memalign
8102 $def_nanosleep
8103 $def_posix_select
8104 $def_select
8105 $def_setenv
8106 $def_setmode
8107 $def_shm
8108 $def_strsep
8109 $def_swab
8110 $def_sysi86
8111 $def_sysi86_iv
8112 $def_termcap
8113 $def_termios
8114 $def_vsscanf
8117 /* system-specific features */
8118 $def_asmalign_pot
8119 $def_builtin_expect
8120 $def_dl
8121 $def_dos_paths
8122 $def_extern_asm
8123 $def_extern_prefix
8124 $def_iconv
8125 $def_kstat
8126 $def_macosx_bundle
8127 $def_macosx_finder
8128 $def_maemo
8129 $def_named_asm_args
8130 $def_priority
8131 $def_quicktime
8132 $def_restrict_keyword
8133 $def_rtc
8134 $def_unrar_exec
8137 /* configurable options */
8138 $def_charset
8139 $def_crash_debug
8140 $def_debug
8141 $def_dynamic_plugins
8142 $def_fastmemcpy
8143 $def_menu
8144 $def_runtime_cpudetection
8145 $def_sighandler
8146 $def_sortsub
8147 $def_stream_cache
8148 $def_pthread_cache
8151 /* CPU stuff */
8152 #define __CPU__ $iproc
8153 $def_ebx_available
8154 $def_words_endian
8155 $def_bigendian
8156 $(ff_config_enable "$arch_all" "$arch" "ARCH")
8157 $(ff_config_enable "$subarch_all" "$subarch" "ARCH")
8158 $(ff_config_enable "$cpuexts_all" "$cpuexts" "HAVE")
8161 /* Blu-ray/DVD/VCD/CD */
8162 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
8163 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
8164 $def_bluray
8165 $def_bsdi_dvd
8166 $def_cddb
8167 $def_cdio
8168 $def_cdparanoia
8169 $def_cdrom
8170 $def_dvd
8171 $def_dvd_bsd
8172 $def_dvd_darwin
8173 $def_dvd_linux
8174 $def_dvd_openbsd
8175 $def_dvdio
8176 $def_dvdnav
8177 $def_dvdread
8178 $def_hpux_scsi_h
8179 $def_libcdio
8180 $def_sol_scsi_h
8181 $def_vcd
8184 /* codec libraries */
8185 $def_faac
8186 $def_faad
8187 $def_faad_internal
8188 $def_liba52
8189 $def_libdca
8190 $def_libdv
8191 $def_liblzo
8192 $def_libmpeg2
8193 $def_mad
8194 $def_mp3lame
8195 $def_mp3lame_preset
8196 $def_mp3lame_preset_medium
8197 $def_mp3lib
8198 $def_mpg123
8199 $def_musepack
8200 $def_speex
8201 $def_theora
8202 $def_toolame
8203 $def_tremor
8204 $def_twolame
8205 $def_vorbis
8206 $def_x264
8207 $def_xvid
8208 $def_zlib
8210 $def_libnut
8213 /* binary codecs */
8214 $def_qtx
8215 $def_qtx_win32
8216 $def_real
8217 $def_win32_loader
8218 $def_win32dll
8219 $def_xanim
8220 $def_xmms
8221 #define BINARY_CODECS_PATH "$_codecsdir"
8222 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
8225 /* Audio output drivers */
8226 $def_alsa
8227 $def_alsa1x
8228 $def_alsa5
8229 $def_alsa9
8230 $def_arts
8231 $def_coreaudio
8232 $def_dart
8233 $def_esd
8234 $def_esd_latency
8235 $def_jack
8236 $def_kai
8237 $def_nas
8238 $def_openal
8239 $def_openal_h
8240 $def_ossaudio
8241 $def_ossaudio_devdsp
8242 $def_ossaudio_devmixer
8243 $def_pulse
8244 $def_sgiaudio
8245 $def_sunaudio
8246 $def_win32waveout
8248 $def_ladspa
8249 $def_libbs2b
8252 /* input */
8253 $def_apple_ir
8254 $def_apple_remote
8255 $def_ioctl_bt848_h_name
8256 $def_ioctl_meteor_h_name
8257 $def_joystick
8258 $def_lirc
8259 $def_lircc
8260 $def_pvr
8261 $def_radio
8262 $def_radio_bsdbt848
8263 $def_radio_capture
8264 $def_radio_v4l
8265 $def_radio_v4l2
8266 $def_tv
8267 $def_tv_bsdbt848
8268 $def_tv_dshow
8269 $def_tv_v4l
8270 $def_tv_v4l1
8271 $def_tv_v4l2
8274 /* font stuff */
8275 $def_ass
8276 $def_bitmap_font
8277 $def_enca
8278 $def_fontconfig
8279 $def_freetype
8280 $def_fribidi
8283 /* networking */
8284 $def_closesocket
8285 $def_ftp
8286 $def_inet6
8287 $def_inet_aton
8288 $def_inet_pton
8289 $def_live
8290 $def_nemesi
8291 $def_networking
8292 $def_smb
8293 $def_socklen_t
8294 $def_vstream
8297 /* libvo options */
8298 $def_3dfx
8299 $def_aa
8300 $def_bl
8301 $def_caca
8302 $def_corevideo
8303 $def_dfbmga
8304 $def_dga
8305 $def_dga1
8306 $def_dga2
8307 $def_direct3d
8308 $def_directfb
8309 $def_directfb_version
8310 $def_directx
8311 $def_dvb
8312 $def_dvbin
8313 $def_dxr2
8314 $def_dxr3
8315 $def_fbdev
8316 $def_ggi
8317 $def_ggiwmh
8318 $def_gif
8319 $def_gif_4
8320 $def_gif_tvt_hack
8321 $def_gl
8322 $def_gl_win32
8323 $def_gl_x11
8324 $def_gl_sdl
8325 $def_matrixview
8326 $def_ivtv
8327 $def_jpeg
8328 $def_kva
8329 $def_md5sum
8330 $def_mga
8331 $def_mng
8332 $def_png
8333 $def_pnm
8334 $def_quartz
8335 $def_s3fb
8336 $def_sdl
8337 $def_sdl_sdl_h
8338 $def_svga
8339 $def_tdfxfb
8340 $def_tdfxvid
8341 $def_tga
8342 $def_v4l2
8343 $def_vdpau
8344 $def_vesa
8345 $def_vidix
8346 $def_vidix_drv_cyberblade
8347 $def_vidix_drv_ivtv
8348 $def_vidix_drv_mach64
8349 $def_vidix_drv_mga
8350 $def_vidix_drv_mga_crtc2
8351 $def_vidix_drv_nvidia
8352 $def_vidix_drv_pm3
8353 $def_vidix_drv_radeon
8354 $def_vidix_drv_rage128
8355 $def_vidix_drv_s3
8356 $def_vidix_drv_sh_veu
8357 $def_vidix_drv_sis
8358 $def_vidix_drv_unichrome
8359 $def_vidix_pfx
8360 $def_vm
8361 $def_wii
8362 $def_x11
8363 $def_xdpms
8364 $def_xf86keysym
8365 $def_xinerama
8366 $def_xmga
8367 $def_xss
8368 $def_xv
8369 $def_xvmc
8370 $def_xvr100
8371 $def_yuv4mpeg
8372 $def_zr
8375 /* FFmpeg */
8376 $def_libavcodec
8377 $def_libavformat
8378 $def_libavutil
8379 $def_libpostproc
8380 $def_libswscale
8381 $def_libavcodec_internals
8382 $def_libswscale_internals
8384 #define CONFIG_DECODERS 1
8385 #define CONFIG_ENCODERS 1
8386 #define CONFIG_DEMUXERS 1
8387 $def_muxers
8389 $def_arpa_inet_h
8390 $def_bswap
8391 $def_bzlib
8392 $def_dcbzl
8393 $def_exp2
8394 $def_exp2f
8395 $def_fast_64bit
8396 $def_fast_unaligned
8397 $def_llrint
8398 $def_log2
8399 $def_log2f
8400 $def_lrint
8401 $def_memalign_hack
8402 $def_mlib
8403 $def_mkstemp
8404 $def_posix_memalign
8405 $def_pthreads
8406 $def_round
8407 $def_roundf
8408 $def_ten_operands
8409 $def_threads
8410 $def_truncf
8411 $def_xform_asm
8412 $def_yasm
8414 #define CONFIG_FASTDIV 0
8415 #define CONFIG_FFSERVER 0
8416 #define CONFIG_GPL 1
8417 #define CONFIG_GRAY 0
8418 #define CONFIG_HARDCODED_TABLES 0
8419 #define CONFIG_LIBVORBIS 0
8420 #define CONFIG_POWERPC_PERF 0
8421 #define CONFIG_SMALL 0
8422 #define CONFIG_SWSCALE_ALPHA 1
8424 #define HAVE_ATTRIBUTE_PACKED 1
8425 #define HAVE_GETHRTIME 0
8426 #define HAVE_INLINE_ASM 1
8427 #define HAVE_LDBRX 0
8428 #define HAVE_POLL_H 1
8429 #define HAVE_PPC4XX 0
8430 #define HAVE_VFP_ARGS 1
8431 #define HAVE_VIRTUALALLOC 0
8433 /* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */
8434 #define CONFIG_AANDCT 1
8435 #define CONFIG_DCT 1
8436 #define CONFIG_DWT 1
8437 #define CONFIG_FFT 1
8438 #define CONFIG_GOLOMB 1
8439 #define CONFIG_H264DSP 1
8440 #define CONFIG_LPC 1
8441 #define CONFIG_MDCT 1
8442 #define CONFIG_RDFT 1
8444 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
8445 #ifndef MP_DEBUG
8446 #define HAVE_EBP_AVAILABLE 1
8447 #else
8448 #define HAVE_EBP_AVAILABLE 0
8449 #endif
8451 #define CONFIG_H263_VAAPI_HWACCEL 0
8452 #define CONFIG_MPEG2_VAAPI_HWACCEL 0
8453 #define CONFIG_MPEG4_VAAPI_HWACCEL 0
8454 #define CONFIG_H264_VAAPI_HWACCEL 0
8455 #define CONFIG_VC1_VAAPI_HWACCEL 0
8456 #define CONFIG_WMV3_VAAPI_HWACCEL 0
8458 #endif /* MPLAYER_CONFIG_H */
8461 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
8462 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
8464 #############################################################################
8466 ./version.sh `$_cc -dumpversion`
8468 cat << EOF
8470 Config files successfully generated by ./configure $configuration !
8472 Install prefix: $_prefix
8473 Data directory: $_datadir
8474 Config direct.: $_confdir
8476 Byte order: $_byte_order
8477 Optimizing for: $_optimizing
8479 Languages:
8480 Messages (in addition to English): $language_msg
8481 Manual pages: $language_man
8482 Documentation: $language_doc
8484 Enabled optional drivers:
8485 Input: $inputmodules
8486 Codecs: $codecmodules
8487 Audio output: $aomodules
8488 Video output: $vomodules
8490 Disabled optional drivers:
8491 Input: $noinputmodules
8492 Codecs: $nocodecmodules
8493 Audio output: $noaomodules
8494 Video output: $novomodules
8496 'config.h' and 'config.mak' contain your configuration options.
8497 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
8498 compile *** DO NOT REPORT BUGS if you tweak these files ***
8500 'make' will now compile MPlayer and 'make install' will install it.
8501 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
8506 if test "$_mtrr" = yes ; then
8507 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$doc_lang/video.html#mtrr)"
8508 echo
8511 if ! x86_32; then
8512 cat <<EOF
8513 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
8514 operating system ($system_name). You may encounter a few files that cannot
8515 be played due to missing open source video/audio codec support.
8521 cat <<EOF
8522 Check $TMPLOG if you wonder why an autodetection failed (make sure
8523 development headers/packages are installed).
8525 NOTE: The --enable-* parameters unconditionally force options on, completely
8526 skipping autodetection. This behavior is unlike what you may be used to from
8527 autoconf-based configure scripts that can decide to override you. This greater
8528 level of control comes at a price. You may have to provide the correct compiler
8529 and linker flags yourself.
8530 If you used one of these options (except --enable-menu and similar ones that
8531 turn on internal features) and experience a compilation or linking failure,
8532 make sure you have passed the necessary compiler/linker flags to configure.
8534 If you suspect a bug, please read DOCS/HTML/$doc_lang/bugreports.html.
8538 if test "$warn_cflags" = yes; then
8539 cat <<EOF
8541 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
8542 but:
8544 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
8546 It is strongly recommended to let MPlayer choose the correct CFLAGS!
8547 To do so, execute 'CFLAGS= ./configure <options>'
8552 # Last move:
8553 rm -rf "$mplayer_tmpdir"