SDL input: add missing 0-termination of keymap file
[mplayer/glamo.git] / configure
blob590b1b0b9869bee4f095990740535a8cd9b60de2
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 yasm_check() {
85 echo >> "$TMPLOG"
86 cat "$TMPS" >> "$TMPLOG"
87 echo >> "$TMPLOG"
88 echo "$_yasm $YASMFLAGS -o $TMPEXE $TMPS $@" >> "$TMPLOG"
89 rm -f "$TMPEXE"
90 $_yasm $YASMFLAGS -o "$TMPEXE" "$TMPS" "$@" >> "$TMPLOG" 2>&1
91 TMPRES="$?"
92 echo >> "$TMPLOG"
93 echo >> "$TMPLOG"
94 return "$TMPRES"
97 tmp_run() {
98 "$TMPEXE" >> "$TMPLOG" 2>&1
101 # Display error message, flushes tempfile, exit
102 die () {
103 echo
104 echo "Error: $@" >&2
105 echo >&2
106 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP"
107 echo "Check \"$TMPLOG\" if you do not understand why it failed."
108 exit 1
111 # OS test booleans functions
112 issystem() {
113 test "$(echo $system_name | tr A-Z a-z)" = "$(echo $1 | tr A-Z a-z)"
115 aix() { issystem "AIX"; }
116 amigaos() { issystem "AmigaOS"; }
117 beos() { issystem "BEOS"; }
118 bsdos() { issystem "BSD/OS"; }
119 cygwin() { issystem "CYGWIN"; }
120 darwin() { issystem "Darwin"; }
121 dragonfly() { issystem "DragonFly"; }
122 freebsd() { issystem "FreeBSD" || issystem "GNU/kFreeBSD"; }
123 gnu() { issystem "GNU"; }
124 hpux() { issystem "HP-UX"; }
125 irix() { issystem "IRIX"; }
126 linux() { issystem "Linux"; }
127 mingw32() { issystem "MINGW32"; }
128 morphos() { issystem "MorphOS"; }
129 netbsd() { issystem "NetBSD"; }
130 openbsd() { issystem "OpenBSD"; }
131 os2() { issystem "OS/2"; }
132 qnx() { issystem "QNX"; }
133 sunos() { issystem "SunOS"; }
134 win32() { cygwin || mingw32; }
136 # arch test boolean functions
137 # x86/x86pc is used by QNX
138 x86_32() {
139 case "$host_arch" in
140 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686) return 0 ;;
141 *) return 1 ;;
142 esac
145 x86_64() {
146 case "$host_arch" in
147 x86_64|amd64) return 0 ;;
148 *) return 1 ;;
149 esac
152 x86() {
153 x86_32 || x86_64
156 ppc() {
157 case "$host_arch" in
158 ppc|ppc64|powerpc|powerpc64) return 0;;
159 *) return 1;;
160 esac
163 alpha() {
164 case "$host_arch" in
165 alpha*) return 0;;
166 *) return 1;;
167 esac
170 arm() {
171 case "$host_arch" in
172 arm*) return 0;;
173 *) return 1;;
174 esac
177 # Use this before starting a check
178 echocheck() {
179 echo "============ Checking for $@ ============" >> "$TMPLOG"
180 echo ${_echo_n} "Checking for $@ ... ${_echo_c}"
183 # Use this to echo the results of a check
184 echores() {
185 if test "$res_comment" ; then
186 res_comment="($res_comment)"
188 echo "Result is: $@ $res_comment" >> "$TMPLOG"
189 echo "##########################################" >> "$TMPLOG"
190 echo "" >> "$TMPLOG"
191 echo "$@ $res_comment"
192 res_comment=""
194 #############################################################################
196 # Check how echo works in this /bin/sh
197 case $(echo -n) in
198 -n) _echo_n= _echo_c='\c' ;; # SysV echo
199 *) _echo_n='-n ' _echo_c= ;; # BSD echo
200 esac
202 msg_lang_all=''
203 ls po/*.po >/dev/null 2>&1 && msg_lang_all=$(echo po/*.po | sed -e 's:po/\([^[:space:]]*\)\.po:\1:g')
204 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")
205 doc_lang_all=$(echo DOCS/xml/??/ DOCS/xml/??_??/ | sed -e "s:DOCS/xml/\(..\)/:\1:g" -e "s:DOCS/xml/\(.._..\)/:\1:g")
207 show_help(){
208 cat << EOF
209 Usage: $0 [OPTIONS]...
211 Configuration:
212 -h, --help display this help and exit
214 Installation directories:
215 --prefix=DIR prefix directory for installation [/usr/local]
216 --bindir=DIR directory for installing binaries [PREFIX/bin]
217 --datadir=DIR directory for installing machine independent
218 data files (skins, etc) [PREFIX/share/mplayer]
219 --mandir=DIR directory for installing man pages [PREFIX/share/man]
220 --confdir=DIR directory for installing configuration files
221 [PREFIX/etc/mplayer]
222 --localedir=DIR directory for locale tree [PREFIX/share/locale]
223 --libdir=DIR directory for object code libraries [PREFIX/lib]
224 --codecsdir=DIR directory for binary codecs [LIBDIR/codecs]
226 Optional features:
227 --disable-mencoder disable MEncoder (A/V encoder) compilation [enable]
228 --disable-mplayer disable MPlayer compilation [enable]
229 --disable-largefiles disable support for files > 2GB [enable]
230 --enable-linux-devfs set default devices to devfs [disable]
231 --enable-termcap use termcap database for key codes [autodetect]
232 --enable-termios use termios database for key codes [autodetect]
233 --disable-iconv disable iconv for encoding conversion [autodetect]
234 --disable-langinfo do not use langinfo [autodetect]
235 --enable-lirc enable LIRC (remote control) support [autodetect]
236 --enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect]
237 --enable-joystick enable joystick support [disable]
238 --enable-apple-remote enable Apple Remote input (Mac OS X only) [autodetect]
239 --enable-apple-ir enable Apple IR Remote input (Linux only) [autodetect]
240 --disable-vm disable X video mode extensions [autodetect]
241 --disable-xf86keysym disable support for multimedia keys [autodetect]
242 --enable-radio enable radio interface [disable]
243 --enable-radio-capture enable radio capture (through PCI/line-in) [disable]
244 --disable-radio-v4l2 disable Video4Linux2 radio interface [autodetect]
245 --disable-radio-bsdbt848 disable BSD BT848 radio interface [autodetect]
246 --disable-tv disable TV interface (TV/DVB grabbers) [enable]
247 --disable-tv-v4l1 disable Video4Linux TV interface [autodetect]
248 --disable-tv-v4l2 disable Video4Linux2 TV interface [autodetect]
249 --disable-tv-bsdbt848 disable BSD BT848 interface [autodetect]
250 --disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
251 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
252 --disable-network disable networking [enable]
253 --enable-winsock2_h enable winsock2_h [autodetect]
254 --enable-smb enable Samba (SMB) input [autodetect]
255 --enable-live enable LIVE555 Streaming Media [autodetect]
256 --enable-nemesi enable Nemesi Streaming Media [autodetect]
257 --disable-vcd disable VCD support [autodetect]
258 --disable-dvdnav disable libdvdnav [autodetect]
259 --disable-dvdread disable libdvdread [autodetect]
260 --disable-dvdread-internal disable internal libdvdread [autodetect]
261 --disable-libdvdcss-internal disable internal libdvdcss [autodetect]
262 --disable-cdparanoia disable cdparanoia [autodetect]
263 --disable-cddb disable cddb [autodetect]
264 --disable-bitmap-font disable bitmap font support [enable]
265 --disable-freetype disable FreeType 2 font rendering [autodetect]
266 --disable-fontconfig disable fontconfig font lookup [autodetect]
267 --disable-unrarexec disable using of UnRAR executable [enabled]
268 --enable-menu enable OSD menu (not DVD menu) [disabled]
269 --disable-sortsub disable subtitle sorting [enabled]
270 --enable-fribidi enable the FriBiDi libs [autodetect]
271 --disable-enca disable ENCA charset oracle library [autodetect]
272 --disable-maemo disable maemo specific features [autodetect]
273 --enable-macosx-finder enable Mac OS X Finder invocation parameter
274 parsing [disabled]
275 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
276 --disable-inet6 disable IPv6 support [autodetect]
277 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
278 --disable-ftp disable FTP support [enabled]
279 --disable-vstream disable TiVo vstream client support [autodetect]
280 --disable-pthreads disable Posix threads support [autodetect]
281 --disable-w32threads disable Win32 threads support [autodetect]
282 --disable-ass disable internal SSA/ASS subtitle support [autodetect]
283 --enable-rpath enable runtime linker path for extra libs [disabled]
285 Codecs:
286 --enable-gif enable GIF support [autodetect]
287 --enable-png enable PNG input/output support [autodetect]
288 --enable-mng enable MNG input support [autodetect]
289 --enable-jpeg enable JPEG input/output support [autodetect]
290 --enable-libcdio enable libcdio support [autodetect]
291 --enable-liblzo enable liblzo support [autodetect]
292 --disable-win32dll disable Win32 DLL support [autodetect]
293 --disable-qtx disable QuickTime codecs support [enabled]
294 --disable-xanim disable XAnim codecs support [enabled]
295 --disable-real disable RealPlayer codecs support [enabled]
296 --disable-xvid disable Xvid [autodetect]
297 --disable-x264 disable x264 [autodetect]
298 --disable-libnut disable libnut [autodetect]
299 --disable-libavutil disable libavutil [autodetect]
300 --disable-libavcodec disable libavcodec [autodetect]
301 --disable-libavformat disable libavformat [autodetect]
302 --disable-libpostproc disable libpostproc [autodetect]
303 --disable-libswscale disable libswscale [autodetect]
304 --disable-tremor-internal disable internal Tremor [enabled]
305 --enable-tremor-low enable lower accuracy internal Tremor [disabled]
306 --enable-tremor enable external Tremor [autodetect]
307 --disable-libvorbis disable libvorbis support [autodetect]
308 --disable-speex disable Speex support [autodetect]
309 --enable-theora enable OggTheora libraries [autodetect]
310 --enable-faad enable external FAAD2 (AAC) [autodetect]
311 --disable-faad-internal disable internal FAAD2 (AAC) [autodetect]
312 --enable-faad-fixed enable fixed-point mode in internal FAAD2 [disabled]
313 --disable-faac disable support for FAAC (AAC encoder) [autodetect]
314 --disable-ladspa disable LADSPA plugin support [autodetect]
315 --disable-libbs2b disable libbs2b audio filter support [autodetect]
316 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
317 --disable-mad disable libmad (MPEG audio) support [autodetect]
318 --disable-mp3lame disable LAME MP3 encoding support [autodetect]
319 --disable-toolame disable Toolame (MPEG layer 2) encoding [autodetect]
320 --disable-twolame disable Twolame (MPEG layer 2) encoding [autodetect]
321 --enable-xmms enable XMMS input plugin support [disabled]
322 --enable-libdca enable libdca support [autodetect]
323 --disable-mp3lib disable builtin mp3lib [autodetect]
324 --disable-liba52 disable liba52 [autodetect]
325 --disable-libmpeg2 disable builtin libmpeg2 [autodetect]
326 --disable-musepack disable musepack support [autodetect]
328 Video output:
329 --disable-vidix disable VIDIX [for x86 *nix]
330 --with-vidix-drivers[=*] list of VIDIX drivers to be compiled in
331 Available: cyberblade,ivtv,mach64,mga,mga_crtc2,
332 nvidia,pm2,pm3,radeon,rage128,s3,sis,unichrome
333 --disable-vidix-pcidb disable VIDIX PCI device name database
334 --enable-dhahelper enable VIDIX dhahelper support
335 --enable-svgalib_helper enable VIDIX svgalib_helper support
336 --enable-gl enable OpenGL video output [autodetect]
337 --disable-matrixview disable OpenGL MatrixView video output [autodetect]
338 --enable-dga2 enable DGA 2 support [autodetect]
339 --enable-dga1 enable DGA 1 support [autodetect]
340 --enable-vesa enable VESA video output [autodetect]
341 --enable-svga enable SVGAlib video output [autodetect]
342 --enable-sdl enable SDL video output [autodetect]
343 --enable-kva enable KVA video output [autodetect]
344 --enable-aa enable AAlib video output [autodetect]
345 --enable-caca enable CACA video output [autodetect]
346 --enable-ggi enable GGI video output [autodetect]
347 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
348 --enable-direct3d enable Direct3D video output [autodetect]
349 --enable-directx enable DirectX video output [autodetect]
350 --enable-dxr2 enable DXR2 video output [autodetect]
351 --enable-dxr3 enable DXR3/H+ video output [autodetect]
352 --enable-ivtv enable IVTV TV-Out video output [autodetect]
353 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
354 --enable-dvb enable DVB video output [autodetect]
355 --enable-mga enable mga_vid video output [autodetect]
356 --enable-xmga enable mga_vid X11 video output [autodetect]
357 --enable-xv enable Xv video output [autodetect]
358 --enable-xvmc enable XvMC acceleration [disable]
359 --enable-vdpau enable VDPAU acceleration [autodetect]
360 --enable-vm enable XF86VidMode support [autodetect]
361 --enable-xinerama enable Xinerama support [autodetect]
362 --enable-x11 enable X11 video output [autodetect]
363 --enable-xshape enable XShape support [autodetect]
364 --disable-xss disable screensaver support via xss [autodetect]
365 --enable-fbdev enable FBDev video output [autodetect]
366 --enable-mlib enable mediaLib video output (Solaris) [disable]
367 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
368 --enable-tdfxfb enable tdfxfb video output [disable]
369 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
370 --enable-wii enable Nintendo Wii/GameCube video output [disable]
371 --enable-directfb enable DirectFB video output [autodetect]
372 --enable-zr enable ZR360[56]7/ZR36060 video output [autodetect]
373 --enable-bl enable Blinkenlights video output [disable]
374 --enable-tdfxvid enable tdfx_vid video output [disable]
375 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
376 --disable-tga disable Targa video output [enable]
377 --disable-pnm disable PNM video output [enable]
378 --disable-md5sum disable md5sum video output [enable]
379 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
380 --disable-corevideo disable CoreVideo video output [autodetect]
381 --disable-quartz disable Quartz video output [autodetect]
383 Audio output:
384 --disable-alsa disable ALSA audio output [autodetect]
385 --disable-ossaudio disable OSS audio output [autodetect]
386 --disable-arts disable aRts audio output [autodetect]
387 --disable-esd disable esd audio output [autodetect]
388 --disable-pulse disable Pulseaudio audio output [autodetect]
389 --disable-jack disable JACK audio output [autodetect]
390 --enable-openal enable OpenAL audio output [disable]
391 --disable-nas disable NAS audio output [autodetect]
392 --disable-sgiaudio disable SGI audio output [autodetect]
393 --disable-sunaudio disable Sun audio output [autodetect]
394 --disable-kai disable KAI audio output [autodetect]
395 --disable-dart disable DART audio output [autodetect]
396 --disable-win32waveout disable Windows waveout audio output [autodetect]
397 --disable-coreaudio disable CoreAudio audio output [autodetect]
398 --disable-select disable using select() on the audio device [enable]
400 Language options:
401 --enable-translation enable support for translated output [disable]
402 --charset=charset convert the console messages to this character set
403 --language-doc=lang language to use for the documentation [en]
404 --language-man=lang language to use for the man pages [en]
405 --language-msg=lang extra languages for program messages [all]
406 --language=lang default language to use [en]
407 Specific options override --language. You can pass a list of languages separated
408 by whitespace or commas instead of a single language. Nonexisting translations
409 will be dropped from each list. All translations available in the list will be
410 installed. The value "all" will activate all translations. The LINGUAS
411 environment variable is honored. In all cases the fallback is English.
412 The program always supports English-language output; additional message
413 languages are only installed if --enable-translation is also specified.
414 Available values for --language-doc are: all $doc_lang_all
415 Available values for --language-man are: all $man_lang_all
416 Available values for --language-msg are: all $msg_lang_all
418 Miscellaneous options:
419 --enable-runtime-cpudetection enable runtime CPU detection [disable]
420 --enable-cross-compile enable cross-compilation [autodetect]
421 --cc=COMPILER C compiler to build MPlayer [gcc]
422 --host-cc=COMPILER C compiler for tools needed while building [gcc]
423 --as=ASSEMBLER assembler to build MPlayer [as]
424 --nm=NM nm tool to build MPlayer [nm]
425 --yasm=YASM Yasm assembler to build MPlayer [yasm]
426 --ar=AR librarian to build MPlayer [ar]
427 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
428 --windres=WINDRES windres to build MPlayer [windres]
429 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
430 --enable-static build a statically linked binary
431 --with-install=PATH path to a custom install program
433 Advanced options:
434 --enable-mmx enable MMX [autodetect]
435 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
436 --enable-3dnow enable 3DNow! [autodetect]
437 --enable-3dnowext enable extended 3DNow! [autodetect]
438 --enable-sse enable SSE [autodetect]
439 --enable-sse2 enable SSE2 [autodetect]
440 --enable-ssse3 enable SSSE3 [autodetect]
441 --enable-shm enable shm [autodetect]
442 --enable-altivec enable AltiVec (PowerPC) [autodetect]
443 --enable-armv5te enable DSP extensions (ARM) [autodetect]
444 --enable-armv6 enable ARMv6 (ARM) [autodetect]
445 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
446 --enable-armvfp enable ARM VFP (ARM) [autodetect]
447 --enable-neon enable NEON (ARM) [autodetect]
448 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
449 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
450 --enable-big-endian force byte order to big-endian [autodetect]
451 --enable-debug[=1-3] compile-in debugging information [disable]
452 --enable-profile compile-in profiling information [disable]
453 --disable-sighandler disable sighandler for crashes [enable]
454 --enable-crash-debug enable automatic gdb attach on crash [disable]
455 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
456 --ffmpeg-source-dir=PATH enable features requiring internal FFmpeg headers
458 Use these options if autodetection fails:
459 --extra-cflags=FLAGS extra CFLAGS
460 --extra-ldflags=FLAGS extra LDFLAGS
461 --extra-libs=FLAGS extra linker flags
462 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
463 --extra-libs-mencoder=FLAGS extra linker flags for MEncoder
464 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
466 --with-freetype-config=PATH path to freetype-config
467 --with-glib-config=PATH path to glib*-config
468 --with-gtk-config=PATH path to gtk*-config
469 --with-sdl-config=PATH path to sdl*-config
470 --with-dvdnav-config=PATH path to dvdnav-config
471 --with-dvdread-config=PATH path to dvdread-config
473 This configure script is NOT autoconf-based, even though its output is similar.
474 It will try to autodetect all configuration options. If you --enable an option
475 it will be forcefully turned on, skipping autodetection. This can break
476 compilation, so you need to know what you are doing.
478 exit 0
479 } #show_help()
481 # GOTCHA: the variables below defines the default behavior for autodetection
482 # and have - unless stated otherwise - at least 2 states : yes no
483 # If autodetection is available then the third state is: auto
484 _mmx=auto
485 _3dnow=auto
486 _3dnowext=auto
487 _mmxext=auto
488 _sse=auto
489 _sse2=auto
490 _ssse3=auto
491 _cmov=auto
492 _fast_cmov=auto
493 _fast_clz=auto
494 _armv5te=auto
495 _armv6=auto
496 _armv6t2=auto
497 _armvfp=auto
498 neon=auto
499 _iwmmxt=auto
500 _mtrr=auto
501 _altivec=auto
502 _install=install
503 _ranlib=ranlib
504 _windres=windres
505 _cc=cc
506 _ar=ar
507 test "$CC" && _cc="$CC"
508 _as=auto
509 _nm=auto
510 _yasm=yasm
511 _runtime_cpudetection=no
512 _cross_compile=auto
513 _prefix="/usr/local"
514 _libavutil=auto
515 _libavcodec=auto
516 _libavformat=auto
517 _libpostproc=auto
518 _libswscale=auto
519 _libavcodec_internals=no
520 _libswscale_internals=no
521 _mencoder=yes
522 _mplayer=yes
523 _x11=auto
524 _xshape=auto
525 _xss=auto
526 _dga1=auto
527 _dga2=auto
528 _xv=auto
529 _xvmc=no #auto when complete
530 _vdpau=auto
531 _sdl=auto
532 _kva=auto
533 _direct3d=auto
534 _directx=auto
535 _win32waveout=auto
536 _nas=auto
537 _png=auto
538 _mng=auto
539 _jpeg=auto
540 _pnm=yes
541 _md5sum=yes
542 _yuv4mpeg=yes
543 _gif=auto
544 _gl=auto
545 matrixview=yes
546 _ggi=auto
547 _ggiwmh=auto
548 _aa=auto
549 _caca=auto
550 _svga=auto
551 _vesa=auto
552 _fbdev=auto
553 _dvb=auto
554 _dxr2=auto
555 _dxr3=auto
556 _ivtv=auto
557 _v4l2=auto
558 _iconv=auto
559 _langinfo=auto
560 _rtc=auto
561 _ossaudio=auto
562 _arts=auto
563 _esd=auto
564 _pulse=auto
565 _jack=auto
566 _kai=auto
567 _dart=auto
568 _openal=no
569 _libcdio=auto
570 _liblzo=auto
571 _mad=auto
572 _mp3lame=auto
573 _toolame=auto
574 _twolame=auto
575 _tremor=auto
576 _tremor_internal=yes
577 _tremor_low=no
578 _libvorbis=auto
579 _speex=auto
580 _theora=auto
581 _mp3lib=auto
582 _liba52=auto
583 _libdca=auto
584 _libmpeg2=auto
585 _faad=auto
586 _faad_internal=auto
587 _faad_fixed=no
588 _faac=auto
589 _ladspa=auto
590 _libbs2b=auto
591 _xmms=no
592 _vcd=auto
593 _dvdnav=auto
594 _dvdnavconfig=dvdnav-config
595 _dvdreadconfig=dvdread-config
596 _dvdread=auto
597 _dvdread_internal=auto
598 _libdvdcss_internal=auto
599 _xanim=auto
600 _real=auto
601 _live=auto
602 _nemesi=auto
603 _native_rtsp=yes
604 _xinerama=auto
605 _mga=auto
606 _xmga=auto
607 _vm=auto
608 _xf86keysym=auto
609 _mlib=no #broken, thus disabled
610 _sgiaudio=auto
611 _sunaudio=auto
612 _alsa=auto
613 _fastmemcpy=yes
614 _unrar_exec=auto
615 _win32dll=auto
616 _select=yes
617 _radio=no
618 _radio_capture=no
619 _radio_v4l=auto
620 _radio_v4l2=auto
621 _radio_bsdbt848=auto
622 _tv=yes
623 _tv_v4l1=auto
624 _tv_v4l2=auto
625 _tv_bsdbt848=auto
626 _tv_dshow=auto
627 _pvr=auto
628 _network=yes
629 _winsock2_h=auto
630 _smb=auto
631 _vidix=auto
632 _vidix_pcidb=yes
633 _dhahelper=no
634 _svgalib_helper=no
635 _joystick=no
636 _xvid=auto
637 _x264=auto
638 _libnut=auto
639 _lirc=auto
640 _lircc=auto
641 _apple_remote=auto
642 _apple_ir=auto
643 _gui=no
644 _gtk1=no
645 _termcap=auto
646 _termios=auto
647 _3dfx=no
648 _s3fb=no
649 _wii=no
650 _tdfxfb=no
651 _tdfxvid=no
652 _xvr100=auto
653 _tga=yes
654 _directfb=auto
655 _zr=auto
656 _bl=no
657 _largefiles=yes
658 #language=en
659 _shm=auto
660 _linux_devfs=no
661 _translation=no
662 _charset="UTF-8"
663 _dynamic_plugins=no
664 _crash_debug=no
665 _sighandler=yes
666 _libdv=auto
667 _cdparanoia=auto
668 _cddb=auto
669 _big_endian=auto
670 _bitmap_font=yes
671 _freetype=auto
672 _fontconfig=auto
673 _menu=no
674 _qtx=auto
675 _maemo=auto
676 _coreaudio=auto
677 _corevideo=auto
678 _quartz=auto
679 quicktime=auto
680 _macosx_finder=no
681 _macosx_bundle=auto
682 _sortsub=yes
683 _freetypeconfig='freetype-config'
684 _fribidi=auto
685 _enca=auto
686 _inet6=auto
687 _gethostbyname2=auto
688 _ftp=yes
689 _musepack=auto
690 _vstream=auto
691 _pthreads=auto
692 _w32threads=auto
693 _ass=auto
694 _rpath=no
695 _asmalign_pot=auto
696 _stream_cache=yes
697 _priority=no
698 def_dos_paths="#define HAVE_DOS_PATHS 0"
699 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
700 def_priority="#undef CONFIG_PRIORITY"
701 def_pthread_cache="#undef PTHREAD_CACHE"
702 _need_shmem=yes
703 for ac_option do
704 case "$ac_option" in
705 --help|-help|-h)
706 show_help
708 --prefix=*)
709 _prefix=$(echo $ac_option | cut -d '=' -f 2)
711 --bindir=*)
712 _bindir=$(echo $ac_option | cut -d '=' -f 2)
714 --datadir=*)
715 _datadir=$(echo $ac_option | cut -d '=' -f 2)
717 --mandir=*)
718 _mandir=$(echo $ac_option | cut -d '=' -f 2)
720 --confdir=*)
721 _confdir=$(echo $ac_option | cut -d '=' -f 2)
723 --libdir=*)
724 _libdir=$(echo $ac_option | cut -d '=' -f 2)
726 --codecsdir=*)
727 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
729 --localedir=*)
730 _localedir=$(echo $ac_option | cut -d '=' -f 2)
733 --with-install=*)
734 _install=$(echo $ac_option | cut -d '=' -f 2 )
736 --with-xvmclib=*)
737 _xvmclib=$(echo $ac_option | cut -d '=' -f 2)
740 --with-sdl-config=*)
741 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
743 --with-freetype-config=*)
744 _freetypeconfig=$(echo $ac_option | cut -d '=' -f 2)
746 --with-gtk-config=*)
747 _gtkconfig=$(echo $ac_option | cut -d '=' -f 2)
749 --with-glib-config=*)
750 _glibconfig=$(echo $ac_option | cut -d '=' -f 2)
752 --with-dvdnav-config=*)
753 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
755 --with-dvdread-config=*)
756 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
759 --extra-cflags=*)
760 extra_cflags="$extra_cflags $(echo $ac_option | cut -d '=' -f 2-)"
762 --extra-ldflags=*)
763 extra_ldflags="$extra_ldflags $(echo $ac_option | cut -d '=' -f 2-)"
765 --extra-libs=*)
766 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
768 --extra-libs-mplayer=*)
769 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
771 --extra-libs-mencoder=*)
772 libs_mencoder=$(echo $ac_option | cut -d '=' -f 2)
775 --target=*)
776 _target=$(echo $ac_option | cut -d '=' -f 2)
778 --cc=*)
779 _cc=$(echo $ac_option | cut -d '=' -f 2)
781 --host-cc=*)
782 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
784 --as=*)
785 _as=$(echo $ac_option | cut -d '=' -f 2)
787 --nm=*)
788 _nm=$(echo $ac_option | cut -d '=' -f 2)
790 --yasm=*)
791 _yasm=$(echo $ac_option | cut -d '=' -f 2)
793 --ar=*)
794 _ar=$(echo $ac_option | cut -d '=' -f 2)
796 --ranlib=*)
797 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
799 --windres=*)
800 _windres=$(echo $ac_option | cut -d '=' -f 2)
802 --charset=*)
803 _charset=$(echo $ac_option | cut -d '=' -f 2)
805 --language-doc=*)
806 language_doc=$(echo $ac_option | cut -d '=' -f 2)
808 --language-man=*)
809 language_man=$(echo $ac_option | cut -d '=' -f 2)
811 --language-msg=*)
812 language_msg=$(echo $ac_option | cut -d '=' -f 2)
814 --language=*)
815 language=$(echo $ac_option | cut -d '=' -f 2)
818 --enable-static)
819 _ld_static='-static'
821 --disable-static)
822 _ld_static=''
824 --enable-profile)
825 _profile='-p'
827 --disable-profile)
828 _profile=
830 --enable-debug)
831 _debug='-g'
833 --enable-debug=*)
834 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
836 --disable-debug)
837 _debug=
839 --enable-translation) _translation=yes ;;
840 --disable-translation) _translation=no ;;
841 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
842 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
843 --enable-cross-compile) _cross_compile=yes ;;
844 --disable-cross-compile) _cross_compile=no ;;
845 --enable-mencoder) _mencoder=yes ;;
846 --disable-mencoder) _mencoder=no ;;
847 --enable-mplayer) _mplayer=yes ;;
848 --disable-mplayer) _mplayer=no ;;
849 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
850 --disable-dynamic-plugins) _dynamic_plugins=no ;;
851 --enable-x11) _x11=yes ;;
852 --disable-x11) _x11=no ;;
853 --enable-xshape) _xshape=yes ;;
854 --disable-xshape) _xshape=no ;;
855 --enable-xss) _xss=yes ;;
856 --disable-xss) _xss=no ;;
857 --enable-xv) _xv=yes ;;
858 --disable-xv) _xv=no ;;
859 --enable-xvmc) _xvmc=yes ;;
860 --disable-xvmc) _xvmc=no ;;
861 --enable-vdpau) _vdpau=yes ;;
862 --disable-vdpau) _vdpau=no ;;
863 --enable-sdl) _sdl=yes ;;
864 --disable-sdl) _sdl=no ;;
865 --enable-kva) _kva=yes ;;
866 --disable-kva) _kva=no ;;
867 --enable-direct3d) _direct3d=yes ;;
868 --disable-direct3d) _direct3d=no ;;
869 --enable-directx) _directx=yes ;;
870 --disable-directx) _directx=no ;;
871 --enable-win32waveout) _win32waveout=yes ;;
872 --disable-win32waveout) _win32waveout=no ;;
873 --enable-nas) _nas=yes ;;
874 --disable-nas) _nas=no ;;
875 --enable-png) _png=yes ;;
876 --disable-png) _png=no ;;
877 --enable-mng) _mng=yes ;;
878 --disable-mng) _mng=no ;;
879 --enable-jpeg) _jpeg=yes ;;
880 --disable-jpeg) _jpeg=no ;;
881 --enable-pnm) _pnm=yes ;;
882 --disable-pnm) _pnm=no ;;
883 --enable-md5sum) _md5sum=yes ;;
884 --disable-md5sum) _md5sum=no ;;
885 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
886 --disable-yuv4mpeg) _yuv4mpeg=no ;;
887 --enable-gif) _gif=yes ;;
888 --disable-gif) _gif=no ;;
889 --enable-gl) _gl=yes ;;
890 --disable-gl) _gl=no ;;
891 --enable-matrixview) matrixview=yes ;;
892 --disable-matrixview) matrixview=no ;;
893 --enable-ggi) _ggi=yes ;;
894 --disable-ggi) _ggi=no ;;
895 --enable-ggiwmh) _ggiwmh=yes ;;
896 --disable-ggiwmh) _ggiwmh=no ;;
897 --enable-aa) _aa=yes ;;
898 --disable-aa) _aa=no ;;
899 --enable-caca) _caca=yes ;;
900 --disable-caca) _caca=no ;;
901 --enable-svga) _svga=yes ;;
902 --disable-svga) _svga=no ;;
903 --enable-vesa) _vesa=yes ;;
904 --disable-vesa) _vesa=no ;;
905 --enable-fbdev) _fbdev=yes ;;
906 --disable-fbdev) _fbdev=no ;;
907 --enable-dvb) _dvb=yes ;;
908 --disable-dvb) _dvb=no ;;
909 --enable-dxr2) _dxr2=yes ;;
910 --disable-dxr2) _dxr2=no ;;
911 --enable-dxr3) _dxr3=yes ;;
912 --disable-dxr3) _dxr3=no ;;
913 --enable-ivtv) _ivtv=yes ;;
914 --disable-ivtv) _ivtv=no ;;
915 --enable-v4l2) _v4l2=yes ;;
916 --disable-v4l2) _v4l2=no ;;
917 --enable-iconv) _iconv=yes ;;
918 --disable-iconv) _iconv=no ;;
919 --enable-langinfo) _langinfo=yes ;;
920 --disable-langinfo) _langinfo=no ;;
921 --enable-rtc) _rtc=yes ;;
922 --disable-rtc) _rtc=no ;;
923 --enable-libdv) _libdv=yes ;;
924 --disable-libdv) _libdv=no ;;
925 --enable-ossaudio) _ossaudio=yes ;;
926 --disable-ossaudio) _ossaudio=no ;;
927 --enable-arts) _arts=yes ;;
928 --disable-arts) _arts=no ;;
929 --enable-esd) _esd=yes ;;
930 --disable-esd) _esd=no ;;
931 --enable-pulse) _pulse=yes ;;
932 --disable-pulse) _pulse=no ;;
933 --enable-jack) _jack=yes ;;
934 --disable-jack) _jack=no ;;
935 --enable-openal) _openal=yes ;;
936 --disable-openal) _openal=no ;;
937 --enable-kai) _kai=yes ;;
938 --disable-kai) _kai=no ;;
939 --enable-dart) _dart=yes ;;
940 --disable-dart) _dart=no ;;
941 --enable-mad) _mad=yes ;;
942 --disable-mad) _mad=no ;;
943 --enable-mp3lame) _mp3lame=yes ;;
944 --disable-mp3lame) _mp3lame=no ;;
945 --enable-toolame) _toolame=yes ;;
946 --disable-toolame) _toolame=no ;;
947 --enable-twolame) _twolame=yes ;;
948 --disable-twolame) _twolame=no ;;
949 --enable-libcdio) _libcdio=yes ;;
950 --disable-libcdio) _libcdio=no ;;
951 --enable-liblzo) _liblzo=yes ;;
952 --disable-liblzo) _liblzo=no ;;
953 --enable-libvorbis) _libvorbis=yes ;;
954 --disable-libvorbis) _libvorbis=no ;;
955 --enable-speex) _speex=yes ;;
956 --disable-speex) _speex=no ;;
957 --enable-tremor) _tremor=yes ;;
958 --disable-tremor) _tremor=no ;;
959 --enable-tremor-internal) _tremor_internal=yes ;;
960 --disable-tremor-internal) _tremor_internal=no ;;
961 --enable-tremor-low) _tremor_low=yes ;;
962 --disable-tremor-low) _tremor_low=no ;;
963 --enable-theora) _theora=yes ;;
964 --disable-theora) _theora=no ;;
965 --enable-mp3lib) _mp3lib=yes ;;
966 --disable-mp3lib) _mp3lib=no ;;
967 --enable-liba52) _liba52=yes ;;
968 --disable-liba52) _liba52=no ;;
969 --enable-libdca) _libdca=yes ;;
970 --disable-libdca) _libdca=no ;;
971 --enable-libmpeg2) _libmpeg2=yes ;;
972 --disable-libmpeg2) _libmpeg2=no ;;
973 --enable-musepack) _musepack=yes ;;
974 --disable-musepack) _musepack=no ;;
975 --enable-faad) _faad=yes ;;
976 --disable-faad) _faad=no ;;
977 --enable-faad-internal) _faad_internal=yes ;;
978 --disable-faad-internal) _faad_internal=no ;;
979 --enable-faad-fixed) _faad_fixed=yes ;;
980 --disable-faad-fixed) _faad_fixed=no ;;
981 --enable-faac) _faac=yes ;;
982 --disable-faac) _faac=no ;;
983 --enable-ladspa) _ladspa=yes ;;
984 --disable-ladspa) _ladspa=no ;;
985 --enable-libbs2b) _libbs2b=yes ;;
986 --disable-libbs2b) _libbs2b=no ;;
987 --enable-xmms) _xmms=yes ;;
988 --disable-xmms) _xmms=no ;;
989 --enable-vcd) _vcd=yes ;;
990 --disable-vcd) _vcd=no ;;
991 --enable-dvdread) _dvdread=yes ;;
992 --disable-dvdread) _dvdread=no ;;
993 --enable-dvdread-internal) _dvdread_internal=yes ;;
994 --disable-dvdread-internal) _dvdread_internal=no ;;
995 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
996 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
997 --enable-dvdnav) _dvdnav=yes ;;
998 --disable-dvdnav) _dvdnav=no ;;
999 --enable-xanim) _xanim=yes ;;
1000 --disable-xanim) _xanim=no ;;
1001 --enable-real) _real=yes ;;
1002 --disable-real) _real=no ;;
1003 --enable-live) _live=yes ;;
1004 --disable-live) _live=no ;;
1005 --enable-nemesi) _nemesi=yes ;;
1006 --disable-nemesi) _nemesi=no ;;
1007 --enable-xinerama) _xinerama=yes ;;
1008 --disable-xinerama) _xinerama=no ;;
1009 --enable-mga) _mga=yes ;;
1010 --disable-mga) _mga=no ;;
1011 --enable-xmga) _xmga=yes ;;
1012 --disable-xmga) _xmga=no ;;
1013 --enable-vm) _vm=yes ;;
1014 --disable-vm) _vm=no ;;
1015 --enable-xf86keysym) _xf86keysym=yes ;;
1016 --disable-xf86keysym) _xf86keysym=no ;;
1017 --enable-mlib) _mlib=yes ;;
1018 --disable-mlib) _mlib=no ;;
1019 --enable-sunaudio) _sunaudio=yes ;;
1020 --disable-sunaudio) _sunaudio=no ;;
1021 --enable-sgiaudio) _sgiaudio=yes ;;
1022 --disable-sgiaudio) _sgiaudio=no ;;
1023 --enable-alsa) _alsa=yes ;;
1024 --disable-alsa) _alsa=no ;;
1025 --enable-tv) _tv=yes ;;
1026 --disable-tv) _tv=no ;;
1027 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1028 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1029 --enable-tv-v4l1) _tv_v4l1=yes ;;
1030 --disable-tv-v4l1) _tv_v4l1=no ;;
1031 --enable-tv-v4l2) _tv_v4l2=yes ;;
1032 --disable-tv-v4l2) _tv_v4l2=no ;;
1033 --enable-tv-dshow) _tv_dshow=yes ;;
1034 --disable-tv-dshow) _tv_dshow=no ;;
1035 --enable-radio) _radio=yes ;;
1036 --enable-radio-capture) _radio_capture=yes ;;
1037 --disable-radio-capture) _radio_capture=no ;;
1038 --disable-radio) _radio=no ;;
1039 --enable-radio-v4l) _radio_v4l=yes ;;
1040 --disable-radio-v4l) _radio_v4l=no ;;
1041 --enable-radio-v4l2) _radio_v4l2=yes ;;
1042 --disable-radio-v4l2) _radio_v4l2=no ;;
1043 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1044 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1045 --enable-pvr) _pvr=yes ;;
1046 --disable-pvr) _pvr=no ;;
1047 --enable-fastmemcpy) _fastmemcpy=yes ;;
1048 --disable-fastmemcpy) _fastmemcpy=no ;;
1049 --enable-network) _network=yes ;;
1050 --disable-network) _network=no ;;
1051 --enable-winsock2_h) _winsock2_h=yes ;;
1052 --disable-winsock2_h) _winsock2_h=no ;;
1053 --enable-smb) _smb=yes ;;
1054 --disable-smb) _smb=no ;;
1055 --enable-vidix) _vidix=yes ;;
1056 --disable-vidix) _vidix=no ;;
1057 --with-vidix-drivers=*)
1058 _vidix_drivers=$(echo $ac_option | cut -d '=' -f 2)
1060 --disable-vidix-pcidb) _vidix_pcidb=no ;;
1061 --enable-dhahelper) _dhahelper=yes ;;
1062 --disable-dhahelper) _dhahelper=no ;;
1063 --enable-svgalib_helper) _svgalib_helper=yes ;;
1064 --disable-svgalib_helper) _svgalib_helper=no ;;
1065 --enable-joystick) _joystick=yes ;;
1066 --disable-joystick) _joystick=no ;;
1067 --enable-xvid) _xvid=yes ;;
1068 --disable-xvid) _xvid=no ;;
1069 --enable-x264) _x264=yes ;;
1070 --disable-x264) _x264=no ;;
1071 --enable-libnut) _libnut=yes ;;
1072 --disable-libnut) _libnut=no ;;
1073 --enable-libavutil) _libavutil=yes ;;
1074 --disable-libavutil) _libavutil=no ;;
1075 --enable-libavcodec) _libavcodec=yes ;;
1076 --disable-libavcodec) _libavcodec=no ;;
1077 --enable-libavformat) _libavformat=yes ;;
1078 --disable-libavformat) _libavformat=no ;;
1079 --enable-libpostproc) _libpostproc=yes ;;
1080 --disable-libpostproc) _libpostproc=no ;;
1081 --enable-libswscale) _libswscale=yes ;;
1082 --disable-libswscale) _libswscale=no ;;
1083 --ffmpeg-source-dir=*)
1084 _ffmpeg_source=$(echo $ac_option | cut -d '=' -f 2 ) ;;
1086 --enable-lirc) _lirc=yes ;;
1087 --disable-lirc) _lirc=no ;;
1088 --enable-lircc) _lircc=yes ;;
1089 --disable-lircc) _lircc=no ;;
1090 --enable-apple-remote) _apple_remote=yes ;;
1091 --disable-apple-remote) _apple_remote=no ;;
1092 --enable-apple-ir) _apple_ir=yes ;;
1093 --disable-apple-ir) _apple_ir=no ;;
1094 --enable-gui) _gui=yes ;;
1095 --disable-gui) _gui=no ;;
1096 --enable-gtk1) _gtk1=yes ;;
1097 --disable-gtk1) _gtk1=no ;;
1098 --enable-termcap) _termcap=yes ;;
1099 --disable-termcap) _termcap=no ;;
1100 --enable-termios) _termios=yes ;;
1101 --disable-termios) _termios=no ;;
1102 --enable-3dfx) _3dfx=yes ;;
1103 --disable-3dfx) _3dfx=no ;;
1104 --enable-s3fb) _s3fb=yes ;;
1105 --disable-s3fb) _s3fb=no ;;
1106 --enable-wii) _wii=yes ;;
1107 --disable-wii) _wii=no ;;
1108 --enable-tdfxfb) _tdfxfb=yes ;;
1109 --disable-tdfxfb) _tdfxfb=no ;;
1110 --disable-tdfxvid) _tdfxvid=no ;;
1111 --enable-tdfxvid) _tdfxvid=yes ;;
1112 --disable-xvr100) _xvr100=no ;;
1113 --enable-xvr100) _xvr100=yes ;;
1114 --disable-tga) _tga=no ;;
1115 --enable-tga) _tga=yes ;;
1116 --enable-directfb) _directfb=yes ;;
1117 --disable-directfb) _directfb=no ;;
1118 --enable-zr) _zr=yes ;;
1119 --disable-zr) _zr=no ;;
1120 --enable-bl) _bl=yes ;;
1121 --disable-bl) _bl=no ;;
1122 --enable-mtrr) _mtrr=yes ;;
1123 --disable-mtrr) _mtrr=no ;;
1124 --enable-largefiles) _largefiles=yes ;;
1125 --disable-largefiles) _largefiles=no ;;
1126 --enable-shm) _shm=yes ;;
1127 --disable-shm) _shm=no ;;
1128 --enable-select) _select=yes ;;
1129 --disable-select) _select=no ;;
1130 --enable-linux-devfs) _linux_devfs=yes ;;
1131 --disable-linux-devfs) _linux_devfs=no ;;
1132 --enable-cdparanoia) _cdparanoia=yes ;;
1133 --disable-cdparanoia) _cdparanoia=no ;;
1134 --enable-cddb) _cddb=yes ;;
1135 --disable-cddb) _cddb=no ;;
1136 --enable-big-endian) _big_endian=yes ;;
1137 --disable-big-endian) _big_endian=no ;;
1138 --enable-bitmap-font) _bitmap_font=yes ;;
1139 --disable-bitmap-font) _bitmap_font=no ;;
1140 --enable-freetype) _freetype=yes ;;
1141 --disable-freetype) _freetype=no ;;
1142 --enable-fontconfig) _fontconfig=yes ;;
1143 --disable-fontconfig) _fontconfig=no ;;
1144 --enable-unrarexec) _unrar_exec=yes ;;
1145 --disable-unrarexec) _unrar_exec=no ;;
1146 --enable-ftp) _ftp=yes ;;
1147 --disable-ftp) _ftp=no ;;
1148 --enable-vstream) _vstream=yes ;;
1149 --disable-vstream) _vstream=no ;;
1150 --enable-pthreads) _pthreads=yes ;;
1151 --disable-pthreads) _pthreads=no ;;
1152 --enable-w32threads) _w32threads=yes ;;
1153 --disable-w32threads) _w32threads=no ;;
1154 --enable-ass) _ass=yes ;;
1155 --disable-ass) _ass=no ;;
1156 --enable-rpath) _rpath=yes ;;
1157 --disable-rpath) _rpath=no ;;
1159 --enable-fribidi) _fribidi=yes ;;
1160 --disable-fribidi) _fribidi=no ;;
1162 --enable-enca) _enca=yes ;;
1163 --disable-enca) _enca=no ;;
1165 --enable-inet6) _inet6=yes ;;
1166 --disable-inet6) _inet6=no ;;
1168 --enable-gethostbyname2) _gethostbyname2=yes ;;
1169 --disable-gethostbyname2) _gethostbyname2=no ;;
1171 --enable-dga1) _dga1=yes ;;
1172 --disable-dga1) _dga1=no ;;
1173 --enable-dga2) _dga2=yes ;;
1174 --disable-dga2) _dga2=no ;;
1176 --enable-menu) _menu=yes ;;
1177 --disable-menu) _menu=no ;;
1179 --enable-qtx) _qtx=yes ;;
1180 --disable-qtx) _qtx=no ;;
1182 --enable-coreaudio) _coreaudio=yes ;;
1183 --disable-coreaudio) _coreaudio=no ;;
1184 --enable-corevideo) _corevideo=yes ;;
1185 --disable-corevideo) _corevideo=no ;;
1186 --enable-quartz) _quartz=yes ;;
1187 --disable-quartz) _quartz=no ;;
1188 --enable-macosx-finder) _macosx_finder=yes ;;
1189 --disable-macosx-finder) _macosx_finder=no ;;
1190 --enable-macosx-bundle) _macosx_bundle=yes ;;
1191 --disable-macosx-bundle) _macosx_bundle=no ;;
1193 --enable-maemo) _maemo=yes ;;
1194 --disable-maemo) _maemo=no ;;
1196 --enable-sortsub) _sortsub=yes ;;
1197 --disable-sortsub) _sortsub=no ;;
1199 --enable-crash-debug) _crash_debug=yes ;;
1200 --disable-crash-debug) _crash_debug=no ;;
1201 --enable-sighandler) _sighandler=yes ;;
1202 --disable-sighandler) _sighandler=no ;;
1203 --enable-win32dll) _win32dll=yes ;;
1204 --disable-win32dll) _win32dll=no ;;
1206 --enable-sse) _sse=yes ;;
1207 --disable-sse) _sse=no ;;
1208 --enable-sse2) _sse2=yes ;;
1209 --disable-sse2) _sse2=no ;;
1210 --enable-ssse3) _ssse3=yes ;;
1211 --disable-ssse3) _ssse3=no ;;
1212 --enable-mmxext) _mmxext=yes ;;
1213 --disable-mmxext) _mmxext=no ;;
1214 --enable-3dnow) _3dnow=yes ;;
1215 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1216 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1217 --disable-3dnowext) _3dnowext=no ;;
1218 --enable-cmov) _cmov=yes ;;
1219 --disable-cmov) _cmov=no ;;
1220 --enable-fast-cmov) _fast_cmov=yes ;;
1221 --disable-fast-cmov) _fast_cmov=no ;;
1222 --enable-fast-clz) _fast_clz=yes ;;
1223 --disable-fast-clz) _fast_clz=no ;;
1224 --enable-altivec) _altivec=yes ;;
1225 --disable-altivec) _altivec=no ;;
1226 --enable-armv5te) _armv5te=yes ;;
1227 --disable-armv5te) _armv5te=no ;;
1228 --enable-armv6) _armv6=yes ;;
1229 --disable-armv6) _armv6=no ;;
1230 --enable-armv6t2) _armv6t2=yes ;;
1231 --disable-armv6t2) _armv6t2=no ;;
1232 --enable-armvfp) _armvfp=yes ;;
1233 --disable-armvfp) _armvfp=no ;;
1234 --enable-neon) neon=yes ;;
1235 --disable-neon) neon=no ;;
1236 --enable-iwmmxt) _iwmmxt=yes ;;
1237 --disable-iwmmxt) _iwmmxt=no ;;
1238 --enable-mmx) _mmx=yes ;;
1239 --disable-mmx) # 3Dnow! and MMX2 require MMX
1240 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1243 echo "Unknown parameter: $ac_option"
1244 exit 1
1247 esac
1248 done
1250 if test "$_gui" = yes ; then
1251 die "Internal GUI was removed from MPlayer. Please use one of many available\n frontends\
1252 (http://www.mplayerhq.hu/design7/projects.html#mplayer_frontends)."
1255 # Atmos: moved this here, to be correct, if --prefix is specified
1256 test -z "$_bindir" && _bindir="$_prefix/bin"
1257 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1258 test -z "$_mandir" && _mandir="$_prefix/share/man"
1259 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1260 test -z "$_libdir" && _libdir="$_prefix/lib"
1261 test -z "$_localedir" && _localedir="$_prefix/share/locale"
1263 # Determine our OS name and CPU architecture
1264 if test -z "$_target" ; then
1265 # OS name
1266 system_name=$(uname -s 2>&1)
1267 case "$system_name" in
1268 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1270 Haiku)
1271 system_name=BeOS
1273 IRIX*)
1274 system_name=IRIX
1276 GNU/kFreeBSD)
1277 system_name=FreeBSD
1279 HP-UX*)
1280 system_name=HP-UX
1282 [cC][yY][gG][wW][iI][nN]*)
1283 system_name=CYGWIN
1285 MINGW32*)
1286 system_name=MINGW32
1288 OS/2*)
1289 system_name=OS/2
1292 system_name="$system_name-UNKNOWN"
1294 esac
1297 # host's CPU/instruction set
1298 host_arch=$(uname -p 2>&1)
1299 case "$host_arch" in
1300 i386|sparc|ppc|alpha|arm|mips|vax)
1302 powerpc) # Darwin returns 'powerpc'
1303 host_arch=ppc
1305 *) # uname -p on Linux returns 'unknown' for the processor type,
1306 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1308 # Maybe uname -m (machine hardware name) returns something we
1309 # recognize.
1311 # x86/x86pc is used by QNX
1312 case "$(uname -m 2>&1)" in
1313 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 ;;
1314 ia64) host_arch=ia64 ;;
1315 macppc|ppc) host_arch=ppc ;;
1316 ppc64) host_arch=ppc64 ;;
1317 alpha) host_arch=alpha ;;
1318 sparc) host_arch=sparc ;;
1319 sparc64) host_arch=sparc64 ;;
1320 parisc*|hppa*|9000*) host_arch=hppa ;;
1321 arm*|zaurus|cats) host_arch=arm ;;
1322 sh3|sh4|sh4a) host_arch=sh ;;
1323 s390) host_arch=s390 ;;
1324 s390x) host_arch=s390x ;;
1325 *mips*) host_arch=mips ;;
1326 vax) host_arch=vax ;;
1327 xtensa*) host_arch=xtensa ;;
1328 *) host_arch=UNKNOWN ;;
1329 esac
1331 esac
1332 else # if test -z "$_target"
1333 system_name=$(echo $_target | cut -d '-' -f 2)
1334 case "$(echo $system_name | tr A-Z a-z)" in
1335 linux) system_name=Linux ;;
1336 freebsd) system_name=FreeBSD ;;
1337 gnu/kfreebsd) system_name=FreeBSD ;;
1338 netbsd) system_name=NetBSD ;;
1339 bsd/os) system_name=BSD/OS ;;
1340 openbsd) system_name=OpenBSD ;;
1341 dragonfly) system_name=DragonFly ;;
1342 sunos) system_name=SunOS ;;
1343 qnx) system_name=QNX ;;
1344 morphos) system_name=MorphOS ;;
1345 amigaos) system_name=AmigaOS ;;
1346 mingw32*) system_name=MINGW32 ;;
1347 esac
1348 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1349 host_arch=$(echo $_target | cut -d '-' -f 1)
1350 if test $(echo $host_arch) != "x86_64" ; then
1351 host_arch=$(echo $host_arch | tr '_' '-')
1355 extra_cflags="-I. $extra_cflags"
1356 _timer=timer-linux.c
1357 _getch=getch2.c
1358 if freebsd ; then
1359 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1360 extra_cflags="$extra_cflags -I/usr/local/include"
1363 if netbsd || dragonfly ; then
1364 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1365 extra_cflags="$extra_cflags -I/usr/pkg/include"
1368 if darwin; then
1369 extra_cflags="-mdynamic-no-pic -falign-loops=16 -shared-libgcc $extra_cflags"
1370 _timer=timer-darwin.c
1373 if aix ; then
1374 extra_ldflags="$extra_ldflags -lC"
1377 if irix ; then
1378 _ranlib='ar -r'
1379 elif linux ; then
1380 _ranlib='true'
1383 if win32 ; then
1384 _exesuf=".exe"
1385 extra_cflags="$extra_cflags -fno-common"
1386 # -lwinmm is always needed for osdep/timer-win2.c
1387 extra_ldflags="$extra_ldflags -lwinmm"
1388 _pe_executable=yes
1389 _timer=timer-win2.c
1390 _priority=yes
1391 def_dos_paths="#define HAVE_DOS_PATHS 1"
1392 def_priority="#define CONFIG_PRIORITY 1"
1395 if mingw32 ; then
1396 _getch=getch2-win.c
1397 _need_shmem=no
1400 if amigaos ; then
1401 _select=no
1402 _sighandler=no
1403 _stream_cache=no
1404 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1405 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1408 if qnx ; then
1409 extra_ldflags="$extra_ldflags -lph"
1412 if os2 ; then
1413 _exesuf=".exe"
1414 _getch=getch2-os2.c
1415 _need_shmem=no
1416 _priority=yes
1417 def_dos_paths="#define HAVE_DOS_PATHS 1"
1418 def_priority="#define CONFIG_PRIORITY 1"
1421 for I in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1422 test "$I" && break
1423 done
1426 TMPLOG="configure.log"
1427 TMPC="$I/mplayer-conf-$RANDOM-$$.c"
1428 TMPCPP="$I/mplayer-conf-$RANDOM-$$.cpp"
1429 TMPEXE="$I/mplayer-conf-$RANDOM-$$$_exesuf"
1430 TMPH="$I/mplayer-conf-$RANDOM-$$.h"
1431 TMPS="$I/mplayer-conf-$RANDOM-$$.S"
1433 rm -f "$TMPLOG"
1434 echo configuration: $configuration > "$TMPLOG"
1435 echo >> "$TMPLOG"
1438 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1439 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1443 # Checking CC version...
1444 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1445 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1446 echocheck "$_cc version"
1447 cc_vendor=intel
1448 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1449 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1450 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1451 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1452 # TODO verify older icc/ecc compatibility
1453 case $cc_version in
1455 cc_version="v. ?.??, bad"
1456 cc_fail=yes
1458 10.1|11.0|11.1)
1459 cc_version="$cc_version, ok"
1462 cc_version="$cc_version, bad"
1463 cc_fail=yes
1465 esac
1466 echores "$cc_version"
1467 else
1468 for _cc in "$_cc" gcc cc ; do
1469 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1470 if test "$cc_name_tmp" = "gcc"; then
1471 cc_name=$cc_name_tmp
1472 echocheck "$_cc version"
1473 cc_vendor=gnu
1474 cc_version=$($_cc -dumpversion 2>&1)
1475 case $cc_version in
1476 2.96*)
1477 cc_fail=yes
1480 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1481 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1482 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1484 esac
1485 echores "$cc_version"
1486 break
1488 cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
1489 if test "$cc_name_tmp" = "Sun C"; then
1490 echocheck "$_cc version"
1491 cc_vendor=sun
1492 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 4)
1493 res_comment="experimental support only"
1494 echores "Sun C $cc_version"
1495 break
1497 done
1498 fi # icc
1499 test "$cc_fail" = yes && die "unsupported compiler version"
1501 if test -z "$_target" && x86 ; then
1502 cat > $TMPC << EOF
1503 int main(void) {
1504 int test[(int)sizeof(char *)-7];
1505 return 0;
1508 cc_check && host_arch=x86_64 || host_arch=i386
1511 echo "Detected operating system: $system_name"
1512 echo "Detected host architecture: $host_arch"
1514 echocheck "host cc"
1515 test "$_host_cc" || _host_cc=$_cc
1516 echores $_host_cc
1518 echocheck "cross compilation"
1519 if test $_cross_compile = auto ; then
1520 cat > $TMPC << EOF
1521 int main(void) { return 0; }
1523 _cross_compile=yes
1524 cc_check && "$TMPEXE" && _cross_compile=no
1526 echores $_cross_compile
1528 if test $_cross_compile = yes; then
1529 tmp_run() {
1530 return 0
1534 # ---
1536 # now that we know what compiler should be used for compilation, try to find
1537 # out which assembler is used by the $_cc compiler
1538 if test "$_as" = auto ; then
1539 _as=$($_cc -print-prog-name=as)
1540 test -z "$_as" && _as=as
1543 if test "$_nm" = auto ; then
1544 _nm=$($_cc -print-prog-name=nm)
1545 test -z "$_nm" && _nm=nm
1548 # XXX: this should be ok..
1549 _cpuinfo="echo"
1551 if test "$_runtime_cpudetection" = no ; then
1553 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1554 # FIXME: Remove the cygwin check once AMD CPUs are supported
1555 if test -r /proc/cpuinfo && ! cygwin; then
1556 # Linux with /proc mounted, extract CPU information from it
1557 _cpuinfo="cat /proc/cpuinfo"
1558 elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
1559 # FreeBSD with Linux emulation /proc mounted,
1560 # extract CPU information from it
1561 # Don't use it on x86 though, it never reports 3Dnow
1562 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1563 elif darwin && ! x86 ; then
1564 # use hostinfo on Darwin
1565 _cpuinfo="hostinfo"
1566 elif aix; then
1567 # use 'lsattr' on AIX
1568 _cpuinfo="lsattr -E -l proc0 -a type"
1569 elif x86; then
1570 # all other OSes try to extract CPU information from a small helper
1571 # program cpuinfo instead
1572 $_cc -o cpuinfo$_exesuf cpuinfo.c
1573 _cpuinfo="./cpuinfo$_exesuf"
1576 if x86 ; then
1577 # gather more CPU information
1578 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1579 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1580 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1581 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1582 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1584 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1586 pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1587 -e s/xmm/sse/ -e s/kni/sse/)
1589 for ext in $pparam ; do
1590 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1591 done
1593 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1594 test $_sse = kernel_check && _mmxext=kernel_check
1596 echocheck "CPU vendor"
1597 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1599 echocheck "CPU type"
1600 echores "$pname"
1603 fi # test "$_runtime_cpudetection" = no
1605 if x86 && test "$_runtime_cpudetection" = no ; then
1606 extcheck() {
1607 if test "$1" = kernel_check ; then
1608 echocheck "kernel support of $2"
1609 cat > $TMPC <<EOF
1610 #include <stdlib.h>
1611 #include <signal.h>
1612 void catch() { exit(1); }
1613 int main(void) {
1614 signal(SIGILL, catch);
1615 __asm__ volatile ("$3":::"memory"); return 0;
1619 if cc_check && tmp_run ; then
1620 eval _$2=yes
1621 echores "yes"
1622 _optimizing="$_optimizing $2"
1623 return 0
1624 else
1625 eval _$2=no
1626 echores "failed"
1627 echo "It seems that your kernel does not correctly support $2."
1628 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1629 return 1
1632 return 0
1635 extcheck $_mmx "mmx" "emms"
1636 extcheck $_mmxext "mmxext" "sfence"
1637 extcheck $_3dnow "3dnow" "femms"
1638 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1639 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1640 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1641 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1642 extcheck $_cmov "cmov" "cmovb %%eax,%%ebx"
1644 echocheck "mtrr support"
1645 if test "$_mtrr" = kernel_check ; then
1646 _mtrr="yes"
1647 _optimizing="$_optimizing mtrr"
1649 echores "$_mtrr"
1651 if test "$_gcc3_ext" != ""; then
1652 # if we had to disable sse/sse2 because the active kernel does not
1653 # support this instruction set extension, we also have to tell
1654 # gcc3 to not generate sse/sse2 instructions for normal C code
1655 cat > $TMPC << EOF
1656 int main(void) { return 0; }
1658 cc_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1664 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1665 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1666 arch_all='X86 IA64 SPARC ARM AVR32 SH4 PPC ALPHA MIPS PA_RISC S390 S390X VAX BFIN XTENSA TOMI GENERIC'
1667 subarch_all='X86_32 X86_64 PPC64'
1668 case "$host_arch" in
1669 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1670 arch='x86'
1671 subarch='x86_32'
1672 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1673 iproc=486
1674 proc=i486
1677 if test "$_runtime_cpudetection" = no ; then
1678 case "$pvendor" in
1679 AuthenticAMD)
1680 case "$pfamily" in
1681 3) proc=i386 iproc=386 ;;
1682 4) proc=i486 iproc=486 ;;
1683 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1684 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1685 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1686 proc=k6-3
1687 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1688 proc=geode
1689 elif test "$pmodel" -ge 8; then
1690 proc=k6-2
1691 elif test "$pmodel" -ge 6; then
1692 proc=k6
1693 else
1694 proc=i586
1697 6) iproc=686
1698 # It's a bit difficult to determine the correct type of Family 6
1699 # AMD CPUs just from their signature. Instead, we check directly
1700 # whether it supports SSE.
1701 if test "$_sse" = yes; then
1702 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1703 proc=athlon-xp
1704 else
1705 # Again, gcc treats athlon and athlon-tbird similarly.
1706 proc=athlon
1709 15) iproc=686
1710 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1711 # caught and remedied in the optimization tests below.
1712 proc=k8
1715 *) proc=amdfam10 iproc=686
1716 test $_fast_clz = "auto" && _fast_clz=yes
1718 esac
1720 GenuineIntel)
1721 case "$pfamily" in
1722 3) proc=i386 iproc=386 ;;
1723 4) proc=i486 iproc=486 ;;
1724 5) iproc=586
1725 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1726 proc=pentium-mmx # 4 is desktop, 8 is mobile
1727 else
1728 proc=i586
1731 6) iproc=686
1732 if test "$pmodel" -ge 15; then
1733 proc=core2
1734 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1735 proc=pentium-m
1736 elif test "$pmodel" -ge 7; then
1737 proc=pentium3
1738 elif test "$pmodel" -ge 3; then
1739 proc=pentium2
1740 else
1741 proc=i686
1743 test $_fast_clz = "auto" && _fast_clz=yes
1745 15) iproc=686
1746 # A nocona in 32-bit mode has no more capabilities than a prescott.
1747 if test "$pmodel" -ge 3; then
1748 proc=prescott
1749 else
1750 proc=pentium4
1751 test $_fast_clz = "auto" && _fast_clz=yes
1753 test $_fast_cmov = "auto" && _fast_cmov=no
1755 *) proc=prescott iproc=686 ;;
1756 esac
1758 CentaurHauls)
1759 case "$pfamily" in
1760 5) iproc=586
1761 if test "$pmodel" -ge 8; then
1762 proc=winchip2
1763 elif test "$pmodel" -ge 4; then
1764 proc=winchip-c6
1765 else
1766 proc=i586
1769 6) iproc=686
1770 if test "$pmodel" -ge 9; then
1771 proc=c3-2
1772 else
1773 proc=c3
1774 iproc=586
1777 *) proc=i686 iproc=i686 ;;
1778 esac
1780 unknown)
1781 case "$pfamily" in
1782 3) proc=i386 iproc=386 ;;
1783 4) proc=i486 iproc=486 ;;
1784 *) proc=i586 iproc=586 ;;
1785 esac
1788 proc=i586 iproc=586 ;;
1789 esac
1790 test $_fast_clz = "auto" && _fast_clz=no
1791 fi # test "$_runtime_cpudetection" = no
1794 # check that gcc supports our CPU, if not, fall back to earlier ones
1795 # LGB: check -mcpu and -march swithing step by step with enabling
1796 # to fall back till 386.
1798 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1800 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1801 cpuopt=-mtune
1802 else
1803 cpuopt=-mcpu
1806 echocheck "GCC & CPU optimization abilities"
1807 cat > $TMPC << EOF
1808 int main(void) { return 0; }
1810 if test "$_runtime_cpudetection" = no ; then
1811 if test $cc_vendor != "intel" ; then
1812 cc_check -march=native && proc=native
1814 if test "$proc" = "amdfam10"; then
1815 cc_check -march=$proc $cpuopt=$proc || proc=k8
1817 if test "$proc" = "k8"; then
1818 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1820 if test "$proc" = "athlon-xp"; then
1821 cc_check -march=$proc $cpuopt=$proc || proc=athlon
1823 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1824 cc_check -march=$proc $cpuopt=$proc || proc=k6
1826 if test "$proc" = "k6" || test "$proc" = "c3"; then
1827 if ! cc_check -march=$proc $cpuopt=$proc; then
1828 if cc_check -march=i586 $cpuopt=i686; then
1829 proc=i586-i686
1830 else
1831 proc=i586
1835 if test "$proc" = "prescott" ; then
1836 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
1838 if test "$proc" = "core2" ; then
1839 cc_check -march=$proc $cpuopt=$proc || proc=pentium-m
1841 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
1842 cc_check -march=$proc $cpuopt=$proc || proc=i686
1844 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1845 cc_check -march=$proc $cpuopt=$proc || proc=i586
1847 if test "$proc" = "i586"; then
1848 cc_check -march=$proc $cpuopt=$proc || proc=i486
1850 if test "$proc" = "i486" ; then
1851 cc_check -march=$proc $cpuopt=$proc || proc=i386
1853 if test "$proc" = "i386" ; then
1854 cc_check -march=$proc $cpuopt=$proc || proc=error
1856 if test "$proc" = "error" ; then
1857 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1858 _mcpu=""
1859 _march=""
1860 _optimizing=""
1861 elif test "$proc" = "i586-i686"; then
1862 _march="-march=i586"
1863 _mcpu="$cpuopt=i686"
1864 _optimizing="$proc"
1865 else
1866 _march="-march=$proc"
1867 _mcpu="$cpuopt=$proc"
1868 _optimizing="$proc"
1870 else # if test "$_runtime_cpudetection" = no
1871 _mcpu="$cpuopt=generic"
1872 # at least i486 required, for bswap instruction
1873 _march="-march=i486"
1874 cc_check $_mcpu || _mcpu="$cpuopt=i686"
1875 cc_check $_mcpu || _mcpu=""
1876 cc_check $_march $_mcpu || _march=""
1879 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1880 ## autodetected mcpu/march parameters
1881 if test "$_target" ; then
1882 # TODO: it may be a good idea to check GCC and fall back in all cases
1883 if test "$host_arch" = "i586-i686"; then
1884 _march="-march=i586"
1885 _mcpu="$cpuopt=i686"
1886 else
1887 _march="-march=$host_arch"
1888 _mcpu="$cpuopt=$host_arch"
1891 proc="$host_arch"
1893 case "$proc" in
1894 i386) iproc=386 ;;
1895 i486) iproc=486 ;;
1896 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1897 i686|athlon*|pentium*) iproc=686 ;;
1898 *) iproc=586 ;;
1899 esac
1902 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1903 _fast_cmov="yes"
1904 else
1905 _fast_cmov="no"
1907 test $_fast_clz = "auto" && _fast_clz=yes
1909 echores "$proc"
1912 ia64)
1913 arch='ia64'
1914 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1915 iproc='ia64'
1918 x86_64|amd64)
1919 arch='x86'
1920 subarch='x86_64'
1921 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1922 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1923 iproc='x86_64'
1925 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1926 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1927 cpuopt=-mtune
1928 else
1929 cpuopt=-mcpu
1931 if test "$_runtime_cpudetection" = no ; then
1932 case "$pvendor" in
1933 AuthenticAMD)
1934 case "$pfamily" in
1935 15) proc=k8
1936 test $_fast_clz = "auto" && _fast_clz=no
1938 *) proc=amdfam10;;
1939 esac
1941 GenuineIntel)
1942 case "$pfamily" in
1943 6) proc=core2;;
1945 # 64-bit prescotts exist, but as far as GCC is concerned they
1946 # have the same capabilities as a nocona.
1947 proc=nocona
1948 test $_fast_cmov = "auto" && _fast_cmov=no
1949 test $_fast_clz = "auto" && _fast_clz=no
1951 esac
1954 proc=error;;
1955 esac
1956 fi # test "$_runtime_cpudetection" = no
1958 echocheck "GCC & CPU optimization abilities"
1959 cat > $TMPC << EOF
1960 int main(void) { return 0; }
1962 # This is a stripped-down version of the i386 fallback.
1963 if test "$_runtime_cpudetection" = no ; then
1964 if test $cc_vendor != "intel" ; then
1965 cc_check -march=native && proc=native
1967 # --- AMD processors ---
1968 if test "$proc" = "amdfam10"; then
1969 cc_check -march=$proc $cpuopt=$proc || proc=k8
1971 if test "$proc" = "k8"; then
1972 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1974 # This will fail if gcc version < 3.3, which is ok because earlier
1975 # versions don't really support 64-bit on amd64.
1976 # Is this a valid assumption? -Corey
1977 if test "$proc" = "athlon-xp"; then
1978 cc_check -march=$proc $cpuopt=$proc || proc=error
1980 # --- Intel processors ---
1981 if test "$proc" = "core2"; then
1982 cc_check -march=$proc $cpuopt=$proc || proc=x86-64
1984 if test "$proc" = "x86-64"; then
1985 cc_check -march=$proc $cpuopt=$proc || proc=nocona
1987 if test "$proc" = "nocona"; then
1988 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
1990 if test "$proc" = "pentium4"; then
1991 cc_check -march=$proc $cpuopt=$proc || proc=error
1994 _march="-march=$proc"
1995 _mcpu="$cpuopt=$proc"
1996 if test "$proc" = "error" ; then
1997 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1998 _mcpu=""
1999 _march=""
2001 else # if test "$_runtime_cpudetection" = no
2002 # x86-64 is an undocumented option, an intersection of k8 and nocona.
2003 _march="-march=x86-64"
2004 _mcpu="$cpuopt=generic"
2005 cc_check $_mcpu || _mcpu="x86-64"
2006 cc_check $_mcpu || _mcpu=""
2007 cc_check $_march $_mcpu || _march=""
2010 _optimizing="$proc"
2011 test $_fast_cmov = "auto" && _fast_cmov=yes
2012 test $_fast_clz = "auto" && _fast_clz=yes
2014 echores "$proc"
2017 sparc|sparc64)
2018 arch='sparc'
2019 iproc='sparc'
2020 if test "$host_arch" = "sparc64" ; then
2021 _vis='yes'
2022 proc='ultrasparc'
2023 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2024 elif sunos ; then
2025 echocheck "CPU type"
2026 karch=$(uname -m)
2027 case "$(echo $karch)" in
2028 sun4) proc=v7 ;;
2029 sun4c) proc=v7 ;;
2030 sun4d) proc=v8 ;;
2031 sun4m) proc=v8 ;;
2032 sun4u) proc=ultrasparc _vis='yes' ;;
2033 sun4v) proc=v9 ;;
2034 *) proc=v8 ;;
2035 esac
2036 echores "$proc"
2037 else
2038 proc=v8
2040 _mcpu="-mcpu=$proc"
2041 _optimizing="$proc"
2044 arm*)
2045 arch='arm'
2046 iproc='arm'
2049 avr32)
2050 arch='avr32'
2051 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2052 iproc='avr32'
2053 test $_fast_clz = "auto" && _fast_clz=yes
2056 sh|sh4)
2057 arch='sh4'
2058 iproc='sh4'
2061 ppc|ppc64|powerpc|powerpc64)
2062 arch='ppc'
2063 def_dcbzl='#define HAVE_DCBZL 0'
2064 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2065 iproc='ppc'
2067 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2068 subarch='ppc64'
2069 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2071 echocheck "CPU type"
2072 case $system_name in
2073 Linux)
2074 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2075 if test -n "$($_cpuinfo | grep altivec)"; then
2076 test $_altivec = auto && _altivec=yes
2079 Darwin)
2080 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2081 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2082 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2083 test $_altivec = auto && _altivec=yes
2086 NetBSD)
2087 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2088 case $cc_version in
2089 2*|3.0*|3.1*|3.2*|3.3*)
2092 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2093 test $_altivec = auto && _altivec=yes
2096 esac
2098 AIX)
2099 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2101 esac
2102 if test "$_altivec" = yes; then
2103 echores "$proc altivec"
2104 else
2105 _altivec=no
2106 echores "$proc"
2109 echocheck "GCC & CPU optimization abilities"
2111 if test -n "$proc"; then
2112 case "$proc" in
2113 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2114 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2115 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2116 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2117 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2118 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2119 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2120 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2121 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2122 *) ;;
2123 esac
2124 # gcc 3.1(.1) and up supports 7400 and 7450
2125 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2126 case "$proc" in
2127 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2128 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2129 *) ;;
2130 esac
2132 # gcc 3.2 and up supports 970
2133 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2134 case "$proc" in
2135 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2136 def_dcbzl='#define HAVE_DCBZL 1' ;;
2137 *) ;;
2138 esac
2140 # gcc 3.3 and up supports POWER4
2141 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2142 case "$proc" in
2143 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2144 *) ;;
2145 esac
2147 # gcc 3.4 and up supports 440*
2148 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2149 case "$proc" in
2150 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2151 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2152 *) ;;
2153 esac
2155 # gcc 4.0 and up supports POWER5
2156 if test "$_cc_major" -ge "4"; then
2157 case "$proc" in
2158 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2159 *) ;;
2160 esac
2164 if test -n "$_mcpu"; then
2165 _optimizing=$(echo $_mcpu | cut -c 8-)
2166 echores "$_optimizing"
2167 else
2168 echores "none"
2171 test $_fast_clz = "auto" && _fast_clz=yes
2175 alpha*)
2176 arch='alpha'
2177 iproc='alpha'
2178 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2180 echocheck "CPU type"
2181 cat > $TMPC << EOF
2182 int main(void) {
2183 unsigned long ver, mask;
2184 __asm__ ("implver %0" : "=r" (ver));
2185 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2186 printf("%ld-%x\n", ver, ~mask);
2187 return 0;
2190 $_cc -o "$TMPEXE" "$TMPC"
2191 case $("$TMPEXE") in
2193 0-0) proc="ev4"; _mvi="0";;
2194 1-0) proc="ev5"; _mvi="0";;
2195 1-1) proc="ev56"; _mvi="0";;
2196 1-101) proc="pca56"; _mvi="1";;
2197 2-303) proc="ev6"; _mvi="1";;
2198 2-307) proc="ev67"; _mvi="1";;
2199 2-1307) proc="ev68"; _mvi="1";;
2200 esac
2201 echores "$proc"
2203 echocheck "GCC & CPU optimization abilities"
2204 if test "$proc" = "ev68" ; then
2205 cc_check -mcpu=$proc || proc=ev67
2207 if test "$proc" = "ev67" ; then
2208 cc_check -mcpu=$proc || proc=ev6
2210 _mcpu="-mcpu=$proc"
2211 echores "$proc"
2213 test $_fast_clz = "auto" && _fast_clz=yes
2215 _optimizing="$proc"
2218 mips)
2219 arch='mips'
2220 iproc='mips'
2222 if irix ; then
2223 echocheck "CPU type"
2224 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2225 case "$(echo $proc)" in
2226 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2227 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2228 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2229 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2230 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2231 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2232 esac
2233 # gcc < 3.x does not support -mtune.
2234 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2235 _mcpu=''
2237 echores "$proc"
2240 test $_fast_clz = "auto" && _fast_clz=yes
2244 hppa)
2245 arch='pa_risc'
2246 iproc='PA-RISC'
2249 s390)
2250 arch='s390'
2251 iproc='390'
2254 s390x)
2255 arch='s390x'
2256 iproc='390x'
2259 vax)
2260 arch='vax'
2261 iproc='vax'
2264 xtensa)
2265 arch='xtensa'
2266 iproc='xtensa'
2269 generic)
2270 arch='generic'
2274 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2275 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2276 die "unsupported architecture $host_arch"
2278 esac # case "$host_arch" in
2280 if test "$_runtime_cpudetection" = yes ; then
2281 if x86 ; then
2282 test "$_cmov" != no && _cmov=yes
2283 x86_32 && _cmov=no
2284 test "$_mmx" != no && _mmx=yes
2285 test "$_3dnow" != no && _3dnow=yes
2286 test "$_3dnowext" != no && _3dnowext=yes
2287 test "$_mmxext" != no && _mmxext=yes
2288 test "$_sse" != no && _sse=yes
2289 test "$_sse2" != no && _sse2=yes
2290 test "$_ssse3" != no && _ssse3=yes
2291 test "$_mtrr" != no && _mtrr=yes
2293 if ppc; then
2294 _altivec=yes
2299 # endian testing
2300 echocheck "byte order"
2301 if test "$_big_endian" = auto ; then
2302 cat > $TMPC <<EOF
2303 short ascii_name[] = { (('M'<<8)|'P'),(('l'<<8)|'a'),(('y'<<8)|'e'),(('r'<<8)|'B'),
2304 (('i'<<8)|'g'),(('E'<<8)|'n'),(('d'<<8)|'i'),(('a'<<8)|'n'),0};
2305 int main(void) { return (int)ascii_name; }
2307 if cc_check ; then
2308 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2309 _big_endian=yes
2310 else
2311 _big_endian=no
2313 else
2314 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2317 if test "$_big_endian" = yes ; then
2318 _byte_order='big-endian'
2319 def_words_endian='#define WORDS_BIGENDIAN 1'
2320 def_bigendian='#define HAVE_BIGENDIAN 1'
2321 else
2322 _byte_order='little-endian'
2323 def_words_endian='#undef WORDS_BIGENDIAN'
2324 def_bigendian='#define HAVE_BIGENDIAN 0'
2326 echores "$_byte_order"
2329 echocheck "extern symbol prefix"
2330 cat > $TMPC << EOF
2331 int ff_extern;
2333 cc_check -c || die "Symbol mangling check failed."
2334 sym=$($_nm -P -g $TMPEXE)
2335 extern_prefix=${sym%%ff_extern*}
2336 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2337 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2338 echores $extern_prefix
2341 echocheck "assembler support of -pipe option"
2342 cat > $TMPC << EOF
2343 int main(void) { return 0; }
2345 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2346 cc_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2349 echocheck "compiler support of named assembler arguments"
2350 _named_asm_args=yes
2351 def_named_asm_args="#define NAMED_ASM_ARGS 1"
2352 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2353 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2354 _named_asm_args=no
2355 def_named_asm_args="#undef NAMED_ASM_ARGS"
2357 echores $_named_asm_args
2360 if darwin && test "$cc_vendor" = "gnu" ; then
2361 echocheck "GCC support of -mstackrealign"
2362 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2363 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2364 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2365 # wrong code with this flag, but this can be worked around by adding
2366 # -fno-unit-at-a-time as described in the blog post at
2367 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2368 cat > $TMPC << EOF
2369 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2370 int main(void) { return foo3(1,2,3) == 3 ? 0 : 1; }
2372 cc_check -O2 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2373 test -z "$cflags_stackrealign" && cc_check -O2 -mstackrealign -fno-unit-at-a-time \
2374 && tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2375 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2376 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2379 # Checking for CFLAGS
2380 _install_strip="-s"
2381 if test "$_profile" != "" || test "$_debug" != "" ; then
2382 CFLAGS="-W -Wall -O2 $_march $_mcpu $_pipe $_debug $_profile"
2383 _install_strip=
2384 elif test -z "$CFLAGS" ; then
2385 if test "$cc_vendor" = "intel" ; then
2386 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer -wd167 -wd556 -wd144"
2387 elif test "$cc_vendor" = "sun" ; then
2388 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2389 elif test "$cc_vendor" != "gnu" ; then
2390 CFLAGS="-O2 $_march $_mcpu $_pipe"
2391 else
2392 CFLAGS="-Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2393 extra_ldflags="$extra_ldflags -ffast-math"
2395 else
2396 _warn_CFLAGS=yes
2399 cat > $TMPC << EOF
2400 int main(void) { return 0; }
2402 if test "$cc_vendor" = "gnu" ; then
2403 cc_check -std=gnu99 && CFLAGS="-std=gnu99 $CFLAGS"
2404 cc_check -Wno-pointer-sign && CFLAGS="-Wno-pointer-sign $CFLAGS"
2405 cc_check -Wdisabled-optimization && CFLAGS="-Wdisabled-optimization $CFLAGS"
2406 cc_check -Wundef && CFLAGS="-Wundef $CFLAGS"
2407 cc_check -Wmissing-prototypes && CFLAGS="-Wmissing-prototypes $CFLAGS"
2408 cc_check -Wstrict-prototypes && CFLAGS="-Wstrict-prototypes $CFLAGS"
2409 else
2410 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2413 cc_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2414 cc_check -MD -MP && CFLAGS="-MD -MP $CFLAGS"
2417 if test -n "$LDFLAGS" ; then
2418 extra_ldflags="$extra_ldflags $LDFLAGS"
2419 _warn_CFLAGS=yes
2420 elif test "$cc_vendor" = "intel" ; then
2421 extra_ldflags="$extra_ldflags -i-static"
2423 if test -n "$CPPFLAGS" ; then
2424 extra_cflags="$extra_cflags $CPPFLAGS"
2425 _warn_CFLAGS=yes
2430 if x86_32 ; then
2431 # Checking assembler (_as) compatibility...
2432 # Added workaround for older as that reads from stdin by default - atmos
2433 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2434 echocheck "assembler ($_as $as_version)"
2436 _pref_as_version='2.9.1'
2437 echo 'nop' > $TMPS
2438 if test "$_mmx" = yes ; then
2439 echo 'emms' >> $TMPS
2441 if test "$_3dnow" = yes ; then
2442 _pref_as_version='2.10.1'
2443 echo 'femms' >> $TMPS
2445 if test "$_3dnowext" = yes ; then
2446 _pref_as_version='2.10.1'
2447 echo 'pswapd %mm0, %mm0' >> $TMPS
2449 if test "$_mmxext" = yes ; then
2450 _pref_as_version='2.10.1'
2451 echo 'movntq %mm0, (%eax)' >> $TMPS
2453 if test "$_sse" = yes ; then
2454 _pref_as_version='2.10.1'
2455 echo 'xorps %xmm0, %xmm0' >> $TMPS
2457 #if test "$_sse2" = yes ; then
2458 # _pref_as_version='2.11'
2459 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2461 if test "$_cmov" = yes ; then
2462 _pref_as_version='2.10.1'
2463 echo 'cmovb %eax, %ebx' >> $TMPS
2465 if test "$_ssse3" = yes ; then
2466 _pref_as_version='2.16.92'
2467 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2469 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2471 if test "$as_verc_fail" != yes ; then
2472 echores "ok"
2473 else
2474 res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2475 echores "failed"
2476 die "obsolete binutils version"
2479 fi #if x86_32
2481 echocheck ".align is a power of two"
2482 if test "$_asmalign_pot" = auto ; then
2483 _asmalign_pot=no
2484 cat > $TMPC << EOF
2485 int main(void) { __asm__ (".align 3"); return 0; }
2487 cc_check && _asmalign_pot=yes
2489 if test "$_asmalign_pot" = "yes" ; then
2490 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2491 else
2492 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2494 echores $_asmalign_pot
2496 if x86 ; then
2497 echocheck "10 assembler operands"
2498 ten_operands=no
2499 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2500 cat > $TMPC << EOF
2501 int main(void) {
2502 int x=0;
2503 __asm__ volatile(
2505 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2507 return 0;
2510 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2511 echores $ten_operands
2513 echocheck "ebx availability"
2514 ebx_available=no
2515 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2516 cat > $TMPC << EOF
2517 int main(void) {
2518 int x;
2519 __asm__ volatile(
2520 "xor %0, %0"
2521 :"=b"(x)
2522 // just adding ebx to clobber list seems unreliable with some
2523 // compilers, e.g. Haiku's gcc 2.95
2525 // and the above check does not work for OSX 64 bit...
2526 __asm__ volatile("":::"%ebx");
2527 return 0;
2530 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2531 echores $ebx_available
2533 echocheck "PIC"
2534 pic=no
2535 cat > $TMPC << EOF
2536 int main(void) {
2537 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2538 #error PIC not enabled
2539 #endif
2540 return 0;
2543 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2544 echores $pic
2546 echocheck "yasm"
2547 if test -z "$YASMFLAGS" ; then
2548 if darwin ; then
2549 x86_64 && objformat="macho64" || objformat="macho"
2550 elif win32 ; then
2551 objformat="win32"
2552 else
2553 objformat="elf"
2555 # currently tested for Linux x86, x86_64
2556 YASMFLAGS="-f $objformat"
2557 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2558 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2559 case "$objformat" in
2560 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2561 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2562 esac
2563 else
2564 _warn_CFLAGS=yes
2567 echo "pabsw xmm0, xmm0" > $TMPS
2568 yasm_check || _yasm=""
2569 if test $_yasm ; then
2570 def_yasm='#define HAVE_YASM 1'
2571 have_yasm="yes"
2572 echores "$_yasm"
2573 else
2574 def_yasm='#define HAVE_YASM 0'
2575 have_yasm="no"
2576 echores "no"
2579 echocheck "bswap"
2580 def_bswap='#define HAVE_BSWAP 0'
2581 echo 'bswap %eax' > $TMPS
2582 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2583 echores "$bswap"
2584 fi #if x86
2587 #FIXME: This should happen before the check for CFLAGS..
2588 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2589 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2591 # check if AltiVec is supported by the compiler, and how to enable it
2592 echocheck "GCC AltiVec flags"
2593 cat > $TMPC << EOF
2594 int main(void) { return 0; }
2596 if $(cc_check -maltivec -mabi=altivec) ; then
2597 _altivec_gcc_flags="-maltivec -mabi=altivec"
2598 # check if <altivec.h> should be included
2599 cat > $TMPC << EOF
2600 #include <altivec.h>
2601 int main(void) { return 0; }
2603 if $(cc_check $_altivec_gcc_flags) ; then
2604 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2605 inc_altivec_h='#include <altivec.h>'
2606 else
2607 cat > $TMPC << EOF
2608 int main(void) { return 0; }
2610 if $(cc_check -faltivec) ; then
2611 _altivec_gcc_flags="-faltivec"
2612 else
2613 _altivec=no
2614 _altivec_gcc_flags="none, AltiVec disabled"
2618 echores "$_altivec_gcc_flags"
2620 # check if the compiler supports braces for vector declarations
2621 cat > $TMPC << EOF
2622 $inc_altivec_h
2623 int main(void) { (vector int) {1}; return 0; }
2625 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2627 # Disable runtime cpudetection if we cannot generate AltiVec code or
2628 # AltiVec is disabled by the user.
2629 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2630 && _runtime_cpudetection=no
2632 # Show that we are optimizing for AltiVec (if enabled and supported).
2633 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2634 && _optimizing="$_optimizing altivec"
2636 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2637 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2640 if ppc ; then
2641 def_xform_asm='#define HAVE_XFORM_ASM 0'
2642 xform_asm=no
2643 echocheck "XFORM ASM support"
2644 cat > $TMPC << EOF
2645 int main(void) { __asm__ volatile ("lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)); return 0; }
2647 cc_check && xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2648 echores "$xform_asm"
2651 if arm ; then
2652 echocheck "ARM pld instruction"
2653 cat > $TMPC << EOF
2654 int main(void) { __asm__ volatile ("pld [r0]"); return 0; }
2656 pld=no
2657 cc_check && pld=yes
2658 echores "$pld"
2660 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2661 if test $_armv5te = "auto" ; then
2662 cat > $TMPC << EOF
2663 int main(void) { __asm__ volatile ("qadd r0, r0, r0"); return 0; }
2665 _armv5te=no
2666 cc_check && _armv5te=yes
2668 echores "$_armv5te"
2670 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2672 echocheck "ARMv6 (SIMD instructions)"
2673 if test $_armv6 = "auto" ; then
2674 cat > $TMPC << EOF
2675 int main(void) { __asm__ volatile ("sadd16 r0, r0, r0"); return 0; }
2677 _armv6=no
2678 cc_check && _armv6=yes
2680 echores "$_armv6"
2682 echocheck "ARMv6t2 (SIMD instructions)"
2683 if test $_armv6t2 = "auto" ; then
2684 cat > $TMPC << EOF
2685 int main(void) { __asm__ volatile ("movt r0, #0"); return 0; }
2687 _armv6t2=no
2688 cc_check && _armv6t2=yes
2690 echores "$_armv6"
2692 echocheck "ARM VFP"
2693 if test $_armvfp = "auto" ; then
2694 cat > $TMPC << EOF
2695 int main(void) { __asm__ volatile ("fadds s0, s0, s0"); return 0; }
2697 _armvfp=no
2698 cc_check && _armvfp=yes
2700 echores "$_armvfp"
2702 echocheck "ARM NEON"
2703 if test $neon = "auto" ; then
2704 cat > $TMPC << EOF
2705 int main(void) { __asm__ volatile ("vadd.i16 q0, q0, q0"); return 0; }
2707 neon=no
2708 cc_check && neon=yes
2710 echores "$neon"
2712 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2713 if test $_iwmmxt = "auto" ; then
2714 cat > $TMPC << EOF
2715 int main(void) { __asm__ volatile ("wunpckelub wr6, wr4"); return 0; }
2717 _iwmmxt=no
2718 cc_check && _iwmmxt=yes
2720 echores "$_iwmmxt"
2723 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'
2724 test "$_altivec" = yes && cpuexts="ALTIVEC $cpuexts"
2725 test "$_mmx" = yes && cpuexts="MMX $cpuexts"
2726 test "$_mmxext" = yes && cpuexts="MMX2 $cpuexts"
2727 test "$_3dnow" = yes && cpuexts="AMD3DNOW $cpuexts"
2728 test "$_3dnowext" = yes && cpuexts="AMD3DNOWEXT $cpuexts"
2729 test "$_sse" = yes && cpuexts="SSE $cpuexts"
2730 test "$_sse2" = yes && cpuexts="SSE2 $cpuexts"
2731 test "$_ssse3" = yes && cpuexts="SSSE3 $cpuexts"
2732 test "$_cmov" = yes && cpuexts="CMOV $cpuexts"
2733 test "$_fast_cmov" = yes && cpuexts="FAST_CMOV $cpuexts"
2734 test "$_fast_clz" = yes && cpuexts="FAST_CLZ $cpuexts"
2735 test "$pld" = yes && cpuexts="PLD $cpuexts"
2736 test "$_armv5te" = yes && cpuexts="ARMV5TE $cpuexts"
2737 test "$_armv6" = yes && cpuexts="ARMV6 $cpuexts"
2738 test "$_armv6t2" = yes && cpuexts="ARMV6T2 $cpuexts"
2739 test "$_armvfp" = yes && cpuexts="ARMVFP $cpuexts"
2740 test "$neon" = yes && cpuexts="NEON $cpuexts"
2741 test "$_iwmmxt" = yes && cpuexts="IWMMXT $cpuexts"
2742 test "$_vis" = yes && cpuexts="VIS $cpuexts"
2743 test "$_mvi" = yes && cpuexts="MVI $cpuexts"
2745 # Checking kernel version...
2746 if x86_32 && linux ; then
2747 _k_verc_problem=no
2748 kernel_version=$(uname -r 2>&1)
2749 echocheck "$system_name kernel version"
2750 case "$kernel_version" in
2751 '') kernel_version="?.??"; _k_verc_fail=yes;;
2752 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2753 _k_verc_problem=yes;;
2754 esac
2755 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2756 _k_verc_fail=yes
2758 if test "$_k_verc_fail" ; then
2759 echores "$kernel_version, fail"
2760 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2761 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2762 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2763 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2764 echo "2.2.x you must upgrade it to get SSE support!"
2765 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2766 else
2767 echores "$kernel_version, ok"
2771 ######################
2772 # MAIN TESTS GO HERE #
2773 ######################
2776 echocheck "-lposix"
2777 cat > $TMPC <<EOF
2778 int main(void) { return 0; }
2780 if cc_check -lposix ; then
2781 extra_ldflags="$extra_ldflags -lposix"
2782 echores "yes"
2783 else
2784 echores "no"
2787 echocheck "-lm"
2788 cat > $TMPC <<EOF
2789 int main(void) { return 0; }
2791 if cc_check -lm ; then
2792 _ld_lm="-lm"
2793 echores "yes"
2794 else
2795 _ld_lm=""
2796 echores "no"
2800 echocheck "langinfo"
2801 if test "$_langinfo" = auto ; then
2802 cat > $TMPC <<EOF
2803 #include <langinfo.h>
2804 int main(void) { nl_langinfo(CODESET); return 0; }
2806 _langinfo=no
2807 cc_check && _langinfo=yes
2809 if test "$_langinfo" = yes ; then
2810 def_langinfo='#define HAVE_LANGINFO 1'
2811 else
2812 def_langinfo='#undef HAVE_LANGINFO'
2814 echores "$_langinfo"
2817 echocheck "translation support"
2818 if test "$_translation" = yes; then
2819 def_translation="#define CONFIG_TRANSLATION 1"
2820 else
2821 def_translation="#undef CONFIG_TRANSLATION"
2823 echores "$_translation"
2825 echocheck "language"
2826 # Set preferred languages, "all" uses English as main language.
2827 test -z "$language" && language=$LINGUAS
2828 test -z "$language_doc" && language_doc=$language
2829 test -z "$language_man" && language_man=$language
2830 test -z "$language_msg" && language_msg="all"
2831 language_doc=$(echo $language_doc | tr , " ")
2832 language_man=$(echo $language_man | tr , " ")
2833 language_msg=$(echo $language_msg | tr , " ")
2835 test "$language_doc" = "all" && language_doc=$doc_lang_all
2836 test "$language_man" = "all" && language_man=$man_lang_all
2837 test "$language_msg" = "all" && language_msg=$msg_lang_all
2839 if test "$_translation" != yes ; then
2840 language_msg=""
2843 # Prune non-existing translations from language lists.
2844 # Set message translation to the first available language.
2845 # Fall back on English.
2846 for lang in $language_doc ; do
2847 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2848 done
2849 language_doc=$tmp_language_doc
2850 test -z "$language_doc" && language_doc=en
2852 for lang in $language_man ; do
2853 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2854 done
2855 language_man=$tmp_language_man
2856 test -z "$language_man" && language_man=en
2858 for lang in $language_msg ; do
2859 test -f po/$lang.po && tmp_language_msg="$tmp_language_msg $lang"
2860 done
2861 language_msg=$tmp_language_msg
2863 echores "messages (en+): $language_msg - man pages: $language_man - documentation: $language_doc"
2866 echocheck "enable sighandler"
2867 if test "$_sighandler" = yes ; then
2868 def_sighandler='#define CONFIG_SIGHANDLER 1'
2869 else
2870 def_sighandler='#undef CONFIG_SIGHANDLER'
2872 echores "$_sighandler"
2874 echocheck "runtime cpudetection"
2875 if test "$_runtime_cpudetection" = yes ; then
2876 _optimizing="Runtime CPU-Detection enabled"
2877 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2878 else
2879 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2881 echores "$_runtime_cpudetection"
2884 echocheck "restrict keyword"
2885 for restrict_keyword in restrict __restrict __restrict__ ; do
2886 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2887 if cc_check; then
2888 def_restrict_keyword=$restrict_keyword
2889 break;
2891 done
2892 if [ -n "$def_restrict_keyword" ]; then
2893 echores "$def_restrict_keyword"
2894 else
2895 echores "none"
2897 # Avoid infinite recursion loop ("#define restrict restrict")
2898 if [ "$def_restrict_keyword" != "restrict" ]; then
2899 def_restrict_keyword="#define restrict $def_restrict_keyword"
2900 else
2901 def_restrict_keyword=""
2905 echocheck "__builtin_expect"
2906 # GCC branch prediction hint
2907 cat > $TMPC << EOF
2908 int foo(int a) {
2909 a = __builtin_expect(a, 10);
2910 return a == 10 ? 0 : 1;
2912 int main(void) { return foo(10) && foo(0); }
2914 _builtin_expect=no
2915 cc_check && _builtin_expect=yes
2916 if test "$_builtin_expect" = yes ; then
2917 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2918 else
2919 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2921 echores "$_builtin_expect"
2924 echocheck "kstat"
2925 cat > $TMPC << EOF
2926 #include <kstat.h>
2927 int main(void) { (void) kstat_open(); (void) kstat_close(0); return 0; }
2929 _kstat=no
2930 cc_check -lkstat && _kstat=yes
2931 if test "$_kstat" = yes ; then
2932 def_kstat="#define HAVE_LIBKSTAT 1"
2933 extra_ldflags="$extra_ldflags -lkstat"
2934 else
2935 def_kstat="#undef HAVE_LIBKSTAT"
2937 echores "$_kstat"
2940 echocheck "posix4"
2941 # required for nanosleep on some systems
2942 cat > $TMPC << EOF
2943 #include <time.h>
2944 int main(void) { (void) nanosleep(0, 0); return 0; }
2946 _posix4=no
2947 cc_check -lposix4 && _posix4=yes
2948 if test "$_posix4" = yes ; then
2949 extra_ldflags="$extra_ldflags -lposix4"
2951 echores "$_posix4"
2953 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
2954 echocheck $func
2955 cat > $TMPC << EOF
2956 #include <math.h>
2957 int main(void) { long (*foo)(float); foo = $func; (void)(*foo)(0.0); return 0; }
2959 eval _$func=no
2960 cc_check -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2961 if eval test "x\$_$func" = "xyes"; then
2962 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2963 echores yes
2964 else
2965 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
2966 echores no
2968 done
2971 echocheck "mkstemp"
2972 cat > $TMPC << EOF
2973 #include <stdlib.h>
2974 int main(void) { char a; mkstemp(&a); return 0; }
2976 _mkstemp=no
2977 cc_check && _mkstemp=yes
2978 if test "$_mkstemp" = yes ; then
2979 def_mkstemp='#define HAVE_MKSTEMP 1'
2980 else
2981 def_mkstemp='#undef HAVE_MKSTEMP'
2983 echores "$_mkstemp"
2986 echocheck "nanosleep"
2987 # also check for nanosleep
2988 cat > $TMPC << EOF
2989 #include <time.h>
2990 int main(void) { (void) nanosleep(0, 0); return 0; }
2992 _nanosleep=no
2993 cc_check && _nanosleep=yes
2994 if test "$_nanosleep" = yes ; then
2995 def_nanosleep='#define HAVE_NANOSLEEP 1'
2996 else
2997 def_nanosleep='#undef HAVE_NANOSLEEP'
2999 echores "$_nanosleep"
3002 echocheck "socklib"
3003 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
3004 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
3005 cat > $TMPC << EOF
3006 #include <netdb.h>
3007 #include <sys/socket.h>
3008 int main(void) { (void) gethostbyname(0); (void) socket(AF_INET, SOCK_STREAM, 0); return 0; }
3010 _socklib=no
3011 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
3012 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
3013 done
3014 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
3015 if test $_winsock2_h = auto ; then
3016 _winsock2_h=no
3017 cat > $TMPC << EOF
3018 #include <winsock2.h>
3019 int main(void) { (void) gethostbyname(0); return 0; }
3021 cc_check -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
3023 test "$_ld_sock" && res_comment="using $_ld_sock"
3024 echores "$_socklib"
3027 if test $_winsock2_h = yes ; then
3028 _ld_sock="-lws2_32"
3029 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
3030 else
3031 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
3035 echocheck "arpa/inet.h"
3036 arpa_inet_h=no
3037 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
3038 cat > $TMPC << EOF
3039 #include <arpa/inet.h>
3040 int main(void) { return 0; }
3042 cc_check && arpa_inet_h=yes && def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
3043 echores "$arpa_inet_h"
3046 echocheck "inet_pton()"
3047 def_inet_pton='#define HAVE_INET_PTON 0'
3048 inet_pton=no
3049 cat > $TMPC << EOF
3050 #include <sys/types.h>
3051 #include <sys/socket.h>
3052 #include <arpa/inet.h>
3053 int main(void) { (void) inet_pton(0, 0, 0); return 0; }
3055 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3056 cc_check $_ld_tmp && inet_pton=yes && break
3057 done
3058 if test $inet_pton = yes ; then
3059 test "$_ld_tmp" && res_comment="using $_ld_tmp"
3060 def_inet_pton='#define HAVE_INET_PTON 1'
3062 echores "$inet_pton"
3065 echocheck "inet_aton()"
3066 def_inet_aton='#define HAVE_INET_ATON 0'
3067 inet_aton=no
3068 cat > $TMPC << EOF
3069 #include <sys/types.h>
3070 #include <sys/socket.h>
3071 #include <arpa/inet.h>
3072 int main(void) { (void) inet_aton(0, 0); return 0; }
3074 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3075 cc_check $_ld_tmp && inet_aton=yes && break
3076 done
3077 if test $inet_aton = yes ; then
3078 test "$_ld_tmp" && res_comment="using $_ld_tmp"
3079 def_inet_aton='#define HAVE_INET_ATON 1'
3081 echores "$inet_aton"
3084 echocheck "socklen_t"
3085 _socklen_t=no
3086 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
3087 cat > $TMPC << EOF
3088 #include <$header>
3089 int main(void) { socklen_t v = 0; return v; }
3091 cc_check && _socklen_t=yes && break
3092 done
3093 if test "$_socklen_t" = yes ; then
3094 def_socklen_t='#define HAVE_SOCKLEN_T 1'
3095 else
3096 def_socklen_t='#define HAVE_SOCKLEN_T 0'
3098 echores "$_socklen_t"
3101 echocheck "closesocket()"
3102 _closesocket=no
3103 cat > $TMPC << EOF
3104 #include <winsock2.h>
3105 int main(void) { closesocket(~0); return 0; }
3107 cc_check $_ld_sock && _closesocket=yes
3108 if test "$_closesocket" = yes ; then
3109 def_closesocket='#define HAVE_CLOSESOCKET 1'
3110 else
3111 def_closesocket='#define HAVE_CLOSESOCKET 0'
3113 echores "$_closesocket"
3116 echocheck "network"
3117 test $_winsock2_h = no && test $inet_pton = no &&
3118 test $inet_aton = no && _network=no
3119 if test "$_network" = yes ; then
3120 def_network='#define CONFIG_NETWORK 1'
3121 extra_ldflags="$extra_ldflags $_ld_sock"
3122 inputmodules="network $inputmodules"
3123 else
3124 noinputmodules="network $noinputmodules"
3125 def_network='#undef CONFIG_NETWORK'
3126 _ftp=no
3128 echores "$_network"
3131 echocheck "inet6"
3132 if test "$_inet6" = auto ; then
3133 cat > $TMPC << EOF
3134 #include <sys/types.h>
3135 #if !defined(_WIN32) || defined(__CYGWIN__)
3136 #include <sys/socket.h>
3137 #include <netinet/in.h>
3138 #else
3139 #include <ws2tcpip.h>
3140 #endif
3141 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3143 _inet6=no
3144 if cc_check $_ld_sock ; then
3145 _inet6=yes
3148 if test "$_inet6" = yes ; then
3149 def_inet6='#define HAVE_AF_INET6 1'
3150 else
3151 def_inet6='#undef HAVE_AF_INET6'
3153 echores "$_inet6"
3156 echocheck "gethostbyname2"
3157 if test "$_gethostbyname2" = auto ; then
3158 cat > $TMPC << EOF
3159 #include <sys/types.h>
3160 #include <sys/socket.h>
3161 #include <netdb.h>
3162 int main(void) { gethostbyname2("", AF_INET); return 0; }
3164 _gethostbyname2=no
3165 if cc_check ; then
3166 _gethostbyname2=yes
3169 if test "$_gethostbyname2" = yes ; then
3170 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3171 else
3172 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3174 echores "$_gethostbyname2"
3177 echocheck "inttypes.h (required)"
3178 cat > $TMPC << EOF
3179 #include <inttypes.h>
3180 int main(void) { return 0; }
3182 _inttypes=no
3183 cc_check && _inttypes=yes
3184 echores "$_inttypes"
3186 if test "$_inttypes" = no ; then
3187 echocheck "bitypes.h (inttypes.h predecessor)"
3188 cat > $TMPC << EOF
3189 #include <sys/bitypes.h>
3190 int main(void) { return 0; }
3192 cc_check && _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 cat > $TMPC << EOF
3226 #include <malloc.h>
3227 int main(void) { (void) malloc(0); return 0; }
3229 _malloc=no
3230 cc_check && _malloc=yes
3231 if test "$_malloc" = yes ; then
3232 def_malloc_h='#define HAVE_MALLOC_H 1'
3233 else
3234 def_malloc_h='#define HAVE_MALLOC_H 0'
3236 echores "$_malloc"
3239 echocheck "memalign()"
3240 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3241 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3242 cat > $TMPC << EOF
3243 #include <malloc.h>
3244 int main(void) { (void) memalign(64, sizeof(char)); return 0; }
3246 _memalign=no
3247 cc_check && _memalign=yes
3248 if test "$_memalign" = yes ; then
3249 def_memalign='#define HAVE_MEMALIGN 1'
3250 else
3251 def_memalign='#define HAVE_MEMALIGN 0'
3252 def_map_memalign='#define memalign(a,b) malloc(b)'
3253 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3255 echores "$_memalign"
3258 echocheck "posix_memalign()"
3259 posix_memalign=no
3260 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3261 cat > $TMPC << EOF
3262 #define _XOPEN_SOURCE 600
3263 #include <stdlib.h>
3264 int main(void) { posix_memalign(NULL, 0, 0); }
3266 cc_check && posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3267 echores "$posix_memalign"
3270 echocheck "alloca.h"
3271 cat > $TMPC << EOF
3272 #include <alloca.h>
3273 int main(void) { (void) alloca(0); return 0; }
3275 _alloca=no
3276 cc_check && _alloca=yes
3277 if cc_check ; then
3278 def_alloca_h='#define HAVE_ALLOCA_H 1'
3279 else
3280 def_alloca_h='#undef HAVE_ALLOCA_H'
3282 echores "$_alloca"
3285 echocheck "fastmemcpy"
3286 if test "$_fastmemcpy" = yes ; then
3287 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3288 else
3289 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3291 echores "$_fastmemcpy"
3294 echocheck "mman.h"
3295 cat > $TMPC << EOF
3296 #include <sys/types.h>
3297 #include <sys/mman.h>
3298 int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; }
3300 _mman=no
3301 cc_check && _mman=yes
3302 if test "$_mman" = yes ; then
3303 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3304 else
3305 def_mman_h='#undef HAVE_SYS_MMAN_H'
3306 os2 && _need_mmap=yes
3308 echores "$_mman"
3310 cat > $TMPC << EOF
3311 #include <sys/types.h>
3312 #include <sys/mman.h>
3313 int main(void) { void *p = MAP_FAILED; return 0; }
3315 _mman_has_map_failed=no
3316 cc_check && _mman_has_map_failed=yes
3317 if test "$_mman_has_map_failed" = yes ; then
3318 def_mman_has_map_failed=''
3319 else
3320 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3323 echocheck "dynamic loader"
3324 cat > $TMPC << EOF
3325 #include <stddef.h>
3326 #include <dlfcn.h>
3327 int main(void) { dlopen("", 0); dlclose(NULL); dlsym(NULL, ""); return 0; }
3329 _dl=no
3330 for _ld_tmp in "" "-ldl" ; do
3331 cc_check $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3332 done
3333 if test "$_dl" = yes ; then
3334 def_dl='#define HAVE_LIBDL 1'
3335 else
3336 def_dl='#undef HAVE_LIBDL'
3338 echores "$_dl"
3341 echocheck "dynamic a/v plugins support"
3342 if test "$_dl" = no ; then
3343 _dynamic_plugins=no
3345 if test "$_dynamic_plugins" = yes ; then
3346 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3347 else
3348 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3350 echores "$_dynamic_plugins"
3353 def_threads='#define HAVE_THREADS 0'
3355 echocheck "pthread"
3356 if linux ; then
3357 THREAD_CFLAGS=-D_REENTRANT
3358 elif freebsd || netbsd || openbsd || bsdos ; then
3359 THREAD_CFLAGS=-D_THREAD_SAFE
3361 if test "$_pthreads" = auto ; then
3362 cat > $TMPC << EOF
3363 #include <pthread.h>
3364 void* func(void *arg) { return arg; }
3365 int main(void) { pthread_t tid; return pthread_create(&tid, 0, func, 0) == 0 ? 0 : 1; }
3367 _pthreads=no
3368 if ! hpux ; then
3369 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3370 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3371 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3372 done
3375 if test "$_pthreads" = yes ; then
3376 test $_ld_pthread && res_comment="using $_ld_pthread"
3377 def_pthreads='#define HAVE_PTHREADS 1'
3378 def_threads='#define HAVE_THREADS 1'
3379 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3380 else
3381 res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3382 def_pthreads='#undef HAVE_PTHREADS'
3383 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3384 mingw32 || _win32dll=no
3386 echores "$_pthreads"
3388 if cygwin ; then
3389 if test "$_pthreads" = yes ; then
3390 def_pthread_cache="#define PTHREAD_CACHE 1"
3391 else
3392 _stream_cache=no
3393 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3397 echocheck "w32threads"
3398 if test "$_pthreads" = yes ; then
3399 res_comment="using pthread instead"
3400 _w32threads=no
3402 if test "$_w32threads" = auto ; then
3403 _w32threads=no
3404 mingw32 && _w32threads=yes
3406 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3407 echores "$_w32threads"
3409 echocheck "rpath"
3410 netbsd &&_rpath=yes
3411 if test "$_rpath" = yes ; then
3412 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3413 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3414 done
3415 extra_ldflags=$tmp
3417 echores "$_rpath"
3419 echocheck "iconv"
3420 if test "$_iconv" = auto ; then
3421 cat > $TMPC << EOF
3422 #include <stdio.h>
3423 #include <unistd.h>
3424 #include <iconv.h>
3425 #define INBUFSIZE 1024
3426 #define OUTBUFSIZE 4096
3428 char inbuffer[INBUFSIZE];
3429 char outbuffer[OUTBUFSIZE];
3431 int main(void) {
3432 size_t numread;
3433 iconv_t icdsc;
3434 char *tocode="UTF-8";
3435 char *fromcode="cp1250";
3436 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3437 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3438 char *iptr=inbuffer;
3439 char *optr=outbuffer;
3440 size_t inleft=numread;
3441 size_t outleft=OUTBUFSIZE;
3442 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft)
3443 != (size_t)(-1)) {
3444 write(1, outbuffer, OUTBUFSIZE - outleft);
3447 if (iconv_close(icdsc) == -1)
3450 return 0;
3453 _iconv=no
3454 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3455 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3456 _iconv=yes && break
3457 done
3459 if test "$_iconv" = yes ; then
3460 def_iconv='#define CONFIG_ICONV 1'
3461 else
3462 def_iconv='#undef CONFIG_ICONV'
3464 echores "$_iconv"
3467 echocheck "soundcard.h"
3468 _soundcard_h=no
3469 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3470 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3471 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3472 cat > $TMPC << EOF
3473 #include <$_soundcard_header>
3474 int main(void) { return 0; }
3476 cc_check && _soundcard_h=yes && res_comment="$_soundcard_header" && break
3477 done
3479 if test "$_soundcard_h" = yes ; then
3480 if test $_soundcard_header = "sys/soundcard.h"; then
3481 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3482 else
3483 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3486 echores "$_soundcard_h"
3489 echocheck "sys/dvdio.h"
3490 cat > $TMPC << EOF
3491 #include <unistd.h>
3492 #include <sys/dvdio.h>
3493 int main(void) { return 0; }
3495 _dvdio=no
3496 cc_check && _dvdio=yes
3497 if test "$_dvdio" = yes ; then
3498 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3499 else
3500 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3502 echores "$_dvdio"
3505 echocheck "sys/cdio.h"
3506 cat > $TMPC << EOF
3507 #include <unistd.h>
3508 #include <sys/cdio.h>
3509 int main(void) { return 0; }
3511 _cdio=no
3512 cc_check && _cdio=yes
3513 if test "$_cdio" = yes ; then
3514 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3515 else
3516 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3518 echores "$_cdio"
3521 echocheck "linux/cdrom.h"
3522 cat > $TMPC << EOF
3523 #include <sys/types.h>
3524 #include <linux/cdrom.h>
3525 int main(void) { return 0; }
3527 _cdrom=no
3528 cc_check && _cdrom=yes
3529 if test "$_cdrom" = yes ; then
3530 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3531 else
3532 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3534 echores "$_cdrom"
3537 echocheck "dvd.h"
3538 cat > $TMPC << EOF
3539 #include <dvd.h>
3540 int main(void) { return 0; }
3542 _dvd=no
3543 cc_check && _dvd=yes
3544 if test "$_dvd" = yes ; then
3545 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3546 else
3547 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3549 echores "$_dvd"
3552 if bsdos; then
3553 echocheck "BSDI dvd.h"
3554 cat > $TMPC << EOF
3555 #include <dvd.h>
3556 int main(void) { return 0; }
3558 _bsdi_dvd=no
3559 cc_check && _bsdi_dvd=yes
3560 if test "$_bsdi_dvd" = yes ; then
3561 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3562 else
3563 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3565 echores "$_bsdi_dvd"
3566 fi #if bsdos
3569 if hpux; then
3570 # also used by AIX, but AIX does not support VCD and/or libdvdread
3571 echocheck "HP-UX SCSI header"
3572 cat > $TMPC << EOF
3573 #include <sys/scsi.h>
3574 int main(void) { return 0; }
3576 _hpux_scsi_h=no
3577 cc_check && _hpux_scsi_h=yes
3578 if test "$_hpux_scsi_h" = yes ; then
3579 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3580 else
3581 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3583 echores "$_hpux_scsi_h"
3584 fi #if hpux
3587 if sunos; then
3588 echocheck "userspace SCSI headers (Solaris)"
3589 cat > $TMPC << EOF
3590 #include <unistd.h>
3591 #include <stropts.h>
3592 #include <sys/scsi/scsi_types.h>
3593 #include <sys/scsi/impl/uscsi.h>
3594 int main(void) { return 0; }
3596 _sol_scsi_h=no
3597 cc_check && _sol_scsi_h=yes
3598 if test "$_sol_scsi_h" = yes ; then
3599 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3600 else
3601 def_sol_scsi_h='#undef SOLARIS_USCSI'
3603 echores "$_sol_scsi_h"
3604 fi #if sunos
3607 echocheck "termcap"
3608 if test "$_termcap" = auto ; then
3609 cat > $TMPC <<EOF
3610 #include <stddef.h>
3611 #include <term.h>
3612 int main(void) { tgetent(NULL, NULL); return 0; }
3614 _termcap=no
3615 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3616 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
3617 && _termcap=yes && break
3618 done
3620 if test "$_termcap" = yes ; then
3621 def_termcap='#define HAVE_TERMCAP 1'
3622 test $_ld_tmp && res_comment="using $_ld_tmp"
3623 else
3624 def_termcap='#undef HAVE_TERMCAP'
3626 echores "$_termcap"
3629 echocheck "termios"
3630 def_termios='#undef HAVE_TERMIOS'
3631 def_termios_h='#undef HAVE_TERMIOS_H'
3632 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3633 if test "$_termios" = auto ; then
3634 _termios=no
3635 for _termios_header in "termios.h" "sys/termios.h"; do
3636 cat > $TMPC <<EOF
3637 #include <$_termios_header>
3638 int main(void) { return 0; }
3640 cc_check && _termios=yes && res_comment="using $_termios_header" && break
3641 done
3644 if test "$_termios" = yes ; then
3645 def_termios='#define HAVE_TERMIOS 1'
3646 if test "$_termios_header" = "termios.h" ; then
3647 def_termios_h='#define HAVE_TERMIOS_H 1'
3648 else
3649 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3652 echores "$_termios"
3655 echocheck "shm"
3656 if test "$_shm" = auto ; then
3657 cat > $TMPC << EOF
3658 #include <sys/types.h>
3659 #include <sys/shm.h>
3660 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3662 _shm=no
3663 cc_check && _shm=yes
3665 if test "$_shm" = yes ; then
3666 def_shm='#define HAVE_SHM 1'
3667 else
3668 def_shm='#undef HAVE_SHM'
3670 echores "$_shm"
3673 echocheck "strsep()"
3674 cat > $TMPC << EOF
3675 #include <string.h>
3676 int main(void) { char *s = "Hello, world!"; (void) strsep(&s, ","); return 0; }
3678 _strsep=no
3679 cc_check && _strsep=yes
3680 if test "$_strsep" = yes ; then
3681 def_strsep='#define HAVE_STRSEP 1'
3682 _need_strsep=no
3683 else
3684 def_strsep='#undef HAVE_STRSEP'
3685 _need_strsep=yes
3687 echores "$_strsep"
3690 echocheck "vsscanf()"
3691 cat > $TMPC << EOF
3692 #define _ISOC99_SOURCE
3693 #include <stdarg.h>
3694 #include <stdio.h>
3695 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3697 _vsscanf=no
3698 cc_check && _vsscanf=yes
3699 if test "$_vsscanf" = yes ; then
3700 def_vsscanf='#define HAVE_VSSCANF 1'
3701 _need_vsscanf=no
3702 else
3703 def_vsscanf='#undef HAVE_VSSCANF'
3704 _need_vsscanf=yes
3706 echores "$_vsscanf"
3709 echocheck "swab()"
3710 cat > $TMPC << EOF
3711 #define _XOPEN_SOURCE 600
3712 #include <unistd.h>
3713 int main(void) { swab(0, 0, 0); return 0; }
3715 _swab=no
3716 cc_check && _swab=yes
3717 if test "$_swab" = yes ; then
3718 def_swab='#define HAVE_SWAB 1'
3719 _need_swab=no
3720 else
3721 def_swab='#undef HAVE_SWAB'
3722 _need_swab=yes
3724 echores "$_swab"
3726 echocheck "POSIX select()"
3727 cat > $TMPC << EOF
3728 #include <stdio.h>
3729 #include <stdlib.h>
3730 #include <sys/types.h>
3731 #include <string.h>
3732 #include <sys/time.h>
3733 #include <unistd.h>
3734 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
3736 _posix_select=no
3737 def_posix_select='#undef HAVE_POSIX_SELECT'
3738 #select() of kLIBC (OS/2) supports socket only
3739 ! os2 && cc_check && _posix_select=yes \
3740 && def_posix_select='#define HAVE_POSIX_SELECT 1'
3741 echores "$_posix_select"
3744 echocheck "audio select()"
3745 if test "$_select" = no ; then
3746 def_select='#undef HAVE_AUDIO_SELECT'
3747 elif test "$_select" = yes ; then
3748 def_select='#define HAVE_AUDIO_SELECT 1'
3750 echores "$_select"
3753 echocheck "gettimeofday()"
3754 cat > $TMPC << EOF
3755 #include <stdio.h>
3756 #include <sys/time.h>
3757 int main(void) {struct timeval tv_start; gettimeofday(&tv_start, NULL); return 0; }
3759 _gettimeofday=no
3760 cc_check && _gettimeofday=yes
3761 if test "$_gettimeofday" = yes ; then
3762 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3763 _need_gettimeofday=no
3764 else
3765 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3766 _need_gettimeofday=yes
3768 echores "$_gettimeofday"
3771 echocheck "glob()"
3772 cat > $TMPC << EOF
3773 #include <stdio.h>
3774 #include <glob.h>
3775 int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
3777 _glob=no
3778 cc_check && _glob=yes
3779 if test "$_glob" = yes ; then
3780 def_glob='#define HAVE_GLOB 1'
3781 _need_glob=no
3782 else
3783 def_glob='#undef HAVE_GLOB'
3784 _need_glob=yes
3786 echores "$_glob"
3789 echocheck "setenv()"
3790 cat > $TMPC << EOF
3791 #include <stdlib.h>
3792 int main(void) { setenv("","",0); return 0; }
3794 _setenv=no
3795 cc_check && _setenv=yes
3796 if test "$_setenv" = yes ; then
3797 def_setenv='#define HAVE_SETENV 1'
3798 _need_setenv=no
3799 else
3800 def_setenv='#undef HAVE_SETENV'
3801 _need_setenv=yes
3803 echores "$_setenv"
3806 echocheck "setmode()"
3807 _setmode=no
3808 def_setmode='#define HAVE_SETMODE 0'
3809 cat > $TMPC << EOF
3810 #include <io.h>
3811 int main(void) { setmode(0, 0); return 0; }
3813 cc_check && _setmode=yes && def_setmode='#define HAVE_SETMODE 1'
3814 echores "$_setmode"
3817 if sunos; then
3818 echocheck "sysi86()"
3819 cat > $TMPC << EOF
3820 #include <sys/sysi86.h>
3821 int main(void) { sysi86(0); return 0; }
3823 _sysi86=no
3824 cc_check && _sysi86=yes
3825 if test "$_sysi86" = yes ; then
3826 def_sysi86='#define HAVE_SYSI86 1'
3827 cat > $TMPC << EOF
3828 #include <sys/sysi86.h>
3829 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
3831 cc_check && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3832 else
3833 def_sysi86='#undef HAVE_SYSI86'
3835 echores "$_sysi86"
3836 fi #if sunos
3839 echocheck "sys/sysinfo.h"
3840 cat > $TMPC << EOF
3841 #include <sys/sysinfo.h>
3842 int main(void) {
3843 struct sysinfo s_info;
3844 sysinfo(&s_info);
3845 return 0;
3848 _sys_sysinfo=no
3849 cc_check && _sys_sysinfo=yes
3850 if test "$_sys_sysinfo" = yes ; then
3851 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3852 else
3853 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3855 echores "$_sys_sysinfo"
3858 if darwin; then
3860 echocheck "Mac OS X Finder Support"
3861 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3862 if test "$_macosx_finder" = yes ; then
3863 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3864 extra_ldflags="$extra_ldflags -framework Carbon"
3866 echores "$_macosx_finder"
3868 echocheck "Mac OS X Bundle file locations"
3869 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3870 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3871 if test "$_macosx_bundle" = yes ; then
3872 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3873 extra_ldflags="$extra_ldflags -framework Carbon"
3875 echores "$_macosx_bundle"
3877 echocheck "Apple Remote"
3878 if test "$_apple_remote" = auto ; then
3879 _apple_remote=no
3880 cat > $TMPC <<EOF
3881 #include <stdio.h>
3882 #include <IOKit/IOCFPlugIn.h>
3883 int main(void) {
3884 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3885 CFMutableDictionaryRef hidMatchDictionary;
3886 IOReturn ioReturnValue;
3888 // Set up a matching dictionary to search the I/O Registry by class.
3889 // name for all HID class devices
3890 hidMatchDictionary = IOServiceMatching("AppleIRController");
3892 // Now search I/O Registry for matching devices.
3893 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3894 hidMatchDictionary, &hidObjectIterator);
3896 // If search is unsuccessful, return nonzero.
3897 if (ioReturnValue != kIOReturnSuccess ||
3898 !IOIteratorIsValid(hidObjectIterator)) {
3899 return 1;
3901 return 0;
3904 cc_check -framework IOKit && tmp_run && _apple_remote=yes
3906 if test "$_apple_remote" = yes ; then
3907 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3908 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3909 else
3910 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3912 echores "$_apple_remote"
3914 fi #if darwin
3916 if linux; then
3918 echocheck "Apple IR"
3919 if test "$_apple_ir" = auto ; then
3920 _apple_ir=no
3921 cat > $TMPC <<EOF
3922 #include <linux/types.h>
3923 #include <linux/input.h>
3924 int main(void) {
3925 struct input_event ev;
3926 struct input_id id;
3927 return 0;
3930 cc_check && _apple_ir=yes
3932 if test "$_apple_ir" = yes ; then
3933 def_apple_ir='#define CONFIG_APPLE_IR 1'
3934 else
3935 def_apple_ir='#undef CONFIG_APPLE_IR'
3937 echores "$_apple_ir"
3938 fi #if linux
3940 echocheck "pkg-config"
3941 _pkg_config=pkg-config
3942 if $($_pkg_config --version > /dev/null 2>&1); then
3943 if test "$_ld_static"; then
3944 _pkg_config="$_pkg_config --static"
3946 echores "yes"
3947 else
3948 _pkg_config=false
3949 echores "no"
3953 echocheck "Samba support (libsmbclient)"
3954 if test "$_smb" = yes; then
3955 extra_ldflags="$extra_ldflags -lsmbclient"
3957 if test "$_smb" = auto; then
3958 _smb=no
3959 cat > $TMPC << EOF
3960 #include <libsmbclient.h>
3961 int main(void) { smbc_opendir("smb://"); return 0; }
3963 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3964 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3965 _smb=yes && break
3966 done
3969 if test "$_smb" = yes; then
3970 def_smb="#define CONFIG_LIBSMBCLIENT 1"
3971 inputmodules="smb $inputmodules"
3972 else
3973 def_smb="#undef CONFIG_LIBSMBCLIENT"
3974 noinputmodules="smb $noinputmodules"
3976 echores "$_smb"
3979 #########
3980 # VIDEO #
3981 #########
3984 echocheck "tdfxfb"
3985 if test "$_tdfxfb" = yes ; then
3986 def_tdfxfb='#define CONFIG_TDFXFB 1'
3987 vomodules="tdfxfb $vomodules"
3988 else
3989 def_tdfxfb='#undef CONFIG_TDFXFB'
3990 novomodules="tdfxfb $novomodules"
3992 echores "$_tdfxfb"
3994 echocheck "s3fb"
3995 if test "$_s3fb" = yes ; then
3996 def_s3fb='#define CONFIG_S3FB 1'
3997 vomodules="s3fb $vomodules"
3998 else
3999 def_s3fb='#undef CONFIG_S3FB'
4000 novomodules="s3fb $novomodules"
4002 echores "$_s3fb"
4004 echocheck "wii"
4005 if test "$_wii" = yes ; then
4006 def_wii='#define CONFIG_WII 1'
4007 vomodules="wii $vomodules"
4008 else
4009 def_wii='#undef CONFIG_WII'
4010 novomodules="wii $novomodules"
4012 echores "$_wii"
4014 echocheck "tdfxvid"
4015 if test "$_tdfxvid" = yes ; then
4016 def_tdfxvid='#define CONFIG_TDFX_VID 1'
4017 vomodules="tdfx_vid $vomodules"
4018 else
4019 def_tdfxvid='#undef CONFIG_TDFX_VID'
4020 novomodules="tdfx_vid $novomodules"
4022 echores "$_tdfxvid"
4024 echocheck "xvr100"
4025 if test "$_xvr100" = auto ; then
4026 cat > $TMPC << EOF
4027 #include <unistd.h>
4028 #include <sys/fbio.h>
4029 #include <sys/visual_io.h>
4030 int main(void) {
4031 struct vis_identifier ident;
4032 struct fbgattr attr;
4033 ioctl(0, VIS_GETIDENTIFIER, &ident);
4034 ioctl(0, FBIOGATTR, &attr);
4035 return 0;
4038 _xvr100=no
4039 cc_check && _xvr100=yes
4041 if test "$_xvr100" = yes ; then
4042 def_xvr100='#define CONFIG_XVR100 1'
4043 vomodules="xvr100 $vomodules"
4044 else
4045 def_tdfxvid='#undef CONFIG_XVR100'
4046 novomodules="xvr100 $novomodules"
4048 echores "$_xvr100"
4050 echocheck "tga"
4051 if test "$_tga" = yes ; then
4052 def_tga='#define CONFIG_TGA 1'
4053 vomodules="tga $vomodules"
4054 else
4055 def_tga='#undef CONFIG_TGA'
4056 novomodules="tga $novomodules"
4058 echores "$_tga"
4061 echocheck "md5sum support"
4062 if test "$_md5sum" = yes; then
4063 def_md5sum="#define CONFIG_MD5SUM 1"
4064 vomodules="md5sum $vomodules"
4065 else
4066 def_md5sum="#undef CONFIG_MD5SUM"
4067 novomodules="md5sum $novomodules"
4069 echores "$_md5sum"
4072 echocheck "yuv4mpeg support"
4073 if test "$_yuv4mpeg" = yes; then
4074 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
4075 vomodules="yuv4mpeg $vomodules"
4076 else
4077 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
4078 novomodules="yuv4mpeg $novomodules"
4080 echores "$_yuv4mpeg"
4083 echocheck "bl"
4084 if test "$_bl" = yes ; then
4085 def_bl='#define CONFIG_BL 1'
4086 vomodules="bl $vomodules"
4087 else
4088 def_bl='#undef CONFIG_BL'
4089 novomodules="bl $novomodules"
4091 echores "$_bl"
4094 echocheck "DirectFB"
4095 if test "$_directfb" = auto ; then
4096 _directfb=no
4097 cat > $TMPC <<EOF
4098 #include <directfb.h>
4099 int main(void) { DirectFBInit(0, 0); return 0; }
4101 for _inc_tmp in "" -I/usr/local/include/directfb \
4102 -I/usr/include/directfb -I/usr/local/include; do
4103 cc_check $_inc_tmp -ldirectfb && _directfb=yes && \
4104 extra_cflags="$extra_cflags $_inc_tmp" && break
4105 done
4108 dfb_version() {
4109 expr $1 \* 65536 + $2 \* 256 + $3
4112 if test "$_directfb" = yes; then
4113 cat > $TMPC << EOF
4114 #include <directfb_version.h>
4116 dfb_ver = DIRECTFB_MAJOR_VERSION.DIRECTFB_MINOR_VERSION.DIRECTFB_MICRO_VERSION
4119 if $_cc -E $TMPC $extra_cflags > "$TMPEXE"; then
4120 _directfb_version=$(sed -n 's/^dfb_ver[^0-9]*\(.*\)/\1/p' "$TMPEXE" | tr -d '()')
4121 _dfb_major=$(echo $_directfb_version | cut -d . -f 1)
4122 _dfb_minor=$(echo $_directfb_version | cut -d . -f 2)
4123 _dfb_micro=$(echo $_directfb_version | cut -d . -f 3)
4124 _dfb_version=$(dfb_version $_dfb_major $_dfb_minor $_dfb_micro)
4125 if test "$_dfb_version" -ge $(dfb_version 0 9 13); then
4126 def_directfb_version="#define DIRECTFBVERSION $_dfb_version"
4127 res_comment="$_directfb_version"
4128 test "$_dfb_version" -ge $(dfb_version 0 9 15) && _dfbmga=yes
4129 else
4130 def_directfb_version='#undef DIRECTFBVERSION'
4131 _directfb=no
4132 res_comment="version >=0.9.13 required"
4134 else
4135 _directfb=no
4136 res_comment="failed to get version"
4139 echores "$_directfb"
4141 if test "$_directfb" = yes ; then
4142 def_directfb='#define CONFIG_DIRECTFB 1'
4143 vomodules="directfb $vomodules"
4144 libs_mplayer="$libs_mplayer -ldirectfb"
4145 else
4146 def_directfb='#undef CONFIG_DIRECTFB'
4147 novomodules="directfb $novomodules"
4149 if test "$_dfbmga" = yes; then
4150 vomodules="dfbmga $vomodules"
4151 def_dfbmga='#define CONFIG_DFBMGA 1'
4152 else
4153 novomodules="dfbmga $novomodules"
4154 def_dfbmga='#undef CONFIG_DFBMGA'
4158 echocheck "X11 headers presence"
4159 _x11_headers="no"
4160 res_comment="check if the dev(el) packages are installed"
4161 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
4162 if test -f "$I/X11/Xlib.h" ; then
4163 _x11_headers="yes"
4164 res_comment=""
4165 break
4167 done
4168 if test $_cross_compile = no; then
4169 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
4170 /usr/include/X11R6 /usr/openwin/include ; do
4171 if test -f "$I/X11/Xlib.h" ; then
4172 extra_cflags="$extra_cflags -I$I"
4173 _x11_headers="yes"
4174 res_comment="using $I"
4175 break
4177 done
4179 echores "$_x11_headers"
4182 echocheck "X11"
4183 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
4184 cat > $TMPC <<EOF
4185 #include <X11/Xlib.h>
4186 #include <X11/Xutil.h>
4187 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; }
4189 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
4190 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
4191 -L/usr/lib ; do
4192 if netbsd; then
4193 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
4194 else
4195 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
4197 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" \
4198 && _x11=yes && break
4199 done
4201 if test "$_x11" = yes ; then
4202 def_x11='#define CONFIG_X11 1'
4203 vomodules="x11 xover $vomodules"
4204 else
4205 _x11=no
4206 def_x11='#undef CONFIG_X11'
4207 novomodules="x11 $novomodules"
4208 res_comment="check if the dev(el) packages are installed"
4209 # disable stuff that depends on X
4210 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
4212 echores "$_x11"
4214 echocheck "Xss screensaver extensions"
4215 if test "$_xss" = auto ; then
4216 cat > $TMPC << EOF
4217 #include <X11/Xlib.h>
4218 #include <X11/extensions/scrnsaver.h>
4219 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
4221 _xss=no
4222 cc_check -lXss && _xss=yes
4224 if test "$_xss" = yes ; then
4225 def_xss='#define CONFIG_XSS 1'
4226 libs_mplayer="$libs_mplayer -lXss"
4227 else
4228 def_xss='#undef CONFIG_XSS'
4230 echores "$_xss"
4232 echocheck "DPMS"
4233 _xdpms3=no
4234 _xdpms4=no
4235 if test "$_x11" = yes ; then
4236 cat > $TMPC <<EOF
4237 #include <X11/Xmd.h>
4238 #include <X11/Xlib.h>
4239 #include <X11/Xutil.h>
4240 #include <X11/Xatom.h>
4241 #include <X11/extensions/dpms.h>
4242 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4244 cc_check -lXdpms && _xdpms3=yes
4245 cat > $TMPC <<EOF
4246 #include <X11/Xlib.h>
4247 #include <X11/extensions/dpms.h>
4248 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4250 cc_check -lXext && _xdpms4=yes
4252 if test "$_xdpms4" = yes ; then
4253 def_xdpms='#define CONFIG_XDPMS 1'
4254 res_comment="using Xdpms 4"
4255 echores "yes"
4256 elif test "$_xdpms3" = yes ; then
4257 def_xdpms='#define CONFIG_XDPMS 1'
4258 libs_mplayer="$libs_mplayer -lXdpms"
4259 res_comment="using Xdpms 3"
4260 echores "yes"
4261 else
4262 def_xdpms='#undef CONFIG_XDPMS'
4263 echores "no"
4267 echocheck "Xv"
4268 if test "$_xv" = auto ; then
4269 cat > $TMPC <<EOF
4270 #include <X11/Xlib.h>
4271 #include <X11/extensions/Xvlib.h>
4272 int main(void) {
4273 (void) XvGetPortAttribute(0, 0, 0, 0);
4274 (void) XvQueryPortAttributes(0, 0, 0);
4275 return 0; }
4277 _xv=no
4278 cc_check -lXv && _xv=yes
4281 if test "$_xv" = yes ; then
4282 def_xv='#define CONFIG_XV 1'
4283 libs_mplayer="$libs_mplayer -lXv"
4284 vomodules="xv $vomodules"
4285 else
4286 def_xv='#undef CONFIG_XV'
4287 novomodules="xv $novomodules"
4289 echores "$_xv"
4292 echocheck "XvMC"
4293 if test "$_xv" = yes && test "$_xvmc" != no ; then
4294 _xvmc=no
4295 cat > $TMPC <<EOF
4296 #include <X11/Xlib.h>
4297 #include <X11/extensions/Xvlib.h>
4298 #include <X11/extensions/XvMClib.h>
4299 int main(void) {
4300 (void) XvMCQueryExtension(0,0,0);
4301 (void) XvMCCreateContext(0,0,0,0,0,0,0);
4302 return 0; }
4304 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
4305 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
4306 done
4308 if test "$_xvmc" = yes ; then
4309 def_xvmc='#define CONFIG_XVMC 1'
4310 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
4311 vomodules="xvmc $vomodules"
4312 res_comment="using $_xvmclib"
4313 else
4314 def_xvmc='#define CONFIG_XVMC 0'
4315 novomodules="xvmc $novomodules"
4317 echores "$_xvmc"
4320 echocheck "VDPAU"
4321 if test "$_vdpau" = auto ; then
4322 _vdpau=no
4323 if test "$_dl" = yes ; then
4324 cat > $TMPC <<EOF
4325 #include <vdpau/vdpau_x11.h>
4326 int main(void) {
4327 (void) vdp_device_create_x11(0, 0, 0, 0);
4328 return VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L1; }
4330 cc_check -lvdpau && _vdpau=yes
4333 if test "$_vdpau" = yes ; then
4334 def_vdpau='#define CONFIG_VDPAU 1'
4335 libs_mplayer="$libs_mplayer -lvdpau"
4336 vomodules="vdpau $vomodules"
4337 else
4338 def_vdpau='#define CONFIG_VDPAU 0'
4339 novomodules="vdpau $novomodules"
4341 echores "$_vdpau"
4344 echocheck "Xinerama"
4345 if test "$_xinerama" = auto ; then
4346 cat > $TMPC <<EOF
4347 #include <X11/Xlib.h>
4348 #include <X11/extensions/Xinerama.h>
4349 int main(void) { (void) XineramaIsActive(0); return 0; }
4351 _xinerama=no
4352 cc_check -lXinerama && _xinerama=yes
4355 if test "$_xinerama" = yes ; then
4356 def_xinerama='#define CONFIG_XINERAMA 1'
4357 libs_mplayer="$libs_mplayer -lXinerama"
4358 else
4359 def_xinerama='#undef CONFIG_XINERAMA'
4361 echores "$_xinerama"
4364 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4365 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4366 # named 'X extensions' or something similar.
4367 # This check may be useful for future mplayer versions (to change resolution)
4368 # If you run into problems, remove '-lXxf86vm'.
4369 echocheck "Xxf86vm"
4370 if test "$_vm" = auto ; then
4371 cat > $TMPC <<EOF
4372 #include <X11/Xlib.h>
4373 #include <X11/extensions/xf86vmode.h>
4374 int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; }
4376 _vm=no
4377 cc_check -lXxf86vm && _vm=yes
4379 if test "$_vm" = yes ; then
4380 def_vm='#define CONFIG_XF86VM 1'
4381 libs_mplayer="$libs_mplayer -lXxf86vm"
4382 else
4383 def_vm='#undef CONFIG_XF86VM'
4385 echores "$_vm"
4387 # Check for the presence of special keycodes, like audio control buttons
4388 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4389 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4390 # have these new keycodes.
4391 echocheck "XF86keysym"
4392 if test "$_xf86keysym" = auto; then
4393 _xf86keysym=no
4394 cat > $TMPC <<EOF
4395 #include <X11/Xlib.h>
4396 #include <X11/XF86keysym.h>
4397 int main(void) { return XF86XK_AudioPause; }
4399 cc_check && _xf86keysym=yes
4401 if test "$_xf86keysym" = yes ; then
4402 def_xf86keysym='#define CONFIG_XF86XK 1'
4403 else
4404 def_xf86keysym='#undef CONFIG_XF86XK'
4406 echores "$_xf86keysym"
4408 echocheck "DGA"
4409 if test "$_dga2" = auto && test "$_x11" = yes ; then
4410 cat > $TMPC << EOF
4411 #include <X11/Xlib.h>
4412 #include <X11/extensions/xf86dga.h>
4413 int main(void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4415 _dga2=no
4416 cc_check -lXxf86dga && _dga2=yes
4418 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4419 cat > $TMPC << EOF
4420 #include <X11/Xlib.h>
4421 #include <X11/extensions/xf86dga.h>
4422 int main(void) { (void) XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4424 _dga1=no
4425 cc_check -lXxf86dga -lXxf86vm && _dga1=yes
4428 _dga=no
4429 def_dga='#undef CONFIG_DGA'
4430 def_dga1='#undef CONFIG_DGA1'
4431 def_dga2='#undef CONFIG_DGA2'
4432 if test "$_dga1" = yes ; then
4433 _dga=yes
4434 def_dga1='#define CONFIG_DGA1 1'
4435 res_comment="using DGA 1.0"
4436 elif test "$_dga2" = yes ; then
4437 _dga=yes
4438 def_dga2='#define CONFIG_DGA2 1'
4439 res_comment="using DGA 2.0"
4441 if test "$_dga" = yes ; then
4442 def_dga='#define CONFIG_DGA 1'
4443 libs_mplayer="$libs_mplayer -lXxf86dga"
4444 vomodules="dga $vomodules"
4445 else
4446 novomodules="dga $novomodules"
4448 echores "$_dga"
4451 echocheck "3dfx"
4452 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4453 def_3dfx='#define CONFIG_3DFX 1'
4454 vomodules="3dfx $vomodules"
4455 else
4456 def_3dfx='#undef CONFIG_3DFX'
4457 novomodules="3dfx $novomodules"
4459 echores "$_3dfx"
4462 echocheck "VIDIX"
4463 def_vidix='#undef CONFIG_VIDIX'
4464 def_vidix_drv_cyberblade='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4465 _vidix_drv_cyberblade=no
4466 def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4467 _vidix_drv_ivtv=no
4468 def_vidix_drv_mach64='#undef CONFIG_VIDIX_DRV_MACH64'
4469 _vidix_drv_mach64=no
4470 def_vidix_drv_mga='#undef CONFIG_VIDIX_DRV_MGA'
4471 _vidix_drv_mga=no
4472 def_vidix_drv_mga_crtc2='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4473 _vidix_drv_mga_crtc2=no
4474 def_vidix_drv_nvidia='#undef CONFIG_VIDIX_DRV_NVIDIA'
4475 _vidix_drv_nvidia=no
4476 def_vidix_drv_pm2='#undef CONFIG_VIDIX_DRV_PM2'
4477 _vidix_drv_pm2=no
4478 def_vidix_drv_pm3='#undef CONFIG_VIDIX_DRV_PM3'
4479 _vidix_drv_pm3=no
4480 def_vidix_drv_radeon='#undef CONFIG_VIDIX_DRV_RADEON'
4481 _vidix_drv_radeon=no
4482 def_vidix_drv_rage128='#undef CONFIG_VIDIX_DRV_RAGE128'
4483 _vidix_drv_rage128=no
4484 def_vidix_drv_s3='#undef CONFIG_VIDIX_DRV_S3'
4485 _vidix_drv_s3=no
4486 def_vidix_drv_sh_veu='#undef CONFIG_VIDIX_DRV_SH_VEU'
4487 _vidix_drv_sh_veu=no
4488 def_vidix_drv_sis='#undef CONFIG_VIDIX_DRV_SIS'
4489 _vidix_drv_sis=no
4490 def_vidix_drv_unichrome='#undef CONFIG_VIDIX_DRV_UNICHROME'
4491 _vidix_drv_unichrome=no
4492 if test "$_vidix" = auto ; then
4493 _vidix=no
4494 x86 && (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32) \
4495 && _vidix=yes
4496 x86_64 && ! linux && _vidix=no
4497 (ppc || alpha) && linux && _vidix=yes
4499 echores "$_vidix"
4501 if test "$_vidix" = yes ; then
4502 def_vidix='#define CONFIG_VIDIX 1'
4503 vomodules="cvidix $vomodules"
4504 # FIXME: ivtv driver temporarily disabled until we have a proper test
4505 #test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4506 test "$_vidix_drivers" || _vidix_drivers="cyberblade mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4508 # some vidix drivers are architecture and os specific, discard them elsewhere
4509 x86 || _vidix_drivers=$(echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome// -e s/s3//)
4510 (test $host_arch = "sh" && linux) || _vidix_drivers=$(echo $_vidix_drivers | sed s/sh_veu//)
4512 for driver in $_vidix_drivers ; do
4513 uc_driver=$(echo $driver | tr '[a-z]' '[A-Z]')
4514 eval _vidix_drv_${driver}=yes
4515 eval def_vidix_drv_${driver}=\"\#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4516 done
4518 echocheck "VIDIX PCI device name database"
4519 echores "$_vidix_pcidb"
4520 if test "$_vidix_pcidb" = yes ; then
4521 _vidix_pcidb_val=1
4522 else
4523 _vidix_pcidb_val=0
4526 echocheck "VIDIX dhahelper support"
4527 test "$_dhahelper" = yes && cflags_dhahelper=-DCONFIG_DHAHELPER
4528 echores "$_dhahelper"
4530 echocheck "VIDIX svgalib_helper support"
4531 test "$_svgalib_helper" = yes && cflags_svgalib_helper=-DCONFIG_SVGAHELPER
4532 echores "$_svgalib_helper"
4534 else
4535 novomodules="cvidix $novomodules"
4538 if test "$_vidix" = yes && win32; then
4539 winvidix=yes
4540 vomodules="winvidix $vomodules"
4541 libs_mplayer="$libs_mplayer -lgdi32"
4542 else
4543 novomodules="winvidix $novomodules"
4545 if test "$_vidix" = yes && test "$_x11" = yes; then
4546 xvidix=yes
4547 vomodules="xvidix $vomodules"
4548 else
4549 novomodules="xvidix $novomodules"
4552 echocheck "GGI"
4553 if test "$_ggi" = auto ; then
4554 cat > $TMPC << EOF
4555 #include <ggi/ggi.h>
4556 int main(void) { ggiInit(); return 0; }
4558 _ggi=no
4559 cc_check -lggi && _ggi=yes
4561 if test "$_ggi" = yes ; then
4562 def_ggi='#define CONFIG_GGI 1'
4563 libs_mplayer="$libs_mplayer -lggi"
4564 vomodules="ggi $vomodules"
4565 else
4566 def_ggi='#undef CONFIG_GGI'
4567 novomodules="ggi $novomodules"
4569 echores "$_ggi"
4571 echocheck "GGI extension: libggiwmh"
4572 if test "$_ggiwmh" = auto ; then
4573 _ggiwmh=no
4574 cat > $TMPC << EOF
4575 #include <ggi/ggi.h>
4576 #include <ggi/wmh.h>
4577 int main(void) { ggiInit(); ggiWmhInit(); return 0; }
4579 cc_check -lggi -lggiwmh && _ggiwmh=yes
4581 # needed to get right output on obscure combination
4582 # like --disable-ggi --enable-ggiwmh
4583 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4584 def_ggiwmh='#define CONFIG_GGIWMH 1'
4585 libs_mplayer="$libs_mplayer -lggiwmh"
4586 else
4587 _ggiwmh=no
4588 def_ggiwmh='#undef CONFIG_GGIWMH'
4590 echores "$_ggiwmh"
4593 echocheck "AA"
4594 if test "$_aa" = auto ; then
4595 cat > $TMPC << EOF
4596 #include <aalib.h>
4597 extern struct aa_hardware_params aa_defparams;
4598 extern struct aa_renderparams aa_defrenderparams;
4599 int main(void) {
4600 aa_context *c;
4601 aa_renderparams *p;
4602 (void) aa_init(0, 0, 0);
4603 c = aa_autoinit(&aa_defparams);
4604 p = aa_getrenderparams();
4605 aa_autoinitkbd(c,0);
4606 return 0; }
4608 _aa=no
4609 for _ld_tmp in "-laa" ; do
4610 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4611 done
4613 if test "$_aa" = yes ; then
4614 def_aa='#define CONFIG_AA 1'
4615 if cygwin ; then
4616 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4618 vomodules="aa $vomodules"
4619 else
4620 def_aa='#undef CONFIG_AA'
4621 novomodules="aa $novomodules"
4623 echores "$_aa"
4626 echocheck "CACA"
4627 if test "$_caca" = auto ; then
4628 _caca=no
4629 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4630 cat > $TMPC << EOF
4631 #include <caca.h>
4632 #ifdef CACA_API_VERSION_1
4633 #include <caca0.h>
4634 #endif
4635 int main(void) { (void) caca_init(); return 0; }
4637 cc_check $(caca-config --libs) && _caca=yes
4640 if test "$_caca" = yes ; then
4641 def_caca='#define CONFIG_CACA 1'
4642 extra_cflags="$extra_cflags $(caca-config --cflags)"
4643 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4644 vomodules="caca $vomodules"
4645 else
4646 def_caca='#undef CONFIG_CACA'
4647 novomodules="caca $novomodules"
4649 echores "$_caca"
4652 echocheck "SVGAlib"
4653 if test "$_svga" = auto ; then
4654 cat > $TMPC << EOF
4655 #include <vga.h>
4656 int main(void) { return 0; }
4658 _svga=no
4659 cc_check -lvga $_ld_lm && _svga=yes
4661 if test "$_svga" = yes ; then
4662 def_svga='#define CONFIG_SVGALIB 1'
4663 libs_mplayer="$libs_mplayer -lvga"
4664 vomodules="svga $vomodules"
4665 else
4666 def_svga='#undef CONFIG_SVGALIB'
4667 novomodules="svga $novomodules"
4669 echores "$_svga"
4672 echocheck "FBDev"
4673 if test "$_fbdev" = auto ; then
4674 _fbdev=no
4675 linux && _fbdev=yes
4677 if test "$_fbdev" = yes ; then
4678 def_fbdev='#define CONFIG_FBDEV 1'
4679 vomodules="fbdev $vomodules"
4680 else
4681 def_fbdev='#undef CONFIG_FBDEV'
4682 novomodules="fbdev $novomodules"
4684 echores "$_fbdev"
4688 echocheck "DVB"
4689 if test "$_dvb" = auto ; then
4690 _dvb=no
4691 cat >$TMPC << EOF
4692 #include <poll.h>
4693 #include <sys/ioctl.h>
4694 #include <stdio.h>
4695 #include <time.h>
4696 #include <unistd.h>
4697 #include <linux/dvb/dmx.h>
4698 #include <linux/dvb/frontend.h>
4699 #include <linux/dvb/video.h>
4700 #include <linux/dvb/audio.h>
4701 int main(void) {return 0;}
4703 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4704 cc_check $_inc_tmp && _dvb=yes && \
4705 extra_cflags="$extra_cflags $_inc_tmp" && break
4706 done
4708 echores "$_dvb"
4709 if test "$_dvb" = yes ; then
4710 _dvbin=yes
4711 inputmodules="dvb $inputmodules"
4712 def_dvb='#define CONFIG_DVB 1'
4713 def_dvbin='#define CONFIG_DVBIN 1'
4714 aomodules="mpegpes(dvb) $aomodules"
4715 vomodules="mpegpes(dvb) $vomodules"
4716 else
4717 _dvbin=no
4718 noinputmodules="dvb $noinputmodules"
4719 def_dvb='#undef CONFIG_DVB'
4720 def_dvbin='#undef CONFIG_DVBIN '
4721 aomodules="mpegpes(file) $aomodules"
4722 vomodules="mpegpes(file) $vomodules"
4726 if darwin; then
4728 echocheck "QuickTime"
4729 if test "$quicktime" = auto ; then
4730 cat > $TMPC <<EOF
4731 #include <QuickTime/QuickTime.h>
4732 int main(void) {
4733 ImageDescription *desc;
4734 EnterMovies();
4735 ExitMovies();
4736 return 0;
4739 quicktime=no
4740 cc_check -framework QuickTime && quicktime=yes
4742 if test "$quicktime" = yes ; then
4743 extra_ldflags="$extra_ldflags -framework QuickTime"
4744 def_quicktime='#define CONFIG_QUICKTIME 1'
4745 else
4746 def_quicktime='#undef CONFIG_QUICKTIME'
4747 _quartz=no
4749 echores $quicktime
4751 echocheck "Quartz"
4752 if test "$_quartz" = auto ; then
4753 cat > $TMPC <<EOF
4754 #include <Carbon/Carbon.h>
4755 int main(void) {
4756 CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false);
4757 return 0;
4760 _quartz=no
4761 cc_check -framework Carbon && _quartz=yes
4763 if test "$_quartz" = yes ; then
4764 libs_mplayer="$libs_mplayer -framework Carbon"
4765 def_quartz='#define CONFIG_QUARTZ 1'
4766 vomodules="quartz $vomodules"
4767 else
4768 def_quartz='#undef CONFIG_QUARTZ'
4769 novomodules="quartz $novomodules"
4771 echores $_quartz
4773 echocheck "CoreVideo"
4774 if test "$_corevideo" = auto ; then
4775 cat > $TMPC <<EOF
4776 #include <Carbon/Carbon.h>
4777 #include <CoreServices/CoreServices.h>
4778 #include <OpenGL/OpenGL.h>
4779 #include <QuartzCore/CoreVideo.h>
4780 int main(void) { return 0; }
4782 _corevideo=no
4783 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4785 if test "$_corevideo" = yes ; then
4786 vomodules="corevideo $vomodules"
4787 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4788 def_corevideo='#define CONFIG_COREVIDEO 1'
4789 else
4790 novomodules="corevideo $novomodules"
4791 def_corevideo='#undef CONFIG_COREVIDEO'
4793 echores "$_corevideo"
4795 fi #if darwin
4798 echocheck "PNG support"
4799 if test "$_png" = auto ; then
4800 _png=no
4801 if irix ; then
4802 # Don't check for -lpng on irix since it has its own libpng
4803 # incompatible with the GNU libpng
4804 res_comment="disabled on irix (not GNU libpng)"
4805 else
4806 cat > $TMPC << EOF
4807 #include <png.h>
4808 #include <string.h>
4809 int main(void) {
4810 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4811 printf("libpng: %s\n", png_libpng_ver);
4812 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4815 cc_check -lpng -lz $_ld_lm && _png=yes
4818 echores "$_png"
4819 if test "$_png" = yes ; then
4820 def_png='#define CONFIG_PNG 1'
4821 extra_ldflags="$extra_ldflags -lpng -lz"
4822 else
4823 def_png='#undef CONFIG_PNG'
4826 echocheck "MNG support"
4827 if test "$_mng" = auto ; then
4828 _mng=no
4829 cat > $TMPC << EOF
4830 #include <libmng.h>
4831 int main(void) {
4832 const char * p_ver = mng_version_text();
4833 return !p_ver || p_ver[0] == 0;
4836 if cc_check -lmng -lz $_ld_lm ; then
4837 _mng=yes
4840 echores "$_mng"
4841 if test "$_mng" = yes ; then
4842 def_mng='#define CONFIG_MNG 1'
4843 extra_ldflags="$extra_ldflags -lmng -lz"
4844 else
4845 def_mng='#undef CONFIG_MNG'
4848 echocheck "JPEG support"
4849 if test "$_jpeg" = auto ; then
4850 _jpeg=no
4851 cat > $TMPC << EOF
4852 #include <stdio.h>
4853 #include <stdlib.h>
4854 #include <setjmp.h>
4855 #include <string.h>
4856 #include <jpeglib.h>
4857 int main(void) { return 0; }
4859 cc_check -ljpeg $_ld_lm && _jpeg=yes
4861 echores "$_jpeg"
4863 if test "$_jpeg" = yes ; then
4864 def_jpeg='#define CONFIG_JPEG 1'
4865 vomodules="jpeg $vomodules"
4866 extra_ldflags="$extra_ldflags -ljpeg"
4867 else
4868 def_jpeg='#undef CONFIG_JPEG'
4869 novomodules="jpeg $novomodules"
4874 echocheck "PNM support"
4875 if test "$_pnm" = yes; then
4876 def_pnm="#define CONFIG_PNM 1"
4877 vomodules="pnm $vomodules"
4878 else
4879 def_pnm="#undef CONFIG_PNM"
4880 novomodules="pnm $novomodules"
4882 echores "$_pnm"
4886 echocheck "GIF support"
4887 # This is to appease people who want to force gif support.
4888 # If it is forced to yes, then we still do checks to determine
4889 # which gif library to use.
4890 if test "$_gif" = yes ; then
4891 _force_gif=yes
4892 _gif=auto
4895 if test "$_gif" = auto ; then
4896 _gif=no
4897 cat > $TMPC << EOF
4898 #include <gif_lib.h>
4899 int main(void) { QuantizeBuffer(0, 0, 0, 0, 0, 0, 0, 0); return 0; }
4901 for _ld_gif in "-lungif" "-lgif" ; do
4902 cc_check $_ld_gif && _gif=yes && break
4903 done
4906 # If no library was found, and the user wants support forced,
4907 # then we force it on with libgif, as this is the safest
4908 # assumption IMHO. (libungif & libregif both create symbolic
4909 # links to libgif. We also assume that no x11 support is needed,
4910 # because if you are forcing this, then you _should_ know what
4911 # you are doing. [ Besides, package maintainers should never
4912 # have compiled x11 deps into libungif in the first place. ] )
4913 # </rant>
4914 # --Joey
4915 if test "$_force_gif" = yes && test "$_gif" = no ; then
4916 _gif=yes
4917 _ld_gif="-lgif"
4920 if test "$_gif" = yes ; then
4921 def_gif='#define CONFIG_GIF 1'
4922 codecmodules="gif $codecmodules"
4923 vomodules="gif89a $vomodules"
4924 res_comment="old version, some encoding functions disabled"
4925 def_gif_4='#undef CONFIG_GIF_4'
4926 extra_ldflags="$extra_ldflags $_ld_gif"
4928 cat > $TMPC << EOF
4929 #include <signal.h>
4930 #include <gif_lib.h>
4931 void catch() { exit(1); }
4932 int main(void) {
4933 signal(SIGSEGV, catch); // catch segfault
4934 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4935 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4936 return 0;
4939 if cc_check "$_ld_gif" ; then
4940 def_gif_4='#define CONFIG_GIF_4 1'
4941 res_comment=""
4943 else
4944 def_gif='#undef CONFIG_GIF'
4945 def_gif_4='#undef CONFIG_GIF_4'
4946 novomodules="gif89a $novomodules"
4947 nocodecmodules="gif $nocodecmodules"
4949 echores "$_gif"
4952 case "$_gif" in yes*)
4953 echocheck "broken giflib workaround"
4954 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
4956 cat > $TMPC << EOF
4957 #include <gif_lib.h>
4958 int main(void) {
4959 GifFileType gif;
4960 printf("UserData is at address %p\n", gif.UserData);
4961 return 0;
4964 if cc_check "$_ld_gif" ; then
4965 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
4966 echores "disabled"
4967 else
4968 echores "enabled"
4971 esac
4974 echocheck "VESA support"
4975 if test "$_vesa" = auto ; then
4976 cat > $TMPC << EOF
4977 #include <vbe.h>
4978 int main(void) { vbeVersion(); return 0; }
4980 _vesa=no
4981 cc_check -lvbe -llrmi && _vesa=yes
4983 if test "$_vesa" = yes ; then
4984 def_vesa='#define CONFIG_VESA 1'
4985 libs_mplayer="$libs_mplayer -lvbe -llrmi"
4986 vomodules="vesa $vomodules"
4987 else
4988 def_vesa='#undef CONFIG_VESA'
4989 novomodules="vesa $novomodules"
4991 echores "$_vesa"
4993 #################
4994 # VIDEO + AUDIO #
4995 #################
4998 echocheck "SDL"
4999 _inc_tmp=""
5000 _ld_tmp=""
5001 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
5002 if test -z "$_sdlconfig" ; then
5003 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
5004 _sdlconfig="sdl-config"
5005 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
5006 _sdlconfig="sdl11-config"
5007 else
5008 _sdlconfig=false
5011 if test "$_sdl" = auto || test "$_sdl" = yes ; then
5012 cat > $TMPC << EOF
5013 #ifdef CONFIG_SDL_SDL_H
5014 #include <SDL/SDL.h>
5015 #else
5016 #include <SDL.h>
5017 #endif
5018 #ifndef __APPLE__
5019 // we allow SDL hacking our main() only on OSX
5020 #undef main
5021 #endif
5022 int main(int argc, char *argv[]) {
5023 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
5024 return 0;
5027 _sdl=no
5028 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
5029 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
5030 _sdl=yes
5031 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
5032 break
5034 done
5035 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
5036 res_comment="using $_sdlconfig"
5037 if cygwin ; then
5038 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
5039 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
5040 elif mingw32 ; then
5041 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
5042 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
5043 else
5044 _inc_tmp="$($_sdlconfig --cflags)"
5045 _ld_tmp="$($_sdlconfig --libs)"
5047 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
5048 _sdl=yes
5052 if test "$_sdl" = yes ; then
5053 def_sdl='#define CONFIG_SDL 1'
5054 extra_cflags="$extra_cflags $_inc_tmp"
5055 libs_mplayer="$libs_mplayer $_ld_tmp"
5056 vomodules="sdl $vomodules"
5057 aomodules="sdl $aomodules"
5058 else
5059 def_sdl='#undef CONFIG_SDL'
5060 novomodules="sdl $novomodules"
5061 noaomodules="sdl $noaomodules"
5063 echores "$_sdl"
5066 # make sure this stays below CoreVideo to avoid issues due to namespace
5067 # conflicts between -lGL and -framework OpenGL
5068 echocheck "OpenGL"
5069 #Note: this test is run even with --enable-gl since we autodetect linker flags
5070 if (test "$_x11" = yes || test "$_sdl" = yes || win32) && test "$_gl" != no ; then
5071 cat > $TMPC << EOF
5072 #ifdef GL_WIN32
5073 #include <windows.h>
5074 #include <GL/gl.h>
5075 #elif defined(GL_SDL)
5076 #include <GL/gl.h>
5077 #ifdef CONFIG_SDL_SDL_H
5078 #include <SDL/SDL.h>
5079 #else
5080 #include <SDL.h>
5081 #endif
5082 #ifndef __APPLE__
5083 // we allow SDL hacking our main() only on OSX
5084 #undef main
5085 #endif
5086 #else
5087 #include <GL/gl.h>
5088 #include <X11/Xlib.h>
5089 #include <GL/glx.h>
5090 #endif
5091 int main(void) {
5092 #ifdef GL_WIN32
5093 HDC dc;
5094 wglCreateContext(dc);
5095 #elif defined(GL_SDL)
5096 SDL_GL_SwapBuffers();
5097 #else
5098 glXCreateContext(NULL, NULL, NULL, True);
5099 #endif
5100 glFinish();
5101 return 0;
5104 _gl=no
5105 for _ld_tmp in "" -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
5106 if cc_check $_ld_tmp $_ld_lm ; then
5107 _gl=yes
5108 _gl_x11=yes
5109 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
5110 break
5112 done
5113 if cc_check -DGL_WIN32 -lopengl32 ; then
5114 _gl=yes
5115 _gl_win32=yes
5116 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
5118 # last so it can reuse any linker etc. flags detected before
5119 if test "$_sdl" = yes ; then
5120 if cc_check -DGL_SDL ||
5121 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL ; then
5122 _gl=yes
5123 _gl_sdl=yes
5124 elif cc_check -DGL_SDL -lGL ||
5125 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL -lGL ; then
5126 _gl=yes
5127 _gl_sdl=yes
5128 libs_mplayer="$libs_mplayer -lGL"
5131 else
5132 _gl=no
5134 if test "$_gl" = yes ; then
5135 def_gl='#define CONFIG_GL 1'
5136 res_comment="backends:"
5137 if test "$_gl_win32" = yes ; then
5138 def_gl_win32='#define CONFIG_GL_WIN32 1'
5139 res_comment="$res_comment win32"
5141 if test "$_gl_x11" = yes ; then
5142 def_gl_x11='#define CONFIG_GL_X11 1'
5143 res_comment="$res_comment x11"
5145 if test "$_gl_sdl" = yes ; then
5146 def_gl_sdl='#define CONFIG_GL_SDL 1'
5147 res_comment="$res_comment sdl"
5149 vomodules="opengl $vomodules"
5150 else
5151 def_gl='#undef CONFIG_GL'
5152 def_gl_win32='#undef CONFIG_GL_WIN32'
5153 def_gl_x11='#undef CONFIG_GL_X11'
5154 def_gl_sdl='#undef CONFIG_GL_SDL'
5155 novomodules="opengl $novomodules"
5157 echores "$_gl"
5160 echocheck "MatrixView"
5161 if test "$_gl" = no ; then
5162 matrixview=no
5164 if test "$matrixview" = yes ; then
5165 vomodules="matrixview $vomodules"
5166 def_matrixview='#define CONFIG_MATRIXVIEW 1'
5167 else
5168 novomodules="matrixview $novomodules"
5169 def_matrixview='#undef CONFIG_MATRIXVIEW'
5171 echores "$matrixview"
5174 if os2 ; then
5175 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
5176 if test "$_kva" = auto; then
5177 cat > $TMPC << EOF
5178 #include <os2.h>
5179 #include <kva.h>
5180 int main( void ) { return 0; }
5182 _kva=no;
5183 cc_check -lkva && _kva=yes
5185 if test "$_kva" = yes ; then
5186 def_kva='#define CONFIG_KVA 1'
5187 libs_mplayer="$libs_mplayer -lkva"
5188 vomodules="kva $vomodules"
5189 else
5190 def_kva='#undef CONFIG_KVA'
5191 novomodules="kva $novomodules"
5193 echores "$_kva"
5194 fi #if os2
5197 if win32; then
5199 echocheck "Windows waveout"
5200 if test "$_win32waveout" = auto ; then
5201 cat > $TMPC << EOF
5202 #include <windows.h>
5203 #include <mmsystem.h>
5204 int main(void) { return 0; }
5206 _win32waveout=no
5207 cc_check -lwinmm && _win32waveout=yes
5209 if test "$_win32waveout" = yes ; then
5210 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
5211 libs_mplayer="$libs_mplayer -lwinmm"
5212 aomodules="win32 $aomodules"
5213 else
5214 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
5215 noaomodules="win32 $noaomodules"
5217 echores "$_win32waveout"
5219 echocheck "Direct3D"
5220 if test "$_direct3d" = auto ; then
5221 cat > $TMPC << EOF
5222 #include <windows.h>
5223 #include <d3d9.h>
5224 int main(void) { return 0; }
5226 _direct3d=no
5227 cc_check && _direct3d=yes
5229 if test "$_direct3d" = yes ; then
5230 def_direct3d='#define CONFIG_DIRECT3D 1'
5231 vomodules="direct3d $vomodules"
5232 else
5233 def_direct3d='#undef CONFIG_DIRECT3D'
5234 novomodules="direct3d $novomodules"
5236 echores "$_direct3d"
5238 echocheck "Directx"
5239 if test "$_directx" = auto ; then
5240 cat > $TMPC << EOF
5241 #include <windows.h>
5242 #include <ddraw.h>
5243 #include <dsound.h>
5244 int main(void) { return 0; }
5246 _directx=no
5247 cc_check -lgdi32 && _directx=yes
5249 if test "$_directx" = yes ; then
5250 def_directx='#define CONFIG_DIRECTX 1'
5251 libs_mplayer="$libs_mplayer -lgdi32"
5252 vomodules="directx $vomodules"
5253 aomodules="dsound $aomodules"
5254 else
5255 def_directx='#undef CONFIG_DIRECTX'
5256 novomodules="directx $novomodules"
5257 noaomodules="dsound $noaomodules"
5259 echores "$_directx"
5261 fi #if win32; then
5264 echocheck "DXR2"
5265 if test "$_dxr2" = auto; then
5266 _dxr2=no
5267 cat > $TMPC << EOF
5268 #include <dxr2ioctl.h>
5269 int main(void) { return 0; }
5271 for _inc_tmp in "" -I/usr/local/include/dxr2 -I/usr/include/dxr2; do
5272 cc_check $_inc_tmp && _dxr2=yes && \
5273 extra_cflags="$extra_cflags $_inc_tmp" && break
5274 done
5276 if test "$_dxr2" = yes; then
5277 def_dxr2='#define CONFIG_DXR2 1'
5278 aomodules="dxr2 $aomodules"
5279 vomodules="dxr2 $vomodules"
5280 else
5281 def_dxr2='#undef CONFIG_DXR2'
5282 noaomodules="dxr2 $noaomodules"
5283 novomodules="dxr2 $novomodules"
5285 echores "$_dxr2"
5287 echocheck "DXR3/H+"
5288 if test "$_dxr3" = auto ; then
5289 cat > $TMPC << EOF
5290 #include <linux/em8300.h>
5291 int main(void) { return 0; }
5293 _dxr3=no
5294 cc_check && _dxr3=yes
5296 if test "$_dxr3" = yes ; then
5297 def_dxr3='#define CONFIG_DXR3 1'
5298 vomodules="dxr3 $vomodules"
5299 else
5300 def_dxr3='#undef CONFIG_DXR3'
5301 novomodules="dxr3 $novomodules"
5303 echores "$_dxr3"
5306 echocheck "IVTV TV-Out (pre linux-2.6.24)"
5307 if test "$_ivtv" = auto ; then
5308 cat > $TMPC << EOF
5309 #include <stdlib.h>
5310 #include <inttypes.h>
5311 #include <linux/types.h>
5312 #include <linux/videodev2.h>
5313 #include <linux/ivtv.h>
5314 #include <sys/ioctl.h>
5315 int main(void) {
5316 struct ivtv_cfg_stop_decode sd;
5317 struct ivtv_cfg_start_decode sd1;
5318 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
5319 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
5320 return 0; }
5322 _ivtv=no
5323 cc_check && _ivtv=yes
5325 if test "$_ivtv" = yes ; then
5326 def_ivtv='#define CONFIG_IVTV 1'
5327 vomodules="ivtv $vomodules"
5328 aomodules="ivtv $aomodules"
5329 else
5330 def_ivtv='#undef CONFIG_IVTV'
5331 novomodules="ivtv $novomodules"
5332 noaomodules="ivtv $noaomodules"
5334 echores "$_ivtv"
5337 echocheck "V4L2 MPEG Decoder"
5338 if test "$_v4l2" = auto ; then
5339 cat > $TMPC << EOF
5340 #include <stdlib.h>
5341 #include <inttypes.h>
5342 #include <linux/types.h>
5343 #include <linux/videodev2.h>
5344 #include <linux/version.h>
5345 int main(void) {
5346 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
5347 #error kernel headers too old, need 2.6.22
5348 #endif
5349 struct v4l2_ext_controls ctrls;
5350 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
5351 return 0;
5354 _v4l2=no
5355 cc_check && _v4l2=yes
5357 if test "$_v4l2" = yes ; then
5358 def_v4l2='#define CONFIG_V4L2_DECODER 1'
5359 vomodules="v4l2 $vomodules"
5360 aomodules="v4l2 $aomodules"
5361 else
5362 def_v4l2='#undef CONFIG_V4L2_DECODER'
5363 novomodules="v4l2 $novomodules"
5364 noaomodules="v4l2 $noaomodules"
5366 echores "$_v4l2"
5370 #########
5371 # AUDIO #
5372 #########
5375 echocheck "OSS Audio"
5376 if test "$_ossaudio" = auto ; then
5377 cat > $TMPC << EOF
5378 #include <sys/ioctl.h>
5379 #include <$_soundcard_header>
5380 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
5382 _ossaudio=no
5383 cc_check && _ossaudio=yes
5385 if test "$_ossaudio" = yes ; then
5386 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
5387 aomodules="oss $aomodules"
5388 if test "$_linux_devfs" = yes; then
5389 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound/dsp"'
5390 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/sound/mixer"'
5391 else
5392 cat > $TMPC << EOF
5393 #include <sys/ioctl.h>
5394 #include <$_soundcard_header>
5395 #ifdef OPEN_SOUND_SYSTEM
5396 int main(void) { return 0; }
5397 #else
5398 #error Not the real thing
5399 #endif
5401 _real_ossaudio=no
5402 cc_check && _real_ossaudio=yes
5403 if test "$_real_ossaudio" = yes; then
5404 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5405 # Check for OSS4 headers (override default headers)
5406 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
5407 if test -f /etc/oss.conf; then
5408 . /etc/oss.conf
5409 _ossinc="$OSSLIBDIR/include"
5410 if test -f "$_ossinc/sys/soundcard.h"; then
5411 extra_cflags="-I$_ossinc $extra_cflags"
5414 elif netbsd || openbsd ; then
5415 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
5416 extra_ldflags="$extra_ldflags -lossaudio"
5417 else
5418 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5420 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
5422 else
5423 def_ossaudio='#undef CONFIG_OSS_AUDIO'
5424 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
5425 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
5426 noaomodules="oss $noaomodules"
5428 echores "$_ossaudio"
5431 echocheck "aRts"
5432 if test "$_arts" = auto ; then
5433 _arts=no
5434 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
5436 cat > $TMPC << EOF
5437 #include <artsc.h>
5438 int main(void) { return 0; }
5440 cc_check $(artsc-config --libs) $(artsc-config --cflags) && _arts=yes
5445 if test "$_arts" = yes ; then
5446 def_arts='#define CONFIG_ARTS 1'
5447 aomodules="arts $aomodules"
5448 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
5449 extra_cflags="$extra_cflags $(artsc-config --cflags)"
5450 else
5451 noaomodules="arts $noaomodules"
5453 echores "$_arts"
5456 echocheck "EsounD"
5457 if test "$_esd" = auto ; then
5458 _esd=no
5459 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
5461 cat > $TMPC << EOF
5462 #include <esd.h>
5463 int main(void) { int fd = esd_open_sound("test"); return fd; }
5465 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd=yes
5469 echores "$_esd"
5471 if test "$_esd" = yes ; then
5472 def_esd='#define CONFIG_ESD 1'
5473 aomodules="esd $aomodules"
5474 libs_mplayer="$libs_mplayer $(esd-config --libs)"
5475 extra_cflags="$extra_cflags $(esd-config --cflags)"
5477 echocheck "esd_get_latency()"
5478 cat > $TMPC << EOF
5479 #include <esd.h>
5480 int main(void) { return esd_get_latency(0); }
5482 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
5483 echores "$_esd_latency"
5484 else
5485 def_esd='#undef CONFIG_ESD'
5486 def_esd_latency='#undef CONFIG_ESD_LATENCY'
5487 noaomodules="esd $noaomodules"
5491 echocheck "NAS"
5492 if test "$_nas" = auto ; then
5493 cat > $TMPC << EOF
5494 #include <audio/audiolib.h>
5495 int main(void) { return 0; }
5497 _nas=no
5498 cc_check $_ld_lm -laudio -lXt && _nas=yes
5500 if test "$_nas" = yes ; then
5501 def_nas='#define CONFIG_NAS 1'
5502 libs_mplayer="$libs_mplayer -laudio -lXt"
5503 aomodules="nas $aomodules"
5504 else
5505 noaomodules="nas $noaomodules"
5506 def_nas='#undef CONFIG_NAS'
5508 echores "$_nas"
5511 echocheck "pulse"
5512 if test "$_pulse" = auto ; then
5513 _pulse=no
5514 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5516 cat > $TMPC << EOF
5517 #include <pulse/pulseaudio.h>
5518 int main(void) { return 0; }
5520 cc_check $($_pkg_config --libs --cflags libpulse) && _pulse=yes
5524 echores "$_pulse"
5526 if test "$_pulse" = yes ; then
5527 def_pulse='#define CONFIG_PULSE 1'
5528 aomodules="pulse $aomodules"
5529 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
5530 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
5531 else
5532 def_pulse='#undef CONFIG_PULSE'
5533 noaomodules="pulse $noaomodules"
5537 echocheck "JACK"
5538 if test "$_jack" = auto ; then
5539 _jack=yes
5541 cat > $TMPC << EOF
5542 #include <jack/jack.h>
5543 int main(void) { jack_client_open("test", JackUseExactName, NULL); return 0; }
5545 if cc_check -ljack ; then
5546 libs_mplayer="$libs_mplayer -ljack"
5547 elif cc_check $($_pkg_config --libs --cflags --silence-errors jack) ; then
5548 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
5549 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
5550 else
5551 _jack=no
5555 if test "$_jack" = yes ; then
5556 def_jack='#define CONFIG_JACK 1'
5557 aomodules="jack $aomodules"
5558 else
5559 noaomodules="jack $noaomodules"
5561 echores "$_jack"
5563 echocheck "OpenAL"
5564 if test "$_openal" = auto ; then
5565 _openal=no
5566 cat > $TMPC << EOF
5567 #ifdef OPENAL_AL_H
5568 #include <OpenAL/al.h>
5569 #else
5570 #include <AL/al.h>
5571 #endif
5572 int main(void) {
5573 alSourceQueueBuffers(0, 0, 0);
5574 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5575 return 0;
5578 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5579 cc_check $I && _openal=yes && break
5580 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5581 done
5582 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
5584 if test "$_openal" = yes ; then
5585 def_openal='#define CONFIG_OPENAL 1'
5586 aomodules="openal $aomodules"
5587 else
5588 noaomodules="openal $noaomodules"
5590 echores "$_openal"
5592 echocheck "ALSA audio"
5593 if test "$_alloca" != yes ; then
5594 _alsa=no
5595 res_comment="alloca missing"
5597 if test "$_alsa" != no ; then
5598 _alsa=no
5599 cat > $TMPC << EOF
5600 #include <sys/time.h>
5601 #include <sys/asoundlib.h>
5602 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5603 #error "alsa version != 0.5.x"
5604 #endif
5605 int main(void) { return 0; }
5607 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5609 cat > $TMPC << EOF
5610 #include <sys/time.h>
5611 #include <sys/asoundlib.h>
5612 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5613 #error "alsa version != 0.9.x"
5614 #endif
5615 int main(void) { return 0; }
5617 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5618 cat > $TMPC << EOF
5619 #include <sys/time.h>
5620 #include <alsa/asoundlib.h>
5621 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5622 #error "alsa version != 0.9.x"
5623 #endif
5624 int main(void) { return 0; }
5626 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5628 cat > $TMPC << EOF
5629 #include <sys/time.h>
5630 #include <sys/asoundlib.h>
5631 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5632 #error "alsa version != 1.0.x"
5633 #endif
5634 int main(void) { return 0; }
5636 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5637 cat > $TMPC << EOF
5638 #include <sys/time.h>
5639 #include <alsa/asoundlib.h>
5640 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5641 #error "alsa version != 1.0.x"
5642 #endif
5643 int main(void) { return 0; }
5645 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5647 def_alsa='#undef CONFIG_ALSA'
5648 def_alsa5='#undef CONFIG_ALSA5'
5649 def_alsa9='#undef CONFIG_ALSA9'
5650 def_alsa1x='#undef CONFIG_ALSA1X'
5651 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5652 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5653 if test "$_alsaver" ; then
5654 _alsa=yes
5655 if test "$_alsaver" = '0.5.x' ; then
5656 _alsa5=yes
5657 aomodules="alsa5 $aomodules"
5658 def_alsa5='#define CONFIG_ALSA5 1'
5659 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5660 res_comment="using alsa 0.5.x and sys/asoundlib.h"
5661 elif test "$_alsaver" = '0.9.x-sys' ; then
5662 _alsa9=yes
5663 aomodules="alsa $aomodules"
5664 def_alsa='#define CONFIG_ALSA 1'
5665 def_alsa9='#define CONFIG_ALSA9 1'
5666 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5667 res_comment="using alsa 0.9.x and sys/asoundlib.h"
5668 elif test "$_alsaver" = '0.9.x-alsa' ; then
5669 _alsa9=yes
5670 aomodules="alsa $aomodules"
5671 def_alsa='#define CONFIG_ALSA 1'
5672 def_alsa9='#define CONFIG_ALSA9 1'
5673 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5674 res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5675 elif test "$_alsaver" = '1.0.x-sys' ; then
5676 _alsa1x=yes
5677 aomodules="alsa $aomodules"
5678 def_alsa='#define CONFIG_ALSA 1'
5679 def_alsa1x="#define CONFIG_ALSA1X 1"
5680 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5681 res_comment="using alsa 1.0.x and sys/asoundlib.h"
5682 elif test "$_alsaver" = '1.0.x-alsa' ; then
5683 _alsa1x=yes
5684 aomodules="alsa $aomodules"
5685 def_alsa='#define CONFIG_ALSA 1'
5686 def_alsa1x="#define CONFIG_ALSA1X 1"
5687 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5688 res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5689 else
5690 _alsa=no
5691 res_comment="unknown version"
5693 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5694 else
5695 noaomodules="alsa $noaomodules"
5697 echores "$_alsa"
5700 echocheck "Sun audio"
5701 if test "$_sunaudio" = auto ; then
5702 cat > $TMPC << EOF
5703 #include <sys/types.h>
5704 #include <sys/audioio.h>
5705 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5707 _sunaudio=no
5708 cc_check && _sunaudio=yes
5710 if test "$_sunaudio" = yes ; then
5711 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5712 aomodules="sun $aomodules"
5713 else
5714 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5715 noaomodules="sun $noaomodules"
5717 echores "$_sunaudio"
5720 def_mlib='#define CONFIG_MLIB 0'
5721 if sunos; then
5722 echocheck "Sun mediaLib"
5723 if test "$_mlib" = auto ; then
5724 _mlib=no
5725 cat > $TMPC << EOF
5726 #include <mlib.h>
5727 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; }
5729 cc_check -lmlib && _mlib=yes && def_mlib='#define CONFIG_MLIB 1'
5731 echores "$_mlib"
5732 fi #if sunos
5735 if darwin; then
5736 echocheck "CoreAudio"
5737 if test "$_coreaudio" = auto ; then
5738 cat > $TMPC <<EOF
5739 #include <CoreAudio/CoreAudio.h>
5740 #include <AudioToolbox/AudioToolbox.h>
5741 #include <AudioUnit/AudioUnit.h>
5742 int main(void) { return 0; }
5744 _coreaudio=no
5745 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5747 if test "$_coreaudio" = yes ; then
5748 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5749 def_coreaudio='#define CONFIG_COREAUDIO 1'
5750 aomodules="coreaudio $aomodules"
5751 else
5752 def_coreaudio='#undef CONFIG_COREAUDIO'
5753 noaomodules="coreaudio $noaomodules"
5755 echores $_coreaudio
5756 fi #if darwin
5759 if irix; then
5760 echocheck "SGI audio"
5761 if test "$_sgiaudio" = auto ; then
5762 # check for SGI audio
5763 cat > $TMPC << EOF
5764 #include <dmedia/audio.h>
5765 int main(void) { return 0; }
5767 _sgiaudio=no
5768 cc_check && _sgiaudio=yes
5770 if test "$_sgiaudio" = "yes" ; then
5771 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5772 libs_mplayer="$libs_mplayer -laudio"
5773 aomodules="sgi $aomodules"
5774 else
5775 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5776 noaomodules="sgi $noaomodules"
5778 echores "$_sgiaudio"
5779 fi #if irix
5782 if os2 ; then
5783 echocheck "KAI (UNIAUD/DART)"
5784 if test "$_kai" = auto; then
5785 cat > $TMPC << EOF
5786 #include <os2.h>
5787 #include <kai.h>
5788 int main(void) { return 0; }
5790 _kai=no;
5791 cc_check -lkai && _kai=yes
5793 if test "$_kai" = yes ; then
5794 def_kai='#define CONFIG_KAI 1'
5795 libs_mplayer="$libs_mplayer -lkai"
5796 aomodules="kai $aomodules"
5797 else
5798 def_kai='#undef CONFIG_KAI'
5799 noaomodules="kai $noaomodules"
5801 echores "$_kai"
5803 echocheck "DART"
5804 if test "$_dart" = auto; then
5805 cat > $TMPC << EOF
5806 #include <os2.h>
5807 #include <dart.h>
5808 int main( void ) { return 0; }
5810 _dart=no;
5811 cc_check -ldart && _dart=yes
5813 if test "$_dart" = yes ; then
5814 def_dart='#define CONFIG_DART 1'
5815 libs_mplayer="$libs_mplayer -ldart"
5816 aomodules="dart $aomodules"
5817 else
5818 def_dart='#undef CONFIG_DART'
5819 noaomodules="dart $noaomodules"
5821 echores "$_dart"
5822 fi #if os2
5825 # set default CD/DVD devices
5826 if win32 || os2 ; then
5827 default_cdrom_device="D:"
5828 elif darwin ; then
5829 default_cdrom_device="/dev/disk1"
5830 elif dragonfly ; then
5831 default_cdrom_device="/dev/cd0"
5832 elif freebsd ; then
5833 default_cdrom_device="/dev/acd0"
5834 elif openbsd ; then
5835 default_cdrom_device="/dev/rcd0a"
5836 elif sunos ; then
5837 default_cdrom_device="/vol/dev/aliases/cdrom0"
5838 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5839 # file system and the volfs service.
5840 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5841 elif amigaos ; then
5842 default_cdrom_device="a1ide.device:2"
5843 else
5844 default_cdrom_device="/dev/cdrom"
5847 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5848 default_dvd_device=$default_cdrom_device
5849 elif darwin ; then
5850 default_dvd_device="/dev/rdiskN"
5851 else
5852 default_dvd_device="/dev/dvd"
5856 echocheck "VCD support"
5857 if test "$_vcd" = auto; then
5858 _vcd=no
5859 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2; then
5860 _vcd=yes
5861 elif mingw32; then
5862 cat > $TMPC << EOF
5863 #include <ddk/ntddcdrm.h>
5864 int main(void) { return 0; }
5866 cc_check && _vcd=yes
5869 if test "$_vcd" = yes; then
5870 inputmodules="vcd $inputmodules"
5871 def_vcd='#define CONFIG_VCD 1'
5872 else
5873 def_vcd='#undef CONFIG_VCD'
5874 noinputmodules="vcd $noinputmodules"
5875 res_comment="not supported on this OS"
5877 echores "$_vcd"
5881 echocheck "dvdread"
5882 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5883 _dvdread_internal=no
5885 if test "$_dvdread_internal" = auto ; then
5886 _dvdread_internal=no
5887 _dvdread=no
5888 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) \
5889 && (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
5890 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) \
5891 || darwin || win32 || os2; then
5892 _dvdread_internal=yes
5893 _dvdread=yes
5894 extra_cflags="-Ilibdvdread4 $extra_cflags"
5896 elif test "$_dvdread" = auto ; then
5897 _dvdread=no
5898 if test "$_dl" = yes; then
5899 cat > $TMPC << EOF
5900 #include <inttypes.h>
5901 #include <dvdread/dvd_reader.h>
5902 #include <dvdread/ifo_types.h>
5903 #include <dvdread/ifo_read.h>
5904 #include <dvdread/nav_read.h>
5905 int main(void) { return 0; }
5907 _dvdreadcflags=$($_dvdreadconfig --cflags)
5908 _dvdreadlibs=$($_dvdreadconfig --libs)
5909 if cc_check -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
5910 $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5911 _dvdread=yes
5912 extra_cflags="$extra_cflags $_dvdreadcflags"
5913 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5914 res_comment="external"
5919 if test "$_dvdread_internal" = yes; then
5920 def_dvdread='#define CONFIG_DVDREAD 1'
5921 inputmodules="dvdread(internal) $inputmodules"
5922 _largefiles=yes
5923 res_comment="internal"
5924 elif test "$_dvdread" = yes; then
5925 def_dvdread='#define CONFIG_DVDREAD 1'
5926 _largefiles=yes
5927 extra_ldflags="$extra_ldflags -ldvdread"
5928 inputmodules="dvdread(external) $inputmodules"
5929 res_comment="external"
5930 else
5931 def_dvdread='#undef CONFIG_DVDREAD'
5932 noinputmodules="dvdread $noinputmodules"
5934 echores "$_dvdread"
5937 echocheck "internal libdvdcss"
5938 if test "$_libdvdcss_internal" = auto ; then
5939 _libdvdcss_internal=no
5940 test "$_dvdread_internal" = yes && _libdvdcss_internal=yes
5941 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5943 if test "$_libdvdcss_internal" = yes ; then
5944 if linux || netbsd || openbsd || bsdos ; then
5945 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5946 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5947 elif freebsd || dragonfly ; then
5948 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5949 elif darwin ; then
5950 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5951 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5952 elif cygwin ; then
5953 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5954 elif beos ; then
5955 cflags_libdvdcss="-DSYS_BEOS"
5956 elif os2 ; then
5957 cflags_libdvdcss="-DSYS_OS2"
5959 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5960 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5961 inputmodules="libdvdcss(internal) $inputmodules"
5962 _largefiles=yes
5963 else
5964 noinputmodules="libdvdcss(internal) $noinputmodules"
5966 echores "$_libdvdcss_internal"
5969 echocheck "cdparanoia"
5970 if test "$_cdparanoia" = auto ; then
5971 cat > $TMPC <<EOF
5972 #include <cdda_interface.h>
5973 #include <cdda_paranoia.h>
5974 // This need a better test. How ?
5975 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5977 _cdparanoia=no
5978 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5979 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
5980 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5981 done
5983 if test "$_cdparanoia" = yes ; then
5984 _cdda='yes'
5985 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5986 openbsd && extra_ldflags="$extra_ldflags -lutil"
5988 echores "$_cdparanoia"
5991 echocheck "libcdio"
5992 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5993 cat > $TMPC << EOF
5994 #include <stdio.h>
5995 #include <cdio/version.h>
5996 #include <cdio/cdda.h>
5997 #include <cdio/paranoia.h>
5998 int main(void) {
5999 void *test = cdda_verbose_set;
6000 printf("%s\n", CDIO_VERSION);
6001 return test == (void *)1;
6004 _libcdio=no
6005 for _ld_tmp in "" "-lwinmm" ; do
6006 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
6007 cc_check $_ld_tmp $_ld_lm \
6008 && _libcdio=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6009 done
6010 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
6011 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
6012 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
6013 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes \
6014 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6017 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
6018 _cdda='yes'
6019 def_libcdio='#define CONFIG_LIBCDIO 1'
6020 def_havelibcdio='yes'
6021 else
6022 if test "$_cdparanoia" = yes ; then
6023 res_comment="using cdparanoia"
6025 def_libcdio='#undef CONFIG_LIBCDIO'
6026 def_havelibcdio='no'
6028 echores "$_libcdio"
6030 if test "$_cdda" = yes ; then
6031 test $_cddb = auto && test $_network = yes && _cddb=yes
6032 def_cdparanoia='#define CONFIG_CDDA 1'
6033 inputmodules="cdda $inputmodules"
6034 else
6035 def_cdparanoia='#undef CONFIG_CDDA'
6036 noinputmodules="cdda $noinputmodules"
6039 if test "$_cddb" = yes ; then
6040 def_cddb='#define CONFIG_CDDB 1'
6041 inputmodules="cddb $inputmodules"
6042 else
6043 _cddb=no
6044 def_cddb='#undef CONFIG_CDDB'
6045 noinputmodules="cddb $noinputmodules"
6048 echocheck "bitmap font support"
6049 if test "$_bitmap_font" = yes ; then
6050 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
6051 else
6052 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
6054 echores "$_bitmap_font"
6057 echocheck "freetype >= 2.0.9"
6059 # freetype depends on iconv
6060 if test "$_iconv" = no ; then
6061 _freetype=no
6062 res_comment="iconv support needed"
6065 if test "$_freetype" = auto ; then
6066 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
6067 cat > $TMPC << EOF
6068 #include <stdio.h>
6069 #include <ft2build.h>
6070 #include FT_FREETYPE_H
6071 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
6072 #error "Need FreeType 2.0.9 or newer"
6073 #endif
6074 int main(void) {
6075 FT_Library library;
6076 FT_Int major=-1,minor=-1,patch=-1;
6077 int err=FT_Init_FreeType(&library);
6078 return 0;
6081 _freetype=no
6082 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
6083 else
6084 _freetype=no
6087 if test "$_freetype" = yes ; then
6088 def_freetype='#define CONFIG_FREETYPE 1'
6089 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
6090 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
6091 else
6092 def_freetype='#undef CONFIG_FREETYPE'
6094 echores "$_freetype"
6096 if test "$_freetype" = no ; then
6097 _fontconfig=no
6098 res_comment="FreeType support needed"
6100 echocheck "fontconfig"
6101 if test "$_fontconfig" = auto ; then
6102 cat > $TMPC << EOF
6103 #include <stdio.h>
6104 #include <stdlib.h>
6105 #include <fontconfig/fontconfig.h>
6106 #if FC_VERSION < 20402
6107 #error At least version 2.4.2 of fontconfig required
6108 #endif
6109 int main(void) {
6110 int err = FcInit();
6111 if (err == FcFalse) {
6112 printf("Couldn't initialize fontconfig lib\n");
6113 exit(err);
6115 return 0;
6118 _fontconfig=no
6119 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
6120 _ld_tmp="-lfontconfig $_ld_tmp"
6121 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6122 done
6123 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
6124 _inc_tmp=$($_pkg_config --cflags fontconfig)
6125 _ld_tmp=$($_pkg_config --libs fontconfig)
6126 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes \
6127 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6130 if test "$_fontconfig" = yes ; then
6131 def_fontconfig='#define CONFIG_FONTCONFIG 1'
6132 else
6133 def_fontconfig='#undef CONFIG_FONTCONFIG'
6135 echores "$_fontconfig"
6138 echocheck "SSA/ASS support"
6139 if test "$_ass" = auto -o "$_ass" = yes ; then
6140 if $_pkg_config libass; then
6141 _ass=yes
6142 def_ass='#define CONFIG_ASS 1'
6143 extra_ldflags="$extra_ldflags $($_pkg_config --libs libass)"
6144 extra_cflags="$extra_cflags $($_pkg_config --cflags libass)"
6145 else
6146 _ass=no
6147 def_ass='#undef CONFIG_ASS'
6149 else
6150 def_ass='#undef CONFIG_ASS'
6152 echores "$_ass"
6155 echocheck "fribidi with charsets"
6156 _inc_tmp=""
6157 _ld_tmp=""
6158 if test "$_fribidi" = auto ; then
6159 cat > $TMPC << EOF
6160 #include <stdio.h>
6161 #include <stdlib.h>
6162 /* workaround for fribidi 0.10.4 and below */
6163 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
6164 #include <fribidi/fribidi.h>
6165 int main(void) {
6166 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8) {
6167 printf("Fribidi headers are not consistents with the library!\n");
6168 exit(1);
6170 return 0;
6173 _fribidi=no
6174 _inc_tmp=""
6175 _ld_tmp="-lfribidi"
6176 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6177 if $_pkg_config --exists fribidi > /dev/null 2>&1 &&
6178 test "$_fribidi" = no ; then
6179 _inc_tmp="$($_pkg_config --cflags)"
6180 _ld_tmp="$($_pkg_config --libs)"
6181 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6184 if test "$_fribidi" = yes ; then
6185 def_fribidi='#define CONFIG_FRIBIDI 1'
6186 extra_cflags="$extra_cflags $_inc_tmp"
6187 extra_ldflags="$extra_ldflags $_ld_tmp"
6188 else
6189 def_fribidi='#undef CONFIG_FRIBIDI'
6191 echores "$_fribidi"
6194 echocheck "ENCA"
6195 if test "$_enca" = auto ; then
6196 cat > $TMPC << EOF
6197 #include <sys/types.h>
6198 #include <enca.h>
6199 int main(void) {
6200 const char **langs;
6201 size_t langcnt;
6202 langs = enca_get_languages(&langcnt);
6203 return 0;
6206 _enca=no
6207 cc_check -lenca $_ld_lm && _enca=yes
6209 if test "$_enca" = yes ; then
6210 def_enca='#define CONFIG_ENCA 1'
6211 extra_ldflags="$extra_ldflags -lenca"
6212 else
6213 def_enca='#undef CONFIG_ENCA'
6215 echores "$_enca"
6218 echocheck "zlib"
6219 cat > $TMPC << EOF
6220 #include <zlib.h>
6221 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; }
6223 _zlib=no
6224 cc_check -lz && _zlib=yes
6225 if test "$_zlib" = yes ; then
6226 def_zlib='#define CONFIG_ZLIB 1'
6227 extra_ldflags="$extra_ldflags -lz"
6228 else
6229 def_zlib='#define CONFIG_ZLIB 0'
6231 echores "$_zlib"
6234 echocheck "bzlib"
6235 bzlib=no
6236 def_bzlib='#define CONFIG_BZLIB 0'
6237 cat > $TMPC << EOF
6238 #include <bzlib.h>
6239 int main(void) { BZ2_bzlibVersion(); return 0; }
6241 cc_check -lbz2 && bzlib=yes
6242 if test "$bzlib" = yes ; then
6243 def_bzlib='#define CONFIG_BZLIB 1'
6244 extra_ldflags="$extra_ldflags -lbz2"
6246 echores "$bzlib"
6249 echocheck "RTC"
6250 if test "$_rtc" = auto ; then
6251 cat > $TMPC << EOF
6252 #include <sys/ioctl.h>
6253 #ifdef __linux__
6254 #include <linux/rtc.h>
6255 #else
6256 #include <rtc.h>
6257 #define RTC_PIE_ON RTCIO_PIE_ON
6258 #endif
6259 int main(void) { return RTC_PIE_ON; }
6261 _rtc=no
6262 cc_check && _rtc=yes
6263 ppc && _rtc=no
6265 if test "$_rtc" = yes ; then
6266 def_rtc='#define HAVE_RTC 1'
6267 else
6268 def_rtc='#undef HAVE_RTC'
6270 echores "$_rtc"
6273 echocheck "liblzo2 support"
6274 if test "$_liblzo" = auto ; then
6275 _liblzo=no
6276 cat > $TMPC << EOF
6277 #include <lzo/lzo1x.h>
6278 int main(void) { lzo_init();return 0; }
6280 cc_check -llzo2 && _liblzo=yes
6282 if test "$_liblzo" = yes ; then
6283 def_liblzo='#define CONFIG_LIBLZO 1'
6284 extra_ldflags="$extra_ldflags -llzo2"
6285 codecmodules="liblzo $codecmodules"
6286 else
6287 def_liblzo='#undef CONFIG_LIBLZO'
6288 nocodecmodules="liblzo $nocodecmodules"
6290 echores "$_liblzo"
6293 echocheck "mad support"
6294 if test "$_mad" = auto ; then
6295 _mad=no
6296 cat > $TMPC << EOF
6297 #include <mad.h>
6298 int main(void) { return 0; }
6300 cc_check -lmad && _mad=yes
6302 if test "$_mad" = yes ; then
6303 def_mad='#define CONFIG_LIBMAD 1'
6304 extra_ldflags="$extra_ldflags -lmad"
6305 codecmodules="libmad $codecmodules"
6306 else
6307 def_mad='#undef CONFIG_LIBMAD'
6308 nocodecmodules="libmad $nocodecmodules"
6310 echores "$_mad"
6312 echocheck "Twolame"
6313 if test "$_twolame" = auto ; then
6314 cat > $TMPC <<EOF
6315 #include <twolame.h>
6316 int main(void) { twolame_init(); return 0; }
6318 _twolame=no
6319 cc_check -ltwolame $_ld_lm && _twolame=yes
6321 if test "$_twolame" = yes ; then
6322 def_twolame='#define CONFIG_TWOLAME 1'
6323 libs_mencoder="$libs_mencoder -ltwolame"
6324 codecmodules="twolame $codecmodules"
6325 else
6326 def_twolame='#undef CONFIG_TWOLAME'
6327 nocodecmodules="twolame $nocodecmodules"
6329 echores "$_twolame"
6331 echocheck "Toolame"
6332 if test "$_toolame" = auto ; then
6333 _toolame=no
6334 if test "$_twolame" = yes ; then
6335 res_comment="disabled by twolame"
6336 else
6337 cat > $TMPC <<EOF
6338 #include <toolame.h>
6339 int main(void) { toolame_init(); return 0; }
6341 cc_check -ltoolame $_ld_lm && _toolame=yes
6344 if test "$_toolame" = yes ; then
6345 def_toolame='#define CONFIG_TOOLAME 1'
6346 libs_mencoder="$libs_mencoder -ltoolame"
6347 codecmodules="toolame $codecmodules"
6348 else
6349 def_toolame='#undef CONFIG_TOOLAME'
6350 nocodecmodules="toolame $nocodecmodules"
6352 if test "$_toolamedir" ; then
6353 res_comment="using $_toolamedir"
6355 echores "$_toolame"
6357 echocheck "OggVorbis support"
6358 if test "$_tremor_internal" = yes; then
6359 _libvorbis=no
6360 elif test "$_tremor" = auto; then
6361 _tremor=no
6362 cat > $TMPC << EOF
6363 #include <tremor/ivorbiscodec.h>
6364 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6366 cc_check -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
6368 if test "$_libvorbis" = auto; then
6369 _libvorbis=no
6370 cat > $TMPC << EOF
6371 #include <vorbis/codec.h>
6372 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6374 cc_check -lvorbis -logg $_ld_lm && _libvorbis=yes
6376 if test "$_tremor_internal" = yes ; then
6377 _vorbis=yes
6378 def_vorbis='#define CONFIG_OGGVORBIS 1'
6379 def_tremor='#define CONFIG_TREMOR 1'
6380 codecmodules="tremor(internal) $codecmodules"
6381 res_comment="internal Tremor"
6382 if test "$_tremor_low" = yes ; then
6383 cflags_tremor_low="-D_LOW_ACCURACY_"
6384 res_comment="internal low accuracy Tremor"
6386 elif test "$_tremor" = yes ; then
6387 _vorbis=yes
6388 def_vorbis='#define CONFIG_OGGVORBIS 1'
6389 def_tremor='#define CONFIG_TREMOR 1'
6390 codecmodules="tremor(external) $codecmodules"
6391 res_comment="external Tremor"
6392 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
6393 elif test "$_libvorbis" = yes ; then
6394 _vorbis=yes
6395 def_vorbis='#define CONFIG_OGGVORBIS 1'
6396 codecmodules="libvorbis $codecmodules"
6397 res_comment="libvorbis"
6398 extra_ldflags="$extra_ldflags -lvorbis -logg"
6399 else
6400 _vorbis=no
6401 nocodecmodules="libvorbis $nocodecmodules"
6403 echores "$_vorbis"
6405 echocheck "libspeex (version >= 1.1 required)"
6406 if test "$_speex" = auto ; then
6407 _speex=no
6408 cat > $TMPC << EOF
6409 #include <speex/speex.h>
6410 int main(void) { SpeexBits bits; void *dec; speex_decode_int(dec, &bits, dec); return 0; }
6412 cc_check -lspeex $_ld_lm && _speex=yes
6414 if test "$_speex" = yes ; then
6415 def_speex='#define CONFIG_SPEEX 1'
6416 extra_ldflags="$extra_ldflags -lspeex"
6417 codecmodules="speex $codecmodules"
6418 else
6419 def_speex='#undef CONFIG_SPEEX'
6420 nocodecmodules="speex $nocodecmodules"
6422 echores "$_speex"
6424 echocheck "OggTheora support"
6425 if test "$_theora" = auto ; then
6426 _theora=no
6427 cat > $TMPC << EOF
6428 #include <theora/theora.h>
6429 #include <string.h>
6430 int main(void) {
6431 /* Theora is in flux, make sure that all interface routines and datatypes
6432 * exist and work the way we expect it, so we don't break MPlayer. */
6433 ogg_packet op;
6434 theora_comment tc;
6435 theora_info inf;
6436 theora_state st;
6437 yuv_buffer yuv;
6438 int r;
6439 double t;
6441 theora_info_init(&inf);
6442 theora_comment_init(&tc);
6444 return 0;
6446 /* we don't want to execute this kind of nonsense; just for making sure
6447 * that compilation works... */
6448 memset(&op, 0, sizeof(op));
6449 r = theora_decode_header(&inf, &tc, &op);
6450 r = theora_decode_init(&st, &inf);
6451 t = theora_granule_time(&st, op.granulepos);
6452 r = theora_decode_packetin(&st, &op);
6453 r = theora_decode_YUVout(&st, &yuv);
6454 theora_clear(&st);
6456 return 0;
6459 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6460 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6461 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
6462 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6463 if test _theora = no; then
6464 _ld_theora="-ltheora -logg"
6465 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6467 if test "$_theora" = no && test "$_tremor_internal" = yes; then
6468 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6469 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6470 cc_check tremor/bitwise.c $_inc_theora $_ld_theora &&
6471 extra_ldflags="$extra_ldflags $_ld_theora" &&
6472 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6473 if test _theora = no; then
6474 _ld_theora="-ltheora -logg"
6475 cc_check tremor/bitwise.c $_ld_theora &&
6476 extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6480 if test "$_theora" = yes ; then
6481 def_theora='#define CONFIG_OGGTHEORA 1'
6482 codecmodules="libtheora $codecmodules"
6483 # when --enable-theora is forced, we'd better provide a probably sane
6484 # $_ld_theora than nothing
6485 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
6486 else
6487 def_theora='#undef CONFIG_OGGTHEORA'
6488 nocodecmodules="libtheora $nocodecmodules"
6490 echores "$_theora"
6492 echocheck "mp3lib support"
6493 if test "$_mp3lib" = auto ; then
6494 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _mp3lib=no || _mp3lib=yes
6496 if test "$_mp3lib" = yes ; then
6497 def_mp3lib='#define CONFIG_MP3LIB 1'
6498 codecmodules="mp3lib(internal) $codecmodules"
6499 else
6500 def_mp3lib='#undef CONFIG_MP3LIB'
6501 nocodecmodules="mp3lib(internal) $nocodecmodules"
6503 echores "$_mp3lib"
6505 echocheck "liba52 support"
6506 def_liba52='#undef CONFIG_LIBA52'
6507 if test "$_liba52" = auto ; then
6508 _liba52=no
6509 cat > $TMPC << EOF
6510 #include <inttypes.h>
6511 #include <a52dec/a52.h>
6512 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6514 cc_check -la52 && _liba52=yes && extra_ldflags="$extra_ldflags -la52"
6516 if test "$_liba52" = yes ; then
6517 def_liba52='#define CONFIG_LIBA52 1'
6518 codecmodules="liba52 $codecmodules"
6519 else
6520 nocodecmodules="liba52 $nocodecmodules"
6522 echores "$_liba52"
6524 echocheck "internal libmpeg2 support"
6525 if test "$_libmpeg2" = auto ; then
6526 _libmpeg2=yes
6527 if alpha && test cc_vendor=gnu; then
6528 case $cc_version in
6529 2*|3.0*|3.1*) # cannot compile MVI instructions
6530 _libmpeg2=no
6531 res_comment="broken gcc"
6533 esac
6536 if test "$_libmpeg2" = yes ; then
6537 def_libmpeg2='#define CONFIG_LIBMPEG2 1'
6538 codecmodules="libmpeg2(internal) $codecmodules"
6539 else
6540 def_libmpeg2='#undef CONFIG_LIBMPEG2'
6541 nocodecmodules="libmpeg2(internal) $nocodecmodules"
6543 echores "$_libmpeg2"
6545 echocheck "libdca support"
6546 if test "$_libdca" = auto ; then
6547 _libdca=no
6548 cat > $TMPC << EOF
6549 #include <inttypes.h>
6550 #include <dts.h>
6551 int main(void) { dts_init(0); return 0; }
6553 for _ld_dca in -ldca -ldts ; do
6554 cc_check $_ld_dca $_ld_lm && extra_ldflags="$extra_ldflags $_ld_dca" \
6555 && _libdca=yes && break
6556 done
6558 if test "$_libdca" = yes ; then
6559 def_libdca='#define CONFIG_LIBDCA 1'
6560 codecmodules="libdca $codecmodules"
6561 else
6562 def_libdca='#undef CONFIG_LIBDCA'
6563 nocodecmodules="libdca $nocodecmodules"
6565 echores "$_libdca"
6567 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
6568 if test "$_musepack" = auto ; then
6569 _musepack=no
6570 cat > $TMPC << EOF
6571 #include <stddef.h>
6572 #include <mpcdec/mpcdec.h>
6573 int main(void) {
6574 mpc_streaminfo info;
6575 mpc_decoder decoder;
6576 mpc_decoder_set_streaminfo(&decoder, &info);
6577 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6578 return 0;
6581 cc_check -lmpcdec $_ld_lm && _musepack=yes
6583 if test "$_musepack" = yes ; then
6584 def_musepack='#define CONFIG_MUSEPACK 1'
6585 extra_ldflags="$extra_ldflags -lmpcdec"
6586 codecmodules="musepack $codecmodules"
6587 else
6588 def_musepack='#undef CONFIG_MUSEPACK'
6589 nocodecmodules="musepack $nocodecmodules"
6591 echores "$_musepack"
6594 echocheck "FAAC support"
6595 if test "$_faac" = auto ; then
6596 cat > $TMPC <<EOF
6597 #include <inttypes.h>
6598 #include <faac.h>
6599 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6601 _faac=no
6602 for _ld_faac in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6603 cc_check $_ld_faac $_ld_lm && libs_mencoder="$libs_mencoder $_ld_faac" && _faac=yes && break
6604 done
6606 if test "$_faac" = yes ; then
6607 def_faac="#define CONFIG_FAAC 1"
6608 codecmodules="faac $codecmodules"
6609 else
6610 def_faac="#undef CONFIG_FAAC"
6611 nocodecmodules="faac $nocodecmodules"
6613 echores "$_faac"
6616 echocheck "FAAD2 support"
6617 if test "$_faad_internal" = auto ; then
6618 if x86_32 && test cc_vendor=gnu; then
6619 case $cc_version in
6620 3.1*|3.2) # ICE/insn with these versions
6621 _faad_internal=no
6622 res_comment="broken gcc"
6625 _faad=yes
6626 _faad_internal=yes
6628 esac
6629 else
6630 _faad=yes
6631 _faad_internal=yes
6634 if test "$_faad" = auto ; then
6635 cat > $TMPC << EOF
6636 #include <faad.h>
6637 #ifndef FAAD_MIN_STREAMSIZE
6638 #error Too old version
6639 #endif
6640 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6641 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6643 cc_check -lfaad $_ld_lm && _faad=yes
6646 def_faad='#undef CONFIG_FAAD'
6647 def_faad_internal="#undef CONFIG_FAAD_INTERNAL"
6648 if test "$_faad_internal" = yes ; then
6649 def_faad_internal="#define CONFIG_FAAD_INTERNAL 1"
6650 res_comment="internal floating-point"
6651 if test "$_faad_fixed" = yes ; then
6652 # The FIXED_POINT implementation of FAAD2 improves performance
6653 # on some platforms, especially for SBR files.
6654 cflags_faad_fixed="-DFIXED_POINT"
6655 res_comment="internal fixed-point"
6657 elif test "$_faad" = yes ; then
6658 extra_ldflags="$extra_ldflags -lfaad"
6661 if test "$_faad" = yes ; then
6662 def_faad='#define CONFIG_FAAD 1'
6663 if test "$_faad_internal" = yes ; then
6664 codecmodules="faad2(internal) $codecmodules"
6665 else
6666 codecmodules="faad2 $codecmodules"
6668 else
6669 _faad=no
6670 nocodecmodules="faad2 $nocodecmodules"
6672 echores "$_faad"
6675 echocheck "LADSPA plugin support"
6676 if test "$_ladspa" = auto ; then
6677 cat > $TMPC <<EOF
6678 #include <stdio.h>
6679 #include <ladspa.h>
6680 int main(void) {
6681 const LADSPA_Descriptor *ld = NULL;
6682 return 0;
6685 _ladspa=no
6686 cc_check && _ladspa=yes
6688 if test "$_ladspa" = yes; then
6689 def_ladspa="#define CONFIG_LADSPA 1"
6690 else
6691 def_ladspa="#undef CONFIG_LADSPA"
6693 echores "$_ladspa"
6696 echocheck "libbs2b audio filter support"
6697 if test "$_libbs2b" = auto ; then
6698 cat > $TMPC <<EOF
6699 #include <bs2b.h>
6700 #if BS2B_VERSION_MAJOR < 3
6701 #error Please use libbs2b >= 3.0.0, older versions are not supported.
6702 #endif
6703 int main(void) {
6704 t_bs2bdp filter;
6705 filter=bs2b_open();
6706 bs2b_close(filter);
6707 return 0;
6710 _libbs2b=no
6711 if $_pkg_config --exists libbs2b ; then
6712 _inc_tmp=$($_pkg_config --cflags libbs2b)
6713 _ld_tmp=$($_pkg_config --libs libbs2b)
6714 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
6715 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
6716 else
6717 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
6718 -I/usr/local/include/bs2b ; do
6719 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
6720 extra_ldflags="$extra_ldflags -lbs2b"
6721 extra_cflags="$extra_cflags $_inc_tmp"
6722 _libbs2b=yes
6723 break
6725 done
6728 def_libbs2b="#undef CONFIG_LIBBS2B"
6729 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
6730 echores "$_libbs2b"
6733 if test -z "$_codecsdir" ; then
6734 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
6735 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
6736 if test -d "$dir" ; then
6737 _codecsdir="$dir"
6738 break;
6740 done
6742 # Fall back on default directory.
6743 if test -z "$_codecsdir" ; then
6744 _codecsdir="$_libdir/codecs"
6745 mingw32 || os2 && _codecsdir="codecs"
6749 echocheck "Win32 codecs"
6750 if test "$_win32dll" = auto ; then
6751 _win32dll=no
6752 if x86_32 && ! qnx; then
6753 _win32dll=yes
6756 if test "$_win32dll" = yes ; then
6757 def_win32dll='#define CONFIG_WIN32DLL 1'
6758 if ! win32 ; then
6759 def_win32_loader='#define WIN32_LOADER 1'
6760 _win32_emulation=yes
6761 else
6762 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
6763 res_comment="using native windows"
6765 codecmodules="win32 $codecmodules"
6766 else
6767 def_win32dll='#undef CONFIG_WIN32DLL'
6768 def_win32_loader='#undef WIN32_LOADER'
6769 nocodecmodules="win32 $nocodecmodules"
6771 echores "$_win32dll"
6774 echocheck "XAnim codecs"
6775 if test "$_xanim" = auto ; then
6776 _xanim=no
6777 res_comment="dynamic loader support needed"
6778 if test "$_dl" = yes ; then
6779 _xanim=yes
6782 if test "$_xanim" = yes ; then
6783 def_xanim='#define CONFIG_XANIM 1'
6784 codecmodules="xanim $codecmodules"
6785 else
6786 def_xanim='#undef CONFIG_XANIM'
6787 nocodecmodules="xanim $nocodecmodules"
6789 echores "$_xanim"
6792 echocheck "RealPlayer codecs"
6793 if test "$_real" = auto ; then
6794 _real=no
6795 res_comment="dynamic loader support needed"
6796 if test "$_dl" = yes || test "$_win32dll" = yes &&
6797 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2) ; then
6798 _real=yes
6801 if test "$_real" = yes ; then
6802 def_real='#define CONFIG_REALCODECS 1'
6803 codecmodules="real $codecmodules"
6804 else
6805 def_real='#undef CONFIG_REALCODECS'
6806 nocodecmodules="real $nocodecmodules"
6808 echores "$_real"
6811 echocheck "QuickTime codecs"
6812 _qtx_emulation=no
6813 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
6814 if test "$_qtx" = auto ; then
6815 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
6817 if test "$_qtx" = yes ; then
6818 def_qtx='#define CONFIG_QTX_CODECS 1'
6819 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
6820 codecmodules="qtx $codecmodules"
6821 darwin || win32 || _qtx_emulation=yes
6822 else
6823 def_qtx='#undef CONFIG_QTX_CODECS'
6824 nocodecmodules="qtx $nocodecmodules"
6826 echores "$_qtx"
6828 echocheck "Nemesi Streaming Media libraries"
6829 if test "$_nemesi" = auto && test "$_network" = yes ; then
6830 _nemesi=no
6831 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
6832 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
6833 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
6834 _nemesi=yes
6837 if test "$_nemesi" = yes; then
6838 _native_rtsp=no
6839 def_nemesi='#define CONFIG_LIBNEMESI 1'
6840 inputmodules="nemesi $inputmodules"
6841 else
6842 _native_rtsp="$_network"
6843 _nemesi=no
6844 def_nemesi='#undef CONFIG_LIBNEMESI'
6845 noinputmodules="nemesi $noinputmodules"
6847 echores "$_nemesi"
6849 echocheck "LIVE555 Streaming Media libraries"
6850 if test "$_live" = auto && test "$_network" = yes ; then
6851 cat > $TMPCPP << EOF
6852 #include <liveMedia.hh>
6853 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6854 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6855 #endif
6856 int main(void) { return 0; }
6859 _live=no
6860 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
6861 cxx_check $I/liveMedia/include $I/UsageEnvironment/include \
6862 $I/groupsock/include && _livelibdir=$(echo $I| sed s/-I//) && \
6863 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
6864 $_livelibdir/groupsock/libgroupsock.a \
6865 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6866 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6867 $extra_ldflags -lstdc++" \
6868 extra_cxxflags="-I$_livelibdir/liveMedia/include \
6869 -I$_livelibdir/UsageEnvironment/include \
6870 -I$_livelibdir/BasicUsageEnvironment/include \
6871 -I$_livelibdir/groupsock/include" && \
6872 _live=yes && break
6873 done
6874 if test "$_live" != yes ; then
6875 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6876 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
6877 _live_dist=yes
6881 if test "$_live" = yes && test "$_network" = yes; then
6882 test $_livelibdir && res_comment="using $_livelibdir"
6883 def_live='#define CONFIG_LIVE555 1'
6884 inputmodules="live555 $inputmodules"
6885 elif test "$_live_dist" = yes && test "$_network" = yes; then
6886 res_comment="using distribution version"
6887 _live="yes"
6888 def_live='#define CONFIG_LIVE555 1'
6889 extra_ldflags="$extra_ldflags $ld_tmp"
6890 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
6891 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6892 inputmodules="live555 $inputmodules"
6893 else
6894 _live=no
6895 def_live='#undef CONFIG_LIVE555'
6896 noinputmodules="live555 $noinputmodules"
6898 echores "$_live"
6901 echocheck "FFmpeg libavutil"
6902 if test "$_libavutil" = auto ; then
6903 _libavutil=no
6904 cat > $TMPC << EOF
6905 #include <libavutil/common.h>
6906 int main(void) { av_clip(1, 1, 1); return 0; }
6908 if $_pkg_config --exists libavutil ; then
6909 _inc_libavutil=$($_pkg_config --cflags libavutil)
6910 _ld_tmp=$($_pkg_config --libs libavutil)
6911 cc_check $_inc_libavutil $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libavutil" \
6912 && _libavutil=yes
6913 elif cc_check -lavutil $_ld_lm ; then
6914 extra_ldflags="$extra_ldflags -lavutil"
6915 _libavutil=yes
6918 def_libavutil='#undef CONFIG_LIBAVUTIL'
6919 test "$_libavutil" = yes && def_libavutil='#define CONFIG_LIBAVUTIL 1'
6920 # libavutil is not available, but it is mandatory ...
6921 if test "$_libavutil" = no ; then
6922 die "You need libavutil, MPlayer will not compile without!"
6924 echores "$_libavutil"
6926 echocheck "FFmpeg libavcodec"
6927 if test "$_libavcodec" = auto ; then
6928 _libavcodec=no
6929 cat > $TMPC << EOF
6930 #include <libavcodec/avcodec.h>
6931 int main(void) { avcodec_find_encoder_by_name(""); return 0; }
6933 if $_pkg_config --exists libavcodec ; then
6934 _inc_libavcodec=$($_pkg_config --cflags libavcodec)
6935 _ld_tmp=$($_pkg_config --libs libavcodec)
6936 cc_check $_inc_libavcodec $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavcodec" \
6937 && _libavcodec=yes
6938 elif cc_check -lavcodec $_ld_lm ; then
6939 extra_ldflags="$extra_ldflags -lavcodec"
6940 _libavcodec=yes
6943 def_libavcodec='#undef CONFIG_LIBAVCODEC'
6944 test "$_libavcodec" = yes && def_libavcodec='#define CONFIG_LIBAVCODEC 1'
6945 if test "$_libavcodec" = yes ; then
6946 codecmodules="libavcodec $codecmodules"
6947 else
6948 nocodecmodules="libavcodec $nocodecmodules"
6950 echores "$_libavcodec"
6952 echocheck "FFmpeg libavformat"
6953 if test "$_libavformat" = auto ; then
6954 _libavformat=no
6955 cat > $TMPC <<EOF
6956 #include <libavformat/avformat.h>
6957 #include <libavcodec/opt.h>
6958 int main(void) { av_alloc_format_context(); return 0; }
6960 if $_pkg_config --exists libavformat ; then
6961 _inc_libavformat=$($_pkg_config --cflags libavformat)
6962 _ld_tmp=$($_pkg_config --libs libavformat)
6963 cc_check $_inc_libavformat $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavformat" \
6964 && _libavformat=yes
6965 elif cc_check $_ld_lm -lavformat ; then
6966 extra_ldflags="$extra_ldflags -lavformat"
6967 _libavformat=yes
6970 def_libavformat='#undef CONFIG_LIBAVFORMAT'
6971 test "$_libavformat" = yes && def_libavformat='#define CONFIG_LIBAVFORMAT 1'
6972 echores "$_libavformat"
6974 echocheck "FFmpeg libpostproc"
6975 if test "$_libpostproc" = auto ; then
6976 _libpostproc=no
6977 cat > $TMPC << EOF
6978 #include <inttypes.h>
6979 #include <libpostproc/postprocess.h>
6980 int main(void) { pp_get_mode_by_name_and_quality("de", 0); return 0; }
6982 if $_pkg_config --exists libpostproc ; then
6983 _inc_libpostproc=$($_pkg_config --cflags libpostproc)
6984 _ld_tmp=$($_pkg_config --libs libpostproc)
6985 cc_check $_inc_libpostproc $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libpostproc" \
6986 && _libpostproc=yes
6987 elif cc_check -lpostproc $_ld_lm ; then
6988 extra_ldflags="$extra_ldflags -lpostproc"
6989 _libpostproc=yes
6992 def_libpostproc='#undef CONFIG_LIBPOSTPROC'
6993 test "$_libpostproc" = yes && def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
6994 echores "$_libpostproc"
6996 echocheck "FFmpeg libswscale"
6997 if test "$_libswscale" = auto ; then
6998 _libswscale=no
6999 cat > $TMPC << EOF
7000 #include <libswscale/swscale.h>
7001 int main(void) { sws_scale(0, 0, 0, 0, 0, 0, 0); return 0; }
7003 if $_pkg_config --exists libswscale ; then
7004 _inc_libswscale=$($_pkg_config --cflags libswscale)
7005 _ld_tmp=$($_pkg_config --libs libswscale)
7006 cc_check $_inc_libswscale $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libswscale" \
7007 && _libswscale=yes
7008 elif cc_check -lswscale ; then
7009 extra_ldflags="$extra_ldflags -lswscale"
7010 _libswscale=yes
7013 def_libswscale='#undef CONFIG_LIBSWSCALE'
7014 test "$_libswscale" = yes && def_libswscale='#define CONFIG_LIBSWSCALE 1'
7015 echores "$_libswscale"
7017 def_libswscale_internals="#undef CONFIG_LIBSWSCALE_INTERNALS"
7018 if ! test -z "$_ffmpeg_source" ; then
7019 test "$_libswscale" = yes && def_libswscale_internals="#define CONFIG_LIBSWSCALE_INTERNALS 1" && _libswscale_internals=yes
7022 def_libavcodec_internals="#undef CONFIG_LIBAVCODEC_INTERNALS"
7023 if ! test -z "$_ffmpeg_source" ; then
7024 test "$_libavcodec" = yes && def_libavcodec_internals="#define CONFIG_LIBAVCODEC_INTERNALS 1" && _libavcodec_internals=yes
7027 echocheck "libdv-0.9.5+"
7028 if test "$_libdv" = auto ; then
7029 _libdv=no
7030 cat > $TMPC <<EOF
7031 #include <libdv/dv.h>
7032 int main(void) { dv_encoder_t* enc=dv_encoder_new(1,1,1); return 0; }
7034 cc_check -ldv $_ld_pthread $_ld_lm && _libdv=yes
7036 if test "$_libdv" = yes ; then
7037 def_libdv='#define CONFIG_LIBDV095 1'
7038 extra_ldflags="$extra_ldflags -ldv"
7039 codecmodules="libdv $codecmodules"
7040 else
7041 def_libdv='#undef CONFIG_LIBDV095'
7042 nocodecmodules="libdv $nocodecmodules"
7044 echores "$_libdv"
7047 echocheck "Xvid"
7048 if test "$_xvid" = auto ; then
7049 _xvid=no
7050 cat > $TMPC << EOF
7051 #include <xvid.h>
7052 int main(void) { xvid_global(0, 0, 0, 0); return 0; }
7054 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
7055 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
7056 done
7059 if test "$_xvid" = yes ; then
7060 def_xvid='#define CONFIG_XVID4 1'
7061 codecmodules="xvid $codecmodules"
7062 else
7063 def_xvid='#undef CONFIG_XVID4'
7064 nocodecmodules="xvid $nocodecmodules"
7066 echores "$_xvid"
7068 echocheck "x264"
7069 if test "$_x264" = auto ; then
7070 cat > $TMPC << EOF
7071 #include <inttypes.h>
7072 #include <x264.h>
7073 #if X264_BUILD < 98
7074 #error We do not support old versions of x264. Get the latest from git.
7075 #endif
7076 int main(void) { x264_encoder_open((void*)0); return 0; }
7078 _x264=no
7079 for _ld_x264 in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
7080 cc_check $_ld_x264 && libs_mencoder="$libs_mencoder $_ld_x264" && _x264=yes && break
7081 done
7084 if test "$_x264" = yes ; then
7085 def_x264='#define CONFIG_X264 1'
7086 codecmodules="x264 $codecmodules"
7087 else
7088 def_x264='#undef CONFIG_X264'
7089 nocodecmodules="x264 $nocodecmodules"
7091 echores "$_x264"
7093 echocheck "libnut"
7094 if test "$_libnut" = auto ; then
7095 cat > $TMPC << EOF
7096 #include <stdio.h>
7097 #include <stdlib.h>
7098 #include <inttypes.h>
7099 #include <libnut.h>
7100 nut_context_tt * nut;
7101 int main(void) { (void)nut_error(0); return 0; }
7103 _libnut=no
7104 cc_check -lnut && _libnut=yes
7107 if test "$_libnut" = yes ; then
7108 def_libnut='#define CONFIG_LIBNUT 1'
7109 extra_ldflags="$extra_ldflags -lnut"
7110 else
7111 def_libnut='#undef CONFIG_LIBNUT'
7113 echores "$_libnut"
7115 # These VO checks must be done after libavcodec/libswscale one
7116 echocheck "/dev/mga_vid"
7117 if test "$_mga" = auto ; then
7118 _mga=no
7119 test -c /dev/mga_vid && _mga=yes
7121 if test "$_mga" = yes ; then
7122 if test "$_libswscale_internals" = yes ; then
7123 def_mga='#define CONFIG_MGA 1'
7124 vomodules="mga $vomodules"
7125 else
7126 res_comment="libswscale internal headers are required by mga, sorry"
7127 _mga=no
7128 def_mga='#undef CONFIG_MGA'
7129 novomodules="mga $novomodules"
7131 else
7132 def_mga='#undef CONFIG_MGA'
7133 novomodules="mga $novomodules"
7135 echores "$_mga"
7138 echocheck "xmga"
7139 if test "$_xmga" = auto ; then
7140 _xmga=no
7141 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
7143 if test "$_xmga" = yes ; then
7144 if test "$_libswscale_internals" = yes ; then
7145 def_xmga='#define CONFIG_XMGA 1'
7146 vomodules="xmga $vomodules"
7147 else
7148 res_comment="libswscale internal headers are required by xmga, sorry"
7149 _xmga=no
7150 def_xmga='#undef CONFIG_XMGA'
7151 novomodules="xmga $novomodules"
7153 else
7154 def_xmga='#undef CONFIG_XMGA'
7155 novomodules="xmga $novomodules"
7157 echores "$_xmga"
7159 echocheck "zr"
7160 if test "$_zr" = auto ; then
7161 #36067's seem to identify themselves as 36057PQC's, so the line
7162 #below should work for 36067's and 36057's.
7163 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc/pci ; then
7164 _zr=yes
7165 else
7166 _zr=no
7169 if test "$_zr" = yes ; then
7170 if test "$_libavcodec_internals" = yes ; then
7171 def_zr='#define CONFIG_ZR 1'
7172 vomodules="zr zr2 $vomodules"
7173 else
7174 res_comment="libavcodec internal headers are required by zr, sorry"
7175 novomodules="zr $novomodules"
7176 def_zr='#undef CONFIG_ZR'
7178 else
7179 def_zr='#undef CONFIG_ZR'
7180 novomodules="zr zr2 $novomodules"
7182 echores "$_zr"
7184 # mencoder requires (optional) those libs: libmp3lame
7185 if test "$_mencoder" != no ; then
7187 echocheck "libmp3lame"
7188 def_mp3lame_preset='#undef CONFIG_MP3LAME_PRESET'
7189 def_mp3lame_preset_medium='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
7190 if test "$_mp3lame" = auto ; then
7191 _mp3lame=no
7192 cat > $TMPC <<EOF
7193 #include <lame/lame.h>
7194 int main(void) { lame_version_t lv; (void) lame_init();
7195 get_lame_version_numerical(&lv);
7196 return 0; }
7198 cc_check -lmp3lame $_ld_lm && _mp3lame=yes
7200 if test "$_mp3lame" = yes ; then
7201 def_mp3lame="#define CONFIG_MP3LAME 1"
7202 _ld_mp3lame=-lmp3lame
7203 libs_mencoder="$libs_mencoder $_ld_mp3lame"
7204 cat > $TMPC << EOF
7205 #include <lame/lame.h>
7206 int main(void) { lame_set_preset(NULL, STANDARD_FAST); return 0; }
7208 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset="#define CONFIG_MP3LAME_PRESET 1"
7209 cat > $TMPC << EOF
7210 #include <lame/lame.h>
7211 int main(void) { lame_set_preset(NULL, MEDIUM_FAST); return 0; }
7213 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset_medium="#define CONFIG_MP3LAME_PRESET_MEDIUM 1"
7214 else
7215 def_mp3lame='#undef CONFIG_MP3LAME'
7217 echores "$_mp3lame"
7219 fi # test "$_mencoder" != no
7221 echocheck "mencoder"
7222 if test "$_mencoder" = yes ; then
7223 def_muxers='#define CONFIG_MUXERS 1'
7224 else
7225 def_muxers='#define CONFIG_MUXERS 0'
7227 echores "$_mencoder"
7230 echocheck "UnRAR executable"
7231 if test "$_unrar_exec" = auto ; then
7232 _unrar_exec="yes"
7233 mingw32 && _unrar_exec="no"
7235 if test "$_unrar_exec" = yes ; then
7236 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
7237 else
7238 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
7240 echores "$_unrar_exec"
7242 echocheck "TV interface"
7243 if test "$_tv" = yes ; then
7244 def_tv='#define CONFIG_TV 1'
7245 inputmodules="tv $inputmodules"
7246 else
7247 noinputmodules="tv $noinputmodules"
7248 def_tv='#undef CONFIG_TV'
7250 echores "$_tv"
7253 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
7254 echocheck "*BSD BT848 bt8xx header"
7255 _ioctl_bt848_h=no
7256 for file in "machine/ioctl_bt848.h" \
7257 "dev/bktr/ioctl_bt848.h" \
7258 "dev/video/bktr/ioctl_bt848.h" \
7259 "dev/ic/bt8xx.h" ; do
7260 cat > $TMPC <<EOF
7261 #include <sys/types.h>
7262 #include <sys/ioctl.h>
7263 #include <$file>
7264 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
7266 if cc_check ; then
7267 _ioctl_bt848_h=yes
7268 _ioctl_bt848_h_name="$file"
7269 break;
7271 done
7272 if test "$_ioctl_bt848_h" = yes ; then
7273 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
7274 res_comment="using $_ioctl_bt848_h_name"
7275 else
7276 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
7278 echores "$_ioctl_bt848_h"
7280 echocheck "*BSD ioctl_meteor.h"
7281 _ioctl_meteor_h=no
7282 for file in "machine/ioctl_meteor.h" \
7283 "dev/bktr/ioctl_meteor.h" \
7284 "dev/video/bktr/ioctl_meteor.h" ; do
7285 cat > $TMPC <<EOF
7286 #include <sys/types.h>
7287 #include <$file>
7288 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
7290 if cc_check ; then
7291 _ioctl_meteor_h=yes
7292 _ioctl_meteor_h_name="$file"
7293 break;
7295 done
7296 if test "$_ioctl_meteor_h" = yes ; then
7297 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
7298 res_comment="using $_ioctl_meteor_h_name"
7299 else
7300 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
7302 echores "$_ioctl_meteor_h"
7304 echocheck "*BSD BrookTree 848 TV interface"
7305 if test "$_tv_bsdbt848" = auto ; then
7306 _tv_bsdbt848=no
7307 if test "$_tv" = yes ; then
7308 cat > $TMPC <<EOF
7309 #include <sys/types.h>
7310 $def_ioctl_meteor_h_name
7311 $def_ioctl_bt848_h_name
7312 #ifdef IOCTL_METEOR_H_NAME
7313 #include IOCTL_METEOR_H_NAME
7314 #endif
7315 #ifdef IOCTL_BT848_H_NAME
7316 #include IOCTL_BT848_H_NAME
7317 #endif
7318 int main(void) {
7319 ioctl(0, METEORSINPUT, 0);
7320 ioctl(0, TVTUNER_GETFREQ, 0);
7321 return 0;
7324 cc_check && _tv_bsdbt848=yes
7327 if test "$_tv_bsdbt848" = yes ; then
7328 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
7329 inputmodules="tv-bsdbt848 $inputmodules"
7330 else
7331 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
7332 noinputmodules="tv-bsdbt848 $noinputmodules"
7334 echores "$_tv_bsdbt848"
7335 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
7338 echocheck "DirectShow TV interface"
7339 if test "$_tv_dshow" = auto ; then
7340 _tv_dshow=no
7341 if test "$_tv" = yes && win32 ; then
7342 cat > $TMPC <<EOF
7343 #include <ole2.h>
7344 int main(void) {
7345 void* p;
7346 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
7347 return 0;
7350 cc_check -lole32 -luuid && _tv_dshow=yes
7353 if test "$_tv_dshow" = yes ; then
7354 inputmodules="tv-dshow $inputmodules"
7355 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
7356 extra_ldflags="$extra_ldflags -lole32 -luuid"
7357 else
7358 noinputmodules="tv-dshow $noinputmodules"
7359 def_tv_dshow='#undef CONFIG_TV_DSHOW'
7361 echores "$_tv_dshow"
7364 echocheck "Video 4 Linux TV interface"
7365 if test "$_tv_v4l1" = auto ; then
7366 _tv_v4l1=no
7367 if test "$_tv" = yes && linux ; then
7368 cat > $TMPC <<EOF
7369 #include <stdlib.h>
7370 #include <linux/videodev.h>
7371 int main(void) { return 0; }
7373 cc_check && _tv_v4l1=yes
7376 if test "$_tv_v4l1" = yes ; then
7377 _audio_input=yes
7378 _tv_v4l=yes
7379 def_tv_v4l='#define CONFIG_TV_V4L 1'
7380 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
7381 inputmodules="tv-v4l $inputmodules"
7382 else
7383 noinputmodules="tv-v4l1 $noinputmodules"
7384 def_tv_v4l='#undef CONFIG_TV_V4L'
7386 echores "$_tv_v4l1"
7389 echocheck "Video 4 Linux 2 TV interface"
7390 if test "$_tv_v4l2" = auto ; then
7391 _tv_v4l2=no
7392 if test "$_tv" = yes && linux ; then
7393 cat > $TMPC <<EOF
7394 #include <stdlib.h>
7395 #include <linux/types.h>
7396 #include <linux/videodev2.h>
7397 int main(void) { return 0; }
7399 cc_check && _tv_v4l2=yes
7402 if test "$_tv_v4l2" = yes ; then
7403 _audio_input=yes
7404 _tv_v4l=yes
7405 def_tv_v4l='#define CONFIG_TV_V4L 1'
7406 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
7407 inputmodules="tv-v4l2 $inputmodules"
7408 else
7409 noinputmodules="tv-v4l2 $noinputmodules"
7410 def_tv_v4l2='#undef CONFIG_TV_V4L2'
7412 echores "$_tv_v4l2"
7415 echocheck "Radio interface"
7416 if test "$_radio" = yes ; then
7417 def_radio='#define CONFIG_RADIO 1'
7418 inputmodules="radio $inputmodules"
7419 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
7420 _radio_capture=no
7422 if test "$_radio_capture" = yes ; then
7423 _audio_input=yes
7424 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
7425 else
7426 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7428 else
7429 noinputmodules="radio $noinputmodules"
7430 def_radio='#undef CONFIG_RADIO'
7431 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7432 _radio_capture=no
7434 echores "$_radio"
7435 echocheck "Capture for Radio interface"
7436 echores "$_radio_capture"
7438 echocheck "Video 4 Linux 2 Radio interface"
7439 if test "$_radio_v4l2" = auto ; then
7440 _radio_v4l2=no
7441 if test "$_radio" = yes && linux ; then
7442 cat > $TMPC <<EOF
7443 #include <stdlib.h>
7444 #include <linux/types.h>
7445 #include <linux/videodev2.h>
7446 int main(void) { return 0; }
7448 cc_check && _radio_v4l2=yes
7451 if test "$_radio_v4l2" = yes ; then
7452 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
7453 else
7454 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
7456 echores "$_radio_v4l2"
7458 echocheck "Video 4 Linux Radio interface"
7459 if test "$_radio_v4l" = auto ; then
7460 _radio_v4l=no
7461 if test "$_radio" = yes && linux ; then
7462 cat > $TMPC <<EOF
7463 #include <stdlib.h>
7464 #include <linux/videodev.h>
7465 int main(void) { return 0; }
7467 cc_check && _radio_v4l=yes
7470 if test "$_radio_v4l" = yes ; then
7471 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
7472 else
7473 def_radio_v4l='#undef CONFIG_RADIO_V4L'
7475 echores "$_radio_v4l"
7477 if freebsd || netbsd || openbsd || dragonfly || bsdos \
7478 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
7479 echocheck "*BSD BrookTree 848 Radio interface"
7480 _radio_bsdbt848=no
7481 cat > $TMPC <<EOF
7482 #include <sys/types.h>
7483 $def_ioctl_bt848_h_name
7484 #ifdef IOCTL_BT848_H_NAME
7485 #include IOCTL_BT848_H_NAME
7486 #endif
7487 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
7489 cc_check && _radio_bsdbt848=yes
7490 echores "$_radio_bsdbt848"
7491 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
7493 if test "$_radio_bsdbt848" = yes ; then
7494 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
7495 else
7496 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
7499 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no && \
7500 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
7501 die "Radio driver requires BSD BT848, V4L or V4L2!"
7504 echocheck "Video 4 Linux 2 MPEG PVR interface"
7505 if test "$_pvr" = auto ; then
7506 _pvr=no
7507 if test "$_tv_v4l2" = yes && linux ; then
7508 cat > $TMPC <<EOF
7509 #include <stdlib.h>
7510 #include <inttypes.h>
7511 #include <linux/types.h>
7512 #include <linux/videodev2.h>
7513 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
7515 cc_check && _pvr=yes
7518 if test "$_pvr" = yes ; then
7519 def_pvr='#define CONFIG_PVR 1'
7520 inputmodules="pvr $inputmodules"
7521 else
7522 noinputmodules="pvr $noinputmodules"
7523 def_pvr='#undef CONFIG_PVR'
7525 echores "$_pvr"
7528 echocheck "ftp"
7529 if ! beos && test "$_ftp" = yes ; then
7530 def_ftp='#define CONFIG_FTP 1'
7531 inputmodules="ftp $inputmodules"
7532 else
7533 noinputmodules="ftp $noinputmodules"
7534 def_ftp='#undef CONFIG_FTP'
7536 echores "$_ftp"
7538 echocheck "vstream client"
7539 if test "$_vstream" = auto ; then
7540 _vstream=no
7541 cat > $TMPC <<EOF
7542 #include <vstream-client.h>
7543 void vstream_error(const char *format, ... ) {}
7544 int main(void) { vstream_start(); return 0; }
7546 cc_check -lvstream-client && _vstream=yes
7548 if test "$_vstream" = yes ; then
7549 def_vstream='#define CONFIG_VSTREAM 1'
7550 inputmodules="vstream $inputmodules"
7551 extra_ldflags="$extra_ldflags -lvstream-client"
7552 else
7553 noinputmodules="vstream $noinputmodules"
7554 def_vstream='#undef CONFIG_VSTREAM'
7556 echores "$_vstream"
7559 echocheck "OSD menu"
7560 if test "$_menu" = yes ; then
7561 def_menu='#define CONFIG_MENU 1'
7562 test $_dvbin = "yes" && _menu_dvbin=yes
7563 else
7564 def_menu='#undef CONFIG_MENU'
7565 _menu_dvbin=no
7567 echores "$_menu"
7570 echocheck "Subtitles sorting"
7571 if test "$_sortsub" = yes ; then
7572 def_sortsub='#define CONFIG_SORTSUB 1'
7573 else
7574 def_sortsub='#undef CONFIG_SORTSUB'
7576 echores "$_sortsub"
7579 echocheck "XMMS inputplugin support"
7580 if test "$_xmms" = yes ; then
7581 if ( xmms-config --version ) >/dev/null 2>&1 ; then
7582 _xmmsplugindir=$(xmms-config --input-plugin-dir)
7583 _xmmslibdir=$(xmms-config --exec-prefix)/lib
7584 else
7585 _xmmsplugindir=/usr/lib/xmms/Input
7586 _xmmslibdir=/usr/lib
7589 def_xmms='#define CONFIG_XMMS 1'
7590 if darwin ; then
7591 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
7592 else
7593 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
7595 else
7596 def_xmms='#undef CONFIG_XMMS'
7598 echores "$_xmms"
7600 if test "$_charset" != "noconv" ; then
7601 def_charset="#define MSG_CHARSET \"$_charset\""
7602 else
7603 def_charset="#undef MSG_CHARSET"
7604 _charset="UTF-8"
7607 #############################################################################
7609 echocheck "automatic gdb attach"
7610 if test "$_crash_debug" = yes ; then
7611 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
7612 else
7613 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
7614 _crash_debug=no
7616 echores "$_crash_debug"
7618 echocheck "compiler support for noexecstack"
7619 cat > $TMPC <<EOF
7620 int main(void) { return 0; }
7622 if cc_check -Wl,-z,noexecstack ; then
7623 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
7624 echores "yes"
7625 else
7626 echores "no"
7629 echocheck "linker support for --nxcompat --no-seh --dynamicbase"
7630 if cc_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
7631 extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
7632 echores "yes"
7633 else
7634 echores "no"
7638 # Dynamic linking flags
7639 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
7640 _ld_dl_dynamic=''
7641 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
7642 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
7643 _ld_dl_dynamic='-rdynamic'
7646 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
7647 bsdos && extra_ldflags="$extra_ldflags -ldvd"
7648 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
7650 def_debug='#undef MP_DEBUG'
7651 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
7654 echocheck "joystick"
7655 def_joystick='#undef CONFIG_JOYSTICK'
7656 if test "$_joystick" = yes ; then
7657 if linux ; then
7658 # TODO add some check
7659 def_joystick='#define CONFIG_JOYSTICK 1'
7660 else
7661 _joystick="no"
7662 res_comment="unsupported under $system_name"
7665 echores "$_joystick"
7667 echocheck "lirc"
7668 if test "$_lirc" = auto ; then
7669 _lirc=no
7670 cat > $TMPC <<EOF
7671 #include <lirc/lirc_client.h>
7672 int main(void) { return 0; }
7674 cc_check -llirc_client && _lirc=yes
7676 if test "$_lirc" = yes ; then
7677 def_lirc='#define CONFIG_LIRC 1'
7678 libs_mplayer="$libs_mplayer -llirc_client"
7679 else
7680 def_lirc='#undef CONFIG_LIRC'
7682 echores "$_lirc"
7684 echocheck "lircc"
7685 if test "$_lircc" = auto ; then
7686 _lircc=no
7687 cat > $TMPC <<EOF
7688 #include <lirc/lircc.h>
7689 int main(void) { return 0; }
7691 cc_check -llircc && _lircc=yes
7693 if test "$_lircc" = yes ; then
7694 def_lircc='#define CONFIG_LIRCC 1'
7695 libs_mplayer="$libs_mplayer -llircc"
7696 else
7697 def_lircc='#undef CONFIG_LIRCC'
7699 echores "$_lircc"
7701 if arm; then
7702 # Detect maemo development platform libraries availability (http://www.maemo.org),
7703 # they are used when run on Nokia 770|8x0
7704 echocheck "maemo (Nokia 770|8x0)"
7705 if test "$_maemo" = auto ; then
7706 _maemo=no
7707 cat > $TMPC << EOF
7708 #include <libosso.h>
7709 int main(void) { (void) osso_initialize("", "", 0, NULL); return 0; }
7711 cc_check $($_pkg_config --cflags --libs libosso 2>/dev/null) && _maemo=yes
7713 if test "$_maemo" = yes ; then
7714 def_maemo='#define CONFIG_MAEMO 1'
7715 extra_cflags="$extra_cflags $($_pkg_config --cflags libosso)"
7716 extra_ldflags="$extra_ldflags $($_pkg_config --libs libosso) -lXsp"
7717 else
7718 def_maemo='#undef CONFIG_MAEMO'
7720 echores "$_maemo"
7723 #############################################################################
7725 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
7726 # the OMF format needs to come after the 'extern symbol prefix' check, which
7727 # uses nm.
7728 if os2 ; then
7729 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
7732 # linker paths should be the same for mencoder and mplayer
7733 _ld_tmp=""
7734 for I in $libs_mplayer ; do
7735 _tmp=$(echo $I | sed -e 's/^-L.*$//')
7736 if test -z "$_tmp" ; then
7737 extra_ldflags="$extra_ldflags $I"
7738 else
7739 _ld_tmp="$_ld_tmp $I"
7741 done
7742 libs_mplayer=$_ld_tmp
7745 #############################################################################
7746 # 64 bit file offsets?
7747 if test "$_largefiles" = yes || freebsd ; then
7748 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
7749 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
7750 # dvdread support requires this (for off64_t)
7751 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
7755 CXXFLAGS=" $CFLAGS -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS"
7757 # This must be the last test to be performed. Any other tests following it
7758 # could fail due to linker errors. libdvdnavmini is intentionally not linked
7759 # against libdvdread (to permit MPlayer to use its own copy of the library).
7760 # So any compilation using the flags added here but not linking against
7761 # libdvdread can fail.
7762 echocheck "DVD support (libdvdnav)"
7763 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
7764 _dvdnav=no
7766 dvdnav_internal=no
7767 if test "$_dvdnav" = auto ; then
7768 if test "$_dvdread_internal" = yes ; then
7769 _dvdnav=yes
7770 dvdnav_internal=yes
7771 res_comment="internal"
7772 else
7773 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
7776 if test "$_dvdnav" = auto ; then
7777 cat > $TMPC <<EOF
7778 #include <inttypes.h>
7779 #include <dvdnav/dvdnav.h>
7780 int main(void) { dvdnav_t *dvd=0; return 0; }
7782 _dvdnav=no
7783 _dvdnavdir=$($_dvdnavconfig --cflags)
7784 _dvdnavlibs=$($_dvdnavconfig --libs)
7785 cc_check $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
7787 if test "$_dvdnav" = yes ; then
7788 _largefiles=yes
7789 def_dvdnav='#define CONFIG_DVDNAV 1'
7790 if test "$dvdnav_internal" = yes ; then
7791 cflags_libdvdnav="-Ilibdvdnav"
7792 inputmodules="dvdnav(internal) $inputmodules"
7793 else
7794 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
7795 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
7796 inputmodules="dvdnav $inputmodules"
7798 else
7799 def_dvdnav='#undef CONFIG_DVDNAV'
7800 noinputmodules="dvdnav $noinputmodules"
7802 echores "$_dvdnav"
7804 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
7805 # Read dvdnav comment above.
7807 mak_enable () {
7808 list=$(echo $1 | tr '[a-z]' '[A-Z]')
7809 item=$(echo $2 | tr '[a-z]' '[A-Z]')
7810 nprefix=$3;
7811 for part in $list; do
7812 if $(echo $item | grep -q -E "(^| )$part($| )"); then
7813 echo "${nprefix}_$part = yes"
7815 done
7818 #############################################################################
7819 echo "Creating config.mak"
7820 cat > config.mak << EOF
7821 # -------- Generated by configure -----------
7823 # Ensure that locale settings do not interfere with shell commands.
7824 export LC_ALL = C
7826 CONFIGURATION = $configuration
7828 CHARSET = $_charset
7829 DOC_LANGS = $language_doc
7830 DOC_LANG_ALL = $doc_lang_all
7831 MAN_LANGS = $language_man
7832 MAN_LANG_ALL = $man_lang_all
7833 MSG_LANGS = $language_msg
7834 MSG_LANG_ALL = $msg_lang_all
7836 prefix = \$(DESTDIR)$_prefix
7837 BINDIR = \$(DESTDIR)$_bindir
7838 DATADIR = \$(DESTDIR)$_datadir
7839 LIBDIR = \$(DESTDIR)$_libdir
7840 MANDIR = \$(DESTDIR)$_mandir
7841 CONFDIR = \$(DESTDIR)$_confdir
7842 LOCALEDIR = \$(DESTDIR)$_localedir
7844 AR = $_ar
7845 AS = $_cc
7846 CC = $_cc
7847 CXX = $_cc
7848 HOST_CC = $_host_cc
7849 INSTALL = $_install
7850 INSTALLSTRIP = $_install_strip
7851 WINDRES = $_windres
7853 CFLAGS = $CFLAGS $extra_cflags
7854 CXXFLAGS = $CXXFLAGS $extra_cflags $extra_cxxflags
7856 CFLAGS_DHAHELPER = $cflags_dhahelper
7857 CFLAGS_FAAD_FIXED = $cflags_faad_fixed
7858 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
7859 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
7860 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
7861 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
7862 CFLAGS_STACKREALIGN = $cflags_stackrealign
7863 CFLAGS_SVGALIB_HELPER = $cflags_svgalib_helper
7864 CFLAGS_TREMOR_LOW = $cflags_tremor_low
7866 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
7867 EXTRALIBS_MPLAYER = $libs_mplayer
7868 EXTRALIBS_MENCODER = $libs_mencoder
7870 GETCH = $_getch
7871 TIMER = $_timer
7873 EXESUF = $_exesuf
7874 EXESUFS_ALL = .exe
7876 ARCH = $arch
7877 $(mak_enable "$arch_all" "$arch" ARCH)
7878 $(mak_enable "$subarch_all" "$subarch" ARCH)
7879 $(mak_enable "$cpuexts_all" "$cpuexts" HAVE)
7881 MENCODER = $_mencoder
7882 MPLAYER = $_mplayer
7884 NEED_GETTIMEOFDAY = $_need_gettimeofday
7885 NEED_GLOB = $_need_glob
7886 NEED_MMAP = $_need_mmap
7887 NEED_SETENV = $_need_setenv
7888 NEED_SHMEM = $_need_shmem
7889 NEED_STRSEP = $_need_strsep
7890 NEED_SWAB = $_need_swab
7891 NEED_VSSCANF = $_need_vsscanf
7893 # features
7894 3DFX = $_3dfx
7895 AA = $_aa
7896 ALSA1X = $_alsa1x
7897 ALSA9 = $_alsa9
7898 ALSA5 = $_alsa5
7899 APPLE_IR = $_apple_ir
7900 APPLE_REMOTE = $_apple_remote
7901 ARTS = $_arts
7902 AUDIO_INPUT = $_audio_input
7903 BITMAP_FONT = $_bitmap_font
7904 BL = $_bl
7905 CACA = $_caca
7906 CDDA = $_cdda
7907 CDDB = $_cddb
7908 COREAUDIO = $_coreaudio
7909 COREVIDEO = $_corevideo
7910 DART = $_dart
7911 DFBMGA = $_dfbmga
7912 DGA = $_dga
7913 DIRECT3D = $_direct3d
7914 DIRECTFB = $_directfb
7915 DIRECTX = $_directx
7916 DVBIN = $_dvbin
7917 DVDNAV = $_dvdnav
7918 DVDNAV_INTERNAL = $dvdnav_internal
7919 DVDREAD = $_dvdread
7920 DVDREAD_INTERNAL = $_dvdread_internal
7921 DXR2 = $_dxr2
7922 DXR3 = $_dxr3
7923 ESD = $_esd
7924 FAAC=$_faac
7925 FAAD = $_faad
7926 FAAD_INTERNAL = $_faad_internal
7927 FASTMEMCPY = $_fastmemcpy
7928 FBDEV = $_fbdev
7929 FREETYPE = $_freetype
7930 FTP = $_ftp
7931 GIF = $_gif
7932 GGI = $_ggi
7933 GL = $_gl
7934 GL_WIN32 = $_gl_win32
7935 GL_X11 = $_gl_x11
7936 GL_SDL = $_gl_sdl
7937 MATRIXVIEW = $matrixview
7938 HAVE_POSIX_SELECT = $_posix_select
7939 HAVE_SYS_MMAN_H = $_mman
7940 IVTV = $_ivtv
7941 JACK = $_jack
7942 JOYSTICK = $_joystick
7943 JPEG = $_jpeg
7944 KAI = $_kai
7945 KVA = $_kva
7946 LADSPA = $_ladspa
7947 LIBA52 = $_liba52
7948 LIBASS = $_ass
7949 LIBBS2B = $_libbs2b
7950 LIBDCA = $_libdca
7951 LIBDV = $_libdv
7952 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
7953 LIBLZO = $_liblzo
7954 LIBMAD = $_mad
7955 LIBMENU = $_menu
7956 LIBMENU_DVBIN = $_menu_dvbin
7957 LIBMPEG2 = $_libmpeg2
7958 LIBNEMESI = $_nemesi
7959 LIBNUT = $_libnut
7960 LIBSMBCLIENT = $_smb
7961 LIBTHEORA = $_theora
7962 LIRC = $_lirc
7963 LIVE555 = $_live
7964 MACOSX_FINDER = $_macosx_finder
7965 MD5SUM = $_md5sum
7966 MGA = $_mga
7967 MNG = $_mng
7968 MP3LAME = $_mp3lame
7969 MP3LIB = $_mp3lib
7970 MUSEPACK = $_musepack
7971 NAS = $_nas
7972 NATIVE_RTSP = $_native_rtsp
7973 NETWORK = $_network
7974 OPENAL = $_openal
7975 OSS = $_ossaudio
7976 PE_EXECUTABLE = $_pe_executable
7977 PNG = $_png
7978 PNM = $_pnm
7979 PRIORITY = $_priority
7980 PULSE = $_pulse
7981 PVR = $_pvr
7982 QTX_CODECS = $_qtx
7983 QTX_CODECS_WIN32 = $_qtx_codecs_win32
7984 QTX_EMULATION = $_qtx_emulation
7985 QUARTZ = $_quartz
7986 RADIO=$_radio
7987 RADIO_CAPTURE=$_radio_capture
7988 REAL_CODECS = $_real
7989 S3FB = $_s3fb
7990 SDL = $_sdl
7991 SPEEX = $_speex
7992 STREAM_CACHE = $_stream_cache
7993 SGIAUDIO = $_sgiaudio
7994 SUNAUDIO = $_sunaudio
7995 SVGA = $_svga
7996 TDFXFB = $_tdfxfb
7997 TDFXVID = $_tdfxvid
7998 TGA = $_tga
7999 TOOLAME=$_toolame
8000 TREMOR_INTERNAL = $_tremor_internal
8001 TV = $_tv
8002 TV_BSDBT848 = $_tv_bsdbt848
8003 TV_DSHOW = $_tv_dshow
8004 TV_V4L = $_tv_v4l
8005 TV_V4L1 = $_tv_v4l1
8006 TV_V4L2 = $_tv_v4l2
8007 TWOLAME=$_twolame
8008 UNRAR_EXEC = $_unrar_exec
8009 V4L2 = $_v4l2
8010 VCD = $_vcd
8011 VDPAU = $_vdpau
8012 VESA = $_vesa
8013 VIDIX = $_vidix
8014 VIDIX_PCIDB = $_vidix_pcidb_val
8015 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
8016 VIDIX_IVTV=$_vidix_drv_ivtv
8017 VIDIX_MACH64=$_vidix_drv_mach64
8018 VIDIX_MGA=$_vidix_drv_mga
8019 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
8020 VIDIX_NVIDIA=$_vidix_drv_nvidia
8021 VIDIX_PM2=$_vidix_drv_pm2
8022 VIDIX_PM3=$_vidix_drv_pm3
8023 VIDIX_RADEON=$_vidix_drv_radeon
8024 VIDIX_RAGE128=$_vidix_drv_rage128
8025 VIDIX_S3=$_vidix_drv_s3
8026 VIDIX_SH_VEU=$_vidix_drv_sh_veu
8027 VIDIX_SIS=$_vidix_drv_sis
8028 VIDIX_UNICHROME=$_vidix_drv_unichrome
8029 VORBIS = $_vorbis
8030 VSTREAM = $_vstream
8031 WII = $_wii
8032 WIN32DLL = $_win32dll
8033 WIN32WAVEOUT = $_win32waveout
8034 WIN32_EMULATION = $_win32_emulation
8035 WINVIDIX = $winvidix
8036 X11 = $_x11
8037 X264 = $_x264
8038 XANIM_CODECS = $_xanim
8039 XMGA = $_xmga
8040 XMMS_PLUGINS = $_xmms
8041 XV = $_xv
8042 XVID4 = $_xvid
8043 XVIDIX = $xvidix
8044 XVMC = $_xvmc
8045 XVR100 = $_xvr100
8046 YUV4MPEG = $_yuv4mpeg
8047 ZR = $_zr
8049 # FFmpeg
8050 LIBAVUTIL = $_libavutil
8051 LIBAVCODEC = $_libavcodec
8052 LIBAVFORMAT = $_libavformat
8053 LIBPOSTPROC = $_libpostproc
8054 LIBSWSCALE = $_libswscale
8055 LIBAVCODEC_INTERNALS = $_libavcodec_internals
8056 LIBSWSCALE_INTERNALS = $_libswscale_internals
8057 FFMPEG_SOURCE_PATH = $_ffmpeg_source
8059 RANLIB = $_ranlib
8060 YASM = $_yasm
8061 YASMFLAGS = $YASMFLAGS
8063 # Some FFmpeg codecs depend on these. Enable them unconditionally for now.
8064 CONFIG_AANDCT = yes
8065 CONFIG_FFT = yes
8066 CONFIG_GOLOMB = yes
8067 CONFIG_H264DSP = yes
8068 CONFIG_LPC = yes
8069 CONFIG_MDCT = yes
8070 CONFIG_RDFT = yes
8072 CONFIG_BZLIB = $bzlib
8073 CONFIG_ENCODERS = yes
8074 CONFIG_GPL = yes
8075 CONFIG_MLIB = $_mlib
8076 CONFIG_MUXERS = $_mencoder
8077 CONFIG_VDPAU = $_vdpau
8078 CONFIG_XVMC = $_xvmc
8079 CONFIG_ZLIB = $_zlib
8081 HAVE_PTHREADS = $_pthreads
8082 HAVE_SHM = $_shm
8083 HAVE_W32THREADS = $_w32threads
8084 HAVE_YASM = $have_yasm
8088 #############################################################################
8090 ff_config_enable () {
8091 list=$(echo $1 | tr '[a-z]' '[A-Z]')
8092 item=$(echo $2 | tr '[a-z]' '[A-Z]')
8093 _nprefix=$3;
8094 test -z "$_nprefix" && _nprefix='CONFIG'
8095 for part in $list; do
8096 if $(echo $item | grep -q -E "(^| )$part($| )"); then
8097 echo "#define ${_nprefix}_$part 1"
8098 else
8099 echo "#define ${_nprefix}_$part 0"
8101 done
8104 echo "Creating config.h"
8105 cat > $TMPH << EOF
8106 /*----------------------------------------------------------------------------
8107 ** This file has been automatically generated by configure any changes in it
8108 ** will be lost when you run configure again.
8109 ** Instead of modifying definitions here, use the --enable/--disable options
8110 ** of the configure script! See ./configure --help for details.
8111 *---------------------------------------------------------------------------*/
8113 #ifndef MPLAYER_CONFIG_H
8114 #define MPLAYER_CONFIG_H
8116 /* Undefine this if you do not want to select mono audio (left or right)
8117 with a stereo MPEG layer 2/3 audio stream. The command line option
8118 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
8119 right-only), with 0 being the default.
8121 #define CONFIG_FAKE_MONO 1
8123 /* set up audio OUTBURST. Do not change this! */
8124 #define OUTBURST 512
8126 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
8127 #undef FAST_OSD
8128 #undef FAST_OSD_TABLE
8130 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
8131 #define MPEG12_POSTPROC 1
8132 #define ATTRIBUTE_ALIGNED_MAX 16
8136 #define CONFIGURATION "$configuration"
8138 #define MPLAYER_DATADIR "$_datadir"
8139 #define MPLAYER_CONFDIR "$_confdir"
8140 #define MPLAYER_LIBDIR "$_libdir"
8141 #define MPLAYER_LOCALEDIR "$_localedir"
8143 $def_translation
8145 /* definitions needed by included libraries */
8146 #define HAVE_INTTYPES_H 1
8147 /* libmpeg2 + FFmpeg */
8148 $def_fast_inttypes
8149 /* libdvdcss */
8150 #define HAVE_ERRNO_H 1
8151 /* libdvdcss + libdvdread */
8152 #define HAVE_LIMITS_H 1
8153 /* libdvdcss + libfaad2 */
8154 #define HAVE_UNISTD_H 1
8155 /* libfaad2 + libdvdread */
8156 #define STDC_HEADERS 1
8157 #define HAVE_MEMCPY 1
8158 /* libfaad2 */
8159 #define HAVE_STRING_H 1
8160 #define HAVE_STRINGS_H 1
8161 #define HAVE_SYS_STAT_H 1
8162 #define HAVE_SYS_TYPES_H 1
8163 /* libdvdnav */
8164 #define READ_CACHE_TRACE 0
8165 /* libdvdread */
8166 #define HAVE_DLFCN_H 1
8167 $def_dvdcss
8170 /* system headers */
8171 $def_alloca_h
8172 $def_alsa_asoundlib_h
8173 $def_altivec_h
8174 $def_malloc_h
8175 $def_mman_h
8176 $def_mman_has_map_failed
8177 $def_soundcard_h
8178 $def_sys_asoundlib_h
8179 $def_sys_soundcard_h
8180 $def_sys_sysinfo_h
8181 $def_termios_h
8182 $def_termios_sys_h
8183 $def_winsock2_h
8186 /* system functions */
8187 $def_gethostbyname2
8188 $def_gettimeofday
8189 $def_glob
8190 $def_langinfo
8191 $def_lrintf
8192 $def_map_memalign
8193 $def_memalign
8194 $def_nanosleep
8195 $def_posix_select
8196 $def_select
8197 $def_setenv
8198 $def_setmode
8199 $def_shm
8200 $def_strsep
8201 $def_swab
8202 $def_sysi86
8203 $def_sysi86_iv
8204 $def_termcap
8205 $def_termios
8206 $def_vsscanf
8209 /* system-specific features */
8210 $def_asmalign_pot
8211 $def_builtin_expect
8212 $def_dl
8213 $def_dos_paths
8214 $def_extern_asm
8215 $def_extern_prefix
8216 $def_iconv
8217 $def_kstat
8218 $def_macosx_bundle
8219 $def_macosx_finder
8220 $def_maemo
8221 $def_named_asm_args
8222 $def_priority
8223 $def_quicktime
8224 $def_restrict_keyword
8225 $def_rtc
8226 $def_unrar_exec
8229 /* configurable options */
8230 $def_charset
8231 $def_crash_debug
8232 $def_debug
8233 $def_dynamic_plugins
8234 $def_fastmemcpy
8235 $def_menu
8236 $def_runtime_cpudetection
8237 $def_sighandler
8238 $def_sortsub
8239 $def_stream_cache
8240 $def_pthread_cache
8243 /* CPU stuff */
8244 #define __CPU__ $iproc
8245 $def_words_endian
8246 $def_bigendian
8247 $(ff_config_enable "$arch_all" "$arch" "ARCH")
8248 $(ff_config_enable "$subarch_all" "$subarch" "ARCH")
8249 $(ff_config_enable "$cpuexts_all" "$cpuexts" "HAVE")
8252 /* DVD/VCD/CD */
8253 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
8254 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
8255 $def_bsdi_dvd
8256 $def_cddb
8257 $def_cdio
8258 $def_cdparanoia
8259 $def_cdrom
8260 $def_dvd
8261 $def_dvd_bsd
8262 $def_dvd_darwin
8263 $def_dvd_linux
8264 $def_dvd_openbsd
8265 $def_dvdio
8266 $def_dvdnav
8267 $def_dvdread
8268 $def_hpux_scsi_h
8269 $def_libcdio
8270 $def_sol_scsi_h
8271 $def_vcd
8274 /* codec libraries */
8275 $def_faac
8276 $def_faad
8277 $def_faad_internal
8278 $def_liba52
8279 $def_libdca
8280 $def_libdv
8281 $def_liblzo
8282 $def_libmpeg2
8283 $def_mad
8284 $def_mp3lame
8285 $def_mp3lame_preset
8286 $def_mp3lame_preset_medium
8287 $def_mp3lib
8288 $def_musepack
8289 $def_speex
8290 $def_theora
8291 $def_toolame
8292 $def_tremor
8293 $def_twolame
8294 $def_vorbis
8295 $def_x264
8296 $def_xvid
8297 $def_zlib
8299 $def_libnut
8302 /* binary codecs */
8303 $def_qtx
8304 $def_qtx_win32
8305 $def_real
8306 $def_win32_loader
8307 $def_win32dll
8308 $def_xanim
8309 $def_xmms
8310 #define BINARY_CODECS_PATH "$_codecsdir"
8311 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
8314 /* Audio output drivers */
8315 $def_alsa
8316 $def_alsa1x
8317 $def_alsa5
8318 $def_alsa9
8319 $def_arts
8320 $def_coreaudio
8321 $def_dart
8322 $def_esd
8323 $def_esd_latency
8324 $def_jack
8325 $def_kai
8326 $def_nas
8327 $def_openal
8328 $def_openal_h
8329 $def_ossaudio
8330 $def_ossaudio_devdsp
8331 $def_ossaudio_devmixer
8332 $def_pulse
8333 $def_sgiaudio
8334 $def_sunaudio
8335 $def_win32waveout
8337 $def_ladspa
8338 $def_libbs2b
8341 /* input */
8342 $def_apple_ir
8343 $def_apple_remote
8344 $def_ioctl_bt848_h_name
8345 $def_ioctl_meteor_h_name
8346 $def_joystick
8347 $def_lirc
8348 $def_lircc
8349 $def_pvr
8350 $def_radio
8351 $def_radio_bsdbt848
8352 $def_radio_capture
8353 $def_radio_v4l
8354 $def_radio_v4l2
8355 $def_tv
8356 $def_tv_bsdbt848
8357 $def_tv_dshow
8358 $def_tv_v4l
8359 $def_tv_v4l1
8360 $def_tv_v4l2
8363 /* font stuff */
8364 $def_ass
8365 $def_bitmap_font
8366 $def_enca
8367 $def_fontconfig
8368 $def_freetype
8369 $def_fribidi
8372 /* networking */
8373 $def_closesocket
8374 $def_ftp
8375 $def_inet6
8376 $def_inet_aton
8377 $def_inet_pton
8378 $def_live
8379 $def_nemesi
8380 $def_network
8381 $def_smb
8382 $def_socklen_t
8383 $def_vstream
8386 /* libvo options */
8387 $def_3dfx
8388 $def_aa
8389 $def_bl
8390 $def_caca
8391 $def_corevideo
8392 $def_dfbmga
8393 $def_dga
8394 $def_dga1
8395 $def_dga2
8396 $def_direct3d
8397 $def_directfb
8398 $def_directfb_version
8399 $def_directx
8400 $def_dvb
8401 $def_dvbin
8402 $def_dxr2
8403 $def_dxr3
8404 $def_fbdev
8405 $def_ggi
8406 $def_ggiwmh
8407 $def_gif
8408 $def_gif_4
8409 $def_gif_tvt_hack
8410 $def_gl
8411 $def_gl_win32
8412 $def_gl_x11
8413 $def_gl_sdl
8414 $def_matrixview
8415 $def_ivtv
8416 $def_jpeg
8417 $def_kva
8418 $def_md5sum
8419 $def_mga
8420 $def_mng
8421 $def_png
8422 $def_pnm
8423 $def_quartz
8424 $def_s3fb
8425 $def_sdl
8426 $def_sdl_sdl_h
8427 $def_svga
8428 $def_tdfxfb
8429 $def_tdfxvid
8430 $def_tga
8431 $def_v4l2
8432 $def_vdpau
8433 $def_vesa
8434 $def_vidix
8435 $def_vidix_drv_cyberblade
8436 $def_vidix_drv_ivtv
8437 $def_vidix_drv_mach64
8438 $def_vidix_drv_mga
8439 $def_vidix_drv_mga_crtc2
8440 $def_vidix_drv_nvidia
8441 $def_vidix_drv_pm3
8442 $def_vidix_drv_radeon
8443 $def_vidix_drv_rage128
8444 $def_vidix_drv_s3
8445 $def_vidix_drv_sh_veu
8446 $def_vidix_drv_sis
8447 $def_vidix_drv_unichrome
8448 $def_vidix_pfx
8449 $def_vm
8450 $def_wii
8451 $def_x11
8452 $def_xdpms
8453 $def_xf86keysym
8454 $def_xinerama
8455 $def_xmga
8456 $def_xss
8457 $def_xv
8458 $def_xvmc
8459 $def_xvr100
8460 $def_yuv4mpeg
8461 $def_zr
8464 /* FFmpeg */
8465 $def_libavcodec
8466 $def_libavformat
8467 $def_libavutil
8468 $def_libpostproc
8469 $def_libswscale
8470 $def_libavcodec_internals
8471 $def_libswscale_internals
8473 #define CONFIG_DECODERS 1
8474 #define CONFIG_ENCODERS 1
8475 #define CONFIG_DEMUXERS 1
8476 $def_muxers
8478 $def_arpa_inet_h
8479 $def_bswap
8480 $def_bzlib
8481 $def_dcbzl
8482 $def_exp2
8483 $def_exp2f
8484 $def_fast_64bit
8485 $def_fast_unaligned
8486 $def_llrint
8487 $def_log2
8488 $def_log2f
8489 $def_lrint
8490 $def_memalign_hack
8491 $def_mlib
8492 $def_mkstemp
8493 $def_posix_memalign
8494 $def_pthreads
8495 $def_round
8496 $def_roundf
8497 $def_ten_operands
8498 $def_threads
8499 $def_truncf
8500 $def_xform_asm
8501 $def_yasm
8503 #define CONFIG_FASTDIV 0
8504 #define CONFIG_FFSERVER 0
8505 #define CONFIG_GPL 1
8506 #define CONFIG_GRAY 0
8507 #define CONFIG_HARDCODED_TABLES 0
8508 #define CONFIG_LIBVORBIS 0
8509 #define CONFIG_POWERPC_PERF 0
8510 #define CONFIG_SMALL 0
8511 #define CONFIG_SWSCALE_ALPHA 1
8513 #define HAVE_ATTRIBUTE_PACKED 1
8514 #define HAVE_GETHRTIME 0
8515 #define HAVE_INLINE_ASM 1
8516 #define HAVE_LDBRX 0
8517 #define HAVE_POLL_H 1
8518 #define HAVE_PPC4XX 0
8519 #define HAVE_VFP_ARGS 1
8520 #define HAVE_VIRTUALALLOC 0
8522 /* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */
8523 #define CONFIG_AANDCT 1
8524 #define CONFIG_DCT 1
8525 #define CONFIG_DWT 1
8526 #define CONFIG_FFT 1
8527 #define CONFIG_GOLOMB 1
8528 #define CONFIG_H264DSP 1
8529 #define CONFIG_LPC 1
8530 #define CONFIG_MDCT 1
8531 #define CONFIG_RDFT 1
8533 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
8534 $def_ebx_available
8535 #ifndef MP_DEBUG
8536 #define HAVE_EBP_AVAILABLE 1
8537 #else
8538 #define HAVE_EBP_AVAILABLE 0
8539 #endif
8541 #define CONFIG_H263_VAAPI_HWACCEL 0
8542 #define CONFIG_MPEG2_VAAPI_HWACCEL 0
8543 #define CONFIG_MPEG4_VAAPI_HWACCEL 0
8544 #define CONFIG_H264_VAAPI_HWACCEL 0
8545 #define CONFIG_VC1_VAAPI_HWACCEL 0
8546 #define CONFIG_WMV3_VAAPI_HWACCEL 0
8548 #endif /* MPLAYER_CONFIG_H */
8551 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
8552 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
8554 #############################################################################
8556 ./version.sh `$_cc -dumpversion`
8558 cat << EOF
8560 Config files successfully generated by ./configure $configuration !
8562 Install prefix: $_prefix
8563 Data directory: $_datadir
8564 Config direct.: $_confdir
8566 Byte order: $_byte_order
8567 Optimizing for: $_optimizing
8569 Languages:
8570 Messages (in addition to English): $language_msg
8571 Manual pages: $language_man
8572 Documentation: $language_doc
8574 Enabled optional drivers:
8575 Input: $inputmodules
8576 Codecs: $codecmodules
8577 Audio output: $aomodules
8578 Video output: $vomodules
8580 Disabled optional drivers:
8581 Input: $noinputmodules
8582 Codecs: $nocodecmodules
8583 Audio output: $noaomodules
8584 Video output: $novomodules
8586 'config.h' and 'config.mak' contain your configuration options.
8587 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
8588 compile *** DO NOT REPORT BUGS if you tweak these files ***
8590 'make' will now compile MPlayer and 'make install' will install it.
8591 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
8596 if test "$_mtrr" = yes ; then
8597 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$doc_lang/video.html#mtrr)"
8598 echo
8601 if ! x86_32; then
8602 cat <<EOF
8603 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
8604 operating system ($system_name). You may encounter a few files that cannot
8605 be played due to missing open source video/audio codec support.
8611 cat <<EOF
8612 Check $TMPLOG if you wonder why an autodetection failed (make sure
8613 development headers/packages are installed).
8615 NOTE: The --enable-* parameters unconditionally force options on, completely
8616 skipping autodetection. This behavior is unlike what you may be used to from
8617 autoconf-based configure scripts that can decide to override you. This greater
8618 level of control comes at a price. You may have to provide the correct compiler
8619 and linker flags yourself.
8620 If you used one of these options (except --enable-menu and similar ones that
8621 turn on internal features) and experience a compilation or linking failure,
8622 make sure you have passed the necessary compiler/linker flags to configure.
8624 If you suspect a bug, please read DOCS/HTML/$doc_lang/bugreports.html.
8628 if test "$_warn_CFLAGS" = yes; then
8629 cat <<EOF
8631 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
8632 but:
8634 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
8636 It is strongly recommended to let MPlayer choose the correct CFLAGS!
8637 To do so, execute 'CFLAGS= ./configure <options>'
8642 # Last move:
8643 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP" "$TMPH"