Skip svn change r31285
[mplayer/glamo.git] / configure
blobd1d21d7b039d018f0b6b677870268490d90d8b75
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" = "k8"; then
1969 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1971 # This will fail if gcc version < 3.3, which is ok because earlier
1972 # versions don't really support 64-bit on amd64.
1973 # Is this a valid assumption? -Corey
1974 if test "$proc" = "athlon-xp"; then
1975 cc_check -march=$proc $cpuopt=$proc || proc=error
1977 # --- Intel processors ---
1978 if test "$proc" = "core2"; then
1979 cc_check -march=$proc $cpuopt=$proc || proc=x86-64
1981 if test "$proc" = "x86-64"; then
1982 cc_check -march=$proc $cpuopt=$proc || proc=nocona
1984 if test "$proc" = "nocona"; then
1985 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
1987 if test "$proc" = "pentium4"; then
1988 cc_check -march=$proc $cpuopt=$proc || proc=error
1991 _march="-march=$proc"
1992 _mcpu="$cpuopt=$proc"
1993 if test "$proc" = "error" ; then
1994 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1995 _mcpu=""
1996 _march=""
1998 else # if test "$_runtime_cpudetection" = no
1999 # x86-64 is an undocumented option, an intersection of k8 and nocona.
2000 _march="-march=x86-64"
2001 _mcpu="$cpuopt=generic"
2002 cc_check $_mcpu || _mcpu="x86-64"
2003 cc_check $_mcpu || _mcpu=""
2004 cc_check $_march $_mcpu || _march=""
2007 _optimizing="$proc"
2008 test $_fast_cmov = "auto" && _fast_cmov=yes
2009 test $_fast_clz = "auto" && _fast_clz=yes
2011 echores "$proc"
2014 sparc|sparc64)
2015 arch='sparc'
2016 iproc='sparc'
2017 if test "$host_arch" = "sparc64" ; then
2018 _vis='yes'
2019 proc='ultrasparc'
2020 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2021 elif sunos ; then
2022 echocheck "CPU type"
2023 karch=$(uname -m)
2024 case "$(echo $karch)" in
2025 sun4) proc=v7 ;;
2026 sun4c) proc=v7 ;;
2027 sun4d) proc=v8 ;;
2028 sun4m) proc=v8 ;;
2029 sun4u) proc=ultrasparc _vis='yes' ;;
2030 sun4v) proc=v9 ;;
2031 *) proc=v8 ;;
2032 esac
2033 echores "$proc"
2034 else
2035 proc=v8
2037 _mcpu="-mcpu=$proc"
2038 _optimizing="$proc"
2041 arm*)
2042 arch='arm'
2043 iproc='arm'
2046 avr32)
2047 arch='avr32'
2048 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2049 iproc='avr32'
2050 test $_fast_clz = "auto" && _fast_clz=yes
2053 sh|sh4)
2054 arch='sh4'
2055 iproc='sh4'
2058 ppc|ppc64|powerpc|powerpc64)
2059 arch='ppc'
2060 def_dcbzl='#define HAVE_DCBZL 0'
2061 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2062 iproc='ppc'
2064 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2065 subarch='ppc64'
2066 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2068 echocheck "CPU type"
2069 case $system_name in
2070 Linux)
2071 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2072 if test -n "$($_cpuinfo | grep altivec)"; then
2073 test $_altivec = auto && _altivec=yes
2076 Darwin)
2077 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2078 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2079 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2080 test $_altivec = auto && _altivec=yes
2083 NetBSD)
2084 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2085 case $cc_version in
2086 2*|3.0*|3.1*|3.2*|3.3*)
2089 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2090 test $_altivec = auto && _altivec=yes
2093 esac
2095 AIX)
2096 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2098 esac
2099 if test "$_altivec" = yes; then
2100 echores "$proc altivec"
2101 else
2102 _altivec=no
2103 echores "$proc"
2106 echocheck "GCC & CPU optimization abilities"
2108 if test -n "$proc"; then
2109 case "$proc" in
2110 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2111 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2112 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2113 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2114 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2115 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2116 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2117 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2118 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2119 *) ;;
2120 esac
2121 # gcc 3.1(.1) and up supports 7400 and 7450
2122 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2123 case "$proc" in
2124 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2125 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2126 *) ;;
2127 esac
2129 # gcc 3.2 and up supports 970
2130 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2131 case "$proc" in
2132 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2133 def_dcbzl='#define HAVE_DCBZL 1' ;;
2134 *) ;;
2135 esac
2137 # gcc 3.3 and up supports POWER4
2138 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2139 case "$proc" in
2140 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2141 *) ;;
2142 esac
2144 # gcc 3.4 and up supports 440*
2145 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2146 case "$proc" in
2147 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2148 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2149 *) ;;
2150 esac
2152 # gcc 4.0 and up supports POWER5
2153 if test "$_cc_major" -ge "4"; then
2154 case "$proc" in
2155 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2156 *) ;;
2157 esac
2161 if test -n "$_mcpu"; then
2162 _optimizing=$(echo $_mcpu | cut -c 8-)
2163 echores "$_optimizing"
2164 else
2165 echores "none"
2168 test $_fast_clz = "auto" && _fast_clz=yes
2172 alpha*)
2173 arch='alpha'
2174 iproc='alpha'
2175 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2177 echocheck "CPU type"
2178 cat > $TMPC << EOF
2179 int main(void) {
2180 unsigned long ver, mask;
2181 __asm__ ("implver %0" : "=r" (ver));
2182 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2183 printf("%ld-%x\n", ver, ~mask);
2184 return 0;
2187 $_cc -o "$TMPEXE" "$TMPC"
2188 case $("$TMPEXE") in
2190 0-0) proc="ev4"; _mvi="0";;
2191 1-0) proc="ev5"; _mvi="0";;
2192 1-1) proc="ev56"; _mvi="0";;
2193 1-101) proc="pca56"; _mvi="1";;
2194 2-303) proc="ev6"; _mvi="1";;
2195 2-307) proc="ev67"; _mvi="1";;
2196 2-1307) proc="ev68"; _mvi="1";;
2197 esac
2198 echores "$proc"
2200 echocheck "GCC & CPU optimization abilities"
2201 if test "$proc" = "ev68" ; then
2202 cc_check -mcpu=$proc || proc=ev67
2204 if test "$proc" = "ev67" ; then
2205 cc_check -mcpu=$proc || proc=ev6
2207 _mcpu="-mcpu=$proc"
2208 echores "$proc"
2210 test $_fast_clz = "auto" && _fast_clz=yes
2212 _optimizing="$proc"
2215 mips)
2216 arch='mips'
2217 iproc='mips'
2219 if irix ; then
2220 echocheck "CPU type"
2221 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2222 case "$(echo $proc)" in
2223 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2224 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2225 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2226 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2227 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2228 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2229 esac
2230 # gcc < 3.x does not support -mtune.
2231 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2232 _mcpu=''
2234 echores "$proc"
2237 test $_fast_clz = "auto" && _fast_clz=yes
2241 hppa)
2242 arch='pa_risc'
2243 iproc='PA-RISC'
2246 s390)
2247 arch='s390'
2248 iproc='390'
2251 s390x)
2252 arch='s390x'
2253 iproc='390x'
2256 vax)
2257 arch='vax'
2258 iproc='vax'
2261 xtensa)
2262 arch='xtensa'
2263 iproc='xtensa'
2266 generic)
2267 arch='generic'
2271 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2272 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2273 die "unsupported architecture $host_arch"
2275 esac # case "$host_arch" in
2277 if test "$_runtime_cpudetection" = yes ; then
2278 if x86 ; then
2279 test "$_cmov" != no && _cmov=yes
2280 x86_32 && _cmov=no
2281 test "$_mmx" != no && _mmx=yes
2282 test "$_3dnow" != no && _3dnow=yes
2283 test "$_3dnowext" != no && _3dnowext=yes
2284 test "$_mmxext" != no && _mmxext=yes
2285 test "$_sse" != no && _sse=yes
2286 test "$_sse2" != no && _sse2=yes
2287 test "$_ssse3" != no && _ssse3=yes
2288 test "$_mtrr" != no && _mtrr=yes
2290 if ppc; then
2291 _altivec=yes
2296 # endian testing
2297 echocheck "byte order"
2298 if test "$_big_endian" = auto ; then
2299 cat > $TMPC <<EOF
2300 short ascii_name[] = { (('M'<<8)|'P'),(('l'<<8)|'a'),(('y'<<8)|'e'),(('r'<<8)|'B'),
2301 (('i'<<8)|'g'),(('E'<<8)|'n'),(('d'<<8)|'i'),(('a'<<8)|'n'),0};
2302 int main(void) { return (int)ascii_name; }
2304 if cc_check ; then
2305 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2306 _big_endian=yes
2307 else
2308 _big_endian=no
2310 else
2311 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2314 if test "$_big_endian" = yes ; then
2315 _byte_order='big-endian'
2316 def_words_endian='#define WORDS_BIGENDIAN 1'
2317 def_bigendian='#define HAVE_BIGENDIAN 1'
2318 else
2319 _byte_order='little-endian'
2320 def_words_endian='#undef WORDS_BIGENDIAN'
2321 def_bigendian='#define HAVE_BIGENDIAN 0'
2323 echores "$_byte_order"
2326 echocheck "extern symbol prefix"
2327 cat > $TMPC << EOF
2328 int ff_extern;
2330 cc_check -c || die "Symbol mangling check failed."
2331 sym=$($_nm -P -g $TMPEXE)
2332 extern_prefix=${sym%%ff_extern*}
2333 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2334 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2335 echores $extern_prefix
2338 echocheck "assembler support of -pipe option"
2339 cat > $TMPC << EOF
2340 int main(void) { return 0; }
2342 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2343 cc_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2346 echocheck "compiler support of named assembler arguments"
2347 _named_asm_args=yes
2348 def_named_asm_args="#define NAMED_ASM_ARGS 1"
2349 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2350 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2351 _named_asm_args=no
2352 def_named_asm_args="#undef NAMED_ASM_ARGS"
2354 echores $_named_asm_args
2357 if darwin && test "$cc_vendor" = "gnu" ; then
2358 echocheck "GCC support of -mstackrealign"
2359 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2360 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2361 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2362 # wrong code with this flag, but this can be worked around by adding
2363 # -fno-unit-at-a-time as described in the blog post at
2364 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2365 cat > $TMPC << EOF
2366 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2367 int main(void) { return foo3(1,2,3) == 3 ? 0 : 1; }
2369 cc_check -O2 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2370 test -z "$cflags_stackrealign" && cc_check -O2 -mstackrealign -fno-unit-at-a-time \
2371 && tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2372 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2373 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2376 # Checking for CFLAGS
2377 _install_strip="-s"
2378 if test "$_profile" != "" || test "$_debug" != "" ; then
2379 CFLAGS="-W -Wall -O2 $_march $_mcpu $_pipe $_debug $_profile"
2380 _install_strip=
2381 elif test -z "$CFLAGS" ; then
2382 if test "$cc_vendor" = "intel" ; then
2383 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer -wd167 -wd556 -wd144"
2384 elif test "$cc_vendor" = "sun" ; then
2385 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2386 elif test "$cc_vendor" != "gnu" ; then
2387 CFLAGS="-O2 $_march $_mcpu $_pipe"
2388 else
2389 CFLAGS="-Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2390 extra_ldflags="$extra_ldflags -ffast-math"
2392 else
2393 _warn_CFLAGS=yes
2396 cat > $TMPC << EOF
2397 int main(void) { return 0; }
2399 if test "$cc_vendor" = "gnu" ; then
2400 cc_check -std=gnu99 && CFLAGS="-std=gnu99 $CFLAGS"
2401 cc_check -Wno-pointer-sign && CFLAGS="-Wno-pointer-sign $CFLAGS"
2402 cc_check -Wdisabled-optimization && CFLAGS="-Wdisabled-optimization $CFLAGS"
2403 cc_check -Wundef && CFLAGS="-Wundef $CFLAGS"
2404 cc_check -Wmissing-prototypes && CFLAGS="-Wmissing-prototypes $CFLAGS"
2405 cc_check -Wstrict-prototypes && CFLAGS="-Wstrict-prototypes $CFLAGS"
2406 else
2407 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2410 cc_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2411 cc_check -MD -MP && CFLAGS="-MD -MP $CFLAGS"
2414 if test -n "$LDFLAGS" ; then
2415 extra_ldflags="$extra_ldflags $LDFLAGS"
2416 _warn_CFLAGS=yes
2417 elif test "$cc_vendor" = "intel" ; then
2418 extra_ldflags="$extra_ldflags -i-static"
2420 if test -n "$CPPFLAGS" ; then
2421 extra_cflags="$extra_cflags $CPPFLAGS"
2422 _warn_CFLAGS=yes
2427 if x86_32 ; then
2428 # Checking assembler (_as) compatibility...
2429 # Added workaround for older as that reads from stdin by default - atmos
2430 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2431 echocheck "assembler ($_as $as_version)"
2433 _pref_as_version='2.9.1'
2434 echo 'nop' > $TMPS
2435 if test "$_mmx" = yes ; then
2436 echo 'emms' >> $TMPS
2438 if test "$_3dnow" = yes ; then
2439 _pref_as_version='2.10.1'
2440 echo 'femms' >> $TMPS
2442 if test "$_3dnowext" = yes ; then
2443 _pref_as_version='2.10.1'
2444 echo 'pswapd %mm0, %mm0' >> $TMPS
2446 if test "$_mmxext" = yes ; then
2447 _pref_as_version='2.10.1'
2448 echo 'movntq %mm0, (%eax)' >> $TMPS
2450 if test "$_sse" = yes ; then
2451 _pref_as_version='2.10.1'
2452 echo 'xorps %xmm0, %xmm0' >> $TMPS
2454 #if test "$_sse2" = yes ; then
2455 # _pref_as_version='2.11'
2456 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2458 if test "$_cmov" = yes ; then
2459 _pref_as_version='2.10.1'
2460 echo 'cmovb %eax, %ebx' >> $TMPS
2462 if test "$_ssse3" = yes ; then
2463 _pref_as_version='2.16.92'
2464 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2466 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2468 if test "$as_verc_fail" != yes ; then
2469 echores "ok"
2470 else
2471 res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2472 echores "failed"
2473 die "obsolete binutils version"
2476 fi #if x86_32
2478 echocheck ".align is a power of two"
2479 if test "$_asmalign_pot" = auto ; then
2480 _asmalign_pot=no
2481 cat > $TMPC << EOF
2482 int main(void) { __asm__ (".align 3"); return 0; }
2484 cc_check && _asmalign_pot=yes
2486 if test "$_asmalign_pot" = "yes" ; then
2487 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2488 else
2489 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2491 echores $_asmalign_pot
2493 if x86 ; then
2494 echocheck "10 assembler operands"
2495 ten_operands=no
2496 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2497 cat > $TMPC << EOF
2498 int main(void) {
2499 int x=0;
2500 __asm__ volatile(
2502 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2504 return 0;
2507 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2508 echores $ten_operands
2510 echocheck "ebx availability"
2511 ebx_available=no
2512 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2513 cat > $TMPC << EOF
2514 int main(void) {
2515 int x;
2516 __asm__ volatile(
2517 "xor %0, %0"
2518 :"=b"(x)
2519 // just adding ebx to clobber list seems unreliable with some
2520 // compilers, e.g. Haiku's gcc 2.95
2522 // and the above check does not work for OSX 64 bit...
2523 __asm__ volatile("":::"%ebx");
2524 return 0;
2527 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2528 echores $ebx_available
2530 echocheck "PIC"
2531 pic=no
2532 cat > $TMPC << EOF
2533 int main(void) {
2534 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2535 #error PIC not enabled
2536 #endif
2537 return 0;
2540 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2541 echores $pic
2543 echocheck "yasm"
2544 if test -z "$YASMFLAGS" ; then
2545 if darwin ; then
2546 x86_64 && objformat="macho64" || objformat="macho"
2547 elif win32 ; then
2548 objformat="win32"
2549 else
2550 objformat="elf"
2552 # currently tested for Linux x86, x86_64
2553 YASMFLAGS="-f $objformat"
2554 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2555 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2556 case "$objformat" in
2557 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2558 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2559 esac
2560 else
2561 _warn_CFLAGS=yes
2564 echo "pabsw xmm0, xmm0" > $TMPS
2565 yasm_check || _yasm=""
2566 if test $_yasm ; then
2567 def_yasm='#define HAVE_YASM 1'
2568 have_yasm="yes"
2569 echores "$_yasm"
2570 else
2571 def_yasm='#define HAVE_YASM 0'
2572 have_yasm="no"
2573 echores "no"
2576 echocheck "bswap"
2577 def_bswap='#define HAVE_BSWAP 0'
2578 echo 'bswap %eax' > $TMPS
2579 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2580 echores "$bswap"
2581 fi #if x86
2584 #FIXME: This should happen before the check for CFLAGS..
2585 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2586 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2588 # check if AltiVec is supported by the compiler, and how to enable it
2589 echocheck "GCC AltiVec flags"
2590 cat > $TMPC << EOF
2591 int main(void) { return 0; }
2593 if $(cc_check -maltivec -mabi=altivec) ; then
2594 _altivec_gcc_flags="-maltivec -mabi=altivec"
2595 # check if <altivec.h> should be included
2596 cat > $TMPC << EOF
2597 #include <altivec.h>
2598 int main(void) { return 0; }
2600 if $(cc_check $_altivec_gcc_flags) ; then
2601 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2602 inc_altivec_h='#include <altivec.h>'
2603 else
2604 cat > $TMPC << EOF
2605 int main(void) { return 0; }
2607 if $(cc_check -faltivec) ; then
2608 _altivec_gcc_flags="-faltivec"
2609 else
2610 _altivec=no
2611 _altivec_gcc_flags="none, AltiVec disabled"
2615 echores "$_altivec_gcc_flags"
2617 # check if the compiler supports braces for vector declarations
2618 cat > $TMPC << EOF
2619 $inc_altivec_h
2620 int main(void) { (vector int) {1}; return 0; }
2622 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2624 # Disable runtime cpudetection if we cannot generate AltiVec code or
2625 # AltiVec is disabled by the user.
2626 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2627 && _runtime_cpudetection=no
2629 # Show that we are optimizing for AltiVec (if enabled and supported).
2630 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2631 && _optimizing="$_optimizing altivec"
2633 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2634 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2637 if ppc ; then
2638 def_xform_asm='#define HAVE_XFORM_ASM 0'
2639 xform_asm=no
2640 echocheck "XFORM ASM support"
2641 cat > $TMPC << EOF
2642 int main(void) { __asm__ volatile ("lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)); return 0; }
2644 cc_check && xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2645 echores "$xform_asm"
2648 if arm ; then
2649 echocheck "ARM pld instruction"
2650 cat > $TMPC << EOF
2651 int main(void) { __asm__ volatile ("pld [r0]"); return 0; }
2653 pld=no
2654 cc_check && pld=yes
2655 echores "$pld"
2657 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2658 if test $_armv5te = "auto" ; then
2659 cat > $TMPC << EOF
2660 int main(void) { __asm__ volatile ("qadd r0, r0, r0"); return 0; }
2662 _armv5te=no
2663 cc_check && _armv5te=yes
2665 echores "$_armv5te"
2667 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2669 echocheck "ARMv6 (SIMD instructions)"
2670 if test $_armv6 = "auto" ; then
2671 cat > $TMPC << EOF
2672 int main(void) { __asm__ volatile ("sadd16 r0, r0, r0"); return 0; }
2674 _armv6=no
2675 cc_check && _armv6=yes
2677 echores "$_armv6"
2679 echocheck "ARMv6t2 (SIMD instructions)"
2680 if test $_armv6t2 = "auto" ; then
2681 cat > $TMPC << EOF
2682 int main(void) { __asm__ volatile ("movt r0, #0"); return 0; }
2684 _armv6t2=no
2685 cc_check && _armv6t2=yes
2687 echores "$_armv6"
2689 echocheck "ARM VFP"
2690 if test $_armvfp = "auto" ; then
2691 cat > $TMPC << EOF
2692 int main(void) { __asm__ volatile ("fadds s0, s0, s0"); return 0; }
2694 _armvfp=no
2695 cc_check && _armvfp=yes
2697 echores "$_armvfp"
2699 echocheck "ARM NEON"
2700 if test $neon = "auto" ; then
2701 cat > $TMPC << EOF
2702 int main(void) { __asm__ volatile ("vadd.i16 q0, q0, q0"); return 0; }
2704 neon=no
2705 cc_check && neon=yes
2707 echores "$neon"
2709 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2710 if test $_iwmmxt = "auto" ; then
2711 cat > $TMPC << EOF
2712 int main(void) { __asm__ volatile ("wunpckelub wr6, wr4"); return 0; }
2714 _iwmmxt=no
2715 cc_check && _iwmmxt=yes
2717 echores "$_iwmmxt"
2720 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'
2721 test "$_altivec" = yes && cpuexts="ALTIVEC $cpuexts"
2722 test "$_mmx" = yes && cpuexts="MMX $cpuexts"
2723 test "$_mmxext" = yes && cpuexts="MMX2 $cpuexts"
2724 test "$_3dnow" = yes && cpuexts="AMD3DNOW $cpuexts"
2725 test "$_3dnowext" = yes && cpuexts="AMD3DNOWEXT $cpuexts"
2726 test "$_sse" = yes && cpuexts="SSE $cpuexts"
2727 test "$_sse2" = yes && cpuexts="SSE2 $cpuexts"
2728 test "$_ssse3" = yes && cpuexts="SSSE3 $cpuexts"
2729 test "$_cmov" = yes && cpuexts="CMOV $cpuexts"
2730 test "$_fast_cmov" = yes && cpuexts="FAST_CMOV $cpuexts"
2731 test "$_fast_clz" = yes && cpuexts="FAST_CLZ $cpuexts"
2732 test "$pld" = yes && cpuexts="PLD $cpuexts"
2733 test "$_armv5te" = yes && cpuexts="ARMV5TE $cpuexts"
2734 test "$_armv6" = yes && cpuexts="ARMV6 $cpuexts"
2735 test "$_armv6t2" = yes && cpuexts="ARMV6T2 $cpuexts"
2736 test "$_armvfp" = yes && cpuexts="ARMVFP $cpuexts"
2737 test "$neon" = yes && cpuexts="NEON $cpuexts"
2738 test "$_iwmmxt" = yes && cpuexts="IWMMXT $cpuexts"
2739 test "$_vis" = yes && cpuexts="VIS $cpuexts"
2740 test "$_mvi" = yes && cpuexts="MVI $cpuexts"
2742 # Checking kernel version...
2743 if x86_32 && linux ; then
2744 _k_verc_problem=no
2745 kernel_version=$(uname -r 2>&1)
2746 echocheck "$system_name kernel version"
2747 case "$kernel_version" in
2748 '') kernel_version="?.??"; _k_verc_fail=yes;;
2749 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2750 _k_verc_problem=yes;;
2751 esac
2752 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2753 _k_verc_fail=yes
2755 if test "$_k_verc_fail" ; then
2756 echores "$kernel_version, fail"
2757 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2758 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2759 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2760 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2761 echo "2.2.x you must upgrade it to get SSE support!"
2762 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2763 else
2764 echores "$kernel_version, ok"
2768 ######################
2769 # MAIN TESTS GO HERE #
2770 ######################
2773 echocheck "-lposix"
2774 cat > $TMPC <<EOF
2775 int main(void) { return 0; }
2777 if cc_check -lposix ; then
2778 extra_ldflags="$extra_ldflags -lposix"
2779 echores "yes"
2780 else
2781 echores "no"
2784 echocheck "-lm"
2785 cat > $TMPC <<EOF
2786 int main(void) { return 0; }
2788 if cc_check -lm ; then
2789 _ld_lm="-lm"
2790 echores "yes"
2791 else
2792 _ld_lm=""
2793 echores "no"
2797 echocheck "langinfo"
2798 if test "$_langinfo" = auto ; then
2799 cat > $TMPC <<EOF
2800 #include <langinfo.h>
2801 int main(void) { nl_langinfo(CODESET); return 0; }
2803 _langinfo=no
2804 cc_check && _langinfo=yes
2806 if test "$_langinfo" = yes ; then
2807 def_langinfo='#define HAVE_LANGINFO 1'
2808 else
2809 def_langinfo='#undef HAVE_LANGINFO'
2811 echores "$_langinfo"
2814 echocheck "translation support"
2815 if test "$_translation" = yes; then
2816 def_translation="#define CONFIG_TRANSLATION 1"
2817 else
2818 def_translation="#undef CONFIG_TRANSLATION"
2820 echores "$_translation"
2822 echocheck "language"
2823 # Set preferred languages, "all" uses English as main language.
2824 test -z "$language" && language=$LINGUAS
2825 test -z "$language_doc" && language_doc=$language
2826 test -z "$language_man" && language_man=$language
2827 test -z "$language_msg" && language_msg="all"
2828 language_doc=$(echo $language_doc | tr , " ")
2829 language_man=$(echo $language_man | tr , " ")
2830 language_msg=$(echo $language_msg | tr , " ")
2832 test "$language_doc" = "all" && language_doc=$doc_lang_all
2833 test "$language_man" = "all" && language_man=$man_lang_all
2834 test "$language_msg" = "all" && language_msg=$msg_lang_all
2836 if test "$_translation" != yes ; then
2837 language_msg=""
2840 # Prune non-existing translations from language lists.
2841 # Set message translation to the first available language.
2842 # Fall back on English.
2843 for lang in $language_doc ; do
2844 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2845 done
2846 language_doc=$tmp_language_doc
2847 test -z "$language_doc" && language_doc=en
2849 for lang in $language_man ; do
2850 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2851 done
2852 language_man=$tmp_language_man
2853 test -z "$language_man" && language_man=en
2855 for lang in $language_msg ; do
2856 test -f po/$lang.po && tmp_language_msg="$tmp_language_msg $lang"
2857 done
2858 language_msg=$tmp_language_msg
2860 echores "messages (en+): $language_msg - man pages: $language_man - documentation: $language_doc"
2863 echocheck "enable sighandler"
2864 if test "$_sighandler" = yes ; then
2865 def_sighandler='#define CONFIG_SIGHANDLER 1'
2866 else
2867 def_sighandler='#undef CONFIG_SIGHANDLER'
2869 echores "$_sighandler"
2871 echocheck "runtime cpudetection"
2872 if test "$_runtime_cpudetection" = yes ; then
2873 _optimizing="Runtime CPU-Detection enabled"
2874 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2875 else
2876 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2878 echores "$_runtime_cpudetection"
2881 echocheck "restrict keyword"
2882 for restrict_keyword in restrict __restrict __restrict__ ; do
2883 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2884 if cc_check; then
2885 def_restrict_keyword=$restrict_keyword
2886 break;
2888 done
2889 if [ -n "$def_restrict_keyword" ]; then
2890 echores "$def_restrict_keyword"
2891 else
2892 echores "none"
2894 # Avoid infinite recursion loop ("#define restrict restrict")
2895 if [ "$def_restrict_keyword" != "restrict" ]; then
2896 def_restrict_keyword="#define restrict $def_restrict_keyword"
2897 else
2898 def_restrict_keyword=""
2902 echocheck "__builtin_expect"
2903 # GCC branch prediction hint
2904 cat > $TMPC << EOF
2905 int foo(int a) {
2906 a = __builtin_expect(a, 10);
2907 return a == 10 ? 0 : 1;
2909 int main(void) { return foo(10) && foo(0); }
2911 _builtin_expect=no
2912 cc_check && _builtin_expect=yes
2913 if test "$_builtin_expect" = yes ; then
2914 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2915 else
2916 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2918 echores "$_builtin_expect"
2921 echocheck "kstat"
2922 cat > $TMPC << EOF
2923 #include <kstat.h>
2924 int main(void) { (void) kstat_open(); (void) kstat_close(0); return 0; }
2926 _kstat=no
2927 cc_check -lkstat && _kstat=yes
2928 if test "$_kstat" = yes ; then
2929 def_kstat="#define HAVE_LIBKSTAT 1"
2930 extra_ldflags="$extra_ldflags -lkstat"
2931 else
2932 def_kstat="#undef HAVE_LIBKSTAT"
2934 echores "$_kstat"
2937 echocheck "posix4"
2938 # required for nanosleep on some systems
2939 cat > $TMPC << EOF
2940 #include <time.h>
2941 int main(void) { (void) nanosleep(0, 0); return 0; }
2943 _posix4=no
2944 cc_check -lposix4 && _posix4=yes
2945 if test "$_posix4" = yes ; then
2946 extra_ldflags="$extra_ldflags -lposix4"
2948 echores "$_posix4"
2950 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
2951 echocheck $func
2952 cat > $TMPC << EOF
2953 #include <math.h>
2954 int main(void) { long (*foo)(float); foo = $func; (void)(*foo)(0.0); return 0; }
2956 eval _$func=no
2957 cc_check -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2958 if eval test "x\$_$func" = "xyes"; then
2959 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2960 echores yes
2961 else
2962 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
2963 echores no
2965 done
2968 echocheck "mkstemp"
2969 cat > $TMPC << EOF
2970 #include <stdlib.h>
2971 int main(void) { char a; mkstemp(&a); return 0; }
2973 _mkstemp=no
2974 cc_check && _mkstemp=yes
2975 if test "$_mkstemp" = yes ; then
2976 def_mkstemp='#define HAVE_MKSTEMP 1'
2977 else
2978 def_mkstemp='#undef HAVE_MKSTEMP'
2980 echores "$_mkstemp"
2983 echocheck "nanosleep"
2984 # also check for nanosleep
2985 cat > $TMPC << EOF
2986 #include <time.h>
2987 int main(void) { (void) nanosleep(0, 0); return 0; }
2989 _nanosleep=no
2990 cc_check && _nanosleep=yes
2991 if test "$_nanosleep" = yes ; then
2992 def_nanosleep='#define HAVE_NANOSLEEP 1'
2993 else
2994 def_nanosleep='#undef HAVE_NANOSLEEP'
2996 echores "$_nanosleep"
2999 echocheck "socklib"
3000 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
3001 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
3002 cat > $TMPC << EOF
3003 #include <netdb.h>
3004 #include <sys/socket.h>
3005 int main(void) { (void) gethostbyname(0); (void) socket(AF_INET, SOCK_STREAM, 0); return 0; }
3007 _socklib=no
3008 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
3009 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
3010 done
3011 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
3012 if test $_winsock2_h = auto ; then
3013 _winsock2_h=no
3014 cat > $TMPC << EOF
3015 #include <winsock2.h>
3016 int main(void) { (void) gethostbyname(0); return 0; }
3018 cc_check -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
3020 test "$_ld_sock" && res_comment="using $_ld_sock"
3021 echores "$_socklib"
3024 if test $_winsock2_h = yes ; then
3025 _ld_sock="-lws2_32"
3026 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
3027 else
3028 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
3032 echocheck "arpa/inet.h"
3033 arpa_inet_h=no
3034 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
3035 cat > $TMPC << EOF
3036 #include <arpa/inet.h>
3037 int main(void) { return 0; }
3039 cc_check && arpa_inet_h=yes && def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
3040 echores "$arpa_inet_h"
3043 echocheck "inet_pton()"
3044 def_inet_pton='#define HAVE_INET_PTON 0'
3045 inet_pton=no
3046 cat > $TMPC << EOF
3047 #include <sys/types.h>
3048 #include <sys/socket.h>
3049 #include <arpa/inet.h>
3050 int main(void) { (void) inet_pton(0, 0, 0); return 0; }
3052 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3053 cc_check $_ld_tmp && inet_pton=yes && break
3054 done
3055 if test $inet_pton = yes ; then
3056 test "$_ld_tmp" && res_comment="using $_ld_tmp"
3057 def_inet_pton='#define HAVE_INET_PTON 1'
3059 echores "$inet_pton"
3062 echocheck "inet_aton()"
3063 def_inet_aton='#define HAVE_INET_ATON 0'
3064 inet_aton=no
3065 cat > $TMPC << EOF
3066 #include <sys/types.h>
3067 #include <sys/socket.h>
3068 #include <arpa/inet.h>
3069 int main(void) { (void) inet_aton(0, 0); return 0; }
3071 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3072 cc_check $_ld_tmp && inet_aton=yes && break
3073 done
3074 if test $inet_aton = yes ; then
3075 test "$_ld_tmp" && res_comment="using $_ld_tmp"
3076 def_inet_aton='#define HAVE_INET_ATON 1'
3078 echores "$inet_aton"
3081 echocheck "socklen_t"
3082 _socklen_t=no
3083 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
3084 cat > $TMPC << EOF
3085 #include <$header>
3086 int main(void) { socklen_t v = 0; return v; }
3088 cc_check && _socklen_t=yes && break
3089 done
3090 if test "$_socklen_t" = yes ; then
3091 def_socklen_t='#define HAVE_SOCKLEN_T 1'
3092 else
3093 def_socklen_t='#define HAVE_SOCKLEN_T 0'
3095 echores "$_socklen_t"
3098 echocheck "closesocket()"
3099 _closesocket=no
3100 cat > $TMPC << EOF
3101 #include <winsock2.h>
3102 int main(void) { closesocket(~0); return 0; }
3104 cc_check $_ld_sock && _closesocket=yes
3105 if test "$_closesocket" = yes ; then
3106 def_closesocket='#define HAVE_CLOSESOCKET 1'
3107 else
3108 def_closesocket='#define HAVE_CLOSESOCKET 0'
3110 echores "$_closesocket"
3113 echocheck "network"
3114 test $_winsock2_h = no && test $inet_pton = no &&
3115 test $inet_aton = no && _network=no
3116 if test "$_network" = yes ; then
3117 def_network='#define CONFIG_NETWORK 1'
3118 extra_ldflags="$extra_ldflags $_ld_sock"
3119 inputmodules="network $inputmodules"
3120 else
3121 noinputmodules="network $noinputmodules"
3122 def_network='#undef CONFIG_NETWORK'
3123 _ftp=no
3125 echores "$_network"
3128 echocheck "inet6"
3129 if test "$_inet6" = auto ; then
3130 cat > $TMPC << EOF
3131 #include <sys/types.h>
3132 #if !defined(_WIN32) || defined(__CYGWIN__)
3133 #include <sys/socket.h>
3134 #include <netinet/in.h>
3135 #else
3136 #include <ws2tcpip.h>
3137 #endif
3138 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3140 _inet6=no
3141 if cc_check $_ld_sock ; then
3142 _inet6=yes
3145 if test "$_inet6" = yes ; then
3146 def_inet6='#define HAVE_AF_INET6 1'
3147 else
3148 def_inet6='#undef HAVE_AF_INET6'
3150 echores "$_inet6"
3153 echocheck "gethostbyname2"
3154 if test "$_gethostbyname2" = auto ; then
3155 cat > $TMPC << EOF
3156 #include <sys/types.h>
3157 #include <sys/socket.h>
3158 #include <netdb.h>
3159 int main(void) { gethostbyname2("", AF_INET); return 0; }
3161 _gethostbyname2=no
3162 if cc_check ; then
3163 _gethostbyname2=yes
3166 if test "$_gethostbyname2" = yes ; then
3167 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3168 else
3169 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3171 echores "$_gethostbyname2"
3174 echocheck "inttypes.h (required)"
3175 cat > $TMPC << EOF
3176 #include <inttypes.h>
3177 int main(void) { return 0; }
3179 _inttypes=no
3180 cc_check && _inttypes=yes
3181 echores "$_inttypes"
3183 if test "$_inttypes" = no ; then
3184 echocheck "bitypes.h (inttypes.h predecessor)"
3185 cat > $TMPC << EOF
3186 #include <sys/bitypes.h>
3187 int main(void) { return 0; }
3189 cc_check && _inttypes=yes
3190 if test "$_inttypes" = yes ; then
3191 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."
3192 else
3193 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3198 echocheck "int_fastXY_t in inttypes.h"
3199 cat > $TMPC << EOF
3200 #include <inttypes.h>
3201 int main(void) {
3202 volatile int_fast16_t v= 0;
3203 return v; }
3205 _fast_inttypes=no
3206 cc_check && _fast_inttypes=yes
3207 if test "$_fast_inttypes" = no ; then
3208 def_fast_inttypes='
3209 typedef signed char int_fast8_t;
3210 typedef signed int int_fast16_t;
3211 typedef signed int int_fast32_t;
3212 typedef signed long long int_fast64_t;
3213 typedef unsigned char uint_fast8_t;
3214 typedef unsigned int uint_fast16_t;
3215 typedef unsigned int uint_fast32_t;
3216 typedef unsigned long long uint_fast64_t;'
3218 echores "$_fast_inttypes"
3221 echocheck "malloc.h"
3222 cat > $TMPC << EOF
3223 #include <malloc.h>
3224 int main(void) { (void) malloc(0); return 0; }
3226 _malloc=no
3227 cc_check && _malloc=yes
3228 if test "$_malloc" = yes ; then
3229 def_malloc_h='#define HAVE_MALLOC_H 1'
3230 else
3231 def_malloc_h='#define HAVE_MALLOC_H 0'
3233 echores "$_malloc"
3236 echocheck "memalign()"
3237 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3238 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3239 cat > $TMPC << EOF
3240 #include <malloc.h>
3241 int main(void) { (void) memalign(64, sizeof(char)); return 0; }
3243 _memalign=no
3244 cc_check && _memalign=yes
3245 if test "$_memalign" = yes ; then
3246 def_memalign='#define HAVE_MEMALIGN 1'
3247 else
3248 def_memalign='#define HAVE_MEMALIGN 0'
3249 def_map_memalign='#define memalign(a,b) malloc(b)'
3250 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3252 echores "$_memalign"
3255 echocheck "posix_memalign()"
3256 posix_memalign=no
3257 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3258 cat > $TMPC << EOF
3259 #define _XOPEN_SOURCE 600
3260 #include <stdlib.h>
3261 int main(void) { posix_memalign(NULL, 0, 0); }
3263 cc_check && posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3264 echores "$posix_memalign"
3267 echocheck "alloca.h"
3268 cat > $TMPC << EOF
3269 #include <alloca.h>
3270 int main(void) { (void) alloca(0); return 0; }
3272 _alloca=no
3273 cc_check && _alloca=yes
3274 if cc_check ; then
3275 def_alloca_h='#define HAVE_ALLOCA_H 1'
3276 else
3277 def_alloca_h='#undef HAVE_ALLOCA_H'
3279 echores "$_alloca"
3282 echocheck "fastmemcpy"
3283 if test "$_fastmemcpy" = yes ; then
3284 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3285 else
3286 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3288 echores "$_fastmemcpy"
3291 echocheck "mman.h"
3292 cat > $TMPC << EOF
3293 #include <sys/types.h>
3294 #include <sys/mman.h>
3295 int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; }
3297 _mman=no
3298 cc_check && _mman=yes
3299 if test "$_mman" = yes ; then
3300 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3301 else
3302 def_mman_h='#undef HAVE_SYS_MMAN_H'
3303 os2 && _need_mmap=yes
3305 echores "$_mman"
3307 cat > $TMPC << EOF
3308 #include <sys/types.h>
3309 #include <sys/mman.h>
3310 int main(void) { void *p = MAP_FAILED; return 0; }
3312 _mman_has_map_failed=no
3313 cc_check && _mman_has_map_failed=yes
3314 if test "$_mman_has_map_failed" = yes ; then
3315 def_mman_has_map_failed=''
3316 else
3317 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3320 echocheck "dynamic loader"
3321 cat > $TMPC << EOF
3322 #include <stddef.h>
3323 #include <dlfcn.h>
3324 int main(void) { dlopen("", 0); dlclose(NULL); dlsym(NULL, ""); return 0; }
3326 _dl=no
3327 for _ld_tmp in "" "-ldl" ; do
3328 cc_check $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3329 done
3330 if test "$_dl" = yes ; then
3331 def_dl='#define HAVE_LIBDL 1'
3332 else
3333 def_dl='#undef HAVE_LIBDL'
3335 echores "$_dl"
3338 echocheck "dynamic a/v plugins support"
3339 if test "$_dl" = no ; then
3340 _dynamic_plugins=no
3342 if test "$_dynamic_plugins" = yes ; then
3343 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3344 else
3345 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3347 echores "$_dynamic_plugins"
3350 def_threads='#define HAVE_THREADS 0'
3352 echocheck "pthread"
3353 if linux ; then
3354 THREAD_CFLAGS=-D_REENTRANT
3355 elif freebsd || netbsd || openbsd || bsdos ; then
3356 THREAD_CFLAGS=-D_THREAD_SAFE
3358 if test "$_pthreads" = auto ; then
3359 cat > $TMPC << EOF
3360 #include <pthread.h>
3361 void* func(void *arg) { return arg; }
3362 int main(void) { pthread_t tid; return pthread_create(&tid, 0, func, 0) == 0 ? 0 : 1; }
3364 _pthreads=no
3365 if ! hpux ; then
3366 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3367 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3368 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3369 done
3372 if test "$_pthreads" = yes ; then
3373 test $_ld_pthread && res_comment="using $_ld_pthread"
3374 def_pthreads='#define HAVE_PTHREADS 1'
3375 def_threads='#define HAVE_THREADS 1'
3376 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3377 else
3378 res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3379 def_pthreads='#undef HAVE_PTHREADS'
3380 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3381 mingw32 || _win32dll=no
3383 echores "$_pthreads"
3385 if cygwin ; then
3386 if test "$_pthreads" = yes ; then
3387 def_pthread_cache="#define PTHREAD_CACHE 1"
3388 else
3389 _stream_cache=no
3390 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3394 echocheck "w32threads"
3395 if test "$_pthreads" = yes ; then
3396 res_comment="using pthread instead"
3397 _w32threads=no
3399 if test "$_w32threads" = auto ; then
3400 _w32threads=no
3401 mingw32 && _w32threads=yes
3403 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3404 echores "$_w32threads"
3406 echocheck "rpath"
3407 netbsd &&_rpath=yes
3408 if test "$_rpath" = yes ; then
3409 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3410 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3411 done
3412 extra_ldflags=$tmp
3414 echores "$_rpath"
3416 echocheck "iconv"
3417 if test "$_iconv" = auto ; then
3418 cat > $TMPC << EOF
3419 #include <stdio.h>
3420 #include <unistd.h>
3421 #include <iconv.h>
3422 #define INBUFSIZE 1024
3423 #define OUTBUFSIZE 4096
3425 char inbuffer[INBUFSIZE];
3426 char outbuffer[OUTBUFSIZE];
3428 int main(void) {
3429 size_t numread;
3430 iconv_t icdsc;
3431 char *tocode="UTF-8";
3432 char *fromcode="cp1250";
3433 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3434 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3435 char *iptr=inbuffer;
3436 char *optr=outbuffer;
3437 size_t inleft=numread;
3438 size_t outleft=OUTBUFSIZE;
3439 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft)
3440 != (size_t)(-1)) {
3441 write(1, outbuffer, OUTBUFSIZE - outleft);
3444 if (iconv_close(icdsc) == -1)
3447 return 0;
3450 _iconv=no
3451 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3452 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3453 _iconv=yes && break
3454 done
3456 if test "$_iconv" = yes ; then
3457 def_iconv='#define CONFIG_ICONV 1'
3458 else
3459 def_iconv='#undef CONFIG_ICONV'
3461 echores "$_iconv"
3464 echocheck "soundcard.h"
3465 _soundcard_h=no
3466 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3467 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3468 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3469 cat > $TMPC << EOF
3470 #include <$_soundcard_header>
3471 int main(void) { return 0; }
3473 cc_check && _soundcard_h=yes && res_comment="$_soundcard_header" && break
3474 done
3476 if test "$_soundcard_h" = yes ; then
3477 if test $_soundcard_header = "sys/soundcard.h"; then
3478 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3479 else
3480 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3483 echores "$_soundcard_h"
3486 echocheck "sys/dvdio.h"
3487 cat > $TMPC << EOF
3488 #include <unistd.h>
3489 #include <sys/dvdio.h>
3490 int main(void) { return 0; }
3492 _dvdio=no
3493 cc_check && _dvdio=yes
3494 if test "$_dvdio" = yes ; then
3495 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3496 else
3497 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3499 echores "$_dvdio"
3502 echocheck "sys/cdio.h"
3503 cat > $TMPC << EOF
3504 #include <unistd.h>
3505 #include <sys/cdio.h>
3506 int main(void) { return 0; }
3508 _cdio=no
3509 cc_check && _cdio=yes
3510 if test "$_cdio" = yes ; then
3511 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3512 else
3513 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3515 echores "$_cdio"
3518 echocheck "linux/cdrom.h"
3519 cat > $TMPC << EOF
3520 #include <sys/types.h>
3521 #include <linux/cdrom.h>
3522 int main(void) { return 0; }
3524 _cdrom=no
3525 cc_check && _cdrom=yes
3526 if test "$_cdrom" = yes ; then
3527 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3528 else
3529 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3531 echores "$_cdrom"
3534 echocheck "dvd.h"
3535 cat > $TMPC << EOF
3536 #include <dvd.h>
3537 int main(void) { return 0; }
3539 _dvd=no
3540 cc_check && _dvd=yes
3541 if test "$_dvd" = yes ; then
3542 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3543 else
3544 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3546 echores "$_dvd"
3549 if bsdos; then
3550 echocheck "BSDI dvd.h"
3551 cat > $TMPC << EOF
3552 #include <dvd.h>
3553 int main(void) { return 0; }
3555 _bsdi_dvd=no
3556 cc_check && _bsdi_dvd=yes
3557 if test "$_bsdi_dvd" = yes ; then
3558 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3559 else
3560 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3562 echores "$_bsdi_dvd"
3563 fi #if bsdos
3566 if hpux; then
3567 # also used by AIX, but AIX does not support VCD and/or libdvdread
3568 echocheck "HP-UX SCSI header"
3569 cat > $TMPC << EOF
3570 #include <sys/scsi.h>
3571 int main(void) { return 0; }
3573 _hpux_scsi_h=no
3574 cc_check && _hpux_scsi_h=yes
3575 if test "$_hpux_scsi_h" = yes ; then
3576 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3577 else
3578 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3580 echores "$_hpux_scsi_h"
3581 fi #if hpux
3584 if sunos; then
3585 echocheck "userspace SCSI headers (Solaris)"
3586 cat > $TMPC << EOF
3587 #include <unistd.h>
3588 #include <stropts.h>
3589 #include <sys/scsi/scsi_types.h>
3590 #include <sys/scsi/impl/uscsi.h>
3591 int main(void) { return 0; }
3593 _sol_scsi_h=no
3594 cc_check && _sol_scsi_h=yes
3595 if test "$_sol_scsi_h" = yes ; then
3596 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3597 else
3598 def_sol_scsi_h='#undef SOLARIS_USCSI'
3600 echores "$_sol_scsi_h"
3601 fi #if sunos
3604 echocheck "termcap"
3605 if test "$_termcap" = auto ; then
3606 cat > $TMPC <<EOF
3607 #include <stddef.h>
3608 #include <term.h>
3609 int main(void) { tgetent(NULL, NULL); return 0; }
3611 _termcap=no
3612 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3613 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
3614 && _termcap=yes && break
3615 done
3617 if test "$_termcap" = yes ; then
3618 def_termcap='#define HAVE_TERMCAP 1'
3619 test $_ld_tmp && res_comment="using $_ld_tmp"
3620 else
3621 def_termcap='#undef HAVE_TERMCAP'
3623 echores "$_termcap"
3626 echocheck "termios"
3627 def_termios='#undef HAVE_TERMIOS'
3628 def_termios_h='#undef HAVE_TERMIOS_H'
3629 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3630 if test "$_termios" = auto ; then
3631 _termios=no
3632 for _termios_header in "termios.h" "sys/termios.h"; do
3633 cat > $TMPC <<EOF
3634 #include <$_termios_header>
3635 int main(void) { return 0; }
3637 cc_check && _termios=yes && res_comment="using $_termios_header" && break
3638 done
3641 if test "$_termios" = yes ; then
3642 def_termios='#define HAVE_TERMIOS 1'
3643 if test "$_termios_header" = "termios.h" ; then
3644 def_termios_h='#define HAVE_TERMIOS_H 1'
3645 else
3646 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3649 echores "$_termios"
3652 echocheck "shm"
3653 if test "$_shm" = auto ; then
3654 cat > $TMPC << EOF
3655 #include <sys/types.h>
3656 #include <sys/shm.h>
3657 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3659 _shm=no
3660 cc_check && _shm=yes
3662 if test "$_shm" = yes ; then
3663 def_shm='#define HAVE_SHM 1'
3664 else
3665 def_shm='#undef HAVE_SHM'
3667 echores "$_shm"
3670 echocheck "strsep()"
3671 cat > $TMPC << EOF
3672 #include <string.h>
3673 int main(void) { char *s = "Hello, world!"; (void) strsep(&s, ","); return 0; }
3675 _strsep=no
3676 cc_check && _strsep=yes
3677 if test "$_strsep" = yes ; then
3678 def_strsep='#define HAVE_STRSEP 1'
3679 _need_strsep=no
3680 else
3681 def_strsep='#undef HAVE_STRSEP'
3682 _need_strsep=yes
3684 echores "$_strsep"
3687 echocheck "vsscanf()"
3688 cat > $TMPC << EOF
3689 #define _ISOC99_SOURCE
3690 #include <stdarg.h>
3691 #include <stdio.h>
3692 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3694 _vsscanf=no
3695 cc_check && _vsscanf=yes
3696 if test "$_vsscanf" = yes ; then
3697 def_vsscanf='#define HAVE_VSSCANF 1'
3698 _need_vsscanf=no
3699 else
3700 def_vsscanf='#undef HAVE_VSSCANF'
3701 _need_vsscanf=yes
3703 echores "$_vsscanf"
3706 echocheck "swab()"
3707 cat > $TMPC << EOF
3708 #define _XOPEN_SOURCE 600
3709 #include <unistd.h>
3710 int main(void) { swab(0, 0, 0); return 0; }
3712 _swab=no
3713 cc_check && _swab=yes
3714 if test "$_swab" = yes ; then
3715 def_swab='#define HAVE_SWAB 1'
3716 _need_swab=no
3717 else
3718 def_swab='#undef HAVE_SWAB'
3719 _need_swab=yes
3721 echores "$_swab"
3723 echocheck "POSIX select()"
3724 cat > $TMPC << EOF
3725 #include <stdio.h>
3726 #include <stdlib.h>
3727 #include <sys/types.h>
3728 #include <string.h>
3729 #include <sys/time.h>
3730 #include <unistd.h>
3731 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
3733 _posix_select=no
3734 def_posix_select='#undef HAVE_POSIX_SELECT'
3735 #select() of kLIBC (OS/2) supports socket only
3736 ! os2 && cc_check && _posix_select=yes \
3737 && def_posix_select='#define HAVE_POSIX_SELECT 1'
3738 echores "$_posix_select"
3741 echocheck "audio select()"
3742 if test "$_select" = no ; then
3743 def_select='#undef HAVE_AUDIO_SELECT'
3744 elif test "$_select" = yes ; then
3745 def_select='#define HAVE_AUDIO_SELECT 1'
3747 echores "$_select"
3750 echocheck "gettimeofday()"
3751 cat > $TMPC << EOF
3752 #include <stdio.h>
3753 #include <sys/time.h>
3754 int main(void) {struct timeval tv_start; gettimeofday(&tv_start, NULL); return 0; }
3756 _gettimeofday=no
3757 cc_check && _gettimeofday=yes
3758 if test "$_gettimeofday" = yes ; then
3759 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3760 _need_gettimeofday=no
3761 else
3762 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3763 _need_gettimeofday=yes
3765 echores "$_gettimeofday"
3768 echocheck "glob()"
3769 cat > $TMPC << EOF
3770 #include <stdio.h>
3771 #include <glob.h>
3772 int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
3774 _glob=no
3775 cc_check && _glob=yes
3776 if test "$_glob" = yes ; then
3777 def_glob='#define HAVE_GLOB 1'
3778 _need_glob=no
3779 else
3780 def_glob='#undef HAVE_GLOB'
3781 _need_glob=yes
3783 echores "$_glob"
3786 echocheck "setenv()"
3787 cat > $TMPC << EOF
3788 #include <stdlib.h>
3789 int main(void) { setenv("","",0); return 0; }
3791 _setenv=no
3792 cc_check && _setenv=yes
3793 if test "$_setenv" = yes ; then
3794 def_setenv='#define HAVE_SETENV 1'
3795 _need_setenv=no
3796 else
3797 def_setenv='#undef HAVE_SETENV'
3798 _need_setenv=yes
3800 echores "$_setenv"
3803 echocheck "setmode()"
3804 _setmode=no
3805 def_setmode='#define HAVE_SETMODE 0'
3806 cat > $TMPC << EOF
3807 #include <io.h>
3808 int main(void) { setmode(0, 0); return 0; }
3810 cc_check && _setmode=yes && def_setmode='#define HAVE_SETMODE 1'
3811 echores "$_setmode"
3814 if sunos; then
3815 echocheck "sysi86()"
3816 cat > $TMPC << EOF
3817 #include <sys/sysi86.h>
3818 int main(void) { sysi86(0); return 0; }
3820 _sysi86=no
3821 cc_check && _sysi86=yes
3822 if test "$_sysi86" = yes ; then
3823 def_sysi86='#define HAVE_SYSI86 1'
3824 cat > $TMPC << EOF
3825 #include <sys/sysi86.h>
3826 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
3828 cc_check && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3829 else
3830 def_sysi86='#undef HAVE_SYSI86'
3832 echores "$_sysi86"
3833 fi #if sunos
3836 echocheck "sys/sysinfo.h"
3837 cat > $TMPC << EOF
3838 #include <sys/sysinfo.h>
3839 int main(void) {
3840 struct sysinfo s_info;
3841 sysinfo(&s_info);
3842 return 0;
3845 _sys_sysinfo=no
3846 cc_check && _sys_sysinfo=yes
3847 if test "$_sys_sysinfo" = yes ; then
3848 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3849 else
3850 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3852 echores "$_sys_sysinfo"
3855 if darwin; then
3857 echocheck "Mac OS X Finder Support"
3858 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3859 if test "$_macosx_finder" = yes ; then
3860 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3861 extra_ldflags="$extra_ldflags -framework Carbon"
3863 echores "$_macosx_finder"
3865 echocheck "Mac OS X Bundle file locations"
3866 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3867 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3868 if test "$_macosx_bundle" = yes ; then
3869 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3870 extra_ldflags="$extra_ldflags -framework Carbon"
3872 echores "$_macosx_bundle"
3874 echocheck "Apple Remote"
3875 if test "$_apple_remote" = auto ; then
3876 _apple_remote=no
3877 cat > $TMPC <<EOF
3878 #include <stdio.h>
3879 #include <IOKit/IOCFPlugIn.h>
3880 int main(void) {
3881 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3882 CFMutableDictionaryRef hidMatchDictionary;
3883 IOReturn ioReturnValue;
3885 // Set up a matching dictionary to search the I/O Registry by class.
3886 // name for all HID class devices
3887 hidMatchDictionary = IOServiceMatching("AppleIRController");
3889 // Now search I/O Registry for matching devices.
3890 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3891 hidMatchDictionary, &hidObjectIterator);
3893 // If search is unsuccessful, return nonzero.
3894 if (ioReturnValue != kIOReturnSuccess ||
3895 !IOIteratorIsValid(hidObjectIterator)) {
3896 return 1;
3898 return 0;
3901 cc_check -framework IOKit && tmp_run && _apple_remote=yes
3903 if test "$_apple_remote" = yes ; then
3904 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3905 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3906 else
3907 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3909 echores "$_apple_remote"
3911 fi #if darwin
3913 if linux; then
3915 echocheck "Apple IR"
3916 if test "$_apple_ir" = auto ; then
3917 _apple_ir=no
3918 cat > $TMPC <<EOF
3919 #include <linux/types.h>
3920 #include <linux/input.h>
3921 int main(void) {
3922 struct input_event ev;
3923 struct input_id id;
3924 return 0;
3927 cc_check && _apple_ir=yes
3929 if test "$_apple_ir" = yes ; then
3930 def_apple_ir='#define CONFIG_APPLE_IR 1'
3931 else
3932 def_apple_ir='#undef CONFIG_APPLE_IR'
3934 echores "$_apple_ir"
3935 fi #if linux
3937 echocheck "pkg-config"
3938 _pkg_config=pkg-config
3939 if $($_pkg_config --version > /dev/null 2>&1); then
3940 if test "$_ld_static"; then
3941 _pkg_config="$_pkg_config --static"
3943 echores "yes"
3944 else
3945 _pkg_config=false
3946 echores "no"
3950 echocheck "Samba support (libsmbclient)"
3951 if test "$_smb" = yes; then
3952 extra_ldflags="$extra_ldflags -lsmbclient"
3954 if test "$_smb" = auto; then
3955 _smb=no
3956 cat > $TMPC << EOF
3957 #include <libsmbclient.h>
3958 int main(void) { smbc_opendir("smb://"); return 0; }
3960 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3961 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3962 _smb=yes && break
3963 done
3966 if test "$_smb" = yes; then
3967 def_smb="#define CONFIG_LIBSMBCLIENT 1"
3968 inputmodules="smb $inputmodules"
3969 else
3970 def_smb="#undef CONFIG_LIBSMBCLIENT"
3971 noinputmodules="smb $noinputmodules"
3973 echores "$_smb"
3976 #########
3977 # VIDEO #
3978 #########
3981 echocheck "tdfxfb"
3982 if test "$_tdfxfb" = yes ; then
3983 def_tdfxfb='#define CONFIG_TDFXFB 1'
3984 vomodules="tdfxfb $vomodules"
3985 else
3986 def_tdfxfb='#undef CONFIG_TDFXFB'
3987 novomodules="tdfxfb $novomodules"
3989 echores "$_tdfxfb"
3991 echocheck "s3fb"
3992 if test "$_s3fb" = yes ; then
3993 def_s3fb='#define CONFIG_S3FB 1'
3994 vomodules="s3fb $vomodules"
3995 else
3996 def_s3fb='#undef CONFIG_S3FB'
3997 novomodules="s3fb $novomodules"
3999 echores "$_s3fb"
4001 echocheck "wii"
4002 if test "$_wii" = yes ; then
4003 def_wii='#define CONFIG_WII 1'
4004 vomodules="wii $vomodules"
4005 else
4006 def_wii='#undef CONFIG_WII'
4007 novomodules="wii $novomodules"
4009 echores "$_wii"
4011 echocheck "tdfxvid"
4012 if test "$_tdfxvid" = yes ; then
4013 def_tdfxvid='#define CONFIG_TDFX_VID 1'
4014 vomodules="tdfx_vid $vomodules"
4015 else
4016 def_tdfxvid='#undef CONFIG_TDFX_VID'
4017 novomodules="tdfx_vid $novomodules"
4019 echores "$_tdfxvid"
4021 echocheck "xvr100"
4022 if test "$_xvr100" = auto ; then
4023 cat > $TMPC << EOF
4024 #include <unistd.h>
4025 #include <sys/fbio.h>
4026 #include <sys/visual_io.h>
4027 int main(void) {
4028 struct vis_identifier ident;
4029 struct fbgattr attr;
4030 ioctl(0, VIS_GETIDENTIFIER, &ident);
4031 ioctl(0, FBIOGATTR, &attr);
4032 return 0;
4035 _xvr100=no
4036 cc_check && _xvr100=yes
4038 if test "$_xvr100" = yes ; then
4039 def_xvr100='#define CONFIG_XVR100 1'
4040 vomodules="xvr100 $vomodules"
4041 else
4042 def_tdfxvid='#undef CONFIG_XVR100'
4043 novomodules="xvr100 $novomodules"
4045 echores "$_xvr100"
4047 echocheck "tga"
4048 if test "$_tga" = yes ; then
4049 def_tga='#define CONFIG_TGA 1'
4050 vomodules="tga $vomodules"
4051 else
4052 def_tga='#undef CONFIG_TGA'
4053 novomodules="tga $novomodules"
4055 echores "$_tga"
4058 echocheck "md5sum support"
4059 if test "$_md5sum" = yes; then
4060 def_md5sum="#define CONFIG_MD5SUM 1"
4061 vomodules="md5sum $vomodules"
4062 else
4063 def_md5sum="#undef CONFIG_MD5SUM"
4064 novomodules="md5sum $novomodules"
4066 echores "$_md5sum"
4069 echocheck "yuv4mpeg support"
4070 if test "$_yuv4mpeg" = yes; then
4071 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
4072 vomodules="yuv4mpeg $vomodules"
4073 else
4074 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
4075 novomodules="yuv4mpeg $novomodules"
4077 echores "$_yuv4mpeg"
4080 echocheck "bl"
4081 if test "$_bl" = yes ; then
4082 def_bl='#define CONFIG_BL 1'
4083 vomodules="bl $vomodules"
4084 else
4085 def_bl='#undef CONFIG_BL'
4086 novomodules="bl $novomodules"
4088 echores "$_bl"
4091 echocheck "DirectFB"
4092 if test "$_directfb" = auto ; then
4093 _directfb=no
4094 cat > $TMPC <<EOF
4095 #include <directfb.h>
4096 int main(void) { DirectFBInit(0, 0); return 0; }
4098 for _inc_tmp in "" -I/usr/local/include/directfb \
4099 -I/usr/include/directfb -I/usr/local/include; do
4100 cc_check $_inc_tmp -ldirectfb && _directfb=yes && \
4101 extra_cflags="$extra_cflags $_inc_tmp" && break
4102 done
4105 dfb_version() {
4106 expr $1 \* 65536 + $2 \* 256 + $3
4109 if test "$_directfb" = yes; then
4110 cat > $TMPC << EOF
4111 #include <directfb_version.h>
4113 dfb_ver = DIRECTFB_MAJOR_VERSION.DIRECTFB_MINOR_VERSION.DIRECTFB_MICRO_VERSION
4116 if $_cc -E $TMPC $extra_cflags > "$TMPEXE"; then
4117 _directfb_version=$(sed -n 's/^dfb_ver[^0-9]*\(.*\)/\1/p' "$TMPEXE" | tr -d '()')
4118 _dfb_major=$(echo $_directfb_version | cut -d . -f 1)
4119 _dfb_minor=$(echo $_directfb_version | cut -d . -f 2)
4120 _dfb_micro=$(echo $_directfb_version | cut -d . -f 3)
4121 _dfb_version=$(dfb_version $_dfb_major $_dfb_minor $_dfb_micro)
4122 if test "$_dfb_version" -ge $(dfb_version 0 9 13); then
4123 def_directfb_version="#define DIRECTFBVERSION $_dfb_version"
4124 res_comment="$_directfb_version"
4125 test "$_dfb_version" -ge $(dfb_version 0 9 15) && _dfbmga=yes
4126 else
4127 def_directfb_version='#undef DIRECTFBVERSION'
4128 _directfb=no
4129 res_comment="version >=0.9.13 required"
4131 else
4132 _directfb=no
4133 res_comment="failed to get version"
4136 echores "$_directfb"
4138 if test "$_directfb" = yes ; then
4139 def_directfb='#define CONFIG_DIRECTFB 1'
4140 vomodules="directfb $vomodules"
4141 libs_mplayer="$libs_mplayer -ldirectfb"
4142 else
4143 def_directfb='#undef CONFIG_DIRECTFB'
4144 novomodules="directfb $novomodules"
4146 if test "$_dfbmga" = yes; then
4147 vomodules="dfbmga $vomodules"
4148 def_dfbmga='#define CONFIG_DFBMGA 1'
4149 else
4150 novomodules="dfbmga $novomodules"
4151 def_dfbmga='#undef CONFIG_DFBMGA'
4155 echocheck "X11 headers presence"
4156 _x11_headers="no"
4157 res_comment="check if the dev(el) packages are installed"
4158 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
4159 if test -f "$I/X11/Xlib.h" ; then
4160 _x11_headers="yes"
4161 res_comment=""
4162 break
4164 done
4165 if test $_cross_compile = no; then
4166 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
4167 /usr/include/X11R6 /usr/openwin/include ; do
4168 if test -f "$I/X11/Xlib.h" ; then
4169 extra_cflags="$extra_cflags -I$I"
4170 _x11_headers="yes"
4171 res_comment="using $I"
4172 break
4174 done
4176 echores "$_x11_headers"
4179 echocheck "X11"
4180 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
4181 cat > $TMPC <<EOF
4182 #include <X11/Xlib.h>
4183 #include <X11/Xutil.h>
4184 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; }
4186 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
4187 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
4188 -L/usr/lib ; do
4189 if netbsd; then
4190 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
4191 else
4192 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
4194 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" \
4195 && _x11=yes && break
4196 done
4198 if test "$_x11" = yes ; then
4199 def_x11='#define CONFIG_X11 1'
4200 vomodules="x11 xover $vomodules"
4201 else
4202 _x11=no
4203 def_x11='#undef CONFIG_X11'
4204 novomodules="x11 $novomodules"
4205 res_comment="check if the dev(el) packages are installed"
4206 # disable stuff that depends on X
4207 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
4209 echores "$_x11"
4211 echocheck "Xss screensaver extensions"
4212 if test "$_xss" = auto ; then
4213 cat > $TMPC << EOF
4214 #include <X11/Xlib.h>
4215 #include <X11/extensions/scrnsaver.h>
4216 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
4218 _xss=no
4219 cc_check -lXss && _xss=yes
4221 if test "$_xss" = yes ; then
4222 def_xss='#define CONFIG_XSS 1'
4223 libs_mplayer="$libs_mplayer -lXss"
4224 else
4225 def_xss='#undef CONFIG_XSS'
4227 echores "$_xss"
4229 echocheck "DPMS"
4230 _xdpms3=no
4231 _xdpms4=no
4232 if test "$_x11" = yes ; then
4233 cat > $TMPC <<EOF
4234 #include <X11/Xmd.h>
4235 #include <X11/Xlib.h>
4236 #include <X11/Xutil.h>
4237 #include <X11/Xatom.h>
4238 #include <X11/extensions/dpms.h>
4239 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4241 cc_check -lXdpms && _xdpms3=yes
4242 cat > $TMPC <<EOF
4243 #include <X11/Xlib.h>
4244 #include <X11/extensions/dpms.h>
4245 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4247 cc_check -lXext && _xdpms4=yes
4249 if test "$_xdpms4" = yes ; then
4250 def_xdpms='#define CONFIG_XDPMS 1'
4251 res_comment="using Xdpms 4"
4252 echores "yes"
4253 elif test "$_xdpms3" = yes ; then
4254 def_xdpms='#define CONFIG_XDPMS 1'
4255 libs_mplayer="$libs_mplayer -lXdpms"
4256 res_comment="using Xdpms 3"
4257 echores "yes"
4258 else
4259 def_xdpms='#undef CONFIG_XDPMS'
4260 echores "no"
4264 echocheck "Xv"
4265 if test "$_xv" = auto ; then
4266 cat > $TMPC <<EOF
4267 #include <X11/Xlib.h>
4268 #include <X11/extensions/Xvlib.h>
4269 int main(void) {
4270 (void) XvGetPortAttribute(0, 0, 0, 0);
4271 (void) XvQueryPortAttributes(0, 0, 0);
4272 return 0; }
4274 _xv=no
4275 cc_check -lXv && _xv=yes
4278 if test "$_xv" = yes ; then
4279 def_xv='#define CONFIG_XV 1'
4280 libs_mplayer="$libs_mplayer -lXv"
4281 vomodules="xv $vomodules"
4282 else
4283 def_xv='#undef CONFIG_XV'
4284 novomodules="xv $novomodules"
4286 echores "$_xv"
4289 echocheck "XvMC"
4290 if test "$_xv" = yes && test "$_xvmc" != no ; then
4291 _xvmc=no
4292 cat > $TMPC <<EOF
4293 #include <X11/Xlib.h>
4294 #include <X11/extensions/Xvlib.h>
4295 #include <X11/extensions/XvMClib.h>
4296 int main(void) {
4297 (void) XvMCQueryExtension(0,0,0);
4298 (void) XvMCCreateContext(0,0,0,0,0,0,0);
4299 return 0; }
4301 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
4302 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
4303 done
4305 if test "$_xvmc" = yes ; then
4306 def_xvmc='#define CONFIG_XVMC 1'
4307 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
4308 vomodules="xvmc $vomodules"
4309 res_comment="using $_xvmclib"
4310 else
4311 def_xvmc='#define CONFIG_XVMC 0'
4312 novomodules="xvmc $novomodules"
4314 echores "$_xvmc"
4317 echocheck "VDPAU"
4318 if test "$_vdpau" = auto ; then
4319 _vdpau=no
4320 if test "$_dl" = yes ; then
4321 cat > $TMPC <<EOF
4322 #include <vdpau/vdpau_x11.h>
4323 int main(void) {
4324 (void) vdp_device_create_x11(0, 0, 0, 0);
4325 return VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L1; }
4327 cc_check -lvdpau && _vdpau=yes
4330 if test "$_vdpau" = yes ; then
4331 def_vdpau='#define CONFIG_VDPAU 1'
4332 libs_mplayer="$libs_mplayer -lvdpau"
4333 vomodules="vdpau $vomodules"
4334 else
4335 def_vdpau='#define CONFIG_VDPAU 0'
4336 novomodules="vdpau $novomodules"
4338 echores "$_vdpau"
4341 echocheck "Xinerama"
4342 if test "$_xinerama" = auto ; then
4343 cat > $TMPC <<EOF
4344 #include <X11/Xlib.h>
4345 #include <X11/extensions/Xinerama.h>
4346 int main(void) { (void) XineramaIsActive(0); return 0; }
4348 _xinerama=no
4349 cc_check -lXinerama && _xinerama=yes
4352 if test "$_xinerama" = yes ; then
4353 def_xinerama='#define CONFIG_XINERAMA 1'
4354 libs_mplayer="$libs_mplayer -lXinerama"
4355 else
4356 def_xinerama='#undef CONFIG_XINERAMA'
4358 echores "$_xinerama"
4361 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4362 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4363 # named 'X extensions' or something similar.
4364 # This check may be useful for future mplayer versions (to change resolution)
4365 # If you run into problems, remove '-lXxf86vm'.
4366 echocheck "Xxf86vm"
4367 if test "$_vm" = auto ; then
4368 cat > $TMPC <<EOF
4369 #include <X11/Xlib.h>
4370 #include <X11/extensions/xf86vmode.h>
4371 int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; }
4373 _vm=no
4374 cc_check -lXxf86vm && _vm=yes
4376 if test "$_vm" = yes ; then
4377 def_vm='#define CONFIG_XF86VM 1'
4378 libs_mplayer="$libs_mplayer -lXxf86vm"
4379 else
4380 def_vm='#undef CONFIG_XF86VM'
4382 echores "$_vm"
4384 # Check for the presence of special keycodes, like audio control buttons
4385 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4386 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4387 # have these new keycodes.
4388 echocheck "XF86keysym"
4389 if test "$_xf86keysym" = auto; then
4390 _xf86keysym=no
4391 cat > $TMPC <<EOF
4392 #include <X11/Xlib.h>
4393 #include <X11/XF86keysym.h>
4394 int main(void) { return XF86XK_AudioPause; }
4396 cc_check && _xf86keysym=yes
4398 if test "$_xf86keysym" = yes ; then
4399 def_xf86keysym='#define CONFIG_XF86XK 1'
4400 else
4401 def_xf86keysym='#undef CONFIG_XF86XK'
4403 echores "$_xf86keysym"
4405 echocheck "DGA"
4406 if test "$_dga2" = auto && test "$_x11" = yes ; then
4407 cat > $TMPC << EOF
4408 #include <X11/Xlib.h>
4409 #include <X11/extensions/xf86dga.h>
4410 int main(void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4412 _dga2=no
4413 cc_check -lXxf86dga && _dga2=yes
4415 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4416 cat > $TMPC << EOF
4417 #include <X11/Xlib.h>
4418 #include <X11/extensions/xf86dga.h>
4419 int main(void) { (void) XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4421 _dga1=no
4422 cc_check -lXxf86dga -lXxf86vm && _dga1=yes
4425 _dga=no
4426 def_dga='#undef CONFIG_DGA'
4427 def_dga1='#undef CONFIG_DGA1'
4428 def_dga2='#undef CONFIG_DGA2'
4429 if test "$_dga1" = yes ; then
4430 _dga=yes
4431 def_dga1='#define CONFIG_DGA1 1'
4432 res_comment="using DGA 1.0"
4433 elif test "$_dga2" = yes ; then
4434 _dga=yes
4435 def_dga2='#define CONFIG_DGA2 1'
4436 res_comment="using DGA 2.0"
4438 if test "$_dga" = yes ; then
4439 def_dga='#define CONFIG_DGA 1'
4440 libs_mplayer="$libs_mplayer -lXxf86dga"
4441 vomodules="dga $vomodules"
4442 else
4443 novomodules="dga $novomodules"
4445 echores "$_dga"
4448 echocheck "3dfx"
4449 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4450 def_3dfx='#define CONFIG_3DFX 1'
4451 vomodules="3dfx $vomodules"
4452 else
4453 def_3dfx='#undef CONFIG_3DFX'
4454 novomodules="3dfx $novomodules"
4456 echores "$_3dfx"
4459 echocheck "VIDIX"
4460 def_vidix='#undef CONFIG_VIDIX'
4461 def_vidix_drv_cyberblade='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4462 _vidix_drv_cyberblade=no
4463 def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4464 _vidix_drv_ivtv=no
4465 def_vidix_drv_mach64='#undef CONFIG_VIDIX_DRV_MACH64'
4466 _vidix_drv_mach64=no
4467 def_vidix_drv_mga='#undef CONFIG_VIDIX_DRV_MGA'
4468 _vidix_drv_mga=no
4469 def_vidix_drv_mga_crtc2='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4470 _vidix_drv_mga_crtc2=no
4471 def_vidix_drv_nvidia='#undef CONFIG_VIDIX_DRV_NVIDIA'
4472 _vidix_drv_nvidia=no
4473 def_vidix_drv_pm2='#undef CONFIG_VIDIX_DRV_PM2'
4474 _vidix_drv_pm2=no
4475 def_vidix_drv_pm3='#undef CONFIG_VIDIX_DRV_PM3'
4476 _vidix_drv_pm3=no
4477 def_vidix_drv_radeon='#undef CONFIG_VIDIX_DRV_RADEON'
4478 _vidix_drv_radeon=no
4479 def_vidix_drv_rage128='#undef CONFIG_VIDIX_DRV_RAGE128'
4480 _vidix_drv_rage128=no
4481 def_vidix_drv_s3='#undef CONFIG_VIDIX_DRV_S3'
4482 _vidix_drv_s3=no
4483 def_vidix_drv_sh_veu='#undef CONFIG_VIDIX_DRV_SH_VEU'
4484 _vidix_drv_sh_veu=no
4485 def_vidix_drv_sis='#undef CONFIG_VIDIX_DRV_SIS'
4486 _vidix_drv_sis=no
4487 def_vidix_drv_unichrome='#undef CONFIG_VIDIX_DRV_UNICHROME'
4488 _vidix_drv_unichrome=no
4489 if test "$_vidix" = auto ; then
4490 _vidix=no
4491 x86 && (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32) \
4492 && _vidix=yes
4493 x86_64 && ! linux && _vidix=no
4494 (ppc || alpha) && linux && _vidix=yes
4496 echores "$_vidix"
4498 if test "$_vidix" = yes ; then
4499 def_vidix='#define CONFIG_VIDIX 1'
4500 vomodules="cvidix $vomodules"
4501 # FIXME: ivtv driver temporarily disabled until we have a proper test
4502 #test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4503 test "$_vidix_drivers" || _vidix_drivers="cyberblade mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4505 # some vidix drivers are architecture and os specific, discard them elsewhere
4506 x86 || _vidix_drivers=$(echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome// -e s/s3//)
4507 (test $host_arch = "sh" && linux) || _vidix_drivers=$(echo $_vidix_drivers | sed s/sh_veu//)
4509 for driver in $_vidix_drivers ; do
4510 uc_driver=$(echo $driver | tr '[a-z]' '[A-Z]')
4511 eval _vidix_drv_${driver}=yes
4512 eval def_vidix_drv_${driver}=\"\#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4513 done
4515 echocheck "VIDIX PCI device name database"
4516 echores "$_vidix_pcidb"
4517 if test "$_vidix_pcidb" = yes ; then
4518 _vidix_pcidb_val=1
4519 else
4520 _vidix_pcidb_val=0
4523 echocheck "VIDIX dhahelper support"
4524 test "$_dhahelper" = yes && cflags_dhahelper=-DCONFIG_DHAHELPER
4525 echores "$_dhahelper"
4527 echocheck "VIDIX svgalib_helper support"
4528 test "$_svgalib_helper" = yes && cflags_svgalib_helper=-DCONFIG_SVGAHELPER
4529 echores "$_svgalib_helper"
4531 else
4532 novomodules="cvidix $novomodules"
4535 if test "$_vidix" = yes && win32; then
4536 winvidix=yes
4537 vomodules="winvidix $vomodules"
4538 libs_mplayer="$libs_mplayer -lgdi32"
4539 else
4540 novomodules="winvidix $novomodules"
4542 if test "$_vidix" = yes && test "$_x11" = yes; then
4543 xvidix=yes
4544 vomodules="xvidix $vomodules"
4545 else
4546 novomodules="xvidix $novomodules"
4549 echocheck "GGI"
4550 if test "$_ggi" = auto ; then
4551 cat > $TMPC << EOF
4552 #include <ggi/ggi.h>
4553 int main(void) { ggiInit(); return 0; }
4555 _ggi=no
4556 cc_check -lggi && _ggi=yes
4558 if test "$_ggi" = yes ; then
4559 def_ggi='#define CONFIG_GGI 1'
4560 libs_mplayer="$libs_mplayer -lggi"
4561 vomodules="ggi $vomodules"
4562 else
4563 def_ggi='#undef CONFIG_GGI'
4564 novomodules="ggi $novomodules"
4566 echores "$_ggi"
4568 echocheck "GGI extension: libggiwmh"
4569 if test "$_ggiwmh" = auto ; then
4570 _ggiwmh=no
4571 cat > $TMPC << EOF
4572 #include <ggi/ggi.h>
4573 #include <ggi/wmh.h>
4574 int main(void) { ggiInit(); ggiWmhInit(); return 0; }
4576 cc_check -lggi -lggiwmh && _ggiwmh=yes
4578 # needed to get right output on obscure combination
4579 # like --disable-ggi --enable-ggiwmh
4580 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4581 def_ggiwmh='#define CONFIG_GGIWMH 1'
4582 libs_mplayer="$libs_mplayer -lggiwmh"
4583 else
4584 _ggiwmh=no
4585 def_ggiwmh='#undef CONFIG_GGIWMH'
4587 echores "$_ggiwmh"
4590 echocheck "AA"
4591 if test "$_aa" = auto ; then
4592 cat > $TMPC << EOF
4593 #include <aalib.h>
4594 extern struct aa_hardware_params aa_defparams;
4595 extern struct aa_renderparams aa_defrenderparams;
4596 int main(void) {
4597 aa_context *c;
4598 aa_renderparams *p;
4599 (void) aa_init(0, 0, 0);
4600 c = aa_autoinit(&aa_defparams);
4601 p = aa_getrenderparams();
4602 aa_autoinitkbd(c,0);
4603 return 0; }
4605 _aa=no
4606 for _ld_tmp in "-laa" ; do
4607 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4608 done
4610 if test "$_aa" = yes ; then
4611 def_aa='#define CONFIG_AA 1'
4612 if cygwin ; then
4613 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4615 vomodules="aa $vomodules"
4616 else
4617 def_aa='#undef CONFIG_AA'
4618 novomodules="aa $novomodules"
4620 echores "$_aa"
4623 echocheck "CACA"
4624 if test "$_caca" = auto ; then
4625 _caca=no
4626 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4627 cat > $TMPC << EOF
4628 #include <caca.h>
4629 #ifdef CACA_API_VERSION_1
4630 #include <caca0.h>
4631 #endif
4632 int main(void) { (void) caca_init(); return 0; }
4634 cc_check $(caca-config --libs) && _caca=yes
4637 if test "$_caca" = yes ; then
4638 def_caca='#define CONFIG_CACA 1'
4639 extra_cflags="$extra_cflags $(caca-config --cflags)"
4640 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4641 vomodules="caca $vomodules"
4642 else
4643 def_caca='#undef CONFIG_CACA'
4644 novomodules="caca $novomodules"
4646 echores "$_caca"
4649 echocheck "SVGAlib"
4650 if test "$_svga" = auto ; then
4651 cat > $TMPC << EOF
4652 #include <vga.h>
4653 int main(void) { return 0; }
4655 _svga=no
4656 cc_check -lvga $_ld_lm && _svga=yes
4658 if test "$_svga" = yes ; then
4659 def_svga='#define CONFIG_SVGALIB 1'
4660 libs_mplayer="$libs_mplayer -lvga"
4661 vomodules="svga $vomodules"
4662 else
4663 def_svga='#undef CONFIG_SVGALIB'
4664 novomodules="svga $novomodules"
4666 echores "$_svga"
4669 echocheck "FBDev"
4670 if test "$_fbdev" = auto ; then
4671 _fbdev=no
4672 linux && _fbdev=yes
4674 if test "$_fbdev" = yes ; then
4675 def_fbdev='#define CONFIG_FBDEV 1'
4676 vomodules="fbdev $vomodules"
4677 else
4678 def_fbdev='#undef CONFIG_FBDEV'
4679 novomodules="fbdev $novomodules"
4681 echores "$_fbdev"
4685 echocheck "DVB"
4686 if test "$_dvb" = auto ; then
4687 _dvb=no
4688 cat >$TMPC << EOF
4689 #include <poll.h>
4690 #include <sys/ioctl.h>
4691 #include <stdio.h>
4692 #include <time.h>
4693 #include <unistd.h>
4694 #include <linux/dvb/dmx.h>
4695 #include <linux/dvb/frontend.h>
4696 #include <linux/dvb/video.h>
4697 #include <linux/dvb/audio.h>
4698 int main(void) {return 0;}
4700 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4701 cc_check $_inc_tmp && _dvb=yes && \
4702 extra_cflags="$extra_cflags $_inc_tmp" && break
4703 done
4705 echores "$_dvb"
4706 if test "$_dvb" = yes ; then
4707 _dvbin=yes
4708 inputmodules="dvb $inputmodules"
4709 def_dvb='#define CONFIG_DVB 1'
4710 def_dvbin='#define CONFIG_DVBIN 1'
4711 aomodules="mpegpes(dvb) $aomodules"
4712 vomodules="mpegpes(dvb) $vomodules"
4713 else
4714 _dvbin=no
4715 noinputmodules="dvb $noinputmodules"
4716 def_dvb='#undef CONFIG_DVB'
4717 def_dvbin='#undef CONFIG_DVBIN '
4718 aomodules="mpegpes(file) $aomodules"
4719 vomodules="mpegpes(file) $vomodules"
4723 if darwin; then
4725 echocheck "QuickTime"
4726 if test "$quicktime" = auto ; then
4727 cat > $TMPC <<EOF
4728 #include <QuickTime/QuickTime.h>
4729 int main(void) {
4730 ImageDescription *desc;
4731 EnterMovies();
4732 ExitMovies();
4733 return 0;
4736 quicktime=no
4737 cc_check -framework QuickTime && quicktime=yes
4739 if test "$quicktime" = yes ; then
4740 extra_ldflags="$extra_ldflags -framework QuickTime"
4741 def_quicktime='#define CONFIG_QUICKTIME 1'
4742 else
4743 def_quicktime='#undef CONFIG_QUICKTIME'
4744 _quartz=no
4746 echores $quicktime
4748 echocheck "Quartz"
4749 if test "$_quartz" = auto ; then
4750 cat > $TMPC <<EOF
4751 #include <Carbon/Carbon.h>
4752 int main(void) {
4753 CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false);
4754 return 0;
4757 _quartz=no
4758 cc_check -framework Carbon && _quartz=yes
4760 if test "$_quartz" = yes ; then
4761 libs_mplayer="$libs_mplayer -framework Carbon"
4762 def_quartz='#define CONFIG_QUARTZ 1'
4763 vomodules="quartz $vomodules"
4764 else
4765 def_quartz='#undef CONFIG_QUARTZ'
4766 novomodules="quartz $novomodules"
4768 echores $_quartz
4770 echocheck "CoreVideo"
4771 if test "$_corevideo" = auto ; then
4772 cat > $TMPC <<EOF
4773 #include <Carbon/Carbon.h>
4774 #include <CoreServices/CoreServices.h>
4775 #include <OpenGL/OpenGL.h>
4776 #include <QuartzCore/CoreVideo.h>
4777 int main(void) { return 0; }
4779 _corevideo=no
4780 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4782 if test "$_corevideo" = yes ; then
4783 vomodules="corevideo $vomodules"
4784 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4785 def_corevideo='#define CONFIG_COREVIDEO 1'
4786 else
4787 novomodules="corevideo $novomodules"
4788 def_corevideo='#undef CONFIG_COREVIDEO'
4790 echores "$_corevideo"
4792 fi #if darwin
4795 echocheck "PNG support"
4796 if test "$_png" = auto ; then
4797 _png=no
4798 if irix ; then
4799 # Don't check for -lpng on irix since it has its own libpng
4800 # incompatible with the GNU libpng
4801 res_comment="disabled on irix (not GNU libpng)"
4802 else
4803 cat > $TMPC << EOF
4804 #include <png.h>
4805 #include <string.h>
4806 int main(void) {
4807 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4808 printf("libpng: %s\n", png_libpng_ver);
4809 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4812 cc_check -lpng -lz $_ld_lm && _png=yes
4815 echores "$_png"
4816 if test "$_png" = yes ; then
4817 def_png='#define CONFIG_PNG 1'
4818 extra_ldflags="$extra_ldflags -lpng -lz"
4819 else
4820 def_png='#undef CONFIG_PNG'
4823 echocheck "MNG support"
4824 if test "$_mng" = auto ; then
4825 _mng=no
4826 cat > $TMPC << EOF
4827 #include <libmng.h>
4828 int main(void) {
4829 const char * p_ver = mng_version_text();
4830 return !p_ver || p_ver[0] == 0;
4833 if cc_check -lmng -lz $_ld_lm ; then
4834 _mng=yes
4837 echores "$_mng"
4838 if test "$_mng" = yes ; then
4839 def_mng='#define CONFIG_MNG 1'
4840 extra_ldflags="$extra_ldflags -lmng -lz"
4841 else
4842 def_mng='#undef CONFIG_MNG'
4845 echocheck "JPEG support"
4846 if test "$_jpeg" = auto ; then
4847 _jpeg=no
4848 cat > $TMPC << EOF
4849 #include <stdio.h>
4850 #include <stdlib.h>
4851 #include <setjmp.h>
4852 #include <string.h>
4853 #include <jpeglib.h>
4854 int main(void) { return 0; }
4856 cc_check -ljpeg $_ld_lm && _jpeg=yes
4858 echores "$_jpeg"
4860 if test "$_jpeg" = yes ; then
4861 def_jpeg='#define CONFIG_JPEG 1'
4862 vomodules="jpeg $vomodules"
4863 extra_ldflags="$extra_ldflags -ljpeg"
4864 else
4865 def_jpeg='#undef CONFIG_JPEG'
4866 novomodules="jpeg $novomodules"
4871 echocheck "PNM support"
4872 if test "$_pnm" = yes; then
4873 def_pnm="#define CONFIG_PNM 1"
4874 vomodules="pnm $vomodules"
4875 else
4876 def_pnm="#undef CONFIG_PNM"
4877 novomodules="pnm $novomodules"
4879 echores "$_pnm"
4883 echocheck "GIF support"
4884 # This is to appease people who want to force gif support.
4885 # If it is forced to yes, then we still do checks to determine
4886 # which gif library to use.
4887 if test "$_gif" = yes ; then
4888 _force_gif=yes
4889 _gif=auto
4892 if test "$_gif" = auto ; then
4893 _gif=no
4894 cat > $TMPC << EOF
4895 #include <gif_lib.h>
4896 int main(void) { return 0; }
4898 for _ld_gif in "-lungif" "-lgif" ; do
4899 cc_check $_ld_gif && _gif=yes && break
4900 done
4903 # If no library was found, and the user wants support forced,
4904 # then we force it on with libgif, as this is the safest
4905 # assumption IMHO. (libungif & libregif both create symbolic
4906 # links to libgif. We also assume that no x11 support is needed,
4907 # because if you are forcing this, then you _should_ know what
4908 # you are doing. [ Besides, package maintainers should never
4909 # have compiled x11 deps into libungif in the first place. ] )
4910 # </rant>
4911 # --Joey
4912 if test "$_force_gif" = yes && test "$_gif" = no ; then
4913 _gif=yes
4914 _ld_gif="-lgif"
4917 if test "$_gif" = yes ; then
4918 def_gif='#define CONFIG_GIF 1'
4919 codecmodules="gif $codecmodules"
4920 vomodules="gif89a $vomodules"
4921 res_comment="old version, some encoding functions disabled"
4922 def_gif_4='#undef CONFIG_GIF_4'
4923 extra_ldflags="$extra_ldflags $_ld_gif"
4925 cat > $TMPC << EOF
4926 #include <signal.h>
4927 #include <gif_lib.h>
4928 void catch() { exit(1); }
4929 int main(void) {
4930 signal(SIGSEGV, catch); // catch segfault
4931 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4932 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4933 return 0;
4936 if cc_check "$_ld_gif" ; then
4937 def_gif_4='#define CONFIG_GIF_4 1'
4938 res_comment=""
4940 else
4941 def_gif='#undef CONFIG_GIF'
4942 def_gif_4='#undef CONFIG_GIF_4'
4943 novomodules="gif89a $novomodules"
4944 nocodecmodules="gif $nocodecmodules"
4946 echores "$_gif"
4949 case "$_gif" in yes*)
4950 echocheck "broken giflib workaround"
4951 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
4953 cat > $TMPC << EOF
4954 #include <gif_lib.h>
4955 int main(void) {
4956 GifFileType gif;
4957 printf("UserData is at address %p\n", gif.UserData);
4958 return 0;
4961 if cc_check "$_ld_gif" ; then
4962 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
4963 echores "disabled"
4964 else
4965 echores "enabled"
4968 esac
4971 echocheck "VESA support"
4972 if test "$_vesa" = auto ; then
4973 cat > $TMPC << EOF
4974 #include <vbe.h>
4975 int main(void) { vbeVersion(); return 0; }
4977 _vesa=no
4978 cc_check -lvbe -llrmi && _vesa=yes
4980 if test "$_vesa" = yes ; then
4981 def_vesa='#define CONFIG_VESA 1'
4982 libs_mplayer="$libs_mplayer -lvbe -llrmi"
4983 vomodules="vesa $vomodules"
4984 else
4985 def_vesa='#undef CONFIG_VESA'
4986 novomodules="vesa $novomodules"
4988 echores "$_vesa"
4990 #################
4991 # VIDEO + AUDIO #
4992 #################
4995 echocheck "SDL"
4996 _inc_tmp=""
4997 _ld_tmp=""
4998 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
4999 if test -z "$_sdlconfig" ; then
5000 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
5001 _sdlconfig="sdl-config"
5002 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
5003 _sdlconfig="sdl11-config"
5004 else
5005 _sdlconfig=false
5008 if test "$_sdl" = auto || test "$_sdl" = yes ; then
5009 cat > $TMPC << EOF
5010 #ifdef CONFIG_SDL_SDL_H
5011 #include <SDL/SDL.h>
5012 #else
5013 #include <SDL.h>
5014 #endif
5015 #ifndef __APPLE__
5016 // we allow SDL hacking our main() only on OSX
5017 #undef main
5018 #endif
5019 int main(int argc, char *argv[]) {
5020 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
5021 return 0;
5024 _sdl=no
5025 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
5026 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
5027 _sdl=yes
5028 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
5029 break
5031 done
5032 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
5033 res_comment="using $_sdlconfig"
5034 if cygwin ; then
5035 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
5036 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
5037 elif mingw32 ; then
5038 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
5039 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
5040 else
5041 _inc_tmp="$($_sdlconfig --cflags)"
5042 _ld_tmp="$($_sdlconfig --libs)"
5044 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
5045 _sdl=yes
5049 if test "$_sdl" = yes ; then
5050 def_sdl='#define CONFIG_SDL 1'
5051 extra_cflags="$extra_cflags $_inc_tmp"
5052 libs_mplayer="$libs_mplayer $_ld_tmp"
5053 vomodules="sdl $vomodules"
5054 aomodules="sdl $aomodules"
5055 else
5056 def_sdl='#undef CONFIG_SDL'
5057 novomodules="sdl $novomodules"
5058 noaomodules="sdl $noaomodules"
5060 echores "$_sdl"
5063 # make sure this stays below CoreVideo to avoid issues due to namespace
5064 # conflicts between -lGL and -framework OpenGL
5065 echocheck "OpenGL"
5066 #Note: this test is run even with --enable-gl since we autodetect linker flags
5067 if (test "$_x11" = yes || test "$_sdl" = yes || win32) && test "$_gl" != no ; then
5068 cat > $TMPC << EOF
5069 #ifdef GL_WIN32
5070 #include <windows.h>
5071 #include <GL/gl.h>
5072 #elif defined(GL_SDL)
5073 #include <GL/gl.h>
5074 #ifdef CONFIG_SDL_SDL_H
5075 #include <SDL/SDL.h>
5076 #else
5077 #include <SDL.h>
5078 #endif
5079 #ifndef __APPLE__
5080 // we allow SDL hacking our main() only on OSX
5081 #undef main
5082 #endif
5083 #else
5084 #include <GL/gl.h>
5085 #include <X11/Xlib.h>
5086 #include <GL/glx.h>
5087 #endif
5088 int main(void) {
5089 #ifdef GL_WIN32
5090 HDC dc;
5091 wglCreateContext(dc);
5092 #elif defined(GL_SDL)
5093 SDL_GL_SwapBuffers();
5094 #else
5095 glXCreateContext(NULL, NULL, NULL, True);
5096 #endif
5097 glFinish();
5098 return 0;
5101 _gl=no
5102 for _ld_tmp in "" -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
5103 if cc_check $_ld_tmp $_ld_lm ; then
5104 _gl=yes
5105 _gl_x11=yes
5106 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
5107 break
5109 done
5110 if cc_check -DGL_WIN32 -lopengl32 ; then
5111 _gl=yes
5112 _gl_win32=yes
5113 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
5115 # last so it can reuse any linker etc. flags detected before
5116 if test "$_sdl" = yes ; then
5117 if cc_check -DGL_SDL ||
5118 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL ; then
5119 _gl=yes
5120 _gl_sdl=yes
5121 elif cc_check -DGL_SDL -lGL ||
5122 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL -lGL ; then
5123 _gl=yes
5124 _gl_sdl=yes
5125 libs_mplayer="$libs_mplayer -lGL"
5128 else
5129 _gl=no
5131 if test "$_gl" = yes ; then
5132 def_gl='#define CONFIG_GL 1'
5133 res_comment="backends:"
5134 if test "$_gl_win32" = yes ; then
5135 def_gl_win32='#define CONFIG_GL_WIN32 1'
5136 res_comment="$res_comment win32"
5138 if test "$_gl_x11" = yes ; then
5139 def_gl_x11='#define CONFIG_GL_X11 1'
5140 res_comment="$res_comment x11"
5142 if test "$_gl_sdl" = yes ; then
5143 def_gl_sdl='#define CONFIG_GL_SDL 1'
5144 res_comment="$res_comment sdl"
5146 vomodules="opengl $vomodules"
5147 else
5148 def_gl='#undef CONFIG_GL'
5149 def_gl_win32='#undef CONFIG_GL_WIN32'
5150 def_gl_x11='#undef CONFIG_GL_X11'
5151 def_gl_sdl='#undef CONFIG_GL_SDL'
5152 novomodules="opengl $novomodules"
5154 echores "$_gl"
5157 echocheck "MatrixView"
5158 if test "$_gl" = no ; then
5159 matrixview=no
5161 if test "$matrixview" = yes ; then
5162 vomodules="matrixview $vomodules"
5163 def_matrixview='#define CONFIG_MATRIXVIEW 1'
5164 else
5165 novomodules="matrixview $novomodules"
5166 def_matrixview='#undef CONFIG_MATRIXVIEW'
5168 echores "$matrixview"
5171 if os2 ; then
5172 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
5173 if test "$_kva" = auto; then
5174 cat > $TMPC << EOF
5175 #include <os2.h>
5176 #include <kva.h>
5177 int main( void ) { return 0; }
5179 _kva=no;
5180 cc_check -lkva && _kva=yes
5182 if test "$_kva" = yes ; then
5183 def_kva='#define CONFIG_KVA 1'
5184 libs_mplayer="$libs_mplayer -lkva"
5185 vomodules="kva $vomodules"
5186 else
5187 def_kva='#undef CONFIG_KVA'
5188 novomodules="kva $novomodules"
5190 echores "$_kva"
5191 fi #if os2
5194 if win32; then
5196 echocheck "Windows waveout"
5197 if test "$_win32waveout" = auto ; then
5198 cat > $TMPC << EOF
5199 #include <windows.h>
5200 #include <mmsystem.h>
5201 int main(void) { return 0; }
5203 _win32waveout=no
5204 cc_check -lwinmm && _win32waveout=yes
5206 if test "$_win32waveout" = yes ; then
5207 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
5208 libs_mplayer="$libs_mplayer -lwinmm"
5209 aomodules="win32 $aomodules"
5210 else
5211 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
5212 noaomodules="win32 $noaomodules"
5214 echores "$_win32waveout"
5216 echocheck "Direct3D"
5217 if test "$_direct3d" = auto ; then
5218 cat > $TMPC << EOF
5219 #include <windows.h>
5220 #include <d3d9.h>
5221 int main(void) { return 0; }
5223 _direct3d=no
5224 cc_check && _direct3d=yes
5226 if test "$_direct3d" = yes ; then
5227 def_direct3d='#define CONFIG_DIRECT3D 1'
5228 vomodules="direct3d $vomodules"
5229 else
5230 def_direct3d='#undef CONFIG_DIRECT3D'
5231 novomodules="direct3d $novomodules"
5233 echores "$_direct3d"
5235 echocheck "Directx"
5236 if test "$_directx" = auto ; then
5237 cat > $TMPC << EOF
5238 #include <windows.h>
5239 #include <ddraw.h>
5240 #include <dsound.h>
5241 int main(void) { return 0; }
5243 _directx=no
5244 cc_check -lgdi32 && _directx=yes
5246 if test "$_directx" = yes ; then
5247 def_directx='#define CONFIG_DIRECTX 1'
5248 libs_mplayer="$libs_mplayer -lgdi32"
5249 vomodules="directx $vomodules"
5250 aomodules="dsound $aomodules"
5251 else
5252 def_directx='#undef CONFIG_DIRECTX'
5253 novomodules="directx $novomodules"
5254 noaomodules="dsound $noaomodules"
5256 echores "$_directx"
5258 fi #if win32; then
5261 echocheck "DXR2"
5262 if test "$_dxr2" = auto; then
5263 _dxr2=no
5264 cat > $TMPC << EOF
5265 #include <dxr2ioctl.h>
5266 int main(void) { return 0; }
5268 for _inc_tmp in "" -I/usr/local/include/dxr2 -I/usr/include/dxr2; do
5269 cc_check $_inc_tmp && _dxr2=yes && \
5270 extra_cflags="$extra_cflags $_inc_tmp" && break
5271 done
5273 if test "$_dxr2" = yes; then
5274 def_dxr2='#define CONFIG_DXR2 1'
5275 aomodules="dxr2 $aomodules"
5276 vomodules="dxr2 $vomodules"
5277 else
5278 def_dxr2='#undef CONFIG_DXR2'
5279 noaomodules="dxr2 $noaomodules"
5280 novomodules="dxr2 $novomodules"
5282 echores "$_dxr2"
5284 echocheck "DXR3/H+"
5285 if test "$_dxr3" = auto ; then
5286 cat > $TMPC << EOF
5287 #include <linux/em8300.h>
5288 int main(void) { return 0; }
5290 _dxr3=no
5291 cc_check && _dxr3=yes
5293 if test "$_dxr3" = yes ; then
5294 def_dxr3='#define CONFIG_DXR3 1'
5295 vomodules="dxr3 $vomodules"
5296 else
5297 def_dxr3='#undef CONFIG_DXR3'
5298 novomodules="dxr3 $novomodules"
5300 echores "$_dxr3"
5303 echocheck "IVTV TV-Out (pre linux-2.6.24)"
5304 if test "$_ivtv" = auto ; then
5305 cat > $TMPC << EOF
5306 #include <stdlib.h>
5307 #include <inttypes.h>
5308 #include <linux/types.h>
5309 #include <linux/videodev2.h>
5310 #include <linux/ivtv.h>
5311 #include <sys/ioctl.h>
5312 int main(void) {
5313 struct ivtv_cfg_stop_decode sd;
5314 struct ivtv_cfg_start_decode sd1;
5315 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
5316 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
5317 return 0; }
5319 _ivtv=no
5320 cc_check && _ivtv=yes
5322 if test "$_ivtv" = yes ; then
5323 def_ivtv='#define CONFIG_IVTV 1'
5324 vomodules="ivtv $vomodules"
5325 aomodules="ivtv $aomodules"
5326 else
5327 def_ivtv='#undef CONFIG_IVTV'
5328 novomodules="ivtv $novomodules"
5329 noaomodules="ivtv $noaomodules"
5331 echores "$_ivtv"
5334 echocheck "V4L2 MPEG Decoder"
5335 if test "$_v4l2" = auto ; then
5336 cat > $TMPC << EOF
5337 #include <stdlib.h>
5338 #include <inttypes.h>
5339 #include <linux/types.h>
5340 #include <linux/videodev2.h>
5341 #include <linux/version.h>
5342 int main(void) {
5343 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
5344 #error kernel headers too old, need 2.6.22
5345 #endif
5346 struct v4l2_ext_controls ctrls;
5347 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
5348 return 0;
5351 _v4l2=no
5352 cc_check && _v4l2=yes
5354 if test "$_v4l2" = yes ; then
5355 def_v4l2='#define CONFIG_V4L2_DECODER 1'
5356 vomodules="v4l2 $vomodules"
5357 aomodules="v4l2 $aomodules"
5358 else
5359 def_v4l2='#undef CONFIG_V4L2_DECODER'
5360 novomodules="v4l2 $novomodules"
5361 noaomodules="v4l2 $noaomodules"
5363 echores "$_v4l2"
5367 #########
5368 # AUDIO #
5369 #########
5372 echocheck "OSS Audio"
5373 if test "$_ossaudio" = auto ; then
5374 cat > $TMPC << EOF
5375 #include <sys/ioctl.h>
5376 #include <$_soundcard_header>
5377 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
5379 _ossaudio=no
5380 cc_check && _ossaudio=yes
5382 if test "$_ossaudio" = yes ; then
5383 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
5384 aomodules="oss $aomodules"
5385 if test "$_linux_devfs" = yes; then
5386 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound/dsp"'
5387 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/sound/mixer"'
5388 else
5389 cat > $TMPC << EOF
5390 #include <sys/ioctl.h>
5391 #include <$_soundcard_header>
5392 #ifdef OPEN_SOUND_SYSTEM
5393 int main(void) { return 0; }
5394 #else
5395 #error Not the real thing
5396 #endif
5398 _real_ossaudio=no
5399 cc_check && _real_ossaudio=yes
5400 if test "$_real_ossaudio" = yes; then
5401 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5402 # Check for OSS4 headers (override default headers)
5403 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
5404 if test -f /etc/oss.conf; then
5405 . /etc/oss.conf
5406 _ossinc="$OSSLIBDIR/include"
5407 if test -f "$_ossinc/sys/soundcard.h"; then
5408 extra_cflags="-I$_ossinc $extra_cflags"
5411 elif netbsd || openbsd ; then
5412 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
5413 extra_ldflags="$extra_ldflags -lossaudio"
5414 else
5415 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5417 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
5419 else
5420 def_ossaudio='#undef CONFIG_OSS_AUDIO'
5421 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
5422 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
5423 noaomodules="oss $noaomodules"
5425 echores "$_ossaudio"
5428 echocheck "aRts"
5429 if test "$_arts" = auto ; then
5430 _arts=no
5431 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
5433 cat > $TMPC << EOF
5434 #include <artsc.h>
5435 int main(void) { return 0; }
5437 cc_check $(artsc-config --libs) $(artsc-config --cflags) && _arts=yes
5442 if test "$_arts" = yes ; then
5443 def_arts='#define CONFIG_ARTS 1'
5444 aomodules="arts $aomodules"
5445 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
5446 extra_cflags="$extra_cflags $(artsc-config --cflags)"
5447 else
5448 noaomodules="arts $noaomodules"
5450 echores "$_arts"
5453 echocheck "EsounD"
5454 if test "$_esd" = auto ; then
5455 _esd=no
5456 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
5458 cat > $TMPC << EOF
5459 #include <esd.h>
5460 int main(void) { int fd = esd_open_sound("test"); return fd; }
5462 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd=yes
5466 echores "$_esd"
5468 if test "$_esd" = yes ; then
5469 def_esd='#define CONFIG_ESD 1'
5470 aomodules="esd $aomodules"
5471 libs_mplayer="$libs_mplayer $(esd-config --libs)"
5472 extra_cflags="$extra_cflags $(esd-config --cflags)"
5474 echocheck "esd_get_latency()"
5475 cat > $TMPC << EOF
5476 #include <esd.h>
5477 int main(void) { return esd_get_latency(0); }
5479 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
5480 echores "$_esd_latency"
5481 else
5482 def_esd='#undef CONFIG_ESD'
5483 def_esd_latency='#undef CONFIG_ESD_LATENCY'
5484 noaomodules="esd $noaomodules"
5488 echocheck "NAS"
5489 if test "$_nas" = auto ; then
5490 cat > $TMPC << EOF
5491 #include <audio/audiolib.h>
5492 int main(void) { return 0; }
5494 _nas=no
5495 cc_check $_ld_lm -laudio -lXt && _nas=yes
5497 if test "$_nas" = yes ; then
5498 def_nas='#define CONFIG_NAS 1'
5499 libs_mplayer="$libs_mplayer -laudio -lXt"
5500 aomodules="nas $aomodules"
5501 else
5502 noaomodules="nas $noaomodules"
5503 def_nas='#undef CONFIG_NAS'
5505 echores "$_nas"
5508 echocheck "pulse"
5509 if test "$_pulse" = auto ; then
5510 _pulse=no
5511 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5513 cat > $TMPC << EOF
5514 #include <pulse/pulseaudio.h>
5515 int main(void) { return 0; }
5517 cc_check $($_pkg_config --libs --cflags libpulse) && _pulse=yes
5521 echores "$_pulse"
5523 if test "$_pulse" = yes ; then
5524 def_pulse='#define CONFIG_PULSE 1'
5525 aomodules="pulse $aomodules"
5526 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
5527 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
5528 else
5529 def_pulse='#undef CONFIG_PULSE'
5530 noaomodules="pulse $noaomodules"
5534 echocheck "JACK"
5535 if test "$_jack" = auto ; then
5536 _jack=yes
5538 cat > $TMPC << EOF
5539 #include <jack/jack.h>
5540 int main(void) { jack_client_open("test", JackUseExactName, NULL); return 0; }
5542 if cc_check -ljack ; then
5543 libs_mplayer="$libs_mplayer -ljack"
5544 elif cc_check $($_pkg_config --libs --cflags --silence-errors jack) ; then
5545 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
5546 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
5547 else
5548 _jack=no
5552 if test "$_jack" = yes ; then
5553 def_jack='#define CONFIG_JACK 1'
5554 aomodules="jack $aomodules"
5555 else
5556 noaomodules="jack $noaomodules"
5558 echores "$_jack"
5560 echocheck "OpenAL"
5561 if test "$_openal" = auto ; then
5562 _openal=no
5563 cat > $TMPC << EOF
5564 #ifdef OPENAL_AL_H
5565 #include <OpenAL/al.h>
5566 #else
5567 #include <AL/al.h>
5568 #endif
5569 int main(void) {
5570 alSourceQueueBuffers(0, 0, 0);
5571 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5572 return 0;
5575 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5576 cc_check $I && _openal=yes && break
5577 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5578 done
5579 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
5581 if test "$_openal" = yes ; then
5582 def_openal='#define CONFIG_OPENAL 1'
5583 aomodules="openal $aomodules"
5584 else
5585 noaomodules="openal $noaomodules"
5587 echores "$_openal"
5589 echocheck "ALSA audio"
5590 if test "$_alloca" != yes ; then
5591 _alsa=no
5592 res_comment="alloca missing"
5594 if test "$_alsa" != no ; then
5595 _alsa=no
5596 cat > $TMPC << EOF
5597 #include <sys/time.h>
5598 #include <sys/asoundlib.h>
5599 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5600 #error "alsa version != 0.5.x"
5601 #endif
5602 int main(void) { return 0; }
5604 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5606 cat > $TMPC << EOF
5607 #include <sys/time.h>
5608 #include <sys/asoundlib.h>
5609 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5610 #error "alsa version != 0.9.x"
5611 #endif
5612 int main(void) { return 0; }
5614 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5615 cat > $TMPC << EOF
5616 #include <sys/time.h>
5617 #include <alsa/asoundlib.h>
5618 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5619 #error "alsa version != 0.9.x"
5620 #endif
5621 int main(void) { return 0; }
5623 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5625 cat > $TMPC << EOF
5626 #include <sys/time.h>
5627 #include <sys/asoundlib.h>
5628 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5629 #error "alsa version != 1.0.x"
5630 #endif
5631 int main(void) { return 0; }
5633 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5634 cat > $TMPC << EOF
5635 #include <sys/time.h>
5636 #include <alsa/asoundlib.h>
5637 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5638 #error "alsa version != 1.0.x"
5639 #endif
5640 int main(void) { return 0; }
5642 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5644 def_alsa='#undef CONFIG_ALSA'
5645 def_alsa5='#undef CONFIG_ALSA5'
5646 def_alsa9='#undef CONFIG_ALSA9'
5647 def_alsa1x='#undef CONFIG_ALSA1X'
5648 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5649 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5650 if test "$_alsaver" ; then
5651 _alsa=yes
5652 if test "$_alsaver" = '0.5.x' ; then
5653 _alsa5=yes
5654 aomodules="alsa5 $aomodules"
5655 def_alsa5='#define CONFIG_ALSA5 1'
5656 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5657 res_comment="using alsa 0.5.x and sys/asoundlib.h"
5658 elif test "$_alsaver" = '0.9.x-sys' ; then
5659 _alsa9=yes
5660 aomodules="alsa $aomodules"
5661 def_alsa='#define CONFIG_ALSA 1'
5662 def_alsa9='#define CONFIG_ALSA9 1'
5663 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5664 res_comment="using alsa 0.9.x and sys/asoundlib.h"
5665 elif test "$_alsaver" = '0.9.x-alsa' ; then
5666 _alsa9=yes
5667 aomodules="alsa $aomodules"
5668 def_alsa='#define CONFIG_ALSA 1'
5669 def_alsa9='#define CONFIG_ALSA9 1'
5670 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5671 res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5672 elif test "$_alsaver" = '1.0.x-sys' ; then
5673 _alsa1x=yes
5674 aomodules="alsa $aomodules"
5675 def_alsa='#define CONFIG_ALSA 1'
5676 def_alsa1x="#define CONFIG_ALSA1X 1"
5677 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5678 res_comment="using alsa 1.0.x and sys/asoundlib.h"
5679 elif test "$_alsaver" = '1.0.x-alsa' ; then
5680 _alsa1x=yes
5681 aomodules="alsa $aomodules"
5682 def_alsa='#define CONFIG_ALSA 1'
5683 def_alsa1x="#define CONFIG_ALSA1X 1"
5684 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5685 res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5686 else
5687 _alsa=no
5688 res_comment="unknown version"
5690 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5691 else
5692 noaomodules="alsa $noaomodules"
5694 echores "$_alsa"
5697 echocheck "Sun audio"
5698 if test "$_sunaudio" = auto ; then
5699 cat > $TMPC << EOF
5700 #include <sys/types.h>
5701 #include <sys/audioio.h>
5702 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5704 _sunaudio=no
5705 cc_check && _sunaudio=yes
5707 if test "$_sunaudio" = yes ; then
5708 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5709 aomodules="sun $aomodules"
5710 else
5711 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5712 noaomodules="sun $noaomodules"
5714 echores "$_sunaudio"
5717 def_mlib='#define CONFIG_MLIB 0'
5718 if sunos; then
5719 echocheck "Sun mediaLib"
5720 if test "$_mlib" = auto ; then
5721 _mlib=no
5722 cat > $TMPC << EOF
5723 #include <mlib.h>
5724 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; }
5726 cc_check -lmlib && _mlib=yes && def_mlib='#define CONFIG_MLIB 1'
5728 echores "$_mlib"
5729 fi #if sunos
5732 if darwin; then
5733 echocheck "CoreAudio"
5734 if test "$_coreaudio" = auto ; then
5735 cat > $TMPC <<EOF
5736 #include <CoreAudio/CoreAudio.h>
5737 #include <AudioToolbox/AudioToolbox.h>
5738 #include <AudioUnit/AudioUnit.h>
5739 int main(void) { return 0; }
5741 _coreaudio=no
5742 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5744 if test "$_coreaudio" = yes ; then
5745 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5746 def_coreaudio='#define CONFIG_COREAUDIO 1'
5747 aomodules="coreaudio $aomodules"
5748 else
5749 def_coreaudio='#undef CONFIG_COREAUDIO'
5750 noaomodules="coreaudio $noaomodules"
5752 echores $_coreaudio
5753 fi #if darwin
5756 if irix; then
5757 echocheck "SGI audio"
5758 if test "$_sgiaudio" = auto ; then
5759 # check for SGI audio
5760 cat > $TMPC << EOF
5761 #include <dmedia/audio.h>
5762 int main(void) { return 0; }
5764 _sgiaudio=no
5765 cc_check && _sgiaudio=yes
5767 if test "$_sgiaudio" = "yes" ; then
5768 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5769 libs_mplayer="$libs_mplayer -laudio"
5770 aomodules="sgi $aomodules"
5771 else
5772 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5773 noaomodules="sgi $noaomodules"
5775 echores "$_sgiaudio"
5776 fi #if irix
5779 if os2 ; then
5780 echocheck "KAI (UNIAUD/DART)"
5781 if test "$_kai" = auto; then
5782 cat > $TMPC << EOF
5783 #include <os2.h>
5784 #include <kai.h>
5785 int main(void) { return 0; }
5787 _kai=no;
5788 cc_check -lkai && _kai=yes
5790 if test "$_kai" = yes ; then
5791 def_kai='#define CONFIG_KAI 1'
5792 libs_mplayer="$libs_mplayer -lkai"
5793 aomodules="kai $aomodules"
5794 else
5795 def_kai='#undef CONFIG_KAI'
5796 noaomodules="kai $noaomodules"
5798 echores "$_kai"
5800 echocheck "DART"
5801 if test "$_dart" = auto; then
5802 cat > $TMPC << EOF
5803 #include <os2.h>
5804 #include <dart.h>
5805 int main( void ) { return 0; }
5807 _dart=no;
5808 cc_check -ldart && _dart=yes
5810 if test "$_dart" = yes ; then
5811 def_dart='#define CONFIG_DART 1'
5812 libs_mplayer="$libs_mplayer -ldart"
5813 aomodules="dart $aomodules"
5814 else
5815 def_dart='#undef CONFIG_DART'
5816 noaomodules="dart $noaomodules"
5818 echores "$_dart"
5819 fi #if os2
5822 # set default CD/DVD devices
5823 if win32 || os2 ; then
5824 default_cdrom_device="D:"
5825 elif darwin ; then
5826 default_cdrom_device="/dev/disk1"
5827 elif dragonfly ; then
5828 default_cdrom_device="/dev/cd0"
5829 elif freebsd ; then
5830 default_cdrom_device="/dev/acd0"
5831 elif openbsd ; then
5832 default_cdrom_device="/dev/rcd0a"
5833 elif sunos ; then
5834 default_cdrom_device="/vol/dev/aliases/cdrom0"
5835 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5836 # file system and the volfs service.
5837 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5838 elif amigaos ; then
5839 default_cdrom_device="a1ide.device:2"
5840 else
5841 default_cdrom_device="/dev/cdrom"
5844 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5845 default_dvd_device=$default_cdrom_device
5846 elif darwin ; then
5847 default_dvd_device="/dev/rdiskN"
5848 else
5849 default_dvd_device="/dev/dvd"
5853 echocheck "VCD support"
5854 if test "$_vcd" = auto; then
5855 _vcd=no
5856 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2; then
5857 _vcd=yes
5858 elif mingw32; then
5859 cat > $TMPC << EOF
5860 #include <ddk/ntddcdrm.h>
5861 int main(void) { return 0; }
5863 cc_check && _vcd=yes
5866 if test "$_vcd" = yes; then
5867 inputmodules="vcd $inputmodules"
5868 def_vcd='#define CONFIG_VCD 1'
5869 else
5870 def_vcd='#undef CONFIG_VCD'
5871 noinputmodules="vcd $noinputmodules"
5872 res_comment="not supported on this OS"
5874 echores "$_vcd"
5878 echocheck "dvdread"
5879 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5880 _dvdread_internal=no
5882 if test "$_dvdread_internal" = auto ; then
5883 _dvdread_internal=no
5884 _dvdread=no
5885 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) \
5886 && (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
5887 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) \
5888 || darwin || win32 || os2; then
5889 _dvdread_internal=yes
5890 _dvdread=yes
5891 extra_cflags="-Ilibdvdread4 $extra_cflags"
5893 elif test "$_dvdread" = auto ; then
5894 _dvdread=no
5895 if test "$_dl" = yes; then
5896 cat > $TMPC << EOF
5897 #include <inttypes.h>
5898 #include <dvdread/dvd_reader.h>
5899 #include <dvdread/ifo_types.h>
5900 #include <dvdread/ifo_read.h>
5901 #include <dvdread/nav_read.h>
5902 int main(void) { return 0; }
5904 _dvdreadcflags=$($_dvdreadconfig --cflags)
5905 _dvdreadlibs=$($_dvdreadconfig --libs)
5906 if cc_check -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
5907 $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5908 _dvdread=yes
5909 extra_cflags="$extra_cflags $_dvdreadcflags"
5910 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5911 res_comment="external"
5916 if test "$_dvdread_internal" = yes; then
5917 def_dvdread='#define CONFIG_DVDREAD 1'
5918 inputmodules="dvdread(internal) $inputmodules"
5919 _largefiles=yes
5920 res_comment="internal"
5921 elif test "$_dvdread" = yes; then
5922 def_dvdread='#define CONFIG_DVDREAD 1'
5923 _largefiles=yes
5924 extra_ldflags="$extra_ldflags -ldvdread"
5925 inputmodules="dvdread(external) $inputmodules"
5926 res_comment="external"
5927 else
5928 def_dvdread='#undef CONFIG_DVDREAD'
5929 noinputmodules="dvdread $noinputmodules"
5931 echores "$_dvdread"
5934 echocheck "internal libdvdcss"
5935 if test "$_libdvdcss_internal" = auto ; then
5936 _libdvdcss_internal=no
5937 test "$_dvdread_internal" = yes && _libdvdcss_internal=yes
5938 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5940 if test "$_libdvdcss_internal" = yes ; then
5941 if linux || netbsd || openbsd || bsdos ; then
5942 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5943 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5944 elif freebsd || dragonfly ; then
5945 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5946 elif darwin ; then
5947 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5948 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5949 elif cygwin ; then
5950 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5951 elif beos ; then
5952 cflags_libdvdcss="-DSYS_BEOS"
5953 elif os2 ; then
5954 cflags_libdvdcss="-DSYS_OS2"
5956 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5957 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5958 inputmodules="libdvdcss(internal) $inputmodules"
5959 _largefiles=yes
5960 else
5961 noinputmodules="libdvdcss(internal) $noinputmodules"
5963 echores "$_libdvdcss_internal"
5966 echocheck "cdparanoia"
5967 if test "$_cdparanoia" = auto ; then
5968 cat > $TMPC <<EOF
5969 #include <cdda_interface.h>
5970 #include <cdda_paranoia.h>
5971 // This need a better test. How ?
5972 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5974 _cdparanoia=no
5975 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5976 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
5977 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5978 done
5980 if test "$_cdparanoia" = yes ; then
5981 _cdda='yes'
5982 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5983 openbsd && extra_ldflags="$extra_ldflags -lutil"
5985 echores "$_cdparanoia"
5988 echocheck "libcdio"
5989 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5990 cat > $TMPC << EOF
5991 #include <stdio.h>
5992 #include <cdio/version.h>
5993 #include <cdio/cdda.h>
5994 #include <cdio/paranoia.h>
5995 int main(void) {
5996 void *test = cdda_verbose_set;
5997 printf("%s\n", CDIO_VERSION);
5998 return test == (void *)1;
6001 _libcdio=no
6002 for _ld_tmp in "" "-lwinmm" ; do
6003 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
6004 cc_check $_ld_tmp $_ld_lm \
6005 && _libcdio=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6006 done
6007 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
6008 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
6009 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
6010 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes \
6011 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6014 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
6015 _cdda='yes'
6016 def_libcdio='#define CONFIG_LIBCDIO 1'
6017 def_havelibcdio='yes'
6018 else
6019 if test "$_cdparanoia" = yes ; then
6020 res_comment="using cdparanoia"
6022 def_libcdio='#undef CONFIG_LIBCDIO'
6023 def_havelibcdio='no'
6025 echores "$_libcdio"
6027 if test "$_cdda" = yes ; then
6028 test $_cddb = auto && test $_network = yes && _cddb=yes
6029 def_cdparanoia='#define CONFIG_CDDA 1'
6030 inputmodules="cdda $inputmodules"
6031 else
6032 def_cdparanoia='#undef CONFIG_CDDA'
6033 noinputmodules="cdda $noinputmodules"
6036 if test "$_cddb" = yes ; then
6037 def_cddb='#define CONFIG_CDDB 1'
6038 inputmodules="cddb $inputmodules"
6039 else
6040 _cddb=no
6041 def_cddb='#undef CONFIG_CDDB'
6042 noinputmodules="cddb $noinputmodules"
6045 echocheck "bitmap font support"
6046 if test "$_bitmap_font" = yes ; then
6047 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
6048 else
6049 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
6051 echores "$_bitmap_font"
6054 echocheck "freetype >= 2.0.9"
6056 # freetype depends on iconv
6057 if test "$_iconv" = no ; then
6058 _freetype=no
6059 res_comment="iconv support needed"
6062 if test "$_freetype" = auto ; then
6063 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
6064 cat > $TMPC << EOF
6065 #include <stdio.h>
6066 #include <ft2build.h>
6067 #include FT_FREETYPE_H
6068 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
6069 #error "Need FreeType 2.0.9 or newer"
6070 #endif
6071 int main(void) {
6072 FT_Library library;
6073 FT_Int major=-1,minor=-1,patch=-1;
6074 int err=FT_Init_FreeType(&library);
6075 return 0;
6078 _freetype=no
6079 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
6080 else
6081 _freetype=no
6084 if test "$_freetype" = yes ; then
6085 def_freetype='#define CONFIG_FREETYPE 1'
6086 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
6087 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
6088 else
6089 def_freetype='#undef CONFIG_FREETYPE'
6091 echores "$_freetype"
6093 if test "$_freetype" = no ; then
6094 _fontconfig=no
6095 res_comment="FreeType support needed"
6097 echocheck "fontconfig"
6098 if test "$_fontconfig" = auto ; then
6099 cat > $TMPC << EOF
6100 #include <stdio.h>
6101 #include <stdlib.h>
6102 #include <fontconfig/fontconfig.h>
6103 #if FC_VERSION < 20402
6104 #error At least version 2.4.2 of fontconfig required
6105 #endif
6106 int main(void) {
6107 int err = FcInit();
6108 if (err == FcFalse) {
6109 printf("Couldn't initialize fontconfig lib\n");
6110 exit(err);
6112 return 0;
6115 _fontconfig=no
6116 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
6117 _ld_tmp="-lfontconfig $_ld_tmp"
6118 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6119 done
6120 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
6121 _inc_tmp=$($_pkg_config --cflags fontconfig)
6122 _ld_tmp=$($_pkg_config --libs fontconfig)
6123 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes \
6124 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6127 if test "$_fontconfig" = yes ; then
6128 def_fontconfig='#define CONFIG_FONTCONFIG 1'
6129 else
6130 def_fontconfig='#undef CONFIG_FONTCONFIG'
6132 echores "$_fontconfig"
6135 echocheck "SSA/ASS support"
6136 if test "$_ass" = auto -o "$_ass" = yes ; then
6137 if $_pkg_config libass; then
6138 _ass=yes
6139 def_ass='#define CONFIG_ASS 1'
6140 extra_ldflags="$extra_ldflags $($_pkg_config --libs libass)"
6141 extra_cflags="$extra_cflags $($_pkg_config --cflags libass)"
6142 else
6143 _ass=no
6144 def_ass='#undef CONFIG_ASS'
6146 else
6147 def_ass='#undef CONFIG_ASS'
6149 echores "$_ass"
6152 echocheck "fribidi with charsets"
6153 _inc_tmp=""
6154 _ld_tmp=""
6155 if test "$_fribidi" = auto ; then
6156 cat > $TMPC << EOF
6157 #include <stdio.h>
6158 #include <stdlib.h>
6159 /* workaround for fribidi 0.10.4 and below */
6160 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
6161 #include <fribidi/fribidi.h>
6162 int main(void) {
6163 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8) {
6164 printf("Fribidi headers are not consistents with the library!\n");
6165 exit(1);
6167 return 0;
6170 _fribidi=no
6171 _inc_tmp=""
6172 _ld_tmp="-lfribidi"
6173 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6174 if $_pkg_config --exists fribidi > /dev/null 2>&1 &&
6175 test "$_fribidi" = no ; then
6176 _inc_tmp="$($_pkg_config --cflags)"
6177 _ld_tmp="$($_pkg_config --libs)"
6178 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6181 if test "$_fribidi" = yes ; then
6182 def_fribidi='#define CONFIG_FRIBIDI 1'
6183 extra_cflags="$extra_cflags $_inc_tmp"
6184 extra_ldflags="$extra_ldflags $_ld_tmp"
6185 else
6186 def_fribidi='#undef CONFIG_FRIBIDI'
6188 echores "$_fribidi"
6191 echocheck "ENCA"
6192 if test "$_enca" = auto ; then
6193 cat > $TMPC << EOF
6194 #include <sys/types.h>
6195 #include <enca.h>
6196 int main(void) {
6197 const char **langs;
6198 size_t langcnt;
6199 langs = enca_get_languages(&langcnt);
6200 return 0;
6203 _enca=no
6204 cc_check -lenca $_ld_lm && _enca=yes
6206 if test "$_enca" = yes ; then
6207 def_enca='#define CONFIG_ENCA 1'
6208 extra_ldflags="$extra_ldflags -lenca"
6209 else
6210 def_enca='#undef CONFIG_ENCA'
6212 echores "$_enca"
6215 echocheck "zlib"
6216 cat > $TMPC << EOF
6217 #include <zlib.h>
6218 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; }
6220 _zlib=no
6221 cc_check -lz && _zlib=yes
6222 if test "$_zlib" = yes ; then
6223 def_zlib='#define CONFIG_ZLIB 1'
6224 extra_ldflags="$extra_ldflags -lz"
6225 else
6226 def_zlib='#define CONFIG_ZLIB 0'
6228 echores "$_zlib"
6231 echocheck "bzlib"
6232 bzlib=no
6233 def_bzlib='#define CONFIG_BZLIB 0'
6234 cat > $TMPC << EOF
6235 #include <bzlib.h>
6236 int main(void) { BZ2_bzlibVersion(); return 0; }
6238 cc_check -lbz2 && bzlib=yes
6239 if test "$bzlib" = yes ; then
6240 def_bzlib='#define CONFIG_BZLIB 1'
6241 extra_ldflags="$extra_ldflags -lbz2"
6243 echores "$bzlib"
6246 echocheck "RTC"
6247 if test "$_rtc" = auto ; then
6248 cat > $TMPC << EOF
6249 #include <sys/ioctl.h>
6250 #ifdef __linux__
6251 #include <linux/rtc.h>
6252 #else
6253 #include <rtc.h>
6254 #define RTC_PIE_ON RTCIO_PIE_ON
6255 #endif
6256 int main(void) { return RTC_PIE_ON; }
6258 _rtc=no
6259 cc_check && _rtc=yes
6260 ppc && _rtc=no
6262 if test "$_rtc" = yes ; then
6263 def_rtc='#define HAVE_RTC 1'
6264 else
6265 def_rtc='#undef HAVE_RTC'
6267 echores "$_rtc"
6270 echocheck "liblzo2 support"
6271 if test "$_liblzo" = auto ; then
6272 _liblzo=no
6273 cat > $TMPC << EOF
6274 #include <lzo/lzo1x.h>
6275 int main(void) { lzo_init();return 0; }
6277 cc_check -llzo2 && _liblzo=yes
6279 if test "$_liblzo" = yes ; then
6280 def_liblzo='#define CONFIG_LIBLZO 1'
6281 extra_ldflags="$extra_ldflags -llzo2"
6282 codecmodules="liblzo $codecmodules"
6283 else
6284 def_liblzo='#undef CONFIG_LIBLZO'
6285 nocodecmodules="liblzo $nocodecmodules"
6287 echores "$_liblzo"
6290 echocheck "mad support"
6291 if test "$_mad" = auto ; then
6292 _mad=no
6293 cat > $TMPC << EOF
6294 #include <mad.h>
6295 int main(void) { return 0; }
6297 cc_check -lmad && _mad=yes
6299 if test "$_mad" = yes ; then
6300 def_mad='#define CONFIG_LIBMAD 1'
6301 extra_ldflags="$extra_ldflags -lmad"
6302 codecmodules="libmad $codecmodules"
6303 else
6304 def_mad='#undef CONFIG_LIBMAD'
6305 nocodecmodules="libmad $nocodecmodules"
6307 echores "$_mad"
6309 echocheck "Twolame"
6310 if test "$_twolame" = auto ; then
6311 cat > $TMPC <<EOF
6312 #include <twolame.h>
6313 int main(void) { twolame_init(); return 0; }
6315 _twolame=no
6316 cc_check -ltwolame $_ld_lm && _twolame=yes
6318 if test "$_twolame" = yes ; then
6319 def_twolame='#define CONFIG_TWOLAME 1'
6320 libs_mencoder="$libs_mencoder -ltwolame"
6321 codecmodules="twolame $codecmodules"
6322 else
6323 def_twolame='#undef CONFIG_TWOLAME'
6324 nocodecmodules="twolame $nocodecmodules"
6326 echores "$_twolame"
6328 echocheck "Toolame"
6329 if test "$_toolame" = auto ; then
6330 _toolame=no
6331 if test "$_twolame" = yes ; then
6332 res_comment="disabled by twolame"
6333 else
6334 cat > $TMPC <<EOF
6335 #include <toolame.h>
6336 int main(void) { toolame_init(); return 0; }
6338 cc_check -ltoolame $_ld_lm && _toolame=yes
6341 if test "$_toolame" = yes ; then
6342 def_toolame='#define CONFIG_TOOLAME 1'
6343 libs_mencoder="$libs_mencoder -ltoolame"
6344 codecmodules="toolame $codecmodules"
6345 else
6346 def_toolame='#undef CONFIG_TOOLAME'
6347 nocodecmodules="toolame $nocodecmodules"
6349 if test "$_toolamedir" ; then
6350 res_comment="using $_toolamedir"
6352 echores "$_toolame"
6354 echocheck "OggVorbis support"
6355 if test "$_tremor_internal" = yes; then
6356 _libvorbis=no
6357 elif test "$_tremor" = auto; then
6358 _tremor=no
6359 cat > $TMPC << EOF
6360 #include <tremor/ivorbiscodec.h>
6361 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6363 cc_check -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
6365 if test "$_libvorbis" = auto; then
6366 _libvorbis=no
6367 cat > $TMPC << EOF
6368 #include <vorbis/codec.h>
6369 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6371 cc_check -lvorbis -logg $_ld_lm && _libvorbis=yes
6373 if test "$_tremor_internal" = yes ; then
6374 _vorbis=yes
6375 def_vorbis='#define CONFIG_OGGVORBIS 1'
6376 def_tremor='#define CONFIG_TREMOR 1'
6377 codecmodules="tremor(internal) $codecmodules"
6378 res_comment="internal Tremor"
6379 if test "$_tremor_low" = yes ; then
6380 cflags_tremor_low="-D_LOW_ACCURACY_"
6381 res_comment="internal low accuracy Tremor"
6383 elif test "$_tremor" = yes ; then
6384 _vorbis=yes
6385 def_vorbis='#define CONFIG_OGGVORBIS 1'
6386 def_tremor='#define CONFIG_TREMOR 1'
6387 codecmodules="tremor(external) $codecmodules"
6388 res_comment="external Tremor"
6389 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
6390 elif test "$_libvorbis" = yes ; then
6391 _vorbis=yes
6392 def_vorbis='#define CONFIG_OGGVORBIS 1'
6393 codecmodules="libvorbis $codecmodules"
6394 res_comment="libvorbis"
6395 extra_ldflags="$extra_ldflags -lvorbis -logg"
6396 else
6397 _vorbis=no
6398 nocodecmodules="libvorbis $nocodecmodules"
6400 echores "$_vorbis"
6402 echocheck "libspeex (version >= 1.1 required)"
6403 if test "$_speex" = auto ; then
6404 _speex=no
6405 cat > $TMPC << EOF
6406 #include <speex/speex.h>
6407 int main(void) { SpeexBits bits; void *dec; speex_decode_int(dec, &bits, dec); return 0; }
6409 cc_check -lspeex $_ld_lm && _speex=yes
6411 if test "$_speex" = yes ; then
6412 def_speex='#define CONFIG_SPEEX 1'
6413 extra_ldflags="$extra_ldflags -lspeex"
6414 codecmodules="speex $codecmodules"
6415 else
6416 def_speex='#undef CONFIG_SPEEX'
6417 nocodecmodules="speex $nocodecmodules"
6419 echores "$_speex"
6421 echocheck "OggTheora support"
6422 if test "$_theora" = auto ; then
6423 _theora=no
6424 cat > $TMPC << EOF
6425 #include <theora/theora.h>
6426 #include <string.h>
6427 int main(void) {
6428 /* Theora is in flux, make sure that all interface routines and datatypes
6429 * exist and work the way we expect it, so we don't break MPlayer. */
6430 ogg_packet op;
6431 theora_comment tc;
6432 theora_info inf;
6433 theora_state st;
6434 yuv_buffer yuv;
6435 int r;
6436 double t;
6438 theora_info_init(&inf);
6439 theora_comment_init(&tc);
6441 return 0;
6443 /* we don't want to execute this kind of nonsense; just for making sure
6444 * that compilation works... */
6445 memset(&op, 0, sizeof(op));
6446 r = theora_decode_header(&inf, &tc, &op);
6447 r = theora_decode_init(&st, &inf);
6448 t = theora_granule_time(&st, op.granulepos);
6449 r = theora_decode_packetin(&st, &op);
6450 r = theora_decode_YUVout(&st, &yuv);
6451 theora_clear(&st);
6453 return 0;
6456 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6457 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6458 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
6459 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6460 if test _theora = no; then
6461 _ld_theora="-ltheora -logg"
6462 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6464 if test "$_theora" = no && test "$_tremor_internal" = yes; then
6465 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6466 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6467 cc_check tremor/bitwise.c $_inc_theora $_ld_theora &&
6468 extra_ldflags="$extra_ldflags $_ld_theora" &&
6469 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6470 if test _theora = no; then
6471 _ld_theora="-ltheora -logg"
6472 cc_check tremor/bitwise.c $_ld_theora &&
6473 extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6477 if test "$_theora" = yes ; then
6478 def_theora='#define CONFIG_OGGTHEORA 1'
6479 codecmodules="libtheora $codecmodules"
6480 # when --enable-theora is forced, we'd better provide a probably sane
6481 # $_ld_theora than nothing
6482 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
6483 else
6484 def_theora='#undef CONFIG_OGGTHEORA'
6485 nocodecmodules="libtheora $nocodecmodules"
6487 echores "$_theora"
6489 echocheck "mp3lib support"
6490 if test "$_mp3lib" = auto ; then
6491 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _mp3lib=no || _mp3lib=yes
6493 if test "$_mp3lib" = yes ; then
6494 def_mp3lib='#define CONFIG_MP3LIB 1'
6495 codecmodules="mp3lib(internal) $codecmodules"
6496 else
6497 def_mp3lib='#undef CONFIG_MP3LIB'
6498 nocodecmodules="mp3lib(internal) $nocodecmodules"
6500 echores "$_mp3lib"
6502 echocheck "liba52 support"
6503 def_liba52='#undef CONFIG_LIBA52'
6504 if test "$_liba52" = auto ; then
6505 _liba52=no
6506 cat > $TMPC << EOF
6507 #include <inttypes.h>
6508 #include <a52dec/a52.h>
6509 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6511 cc_check -la52 && _liba52=yes && extra_ldflags="$extra_ldflags -la52"
6513 if test "$_liba52" = yes ; then
6514 def_liba52='#define CONFIG_LIBA52 1'
6515 codecmodules="liba52 $codecmodules"
6516 else
6517 nocodecmodules="liba52 $nocodecmodules"
6519 echores "$_liba52"
6521 echocheck "internal libmpeg2 support"
6522 if test "$_libmpeg2" = auto ; then
6523 _libmpeg2=yes
6524 if alpha && test cc_vendor=gnu; then
6525 case $cc_version in
6526 2*|3.0*|3.1*) # cannot compile MVI instructions
6527 _libmpeg2=no
6528 res_comment="broken gcc"
6530 esac
6533 if test "$_libmpeg2" = yes ; then
6534 def_libmpeg2='#define CONFIG_LIBMPEG2 1'
6535 codecmodules="libmpeg2(internal) $codecmodules"
6536 else
6537 def_libmpeg2='#undef CONFIG_LIBMPEG2'
6538 nocodecmodules="libmpeg2(internal) $nocodecmodules"
6540 echores "$_libmpeg2"
6542 echocheck "libdca support"
6543 if test "$_libdca" = auto ; then
6544 _libdca=no
6545 cat > $TMPC << EOF
6546 #include <inttypes.h>
6547 #include <dts.h>
6548 int main(void) { dts_init(0); return 0; }
6550 for _ld_dca in -ldca -ldts ; do
6551 cc_check $_ld_dca $_ld_lm && extra_ldflags="$extra_ldflags $_ld_dca" \
6552 && _libdca=yes && break
6553 done
6555 if test "$_libdca" = yes ; then
6556 def_libdca='#define CONFIG_LIBDCA 1'
6557 codecmodules="libdca $codecmodules"
6558 else
6559 def_libdca='#undef CONFIG_LIBDCA'
6560 nocodecmodules="libdca $nocodecmodules"
6562 echores "$_libdca"
6564 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
6565 if test "$_musepack" = auto ; then
6566 _musepack=no
6567 cat > $TMPC << EOF
6568 #include <stddef.h>
6569 #include <mpcdec/mpcdec.h>
6570 int main(void) {
6571 mpc_streaminfo info;
6572 mpc_decoder decoder;
6573 mpc_decoder_set_streaminfo(&decoder, &info);
6574 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6575 return 0;
6578 cc_check -lmpcdec $_ld_lm && _musepack=yes
6580 if test "$_musepack" = yes ; then
6581 def_musepack='#define CONFIG_MUSEPACK 1'
6582 extra_ldflags="$extra_ldflags -lmpcdec"
6583 codecmodules="musepack $codecmodules"
6584 else
6585 def_musepack='#undef CONFIG_MUSEPACK'
6586 nocodecmodules="musepack $nocodecmodules"
6588 echores "$_musepack"
6591 echocheck "FAAC support"
6592 if test "$_faac" = auto ; then
6593 cat > $TMPC <<EOF
6594 #include <inttypes.h>
6595 #include <faac.h>
6596 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6598 _faac=no
6599 for _ld_faac in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6600 cc_check $_ld_faac $_ld_lm && libs_mencoder="$libs_mencoder $_ld_faac" && _faac=yes && break
6601 done
6603 if test "$_faac" = yes ; then
6604 def_faac="#define CONFIG_FAAC 1"
6605 codecmodules="faac $codecmodules"
6606 else
6607 def_faac="#undef CONFIG_FAAC"
6608 nocodecmodules="faac $nocodecmodules"
6610 echores "$_faac"
6613 echocheck "FAAD2 support"
6614 if test "$_faad_internal" = auto ; then
6615 if x86_32 && test cc_vendor=gnu; then
6616 case $cc_version in
6617 3.1*|3.2) # ICE/insn with these versions
6618 _faad_internal=no
6619 res_comment="broken gcc"
6622 _faad=yes
6623 _faad_internal=yes
6625 esac
6626 else
6627 _faad=yes
6628 _faad_internal=yes
6631 if test "$_faad" = auto ; then
6632 cat > $TMPC << EOF
6633 #include <faad.h>
6634 #ifndef FAAD_MIN_STREAMSIZE
6635 #error Too old version
6636 #endif
6637 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6638 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6640 cc_check -lfaad $_ld_lm && _faad=yes
6643 def_faad='#undef CONFIG_FAAD'
6644 def_faad_internal="#undef CONFIG_FAAD_INTERNAL"
6645 if test "$_faad_internal" = yes ; then
6646 def_faad_internal="#define CONFIG_FAAD_INTERNAL 1"
6647 res_comment="internal floating-point"
6648 if test "$_faad_fixed" = yes ; then
6649 # The FIXED_POINT implementation of FAAD2 improves performance
6650 # on some platforms, especially for SBR files.
6651 cflags_faad_fixed="-DFIXED_POINT"
6652 res_comment="internal fixed-point"
6654 elif test "$_faad" = yes ; then
6655 extra_ldflags="$extra_ldflags -lfaad"
6658 if test "$_faad" = yes ; then
6659 def_faad='#define CONFIG_FAAD 1'
6660 if test "$_faad_internal" = yes ; then
6661 codecmodules="faad2(internal) $codecmodules"
6662 else
6663 codecmodules="faad2 $codecmodules"
6665 else
6666 _faad=no
6667 nocodecmodules="faad2 $nocodecmodules"
6669 echores "$_faad"
6672 echocheck "LADSPA plugin support"
6673 if test "$_ladspa" = auto ; then
6674 cat > $TMPC <<EOF
6675 #include <stdio.h>
6676 #include <ladspa.h>
6677 int main(void) {
6678 const LADSPA_Descriptor *ld = NULL;
6679 return 0;
6682 _ladspa=no
6683 cc_check && _ladspa=yes
6685 if test "$_ladspa" = yes; then
6686 def_ladspa="#define CONFIG_LADSPA 1"
6687 else
6688 def_ladspa="#undef CONFIG_LADSPA"
6690 echores "$_ladspa"
6693 echocheck "libbs2b audio filter support"
6694 if test "$_libbs2b" = auto ; then
6695 cat > $TMPC <<EOF
6696 #include <bs2b.h>
6697 #if BS2B_VERSION_MAJOR < 3
6698 #error Please use libbs2b >= 3.0.0, older versions are not supported.
6699 #endif
6700 int main(void) {
6701 t_bs2bdp filter;
6702 filter=bs2b_open();
6703 bs2b_close(filter);
6704 return 0;
6707 _libbs2b=no
6708 if $_pkg_config --exists libbs2b ; then
6709 _inc_tmp=$($_pkg_config --cflags libbs2b)
6710 _ld_tmp=$($_pkg_config --libs libbs2b)
6711 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
6712 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
6713 else
6714 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
6715 -I/usr/local/include/bs2b ; do
6716 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
6717 extra_ldflags="$extra_ldflags -lbs2b"
6718 extra_cflags="$extra_cflags $_inc_tmp"
6719 _libbs2b=yes
6720 break
6722 done
6725 def_libbs2b="#undef CONFIG_LIBBS2B"
6726 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
6727 echores "$_libbs2b"
6730 if test -z "$_codecsdir" ; then
6731 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
6732 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
6733 if test -d "$dir" ; then
6734 _codecsdir="$dir"
6735 break;
6737 done
6739 # Fall back on default directory.
6740 if test -z "$_codecsdir" ; then
6741 _codecsdir="$_libdir/codecs"
6742 mingw32 || os2 && _codecsdir="codecs"
6746 echocheck "Win32 codecs"
6747 if test "$_win32dll" = auto ; then
6748 _win32dll=no
6749 if x86_32 && ! qnx; then
6750 _win32dll=yes
6753 if test "$_win32dll" = yes ; then
6754 def_win32dll='#define CONFIG_WIN32DLL 1'
6755 if ! win32 ; then
6756 def_win32_loader='#define WIN32_LOADER 1'
6757 _win32_emulation=yes
6758 else
6759 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
6760 res_comment="using native windows"
6762 codecmodules="win32 $codecmodules"
6763 else
6764 def_win32dll='#undef CONFIG_WIN32DLL'
6765 def_win32_loader='#undef WIN32_LOADER'
6766 nocodecmodules="win32 $nocodecmodules"
6768 echores "$_win32dll"
6771 echocheck "XAnim codecs"
6772 if test "$_xanim" = auto ; then
6773 _xanim=no
6774 res_comment="dynamic loader support needed"
6775 if test "$_dl" = yes ; then
6776 _xanim=yes
6779 if test "$_xanim" = yes ; then
6780 def_xanim='#define CONFIG_XANIM 1'
6781 codecmodules="xanim $codecmodules"
6782 else
6783 def_xanim='#undef CONFIG_XANIM'
6784 nocodecmodules="xanim $nocodecmodules"
6786 echores "$_xanim"
6789 echocheck "RealPlayer codecs"
6790 if test "$_real" = auto ; then
6791 _real=no
6792 res_comment="dynamic loader support needed"
6793 if test "$_dl" = yes || test "$_win32dll" = yes &&
6794 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2) ; then
6795 _real=yes
6798 if test "$_real" = yes ; then
6799 def_real='#define CONFIG_REALCODECS 1'
6800 codecmodules="real $codecmodules"
6801 else
6802 def_real='#undef CONFIG_REALCODECS'
6803 nocodecmodules="real $nocodecmodules"
6805 echores "$_real"
6808 echocheck "QuickTime codecs"
6809 _qtx_emulation=no
6810 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
6811 if test "$_qtx" = auto ; then
6812 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
6814 if test "$_qtx" = yes ; then
6815 def_qtx='#define CONFIG_QTX_CODECS 1'
6816 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
6817 codecmodules="qtx $codecmodules"
6818 darwin || win32 || _qtx_emulation=yes
6819 else
6820 def_qtx='#undef CONFIG_QTX_CODECS'
6821 nocodecmodules="qtx $nocodecmodules"
6823 echores "$_qtx"
6825 echocheck "Nemesi Streaming Media libraries"
6826 if test "$_nemesi" = auto && test "$_network" = yes ; then
6827 _nemesi=no
6828 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
6829 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
6830 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
6831 _nemesi=yes
6834 if test "$_nemesi" = yes; then
6835 _native_rtsp=no
6836 def_nemesi='#define CONFIG_LIBNEMESI 1'
6837 inputmodules="nemesi $inputmodules"
6838 else
6839 _native_rtsp="$_network"
6840 _nemesi=no
6841 def_nemesi='#undef CONFIG_LIBNEMESI'
6842 noinputmodules="nemesi $noinputmodules"
6844 echores "$_nemesi"
6846 echocheck "LIVE555 Streaming Media libraries"
6847 if test "$_live" = auto && test "$_network" = yes ; then
6848 cat > $TMPCPP << EOF
6849 #include <liveMedia.hh>
6850 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6851 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6852 #endif
6853 int main(void) { return 0; }
6856 _live=no
6857 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
6858 cxx_check $I/liveMedia/include $I/UsageEnvironment/include \
6859 $I/groupsock/include && _livelibdir=$(echo $I| sed s/-I//) && \
6860 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
6861 $_livelibdir/groupsock/libgroupsock.a \
6862 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6863 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6864 $extra_ldflags -lstdc++" \
6865 extra_cxxflags="-I$_livelibdir/liveMedia/include \
6866 -I$_livelibdir/UsageEnvironment/include \
6867 -I$_livelibdir/BasicUsageEnvironment/include \
6868 -I$_livelibdir/groupsock/include" && \
6869 _live=yes && break
6870 done
6871 if test "$_live" != yes ; then
6872 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6873 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
6874 _live_dist=yes
6878 if test "$_live" = yes && test "$_network" = yes; then
6879 test $_livelibdir && res_comment="using $_livelibdir"
6880 def_live='#define CONFIG_LIVE555 1'
6881 inputmodules="live555 $inputmodules"
6882 elif test "$_live_dist" = yes && test "$_network" = yes; then
6883 res_comment="using distribution version"
6884 _live="yes"
6885 def_live='#define CONFIG_LIVE555 1'
6886 extra_ldflags="$extra_ldflags $ld_tmp"
6887 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
6888 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6889 inputmodules="live555 $inputmodules"
6890 else
6891 _live=no
6892 def_live='#undef CONFIG_LIVE555'
6893 noinputmodules="live555 $noinputmodules"
6895 echores "$_live"
6898 echocheck "FFmpeg libavutil"
6899 if test "$_libavutil" = auto ; then
6900 _libavutil=no
6901 cat > $TMPC << EOF
6902 #include <libavutil/common.h>
6903 int main(void) { av_clip(1, 1, 1); return 0; }
6905 if $_pkg_config --exists libavutil ; then
6906 _inc_libavutil=$($_pkg_config --cflags libavutil)
6907 _ld_tmp=$($_pkg_config --libs libavutil)
6908 cc_check $_inc_libavutil $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libavutil" \
6909 && _libavutil=yes
6910 elif cc_check -lavutil $_ld_lm ; then
6911 extra_ldflags="$extra_ldflags -lavutil"
6912 _libavutil=yes
6915 def_libavutil='#undef CONFIG_LIBAVUTIL'
6916 test "$_libavutil" = yes && def_libavutil='#define CONFIG_LIBAVUTIL 1'
6917 # libavutil is not available, but it is mandatory ...
6918 if test "$_libavutil" = no ; then
6919 die "You need libavutil, MPlayer will not compile without!"
6921 echores "$_libavutil"
6923 echocheck "FFmpeg libavcodec"
6924 if test "$_libavcodec" = auto ; then
6925 _libavcodec=no
6926 cat > $TMPC << EOF
6927 #include <libavcodec/avcodec.h>
6928 int main(void) { avcodec_find_encoder_by_name(""); return 0; }
6930 if $_pkg_config --exists libavcodec ; then
6931 _inc_libavcodec=$($_pkg_config --cflags libavcodec)
6932 _ld_tmp=$($_pkg_config --libs libavcodec)
6933 cc_check $_inc_libavcodec $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavcodec" \
6934 && _libavcodec=yes
6935 elif cc_check -lavcodec $_ld_lm ; then
6936 extra_ldflags="$extra_ldflags -lavcodec"
6937 _libavcodec=yes
6940 def_libavcodec='#undef CONFIG_LIBAVCODEC'
6941 test "$_libavcodec" = yes && def_libavcodec='#define CONFIG_LIBAVCODEC 1'
6942 if test "$_libavcodec" = yes ; then
6943 codecmodules="libavcodec $codecmodules"
6944 else
6945 nocodecmodules="libavcodec $nocodecmodules"
6947 echores "$_libavcodec"
6949 echocheck "FFmpeg libavformat"
6950 if test "$_libavformat" = auto ; then
6951 _libavformat=no
6952 cat > $TMPC <<EOF
6953 #include <libavformat/avformat.h>
6954 #include <libavcodec/opt.h>
6955 int main(void) { av_alloc_format_context(); return 0; }
6957 if $_pkg_config --exists libavformat ; then
6958 _inc_libavformat=$($_pkg_config --cflags libavformat)
6959 _ld_tmp=$($_pkg_config --libs libavformat)
6960 cc_check $_inc_libavformat $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavformat" \
6961 && _libavformat=yes
6962 elif cc_check $_ld_lm -lavformat ; then
6963 extra_ldflags="$extra_ldflags -lavformat"
6964 _libavformat=yes
6967 def_libavformat='#undef CONFIG_LIBAVFORMAT'
6968 test "$_libavformat" = yes && def_libavformat='#define CONFIG_LIBAVFORMAT 1'
6969 echores "$_libavformat"
6971 echocheck "FFmpeg libpostproc"
6972 if test "$_libpostproc" = auto ; then
6973 _libpostproc=no
6974 cat > $TMPC << EOF
6975 #include <inttypes.h>
6976 #include <libpostproc/postprocess.h>
6977 int main(void) { pp_get_mode_by_name_and_quality("de", 0); return 0; }
6979 if $_pkg_config --exists libpostproc ; then
6980 _inc_libpostproc=$($_pkg_config --cflags libpostproc)
6981 _ld_tmp=$($_pkg_config --libs libpostproc)
6982 cc_check $_inc_libpostproc $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libpostproc" \
6983 && _libpostproc=yes
6984 elif cc_check -lpostproc $_ld_lm ; then
6985 extra_ldflags="$extra_ldflags -lpostproc"
6986 _libpostproc=yes
6989 def_libpostproc='#undef CONFIG_LIBPOSTPROC'
6990 test "$_libpostproc" = yes && def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
6991 echores "$_libpostproc"
6993 echocheck "FFmpeg libswscale"
6994 if test "$_libswscale" = auto ; then
6995 _libswscale=no
6996 cat > $TMPC << EOF
6997 #include <libswscale/swscale.h>
6998 int main(void) { sws_scale(0, 0, 0, 0, 0, 0, 0); return 0; }
7000 if $_pkg_config --exists libswscale ; then
7001 _inc_libswscale=$($_pkg_config --cflags libswscale)
7002 _ld_tmp=$($_pkg_config --libs libswscale)
7003 cc_check $_inc_libswscale $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libswscale" \
7004 && _libswscale=yes
7005 elif cc_check -lswscale ; then
7006 extra_ldflags="$extra_ldflags -lswscale"
7007 _libswscale=yes
7010 def_libswscale='#undef CONFIG_LIBSWSCALE'
7011 test "$_libswscale" = yes && def_libswscale='#define CONFIG_LIBSWSCALE 1'
7012 echores "$_libswscale"
7014 def_libswscale_internals="#undef CONFIG_LIBSWSCALE_INTERNALS"
7015 if ! test -z "$_ffmpeg_source" ; then
7016 test "$_libswscale" = yes && def_libswscale_internals="#define CONFIG_LIBSWSCALE_INTERNALS 1" && _libswscale_internals=yes
7019 def_libavcodec_internals="#undef CONFIG_LIBAVCODEC_INTERNALS"
7020 if ! test -z "$_ffmpeg_source" ; then
7021 test "$_libavcodec" = yes && def_libavcodec_internals="#define CONFIG_LIBAVCODEC_INTERNALS 1" && _libavcodec_internals=yes
7024 echocheck "libdv-0.9.5+"
7025 if test "$_libdv" = auto ; then
7026 _libdv=no
7027 cat > $TMPC <<EOF
7028 #include <libdv/dv.h>
7029 int main(void) { dv_encoder_t* enc=dv_encoder_new(1,1,1); return 0; }
7031 cc_check -ldv $_ld_pthread $_ld_lm && _libdv=yes
7033 if test "$_libdv" = yes ; then
7034 def_libdv='#define CONFIG_LIBDV095 1'
7035 extra_ldflags="$extra_ldflags -ldv"
7036 codecmodules="libdv $codecmodules"
7037 else
7038 def_libdv='#undef CONFIG_LIBDV095'
7039 nocodecmodules="libdv $nocodecmodules"
7041 echores "$_libdv"
7044 echocheck "Xvid"
7045 if test "$_xvid" = auto ; then
7046 _xvid=no
7047 cat > $TMPC << EOF
7048 #include <xvid.h>
7049 int main(void) { xvid_global(0, 0, 0, 0); return 0; }
7051 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
7052 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
7053 done
7056 if test "$_xvid" = yes ; then
7057 def_xvid='#define CONFIG_XVID4 1'
7058 codecmodules="xvid $codecmodules"
7059 else
7060 def_xvid='#undef CONFIG_XVID4'
7061 nocodecmodules="xvid $nocodecmodules"
7063 echores "$_xvid"
7065 echocheck "x264"
7066 if test "$_x264" = auto ; then
7067 cat > $TMPC << EOF
7068 #include <inttypes.h>
7069 #include <x264.h>
7070 #if X264_BUILD < 89
7071 #error We do not support old versions of x264. Get the latest from git.
7072 #endif
7073 int main(void) { x264_encoder_open((void*)0); return 0; }
7075 _x264=no
7076 for _ld_x264 in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
7077 cc_check $_ld_x264 && libs_mencoder="$libs_mencoder $_ld_x264" && _x264=yes && break
7078 done
7081 if test "$_x264" = yes ; then
7082 def_x264='#define CONFIG_X264 1'
7083 codecmodules="x264 $codecmodules"
7084 else
7085 def_x264='#undef CONFIG_X264'
7086 nocodecmodules="x264 $nocodecmodules"
7088 echores "$_x264"
7090 echocheck "libnut"
7091 if test "$_libnut" = auto ; then
7092 cat > $TMPC << EOF
7093 #include <stdio.h>
7094 #include <stdlib.h>
7095 #include <inttypes.h>
7096 #include <libnut.h>
7097 nut_context_tt * nut;
7098 int main(void) { (void)nut_error(0); return 0; }
7100 _libnut=no
7101 cc_check -lnut && _libnut=yes
7104 if test "$_libnut" = yes ; then
7105 def_libnut='#define CONFIG_LIBNUT 1'
7106 extra_ldflags="$extra_ldflags -lnut"
7107 else
7108 def_libnut='#undef CONFIG_LIBNUT'
7110 echores "$_libnut"
7112 # These VO checks must be done after libavcodec/libswscale one
7113 echocheck "/dev/mga_vid"
7114 if test "$_mga" = auto ; then
7115 _mga=no
7116 test -c /dev/mga_vid && _mga=yes
7118 if test "$_mga" = yes ; then
7119 if test "$_libswscale_internals" = yes ; then
7120 def_mga='#define CONFIG_MGA 1'
7121 vomodules="mga $vomodules"
7122 else
7123 res_comment="libswscale internal headers are required by mga, sorry"
7124 def_mga='#undef CONFIG_MGA'
7125 novomodules="mga $novomodules"
7127 else
7128 def_mga='#undef CONFIG_MGA'
7129 novomodules="mga $novomodules"
7131 echores "$_mga"
7134 echocheck "xmga"
7135 if test "$_xmga" = auto ; then
7136 _xmga=no
7137 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
7139 if test "$_xmga" = yes ; then
7140 if test "$_libswscale_internals" = yes ; then
7141 def_xmga='#define CONFIG_XMGA 1'
7142 vomodules="xmga $vomodules"
7143 else
7144 res_comment="libswscale internal headers are required by mga, sorry"
7145 def_xmga='#undef CONFIG_XMGA'
7146 novomodules="xmga $novomodules"
7148 else
7149 def_xmga='#undef CONFIG_XMGA'
7150 novomodules="xmga $novomodules"
7152 echores "$_xmga"
7154 echocheck "zr"
7155 if test "$_zr" = auto ; then
7156 #36067's seem to identify themselves as 36057PQC's, so the line
7157 #below should work for 36067's and 36057's.
7158 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc/pci ; then
7159 _zr=yes
7160 else
7161 _zr=no
7164 if test "$_zr" = yes ; then
7165 if test "$_libavcodec_internals" = yes ; then
7166 def_zr='#define CONFIG_ZR 1'
7167 vomodules="zr zr2 $vomodules"
7168 else
7169 res_comment="libavcodec internal headers are required by zr, sorry"
7170 novomodules="zr $novomodules"
7171 def_zr='#undef CONFIG_ZR'
7173 else
7174 def_zr='#undef CONFIG_ZR'
7175 novomodules="zr zr2 $novomodules"
7177 echores "$_zr"
7179 # mencoder requires (optional) those libs: libmp3lame
7180 if test "$_mencoder" != no ; then
7182 echocheck "libmp3lame"
7183 def_mp3lame_preset='#undef CONFIG_MP3LAME_PRESET'
7184 def_mp3lame_preset_medium='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
7185 if test "$_mp3lame" = auto ; then
7186 _mp3lame=no
7187 cat > $TMPC <<EOF
7188 #include <lame/lame.h>
7189 int main(void) { lame_version_t lv; (void) lame_init();
7190 get_lame_version_numerical(&lv);
7191 return 0; }
7193 cc_check -lmp3lame $_ld_lm && _mp3lame=yes
7195 if test "$_mp3lame" = yes ; then
7196 def_mp3lame="#define CONFIG_MP3LAME 1"
7197 _ld_mp3lame=-lmp3lame
7198 libs_mencoder="$libs_mencoder $_ld_mp3lame"
7199 cat > $TMPC << EOF
7200 #include <lame/lame.h>
7201 int main(void) { lame_set_preset(NULL, STANDARD_FAST); return 0; }
7203 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset="#define CONFIG_MP3LAME_PRESET 1"
7204 cat > $TMPC << EOF
7205 #include <lame/lame.h>
7206 int main(void) { lame_set_preset(NULL, MEDIUM_FAST); return 0; }
7208 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset_medium="#define CONFIG_MP3LAME_PRESET_MEDIUM 1"
7209 else
7210 def_mp3lame='#undef CONFIG_MP3LAME'
7212 echores "$_mp3lame"
7214 fi # test "$_mencoder" != no
7216 echocheck "mencoder"
7217 if test "$_mencoder" = yes ; then
7218 def_muxers='#define CONFIG_MUXERS 1'
7219 else
7220 def_muxers='#define CONFIG_MUXERS 0'
7222 echores "$_mencoder"
7225 echocheck "UnRAR executable"
7226 if test "$_unrar_exec" = auto ; then
7227 _unrar_exec="yes"
7228 mingw32 && _unrar_exec="no"
7230 if test "$_unrar_exec" = yes ; then
7231 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
7232 else
7233 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
7235 echores "$_unrar_exec"
7237 echocheck "TV interface"
7238 if test "$_tv" = yes ; then
7239 def_tv='#define CONFIG_TV 1'
7240 inputmodules="tv $inputmodules"
7241 else
7242 noinputmodules="tv $noinputmodules"
7243 def_tv='#undef CONFIG_TV'
7245 echores "$_tv"
7248 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
7249 echocheck "*BSD BT848 bt8xx header"
7250 _ioctl_bt848_h=no
7251 for file in "machine/ioctl_bt848.h" \
7252 "dev/bktr/ioctl_bt848.h" \
7253 "dev/video/bktr/ioctl_bt848.h" \
7254 "dev/ic/bt8xx.h" ; do
7255 cat > $TMPC <<EOF
7256 #include <sys/types.h>
7257 #include <sys/ioctl.h>
7258 #include <$file>
7259 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
7261 if cc_check ; then
7262 _ioctl_bt848_h=yes
7263 _ioctl_bt848_h_name="$file"
7264 break;
7266 done
7267 if test "$_ioctl_bt848_h" = yes ; then
7268 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
7269 res_comment="using $_ioctl_bt848_h_name"
7270 else
7271 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
7273 echores "$_ioctl_bt848_h"
7275 echocheck "*BSD ioctl_meteor.h"
7276 _ioctl_meteor_h=no
7277 for file in "machine/ioctl_meteor.h" \
7278 "dev/bktr/ioctl_meteor.h" \
7279 "dev/video/bktr/ioctl_meteor.h" ; do
7280 cat > $TMPC <<EOF
7281 #include <sys/types.h>
7282 #include <$file>
7283 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
7285 if cc_check ; then
7286 _ioctl_meteor_h=yes
7287 _ioctl_meteor_h_name="$file"
7288 break;
7290 done
7291 if test "$_ioctl_meteor_h" = yes ; then
7292 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
7293 res_comment="using $_ioctl_meteor_h_name"
7294 else
7295 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
7297 echores "$_ioctl_meteor_h"
7299 echocheck "*BSD BrookTree 848 TV interface"
7300 if test "$_tv_bsdbt848" = auto ; then
7301 _tv_bsdbt848=no
7302 if test "$_tv" = yes ; then
7303 cat > $TMPC <<EOF
7304 #include <sys/types.h>
7305 $def_ioctl_meteor_h_name
7306 $def_ioctl_bt848_h_name
7307 #ifdef IOCTL_METEOR_H_NAME
7308 #include IOCTL_METEOR_H_NAME
7309 #endif
7310 #ifdef IOCTL_BT848_H_NAME
7311 #include IOCTL_BT848_H_NAME
7312 #endif
7313 int main(void) {
7314 ioctl(0, METEORSINPUT, 0);
7315 ioctl(0, TVTUNER_GETFREQ, 0);
7316 return 0;
7319 cc_check && _tv_bsdbt848=yes
7322 if test "$_tv_bsdbt848" = yes ; then
7323 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
7324 inputmodules="tv-bsdbt848 $inputmodules"
7325 else
7326 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
7327 noinputmodules="tv-bsdbt848 $noinputmodules"
7329 echores "$_tv_bsdbt848"
7330 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
7333 echocheck "DirectShow TV interface"
7334 if test "$_tv_dshow" = auto ; then
7335 _tv_dshow=no
7336 if test "$_tv" = yes && win32 ; then
7337 cat > $TMPC <<EOF
7338 #include <ole2.h>
7339 int main(void) {
7340 void* p;
7341 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
7342 return 0;
7345 cc_check -lole32 -luuid && _tv_dshow=yes
7348 if test "$_tv_dshow" = yes ; then
7349 inputmodules="tv-dshow $inputmodules"
7350 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
7351 extra_ldflags="$extra_ldflags -lole32 -luuid"
7352 else
7353 noinputmodules="tv-dshow $noinputmodules"
7354 def_tv_dshow='#undef CONFIG_TV_DSHOW'
7356 echores "$_tv_dshow"
7359 echocheck "Video 4 Linux TV interface"
7360 if test "$_tv_v4l1" = auto ; then
7361 _tv_v4l1=no
7362 if test "$_tv" = yes && linux ; then
7363 cat > $TMPC <<EOF
7364 #include <stdlib.h>
7365 #include <linux/videodev.h>
7366 int main(void) { return 0; }
7368 cc_check && _tv_v4l1=yes
7371 if test "$_tv_v4l1" = yes ; then
7372 _audio_input=yes
7373 _tv_v4l=yes
7374 def_tv_v4l='#define CONFIG_TV_V4L 1'
7375 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
7376 inputmodules="tv-v4l $inputmodules"
7377 else
7378 noinputmodules="tv-v4l1 $noinputmodules"
7379 def_tv_v4l='#undef CONFIG_TV_V4L'
7381 echores "$_tv_v4l1"
7384 echocheck "Video 4 Linux 2 TV interface"
7385 if test "$_tv_v4l2" = auto ; then
7386 _tv_v4l2=no
7387 if test "$_tv" = yes && linux ; then
7388 cat > $TMPC <<EOF
7389 #include <stdlib.h>
7390 #include <linux/types.h>
7391 #include <linux/videodev2.h>
7392 int main(void) { return 0; }
7394 cc_check && _tv_v4l2=yes
7397 if test "$_tv_v4l2" = yes ; then
7398 _audio_input=yes
7399 _tv_v4l=yes
7400 def_tv_v4l='#define CONFIG_TV_V4L 1'
7401 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
7402 inputmodules="tv-v4l2 $inputmodules"
7403 else
7404 noinputmodules="tv-v4l2 $noinputmodules"
7405 def_tv_v4l2='#undef CONFIG_TV_V4L2'
7407 echores "$_tv_v4l2"
7410 echocheck "Radio interface"
7411 if test "$_radio" = yes ; then
7412 def_radio='#define CONFIG_RADIO 1'
7413 inputmodules="radio $inputmodules"
7414 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
7415 _radio_capture=no
7417 if test "$_radio_capture" = yes ; then
7418 _audio_input=yes
7419 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
7420 else
7421 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7423 else
7424 noinputmodules="radio $noinputmodules"
7425 def_radio='#undef CONFIG_RADIO'
7426 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7427 _radio_capture=no
7429 echores "$_radio"
7430 echocheck "Capture for Radio interface"
7431 echores "$_radio_capture"
7433 echocheck "Video 4 Linux 2 Radio interface"
7434 if test "$_radio_v4l2" = auto ; then
7435 _radio_v4l2=no
7436 if test "$_radio" = yes && linux ; then
7437 cat > $TMPC <<EOF
7438 #include <stdlib.h>
7439 #include <linux/types.h>
7440 #include <linux/videodev2.h>
7441 int main(void) { return 0; }
7443 cc_check && _radio_v4l2=yes
7446 if test "$_radio_v4l2" = yes ; then
7447 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
7448 else
7449 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
7451 echores "$_radio_v4l2"
7453 echocheck "Video 4 Linux Radio interface"
7454 if test "$_radio_v4l" = auto ; then
7455 _radio_v4l=no
7456 if test "$_radio" = yes && linux ; then
7457 cat > $TMPC <<EOF
7458 #include <stdlib.h>
7459 #include <linux/videodev.h>
7460 int main(void) { return 0; }
7462 cc_check && _radio_v4l=yes
7465 if test "$_radio_v4l" = yes ; then
7466 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
7467 else
7468 def_radio_v4l='#undef CONFIG_RADIO_V4L'
7470 echores "$_radio_v4l"
7472 if freebsd || netbsd || openbsd || dragonfly || bsdos \
7473 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
7474 echocheck "*BSD BrookTree 848 Radio interface"
7475 _radio_bsdbt848=no
7476 cat > $TMPC <<EOF
7477 #include <sys/types.h>
7478 $def_ioctl_bt848_h_name
7479 #ifdef IOCTL_BT848_H_NAME
7480 #include IOCTL_BT848_H_NAME
7481 #endif
7482 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
7484 cc_check && _radio_bsdbt848=yes
7485 echores "$_radio_bsdbt848"
7486 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
7488 if test "$_radio_bsdbt848" = yes ; then
7489 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
7490 else
7491 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
7494 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no && \
7495 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
7496 die "Radio driver requires BSD BT848, V4L or V4L2!"
7499 echocheck "Video 4 Linux 2 MPEG PVR interface"
7500 if test "$_pvr" = auto ; then
7501 _pvr=no
7502 if test "$_tv_v4l2" = yes && linux ; then
7503 cat > $TMPC <<EOF
7504 #include <stdlib.h>
7505 #include <inttypes.h>
7506 #include <linux/types.h>
7507 #include <linux/videodev2.h>
7508 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
7510 cc_check && _pvr=yes
7513 if test "$_pvr" = yes ; then
7514 def_pvr='#define CONFIG_PVR 1'
7515 inputmodules="pvr $inputmodules"
7516 else
7517 noinputmodules="pvr $noinputmodules"
7518 def_pvr='#undef CONFIG_PVR'
7520 echores "$_pvr"
7523 echocheck "ftp"
7524 if ! beos && test "$_ftp" = yes ; then
7525 def_ftp='#define CONFIG_FTP 1'
7526 inputmodules="ftp $inputmodules"
7527 else
7528 noinputmodules="ftp $noinputmodules"
7529 def_ftp='#undef CONFIG_FTP'
7531 echores "$_ftp"
7533 echocheck "vstream client"
7534 if test "$_vstream" = auto ; then
7535 _vstream=no
7536 cat > $TMPC <<EOF
7537 #include <vstream-client.h>
7538 void vstream_error(const char *format, ... ) {}
7539 int main(void) { vstream_start(); return 0; }
7541 cc_check -lvstream-client && _vstream=yes
7543 if test "$_vstream" = yes ; then
7544 def_vstream='#define CONFIG_VSTREAM 1'
7545 inputmodules="vstream $inputmodules"
7546 extra_ldflags="$extra_ldflags -lvstream-client"
7547 else
7548 noinputmodules="vstream $noinputmodules"
7549 def_vstream='#undef CONFIG_VSTREAM'
7551 echores "$_vstream"
7554 echocheck "OSD menu"
7555 if test "$_menu" = yes ; then
7556 def_menu='#define CONFIG_MENU 1'
7557 test $_dvbin = "yes" && _menu_dvbin=yes
7558 else
7559 def_menu='#undef CONFIG_MENU'
7560 _menu_dvbin=no
7562 echores "$_menu"
7565 echocheck "Subtitles sorting"
7566 if test "$_sortsub" = yes ; then
7567 def_sortsub='#define CONFIG_SORTSUB 1'
7568 else
7569 def_sortsub='#undef CONFIG_SORTSUB'
7571 echores "$_sortsub"
7574 echocheck "XMMS inputplugin support"
7575 if test "$_xmms" = yes ; then
7576 if ( xmms-config --version ) >/dev/null 2>&1 ; then
7577 _xmmsplugindir=$(xmms-config --input-plugin-dir)
7578 _xmmslibdir=$(xmms-config --exec-prefix)/lib
7579 else
7580 _xmmsplugindir=/usr/lib/xmms/Input
7581 _xmmslibdir=/usr/lib
7584 def_xmms='#define CONFIG_XMMS 1'
7585 if darwin ; then
7586 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
7587 else
7588 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
7590 else
7591 def_xmms='#undef CONFIG_XMMS'
7593 echores "$_xmms"
7595 if test "$_charset" != "noconv" ; then
7596 def_charset="#define MSG_CHARSET \"$_charset\""
7597 else
7598 def_charset="#undef MSG_CHARSET"
7599 _charset="UTF-8"
7602 #############################################################################
7604 echocheck "automatic gdb attach"
7605 if test "$_crash_debug" = yes ; then
7606 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
7607 else
7608 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
7609 _crash_debug=no
7611 echores "$_crash_debug"
7613 echocheck "compiler support for noexecstack"
7614 cat > $TMPC <<EOF
7615 int main(void) { return 0; }
7617 if cc_check -Wl,-z,noexecstack ; then
7618 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
7619 echores "yes"
7620 else
7621 echores "no"
7624 echocheck "linker support for --nxcompat --no-seh --dynamicbase"
7625 if cc_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
7626 extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
7627 echores "yes"
7628 else
7629 echores "no"
7633 # Dynamic linking flags
7634 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
7635 _ld_dl_dynamic=''
7636 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
7637 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
7638 _ld_dl_dynamic='-rdynamic'
7641 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
7642 bsdos && extra_ldflags="$extra_ldflags -ldvd"
7643 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
7645 def_debug='#undef MP_DEBUG'
7646 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
7649 echocheck "joystick"
7650 def_joystick='#undef CONFIG_JOYSTICK'
7651 if test "$_joystick" = yes ; then
7652 if linux ; then
7653 # TODO add some check
7654 def_joystick='#define CONFIG_JOYSTICK 1'
7655 else
7656 _joystick="no"
7657 res_comment="unsupported under $system_name"
7660 echores "$_joystick"
7662 echocheck "lirc"
7663 if test "$_lirc" = auto ; then
7664 _lirc=no
7665 cat > $TMPC <<EOF
7666 #include <lirc/lirc_client.h>
7667 int main(void) { return 0; }
7669 cc_check -llirc_client && _lirc=yes
7671 if test "$_lirc" = yes ; then
7672 def_lirc='#define CONFIG_LIRC 1'
7673 libs_mplayer="$libs_mplayer -llirc_client"
7674 else
7675 def_lirc='#undef CONFIG_LIRC'
7677 echores "$_lirc"
7679 echocheck "lircc"
7680 if test "$_lircc" = auto ; then
7681 _lircc=no
7682 cat > $TMPC <<EOF
7683 #include <lirc/lircc.h>
7684 int main(void) { return 0; }
7686 cc_check -llircc && _lircc=yes
7688 if test "$_lircc" = yes ; then
7689 def_lircc='#define CONFIG_LIRCC 1'
7690 libs_mplayer="$libs_mplayer -llircc"
7691 else
7692 def_lircc='#undef CONFIG_LIRCC'
7694 echores "$_lircc"
7696 if arm; then
7697 # Detect maemo development platform libraries availability (http://www.maemo.org),
7698 # they are used when run on Nokia 770|8x0
7699 echocheck "maemo (Nokia 770|8x0)"
7700 if test "$_maemo" = auto ; then
7701 _maemo=no
7702 cat > $TMPC << EOF
7703 #include <libosso.h>
7704 int main(void) { (void) osso_initialize("", "", 0, NULL); return 0; }
7706 cc_check $($_pkg_config --cflags --libs libosso 2>/dev/null) && _maemo=yes
7708 if test "$_maemo" = yes ; then
7709 def_maemo='#define CONFIG_MAEMO 1'
7710 extra_cflags="$extra_cflags $($_pkg_config --cflags libosso)"
7711 extra_ldflags="$extra_ldflags $($_pkg_config --libs libosso) -lXsp"
7712 else
7713 def_maemo='#undef CONFIG_MAEMO'
7715 echores "$_maemo"
7718 #############################################################################
7720 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
7721 # the OMF format needs to come after the 'extern symbol prefix' check, which
7722 # uses nm.
7723 if os2 ; then
7724 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
7727 # linker paths should be the same for mencoder and mplayer
7728 _ld_tmp=""
7729 for I in $libs_mplayer ; do
7730 _tmp=$(echo $I | sed -e 's/^-L.*$//')
7731 if test -z "$_tmp" ; then
7732 extra_ldflags="$extra_ldflags $I"
7733 else
7734 _ld_tmp="$_ld_tmp $I"
7736 done
7737 libs_mplayer=$_ld_tmp
7740 #############################################################################
7741 # 64 bit file offsets?
7742 if test "$_largefiles" = yes || freebsd ; then
7743 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
7744 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
7745 # dvdread support requires this (for off64_t)
7746 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
7750 CXXFLAGS=" $CFLAGS -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS"
7752 # This must be the last test to be performed. Any other tests following it
7753 # could fail due to linker errors. libdvdnavmini is intentionally not linked
7754 # against libdvdread (to permit MPlayer to use its own copy of the library).
7755 # So any compilation using the flags added here but not linking against
7756 # libdvdread can fail.
7757 echocheck "DVD support (libdvdnav)"
7758 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
7759 _dvdnav=no
7761 dvdnav_internal=no
7762 if test "$_dvdnav" = auto ; then
7763 if test "$_dvdread_internal" = yes ; then
7764 _dvdnav=yes
7765 dvdnav_internal=yes
7766 res_comment="internal"
7767 else
7768 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
7771 if test "$_dvdnav" = auto ; then
7772 cat > $TMPC <<EOF
7773 #include <inttypes.h>
7774 #include <dvdnav/dvdnav.h>
7775 int main(void) { dvdnav_t *dvd=0; return 0; }
7777 _dvdnav=no
7778 _dvdnavdir=$($_dvdnavconfig --cflags)
7779 _dvdnavlibs=$($_dvdnavconfig --libs)
7780 cc_check $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
7782 if test "$_dvdnav" = yes ; then
7783 _largefiles=yes
7784 def_dvdnav='#define CONFIG_DVDNAV 1'
7785 if test "$dvdnav_internal" = yes ; then
7786 cflags_libdvdnav="-Ilibdvdnav"
7787 inputmodules="dvdnav(internal) $inputmodules"
7788 else
7789 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
7790 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
7791 inputmodules="dvdnav $inputmodules"
7793 else
7794 def_dvdnav='#undef CONFIG_DVDNAV'
7795 noinputmodules="dvdnav $noinputmodules"
7797 echores "$_dvdnav"
7799 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
7800 # Read dvdnav comment above.
7802 mak_enable () {
7803 list=$(echo $1 | tr '[a-z]' '[A-Z]')
7804 item=$(echo $2 | tr '[a-z]' '[A-Z]')
7805 nprefix=$3;
7806 for part in $list; do
7807 if $(echo $item | grep -q -E "(^| )$part($| )"); then
7808 echo "${nprefix}_$part = yes"
7810 done
7813 #############################################################################
7814 echo "Creating config.mak"
7815 cat > config.mak << EOF
7816 # -------- Generated by configure -----------
7818 # Ensure that locale settings do not interfere with shell commands.
7819 export LC_ALL = C
7821 CONFIGURATION = $_configuration
7823 CHARSET = $_charset
7824 DOC_LANGS = $language_doc
7825 DOC_LANG_ALL = $doc_lang_all
7826 MAN_LANGS = $language_man
7827 MAN_LANG_ALL = $man_lang_all
7828 MSG_LANGS = $language_msg
7829 MSG_LANG_ALL = $msg_lang_all
7831 prefix = \$(DESTDIR)$_prefix
7832 BINDIR = \$(DESTDIR)$_bindir
7833 DATADIR = \$(DESTDIR)$_datadir
7834 LIBDIR = \$(DESTDIR)$_libdir
7835 MANDIR = \$(DESTDIR)$_mandir
7836 CONFDIR = \$(DESTDIR)$_confdir
7837 LOCALEDIR = \$(DESTDIR)$_localedir
7839 AR = $_ar
7840 AS = $_cc
7841 CC = $_cc
7842 CXX = $_cc
7843 HOST_CC = $_host_cc
7844 INSTALL = $_install
7845 INSTALLSTRIP = $_install_strip
7846 WINDRES = $_windres
7848 CFLAGS = $CFLAGS $extra_cflags
7849 CXXFLAGS = $CXXFLAGS $extra_cflags $extra_cxxflags
7851 CFLAGS_DHAHELPER = $cflags_dhahelper
7852 CFLAGS_FAAD_FIXED = $cflags_faad_fixed
7853 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
7854 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
7855 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
7856 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
7857 CFLAGS_STACKREALIGN = $cflags_stackrealign
7858 CFLAGS_SVGALIB_HELPER = $cflags_svgalib_helper
7859 CFLAGS_TREMOR_LOW = $cflags_tremor_low
7861 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
7862 EXTRALIBS_MPLAYER = $libs_mplayer
7863 EXTRALIBS_MENCODER = $libs_mencoder
7865 GETCH = $_getch
7866 TIMER = $_timer
7868 EXESUF = $_exesuf
7869 EXESUFS_ALL = .exe
7871 ARCH = $arch
7872 $(mak_enable "$arch_all" "$arch" ARCH)
7873 $(mak_enable "$subarch_all" "$subarch" ARCH)
7874 $(mak_enable "$cpuexts_all" "$cpuexts" HAVE)
7876 MENCODER = $_mencoder
7877 MPLAYER = $_mplayer
7879 NEED_GETTIMEOFDAY = $_need_gettimeofday
7880 NEED_GLOB = $_need_glob
7881 NEED_MMAP = $_need_mmap
7882 NEED_SETENV = $_need_setenv
7883 NEED_SHMEM = $_need_shmem
7884 NEED_STRSEP = $_need_strsep
7885 NEED_SWAB = $_need_swab
7886 NEED_VSSCANF = $_need_vsscanf
7888 # features
7889 3DFX = $_3dfx
7890 AA = $_aa
7891 ALSA1X = $_alsa1x
7892 ALSA9 = $_alsa9
7893 ALSA5 = $_alsa5
7894 APPLE_IR = $_apple_ir
7895 APPLE_REMOTE = $_apple_remote
7896 ARTS = $_arts
7897 AUDIO_INPUT = $_audio_input
7898 BITMAP_FONT = $_bitmap_font
7899 BL = $_bl
7900 CACA = $_caca
7901 CDDA = $_cdda
7902 CDDB = $_cddb
7903 COREAUDIO = $_coreaudio
7904 COREVIDEO = $_corevideo
7905 DART = $_dart
7906 DFBMGA = $_dfbmga
7907 DGA = $_dga
7908 DIRECT3D = $_direct3d
7909 DIRECTFB = $_directfb
7910 DIRECTX = $_directx
7911 DVBIN = $_dvbin
7912 DVDNAV = $_dvdnav
7913 DVDNAV_INTERNAL = $dvdnav_internal
7914 DVDREAD = $_dvdread
7915 DVDREAD_INTERNAL = $_dvdread_internal
7916 DXR2 = $_dxr2
7917 DXR3 = $_dxr3
7918 ESD = $_esd
7919 FAAC=$_faac
7920 FAAD = $_faad
7921 FAAD_INTERNAL = $_faad_internal
7922 FASTMEMCPY = $_fastmemcpy
7923 FBDEV = $_fbdev
7924 FREETYPE = $_freetype
7925 FTP = $_ftp
7926 GIF = $_gif
7927 GGI = $_ggi
7928 GL = $_gl
7929 GL_WIN32 = $_gl_win32
7930 GL_X11 = $_gl_x11
7931 GL_SDL = $_gl_sdl
7932 MATRIXVIEW = $matrixview
7933 HAVE_POSIX_SELECT = $_posix_select
7934 HAVE_SYS_MMAN_H = $_mman
7935 IVTV = $_ivtv
7936 JACK = $_jack
7937 JOYSTICK = $_joystick
7938 JPEG = $_jpeg
7939 KAI = $_kai
7940 KVA = $_kva
7941 LADSPA = $_ladspa
7942 LIBA52 = $_liba52
7943 LIBASS = $_ass
7944 LIBBS2B = $_libbs2b
7945 LIBDCA = $_libdca
7946 LIBDV = $_libdv
7947 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
7948 LIBLZO = $_liblzo
7949 LIBMAD = $_mad
7950 LIBMENU = $_menu
7951 LIBMENU_DVBIN = $_menu_dvbin
7952 LIBMPEG2 = $_libmpeg2
7953 LIBNEMESI = $_nemesi
7954 LIBNUT = $_libnut
7955 LIBSMBCLIENT = $_smb
7956 LIBTHEORA = $_theora
7957 LIRC = $_lirc
7958 LIVE555 = $_live
7959 MACOSX_FINDER = $_macosx_finder
7960 MD5SUM = $_md5sum
7961 MGA = $_mga
7962 MNG = $_mng
7963 MP3LAME = $_mp3lame
7964 MP3LIB = $_mp3lib
7965 MUSEPACK = $_musepack
7966 NAS = $_nas
7967 NATIVE_RTSP = $_native_rtsp
7968 NETWORK = $_network
7969 OPENAL = $_openal
7970 OSS = $_ossaudio
7971 PE_EXECUTABLE = $_pe_executable
7972 PNG = $_png
7973 PNM = $_pnm
7974 PRIORITY = $_priority
7975 PULSE = $_pulse
7976 PVR = $_pvr
7977 QTX_CODECS = $_qtx
7978 QTX_CODECS_WIN32 = $_qtx_codecs_win32
7979 QTX_EMULATION = $_qtx_emulation
7980 QUARTZ = $_quartz
7981 RADIO=$_radio
7982 RADIO_CAPTURE=$_radio_capture
7983 REAL_CODECS = $_real
7984 S3FB = $_s3fb
7985 SDL = $_sdl
7986 SPEEX = $_speex
7987 STREAM_CACHE = $_stream_cache
7988 SGIAUDIO = $_sgiaudio
7989 SUNAUDIO = $_sunaudio
7990 SVGA = $_svga
7991 TDFXFB = $_tdfxfb
7992 TDFXVID = $_tdfxvid
7993 TGA = $_tga
7994 TOOLAME=$_toolame
7995 TREMOR_INTERNAL = $_tremor_internal
7996 TV = $_tv
7997 TV_BSDBT848 = $_tv_bsdbt848
7998 TV_DSHOW = $_tv_dshow
7999 TV_V4L = $_tv_v4l
8000 TV_V4L1 = $_tv_v4l1
8001 TV_V4L2 = $_tv_v4l2
8002 TWOLAME=$_twolame
8003 UNRAR_EXEC = $_unrar_exec
8004 V4L2 = $_v4l2
8005 VCD = $_vcd
8006 VDPAU = $_vdpau
8007 VESA = $_vesa
8008 VIDIX = $_vidix
8009 VIDIX_PCIDB = $_vidix_pcidb_val
8010 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
8011 VIDIX_IVTV=$_vidix_drv_ivtv
8012 VIDIX_MACH64=$_vidix_drv_mach64
8013 VIDIX_MGA=$_vidix_drv_mga
8014 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
8015 VIDIX_NVIDIA=$_vidix_drv_nvidia
8016 VIDIX_PM2=$_vidix_drv_pm2
8017 VIDIX_PM3=$_vidix_drv_pm3
8018 VIDIX_RADEON=$_vidix_drv_radeon
8019 VIDIX_RAGE128=$_vidix_drv_rage128
8020 VIDIX_S3=$_vidix_drv_s3
8021 VIDIX_SH_VEU=$_vidix_drv_sh_veu
8022 VIDIX_SIS=$_vidix_drv_sis
8023 VIDIX_UNICHROME=$_vidix_drv_unichrome
8024 VORBIS = $_vorbis
8025 VSTREAM = $_vstream
8026 WII = $_wii
8027 WIN32DLL = $_win32dll
8028 WIN32WAVEOUT = $_win32waveout
8029 WIN32_EMULATION = $_win32_emulation
8030 WINVIDIX = $winvidix
8031 X11 = $_x11
8032 X264 = $_x264
8033 XANIM_CODECS = $_xanim
8034 XMGA = $_xmga
8035 XMMS_PLUGINS = $_xmms
8036 XV = $_xv
8037 XVID4 = $_xvid
8038 XVIDIX = $xvidix
8039 XVMC = $_xvmc
8040 XVR100 = $_xvr100
8041 YUV4MPEG = $_yuv4mpeg
8042 ZR = $_zr
8044 # FFmpeg
8045 LIBAVUTIL = $_libavutil
8046 LIBAVCODEC = $_libavcodec
8047 LIBAVFORMAT = $_libavformat
8048 LIBPOSTPROC = $_libpostproc
8049 LIBSWSCALE = $_libswscale
8050 LIBAVCODEC_INTERNALS = $_libavcodec_internals
8051 LIBSWSCALE_INTERNALS = $_libswscale_internals
8052 FFMPEG_SOURCE_PATH = $_ffmpeg_source
8054 RANLIB = $_ranlib
8055 YASM = $_yasm
8056 YASMFLAGS = $YASMFLAGS
8058 # Some FFmpeg codecs depend on these. Enable them unconditionally for now.
8059 CONFIG_AANDCT = yes
8060 CONFIG_FFT = yes
8061 CONFIG_GOLOMB = yes
8062 CONFIG_H264DSP = yes
8063 CONFIG_LPC = yes
8064 CONFIG_MDCT = yes
8065 CONFIG_RDFT = yes
8067 CONFIG_BZLIB = $bzlib
8068 CONFIG_ENCODERS = yes
8069 CONFIG_GPL = yes
8070 CONFIG_MLIB = $_mlib
8071 CONFIG_MUXERS = $_mencoder
8072 CONFIG_VDPAU = $_vdpau
8073 CONFIG_XVMC = $_xvmc
8074 CONFIG_ZLIB = $_zlib
8076 HAVE_PTHREADS = $_pthreads
8077 HAVE_SHM = $_shm
8078 HAVE_W32THREADS = $_w32threads
8079 HAVE_YASM = $have_yasm
8083 #############################################################################
8085 ff_config_enable () {
8086 list=$(echo $1 | tr '[a-z]' '[A-Z]')
8087 item=$(echo $2 | tr '[a-z]' '[A-Z]')
8088 _nprefix=$3;
8089 test -z "$_nprefix" && _nprefix='CONFIG'
8090 for part in $list; do
8091 if $(echo $item | grep -q -E "(^| )$part($| )"); then
8092 echo "#define ${_nprefix}_$part 1"
8093 else
8094 echo "#define ${_nprefix}_$part 0"
8096 done
8099 echo "Creating config.h"
8100 cat > $TMPH << EOF
8101 /*----------------------------------------------------------------------------
8102 ** This file has been automatically generated by configure any changes in it
8103 ** will be lost when you run configure again.
8104 ** Instead of modifying definitions here, use the --enable/--disable options
8105 ** of the configure script! See ./configure --help for details.
8106 *---------------------------------------------------------------------------*/
8108 #ifndef MPLAYER_CONFIG_H
8109 #define MPLAYER_CONFIG_H
8111 /* Undefine this if you do not want to select mono audio (left or right)
8112 with a stereo MPEG layer 2/3 audio stream. The command line option
8113 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
8114 right-only), with 0 being the default.
8116 #define CONFIG_FAKE_MONO 1
8118 /* set up audio OUTBURST. Do not change this! */
8119 #define OUTBURST 512
8121 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
8122 #undef FAST_OSD
8123 #undef FAST_OSD_TABLE
8125 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
8126 #define MPEG12_POSTPROC 1
8127 #define ATTRIBUTE_ALIGNED_MAX 16
8131 #define CONFIGURATION "$_configuration"
8133 #define MPLAYER_DATADIR "$_datadir"
8134 #define MPLAYER_CONFDIR "$_confdir"
8135 #define MPLAYER_LIBDIR "$_libdir"
8136 #define MPLAYER_LOCALEDIR "$_localedir"
8138 $def_translation
8140 /* definitions needed by included libraries */
8141 #define HAVE_INTTYPES_H 1
8142 /* libmpeg2 + FFmpeg */
8143 $def_fast_inttypes
8144 /* libdvdcss */
8145 #define HAVE_ERRNO_H 1
8146 /* libdvdcss + libdvdread */
8147 #define HAVE_LIMITS_H 1
8148 /* libdvdcss + libfaad2 */
8149 #define HAVE_UNISTD_H 1
8150 /* libfaad2 + libdvdread */
8151 #define STDC_HEADERS 1
8152 #define HAVE_MEMCPY 1
8153 /* libfaad2 */
8154 #define HAVE_STRING_H 1
8155 #define HAVE_STRINGS_H 1
8156 #define HAVE_SYS_STAT_H 1
8157 #define HAVE_SYS_TYPES_H 1
8158 /* libdvdnav */
8159 #define READ_CACHE_TRACE 0
8160 /* libdvdread */
8161 #define HAVE_DLFCN_H 1
8162 $def_dvdcss
8165 /* system headers */
8166 $def_alloca_h
8167 $def_alsa_asoundlib_h
8168 $def_altivec_h
8169 $def_malloc_h
8170 $def_mman_h
8171 $def_mman_has_map_failed
8172 $def_soundcard_h
8173 $def_sys_asoundlib_h
8174 $def_sys_soundcard_h
8175 $def_sys_sysinfo_h
8176 $def_termios_h
8177 $def_termios_sys_h
8178 $def_winsock2_h
8181 /* system functions */
8182 $def_gethostbyname2
8183 $def_gettimeofday
8184 $def_glob
8185 $def_langinfo
8186 $def_lrintf
8187 $def_map_memalign
8188 $def_memalign
8189 $def_nanosleep
8190 $def_posix_select
8191 $def_select
8192 $def_setenv
8193 $def_setmode
8194 $def_shm
8195 $def_strsep
8196 $def_swab
8197 $def_sysi86
8198 $def_sysi86_iv
8199 $def_termcap
8200 $def_termios
8201 $def_vsscanf
8204 /* system-specific features */
8205 $def_asmalign_pot
8206 $def_builtin_expect
8207 $def_dl
8208 $def_dos_paths
8209 $def_extern_asm
8210 $def_extern_prefix
8211 $def_iconv
8212 $def_kstat
8213 $def_macosx_bundle
8214 $def_macosx_finder
8215 $def_maemo
8216 $def_named_asm_args
8217 $def_priority
8218 $def_quicktime
8219 $def_restrict_keyword
8220 $def_rtc
8221 $def_unrar_exec
8224 /* configurable options */
8225 $def_charset
8226 $def_crash_debug
8227 $def_debug
8228 $def_dynamic_plugins
8229 $def_fastmemcpy
8230 $def_menu
8231 $def_runtime_cpudetection
8232 $def_sighandler
8233 $def_sortsub
8234 $def_stream_cache
8235 $def_pthread_cache
8238 /* CPU stuff */
8239 #define __CPU__ $iproc
8240 $def_words_endian
8241 $def_bigendian
8242 $(ff_config_enable "$arch_all" "$arch" "ARCH")
8243 $(ff_config_enable "$subarch_all" "$subarch" "ARCH")
8244 $(ff_config_enable "$cpuexts_all" "$cpuexts" "HAVE")
8247 /* DVD/VCD/CD */
8248 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
8249 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
8250 $def_bsdi_dvd
8251 $def_cddb
8252 $def_cdio
8253 $def_cdparanoia
8254 $def_cdrom
8255 $def_dvd
8256 $def_dvd_bsd
8257 $def_dvd_darwin
8258 $def_dvd_linux
8259 $def_dvd_openbsd
8260 $def_dvdio
8261 $def_dvdnav
8262 $def_dvdread
8263 $def_hpux_scsi_h
8264 $def_libcdio
8265 $def_sol_scsi_h
8266 $def_vcd
8269 /* codec libraries */
8270 $def_faac
8271 $def_faad
8272 $def_faad_internal
8273 $def_liba52
8274 $def_libdca
8275 $def_libdv
8276 $def_liblzo
8277 $def_libmpeg2
8278 $def_mad
8279 $def_mp3lame
8280 $def_mp3lame_preset
8281 $def_mp3lame_preset_medium
8282 $def_mp3lib
8283 $def_musepack
8284 $def_speex
8285 $def_theora
8286 $def_toolame
8287 $def_tremor
8288 $def_twolame
8289 $def_vorbis
8290 $def_x264
8291 $def_xvid
8292 $def_zlib
8294 $def_libnut
8297 /* binary codecs */
8298 $def_qtx
8299 $def_qtx_win32
8300 $def_real
8301 $def_win32_loader
8302 $def_win32dll
8303 $def_xanim
8304 $def_xmms
8305 #define BINARY_CODECS_PATH "$_codecsdir"
8306 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
8309 /* Audio output drivers */
8310 $def_alsa
8311 $def_alsa1x
8312 $def_alsa5
8313 $def_alsa9
8314 $def_arts
8315 $def_coreaudio
8316 $def_dart
8317 $def_esd
8318 $def_esd_latency
8319 $def_jack
8320 $def_kai
8321 $def_nas
8322 $def_openal
8323 $def_openal_h
8324 $def_ossaudio
8325 $def_ossaudio_devdsp
8326 $def_ossaudio_devmixer
8327 $def_pulse
8328 $def_sgiaudio
8329 $def_sunaudio
8330 $def_win32waveout
8332 $def_ladspa
8333 $def_libbs2b
8336 /* input */
8337 $def_apple_ir
8338 $def_apple_remote
8339 $def_ioctl_bt848_h_name
8340 $def_ioctl_meteor_h_name
8341 $def_joystick
8342 $def_lirc
8343 $def_lircc
8344 $def_pvr
8345 $def_radio
8346 $def_radio_bsdbt848
8347 $def_radio_capture
8348 $def_radio_v4l
8349 $def_radio_v4l2
8350 $def_tv
8351 $def_tv_bsdbt848
8352 $def_tv_dshow
8353 $def_tv_v4l
8354 $def_tv_v4l1
8355 $def_tv_v4l2
8358 /* font stuff */
8359 $def_ass
8360 $def_bitmap_font
8361 $def_enca
8362 $def_fontconfig
8363 $def_freetype
8364 $def_fribidi
8367 /* networking */
8368 $def_closesocket
8369 $def_ftp
8370 $def_inet6
8371 $def_inet_aton
8372 $def_inet_pton
8373 $def_live
8374 $def_nemesi
8375 $def_network
8376 $def_smb
8377 $def_socklen_t
8378 $def_vstream
8381 /* libvo options */
8382 $def_3dfx
8383 $def_aa
8384 $def_bl
8385 $def_caca
8386 $def_corevideo
8387 $def_dfbmga
8388 $def_dga
8389 $def_dga1
8390 $def_dga2
8391 $def_direct3d
8392 $def_directfb
8393 $def_directfb_version
8394 $def_directx
8395 $def_dvb
8396 $def_dvbin
8397 $def_dxr2
8398 $def_dxr3
8399 $def_fbdev
8400 $def_ggi
8401 $def_ggiwmh
8402 $def_gif
8403 $def_gif_4
8404 $def_gif_tvt_hack
8405 $def_gl
8406 $def_gl_win32
8407 $def_gl_x11
8408 $def_gl_sdl
8409 $def_matrixview
8410 $def_ivtv
8411 $def_jpeg
8412 $def_kva
8413 $def_md5sum
8414 $def_mga
8415 $def_mng
8416 $def_png
8417 $def_pnm
8418 $def_quartz
8419 $def_s3fb
8420 $def_sdl
8421 $def_sdl_sdl_h
8422 $def_svga
8423 $def_tdfxfb
8424 $def_tdfxvid
8425 $def_tga
8426 $def_v4l2
8427 $def_vdpau
8428 $def_vesa
8429 $def_vidix
8430 $def_vidix_drv_cyberblade
8431 $def_vidix_drv_ivtv
8432 $def_vidix_drv_mach64
8433 $def_vidix_drv_mga
8434 $def_vidix_drv_mga_crtc2
8435 $def_vidix_drv_nvidia
8436 $def_vidix_drv_pm3
8437 $def_vidix_drv_radeon
8438 $def_vidix_drv_rage128
8439 $def_vidix_drv_s3
8440 $def_vidix_drv_sh_veu
8441 $def_vidix_drv_sis
8442 $def_vidix_drv_unichrome
8443 $def_vidix_pfx
8444 $def_vm
8445 $def_wii
8446 $def_x11
8447 $def_xdpms
8448 $def_xf86keysym
8449 $def_xinerama
8450 $def_xmga
8451 $def_xss
8452 $def_xv
8453 $def_xvmc
8454 $def_xvr100
8455 $def_yuv4mpeg
8456 $def_zr
8459 /* FFmpeg */
8460 $def_libavcodec
8461 $def_libavformat
8462 $def_libavutil
8463 $def_libpostproc
8464 $def_libswscale
8465 $def_libavcodec_internals
8466 $def_libswscale_internals
8468 #define CONFIG_DECODERS 1
8469 #define CONFIG_ENCODERS 1
8470 #define CONFIG_DEMUXERS 1
8471 $def_muxers
8473 $def_arpa_inet_h
8474 $def_bswap
8475 $def_bzlib
8476 $def_dcbzl
8477 $def_exp2
8478 $def_exp2f
8479 $def_fast_64bit
8480 $def_fast_unaligned
8481 $def_llrint
8482 $def_log2
8483 $def_log2f
8484 $def_lrint
8485 $def_memalign_hack
8486 $def_mlib
8487 $def_mkstemp
8488 $def_posix_memalign
8489 $def_pthreads
8490 $def_round
8491 $def_roundf
8492 $def_ten_operands
8493 $def_threads
8494 $def_truncf
8495 $def_xform_asm
8496 $def_yasm
8498 #define CONFIG_FASTDIV 0
8499 #define CONFIG_FFSERVER 0
8500 #define CONFIG_GPL 1
8501 #define CONFIG_GRAY 0
8502 #define CONFIG_HARDCODED_TABLES 0
8503 #define CONFIG_LIBVORBIS 0
8504 #define CONFIG_POWERPC_PERF 0
8505 #define CONFIG_SMALL 0
8506 #define CONFIG_SWSCALE_ALPHA 1
8508 #define HAVE_ATTRIBUTE_PACKED 1
8509 #define HAVE_GETHRTIME 0
8510 #define HAVE_INLINE_ASM 1
8511 #define HAVE_LDBRX 0
8512 #define HAVE_POLL_H 1
8513 #define HAVE_PPC4XX 0
8514 #define HAVE_VFP_ARGS 1
8515 #define HAVE_VIRTUALALLOC 0
8517 /* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */
8518 #define CONFIG_AANDCT 1
8519 #define CONFIG_DCT 1
8520 #define CONFIG_DWT 1
8521 #define CONFIG_FFT 1
8522 #define CONFIG_GOLOMB 1
8523 #define CONFIG_H264DSP 1
8524 #define CONFIG_LPC 1
8525 #define CONFIG_MDCT 1
8526 #define CONFIG_RDFT 1
8528 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
8529 $def_ebx_available
8530 #ifndef MP_DEBUG
8531 #define HAVE_EBP_AVAILABLE 1
8532 #else
8533 #define HAVE_EBP_AVAILABLE 0
8534 #endif
8536 #define CONFIG_H263_VAAPI_HWACCEL 0
8537 #define CONFIG_MPEG2_VAAPI_HWACCEL 0
8538 #define CONFIG_MPEG4_VAAPI_HWACCEL 0
8539 #define CONFIG_H264_VAAPI_HWACCEL 0
8540 #define CONFIG_VC1_VAAPI_HWACCEL 0
8541 #define CONFIG_WMV3_VAAPI_HWACCEL 0
8543 #endif /* MPLAYER_CONFIG_H */
8546 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
8547 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
8549 #############################################################################
8551 ./version.sh `$_cc -dumpversion`
8553 cat << EOF
8555 Config files successfully generated by ./configure $_configuration !
8557 Install prefix: $_prefix
8558 Data directory: $_datadir
8559 Config direct.: $_confdir
8561 Byte order: $_byte_order
8562 Optimizing for: $_optimizing
8564 Languages:
8565 Messages (in addition to English): $language_msg
8566 Manual pages: $language_man
8567 Documentation: $language_doc
8569 Enabled optional drivers:
8570 Input: $inputmodules
8571 Codecs: $codecmodules
8572 Audio output: $aomodules
8573 Video output: $vomodules
8575 Disabled optional drivers:
8576 Input: $noinputmodules
8577 Codecs: $nocodecmodules
8578 Audio output: $noaomodules
8579 Video output: $novomodules
8581 'config.h' and 'config.mak' contain your configuration options.
8582 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
8583 compile *** DO NOT REPORT BUGS if you tweak these files ***
8585 'make' will now compile MPlayer and 'make install' will install it.
8586 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
8591 if test "$_mtrr" = yes ; then
8592 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$doc_lang/video.html#mtrr)"
8593 echo
8596 if ! x86_32; then
8597 cat <<EOF
8598 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
8599 operating system ($system_name). You may encounter a few files that cannot
8600 be played due to missing open source video/audio codec support.
8606 cat <<EOF
8607 Check $TMPLOG if you wonder why an autodetection failed (make sure
8608 development headers/packages are installed).
8610 NOTE: The --enable-* parameters unconditionally force options on, completely
8611 skipping autodetection. This behavior is unlike what you may be used to from
8612 autoconf-based configure scripts that can decide to override you. This greater
8613 level of control comes at a price. You may have to provide the correct compiler
8614 and linker flags yourself.
8615 If you used one of these options (except --enable-menu and similar ones that
8616 turn on internal features) and experience a compilation or linking failure,
8617 make sure you have passed the necessary compiler/linker flags to configure.
8619 If you suspect a bug, please read DOCS/HTML/$doc_lang/bugreports.html.
8623 if test "$_warn_CFLAGS" = yes; then
8624 cat <<EOF
8626 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
8627 but:
8629 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
8631 It is strongly recommended to let MPlayer choose the correct CFLAGS!
8632 To do so, execute 'CFLAGS= ./configure <options>'
8637 # Last move:
8638 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP" "$TMPH"