Update sources
[mplayer/kovensky.git] / configure
blob0c1f9f7565da790e2a0ef506dbe755658953c690
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 echo >> "$TMPLOG"
63 cat "$1" >> "$TMPLOG"
64 echo >> "$TMPLOG"
65 echo "$_cc $CFLAGS $extra_cflags $_ld_static $extra_ldflags $libs_mplayer $libs_mencoder -o $TMPEXE $@" >> "$TMPLOG"
66 rm -f "$TMPEXE"
67 $_cc $CFLAGS $extra_cflags $_ld_static $extra_ldflags $libs_mplayer $libs_mencoder -o "$TMPEXE" "$@" >> "$TMPLOG" 2>&1
68 TMPRES="$?"
69 echo >> "$TMPLOG"
70 echo >> "$TMPLOG"
71 return "$TMPRES"
74 cc_check() {
75 compile_check $TMPC $@
78 cxx_check() {
79 compile_check $TMPCPP $@ -lstdc++
82 yasm_check() {
83 echo >> "$TMPLOG"
84 cat "$TMPS" >> "$TMPLOG"
85 echo >> "$TMPLOG"
86 echo "$_yasm $YASMFLAGS -o $TMPEXE $TMPS $@" >> "$TMPLOG"
87 rm -f "$TMPEXE"
88 $_yasm $YASMFLAGS -o "$TMPEXE" "$TMPS" "$@" >> "$TMPLOG" 2>&1
89 TMPRES="$?"
90 echo >> "$TMPLOG"
91 echo >> "$TMPLOG"
92 return "$TMPRES"
95 tmp_run() {
96 "$TMPEXE" >> "$TMPLOG" 2>&1
99 # Display error message, flushes tempfile, exit
100 die () {
101 echo
102 echo "Error: $@" >&2
103 echo >&2
104 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP"
105 echo "Check \"$TMPLOG\" if you do not understand why it failed."
106 exit 1
109 # OS test booleans functions
110 issystem() {
111 test "$(echo $system_name | tr A-Z a-z)" = "$(echo $1 | tr A-Z a-z)"
113 aix() { issystem "AIX"; }
114 amigaos() { issystem "AmigaOS"; }
115 beos() { issystem "BEOS"; }
116 bsdos() { issystem "BSD/OS"; }
117 cygwin() { issystem "CYGWIN"; }
118 darwin() { issystem "Darwin"; }
119 dragonfly() { issystem "DragonFly"; }
120 freebsd() { issystem "FreeBSD" || issystem "GNU/kFreeBSD"; }
121 gnu() { issystem "GNU"; }
122 hpux() { issystem "HP-UX"; }
123 irix() { issystem "IRIX"; }
124 linux() { issystem "Linux"; }
125 mingw32() { issystem "MINGW32"; }
126 morphos() { issystem "MorphOS"; }
127 netbsd() { issystem "NetBSD"; }
128 openbsd() { issystem "OpenBSD"; }
129 os2() { issystem "OS/2"; }
130 qnx() { issystem "QNX"; }
131 sunos() { issystem "SunOS"; }
132 win32() { cygwin || mingw32; }
134 # arch test boolean functions
135 # x86/x86pc is used by QNX
136 x86_32() {
137 case "$host_arch" in
138 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686) return 0 ;;
139 *) return 1 ;;
140 esac
143 x86_64() {
144 case "$host_arch" in
145 x86_64|amd64) return 0 ;;
146 *) return 1 ;;
147 esac
150 x86() {
151 x86_32 || x86_64
154 ppc() {
155 case "$host_arch" in
156 ppc|ppc64|powerpc|powerpc64) return 0;;
157 *) return 1;;
158 esac
161 alpha() {
162 case "$host_arch" in
163 alpha*) return 0;;
164 *) return 1;;
165 esac
168 arm() {
169 case "$host_arch" in
170 arm) return 0;;
171 *) return 1;;
172 esac
175 # Use this before starting a check
176 echocheck() {
177 echo "============ Checking for $@ ============" >> "$TMPLOG"
178 echo ${_echo_n} "Checking for $@ ... ${_echo_c}"
181 # Use this to echo the results of a check
182 echores() {
183 if test "$_res_comment" ; then
184 _res_comment="($_res_comment)"
186 echo "Result is: $@ $_res_comment" >> "$TMPLOG"
187 echo "##########################################" >> "$TMPLOG"
188 echo "" >> "$TMPLOG"
189 echo "$@ $_res_comment"
190 _res_comment=""
192 #############################################################################
194 # Check how echo works in this /bin/sh
195 case $(echo -n) in
196 -n) _echo_n= _echo_c='\c' ;; # SysV echo
197 *) _echo_n='-n ' _echo_c= ;; # BSD echo
198 esac
200 msg_lang_all=$(echo help/help_mp-??.h help/help_mp-??_??.h | sed -e "s:help/help_mp-\(..\).h:\1:g" -e "s:help/help_mp-\(.....\).h:\1:g")
201 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")
202 doc_lang_all=$(echo DOCS/xml/??/ DOCS/xml/??_??/ | sed -e "s:DOCS/xml/\(..\)/:\1:g" -e "s:DOCS/xml/\(.._..\)/:\1:g")
204 show_help(){
205 cat << EOF
206 Usage: $0 [OPTIONS]...
208 Configuration:
209 -h, --help display this help and exit
211 Installation directories:
212 --prefix=DIR prefix directory for installation [/usr/local]
213 --bindir=DIR directory for installing binaries [PREFIX/bin]
214 --datadir=DIR directory for installing machine independent
215 data files (skins, etc) [PREFIX/share/mplayer]
216 --mandir=DIR directory for installing man pages [PREFIX/share/man]
217 --confdir=DIR directory for installing configuration files
218 [PREFIX/etc/mplayer]
219 --libdir=DIR directory for object code libraries [PREFIX/lib]
220 --codecsdir=DIR directory for binary codecs [LIBDIR/codecs]
221 --win32codecsdir=DIR directory for Windows DLLs [LIBDIR/codecs]
222 --xanimcodecsdir=DIR directory for XAnim codecs [LIBDIR/codecs]
223 --realcodecsdir=DIR directory for RealPlayer codecs [LIBDIR/codecs]
225 Optional features:
226 --disable-mencoder disable MEncoder (A/V encoder) compilation [enable]
227 --disable-mplayer disable MPlayer compilation [enable]
228 --disable-largefiles disable support for files > 2GB [enable]
229 --enable-linux-devfs set default devices to devfs [disable]
230 --enable-termcap use termcap database for key codes [autodetect]
231 --enable-termios use termios database for key codes [autodetect]
232 --disable-iconv disable iconv for encoding conversion [autodetect]
233 --disable-langinfo do not use langinfo [autodetect]
234 --enable-lirc enable LIRC (remote control) support [autodetect]
235 --enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect]
236 --enable-joystick enable joystick support [disable]
237 --enable-apple-remote enable Apple Remote input (Mac OS X only) [autodetect]
238 --enable-apple-ir enable Apple IR Remote input (Linux only) [autodetect]
239 --disable-vm disable X video mode extensions [autodetect]
240 --disable-xf86keysym disable support for multimedia keys [autodetect]
241 --enable-radio enable radio interface [disable]
242 --enable-radio-capture enable radio capture (through PCI/line-in) [disable]
243 --disable-radio-v4l2 disable Video4Linux2 radio interface [autodetect]
244 --disable-radio-bsdbt848 disable BSD BT848 radio interface [autodetect]
245 --disable-tv disable TV interface (TV/DVB grabbers) [enable]
246 --disable-tv-v4l1 disable Video4Linux TV interface [autodetect]
247 --disable-tv-v4l2 disable Video4Linux2 TV interface [autodetect]
248 --disable-tv-bsdbt848 disable BSD BT848 interface [autodetect]
249 --disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
250 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
251 --disable-network disable networking [enable]
252 --enable-winsock2_h enable winsock2_h [autodetect]
253 --enable-smb enable Samba (SMB) input [autodetect]
254 --enable-live enable LIVE555 Streaming Media [autodetect]
255 --enable-nemesi enable Nemesi Streaming Media [autodetect]
256 --disable-vcd disable VCD support [autodetect]
257 --disable-dvdnav disable libdvdnav [autodetect]
258 --disable-dvdread disable libdvdread [autodetect]
259 --disable-dvdread-internal disable internal libdvdread [autodetect]
260 --disable-libdvdcss-internal disable internal libdvdcss [autodetect]
261 --disable-cdparanoia disable cdparanoia [autodetect]
262 --disable-cddb disable cddb [autodetect]
263 --disable-bitmap-font disable bitmap font support [enable]
264 --disable-freetype disable FreeType 2 font rendering [autodetect]
265 --disable-fontconfig disable fontconfig font lookup [autodetect]
266 --disable-unrarexec disable using of UnRAR executable [enabled]
267 --enable-menu enable OSD menu (not DVD menu) [disabled]
268 --disable-sortsub disable subtitle sorting [enabled]
269 --enable-fribidi enable the FriBiDi libs [autodetect]
270 --disable-enca disable ENCA charset oracle library [autodetect]
271 --disable-maemo disable maemo specific features [autodetect]
272 --enable-macosx-finder enable Mac OS X Finder invocation parameter
273 parsing [disabled]
274 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
275 --disable-inet6 disable IPv6 support [autodetect]
276 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
277 --disable-ftp disable FTP support [enabled]
278 --disable-vstream disable TiVo vstream client support [autodetect]
279 --disable-pthreads disable Posix threads support [autodetect]
280 --disable-w32threads disable Win32 threads support [autodetect]
281 --disable-ass disable internal SSA/ASS subtitle support [autodetect]
282 --enable-rpath enable runtime linker path for extra libs [disabled]
284 Codecs:
285 --enable-gif enable GIF support [autodetect]
286 --enable-png enable PNG input/output support [autodetect]
287 --enable-mng enable MNG input support [autodetect]
288 --enable-jpeg enable JPEG input/output support [autodetect]
289 --enable-libcdio enable libcdio support [autodetect]
290 --enable-liblzo enable liblzo support [autodetect]
291 --disable-win32dll disable Win32 DLL support [enabled]
292 --disable-qtx disable QuickTime codecs support [enabled]
293 --disable-xanim disable XAnim codecs support [enabled]
294 --disable-real disable RealPlayer codecs support [enabled]
295 --disable-xvid disable Xvid [autodetect]
296 --disable-x264 disable x264 [autodetect]
297 --disable-libnut disable libnut [autodetect]
298 --disable-libavutil disable libavutil [autodetect]
299 --disable-libavcodec disable libavcodec [autodetect]
300 --disable-libavformat disable libavformat [autodetect]
301 --disable-libpostproc disable libpostproc [autodetect]
302 --disable-libswscale disable libswscale [autodetect]
303 --disable-tremor-internal disable internal Tremor [enabled]
304 --enable-tremor-low enable lower accuracy internal Tremor [disabled]
305 --enable-tremor enable external Tremor [autodetect]
306 --disable-libvorbis disable libvorbis support [autodetect]
307 --disable-speex disable Speex support [autodetect]
308 --enable-theora enable OggTheora libraries [autodetect]
309 --enable-faad enable external FAAD2 (AAC) [autodetect]
310 --disable-faad-internal disable internal FAAD2 (AAC) [autodetect]
311 --enable-faad-fixed enable fixed-point mode in internal FAAD2 [disabled]
312 --disable-faac disable support for FAAC (AAC encoder) [autodetect]
313 --disable-ladspa disable LADSPA plugin support [autodetect]
314 --disable-libbs2b disable libbs2b audio filter support [autodetect]
315 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
316 --disable-mad disable libmad (MPEG audio) support [autodetect]
317 --disable-mp3lame disable LAME MP3 encoding support [autodetect]
318 --disable-toolame disable Toolame (MPEG layer 2) encoding [autodetect]
319 --disable-twolame disable Twolame (MPEG layer 2) encoding [autodetect]
320 --enable-xmms enable XMMS input plugin support [disabled]
321 --enable-libdca enable libdca support [autodetect]
322 --disable-mp3lib disable builtin mp3lib [autodetect]
323 --disable-liba52 disable liba52 [autodetect]
324 --disable-liba52-internal disable builtin 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 --enable-matrixview enable OpenGL MatrixView video outputi [no]
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-dvbhead enable DVB video output (HEAD version) [autodetect]
356 --enable-mga enable mga_vid video output [autodetect]
357 --enable-xmga enable mga_vid X11 video output [autodetect]
358 --enable-xv enable Xv video output [autodetect]
359 --enable-xvmc enable XvMC acceleration [disable]
360 --enable-vdpau enable VDPAU acceleration [autodetect]
361 --enable-vm enable XF86VidMode support [autodetect]
362 --enable-xinerama enable Xinerama support [autodetect]
363 --enable-x11 enable X11 video output [autodetect]
364 --enable-xshape enable XShape support [autodetect]
365 --disable-xss disable screensaver support via xss [autodetect]
366 --enable-fbdev enable FBDev video output [autodetect]
367 --enable-mlib enable mediaLib video output (Solaris) [disable]
368 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
369 --enable-tdfxfb enable tdfxfb video output [disable]
370 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
371 --enable-wii enable Nintendo Wii/GameCube video output [disable]
372 --enable-directfb enable DirectFB video output [autodetect]
373 --enable-zr enable ZR360[56]7/ZR36060 video output [autodetect]
374 --enable-bl enable Blinkenlights video output [disable]
375 --enable-tdfxvid enable tdfx_vid video output [disable]
376 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
377 --disable-tga disable Targa video output [enable]
378 --disable-pnm disable PNM video output [enable]
379 --disable-md5sum disable md5sum video output [enable]
380 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
381 --disable-corevideo disable CoreVideo video output [autodetect]
382 --disable-quartz disable Quartz video output [autodetect]
384 Audio output:
385 --disable-alsa disable ALSA audio output [autodetect]
386 --disable-ossaudio disable OSS audio output [autodetect]
387 --disable-arts disable aRts audio output [autodetect]
388 --disable-esd disable esd audio output [autodetect]
389 --disable-pulse disable Pulseaudio audio output [autodetect]
390 --disable-jack disable JACK audio output [autodetect]
391 --enable-openal enable OpenAL audio output [disable]
392 --disable-nas disable NAS audio output [autodetect]
393 --disable-sgiaudio disable SGI audio output [autodetect]
394 --disable-sunaudio disable Sun 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 --charset=charset convert the console messages to this character set
402 --language-doc=lang language to use for the documentation [en]
403 --language-man=lang language to use for the man pages [en]
404 --language-msg=lang language to use for the messages [en]
405 --language=lang default language to use [en]
406 Specific options override --language. You can pass a list of languages separated
407 by whitespace or commas instead of a single language. Nonexisting translations
408 will be dropped from each list. All documentation and man page translations
409 available in the list will be installed, for the messages the first available
410 translation will be used. The value "all" will activate all translations. The
411 LINGUAS environment variable is honored. In all cases the fallback is English.
412 Available values are: all $msg_lang_all
414 Miscellaneous options:
415 --enable-runtime-cpudetection enable runtime CPU detection [disable]
416 --enable-cross-compile enable cross-compilation [autodetect]
417 --cc=COMPILER C compiler to build MPlayer [gcc]
418 --host-cc=COMPILER C compiler for tools needed while building [gcc]
419 --as=ASSEMBLER assembler to build MPlayer [as]
420 --nm=NM nm tool to build MPlayer [nm]
421 --yasm=YASM Yasm assembler to build MPlayer [yasm]
422 --ar=AR librarian to build MPlayer [ar]
423 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
424 --windres=WINDRES windres to build MPlayer [windres]
425 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
426 --enable-static build a statically linked binary
427 --with-install=PATH path to a custom install program
429 Advanced options:
430 --enable-mmx enable MMX [autodetect]
431 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
432 --enable-3dnow enable 3DNow! [autodetect]
433 --enable-3dnowext enable extended 3DNow! [autodetect]
434 --enable-sse enable SSE [autodetect]
435 --enable-sse2 enable SSE2 [autodetect]
436 --enable-ssse3 enable SSSE3 [autodetect]
437 --enable-shm enable shm [autodetect]
438 --enable-altivec enable AltiVec (PowerPC) [autodetect]
439 --enable-armv5te enable DSP extensions (ARM) [autodetect]
440 --enable-armv6 enable ARMv6 (ARM) [autodetect]
441 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
442 --enable-armvfp enable ARM VFP (ARM) [autodetect]
443 --enable-neon enable NEON (ARM) [autodetect]
444 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
445 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
446 --enable-big-endian force byte order to big-endian [autodetect]
447 --enable-debug[=1-3] compile-in debugging information [disable]
448 --enable-profile compile-in profiling information [disable]
449 --disable-sighandler disable sighandler for crashes [enable]
450 --enable-crash-debug enable automatic gdb attach on crash [disable]
451 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
452 --ffmpeg-source-dir=PATH enable features requiring internal FFmpeg headers
454 Use these options if autodetection fails:
455 --extra-cflags=FLAGS extra CFLAGS
456 --extra-ldflags=FLAGS extra LDFLAGS
457 --extra-libs=FLAGS extra linker flags
458 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
459 --extra-libs-mencoder=FLAGS extra linker flags for MEncoder
460 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
462 --with-freetype-config=PATH path to freetype-config
463 --with-fribidi-config=PATH path to fribidi-config
464 --with-glib-config=PATH path to glib*-config
465 --with-gtk-config=PATH path to gtk*-config
466 --with-sdl-config=PATH path to sdl*-config
467 --with-dvdnav-config=PATH path to dvdnav-config
468 --with-dvdread-config=PATH path to dvdread-config
470 This configure script is NOT autoconf-based, even though its output is similar.
471 It will try to autodetect all configuration options. If you --enable an option
472 it will be forcefully turned on, skipping autodetection. This can break
473 compilation, so you need to know what you are doing.
475 exit 0
476 } #show_help()
478 # GOTCHA: the variables below defines the default behavior for autodetection
479 # and have - unless stated otherwise - at least 2 states : yes no
480 # If autodetection is available then the third state is: auto
481 _mmx=auto
482 _3dnow=auto
483 _3dnowext=auto
484 _mmxext=auto
485 _sse=auto
486 _sse2=auto
487 _ssse3=auto
488 _cmov=auto
489 _fast_cmov=auto
490 _armv5te=auto
491 _armv6=auto
492 _armv6t2=auto
493 _armvfp=auto
494 neon=auto
495 _iwmmxt=auto
496 _mtrr=auto
497 _altivec=auto
498 _install=install
499 _ranlib=ranlib
500 _windres=windres
501 _cc=cc
502 _ar=ar
503 test "$CC" && _cc="$CC"
504 _as=auto
505 _nm=auto
506 _yasm=yasm
507 _runtime_cpudetection=no
508 _cross_compile=auto
509 _prefix="/usr/local"
510 _libavutil=auto
511 _libavcodec=auto
512 _libavformat=auto
513 _libpostproc=auto
514 _libswscale=auto
515 _libavcodec_internals=no
516 _libswscale_internals=no
517 _mencoder=yes
518 _mplayer=yes
519 _x11=auto
520 _xshape=auto
521 _xss=auto
522 _dga1=auto
523 _dga2=auto
524 _xv=auto
525 _xvmc=no #auto when complete
526 _vdpau=auto
527 _sdl=auto
528 _kva=auto
529 _direct3d=auto
530 _directx=auto
531 _win32waveout=auto
532 _nas=auto
533 _png=auto
534 _mng=auto
535 _jpeg=auto
536 _pnm=yes
537 _md5sum=yes
538 _yuv4mpeg=yes
539 _gif=auto
540 _gl=auto
541 _matrixview=no
542 _ggi=auto
543 _ggiwmh=auto
544 _aa=auto
545 _caca=auto
546 _svga=auto
547 _vesa=auto
548 _fbdev=auto
549 _dvb=auto
550 _dvbhead=auto
551 _dxr2=auto
552 _dxr3=auto
553 _ivtv=auto
554 _v4l2=auto
555 _iconv=auto
556 _langinfo=auto
557 _rtc=auto
558 _ossaudio=auto
559 _arts=auto
560 _esd=auto
561 _pulse=auto
562 _jack=auto
563 _dart=auto
564 _openal=no
565 _libcdio=auto
566 _liblzo=auto
567 _mad=auto
568 _mp3lame=auto
569 _toolame=auto
570 _twolame=auto
571 _tremor=auto
572 _tremor_internal=yes
573 _tremor_low=no
574 _libvorbis=auto
575 _speex=auto
576 _theora=auto
577 _mp3lib=auto
578 _liba52=auto
579 _liba52_internal=auto
580 _libdca=auto
581 _libmpeg2=auto
582 _faad=auto
583 _faad_internal=auto
584 _faad_fixed=no
585 _faac=auto
586 _ladspa=auto
587 _libbs2b=auto
588 _xmms=no
589 _vcd=auto
590 _dvdnav=auto
591 _dvdnavconfig=dvdnav-config
592 _dvdreadconfig=dvdread-config
593 _dvdread=auto
594 _dvdread_internal=auto
595 _libdvdcss_internal=auto
596 _xanim=auto
597 _real=auto
598 _live=auto
599 _nemesi=auto
600 _native_rtsp=yes
601 _xinerama=auto
602 _mga=auto
603 _xmga=auto
604 _vm=auto
605 _xf86keysym=auto
606 _mlib=no #broken, thus disabled
607 _sgiaudio=auto
608 _sunaudio=auto
609 _alsa=auto
610 _fastmemcpy=yes
611 _unrar_exec=auto
612 _win32dll=auto
613 _select=yes
614 _radio=no
615 _radio_capture=no
616 _radio_v4l=auto
617 _radio_v4l2=auto
618 _radio_bsdbt848=auto
619 _tv=yes
620 _tv_v4l1=auto
621 _tv_v4l2=auto
622 _tv_bsdbt848=auto
623 _tv_dshow=auto
624 _pvr=auto
625 _network=yes
626 _winsock2_h=auto
627 _smb=auto
628 _vidix=auto
629 _vidix_pcidb=yes
630 _dhahelper=no
631 _svgalib_helper=no
632 _joystick=no
633 _xvid=auto
634 _x264=auto
635 _libnut=auto
636 _lirc=auto
637 _lircc=auto
638 _apple_remote=auto
639 _apple_ir=auto
640 _gui=no
641 _gtk1=no
642 _termcap=auto
643 _termios=auto
644 _3dfx=no
645 _s3fb=no
646 _wii=no
647 _tdfxfb=no
648 _tdfxvid=no
649 _xvr100=auto
650 _tga=yes
651 _directfb=auto
652 _zr=auto
653 _bl=no
654 _largefiles=yes
655 #language=en
656 _shm=auto
657 _linux_devfs=no
658 _charset="UTF-8"
659 _dynamic_plugins=no
660 _crash_debug=no
661 _sighandler=yes
662 _libdv=auto
663 _cdparanoia=auto
664 _cddb=auto
665 _big_endian=auto
666 _bitmap_font=yes
667 _freetype=auto
668 _fontconfig=auto
669 _menu=no
670 _qtx=auto
671 _maemo=auto
672 _coreaudio=auto
673 _corevideo=auto
674 _quartz=auto
675 quicktime=auto
676 _macosx_finder=no
677 _macosx_bundle=auto
678 _sortsub=yes
679 _freetypeconfig='freetype-config'
680 _fribidi=auto
681 _fribidiconfig='fribidi-config'
682 _enca=auto
683 _inet6=auto
684 _gethostbyname2=auto
685 _ftp=yes
686 _musepack=auto
687 _vstream=auto
688 _pthreads=auto
689 _w32threads=auto
690 _ass=auto
691 _rpath=no
692 _asmalign_pot=auto
693 _stream_cache=yes
694 _priority=no
695 def_dos_paths="#define HAVE_DOS_PATHS 0"
696 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
697 def_priority="#undef CONFIG_PRIORITY"
698 def_pthread_cache="#undef PTHREAD_CACHE"
699 _need_shmem=yes
700 for ac_option do
701 case "$ac_option" in
702 --help|-help|-h)
703 show_help
705 --prefix=*)
706 _prefix=$(echo $ac_option | cut -d '=' -f 2)
708 --bindir=*)
709 _bindir=$(echo $ac_option | cut -d '=' -f 2)
711 --datadir=*)
712 _datadir=$(echo $ac_option | cut -d '=' -f 2)
714 --mandir=*)
715 _mandir=$(echo $ac_option | cut -d '=' -f 2)
717 --confdir=*)
718 _confdir=$(echo $ac_option | cut -d '=' -f 2)
720 --libdir=*)
721 _libdir=$(echo $ac_option | cut -d '=' -f 2)
723 --codecsdir=*)
724 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
726 --win32codecsdir=*)
727 _win32codecsdir=$(echo $ac_option | cut -d '=' -f 2)
729 --xanimcodecsdir=*)
730 _xanimcodecsdir=$(echo $ac_option | cut -d '=' -f 2)
732 --realcodecsdir=*)
733 _realcodecsdir=$(echo $ac_option | cut -d '=' -f 2)
736 --with-install=*)
737 _install=$(echo $ac_option | cut -d '=' -f 2 )
739 --with-xvmclib=*)
740 _xvmclib=$(echo $ac_option | cut -d '=' -f 2)
743 --with-sdl-config=*)
744 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
746 --with-freetype-config=*)
747 _freetypeconfig=$(echo $ac_option | cut -d '=' -f 2)
749 --with-fribidi-config=*)
750 _fribidiconfig=$(echo $ac_option | cut -d '=' -f 2)
752 --with-gtk-config=*)
753 _gtkconfig=$(echo $ac_option | cut -d '=' -f 2)
755 --with-glib-config=*)
756 _glibconfig=$(echo $ac_option | cut -d '=' -f 2)
758 --with-dvdnav-config=*)
759 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
761 --with-dvdread-config=*)
762 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
765 --extra-cflags=*)
766 extra_cflags="$extra_cflags $(echo $ac_option | cut -d '=' -f 2-)"
768 --extra-ldflags=*)
769 extra_ldflags="$extra_ldflags $(echo $ac_option | cut -d '=' -f 2-)"
771 --extra-libs=*)
772 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
774 --extra-libs-mplayer=*)
775 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
777 --extra-libs-mencoder=*)
778 libs_mencoder=$(echo $ac_option | cut -d '=' -f 2)
781 --target=*)
782 _target=$(echo $ac_option | cut -d '=' -f 2)
784 --cc=*)
785 _cc=$(echo $ac_option | cut -d '=' -f 2)
787 --host-cc=*)
788 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
790 --as=*)
791 _as=$(echo $ac_option | cut -d '=' -f 2)
793 --nm=*)
794 _nm=$(echo $ac_option | cut -d '=' -f 2)
796 --yasm=*)
797 _yasm=$(echo $ac_option | cut -d '=' -f 2)
799 --ar=*)
800 _ar=$(echo $ac_option | cut -d '=' -f 2)
802 --ranlib=*)
803 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
805 --windres=*)
806 _windres=$(echo $ac_option | cut -d '=' -f 2)
808 --charset=*)
809 _charset=$(echo $ac_option | cut -d '=' -f 2)
811 --language-doc=*)
812 language_doc=$(echo $ac_option | cut -d '=' -f 2)
814 --language-man=*)
815 language_man=$(echo $ac_option | cut -d '=' -f 2)
817 --language-msg=*)
818 language_msg=$(echo $ac_option | cut -d '=' -f 2)
820 --language=*)
821 language=$(echo $ac_option | cut -d '=' -f 2)
824 --enable-static)
825 _ld_static='-static'
827 --disable-static)
828 _ld_static=''
830 --enable-profile)
831 _profile='-p'
833 --disable-profile)
834 _profile=
836 --enable-debug)
837 _debug='-g'
839 --enable-debug=*)
840 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
842 --disable-debug)
843 _debug=
845 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
846 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
847 --enable-cross-compile) _cross_compile=yes ;;
848 --disable-cross-compile) _cross_compile=no ;;
849 --enable-mencoder) _mencoder=yes ;;
850 --disable-mencoder) _mencoder=no ;;
851 --enable-mplayer) _mplayer=yes ;;
852 --disable-mplayer) _mplayer=no ;;
853 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
854 --disable-dynamic-plugins) _dynamic_plugins=no ;;
855 --enable-x11) _x11=yes ;;
856 --disable-x11) _x11=no ;;
857 --enable-xshape) _xshape=yes ;;
858 --disable-xshape) _xshape=no ;;
859 --enable-xss) _xss=yes ;;
860 --disable-xss) _xss=no ;;
861 --enable-xv) _xv=yes ;;
862 --disable-xv) _xv=no ;;
863 --enable-xvmc) _xvmc=yes ;;
864 --disable-xvmc) _xvmc=no ;;
865 --enable-vdpau) _vdpau=yes ;;
866 --disable-vdpau) _vdpau=no ;;
867 --enable-sdl) _sdl=yes ;;
868 --disable-sdl) _sdl=no ;;
869 --enable-kva) _kva=yes ;;
870 --disable-kva) _kva=no ;;
871 --enable-direct3d) _direct3d=yes ;;
872 --disable-direct3d) _direct3d=no ;;
873 --enable-directx) _directx=yes ;;
874 --disable-directx) _directx=no ;;
875 --enable-win32waveout) _win32waveout=yes ;;
876 --disable-win32waveout) _win32waveout=no ;;
877 --enable-nas) _nas=yes ;;
878 --disable-nas) _nas=no ;;
879 --enable-png) _png=yes ;;
880 --disable-png) _png=no ;;
881 --enable-mng) _mng=yes ;;
882 --disable-mng) _mng=no ;;
883 --enable-jpeg) _jpeg=yes ;;
884 --disable-jpeg) _jpeg=no ;;
885 --enable-pnm) _pnm=yes ;;
886 --disable-pnm) _pnm=no ;;
887 --enable-md5sum) _md5sum=yes ;;
888 --disable-md5sum) _md5sum=no ;;
889 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
890 --disable-yuv4mpeg) _yuv4mpeg=no ;;
891 --enable-gif) _gif=yes ;;
892 --disable-gif) _gif=no ;;
893 --enable-gl) _gl=yes ;;
894 --disable-gl) _gl=no ;;
895 --enable-matrixview) _matrixview=yes ;;
896 --disable-matrixview) _matrixview=no ;;
897 --enable-ggi) _ggi=yes ;;
898 --disable-ggi) _ggi=no ;;
899 --enable-ggiwmh) _ggiwmh=yes ;;
900 --disable-ggiwmh) _ggiwmh=no ;;
901 --enable-aa) _aa=yes ;;
902 --disable-aa) _aa=no ;;
903 --enable-caca) _caca=yes ;;
904 --disable-caca) _caca=no ;;
905 --enable-svga) _svga=yes ;;
906 --disable-svga) _svga=no ;;
907 --enable-vesa) _vesa=yes ;;
908 --disable-vesa) _vesa=no ;;
909 --enable-fbdev) _fbdev=yes ;;
910 --disable-fbdev) _fbdev=no ;;
911 --enable-dvb) _dvb=yes ;;
912 --disable-dvb) _dvb=no ;;
913 --enable-dvbhead) _dvbhead=yes ;;
914 --disable-dvbhead) _dvbhead=no ;;
915 --enable-dxr2) _dxr2=yes ;;
916 --disable-dxr2) _dxr2=no ;;
917 --enable-dxr3) _dxr3=yes ;;
918 --disable-dxr3) _dxr3=no ;;
919 --enable-ivtv) _ivtv=yes ;;
920 --disable-ivtv) _ivtv=no ;;
921 --enable-v4l2) _v4l2=yes ;;
922 --disable-v4l2) _v4l2=no ;;
923 --enable-iconv) _iconv=yes ;;
924 --disable-iconv) _iconv=no ;;
925 --enable-langinfo) _langinfo=yes ;;
926 --disable-langinfo) _langinfo=no ;;
927 --enable-rtc) _rtc=yes ;;
928 --disable-rtc) _rtc=no ;;
929 --enable-libdv) _libdv=yes ;;
930 --disable-libdv) _libdv=no ;;
931 --enable-ossaudio) _ossaudio=yes ;;
932 --disable-ossaudio) _ossaudio=no ;;
933 --enable-arts) _arts=yes ;;
934 --disable-arts) _arts=no ;;
935 --enable-esd) _esd=yes ;;
936 --disable-esd) _esd=no ;;
937 --enable-pulse) _pulse=yes ;;
938 --disable-pulse) _pulse=no ;;
939 --enable-jack) _jack=yes ;;
940 --disable-jack) _jack=no ;;
941 --enable-openal) _openal=yes ;;
942 --disable-openal) _openal=no ;;
943 --enable-dart) _dart=yes ;;
944 --disable-dart) _dart=no ;;
945 --enable-mad) _mad=yes ;;
946 --disable-mad) _mad=no ;;
947 --enable-mp3lame) _mp3lame=yes ;;
948 --disable-mp3lame) _mp3lame=no ;;
949 --enable-toolame) _toolame=yes ;;
950 --disable-toolame) _toolame=no ;;
951 --enable-twolame) _twolame=yes ;;
952 --disable-twolame) _twolame=no ;;
953 --enable-libcdio) _libcdio=yes ;;
954 --disable-libcdio) _libcdio=no ;;
955 --enable-liblzo) _liblzo=yes ;;
956 --disable-liblzo) _liblzo=no ;;
957 --enable-libvorbis) _libvorbis=yes ;;
958 --disable-libvorbis) _libvorbis=no ;;
959 --enable-speex) _speex=yes ;;
960 --disable-speex) _speex=no ;;
961 --enable-tremor) _tremor=yes ;;
962 --disable-tremor) _tremor=no ;;
963 --enable-tremor-internal) _tremor_internal=yes ;;
964 --disable-tremor-internal) _tremor_internal=no ;;
965 --enable-tremor-low) _tremor_low=yes ;;
966 --disable-tremor-low) _tremor_low=no ;;
967 --enable-theora) _theora=yes ;;
968 --disable-theora) _theora=no ;;
969 --enable-mp3lib) _mp3lib=yes ;;
970 --disable-mp3lib) _mp3lib=no ;;
971 --enable-liba52-internal) _liba52_internal=yes ;;
972 --disable-liba52-internal) _liba52_internal=no ;;
973 --enable-liba52) _liba52=yes ;;
974 --disable-liba52) _liba52=no ;;
975 --enable-libdca) _libdca=yes ;;
976 --disable-libdca) _libdca=no ;;
977 --enable-libmpeg2) _libmpeg2=yes ;;
978 --disable-libmpeg2) _libmpeg2=no ;;
979 --enable-musepack) _musepack=yes ;;
980 --disable-musepack) _musepack=no ;;
981 --enable-faad) _faad=yes ;;
982 --disable-faad) _faad=no ;;
983 --enable-faad-internal) _faad_internal=yes ;;
984 --disable-faad-internal) _faad_internal=no ;;
985 --enable-faad-fixed) _faad_fixed=yes ;;
986 --disable-faad-fixed) _faad_fixed=no ;;
987 --enable-faac) _faac=yes ;;
988 --disable-faac) _faac=no ;;
989 --enable-ladspa) _ladspa=yes ;;
990 --disable-ladspa) _ladspa=no ;;
991 --enable-libbs2b) _libbs2b=yes ;;
992 --disable-libbs2b) _libbs2b=no ;;
993 --enable-xmms) _xmms=yes ;;
994 --disable-xmms) _xmms=no ;;
995 --enable-vcd) _vcd=yes ;;
996 --disable-vcd) _vcd=no ;;
997 --enable-dvdread) _dvdread=yes ;;
998 --disable-dvdread) _dvdread=no ;;
999 --enable-dvdread-internal) _dvdread_internal=yes ;;
1000 --disable-dvdread-internal) _dvdread_internal=no ;;
1001 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
1002 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
1003 --enable-dvdnav) _dvdnav=yes ;;
1004 --disable-dvdnav) _dvdnav=no ;;
1005 --enable-xanim) _xanim=yes ;;
1006 --disable-xanim) _xanim=no ;;
1007 --enable-real) _real=yes ;;
1008 --disable-real) _real=no ;;
1009 --enable-live) _live=yes ;;
1010 --disable-live) _live=no ;;
1011 --enable-nemesi) _nemesi=yes ;;
1012 --disable-nemesi) _nemesi=no ;;
1013 --enable-xinerama) _xinerama=yes ;;
1014 --disable-xinerama) _xinerama=no ;;
1015 --enable-mga) _mga=yes ;;
1016 --disable-mga) _mga=no ;;
1017 --enable-xmga) _xmga=yes ;;
1018 --disable-xmga) _xmga=no ;;
1019 --enable-vm) _vm=yes ;;
1020 --disable-vm) _vm=no ;;
1021 --enable-xf86keysym) _xf86keysym=yes ;;
1022 --disable-xf86keysym) _xf86keysym=no ;;
1023 --enable-mlib) _mlib=yes ;;
1024 --disable-mlib) _mlib=no ;;
1025 --enable-sunaudio) _sunaudio=yes ;;
1026 --disable-sunaudio) _sunaudio=no ;;
1027 --enable-sgiaudio) _sgiaudio=yes ;;
1028 --disable-sgiaudio) _sgiaudio=no ;;
1029 --enable-alsa) _alsa=yes ;;
1030 --disable-alsa) _alsa=no ;;
1031 --enable-tv) _tv=yes ;;
1032 --disable-tv) _tv=no ;;
1033 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1034 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1035 --enable-tv-v4l1) _tv_v4l1=yes ;;
1036 --disable-tv-v4l1) _tv_v4l1=no ;;
1037 --enable-tv-v4l2) _tv_v4l2=yes ;;
1038 --disable-tv-v4l2) _tv_v4l2=no ;;
1039 --enable-tv-dshow) _tv_dshow=yes ;;
1040 --disable-tv-dshow) _tv_dshow=no ;;
1041 --enable-radio) _radio=yes ;;
1042 --enable-radio-capture) _radio_capture=yes ;;
1043 --disable-radio-capture) _radio_capture=no ;;
1044 --disable-radio) _radio=no ;;
1045 --enable-radio-v4l) _radio_v4l=yes ;;
1046 --disable-radio-v4l) _radio_v4l=no ;;
1047 --enable-radio-v4l2) _radio_v4l2=yes ;;
1048 --disable-radio-v4l2) _radio_v4l2=no ;;
1049 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1050 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1051 --enable-pvr) _pvr=yes ;;
1052 --disable-pvr) _pvr=no ;;
1053 --enable-fastmemcpy) _fastmemcpy=yes ;;
1054 --disable-fastmemcpy) _fastmemcpy=no ;;
1055 --enable-network) _network=yes ;;
1056 --disable-network) _network=no ;;
1057 --enable-winsock2_h) _winsock2_h=yes ;;
1058 --disable-winsock2_h) _winsock2_h=no ;;
1059 --enable-smb) _smb=yes ;;
1060 --disable-smb) _smb=no ;;
1061 --enable-vidix) _vidix=yes ;;
1062 --disable-vidix) _vidix=no ;;
1063 --with-vidix-drivers=*)
1064 _vidix_drivers=$(echo $ac_option | cut -d '=' -f 2)
1066 --disable-vidix-pcidb) _vidix_pcidb=no ;;
1067 --enable-dhahelper) _dhahelper=yes ;;
1068 --disable-dhahelper) _dhahelper=no ;;
1069 --enable-svgalib_helper) _svgalib_helper=yes ;;
1070 --disable-svgalib_helper) _svgalib_helper=no ;;
1071 --enable-joystick) _joystick=yes ;;
1072 --disable-joystick) _joystick=no ;;
1073 --enable-xvid) _xvid=yes ;;
1074 --disable-xvid) _xvid=no ;;
1075 --enable-x264) _x264=yes ;;
1076 --disable-x264) _x264=no ;;
1077 --enable-libnut) _libnut=yes ;;
1078 --disable-libnut) _libnut=no ;;
1079 --enable-libavutil) _libavutil=yes ;;
1080 --disable-libavutil) _libavutil=no ;;
1081 --enable-libavcodec) _libavcodec=yes ;;
1082 --disable-libavcodec) _libavcodec=no ;;
1083 --enable-libavformat) _libavformat=yes ;;
1084 --disable-libavformat) _libavformat=no ;;
1085 --enable-libpostproc) _libpostproc=yes ;;
1086 --disable-libpostproc) _libpostproc=no ;;
1087 --enable-libswscale) _libswscale=yes ;;
1088 --disable-libswscale) _libswscale=no ;;
1089 --ffmpeg-source-dir=*)
1090 _ffmpeg_source=$(echo $ac_option | cut -d '=' -f 2 ) ;;
1092 --enable-lirc) _lirc=yes ;;
1093 --disable-lirc) _lirc=no ;;
1094 --enable-lircc) _lircc=yes ;;
1095 --disable-lircc) _lircc=no ;;
1096 --enable-apple-remote) _apple_remote=yes ;;
1097 --disable-apple-remote) _apple_remote=no ;;
1098 --enable-apple-ir) _apple_ir=yes ;;
1099 --disable-apple-ir) _apple_ir=no ;;
1100 --enable-gui) _gui=yes ;;
1101 --disable-gui) _gui=no ;;
1102 --enable-gtk1) _gtk1=yes ;;
1103 --disable-gtk1) _gtk1=no ;;
1104 --enable-termcap) _termcap=yes ;;
1105 --disable-termcap) _termcap=no ;;
1106 --enable-termios) _termios=yes ;;
1107 --disable-termios) _termios=no ;;
1108 --enable-3dfx) _3dfx=yes ;;
1109 --disable-3dfx) _3dfx=no ;;
1110 --enable-s3fb) _s3fb=yes ;;
1111 --disable-s3fb) _s3fb=no ;;
1112 --enable-wii) _wii=yes ;;
1113 --disable-wii) _wii=no ;;
1114 --enable-tdfxfb) _tdfxfb=yes ;;
1115 --disable-tdfxfb) _tdfxfb=no ;;
1116 --disable-tdfxvid) _tdfxvid=no ;;
1117 --enable-tdfxvid) _tdfxvid=yes ;;
1118 --disable-xvr100) _xvr100=no ;;
1119 --enable-xvr100) _xvr100=yes ;;
1120 --disable-tga) _tga=no ;;
1121 --enable-tga) _tga=yes ;;
1122 --enable-directfb) _directfb=yes ;;
1123 --disable-directfb) _directfb=no ;;
1124 --enable-zr) _zr=yes ;;
1125 --disable-zr) _zr=no ;;
1126 --enable-bl) _bl=yes ;;
1127 --disable-bl) _bl=no ;;
1128 --enable-mtrr) _mtrr=yes ;;
1129 --disable-mtrr) _mtrr=no ;;
1130 --enable-largefiles) _largefiles=yes ;;
1131 --disable-largefiles) _largefiles=no ;;
1132 --enable-shm) _shm=yes ;;
1133 --disable-shm) _shm=no ;;
1134 --enable-select) _select=yes ;;
1135 --disable-select) _select=no ;;
1136 --enable-linux-devfs) _linux_devfs=yes ;;
1137 --disable-linux-devfs) _linux_devfs=no ;;
1138 --enable-cdparanoia) _cdparanoia=yes ;;
1139 --disable-cdparanoia) _cdparanoia=no ;;
1140 --enable-cddb) _cddb=yes ;;
1141 --disable-cddb) _cddb=no ;;
1142 --enable-big-endian) _big_endian=yes ;;
1143 --disable-big-endian) _big_endian=no ;;
1144 --enable-bitmap-font) _bitmap_font=yes ;;
1145 --disable-bitmap-font) _bitmap_font=no ;;
1146 --enable-freetype) _freetype=yes ;;
1147 --disable-freetype) _freetype=no ;;
1148 --enable-fontconfig) _fontconfig=yes ;;
1149 --disable-fontconfig) _fontconfig=no ;;
1150 --enable-unrarexec) _unrar_exec=yes ;;
1151 --disable-unrarexec) _unrar_exec=no ;;
1152 --enable-ftp) _ftp=yes ;;
1153 --disable-ftp) _ftp=no ;;
1154 --enable-vstream) _vstream=yes ;;
1155 --disable-vstream) _vstream=no ;;
1156 --enable-pthreads) _pthreads=yes ;;
1157 --disable-pthreads) _pthreads=no ;;
1158 --enable-w32threads) _w32threads=yes ;;
1159 --disable-w32threads) _w32threads=no ;;
1160 --enable-ass) _ass=yes ;;
1161 --disable-ass) _ass=no ;;
1162 --enable-rpath) _rpath=yes ;;
1163 --disable-rpath) _rpath=no ;;
1165 --enable-fribidi) _fribidi=yes ;;
1166 --disable-fribidi) _fribidi=no ;;
1168 --enable-enca) _enca=yes ;;
1169 --disable-enca) _enca=no ;;
1171 --enable-inet6) _inet6=yes ;;
1172 --disable-inet6) _inet6=no ;;
1174 --enable-gethostbyname2) _gethostbyname2=yes ;;
1175 --disable-gethostbyname2) _gethostbyname2=no ;;
1177 --enable-dga1) _dga1=yes ;;
1178 --disable-dga1) _dga1=no ;;
1179 --enable-dga2) _dga2=yes ;;
1180 --disable-dga2) _dga2=no ;;
1182 --enable-menu) _menu=yes ;;
1183 --disable-menu) _menu=no ;;
1185 --enable-qtx) _qtx=yes ;;
1186 --disable-qtx) _qtx=no ;;
1188 --enable-coreaudio) _coreaudio=yes ;;
1189 --disable-coreaudio) _coreaudio=no ;;
1190 --enable-corevideo) _corevideo=yes ;;
1191 --disable-corevideo) _corevideo=no ;;
1192 --enable-quartz) _quartz=yes ;;
1193 --disable-quartz) _quartz=no ;;
1194 --enable-macosx-finder) _macosx_finder=yes ;;
1195 --disable-macosx-finder) _macosx_finder=no ;;
1196 --enable-macosx-bundle) _macosx_bundle=yes;;
1197 --disable-macosx-bundle) _macosx_bundle=no;;
1199 --enable-maemo) _maemo=yes ;;
1200 --disable-maemo) _maemo=no ;;
1202 --enable-sortsub) _sortsub=yes ;;
1203 --disable-sortsub) _sortsub=no ;;
1205 --enable-crash-debug) _crash_debug=yes ;;
1206 --disable-crash-debug) _crash_debug=no ;;
1207 --enable-sighandler) _sighandler=yes ;;
1208 --disable-sighandler) _sighandler=no ;;
1209 --enable-win32dll) _win32dll=yes ;;
1210 --disable-win32dll) _win32dll=no ;;
1212 --enable-sse) _sse=yes ;;
1213 --disable-sse) _sse=no ;;
1214 --enable-sse2) _sse2=yes ;;
1215 --disable-sse2) _sse2=no ;;
1216 --enable-ssse3) _ssse3=yes ;;
1217 --disable-ssse3) _ssse3=no ;;
1218 --enable-mmxext) _mmxext=yes ;;
1219 --disable-mmxext) _mmxext=no ;;
1220 --enable-3dnow) _3dnow=yes ;;
1221 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1222 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1223 --disable-3dnowext) _3dnowext=no ;;
1224 --enable-cmov) _cmov=yes ;;
1225 --disable-cmov) _cmov=no ;;
1226 --enable-fast-cmov) _fast_cmov=yes ;;
1227 --disable-fast-cmov) _fast_cmov=no ;;
1228 --enable-altivec) _altivec=yes ;;
1229 --disable-altivec) _altivec=no ;;
1230 --enable-armv5te) _armv5te=yes ;;
1231 --disable-armv5te) _armv5te=no ;;
1232 --enable-armv6) _armv6=yes ;;
1233 --disable-armv6) _armv6=no ;;
1234 --enable-armv6t2) _armv6t2=yes ;;
1235 --disable-armv6t2) _armv6t2=no ;;
1236 --enable-armvfp) _armvfp=yes ;;
1237 --disable-armvfp) _armvfp=no ;;
1238 --enable-neon) neon=yes ;;
1239 --disable-neon) neon=no ;;
1240 --enable-iwmmxt) _iwmmxt=yes ;;
1241 --disable-iwmmxt) _iwmmxt=no ;;
1242 --enable-mmx) _mmx=yes ;;
1243 --disable-mmx) # 3Dnow! and MMX2 require MMX
1244 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1247 echo "Unknown parameter: $ac_option"
1248 exit 1
1251 esac
1252 done
1254 if test "$_gui" = yes ; then
1255 die "Internal GUI was removed from MPlayer. Please use one of many available\n frontends\
1256 (http://www.mplayerhq.hu/design7/projects.html#mplayer_frontends)."
1259 # Atmos: moved this here, to be correct, if --prefix is specified
1260 test -z "$_bindir" && _bindir="$_prefix/bin"
1261 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1262 test -z "$_mandir" && _mandir="$_prefix/share/man"
1263 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1264 test -z "$_libdir" && _libdir="$_prefix/lib"
1266 # Determine our OS name and CPU architecture
1267 if test -z "$_target" ; then
1268 # OS name
1269 system_name=$(uname -s 2>&1)
1270 case "$system_name" in
1271 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1273 Haiku)
1274 system_name=BeOS
1276 IRIX*)
1277 system_name=IRIX
1279 GNU/kFreeBSD)
1280 system_name=FreeBSD
1282 HP-UX*)
1283 system_name=HP-UX
1285 [cC][yY][gG][wW][iI][nN]*)
1286 system_name=CYGWIN
1288 MINGW32*)
1289 system_name=MINGW32
1291 OS/2*)
1292 system_name=OS/2
1295 system_name="$system_name-UNKNOWN"
1297 esac
1300 # host's CPU/instruction set
1301 host_arch=$(uname -p 2>&1)
1302 case "$host_arch" in
1303 i386|sparc|ppc|alpha|arm|mips|vax)
1305 powerpc) # Darwin returns 'powerpc'
1306 host_arch=ppc
1308 *) # uname -p on Linux returns 'unknown' for the processor type,
1309 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1311 # Maybe uname -m (machine hardware name) returns something we
1312 # recognize.
1314 # x86/x86pc is used by QNX
1315 case "$(uname -m 2>&1)" in
1316 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 ;;
1317 ia64) host_arch=ia64 ;;
1318 macppc|ppc) host_arch=ppc ;;
1319 ppc64) host_arch=ppc64 ;;
1320 alpha) host_arch=alpha ;;
1321 sparc) host_arch=sparc ;;
1322 sparc64) host_arch=sparc64 ;;
1323 parisc*|hppa*|9000*) host_arch=hppa ;;
1324 arm*|zaurus|cats) host_arch=arm ;;
1325 sh3|sh4|sh4a) host_arch=sh ;;
1326 s390) host_arch=s390 ;;
1327 s390x) host_arch=s390x ;;
1328 *mips*) host_arch=mips ;;
1329 vax) host_arch=vax ;;
1330 xtensa*) host_arch=xtensa ;;
1331 *) host_arch=UNKNOWN ;;
1332 esac
1334 esac
1335 else # if test -z "$_target"
1336 system_name=$(echo $_target | cut -d '-' -f 2)
1337 case "$(echo $system_name | tr A-Z a-z)" in
1338 linux) system_name=Linux ;;
1339 freebsd) system_name=FreeBSD ;;
1340 gnu/kfreebsd) system_name=FreeBSD ;;
1341 netbsd) system_name=NetBSD ;;
1342 bsd/os) system_name=BSD/OS ;;
1343 openbsd) system_name=OpenBSD ;;
1344 dragonfly) system_name=DragonFly ;;
1345 sunos) system_name=SunOS ;;
1346 qnx) system_name=QNX ;;
1347 morphos) system_name=MorphOS ;;
1348 amigaos) system_name=AmigaOS ;;
1349 mingw32msvc) system_name=MINGW32 ;;
1350 esac
1351 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1352 host_arch=$(echo $_target | cut -d '-' -f 1)
1353 if test $(echo $host_arch) != "x86_64" ; then
1354 host_arch=$(echo $host_arch | tr '_' '-')
1358 extra_cflags="-I. $extra_cflags"
1359 _timer=timer-linux.c
1360 _getch=getch2.c
1361 if freebsd ; then
1362 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1363 extra_cflags="$extra_cflags -I/usr/local/include"
1366 if netbsd || dragonfly ; then
1367 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1368 extra_cflags="$extra_cflags -I/usr/pkg/include"
1371 if darwin; then
1372 extra_cflags="-mdynamic-no-pic -falign-loops=16 -shared-libgcc $extra_cflags"
1373 _timer=timer-darwin.c
1376 if aix ; then
1377 extra_ldflags="$extra_ldflags -lC"
1380 if irix ; then
1381 _ranlib='ar -r'
1382 elif linux ; then
1383 _ranlib='true'
1386 if win32 ; then
1387 _exesuf=".exe"
1388 # -lwinmm is always needed for osdep/timer-win2.c
1389 extra_ldflags="$extra_ldflags -lwinmm"
1390 _pe_executable=yes
1391 _timer=timer-win2.c
1392 _priority=yes
1393 def_dos_paths="#define HAVE_DOS_PATHS 1"
1394 def_priority="#define CONFIG_PRIORITY 1"
1397 if mingw32 ; then
1398 _getch=getch2-win.c
1399 _need_shmem=no
1402 if amigaos ; then
1403 _select=no
1404 _sighandler=no
1405 _stream_cache=no
1406 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1407 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1410 if qnx ; then
1411 extra_ldflags="$extra_ldflags -lph"
1414 if os2 ; then
1415 _exesuf=".exe"
1416 _getch=getch2-os2.c
1417 _need_shmem=no
1418 _priority=yes
1419 def_dos_paths="#define HAVE_DOS_PATHS 1"
1420 def_priority="#define CONFIG_PRIORITY 1"
1423 for I in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1424 test "$I" && break
1425 done
1428 TMPLOG="configure.log"
1429 TMPC="$I/mplayer-conf-$RANDOM-$$.c"
1430 TMPCPP="$I/mplayer-conf-$RANDOM-$$.cpp"
1431 TMPEXE="$I/mplayer-conf-$RANDOM-$$$_exesuf"
1432 TMPH="$I/mplayer-conf-$RANDOM-$$.h"
1433 TMPS="$I/mplayer-conf-$RANDOM-$$.S"
1435 rm -f "$TMPLOG"
1436 echo configuration: $_configuration > "$TMPLOG"
1437 echo >> "$TMPLOG"
1440 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1441 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1445 # Checking CC version...
1446 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1447 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1448 echocheck "$_cc version"
1449 cc_vendor=intel
1450 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1451 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1452 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1453 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1454 # TODO verify older icc/ecc compatibility
1455 case $cc_version in
1457 cc_version="v. ?.??, bad"
1458 cc_fail=yes
1460 10.1|11.0|11.1)
1461 cc_version="$cc_version, ok"
1464 cc_version="$cc_version, bad"
1465 cc_fail=yes
1467 esac
1468 echores "$cc_version"
1469 else
1470 for _cc in "$_cc" cc gcc ; do
1471 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1472 if test "$cc_name_tmp" = "gcc"; then
1473 cc_name=$cc_name_tmp
1474 echocheck "$_cc version"
1475 cc_vendor=gnu
1476 cc_version=$($_cc -dumpversion 2>&1)
1477 case $cc_version in
1478 2.96*)
1479 cc_fail=yes
1482 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1483 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1484 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1486 esac
1487 echores "$cc_version"
1488 break
1490 done
1491 fi # icc
1492 test "$cc_fail" = yes && die "unsupported compiler version"
1494 if test -z "$_target" && x86 ; then
1495 cat > $TMPC << EOF
1496 int main(void) {
1497 int test[(int)sizeof(char *)-7];
1498 return 0;
1501 cc_check && host_arch=x86_64 || host_arch=i386
1504 echo "Detected operating system: $system_name"
1505 echo "Detected host architecture: $host_arch"
1507 echocheck "host cc"
1508 test "$_host_cc" || _host_cc=$_cc
1509 echores $_host_cc
1511 echocheck "cross compilation"
1512 if test $_cross_compile = auto ; then
1513 cat > $TMPC << EOF
1514 int main(void) { return 0; }
1516 _cross_compile=yes
1517 cc_check && "$TMPEXE" && _cross_compile=no
1519 echores $_cross_compile
1521 if test $_cross_compile = yes; then
1522 tmp_run() {
1523 return 0
1527 # ---
1529 # now that we know what compiler should be used for compilation, try to find
1530 # out which assembler is used by the $_cc compiler
1531 if test "$_as" = auto ; then
1532 _as=$($_cc -print-prog-name=as)
1533 test -z "$_as" && _as=as
1536 if test "$_nm" = auto ; then
1537 _nm=$($_cc -print-prog-name=nm)
1538 test -z "$_nm" && _nm=nm
1541 # XXX: this should be ok..
1542 _cpuinfo="echo"
1544 if test "$_runtime_cpudetection" = no ; then
1546 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1547 # FIXME: Remove the cygwin check once AMD CPUs are supported
1548 if test -r /proc/cpuinfo && ! cygwin; then
1549 # Linux with /proc mounted, extract CPU information from it
1550 _cpuinfo="cat /proc/cpuinfo"
1551 elif test -r /compat/linux/proc/cpuinfo && ! x86_32 ; then
1552 # FreeBSD with Linux emulation /proc mounted,
1553 # extract CPU information from it
1554 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1555 elif darwin && ! x86 ; then
1556 # use hostinfo on Darwin
1557 _cpuinfo="hostinfo"
1558 elif aix; then
1559 # use 'lsattr' on AIX
1560 _cpuinfo="lsattr -E -l proc0 -a type"
1561 elif x86; then
1562 # all other OSes try to extract CPU information from a small helper
1563 # program cpuinfo instead
1564 $_cc -o cpuinfo$_exesuf cpuinfo.c
1565 _cpuinfo="./cpuinfo$_exesuf"
1568 if x86 ; then
1569 # gather more CPU information
1570 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1571 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1572 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1573 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1574 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1576 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1578 pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1579 -e s/xmm/sse/ -e s/kni/sse/)
1581 for ext in $pparam ; do
1582 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1583 done
1585 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1586 test $_sse = kernel_check && _mmxext=kernel_check
1588 echocheck "CPU vendor"
1589 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1591 echocheck "CPU type"
1592 echores "$pname"
1595 fi # test "$_runtime_cpudetection" = no
1597 if x86 && test "$_runtime_cpudetection" = no ; then
1598 extcheck() {
1599 if test "$1" = kernel_check ; then
1600 echocheck "kernel support of $2"
1601 cat > $TMPC <<EOF
1602 #include <stdlib.h>
1603 #include <signal.h>
1604 void catch() { exit(1); }
1605 int main(void) {
1606 signal(SIGILL, catch);
1607 __asm__ volatile ("$3":::"memory"); return 0;
1611 if cc_check && tmp_run ; then
1612 eval _$2=yes
1613 echores "yes"
1614 _optimizing="$_optimizing $2"
1615 return 0
1616 else
1617 eval _$2=no
1618 echores "failed"
1619 echo "It seems that your kernel does not correctly support $2."
1620 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1621 return 1
1624 return 0
1627 extcheck $_mmx "mmx" "emms"
1628 extcheck $_mmxext "mmxext" "sfence"
1629 extcheck $_3dnow "3dnow" "femms"
1630 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1631 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1632 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1633 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1634 extcheck $_cmov "cmov" "cmovb %%eax,%%ebx"
1636 echocheck "mtrr support"
1637 if test "$_mtrr" = kernel_check ; then
1638 _mtrr="yes"
1639 _optimizing="$_optimizing mtrr"
1641 echores "$_mtrr"
1643 if test "$_gcc3_ext" != ""; then
1644 # if we had to disable sse/sse2 because the active kernel does not
1645 # support this instruction set extension, we also have to tell
1646 # gcc3 to not generate sse/sse2 instructions for normal C code
1647 cat > $TMPC << EOF
1648 int main(void) { return 0; }
1650 cc_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1656 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1657 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1658 _arch_all='X86 X86_32 X86_64 IA64 SPARC ARM AVR32 SH4 PPC PPC64 ALPHA MIPS SGI_MIPS PA_RISC S390 S390X VAX BFIN XTENSA GENERIC'
1659 case "$host_arch" in
1660 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1661 _arch='X86 X86_32'
1662 _target_arch="ARCH_X86 = yes"
1663 _target_subarch="ARCH_X86_32 = yes"
1664 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1665 iproc=486
1666 proc=i486
1669 if test "$_runtime_cpudetection" = no ; then
1670 case "$pvendor" in
1671 AuthenticAMD)
1672 case "$pfamily" in
1673 3) proc=i386 iproc=386 ;;
1674 4) proc=i486 iproc=486 ;;
1675 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1676 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1677 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1678 proc=k6-3
1679 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1680 proc=geode
1681 elif test "$pmodel" -ge 8; then
1682 proc=k6-2
1683 elif test "$pmodel" -ge 6; then
1684 proc=k6
1685 else
1686 proc=i586
1689 6) iproc=686
1690 # It's a bit difficult to determine the correct type of Family 6
1691 # AMD CPUs just from their signature. Instead, we check directly
1692 # whether it supports SSE.
1693 if test "$_sse" = yes; then
1694 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1695 proc=athlon-xp
1696 else
1697 # Again, gcc treats athlon and athlon-tbird similarly.
1698 proc=athlon
1701 15) iproc=686
1702 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1703 # caught and remedied in the optimization tests below.
1704 proc=k8
1707 *) proc=k8 iproc=686 ;;
1708 esac
1710 GenuineIntel)
1711 case "$pfamily" in
1712 3) proc=i386 iproc=386 ;;
1713 4) proc=i486 iproc=486 ;;
1714 5) iproc=586
1715 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1716 proc=pentium-mmx # 4 is desktop, 8 is mobile
1717 else
1718 proc=i586
1721 6) iproc=686
1722 if test "$pmodel" -ge 15; then
1723 proc=core2
1724 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1725 proc=pentium-m
1726 elif test "$pmodel" -ge 7; then
1727 proc=pentium3
1728 elif test "$pmodel" -ge 3; then
1729 proc=pentium2
1730 else
1731 proc=i686
1734 15) iproc=686
1735 # A nocona in 32-bit mode has no more capabilities than a prescott.
1736 if test "$pmodel" -ge 3; then
1737 proc=prescott
1738 else
1739 proc=pentium4
1741 test $_fast_cmov = "auto" && _fast_cmov=no
1743 *) proc=prescott iproc=686 ;;
1744 esac
1746 CentaurHauls)
1747 case "$pfamily" in
1748 5) iproc=586
1749 if test "$pmodel" -ge 8; then
1750 proc=winchip2
1751 elif test "$pmodel" -ge 4; then
1752 proc=winchip-c6
1753 else
1754 proc=i586
1757 6) iproc=686
1758 if test "$pmodel" -ge 9; then
1759 proc=c3-2
1760 else
1761 proc=c3
1762 iproc=586
1765 *) proc=i686 iproc=i686 ;;
1766 esac
1768 unknown)
1769 case "$pfamily" in
1770 3) proc=i386 iproc=386 ;;
1771 4) proc=i486 iproc=486 ;;
1772 *) proc=i586 iproc=586 ;;
1773 esac
1776 proc=i586 iproc=586 ;;
1777 esac
1778 fi # test "$_runtime_cpudetection" = no
1781 # check that gcc supports our CPU, if not, fall back to earlier ones
1782 # LGB: check -mcpu and -march swithing step by step with enabling
1783 # to fall back till 386.
1785 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1787 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1788 cpuopt=-mtune
1789 else
1790 cpuopt=-mcpu
1793 echocheck "GCC & CPU optimization abilities"
1794 cat > $TMPC << EOF
1795 int main(void) { return 0; }
1797 if test "$_runtime_cpudetection" = no ; then
1798 cc_check -march=native && proc=native
1799 if test "$proc" = "k8"; then
1800 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1802 if test "$proc" = "athlon-xp"; then
1803 cc_check -march=$proc $cpuopt=$proc || proc=athlon
1805 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1806 cc_check -march=$proc $cpuopt=$proc || proc=k6
1808 if test "$proc" = "k6" || test "$proc" = "c3"; then
1809 if ! cc_check -march=$proc $cpuopt=$proc; then
1810 if cc_check -march=i586 $cpuopt=i686; then
1811 proc=i586-i686
1812 else
1813 proc=i586
1817 if test "$proc" = "prescott" ; then
1818 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
1820 if test "$proc" = "core2" ; then
1821 cc_check -march=$proc $cpuopt=$proc || proc=pentium-m
1823 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
1824 cc_check -march=$proc $cpuopt=$proc || proc=i686
1826 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1827 cc_check -march=$proc $cpuopt=$proc || proc=i586
1829 if test "$proc" = "i586"; then
1830 cc_check -march=$proc $cpuopt=$proc || proc=i486
1832 if test "$proc" = "i486" ; then
1833 cc_check -march=$proc $cpuopt=$proc || proc=i386
1835 if test "$proc" = "i386" ; then
1836 cc_check -march=$proc $cpuopt=$proc || proc=error
1838 if test "$proc" = "error" ; then
1839 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1840 _mcpu=""
1841 _march=""
1842 _optimizing=""
1843 elif test "$proc" = "i586-i686"; then
1844 _march="-march=i586"
1845 _mcpu="$cpuopt=i686"
1846 _optimizing="$proc"
1847 else
1848 _march="-march=$proc"
1849 _mcpu="$cpuopt=$proc"
1850 _optimizing="$proc"
1852 else # if test "$_runtime_cpudetection" = no
1853 _mcpu="$cpuopt=generic"
1854 # at least i486 required, for bswap instruction
1855 _march="-march=i486"
1856 cc_check $_mcpu || _mcpu="$cpuopt=i686"
1857 cc_check $_mcpu || _mcpu=""
1858 cc_check $_march $_mcpu || _march=""
1861 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1862 ## autodetected mcpu/march parameters
1863 if test "$_target" ; then
1864 # TODO: it may be a good idea to check GCC and fall back in all cases
1865 if test "$host_arch" = "i586-i686"; then
1866 _march="-march=i586"
1867 _mcpu="$cpuopt=i686"
1868 else
1869 _march="-march=$host_arch"
1870 _mcpu="$cpuopt=$host_arch"
1873 proc="$host_arch"
1875 case "$proc" in
1876 i386) iproc=386 ;;
1877 i486) iproc=486 ;;
1878 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1879 i686|athlon*|pentium*) iproc=686 ;;
1880 *) iproc=586 ;;
1881 esac
1884 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1885 _fast_cmov="yes"
1886 else
1887 _fast_cmov="no"
1890 echores "$proc"
1893 ia64)
1894 _arch='IA64'
1895 _target_arch='ARCH_IA64 = yes'
1896 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1897 iproc='ia64'
1900 x86_64|amd64)
1901 _arch='X86 X86_64'
1902 _target_subarch='ARCH_X86_64 = yes'
1903 _target_arch="ARCH_X86 = yes"
1904 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1905 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1906 iproc='x86_64'
1908 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1909 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1910 cpuopt=-mtune
1911 else
1912 cpuopt=-mcpu
1914 test $_fast_cmov = "auto" && _fast_cmov=yes
1915 if test "$_runtime_cpudetection" = no ; then
1916 case "$pvendor" in
1917 AuthenticAMD)
1918 proc=k8;;
1919 GenuineIntel)
1920 case "$pfamily" in
1921 6) proc=core2;;
1923 # 64-bit prescotts exist, but as far as GCC is concerned they
1924 # have the same capabilities as a nocona.
1925 proc=nocona
1927 esac
1930 proc=error;;
1931 esac
1932 fi # test "$_runtime_cpudetection" = no
1934 echocheck "GCC & CPU optimization abilities"
1935 cat > $TMPC << EOF
1936 int main(void) { return 0; }
1938 # This is a stripped-down version of the i386 fallback.
1939 if test "$_runtime_cpudetection" = no ; then
1940 cc_check -march=native && proc=native
1941 # --- AMD processors ---
1942 if test "$proc" = "k8"; then
1943 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1945 # This will fail if gcc version < 3.3, which is ok because earlier
1946 # versions don't really support 64-bit on amd64.
1947 # Is this a valid assumption? -Corey
1948 if test "$proc" = "athlon-xp"; then
1949 cc_check -march=$proc $cpuopt=$proc || proc=error
1951 # --- Intel processors ---
1952 if test "$proc" = "core2"; then
1953 cc_check -march=$proc $cpuopt=$proc || proc=nocona
1955 if test "$proc" = "nocona"; then
1956 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
1958 if test "$proc" = "pentium4"; then
1959 cc_check -march=$proc $cpuopt=$proc || proc=error
1962 _march="-march=$proc"
1963 _mcpu="$cpuopt=$proc"
1964 if test "$proc" = "error" ; then
1965 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1966 _mcpu=""
1967 _march=""
1969 else # if test "$_runtime_cpudetection" = no
1970 # x86-64 is an undocumented option, an intersection of k8 and nocona.
1971 _march="-march=x86-64"
1972 _mcpu="$cpuopt=generic"
1973 cc_check $_mcpu || _mcpu="x86-64"
1974 cc_check $_mcpu || _mcpu=""
1975 cc_check $_march $_mcpu || _march=""
1978 _optimizing=""
1980 echores "$proc"
1983 sparc|sparc64)
1984 _arch='SPARC'
1985 _target_arch='ARCH_SPARC = yes'
1986 iproc='sparc'
1987 if test "$host_arch" = "sparc64" ; then
1988 _vis='yes'
1989 proc='ultrasparc'
1990 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1991 elif sunos ; then
1992 echocheck "CPU type"
1993 karch=$(uname -m)
1994 case "$(echo $karch)" in
1995 sun4) proc=v7 ;;
1996 sun4c) proc=v7 ;;
1997 sun4d) proc=v8 ;;
1998 sun4m) proc=v8 ;;
1999 sun4u) proc=ultrasparc _vis='yes' ;;
2000 sun4v) proc=v9 ;;
2001 *) proc=v8 ;;
2002 esac
2003 echores "$proc"
2004 else
2005 proc=v8
2007 _mcpu="-mcpu=$proc"
2008 _optimizing="$proc"
2011 arm|armv4l|armv5tel)
2012 _arch='ARM'
2013 _target_arch='ARCH_ARM = yes'
2014 iproc='arm'
2017 avr32)
2018 _arch='AVR32'
2019 _target_arch='ARCH_AVR32 = yes'
2020 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2021 iproc='avr32'
2024 sh|sh4)
2025 _arch='SH4'
2026 _target_arch='ARCH_SH4 = yes'
2027 iproc='sh4'
2030 ppc|ppc64|powerpc|powerpc64)
2031 _arch='PPC'
2032 def_dcbzl='#define HAVE_DCBZL 0'
2033 _target_arch='ARCH_PPC = yes'
2034 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2035 iproc='ppc'
2037 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2038 _arch='PPC PPC64'
2039 _target_subarch='ARCH_PPC64 = yes'
2040 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2042 echocheck "CPU type"
2043 case $system_name in
2044 Linux)
2045 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2046 if test -n "$($_cpuinfo | grep altivec)"; then
2047 test $_altivec = auto && _altivec=yes
2050 Darwin)
2051 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2052 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2053 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2054 test $_altivec = auto && _altivec=yes
2057 NetBSD)
2058 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2059 case $cc_version in
2060 2*|3.0*|3.1*|3.2*|3.3*)
2063 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2064 test $_altivec = auto && _altivec=yes
2067 esac
2069 AIX)
2070 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2072 esac
2073 if test "$_altivec" = yes; then
2074 echores "$proc altivec"
2075 else
2076 _altivec=no
2077 echores "$proc"
2080 echocheck "GCC & CPU optimization abilities"
2082 if test -n "$proc"; then
2083 case "$proc" in
2084 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2085 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2086 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2087 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2088 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2089 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2090 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2091 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2092 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2093 *) ;;
2094 esac
2095 # gcc 3.1(.1) and up supports 7400 and 7450
2096 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2097 case "$proc" in
2098 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2099 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2100 *) ;;
2101 esac
2103 # gcc 3.2 and up supports 970
2104 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2105 case "$proc" in
2106 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2107 def_dcbzl='#define HAVE_DCBZL 1' ;;
2108 *) ;;
2109 esac
2111 # gcc 3.3 and up supports POWER4
2112 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2113 case "$proc" in
2114 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2115 *) ;;
2116 esac
2118 # gcc 3.4 and up supports 440*
2119 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2120 case "$proc" in
2121 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2122 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2123 *) ;;
2124 esac
2126 # gcc 4.0 and up supports POWER5
2127 if test "$_cc_major" -ge "4"; then
2128 case "$proc" in
2129 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2130 *) ;;
2131 esac
2135 if test -n "$_mcpu"; then
2136 _optimizing=$(echo $_mcpu | cut -c 8-)
2137 echores "$_optimizing"
2138 else
2139 echores "none"
2144 alpha*)
2145 _arch='ALPHA'
2146 _target_arch='ARCH_ALPHA = yes'
2147 iproc='alpha'
2148 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2150 echocheck "CPU type"
2151 cat > $TMPC << EOF
2152 int main(void) {
2153 unsigned long ver, mask;
2154 __asm__ ("implver %0" : "=r" (ver));
2155 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2156 printf("%ld-%x\n", ver, ~mask);
2157 return 0;
2160 $_cc -o "$TMPEXE" "$TMPC"
2161 case $("$TMPEXE") in
2163 0-0) proc="ev4"; _mvi="0";;
2164 1-0) proc="ev5"; _mvi="0";;
2165 1-1) proc="ev56"; _mvi="0";;
2166 1-101) proc="pca56"; _mvi="1";;
2167 2-303) proc="ev6"; _mvi="1";;
2168 2-307) proc="ev67"; _mvi="1";;
2169 2-1307) proc="ev68"; _mvi="1";;
2170 esac
2171 echores "$proc"
2173 echocheck "GCC & CPU optimization abilities"
2174 if test "$proc" = "ev68" ; then
2175 cc_check -mcpu=$proc || proc=ev67
2177 if test "$proc" = "ev67" ; then
2178 cc_check -mcpu=$proc || proc=ev6
2180 _mcpu="-mcpu=$proc"
2181 echores "$proc"
2183 _optimizing="$proc"
2186 mips)
2187 _arch='SGI_MIPS'
2188 _target_arch='ARCH_SGI_MIPS = yes'
2189 iproc='sgi-mips'
2191 if irix ; then
2192 echocheck "CPU type"
2193 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2194 case "$(echo $proc)" in
2195 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2196 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2197 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2198 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2199 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2200 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2201 esac
2202 # gcc < 3.x does not support -mtune.
2203 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2204 _mcpu=''
2206 echores "$proc"
2211 hppa)
2212 _arch='PA_RISC'
2213 _target_arch='ARCH_PA_RISC = yes'
2214 iproc='PA-RISC'
2217 s390)
2218 _arch='S390'
2219 _target_arch='ARCH_S390 = yes'
2220 iproc='390'
2223 s390x)
2224 _arch='S390X'
2225 _target_arch='ARCH_S390X = yes'
2226 iproc='390x'
2229 vax)
2230 _arch='VAX'
2231 _target_arch='ARCH_VAX = yes'
2232 iproc='vax'
2235 xtensa)
2236 _arch='XTENSA'
2237 _target_arch='ARCH_XTENSA = yes'
2238 iproc='xtensa'
2241 generic)
2242 _arch='GENERIC'
2243 _target_arch='ARCH_GENERIC = yes'
2247 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2248 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2249 die "unsupported architecture $host_arch"
2251 esac # case "$host_arch" in
2253 if test "$_runtime_cpudetection" = yes ; then
2254 if x86 ; then
2255 test "$_cmov" != no && _cmov=yes
2256 x86_32 && _cmov=no
2257 test "$_mmx" != no && _mmx=yes
2258 test "$_3dnow" != no && _3dnow=yes
2259 test "$_3dnowext" != no && _3dnowext=yes
2260 test "$_mmxext" != no && _mmxext=yes
2261 test "$_sse" != no && _sse=yes
2262 test "$_sse2" != no && _sse2=yes
2263 test "$_ssse3" != no && _ssse3=yes
2264 test "$_mtrr" != no && _mtrr=yes
2266 if ppc; then
2267 _altivec=yes
2272 # endian testing
2273 echocheck "byte order"
2274 if test "$_big_endian" = auto ; then
2275 cat > $TMPC <<EOF
2276 short ascii_name[] = { (('M'<<8)|'P'),(('l'<<8)|'a'),(('y'<<8)|'e'),(('r'<<8)|'B'),
2277 (('i'<<8)|'g'),(('E'<<8)|'n'),(('d'<<8)|'i'),(('a'<<8)|'n'),0};
2278 int main(void) { return (int)ascii_name; }
2280 if cc_check ; then
2281 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2282 _big_endian=yes
2283 else
2284 _big_endian=no
2286 else
2287 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2290 if test "$_big_endian" = yes ; then
2291 _byte_order='big-endian'
2292 def_words_endian='#define WORDS_BIGENDIAN 1'
2293 def_bigendian='#define HAVE_BIGENDIAN 1'
2294 else
2295 _byte_order='little-endian'
2296 def_words_endian='#undef WORDS_BIGENDIAN'
2297 def_bigendian='#define HAVE_BIGENDIAN 0'
2299 echores "$_byte_order"
2302 echocheck "extern symbol prefix"
2303 cat > $TMPC << EOF
2304 int ff_extern;
2306 cc_check -c || die "Symbol mangling check failed."
2307 sym=$($_nm -P -g $TMPEXE)
2308 extern_prefix=${sym%%ff_extern*}
2309 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2310 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2311 echores $extern_prefix
2314 echocheck "assembler support of -pipe option"
2315 cat > $TMPC << EOF
2316 int main(void) { return 0; }
2318 cc_check -pipe && _pipe="-pipe" && echores "yes" || echores "no"
2321 echocheck "compiler support of named assembler arguments"
2322 _named_asm_args=yes
2323 def_named_asm_args="#define NAMED_ASM_ARGS 1"
2324 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2325 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2326 _named_asm_args=no
2327 def_named_asm_args="#undef NAMED_ASM_ARGS"
2329 echores $_named_asm_args
2332 if darwin && test "$cc_vendor" = "gnu" ; then
2333 echocheck "GCC support of -mstackrealign"
2334 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2335 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2336 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2337 # wrong code with this flag, but this can be worked around by adding
2338 # -fno-unit-at-a-time as described in the blog post at
2339 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2340 cat > $TMPC << EOF
2341 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2342 int main(void) { return foo3(1,2,3) == 3 ? 0 : 1; }
2344 cc_check -O2 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2345 test -z "$cflags_stackrealign" && cc_check -O2 -mstackrealign -fno-unit-at-a-time \
2346 && tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2347 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2348 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2351 # Checking for CFLAGS
2352 _install_strip="-s"
2353 if test "$_profile" != "" || test "$_debug" != "" ; then
2354 CFLAGS="-W -Wall -O2 $_march $_mcpu $_pipe $_debug $_profile"
2355 _install_strip=
2356 elif test -z "$CFLAGS" ; then
2357 if test "$cc_vendor" = "intel" ; then
2358 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer -wd167 -wd556 -wd144"
2359 elif test "$cc_vendor" != "gnu" ; then
2360 CFLAGS="-O2 $_march $_mcpu $_pipe"
2361 else
2362 CFLAGS="-Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2363 extra_ldflags="$extra_ldflags -ffast-math"
2365 else
2366 _warn_CFLAGS=yes
2369 cat > $TMPC << EOF
2370 int main(void) { return 0; }
2372 if test "$cc_vendor" = "gnu" ; then
2373 cc_check -std=gnu99 && CFLAGS="-std=gnu99 $CFLAGS"
2374 cc_check -Wno-pointer-sign && CFLAGS="-Wno-pointer-sign $CFLAGS"
2375 cc_check -Wdisabled-optimization && CFLAGS="-Wdisabled-optimization $CFLAGS"
2376 cc_check -Wundef && CFLAGS="-Wundef $CFLAGS"
2377 else
2378 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2381 cc_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2384 if test -n "$LDFLAGS" ; then
2385 extra_ldflags="$extra_ldflags $LDFLAGS"
2386 _warn_CFLAGS=yes
2387 elif test "$cc_vendor" = "intel" ; then
2388 extra_ldflags="$extra_ldflags -i-static"
2390 if test -n "$CPPFLAGS" ; then
2391 extra_cflags="$extra_cflags $CPPFLAGS"
2392 _warn_CFLAGS=yes
2397 if x86_32 ; then
2398 # Checking assembler (_as) compatibility...
2399 # Added workaround for older as that reads from stdin by default - atmos
2400 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2401 echocheck "assembler ($_as $as_version)"
2403 _pref_as_version='2.9.1'
2404 echo 'nop' > $TMPS
2405 if test "$_mmx" = yes ; then
2406 echo 'emms' >> $TMPS
2408 if test "$_3dnow" = yes ; then
2409 _pref_as_version='2.10.1'
2410 echo 'femms' >> $TMPS
2412 if test "$_3dnowext" = yes ; then
2413 _pref_as_version='2.10.1'
2414 echo 'pswapd %mm0, %mm0' >> $TMPS
2416 if test "$_mmxext" = yes ; then
2417 _pref_as_version='2.10.1'
2418 echo 'movntq %mm0, (%eax)' >> $TMPS
2420 if test "$_sse" = yes ; then
2421 _pref_as_version='2.10.1'
2422 echo 'xorps %xmm0, %xmm0' >> $TMPS
2424 #if test "$_sse2" = yes ; then
2425 # _pref_as_version='2.11'
2426 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2428 if test "$_cmov" = yes ; then
2429 _pref_as_version='2.10.1'
2430 echo 'cmovb %eax, %ebx' >> $TMPS
2432 if test "$_ssse3" = yes ; then
2433 _pref_as_version='2.16.92'
2434 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2436 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2438 if test "$as_verc_fail" != yes ; then
2439 echores "ok"
2440 else
2441 _res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2442 echores "failed"
2443 die "obsolete binutils version"
2446 fi #if x86_32
2448 echocheck ".align is a power of two"
2449 if test "$_asmalign_pot" = auto ; then
2450 _asmalign_pot=no
2451 cat > $TMPC << EOF
2452 int main(void) { __asm__ (".align 3"); return 0; }
2454 cc_check && _asmalign_pot=yes
2456 if test "$_asmalign_pot" = "yes" ; then
2457 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2458 else
2459 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2461 echores $_asmalign_pot
2463 if x86 ; then
2464 echocheck "10 assembler operands"
2465 ten_operands=no
2466 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2467 cat > $TMPC << EOF
2468 int main(void) {
2469 int x=0;
2470 __asm__ volatile(
2472 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2474 return 0;
2477 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2478 echores $ten_operands
2480 echocheck "ebx availability"
2481 ebx_available=no
2482 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2483 cat > $TMPC << EOF
2484 int main(void) {
2485 int x;
2486 __asm__ volatile(
2487 "xor %0, %0"
2488 :"=b"(x)
2489 // just adding ebx to clobber list seems unreliable with some
2490 // compilers, e.g. Haiku's gcc 2.95
2492 // and the above check does not work for OSX 64 bit...
2493 __asm__ volatile("":::"%ebx");
2494 return 0;
2497 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2498 echores $ebx_available
2500 echocheck "PIC"
2501 pic=no
2502 cat > $TMPC << EOF
2503 int main(void) {
2504 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2505 #error PIC not enabled
2506 #endif
2507 return 0;
2510 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2511 echores $pic
2513 echocheck "yasm"
2514 if test -z "$YASMFLAGS" ; then
2515 if darwin ; then
2516 x86_64 && objformat="macho64" || objformat="macho"
2517 elif win32 ; then
2518 objformat="win32"
2519 else
2520 objformat="elf"
2522 # currently tested for Linux x86, x86_64
2523 YASMFLAGS="-f $objformat"
2524 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2525 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2526 case "$objformat" in
2527 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2528 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2529 esac
2530 else
2531 _warn_CFLAGS=yes
2534 echo "pabsw xmm0, xmm0" > $TMPS
2535 yasm_check || _yasm=""
2536 if test $_yasm ; then
2537 test "$_mmx" = "yes" && fft_mmx="yes"
2538 def_yasm='#define HAVE_YASM 1'
2539 _have_yasm="yes"
2540 echores "$_yasm"
2541 else
2542 def_yasm='#define HAVE_YASM 0'
2543 fft_mmx="no"
2544 _have_yasm="no"
2545 echores "no"
2548 echocheck "bswap"
2549 def_bswap='#define HAVE_BSWAP 0'
2550 echo 'bswap %eax' > $TMPS
2551 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2552 echores "$bswap"
2553 fi #if x86
2556 #FIXME: This should happen before the check for CFLAGS..
2557 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2558 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2560 # check if AltiVec is supported by the compiler, and how to enable it
2561 echocheck "GCC AltiVec flags"
2562 cat > $TMPC << EOF
2563 int main(void) { return 0; }
2565 if $(cc_check -maltivec -mabi=altivec) ; then
2566 _altivec_gcc_flags="-maltivec -mabi=altivec"
2567 # check if <altivec.h> should be included
2568 cat > $TMPC << EOF
2569 #include <altivec.h>
2570 int main(void) { return 0; }
2572 if $(cc_check $_altivec_gcc_flags) ; then
2573 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2574 inc_altivec_h='#include <altivec.h>'
2575 else
2576 cat > $TMPC << EOF
2577 int main(void) { return 0; }
2579 if $(cc_check -faltivec) ; then
2580 _altivec_gcc_flags="-faltivec"
2581 else
2582 _altivec=no
2583 _altivec_gcc_flags="none, AltiVec disabled"
2587 echores "$_altivec_gcc_flags"
2589 # check if the compiler supports braces for vector declarations
2590 cat > $TMPC << EOF
2591 $inc_altivec_h
2592 int main(void) { (vector int) {1}; return 0; }
2594 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2596 # Disable runtime cpudetection if we cannot generate AltiVec code or
2597 # AltiVec is disabled by the user.
2598 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2599 && _runtime_cpudetection=no
2601 # Show that we are optimizing for AltiVec (if enabled and supported).
2602 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2603 && _optimizing="$_optimizing altivec"
2605 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2606 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2609 if ppc ; then
2610 def_xform_asm='#define HAVE_XFORM_ASM 0'
2611 xform_asm=no
2612 echocheck "XFORM ASM support"
2613 cat > $TMPC << EOF
2614 int main(void) { __asm__ volatile ("lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)); return 0; }
2616 cc_check && xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2617 echores "$xform_asm"
2620 if arm ; then
2621 echocheck "ARM pld instruction"
2622 cat > $TMPC << EOF
2623 int main(void) { __asm__ volatile ("pld [r0]"); return 0; }
2625 pld=no
2626 cc_check && pld=yes
2627 echores "$pld"
2629 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2630 if test $_armv5te = "auto" ; then
2631 cat > $TMPC << EOF
2632 int main(void) { __asm__ volatile ("qadd r0, r0, r0"); return 0; }
2634 _armv5te=no
2635 cc_check && _armv5te=yes
2637 echores "$_armv5te"
2639 echocheck "ARMv6 (SIMD instructions)"
2640 if test $_armv6 = "auto" ; then
2641 cat > $TMPC << EOF
2642 int main(void) { __asm__ volatile ("sadd16 r0, r0, r0"); return 0; }
2644 _armv6=no
2645 cc_check && _armv6=yes
2647 echores "$_armv6"
2649 echocheck "ARMv6t2 (SIMD instructions)"
2650 if test $_armv6t2 = "auto" ; then
2651 cat > $TMPC << EOF
2652 int main(void) { __asm__ volatile ("movt r0, #0"); return 0; }
2654 _armv6t2=no
2655 cc_check && _armv6t2=yes
2657 echores "$_armv6"
2659 echocheck "ARM VFP"
2660 if test $_armvfp = "auto" ; then
2661 cat > $TMPC << EOF
2662 int main(void) { __asm__ volatile ("fadds s0, s0, s0"); return 0; }
2664 _armvfp=no
2665 cc_check && _armvfp=yes
2667 echores "$_armvfp"
2669 echocheck "ARM NEON"
2670 if test $neon = "auto" ; then
2671 cat > $TMPC << EOF
2672 int main(void) { __asm__ volatile ("vadd.i16 q0, q0, q0"); return 0; }
2674 neon=no
2675 cc_check && neon=yes
2677 echores "$neon"
2679 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2680 if test $_iwmmxt = "auto" ; then
2681 cat > $TMPC << EOF
2682 int main(void) { __asm__ volatile ("wunpckelub wr6, wr4"); return 0; }
2684 _iwmmxt=no
2685 cc_check && _iwmmxt=yes
2687 echores "$_iwmmxt"
2690 _cpuexts_all='ALTIVEC MMX MMX2 AMD3DNOW AMD3DNOWEXT SSE SSE2 SSSE3 FAST_CMOV CMOV PLD ARMV5TE ARMV6 ARMV6T2 ARMVFP NEON IWMMXT MMI VIS MVI'
2691 test "$_altivec" = yes && _cpuexts="ALTIVEC $_cpuexts"
2692 test "$_mmx" = yes && _cpuexts="MMX $_cpuexts"
2693 test "$_mmxext" = yes && _cpuexts="MMX2 $_cpuexts"
2694 test "$_3dnow" = yes && _cpuexts="AMD3DNOW $_cpuexts"
2695 test "$_3dnowext" = yes && _cpuexts="AMD3DNOWEXT $_cpuexts"
2696 test "$_sse" = yes && _cpuexts="SSE $_cpuexts"
2697 test "$_sse2" = yes && _cpuexts="SSE2 $_cpuexts"
2698 test "$_ssse3" = yes && _cpuexts="SSSE3 $_cpuexts"
2699 test "$_cmov" = yes && _cpuexts="CMOV $_cpuexts"
2700 test "$_fast_cmov" = yes && _cpuexts="FAST_CMOV $_cpuexts"
2701 test "$pld" = yes && _cpuexts="PLD $_cpuexts"
2702 test "$_armv5te" = yes && _cpuexts="ARMV5TE $_cpuexts"
2703 test "$_armv6" = yes && _cpuexts="ARMV6 $_cpuexts"
2704 test "$_armv6t2" = yes && _cpuexts="ARMV6T2 $_cpuexts"
2705 test "$_armvfp" = yes && _cpuexts="ARMVFP $_cpuexts"
2706 test "$neon" = yes && _cpuexts="NEON $_cpuexts"
2707 test "$_iwmmxt" = yes && _cpuexts="IWMMXT $_cpuexts"
2708 test "$_vis" = yes && _cpuexts="VIS $_cpuexts"
2709 test "$_mvi" = yes && _cpuexts="MVI $_cpuexts"
2711 # Checking kernel version...
2712 if x86_32 && linux ; then
2713 _k_verc_problem=no
2714 kernel_version=$(uname -r 2>&1)
2715 echocheck "$system_name kernel version"
2716 case "$kernel_version" in
2717 '') kernel_version="?.??"; _k_verc_fail=yes;;
2718 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2719 _k_verc_problem=yes;;
2720 esac
2721 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2722 _k_verc_fail=yes
2724 if test "$_k_verc_fail" ; then
2725 echores "$kernel_version, fail"
2726 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2727 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2728 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2729 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2730 echo "2.2.x you must upgrade it to get SSE support!"
2731 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2732 else
2733 echores "$kernel_version, ok"
2737 ######################
2738 # MAIN TESTS GO HERE #
2739 ######################
2742 echocheck "-lposix"
2743 cat > $TMPC <<EOF
2744 int main(void) { return 0; }
2746 if cc_check -lposix ; then
2747 extra_ldflags="$extra_ldflags -lposix"
2748 echores "yes"
2749 else
2750 echores "no"
2753 echocheck "-lm"
2754 cat > $TMPC <<EOF
2755 int main(void) { return 0; }
2757 if cc_check -lm ; then
2758 _ld_lm="-lm"
2759 echores "yes"
2760 else
2761 _ld_lm=""
2762 echores "no"
2766 echocheck "langinfo"
2767 if test "$_langinfo" = auto ; then
2768 cat > $TMPC <<EOF
2769 #include <langinfo.h>
2770 int main(void) { nl_langinfo(CODESET); return 0; }
2772 _langinfo=no
2773 cc_check && _langinfo=yes
2775 if test "$_langinfo" = yes ; then
2776 def_langinfo='#define HAVE_LANGINFO 1'
2777 else
2778 def_langinfo='#undef HAVE_LANGINFO'
2780 echores "$_langinfo"
2783 echocheck "language"
2784 # Set preferred languages, "all" uses English as main language.
2785 test -z "$language" && language=$LINGUAS
2786 test -z "$language_doc" && language_doc=$language
2787 test -z "$language_man" && language_man=$language
2788 test -z "$language_msg" && language_msg=$language
2789 language_doc=$(echo $language_doc | tr , " ")
2790 language_man=$(echo $language_man | tr , " ")
2791 language_msg=$(echo $language_msg | tr , " ")
2793 test "$language_doc" = "all" && language_doc=$doc_lang_all
2794 test "$language_man" = "all" && language_man=$man_lang_all
2795 test "$language_msg" = "all" && language_msg=en
2797 # Prune non-existing translations from language lists.
2798 # Set message translation to the first available language.
2799 # Fall back on English.
2800 for lang in $language_doc ; do
2801 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2802 done
2803 language_doc=$tmp_language_doc
2804 test -z "$language_doc" && language_doc=en
2806 for lang in $language_man ; do
2807 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2808 done
2809 language_man=$tmp_language_man
2810 test -z "$language_man" && language_man=en
2812 for lang in $language_msg ; do
2813 test -f "help/help_mp-${lang}.h" && tmp_language_msg=$lang && break
2814 done
2815 language_msg=$tmp_language_msg
2816 test -z "$language_msg" && language_msg=en
2817 _mp_help="help/help_mp-${language_msg}.h"
2818 echores "messages: $language_msg - man pages: $language_man - documentation: $language_doc"
2821 echocheck "enable sighandler"
2822 if test "$_sighandler" = yes ; then
2823 def_sighandler='#define CONFIG_SIGHANDLER 1'
2824 else
2825 def_sighandler='#undef CONFIG_SIGHANDLER'
2827 echores "$_sighandler"
2829 echocheck "runtime cpudetection"
2830 if test "$_runtime_cpudetection" = yes ; then
2831 _optimizing="Runtime CPU-Detection enabled"
2832 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2833 else
2834 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2836 echores "$_runtime_cpudetection"
2839 echocheck "restrict keyword"
2840 for restrict_keyword in restrict __restrict __restrict__ ; do
2841 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2842 if cc_check; then
2843 def_restrict_keyword=$restrict_keyword
2844 break;
2846 done
2847 if [ -n "$def_restrict_keyword" ]; then
2848 echores "$def_restrict_keyword"
2849 else
2850 echores "none"
2852 # Avoid infinite recursion loop ("#define restrict restrict")
2853 if [ "$def_restrict_keyword" != "restrict" ]; then
2854 def_restrict_keyword="#define restrict $def_restrict_keyword"
2855 else
2856 def_restrict_keyword=""
2860 echocheck "__builtin_expect"
2861 # GCC branch prediction hint
2862 cat > $TMPC << EOF
2863 int foo(int a) {
2864 a = __builtin_expect(a, 10);
2865 return a == 10 ? 0 : 1;
2867 int main(void) { return foo(10) && foo(0); }
2869 _builtin_expect=no
2870 cc_check && _builtin_expect=yes
2871 if test "$_builtin_expect" = yes ; then
2872 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2873 else
2874 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2876 echores "$_builtin_expect"
2879 echocheck "kstat"
2880 cat > $TMPC << EOF
2881 #include <kstat.h>
2882 int main(void) { (void) kstat_open(); (void) kstat_close(0); return 0; }
2884 _kstat=no
2885 cc_check -lkstat && _kstat=yes
2886 if test "$_kstat" = yes ; then
2887 def_kstat="#define HAVE_LIBKSTAT 1"
2888 extra_ldflags="$extra_ldflags -lkstat"
2889 else
2890 def_kstat="#undef HAVE_LIBKSTAT"
2892 echores "$_kstat"
2895 echocheck "posix4"
2896 # required for nanosleep on some systems
2897 cat > $TMPC << EOF
2898 #include <time.h>
2899 int main(void) { (void) nanosleep(0, 0); return 0; }
2901 _posix4=no
2902 cc_check -lposix4 && _posix4=yes
2903 if test "$_posix4" = yes ; then
2904 extra_ldflags="$extra_ldflags -lposix4"
2906 echores "$_posix4"
2908 for func in llrint log2 lrint lrintf round roundf truncf; do
2909 echocheck $func
2910 cat > $TMPC << EOF
2911 #include <math.h>
2912 int main(void) { long (*foo)(float); foo = $func; (void)(*foo)(0.0); return 0; }
2914 eval _$func=no
2915 cc_check -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2916 if eval test "x\$_$func" = "xyes"; then
2917 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2918 echores yes
2919 else
2920 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
2921 echores no
2923 done
2926 echocheck "mkstemp"
2927 cat > $TMPC << EOF
2928 #include <stdlib.h>
2929 int main(void) { char a; mkstemp(&a); return 0; }
2931 _mkstemp=no
2932 cc_check && _mkstemp=yes
2933 if test "$_mkstemp" = yes ; then
2934 def_mkstemp='#define HAVE_MKSTEMP 1'
2935 else
2936 def_mkstemp='#undef HAVE_MKSTEMP'
2938 echores "$_mkstemp"
2941 echocheck "nanosleep"
2942 # also check for nanosleep
2943 cat > $TMPC << EOF
2944 #include <time.h>
2945 int main(void) { (void) nanosleep(0, 0); return 0; }
2947 _nanosleep=no
2948 cc_check && _nanosleep=yes
2949 if test "$_nanosleep" = yes ; then
2950 def_nanosleep='#define HAVE_NANOSLEEP 1'
2951 else
2952 def_nanosleep='#undef HAVE_NANOSLEEP'
2954 echores "$_nanosleep"
2957 echocheck "socklib"
2958 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
2959 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
2960 cat > $TMPC << EOF
2961 #include <netdb.h>
2962 #include <sys/socket.h>
2963 int main(void) { (void) gethostbyname(0); (void) socket(AF_INET, SOCK_STREAM, 0); return 0; }
2965 _socklib=no
2966 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
2967 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
2968 done
2969 if test $_winsock2_h = auto && ! cygwin ; then
2970 _winsock2_h=no
2971 cat > $TMPC << EOF
2972 #include <winsock2.h>
2973 int main(void) { (void) gethostbyname(0); return 0; }
2975 cc_check -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
2977 test "$_ld_sock" && _res_comment="using $_ld_sock"
2978 echores "$_socklib"
2981 if test $_winsock2_h = yes ; then
2982 _ld_sock="-lws2_32"
2983 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
2984 else
2985 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
2989 echocheck "arpa/inet.h"
2990 arpa_inet_h=no
2991 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
2992 cat > $TMPC << EOF
2993 #include <arpa/inet.h>
2994 int main(void) { return 0; }
2996 cc_check && arpa_inet_h=yes && def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
2997 echores "$arpa_inet_h"
3000 echocheck "inet_pton()"
3001 def_inet_pton='#define HAVE_INET_PTON 0'
3002 inet_pton=no
3003 cat > $TMPC << EOF
3004 #include <sys/types.h>
3005 #include <sys/socket.h>
3006 #include <arpa/inet.h>
3007 int main(void) { (void) inet_pton(0, 0, 0); return 0; }
3009 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3010 cc_check $_ld_tmp && inet_pton=yes && break
3011 done
3012 if test $inet_pton = yes ; then
3013 test $_ld_tmp && _res_comment="using $_ld_tmp"
3014 def_inet_pton='#define HAVE_INET_PTON 1'
3016 echores "$inet_pton"
3019 echocheck "inet_aton()"
3020 def_inet_aton='#define HAVE_INET_ATON 0'
3021 inet_aton=no
3022 cat > $TMPC << EOF
3023 #include <sys/types.h>
3024 #include <sys/socket.h>
3025 #include <arpa/inet.h>
3026 int main(void) { (void) inet_aton(0, 0); return 0; }
3028 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3029 cc_check $_ld_tmp && inet_aton=yes && break
3030 done
3031 if test $inet_aton = yes ; then
3032 test $_ld_tmp && _res_comment="using $_ld_tmp"
3033 def_inet_aton='#define HAVE_INET_ATON 1'
3035 echores "$inet_aton"
3038 echocheck "socklen_t"
3039 _socklen_t=no
3040 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
3041 cat > $TMPC << EOF
3042 #include <$header>
3043 int main(void) { socklen_t v = 0; return v; }
3045 cc_check && _socklen_t=yes && break
3046 done
3047 if test "$_socklen_t" = yes ; then
3048 def_socklen_t='#define HAVE_SOCKLEN_T 1'
3049 else
3050 def_socklen_t='#define HAVE_SOCKLEN_T 0'
3052 echores "$_socklen_t"
3055 echocheck "closesocket()"
3056 _closesocket=no
3057 cat > $TMPC << EOF
3058 #include <winsock2.h>
3059 int main(void) { closesocket(~0); return 0; }
3061 cc_check $_ld_sock && _closesocket=yes
3062 if test "$_closesocket" = yes ; then
3063 def_closesocket='#define HAVE_CLOSESOCKET 1'
3064 else
3065 def_closesocket='#define HAVE_CLOSESOCKET 0'
3067 echores "$_closesocket"
3070 echocheck "network"
3071 test $_winsock2_h = no && test $inet_pton = no &&
3072 test $inet_aton = no && _network=no
3073 if test "$_network" = yes ; then
3074 def_network='#define CONFIG_NETWORK 1'
3075 extra_ldflags="$extra_ldflags $_ld_sock"
3076 _inputmodules="network $_inputmodules"
3077 else
3078 _noinputmodules="network $_noinputmodules"
3079 def_network='#undef CONFIG_NETWORK'
3080 _ftp=no
3082 echores "$_network"
3085 echocheck "inet6"
3086 if test "$_inet6" = auto ; then
3087 cat > $TMPC << EOF
3088 #include <sys/types.h>
3089 #if !defined(_WIN32) || defined(__CYGWIN__)
3090 #include <sys/socket.h>
3091 #include <netinet/in.h>
3092 #else
3093 #include <ws2tcpip.h>
3094 #endif
3095 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3097 _inet6=no
3098 if cc_check $_ld_sock ; then
3099 _inet6=yes
3102 if test "$_inet6" = yes ; then
3103 def_inet6='#define HAVE_AF_INET6 1'
3104 else
3105 def_inet6='#undef HAVE_AF_INET6'
3107 echores "$_inet6"
3110 echocheck "gethostbyname2"
3111 if test "$_gethostbyname2" = auto ; then
3112 cat > $TMPC << EOF
3113 #include <sys/types.h>
3114 #include <sys/socket.h>
3115 #include <netdb.h>
3116 int main(void) { gethostbyname2("", AF_INET); return 0; }
3118 _gethostbyname2=no
3119 if cc_check ; then
3120 _gethostbyname2=yes
3123 if test "$_gethostbyname2" = yes ; then
3124 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3125 else
3126 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3128 echores "$_gethostbyname2"
3131 echocheck "inttypes.h (required)"
3132 cat > $TMPC << EOF
3133 #include <inttypes.h>
3134 int main(void) { return 0; }
3136 _inttypes=no
3137 cc_check && _inttypes=yes
3138 echores "$_inttypes"
3140 if test "$_inttypes" = no ; then
3141 echocheck "bitypes.h (inttypes.h predecessor)"
3142 cat > $TMPC << EOF
3143 #include <sys/bitypes.h>
3144 int main(void) { return 0; }
3146 cc_check && _inttypes=yes
3147 if test "$_inttypes" = yes ; then
3148 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."
3149 else
3150 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3155 echocheck "int_fastXY_t in inttypes.h"
3156 cat > $TMPC << EOF
3157 #include <inttypes.h>
3158 int main(void) {
3159 volatile int_fast16_t v= 0;
3160 return v; }
3162 _fast_inttypes=no
3163 cc_check && _fast_inttypes=yes
3164 if test "$_fast_inttypes" = no ; then
3165 def_fast_inttypes='
3166 typedef signed char int_fast8_t;
3167 typedef signed int int_fast16_t;
3168 typedef signed int int_fast32_t;
3169 typedef signed long long int_fast64_t;
3170 typedef unsigned char uint_fast8_t;
3171 typedef unsigned int uint_fast16_t;
3172 typedef unsigned int uint_fast32_t;
3173 typedef unsigned long long uint_fast64_t;'
3175 echores "$_fast_inttypes"
3178 echocheck "malloc.h"
3179 cat > $TMPC << EOF
3180 #include <malloc.h>
3181 int main(void) { (void) malloc(0); return 0; }
3183 _malloc=no
3184 cc_check && _malloc=yes
3185 if test "$_malloc" = yes ; then
3186 def_malloc_h='#define HAVE_MALLOC_H 1'
3187 else
3188 def_malloc_h='#define HAVE_MALLOC_H 0'
3190 # malloc.h emits a warning in FreeBSD and OpenBSD
3191 freebsd || openbsd || dragonfly && def_malloc_h='#define HAVE_MALLOC_H 0'
3192 echores "$_malloc"
3195 echocheck "memalign()"
3196 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3197 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3198 cat > $TMPC << EOF
3199 #include <malloc.h>
3200 int main(void) { (void) memalign(64, sizeof(char)); return 0; }
3202 _memalign=no
3203 cc_check && _memalign=yes
3204 if test "$_memalign" = yes ; then
3205 def_memalign='#define HAVE_MEMALIGN 1'
3206 else
3207 def_memalign='#define HAVE_MEMALIGN 0'
3208 def_map_memalign='#define memalign(a,b) malloc(b)'
3209 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3211 echores "$_memalign"
3214 echocheck "posix_memalign()"
3215 posix_memalign=no
3216 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3217 cat > $TMPC << EOF
3218 #define _XOPEN_SOURCE 600
3219 #include <stdlib.h>
3220 int main(void) { posix_memalign(NULL, 0, 0); }
3222 cc_check && posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3223 echores "$posix_memalign"
3226 echocheck "alloca.h"
3227 cat > $TMPC << EOF
3228 #include <alloca.h>
3229 int main(void) { (void) alloca(0); return 0; }
3231 _alloca=no
3232 cc_check && _alloca=yes
3233 if cc_check ; then
3234 def_alloca_h='#define HAVE_ALLOCA_H 1'
3235 else
3236 def_alloca_h='#undef HAVE_ALLOCA_H'
3238 echores "$_alloca"
3241 echocheck "fastmemcpy"
3242 if test "$_fastmemcpy" = yes ; then
3243 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3244 else
3245 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3247 echores "$_fastmemcpy"
3250 echocheck "mman.h"
3251 cat > $TMPC << EOF
3252 #include <sys/types.h>
3253 #include <sys/mman.h>
3254 int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; }
3256 _mman=no
3257 cc_check && _mman=yes
3258 if test "$_mman" = yes ; then
3259 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3260 else
3261 def_mman_h='#undef HAVE_SYS_MMAN_H'
3262 os2 && _need_mmap=yes
3264 echores "$_mman"
3266 cat > $TMPC << EOF
3267 #include <sys/types.h>
3268 #include <sys/mman.h>
3269 int main(void) { void *p = MAP_FAILED; return 0; }
3271 _mman_has_map_failed=no
3272 cc_check && _mman_has_map_failed=yes
3273 if test "$_mman_has_map_failed" = yes ; then
3274 def_mman_has_map_failed=''
3275 else
3276 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3279 echocheck "dynamic loader"
3280 cat > $TMPC << EOF
3281 #include <stddef.h>
3282 #include <dlfcn.h>
3283 int main(void) { dlopen(NULL, 0); dlclose(NULL); dlsym(NULL, NULL); return 0; }
3285 _dl=no
3286 for _ld_tmp in "" "-ldl" ; do
3287 cc_check $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3288 done
3289 if test "$_dl" = yes ; then
3290 def_dl='#define HAVE_LIBDL 1'
3291 else
3292 def_dl='#undef HAVE_LIBDL'
3294 echores "$_dl"
3297 echocheck "dynamic a/v plugins support"
3298 if test "$_dl" = no ; then
3299 _dynamic_plugins=no
3301 if test "$_dynamic_plugins" = yes ; then
3302 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3303 else
3304 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3306 echores "$_dynamic_plugins"
3309 def_threads='#define HAVE_THREADS 0'
3311 echocheck "pthread"
3312 if linux ; then
3313 THREAD_CFLAGS=-D_REENTRANT
3314 elif freebsd || netbsd || openbsd || bsdos ; then
3315 THREAD_CFLAGS=-D_THREAD_SAFE
3317 if test "$_pthreads" = auto ; then
3318 cat > $TMPC << EOF
3319 #include <pthread.h>
3320 void* func(void *arg) { return arg; }
3321 int main(void) {
3322 pthread_t tid;
3323 int res = 0;
3324 #ifdef PTW32_STATIC_LIB
3325 pthread_win32_process_attach_np();
3326 pthread_win32_thread_attach_np();
3327 #endif
3328 res = pthread_create (&tid, 0, func, 0) == 0 ? 0 : 1;
3329 return res;
3332 _pthreads=no
3333 if ! hpux ; then
3334 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3335 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3336 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3337 done
3338 # static pthreads on mingw32
3339 if test "$_pthreads" = no && mingw32 ; then
3340 _ld_tmp="-lpthreadGC2 -lws2_32"
3341 cc_check $_ld_tmp -DPTW32_STATIC_LIB && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && CFLAGS="$CFLAGS -DPTW32_STATIC_LIB"
3345 if test "$_pthreads" = yes ; then
3346 test -n "$_ld_pthread" && _res_comment="using $_ld_pthread"
3347 def_pthreads='#define HAVE_PTHREADS 1'
3348 def_threads='#define HAVE_THREADS 1'
3349 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3350 else
3351 _res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3352 def_pthreads='#undef HAVE_PTHREADS'
3353 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3354 mingw32 || _win32dll=no
3356 echores "$_pthreads"
3358 if cygwin ; then
3359 if test "$_pthreads" = yes ; then
3360 def_pthread_cache="#define PTHREAD_CACHE 1"
3361 else
3362 _stream_cache=no
3363 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3367 echocheck "w32threads"
3368 if test "$_pthreads" = yes ; then
3369 _res_comment="using pthread instead"
3370 _w32threads=no
3372 if test "$_w32threads" = auto ; then
3373 _w32threads=no
3374 mingw32 && _w32threads=yes
3376 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3377 echores "$_w32threads"
3379 echocheck "rpath"
3380 netbsd &&_rpath=yes
3381 if test "$_rpath" = yes ; then
3382 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3383 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3384 done
3385 extra_ldflags=$tmp
3387 echores "$_rpath"
3389 echocheck "iconv"
3390 if test "$_iconv" = auto ; then
3391 cat > $TMPC << EOF
3392 #include <stdio.h>
3393 #include <unistd.h>
3394 #include <iconv.h>
3395 #define INBUFSIZE 1024
3396 #define OUTBUFSIZE 4096
3398 char inbuffer[INBUFSIZE];
3399 char outbuffer[OUTBUFSIZE];
3401 int main(void) {
3402 size_t numread;
3403 iconv_t icdsc;
3404 char *tocode="UTF-8";
3405 char *fromcode="cp1250";
3406 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3407 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3408 char *iptr=inbuffer;
3409 char *optr=outbuffer;
3410 size_t inleft=numread;
3411 size_t outleft=OUTBUFSIZE;
3412 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft)
3413 != (size_t)(-1)) {
3414 write(1, outbuffer, OUTBUFSIZE - outleft);
3417 if (iconv_close(icdsc) == -1)
3420 return 0;
3423 _iconv=no
3424 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3425 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3426 _iconv=yes && break
3427 done
3429 if test "$_iconv" = yes ; then
3430 def_iconv='#define CONFIG_ICONV 1'
3431 else
3432 def_iconv='#undef CONFIG_ICONV'
3434 echores "$_iconv"
3437 echocheck "soundcard.h"
3438 _soundcard_h=no
3439 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3440 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3441 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3442 cat > $TMPC << EOF
3443 #include <$_soundcard_header>
3444 int main(void) { return 0; }
3446 cc_check && _soundcard_h=yes && _res_comment="$_soundcard_header" && break
3447 done
3449 if test "$_soundcard_h" = yes ; then
3450 if test $_soundcard_header = "sys/soundcard.h"; then
3451 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3452 else
3453 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3456 echores "$_soundcard_h"
3459 echocheck "sys/dvdio.h"
3460 cat > $TMPC << EOF
3461 #include <unistd.h>
3462 #include <sys/dvdio.h>
3463 int main(void) { return 0; }
3465 _dvdio=no
3466 cc_check && _dvdio=yes
3467 if test "$_dvdio" = yes ; then
3468 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3469 else
3470 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3472 echores "$_dvdio"
3475 echocheck "sys/cdio.h"
3476 cat > $TMPC << EOF
3477 #include <unistd.h>
3478 #include <sys/cdio.h>
3479 int main(void) { return 0; }
3481 _cdio=no
3482 cc_check && _cdio=yes
3483 if test "$_cdio" = yes ; then
3484 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3485 else
3486 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3488 echores "$_cdio"
3491 echocheck "linux/cdrom.h"
3492 cat > $TMPC << EOF
3493 #include <sys/types.h>
3494 #include <linux/cdrom.h>
3495 int main(void) { return 0; }
3497 _cdrom=no
3498 cc_check && _cdrom=yes
3499 if test "$_cdrom" = yes ; then
3500 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3501 else
3502 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3504 echores "$_cdrom"
3507 echocheck "dvd.h"
3508 cat > $TMPC << EOF
3509 #include <dvd.h>
3510 int main(void) { return 0; }
3512 _dvd=no
3513 cc_check && _dvd=yes
3514 if test "$_dvd" = yes ; then
3515 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3516 else
3517 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3519 echores "$_dvd"
3522 if bsdos; then
3523 echocheck "BSDI dvd.h"
3524 cat > $TMPC << EOF
3525 #include <dvd.h>
3526 int main(void) { return 0; }
3528 _bsdi_dvd=no
3529 cc_check && _bsdi_dvd=yes
3530 if test "$_bsdi_dvd" = yes ; then
3531 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3532 else
3533 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3535 echores "$_bsdi_dvd"
3536 fi #if bsdos
3539 if hpux; then
3540 # also used by AIX, but AIX does not support VCD and/or libdvdread
3541 echocheck "HP-UX SCSI header"
3542 cat > $TMPC << EOF
3543 #include <sys/scsi.h>
3544 int main(void) { return 0; }
3546 _hpux_scsi_h=no
3547 cc_check && _hpux_scsi_h=yes
3548 if test "$_hpux_scsi_h" = yes ; then
3549 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3550 else
3551 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3553 echores "$_hpux_scsi_h"
3554 fi #if hpux
3557 if sunos; then
3558 echocheck "userspace SCSI headers (Solaris)"
3559 cat > $TMPC << EOF
3560 #include <unistd.h>
3561 #include <stropts.h>
3562 #include <sys/scsi/scsi_types.h>
3563 #include <sys/scsi/impl/uscsi.h>
3564 int main(void) { return 0; }
3566 _sol_scsi_h=no
3567 cc_check && _sol_scsi_h=yes
3568 if test "$_sol_scsi_h" = yes ; then
3569 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3570 else
3571 def_sol_scsi_h='#undef SOLARIS_USCSI'
3573 echores "$_sol_scsi_h"
3574 fi #if sunos
3577 echocheck "termcap"
3578 if test "$_termcap" = auto ; then
3579 cat > $TMPC <<EOF
3580 #include <stddef.h>
3581 #include <term.h>
3582 int main(void) { tgetent(NULL, NULL); return 0; }
3584 _termcap=no
3585 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3586 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
3587 && _termcap=yes && break
3588 done
3590 if test "$_termcap" = yes ; then
3591 def_termcap='#define HAVE_TERMCAP 1'
3592 test $_ld_tmp && _res_comment="using $_ld_tmp"
3593 else
3594 def_termcap='#undef HAVE_TERMCAP'
3596 echores "$_termcap"
3599 echocheck "termios"
3600 def_termios='#undef HAVE_TERMIOS'
3601 def_termios_h='#undef HAVE_TERMIOS_H'
3602 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3603 if test "$_termios" = auto ; then
3604 _termios=no
3605 for _termios_header in "sys/termios.h" "termios.h"; do
3606 cat > $TMPC <<EOF
3607 #include <$_termios_header>
3608 int main(void) { return 0; }
3610 cc_check && _termios=yes && _res_comment="using $_termios_header" && break
3611 done
3614 if test "$_termios" = yes ; then
3615 def_termios='#define HAVE_TERMIOS 1'
3616 if test "$_termios_header" = "termios.h" ; then
3617 def_termios_h='#define HAVE_TERMIOS_H 1'
3618 else
3619 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3622 echores "$_termios"
3625 echocheck "shm"
3626 if test "$_shm" = auto ; then
3627 cat > $TMPC << EOF
3628 #include <sys/types.h>
3629 #include <sys/shm.h>
3630 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3632 _shm=no
3633 cc_check && _shm=yes
3635 if test "$_shm" = yes ; then
3636 def_shm='#define HAVE_SHM 1'
3637 else
3638 def_shm='#undef HAVE_SHM'
3640 echores "$_shm"
3643 echocheck "strsep()"
3644 cat > $TMPC << EOF
3645 #include <string.h>
3646 int main(void) { char *s = "Hello, world!"; (void) strsep(&s, ","); return 0; }
3648 _strsep=no
3649 cc_check && _strsep=yes
3650 if test "$_strsep" = yes ; then
3651 def_strsep='#define HAVE_STRSEP 1'
3652 _need_strsep=no
3653 else
3654 def_strsep='#undef HAVE_STRSEP'
3655 _need_strsep=yes
3657 echores "$_strsep"
3660 echocheck "vsscanf()"
3661 cat > $TMPC << EOF
3662 #define _ISOC99_SOURCE
3663 #include <stdarg.h>
3664 #include <stdio.h>
3665 int main(void) { vsscanf(0, 0, 0); return 0; }
3667 _vsscanf=no
3668 cc_check && _vsscanf=yes
3669 if test "$_vsscanf" = yes ; then
3670 def_vsscanf='#define HAVE_VSSCANF 1'
3671 _need_vsscanf=no
3672 else
3673 def_vsscanf='#undef HAVE_VSSCANF'
3674 _need_vsscanf=yes
3676 echores "$_vsscanf"
3679 echocheck "swab()"
3680 cat > $TMPC << EOF
3681 #define _XOPEN_SOURCE 600
3682 #include <unistd.h>
3683 int main(void) { swab(0, 0, 0); return 0; }
3685 _swab=no
3686 cc_check && _swab=yes
3687 if test "$_swab" = yes ; then
3688 def_swab='#define HAVE_SWAB 1'
3689 _need_swab=no
3690 else
3691 def_swab='#undef HAVE_SWAB'
3692 _need_swab=yes
3694 echores "$_swab"
3696 echocheck "POSIX select()"
3697 cat > $TMPC << EOF
3698 #include <stdio.h>
3699 #include <stdlib.h>
3700 #include <sys/types.h>
3701 #include <string.h>
3702 #include <sys/time.h>
3703 #include <unistd.h>
3704 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
3706 _posix_select=no
3707 def_posix_select='#undef HAVE_POSIX_SELECT'
3708 #select() of kLIBC (OS/2) supports socket only
3709 ! os2 && cc_check && _posix_select=yes \
3710 && def_posix_select='#define HAVE_POSIX_SELECT 1'
3711 echores "$_posix_select"
3714 echocheck "audio select()"
3715 if test "$_select" = no ; then
3716 def_select='#undef HAVE_AUDIO_SELECT'
3717 elif test "$_select" = yes ; then
3718 def_select='#define HAVE_AUDIO_SELECT 1'
3720 echores "$_select"
3723 echocheck "gettimeofday()"
3724 cat > $TMPC << EOF
3725 #include <stdio.h>
3726 #include <sys/time.h>
3727 int main(void) {struct timeval tv_start; gettimeofday(&tv_start, NULL); return 0; }
3729 _gettimeofday=no
3730 cc_check && _gettimeofday=yes
3731 if test "$_gettimeofday" = yes ; then
3732 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3733 _need_gettimeofday=no
3734 else
3735 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3736 _need_gettimeofday=yes
3738 echores "$_gettimeofday"
3741 echocheck "glob()"
3742 cat > $TMPC << EOF
3743 #include <stdio.h>
3744 #include <glob.h>
3745 int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
3747 _glob=no
3748 cc_check && _glob=yes
3749 if test "$_glob" = yes ; then
3750 def_glob='#define HAVE_GLOB 1'
3751 _need_glob=no
3752 else
3753 def_glob='#undef HAVE_GLOB'
3754 _need_glob=yes
3756 echores "$_glob"
3759 echocheck "setenv()"
3760 cat > $TMPC << EOF
3761 #include <stdlib.h>
3762 int main(void) { setenv("","",0); return 0; }
3764 _setenv=no
3765 cc_check && _setenv=yes
3766 if test "$_setenv" = yes ; then
3767 def_setenv='#define HAVE_SETENV 1'
3768 _need_setenv=no
3769 else
3770 def_setenv='#undef HAVE_SETENV'
3771 _need_setenv=yes
3773 echores "$_setenv"
3776 if sunos; then
3777 echocheck "sysi86()"
3778 cat > $TMPC << EOF
3779 #include <sys/sysi86.h>
3780 int main(void) { sysi86(0); return 0; }
3782 _sysi86=no
3783 cc_check && _sysi86=yes
3784 if test "$_sysi86" = yes ; then
3785 def_sysi86='#define HAVE_SYSI86 1'
3786 cat > $TMPC << EOF
3787 #include <sys/sysi86.h>
3788 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
3790 cc_check && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3791 else
3792 def_sysi86='#undef HAVE_SYSI86'
3794 echores "$_sysi86"
3795 fi #if sunos
3798 echocheck "sys/sysinfo.h"
3799 cat > $TMPC << EOF
3800 #include <sys/sysinfo.h>
3801 int main(void) {
3802 struct sysinfo s_info;
3803 sysinfo(&s_info);
3804 return 0;
3807 _sys_sysinfo=no
3808 cc_check && _sys_sysinfo=yes
3809 if test "$_sys_sysinfo" = yes ; then
3810 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3811 else
3812 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3814 echores "$_sys_sysinfo"
3817 if darwin; then
3819 echocheck "Mac OS X Finder Support"
3820 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3821 if test "$_macosx_finder" = yes ; then
3822 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3823 extra_ldflags="$extra_ldflags -framework Carbon"
3825 echores "$_macosx_finder"
3827 echocheck "Mac OS X Bundle file locations"
3828 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3829 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3830 if test "$_macosx_bundle" = yes ; then
3831 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3832 extra_ldflags="$extra_ldflags -framework Carbon"
3834 echores "$_macosx_bundle"
3836 echocheck "Apple Remote"
3837 if test "$_apple_remote" = auto ; then
3838 _apple_remote=no
3839 cat > $TMPC <<EOF
3840 #include <stdio.h>
3841 #include <IOKit/IOCFPlugIn.h>
3842 int main(void) {
3843 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3844 CFMutableDictionaryRef hidMatchDictionary;
3845 IOReturn ioReturnValue;
3847 // Set up a matching dictionary to search the I/O Registry by class.
3848 // name for all HID class devices
3849 hidMatchDictionary = IOServiceMatching("AppleIRController");
3851 // Now search I/O Registry for matching devices.
3852 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3853 hidMatchDictionary, &hidObjectIterator);
3855 // If search is unsuccessful, return nonzero.
3856 if (ioReturnValue != kIOReturnSuccess ||
3857 !IOIteratorIsValid(hidObjectIterator)) {
3858 return 1;
3860 return 0;
3863 cc_check -framework IOKit && tmp_run && _apple_remote=yes
3865 if test "$_apple_remote" = yes ; then
3866 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3867 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3868 else
3869 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3871 echores "$_apple_remote"
3873 fi #if darwin
3875 if linux; then
3877 echocheck "Apple IR"
3878 if test "$_apple_ir" = auto ; then
3879 _apple_ir=no
3880 cat > $TMPC <<EOF
3881 #include <linux/types.h>
3882 #include <linux/input.h>
3883 int main(void) {
3884 struct input_event ev;
3885 struct input_id id;
3886 return 0;
3889 cc_check && _apple_ir=yes
3891 if test "$_apple_ir" = yes ; then
3892 def_apple_ir='#define CONFIG_APPLE_IR 1'
3893 else
3894 def_apple_ir='#undef CONFIG_APPLE_IR'
3896 echores "$_apple_ir"
3897 fi #if linux
3899 echocheck "pkg-config"
3900 _pkg_config=pkg-config
3901 if $($_pkg_config --version > /dev/null 2>&1); then
3902 if test "$_ld_static"; then
3903 _pkg_config="$_pkg_config --static"
3905 echores "yes"
3906 else
3907 _pkg_config=false
3908 echores "no"
3912 echocheck "Samba support (libsmbclient)"
3913 if test "$_smb" = yes; then
3914 extra_ldflags="$extra_ldflags -lsmbclient"
3916 if test "$_smb" = auto; then
3917 _smb=no
3918 cat > $TMPC << EOF
3919 #include <libsmbclient.h>
3920 int main(void) { smbc_opendir("smb://"); return 0; }
3922 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3923 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3924 _smb=yes && break
3925 done
3928 if test "$_smb" = yes; then
3929 def_smb="#define CONFIG_LIBSMBCLIENT 1"
3930 _inputmodules="smb $_inputmodules"
3931 else
3932 def_smb="#undef CONFIG_LIBSMBCLIENT"
3933 _noinputmodules="smb $_noinputmodules"
3935 echores "$_smb"
3938 #########
3939 # VIDEO #
3940 #########
3943 echocheck "tdfxfb"
3944 if test "$_tdfxfb" = yes ; then
3945 def_tdfxfb='#define CONFIG_TDFXFB 1'
3946 _vomodules="tdfxfb $_vomodules"
3947 else
3948 def_tdfxfb='#undef CONFIG_TDFXFB'
3949 _novomodules="tdfxfb $_novomodules"
3951 echores "$_tdfxfb"
3953 echocheck "s3fb"
3954 if test "$_s3fb" = yes ; then
3955 def_s3fb='#define CONFIG_S3FB 1'
3956 _vomodules="s3fb $_vomodules"
3957 else
3958 def_s3fb='#undef CONFIG_S3FB'
3959 _novomodules="s3fb $_novomodules"
3961 echores "$_s3fb"
3963 echocheck "wii"
3964 if test "$_wii" = yes ; then
3965 def_wii='#define CONFIG_WII 1'
3966 _vomodules="wii $_vomodules"
3967 else
3968 def_wii='#undef CONFIG_WII'
3969 _novomodules="wii $_novomodules"
3971 echores "$_wii"
3973 echocheck "tdfxvid"
3974 if test "$_tdfxvid" = yes ; then
3975 def_tdfxvid='#define CONFIG_TDFX_VID 1'
3976 _vomodules="tdfx_vid $_vomodules"
3977 else
3978 def_tdfxvid='#undef CONFIG_TDFX_VID'
3979 _novomodules="tdfx_vid $_novomodules"
3981 echores "$_tdfxvid"
3983 echocheck "xvr100"
3984 if test "$_xvr100" = auto ; then
3985 cat > $TMPC << EOF
3986 #include <unistd.h>
3987 #include <sys/fbio.h>
3988 #include <sys/visual_io.h>
3989 int main(void) {
3990 struct vis_identifier ident;
3991 struct fbgattr attr;
3992 ioctl(0, VIS_GETIDENTIFIER, &ident);
3993 ioctl(0, FBIOGATTR, &attr);
3994 return 0;
3997 _xvr100=no
3998 cc_check && _xvr100=yes
4000 if test "$_xvr100" = yes ; then
4001 def_xvr100='#define CONFIG_XVR100 1'
4002 _vomodules="xvr100 $_vomodules"
4003 else
4004 def_tdfxvid='#undef CONFIG_XVR100'
4005 _novomodules="xvr100 $_novomodules"
4007 echores "$_xvr100"
4009 echocheck "tga"
4010 if test "$_tga" = yes ; then
4011 def_tga='#define CONFIG_TGA 1'
4012 _vomodules="tga $_vomodules"
4013 else
4014 def_tga='#undef CONFIG_TGA'
4015 _novomodules="tga $_novomodules"
4017 echores "$_tga"
4020 echocheck "md5sum support"
4021 if test "$_md5sum" = yes; then
4022 def_md5sum="#define CONFIG_MD5SUM 1"
4023 _vomodules="md5sum $_vomodules"
4024 else
4025 def_md5sum="#undef CONFIG_MD5SUM"
4026 _novomodules="md5sum $_novomodules"
4028 echores "$_md5sum"
4031 echocheck "yuv4mpeg support"
4032 if test "$_yuv4mpeg" = yes; then
4033 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
4034 _vomodules="yuv4mpeg $_vomodules"
4035 else
4036 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
4037 _novomodules="yuv4mpeg $_novomodules"
4039 echores "$_yuv4mpeg"
4042 echocheck "bl"
4043 if test "$_bl" = yes ; then
4044 def_bl='#define CONFIG_BL 1'
4045 _vomodules="bl $_vomodules"
4046 else
4047 def_bl='#undef CONFIG_BL'
4048 _novomodules="bl $_novomodules"
4050 echores "$_bl"
4053 echocheck "DirectFB"
4054 if test "$_directfb" = auto ; then
4055 _directfb=no
4056 cat > $TMPC <<EOF
4057 #include <directfb.h>
4058 int main(void) { IDirectFB *foo; DirectFBInit(0,0); return 0; }
4060 for _inc_tmp in "" -I/usr/local/include/directfb \
4061 -I/usr/include/directfb -I/usr/local/include; do
4062 cc_check $_inc_tmp -ldirectfb && _directfb=yes && \
4063 extra_cflags="$extra_cflags $_inc_tmp" && break
4064 done
4067 dfb_version() {
4068 expr $1 \* 65536 + $2 \* 256 + $3
4071 if test "$_directfb" = yes; then
4072 cat > $TMPC << EOF
4073 #include <directfb_version.h>
4075 dfb_ver = DIRECTFB_MAJOR_VERSION.DIRECTFB_MINOR_VERSION.DIRECTFB_MICRO_VERSION
4078 if $_cc -E $TMPC $extra_cflags > "$TMPEXE"; then
4079 _directfb_version=$(sed -n 's/^dfb_ver[^0-9]*\(.*\)/\1/p' "$TMPEXE" | tr -d '()')
4080 _dfb_major=$(echo $_directfb_version | cut -d . -f 1)
4081 _dfb_minor=$(echo $_directfb_version | cut -d . -f 2)
4082 _dfb_micro=$(echo $_directfb_version | cut -d . -f 3)
4083 _dfb_version=$(dfb_version $_dfb_major $_dfb_minor $_dfb_micro)
4084 if test "$_dfb_version" -ge $(dfb_version 0 9 13); then
4085 def_directfb_version="#define DIRECTFBVERSION $_dfb_version"
4086 _res_comment="$_directfb_version"
4087 test "$_dfb_version" -ge $(dfb_version 0 9 15) && _dfbmga=yes
4088 else
4089 def_directfb_version='#undef DIRECTFBVERSION'
4090 _directfb=no
4091 _res_comment="version >=0.9.13 required"
4093 else
4094 _directfb=no
4095 _res_comment="failed to get version"
4098 echores "$_directfb"
4100 if test "$_directfb" = yes ; then
4101 def_directfb='#define CONFIG_DIRECTFB 1'
4102 _vomodules="directfb $_vomodules"
4103 libs_mplayer="$libs_mplayer -ldirectfb"
4104 else
4105 def_directfb='#undef CONFIG_DIRECTFB'
4106 _novomodules="directfb $_novomodules"
4108 if test "$_dfbmga" = yes; then
4109 _vomodules="dfbmga $_vomodules"
4110 def_dfbmga='#define CONFIG_DFBMGA 1'
4111 else
4112 _novomodules="dfbmga $_novomodules"
4113 def_dfbmga='#undef CONFIG_DFBMGA'
4117 echocheck "X11 headers presence"
4118 _x11_headers="no"
4119 _res_comment="check if the dev(el) packages are installed"
4120 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
4121 if test -f "$I/X11/Xlib.h" ; then
4122 _x11_headers="yes"
4123 _res_comment=""
4124 break
4126 done
4127 if test $_cross_compile = no; then
4128 for I in /usr/X11/include /usr/X11R7/include /usr/X11R6/include \
4129 /usr/include/X11R6 /usr/openwin/include ; do
4130 if test -f "$I/X11/Xlib.h" ; then
4131 extra_cflags="$extra_cflags -I$I"
4132 _x11_headers="yes"
4133 _res_comment="using $I"
4134 break
4136 done
4138 echores "$_x11_headers"
4141 echocheck "X11"
4142 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
4143 cat > $TMPC <<EOF
4144 #include <X11/Xlib.h>
4145 #include <X11/Xutil.h>
4146 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; }
4148 for I in "" -L/usr/X11R7/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
4149 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/X11R6/lib64 \
4150 -L/usr/lib ; do
4151 if netbsd; then
4152 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
4153 else
4154 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
4156 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" \
4157 && _x11=yes && break
4158 done
4160 if test "$_x11" = yes ; then
4161 def_x11='#define CONFIG_X11 1'
4162 _vomodules="x11 xover $_vomodules"
4163 else
4164 _x11=no
4165 def_x11='#undef CONFIG_X11'
4166 _novomodules="x11 $_novomodules"
4167 _res_comment="check if the dev(el) packages are installed"
4168 # disable stuff that depends on X
4169 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
4171 echores "$_x11"
4173 echocheck "Xss screensaver extensions"
4174 if test "$_xss" = auto ; then
4175 cat > $TMPC << EOF
4176 #include <X11/Xlib.h>
4177 #include <X11/extensions/scrnsaver.h>
4178 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
4180 _xss=no
4181 cc_check -lXss && _xss=yes
4183 if test "$_xss" = yes ; then
4184 def_xss='#define CONFIG_XSS 1'
4185 libs_mplayer="$libs_mplayer -lXss"
4186 else
4187 def_xss='#undef CONFIG_XSS'
4189 echores "$_xss"
4191 echocheck "DPMS"
4192 _xdpms3=no
4193 _xdpms4=no
4194 if test "$_x11" = yes ; then
4195 cat > $TMPC <<EOF
4196 #include <X11/Xmd.h>
4197 #include <X11/Xlib.h>
4198 #include <X11/Xutil.h>
4199 #include <X11/Xatom.h>
4200 #include <X11/extensions/dpms.h>
4201 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4203 cc_check -lXdpms && _xdpms3=yes
4204 cat > $TMPC <<EOF
4205 #include <X11/Xlib.h>
4206 #include <X11/extensions/dpms.h>
4207 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4209 cc_check -lXext && _xdpms4=yes
4211 if test "$_xdpms4" = yes ; then
4212 def_xdpms='#define CONFIG_XDPMS 1'
4213 _res_comment="using Xdpms 4"
4214 echores "yes"
4215 elif test "$_xdpms3" = yes ; then
4216 def_xdpms='#define CONFIG_XDPMS 1'
4217 libs_mplayer="$libs_mplayer -lXdpms"
4218 _res_comment="using Xdpms 3"
4219 echores "yes"
4220 else
4221 def_xdpms='#undef CONFIG_XDPMS'
4222 echores "no"
4226 echocheck "Xv"
4227 if test "$_xv" = auto ; then
4228 cat > $TMPC <<EOF
4229 #include <X11/Xlib.h>
4230 #include <X11/extensions/Xvlib.h>
4231 int main(void) {
4232 (void) XvGetPortAttribute(0, 0, 0, 0);
4233 (void) XvQueryPortAttributes(0, 0, 0);
4234 return 0; }
4236 _xv=no
4237 cc_check -lXv && _xv=yes
4240 if test "$_xv" = yes ; then
4241 def_xv='#define CONFIG_XV 1'
4242 libs_mplayer="$libs_mplayer -lXv"
4243 _vomodules="xv $_vomodules"
4244 else
4245 def_xv='#undef CONFIG_XV'
4246 _novomodules="xv $_novomodules"
4248 echores "$_xv"
4251 echocheck "XvMC"
4252 if test "$_xv" = yes && test "$_xvmc" != no ; then
4253 _xvmc=no
4254 cat > $TMPC <<EOF
4255 #include <X11/Xlib.h>
4256 #include <X11/extensions/Xvlib.h>
4257 #include <X11/extensions/XvMClib.h>
4258 int main(void) {
4259 (void) XvMCQueryExtension(0,0,0);
4260 (void) XvMCCreateContext(0,0,0,0,0,0,0);
4261 return 0; }
4263 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
4264 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
4265 done
4267 if test "$_xvmc" = yes ; then
4268 def_xvmc='#define CONFIG_XVMC 1'
4269 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
4270 _vomodules="xvmc $_vomodules"
4271 _res_comment="using $_xvmclib"
4272 else
4273 def_xvmc='#define CONFIG_XVMC 0'
4274 _novomodules="xvmc $_novomodules"
4276 echores "$_xvmc"
4279 echocheck "VDPAU"
4280 if test "$_vdpau" = auto ; then
4281 _vdpau=no
4282 if test "$_dl" = yes ; then
4283 cat > $TMPC <<EOF
4284 #include <vdpau/vdpau_x11.h>
4285 int main(void) {return VDP_VIDEO_MIXER_ATTRIBUTE_SKIP_CHROMA_DEINTERLACE;}
4287 cc_check && _vdpau=yes
4290 if test "$_vdpau" = yes ; then
4291 def_vdpau='#define CONFIG_VDPAU 1'
4292 _vomodules="vdpau $_vomodules"
4293 else
4294 def_vdpau='#define CONFIG_VDPAU 0'
4295 _novomodules="vdpau $_novomodules"
4297 echores "$_vdpau"
4300 echocheck "Xinerama"
4301 if test "$_xinerama" = auto ; then
4302 cat > $TMPC <<EOF
4303 #include <X11/Xlib.h>
4304 #include <X11/extensions/Xinerama.h>
4305 int main(void) { (void) XineramaIsActive(0); return 0; }
4307 _xinerama=no
4308 cc_check -lXinerama && _xinerama=yes
4311 if test "$_xinerama" = yes ; then
4312 def_xinerama='#define CONFIG_XINERAMA 1'
4313 libs_mplayer="$libs_mplayer -lXinerama"
4314 else
4315 def_xinerama='#undef CONFIG_XINERAMA'
4317 echores "$_xinerama"
4320 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4321 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4322 # named 'X extensions' or something similar.
4323 # This check may be useful for future mplayer versions (to change resolution)
4324 # If you run into problems, remove '-lXxf86vm'.
4325 echocheck "Xxf86vm"
4326 if test "$_vm" = auto ; then
4327 cat > $TMPC <<EOF
4328 #include <X11/Xlib.h>
4329 #include <X11/extensions/xf86vmode.h>
4330 int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; }
4332 _vm=no
4333 cc_check -lXxf86vm && _vm=yes
4335 if test "$_vm" = yes ; then
4336 def_vm='#define CONFIG_XF86VM 1'
4337 libs_mplayer="$libs_mplayer -lXxf86vm"
4338 else
4339 def_vm='#undef CONFIG_XF86VM'
4341 echores "$_vm"
4343 # Check for the presence of special keycodes, like audio control buttons
4344 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4345 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4346 # have these new keycodes.
4347 echocheck "XF86keysym"
4348 if test "$_xf86keysym" = auto; then
4349 _xf86keysym=no
4350 cat > $TMPC <<EOF
4351 #include <X11/Xlib.h>
4352 #include <X11/XF86keysym.h>
4353 int main(void) { return XF86XK_AudioPause; }
4355 cc_check && _xf86keysym=yes
4357 if test "$_xf86keysym" = yes ; then
4358 def_xf86keysym='#define CONFIG_XF86XK 1'
4359 else
4360 def_xf86keysym='#undef CONFIG_XF86XK'
4362 echores "$_xf86keysym"
4364 echocheck "DGA"
4365 if test "$_dga2" = auto && test "$_x11" = yes ; then
4366 cat > $TMPC << EOF
4367 #include <X11/Xlib.h>
4368 #include <X11/extensions/xf86dga.h>
4369 int main(void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4371 _dga2=no
4372 cc_check -lXxf86dga && _dga2=yes
4374 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4375 cat > $TMPC << EOF
4376 #include <X11/Xlib.h>
4377 #include <X11/extensions/xf86dga.h>
4378 int main(void) { (void) XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4380 _dga1=no
4381 cc_check -lXxf86dga -lXxf86vm && _dga1=yes
4384 _dga=no
4385 def_dga='#undef CONFIG_DGA'
4386 def_dga1='#undef CONFIG_DGA1'
4387 def_dga2='#undef CONFIG_DGA2'
4388 if test "$_dga1" = yes ; then
4389 _dga=yes
4390 def_dga1='#define CONFIG_DGA1 1'
4391 _res_comment="using DGA 1.0"
4392 elif test "$_dga2" = yes ; then
4393 _dga=yes
4394 def_dga2='#define CONFIG_DGA2 1'
4395 _res_comment="using DGA 2.0"
4397 if test "$_dga" = yes ; then
4398 def_dga='#define CONFIG_DGA 1'
4399 libs_mplayer="$libs_mplayer -lXxf86dga"
4400 _vomodules="dga $_vomodules"
4401 else
4402 _novomodules="dga $_novomodules"
4404 echores "$_dga"
4407 echocheck "3dfx"
4408 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4409 def_3dfx='#define CONFIG_3DFX 1'
4410 _vomodules="3dfx $_vomodules"
4411 else
4412 def_3dfx='#undef CONFIG_3DFX'
4413 _novomodules="3dfx $_novomodules"
4415 echores "$_3dfx"
4417 echocheck "VIDIX"
4418 def_vidix='#undef CONFIG_VIDIX'
4419 def_vidix_drv_cyberblade='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4420 _vidix_drv_cyberblade=no
4421 def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4422 _vidix_drv_ivtv=no
4423 def_vidix_drv_mach64='#undef CONFIG_VIDIX_DRV_MACH64'
4424 _vidix_drv_mach64=no
4425 def_vidix_drv_mga='#undef CONFIG_VIDIX_DRV_MGA'
4426 _vidix_drv_mga=no
4427 def_vidix_drv_mga_crtc2='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4428 _vidix_drv_mga_crtc2=no
4429 def_vidix_drv_nvidia='#undef CONFIG_VIDIX_DRV_NVIDIA'
4430 _vidix_drv_nvidia=no
4431 def_vidix_drv_pm2='#undef CONFIG_VIDIX_DRV_PM2'
4432 _vidix_drv_pm2=no
4433 def_vidix_drv_pm3='#undef CONFIG_VIDIX_DRV_PM3'
4434 _vidix_drv_pm3=no
4435 def_vidix_drv_radeon='#undef CONFIG_VIDIX_DRV_RADEON'
4436 _vidix_drv_radeon=no
4437 def_vidix_drv_rage128='#undef CONFIG_VIDIX_DRV_RAGE128'
4438 _vidix_drv_rage128=no
4439 def_vidix_drv_s3='#undef CONFIG_VIDIX_DRV_S3'
4440 _vidix_drv_s3=no
4441 def_vidix_drv_sh_veu='#undef CONFIG_VIDIX_DRV_SH_VEU'
4442 _vidix_drv_sh_veu=no
4443 def_vidix_drv_sis='#undef CONFIG_VIDIX_DRV_SIS'
4444 _vidix_drv_sis=no
4445 def_vidix_drv_unichrome='#undef CONFIG_VIDIX_DRV_UNICHROME'
4446 _vidix_drv_unichrome=no
4447 if test "$_vidix" = auto ; then
4448 _vidix=no
4449 x86 && (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32) \
4450 && _vidix=yes
4451 (ppc || alpha) && linux && _vidix=yes
4453 echores "$_vidix"
4455 if test "$_vidix" = yes ; then
4456 def_vidix='#define CONFIG_VIDIX 1'
4457 _vomodules="cvidix $_vomodules"
4458 # FIXME: ivtv driver temporarily disabled until we have a proper test
4459 #test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4460 test "$_vidix_drivers" || _vidix_drivers="cyberblade mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4462 # some vidix drivers are architecture and os specific, discard them elsewhere
4463 x86 || _vidix_drivers=$(echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome// -e s/s3//)
4464 (test $host_arch = "sh" && linux) || _vidix_drivers=$(echo $_vidix_drivers | sed s/sh_veu//)
4466 for driver in $_vidix_drivers ; do
4467 uc_driver=$(echo $driver | tr '[a-z]' '[A-Z]')
4468 eval _vidix_drv_${driver}=yes
4469 eval def_vidix_drv_${driver}=\"\#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4470 done
4472 echocheck "VIDIX PCI device name database"
4473 echores "$_vidix_pcidb"
4474 if test "$_vidix_pcidb" = yes ; then
4475 _vidix_pcidb_val=1
4476 else
4477 _vidix_pcidb_val=0
4480 echocheck "VIDIX dhahelper support"
4481 test "$_dhahelper" = yes && cflags_dhahelper=-DCONFIG_DHAHELPER
4482 echores "$_dhahelper"
4484 echocheck "VIDIX svgalib_helper support"
4485 test "$_svgalib_helper" = yes && cflags_svgalib_helper=-DCONFIG_SVGAHELPER
4486 echores "$_svgalib_helper"
4488 else
4489 _novomodules="cvidix $_novomodules"
4492 if test "$_vidix" = yes && win32; then
4493 winvidix=yes
4494 _vomodules="winvidix $_vomodules"
4495 libs_mplayer="$libs_mplayer -lgdi32"
4496 else
4497 _novomodules="winvidix $_novomodules"
4499 if test "$_vidix" = yes && test "$_x11" = yes; then
4500 xvidix=yes
4501 _vomodules="xvidix $_vomodules"
4502 else
4503 _novomodules="xvidix $_novomodules"
4506 echocheck "GGI"
4507 if test "$_ggi" = auto ; then
4508 cat > $TMPC << EOF
4509 #include <ggi/ggi.h>
4510 int main(void) { ggiInit(); return 0; }
4512 _ggi=no
4513 cc_check -lggi && _ggi=yes
4515 if test "$_ggi" = yes ; then
4516 def_ggi='#define CONFIG_GGI 1'
4517 libs_mplayer="$libs_mplayer -lggi"
4518 _vomodules="ggi $_vomodules"
4519 else
4520 def_ggi='#undef CONFIG_GGI'
4521 _novomodules="ggi $_novomodules"
4523 echores "$_ggi"
4525 echocheck "GGI extension: libggiwmh"
4526 if test "$_ggiwmh" = auto ; then
4527 _ggiwmh=no
4528 cat > $TMPC << EOF
4529 #include <ggi/ggi.h>
4530 #include <ggi/wmh.h>
4531 int main(void) { ggiInit(); ggiWmhInit(); return 0; }
4533 cc_check -lggi -lggiwmh && _ggiwmh=yes
4535 # needed to get right output on obscure combination
4536 # like --disable-ggi --enable-ggiwmh
4537 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4538 def_ggiwmh='#define CONFIG_GGIWMH 1'
4539 libs_mplayer="$libs_mplayer -lggiwmh"
4540 else
4541 _ggiwmh=no
4542 def_ggiwmh='#undef CONFIG_GGIWMH'
4544 echores "$_ggiwmh"
4547 echocheck "AA"
4548 if test "$_aa" = auto ; then
4549 cat > $TMPC << EOF
4550 #include <aalib.h>
4551 extern struct aa_hardware_params aa_defparams;
4552 extern struct aa_renderparams aa_defrenderparams;
4553 int main(void) {
4554 aa_context *c;
4555 aa_renderparams *p;
4556 (void) aa_init(0, 0, 0);
4557 c = aa_autoinit(&aa_defparams);
4558 p = aa_getrenderparams();
4559 aa_autoinitkbd(c,0);
4560 return 0; }
4562 _aa=no
4563 for _ld_tmp in "-laa" ; do
4564 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4565 done
4567 if test "$_aa" = yes ; then
4568 def_aa='#define CONFIG_AA 1'
4569 if cygwin ; then
4570 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4572 _vomodules="aa $_vomodules"
4573 else
4574 def_aa='#undef CONFIG_AA'
4575 _novomodules="aa $_novomodules"
4577 echores "$_aa"
4580 echocheck "CACA"
4581 if test "$_caca" = auto ; then
4582 _caca=no
4583 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4584 cat > $TMPC << EOF
4585 #include <caca.h>
4586 #ifdef CACA_API_VERSION_1
4587 #include <caca0.h>
4588 #endif
4589 int main(void) { (void) caca_init(); return 0; }
4591 cc_check $(caca-config --libs) && _caca=yes
4594 if test "$_caca" = yes ; then
4595 def_caca='#define CONFIG_CACA 1'
4596 extra_cflags="$extra_cflags $(caca-config --cflags)"
4597 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4598 _vomodules="caca $_vomodules"
4599 else
4600 def_caca='#undef CONFIG_CACA'
4601 _novomodules="caca $_novomodules"
4603 echores "$_caca"
4606 echocheck "SVGAlib"
4607 if test "$_svga" = auto ; then
4608 cat > $TMPC << EOF
4609 #include <vga.h>
4610 int main(void) { return 0; }
4612 _svga=no
4613 cc_check -lvga $_ld_lm && _svga=yes
4615 if test "$_svga" = yes ; then
4616 def_svga='#define CONFIG_SVGALIB 1'
4617 libs_mplayer="$libs_mplayer -lvga"
4618 _vomodules="svga $_vomodules"
4619 else
4620 def_svga='#undef CONFIG_SVGALIB'
4621 _novomodules="svga $_novomodules"
4623 echores "$_svga"
4626 echocheck "FBDev"
4627 if test "$_fbdev" = auto ; then
4628 _fbdev=no
4629 linux && _fbdev=yes
4631 if test "$_fbdev" = yes ; then
4632 def_fbdev='#define CONFIG_FBDEV 1'
4633 _vomodules="fbdev $_vomodules"
4634 else
4635 def_fbdev='#undef CONFIG_FBDEV'
4636 _novomodules="fbdev $_novomodules"
4638 echores "$_fbdev"
4642 echocheck "DVB"
4643 if test "$_dvb" = auto ; then
4644 _dvb=no
4645 cat >$TMPC << EOF
4646 #include <poll.h>
4647 #include <sys/ioctl.h>
4648 #include <stdio.h>
4649 #include <time.h>
4650 #include <unistd.h>
4651 #include <ost/dmx.h>
4652 #include <ost/frontend.h>
4653 #include <ost/sec.h>
4654 #include <ost/video.h>
4655 #include <ost/audio.h>
4656 int main(void) {return 0;}
4658 for _inc_tmp in "" "-I/usr/src/DVB/ost/include" ; do
4659 cc_check $_inc_tmp && _dvb=yes && \
4660 extra_cflags="$extra_cflags $_inc_tmp" && break
4661 done
4663 echores "$_dvb"
4664 if test "$_dvb" = yes ; then
4665 def_dvb='#define CONFIG_DVB 1'
4666 def_dvbin='#define CONFIG_DVBIN 1'
4667 _aomodules="mpegpes(dvb) $_aomodules"
4668 _vomodules="mpegpes(dvb) $_vomodules"
4671 echocheck "DVB HEAD"
4672 if test "$_dvbhead" = auto ; then
4673 _dvbhead=no
4675 cat >$TMPC << EOF
4676 #include <poll.h>
4677 #include <sys/ioctl.h>
4678 #include <stdio.h>
4679 #include <time.h>
4680 #include <unistd.h>
4681 #include <linux/dvb/dmx.h>
4682 #include <linux/dvb/frontend.h>
4683 #include <linux/dvb/video.h>
4684 #include <linux/dvb/audio.h>
4685 int main(void) {return 0;}
4687 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4688 cc_check $_inc_tmp && _dvbhead=yes && \
4689 extra_cflags="$extra_cflags $_inc_tmp" && break
4690 done
4692 echores "$_dvbhead"
4693 if test "$_dvbhead" = yes ; then
4694 def_dvb='#define CONFIG_DVB 1'
4695 def_dvb_head='#define CONFIG_DVB_HEAD 1'
4696 def_dvbin='#define CONFIG_DVBIN 1'
4697 _aomodules="mpegpes(dvb) $_aomodules"
4698 _vomodules="mpegpes(dvb) $_vomodules"
4701 if test "$_dvbhead" = no && test "$_dvb" = no ; then
4702 def_dvb='#undef CONFIG_DVB'
4703 def_dvb_head='#undef CONFIG_DVB_HEAD'
4704 def_dvbin='#undef CONFIG_DVBIN '
4705 _aomodules="mpegpes(file) $_aomodules"
4706 _vomodules="mpegpes(file) $_vomodules"
4709 if test "$_dvb" = yes || test "$_dvbhead" = yes ; then
4710 _dvbin=yes
4711 _inputmodules="dvb $_inputmodules"
4712 else
4713 _dvbin=no
4714 _noinputmodules="dvb $_noinputmodules"
4718 if darwin; then
4720 echocheck "QuickTime"
4721 if test "$quicktime" = auto ; then
4722 cat > $TMPC <<EOF
4723 #include <QuickTime/QuickTime.h>
4724 int main(void) {
4725 ImageDescription *desc;
4726 EnterMovies();
4727 ExitMovies();
4728 return 0;
4731 quicktime=no
4732 cc_check -framework QuickTime && quicktime=yes
4734 if test "$quicktime" = yes ; then
4735 extra_ldflags="$extra_ldflags -framework QuickTime"
4736 def_quicktime='#define CONFIG_QUICKTIME 1'
4737 else
4738 def_quicktime='#undef CONFIG_QUICKTIME'
4739 _quartz=no
4741 echores $quicktime
4743 echocheck "Quartz"
4744 if test "$_quartz" = auto ; then
4745 cat > $TMPC <<EOF
4746 #include <Carbon/Carbon.h>
4747 int main(void) {
4748 CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false);
4749 return 0;
4752 _quartz=no
4753 cc_check -framework Carbon && _quartz=yes
4755 if test "$_quartz" = yes ; then
4756 libs_mplayer="$libs_mplayer -framework Carbon"
4757 def_quartz='#define CONFIG_QUARTZ 1'
4758 _vomodules="quartz $_vomodules"
4759 else
4760 def_quartz='#undef CONFIG_QUARTZ'
4761 _novomodules="quartz $_novomodules"
4763 echores $_quartz
4765 echocheck "CoreVideo"
4766 if test "$_corevideo" = auto ; then
4767 cat > $TMPC <<EOF
4768 #include <Carbon/Carbon.h>
4769 #include <CoreServices/CoreServices.h>
4770 #include <OpenGL/OpenGL.h>
4771 #include <QuartzCore/CoreVideo.h>
4772 int main(void) { return 0; }
4774 _corevideo=no
4775 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4777 if test "$_corevideo" = yes ; then
4778 _vomodules="corevideo $_vomodules"
4779 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4780 def_corevideo='#define CONFIG_COREVIDEO 1'
4781 else
4782 _novomodules="corevideo $_novomodules"
4783 def_corevideo='#undef CONFIG_COREVIDEO'
4785 echores "$_corevideo"
4787 fi #if darwin
4790 # make sure this stays below CoreVideo to avoid issues due to namespace
4791 # conflicts between -lGL and -framework OpenGL
4792 echocheck "OpenGL"
4793 #Note: this test is run even with --enable-gl since we autodetect linker flags
4794 if (test "$_x11" = yes || win32) && test "$_gl" != no ; then
4795 cat > $TMPC << EOF
4796 #ifdef GL_WIN32
4797 #include <windows.h>
4798 #include <GL/gl.h>
4799 #else
4800 #include <GL/gl.h>
4801 #include <X11/Xlib.h>
4802 #include <GL/glx.h>
4803 #endif
4804 int main(void) {
4805 #ifdef GL_WIN32
4806 HDC dc;
4807 wglCreateContext(dc);
4808 #else
4809 glXCreateContext(NULL, NULL, NULL, True);
4810 #endif
4811 glFinish();
4812 return 0;
4815 _gl=no
4816 if cc_check -lGL $_ld_lm ; then
4817 _gl=yes
4818 libs_mplayer="$libs_mplayer -lGL $_ld_dl"
4819 elif cc_check -lGL $_ld_lm $_ld_pthread ; then
4820 _gl=yes
4821 libs_mplayer="$libs_mplayer -lGL $_ld_pthread $_ld_dl"
4822 elif cc_check -DGL_WIN32 -lopengl32 ; then
4823 _gl=yes
4824 _gl_win32=yes
4825 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
4827 else
4828 _gl=no
4830 if test "$_gl" = yes ; then
4831 def_gl='#define CONFIG_GL 1'
4832 if test "$_gl_win32" = yes ; then
4833 def_gl_win32='#define GL_WIN32 1'
4834 _res_comment="win32 version"
4836 _vomodules="opengl $_vomodules"
4837 else
4838 def_gl='#undef CONFIG_GL'
4839 def_gl_win32='#undef GL_WIN32'
4840 _novomodules="opengl $_novomodules"
4842 echores "$_gl"
4844 echocheck "MatrixView"
4845 if test "$_gl" = no ; then
4846 _matrixview=no
4848 if test "$_matrixview" = yes ; then
4849 _vomodules="matrixview $_vomodules"
4850 def_matrixview='#define HAVE_MATRIXVIEW 1'
4851 else
4852 _novomodules="matrixview $_novomodules"
4853 def_matrixview='#undef HAVE_MATRIXVIEW'
4855 echores "$_matrixview"
4857 echocheck "PNG support"
4858 if test "$_png" = auto ; then
4859 _png=no
4860 if irix ; then
4861 # Don't check for -lpng on irix since it has its own libpng
4862 # incompatible with the GNU libpng
4863 _res_comment="disabled on irix (not GNU libpng)"
4864 else
4865 cat > $TMPC << EOF
4866 #include <png.h>
4867 #include <string.h>
4868 int main(void) {
4869 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4870 printf("libpng: %s\n", png_libpng_ver);
4871 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4874 cc_check -lpng -lz $_ld_lm && _png=yes
4877 echores "$_png"
4878 if test "$_png" = yes ; then
4879 def_png='#define CONFIG_PNG 1'
4880 extra_ldflags="$extra_ldflags -lpng -lz"
4881 _vomodules="png $_vomodules"
4882 else
4883 def_png='#undef CONFIG_PNG'
4884 _novomodules="png $_novomodules"
4887 echocheck "MNG support"
4888 if test "$_mng" = auto ; then
4889 _mng=no
4890 cat > $TMPC << EOF
4891 #include <libmng.h>
4892 int main(void) {
4893 const char * p_ver = mng_version_text();
4894 return !p_ver || p_ver[0] == 0;
4897 if cc_check -lmng -lz $_ld_lm ; then
4898 _mng=yes
4901 echores "$_mng"
4902 if test "$_mng" = yes ; then
4903 def_mng='#define CONFIG_MNG 1'
4904 extra_ldflags="$extra_ldflags -lmng -lz"
4905 else
4906 def_mng='#undef CONFIG_MNG'
4909 echocheck "JPEG support"
4910 if test "$_jpeg" = auto ; then
4911 _jpeg=no
4912 cat > $TMPC << EOF
4913 #include <stdio.h>
4914 #include <stdlib.h>
4915 #include <setjmp.h>
4916 #include <string.h>
4917 #include <jpeglib.h>
4918 int main(void) { return 0; }
4920 cc_check -ljpeg $_ld_lm && _jpeg=yes
4922 echores "$_jpeg"
4924 if test "$_jpeg" = yes ; then
4925 def_jpeg='#define CONFIG_JPEG 1'
4926 _vomodules="jpeg $_vomodules"
4927 extra_ldflags="$extra_ldflags -ljpeg"
4928 else
4929 def_jpeg='#undef CONFIG_JPEG'
4930 _novomodules="jpeg $_novomodules"
4935 echocheck "PNM support"
4936 if test "$_pnm" = yes; then
4937 def_pnm="#define CONFIG_PNM 1"
4938 _vomodules="pnm $_vomodules"
4939 else
4940 def_pnm="#undef CONFIG_PNM"
4941 _novomodules="pnm $_novomodules"
4943 echores "$_pnm"
4947 echocheck "GIF support"
4948 # This is to appease people who want to force gif support.
4949 # If it is forced to yes, then we still do checks to determine
4950 # which gif library to use.
4951 if test "$_gif" = yes ; then
4952 _force_gif=yes
4953 _gif=auto
4956 if test "$_gif" = auto ; then
4957 _gif=no
4958 cat > $TMPC << EOF
4959 #include <gif_lib.h>
4960 int main(void) { return 0; }
4962 for _ld_gif in "-lungif" "-lgif" ; do
4963 cc_check $_ld_gif && _gif=yes && break
4964 done
4967 # If no library was found, and the user wants support forced,
4968 # then we force it on with libgif, as this is the safest
4969 # assumption IMHO. (libungif & libregif both create symbolic
4970 # links to libgif. We also assume that no x11 support is needed,
4971 # because if you are forcing this, then you _should_ know what
4972 # you are doing. [ Besides, package maintainers should never
4973 # have compiled x11 deps into libungif in the first place. ] )
4974 # </rant>
4975 # --Joey
4976 if test "$_force_gif" = yes && test "$_gif" = no ; then
4977 _gif=yes
4978 _ld_gif="-lgif"
4981 if test "$_gif" = yes ; then
4982 def_gif='#define CONFIG_GIF 1'
4983 _codecmodules="gif $_codecmodules"
4984 _vomodules="gif89a $_vomodules"
4985 _res_comment="old version, some encoding functions disabled"
4986 def_gif_4='#undef CONFIG_GIF_4'
4987 extra_ldflags="$extra_ldflags $_ld_gif"
4989 cat > $TMPC << EOF
4990 #include <signal.h>
4991 #include <gif_lib.h>
4992 void catch() { exit(1); }
4993 int main(void) {
4994 signal(SIGSEGV, catch); // catch segfault
4995 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4996 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4997 return 0;
5000 if cc_check "$_ld_gif" ; then
5001 def_gif_4='#define CONFIG_GIF_4 1'
5002 _res_comment=""
5004 else
5005 def_gif='#undef CONFIG_GIF'
5006 def_gif_4='#undef CONFIG_GIF_4'
5007 _novomodules="gif89a $_novomodules"
5008 _nocodecmodules="gif $_nocodecmodules"
5010 echores "$_gif"
5013 case "$_gif" in yes*)
5014 echocheck "broken giflib workaround"
5015 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
5017 cat > $TMPC << EOF
5018 #include <gif_lib.h>
5019 int main(void) {
5020 GifFileType gif;
5021 printf("UserData is at address %p\n", gif.UserData);
5022 return 0;
5025 if cc_check "$_ld_gif" ; then
5026 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
5027 echores "disabled"
5028 else
5029 echores "enabled"
5032 esac
5035 echocheck "VESA support"
5036 if test "$_vesa" = auto ; then
5037 cat > $TMPC << EOF
5038 #include <vbe.h>
5039 int main(void) { vbeVersion(); return 0; }
5041 _vesa=no
5042 cc_check -lvbe -llrmi && _vesa=yes
5044 if test "$_vesa" = yes ; then
5045 def_vesa='#define CONFIG_VESA 1'
5046 libs_mplayer="$libs_mplayer -lvbe -llrmi"
5047 _vomodules="vesa $_vomodules"
5048 else
5049 def_vesa='#undef CONFIG_VESA'
5050 _novomodules="vesa $_novomodules"
5052 echores "$_vesa"
5054 #################
5055 # VIDEO + AUDIO #
5056 #################
5059 echocheck "SDL"
5060 if test -z "$_sdlconfig" ; then
5061 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
5062 _sdlconfig="sdl-config"
5063 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
5064 _sdlconfig="sdl11-config"
5065 else
5066 _sdlconfig=false
5069 if test "$_sdl" = auto || test "$_sdl" = yes ; then
5070 cat > $TMPC << EOF
5071 #include <SDL.h>
5072 int main(int argc, char *argv[]) {
5073 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
5074 return 0;
5077 _sdl=no
5078 if "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
5079 if cc_check $($_sdlconfig --cflags) $($_sdlconfig --libs) >>"$TMPLOG" 2>&1 ; then
5080 _sdlversion=$($_sdlconfig --version | sed 's/[^0-9]//g')
5081 if test "$_sdlversion" -gt 116 ; then
5082 if test "$_sdlversion" -lt 121 ; then
5083 def_sdlbuggy='#define BUGGY_SDL'
5084 else
5085 def_sdlbuggy='#undef BUGGY_SDL'
5087 _sdl=yes
5092 if test "$_sdl" = yes ; then
5093 def_sdl='#define CONFIG_SDL 1'
5094 if cygwin ; then
5095 libs_mplayer="$libs_mplayer $($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
5096 extra_cflags="$extra_cflags $($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
5097 elif mingw32 ; then
5098 libs_mplayer="$libs_mplayer $($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)"
5099 extra_cflags="$extra_cflags $($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)"
5100 else
5101 libs_mplayer="$libs_mplayer $($_sdlconfig --libs)"
5102 extra_cflags="$extra_cflags $($_sdlconfig --cflags | sed s/-D_GNU_SOURCE=1//)"
5104 _vomodules="sdl $_vomodules"
5105 _aomodules="sdl $_aomodules"
5106 _res_comment="using $_sdlconfig"
5107 else
5108 def_sdl='#undef CONFIG_SDL'
5109 _novomodules="sdl $_novomodules"
5110 _noaomodules="sdl $_noaomodules"
5112 echores "$_sdl"
5115 if os2 ; then
5116 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
5117 if test "$_kva" = auto; then
5118 cat > $TMPC << EOF
5119 #include <os2.h>
5120 #include <kva.h>
5121 int main( void ) { return 0; }
5123 _kva=no;
5124 cc_check -lkva && _kva=yes
5126 if test "$_kva" = yes ; then
5127 def_kva='#define CONFIG_KVA 1'
5128 libs_mplayer="$libs_mplayer -lkva"
5129 _vomodules="kva $_vomodules"
5130 else
5131 def_kva='#undef CONFIG_KVA'
5132 _novomodules="kva $_novomodules"
5134 echores "$_kva"
5135 fi #if os2
5138 if win32; then
5140 echocheck "Windows waveout"
5141 if test "$_win32waveout" = auto ; then
5142 cat > $TMPC << EOF
5143 #include <windows.h>
5144 #include <mmsystem.h>
5145 int main(void) { return 0; }
5147 _win32waveout=no
5148 cc_check -lwinmm && _win32waveout=yes
5150 if test "$_win32waveout" = yes ; then
5151 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
5152 libs_mplayer="$libs_mplayer -lwinmm"
5153 _aomodules="win32 $_aomodules"
5154 else
5155 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
5156 _noaomodules="win32 $_noaomodules"
5158 echores "$_win32waveout"
5160 echocheck "Direct3D"
5161 if test "$_direct3d" = auto ; then
5162 cat > $TMPC << EOF
5163 #include <windows.h>
5164 #include <d3d9.h>
5165 int main(void) { return 0; }
5167 _direct3d=no
5168 cc_check -ld3d9 && _direct3d=yes
5170 if test "$_direct3d" = yes ; then
5171 def_direct3d='#define CONFIG_DIRECT3D 1'
5172 libs_mplayer="$libs_mplayer -ld3d9"
5173 _vomodules="direct3d $_vomodules"
5174 else
5175 def_direct3d='#undef CONFIG_DIRECT3D'
5176 _novomodules="direct3d $_novomodules"
5178 echores "$_direct3d"
5180 echocheck "Directx"
5181 if test "$_directx" = auto ; then
5182 cat > $TMPC << EOF
5183 #include <windows.h>
5184 #include <ddraw.h>
5185 #include <dsound.h>
5186 int main(void) { return 0; }
5188 _directx=no
5189 cc_check -lgdi32 && _directx=yes
5191 if test "$_directx" = yes ; then
5192 def_directx='#define CONFIG_DIRECTX 1'
5193 libs_mplayer="$libs_mplayer -lgdi32"
5194 _vomodules="directx $_vomodules"
5195 _aomodules="dsound $_aomodules"
5196 else
5197 def_directx='#undef CONFIG_DIRECTX'
5198 _novomodules="directx $_novomodules"
5199 _noaomodules="dsound $_noaomodules"
5201 echores "$_directx"
5203 fi #if win32; then
5206 echocheck "DXR2"
5207 if test "$_dxr2" = auto; then
5208 _dxr2=no
5209 cat > $TMPC << EOF
5210 #include <dxr2ioctl.h>
5211 int main(void) { return 0; }
5213 for _inc_tmp in "" -I/usr/local/include/dxr2 -I/usr/include/dxr2; do
5214 cc_check $_inc_tmp && _dxr2=yes && \
5215 extra_cflags="$extra_cflags $_inc_tmp" && break
5216 done
5218 if test "$_dxr2" = yes; then
5219 def_dxr2='#define CONFIG_DXR2 1'
5220 _aomodules="dxr2 $_aomodules"
5221 _vomodules="dxr2 $_vomodules"
5222 else
5223 def_dxr2='#undef CONFIG_DXR2'
5224 _noaomodules="dxr2 $_noaomodules"
5225 _novomodules="dxr2 $_novomodules"
5227 echores "$_dxr2"
5229 echocheck "DXR3/H+"
5230 if test "$_dxr3" = auto ; then
5231 cat > $TMPC << EOF
5232 #include <linux/em8300.h>
5233 int main(void) { return 0; }
5235 _dxr3=no
5236 cc_check && _dxr3=yes
5238 if test "$_dxr3" = yes ; then
5239 def_dxr3='#define CONFIG_DXR3 1'
5240 _vomodules="dxr3 $_vomodules"
5241 else
5242 def_dxr3='#undef CONFIG_DXR3'
5243 _novomodules="dxr3 $_novomodules"
5245 echores "$_dxr3"
5248 echocheck "IVTV TV-Out (pre linux-2.6.24)"
5249 if test "$_ivtv" = auto ; then
5250 cat > $TMPC << EOF
5251 #include <stdlib.h>
5252 #include <inttypes.h>
5253 #include <linux/types.h>
5254 #include <linux/videodev2.h>
5255 #include <linux/ivtv.h>
5256 #include <sys/ioctl.h>
5257 int main(void) {
5258 struct ivtv_cfg_stop_decode sd;
5259 struct ivtv_cfg_start_decode sd1;
5260 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
5261 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
5262 return 0; }
5264 _ivtv=no
5265 cc_check && _ivtv=yes
5267 if test "$_ivtv" = yes ; then
5268 def_ivtv='#define CONFIG_IVTV 1'
5269 _vomodules="ivtv $_vomodules"
5270 _aomodules="ivtv $_aomodules"
5271 else
5272 def_ivtv='#undef CONFIG_IVTV'
5273 _novomodules="ivtv $_novomodules"
5274 _noaomodules="ivtv $_noaomodules"
5276 echores "$_ivtv"
5279 echocheck "V4L2 MPEG Decoder"
5280 if test "$_v4l2" = auto ; then
5281 cat > $TMPC << EOF
5282 #include <stdlib.h>
5283 #include <inttypes.h>
5284 #include <linux/types.h>
5285 #include <linux/videodev2.h>
5286 #include <linux/version.h>
5287 int main(void) {
5288 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
5289 #error kernel headers too old, need 2.6.22
5290 #endif
5291 struct v4l2_ext_controls ctrls;
5292 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
5293 return 0;
5296 _v4l2=no
5297 cc_check && _v4l2=yes
5299 if test "$_v4l2" = yes ; then
5300 def_v4l2='#define CONFIG_V4L2_DECODER 1'
5301 _vomodules="v4l2 $_vomodules"
5302 _aomodules="v4l2 $_aomodules"
5303 else
5304 def_v4l2='#undef CONFIG_V4L2_DECODER'
5305 _novomodules="v4l2 $_novomodules"
5306 _noaomodules="v4l2 $_noaomodules"
5308 echores "$_v4l2"
5312 #########
5313 # AUDIO #
5314 #########
5317 echocheck "OSS Audio"
5318 if test "$_ossaudio" = auto ; then
5319 cat > $TMPC << EOF
5320 #include <sys/ioctl.h>
5321 #include <$_soundcard_header>
5322 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
5324 _ossaudio=no
5325 cc_check && _ossaudio=yes
5327 if test "$_ossaudio" = yes ; then
5328 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
5329 _aomodules="oss $_aomodules"
5330 if test "$_linux_devfs" = yes; then
5331 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound/dsp"'
5332 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/sound/mixer"'
5333 else
5334 cat > $TMPC << EOF
5335 #include <sys/ioctl.h>
5336 #include <$_soundcard_header>
5337 #ifdef OPEN_SOUND_SYSTEM
5338 int main(void) { return 0; }
5339 #else
5340 #error Not the real thing
5341 #endif
5343 _real_ossaudio=no
5344 cc_check && _real_ossaudio=yes
5345 if test "$_real_ossaudio" = yes; then
5346 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5347 # Check for OSS4 headers (override default headers)
5348 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
5349 if test -f /etc/oss.conf; then
5350 . /etc/oss.conf
5351 _ossinc="$OSSLIBDIR/include"
5352 if test -f "$_ossinc/sys/soundcard.h"; then
5353 extra_cflags="-I$_ossinc $extra_cflags"
5356 elif netbsd || openbsd ; then
5357 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
5358 extra_ldflags="$extra_ldflags -lossaudio"
5359 else
5360 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5362 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
5364 else
5365 def_ossaudio='#undef CONFIG_OSS_AUDIO'
5366 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
5367 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
5368 _noaomodules="oss $_noaomodules"
5370 echores "$_ossaudio"
5373 echocheck "aRts"
5374 if test "$_arts" = auto ; then
5375 _arts=no
5376 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
5378 cat > $TMPC << EOF
5379 #include <artsc.h>
5380 int main(void) { return 0; }
5382 cc_check $(artsc-config --libs) $(artsc-config --cflags) && _arts=yes
5387 if test "$_arts" = yes ; then
5388 def_arts='#define CONFIG_ARTS 1'
5389 _aomodules="arts $_aomodules"
5390 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
5391 extra_cflags="$extra_cflags $(artsc-config --cflags)"
5392 else
5393 _noaomodules="arts $_noaomodules"
5395 echores "$_arts"
5398 echocheck "EsounD"
5399 if test "$_esd" = auto ; then
5400 _esd=no
5401 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
5403 cat > $TMPC << EOF
5404 #include <esd.h>
5405 int main(void) { int fd = esd_open_sound("test"); return fd; }
5407 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd=yes
5411 echores "$_esd"
5413 if test "$_esd" = yes ; then
5414 def_esd='#define CONFIG_ESD 1'
5415 _aomodules="esd $_aomodules"
5416 libs_mplayer="$libs_mplayer $(esd-config --libs)"
5417 extra_cflags="$extra_cflags $(esd-config --cflags)"
5419 echocheck "esd_get_latency()"
5420 cat > $TMPC << EOF
5421 #include <esd.h>
5422 int main(void) { return esd_get_latency(0); }
5424 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
5425 echores "$_esd_latency"
5426 else
5427 def_esd='#undef CONFIG_ESD'
5428 def_esd_latency='#undef CONFIG_ESD_LATENCY'
5429 _noaomodules="esd $_noaomodules"
5433 echocheck "NAS"
5434 if test "$_nas" = auto ; then
5435 cat > $TMPC << EOF
5436 #include <audio/audiolib.h>
5437 int main(void) { return 0; }
5439 _nas=no
5440 cc_check $_ld_lm -laudio -lXt && _nas=yes
5442 if test "$_nas" = yes ; then
5443 def_nas='#define CONFIG_NAS 1'
5444 libs_mplayer="$libs_mplayer -laudio -lXt"
5445 _aomodules="nas $_aomodules"
5446 else
5447 _noaomodules="nas $_noaomodules"
5448 def_nas='#undef CONFIG_NAS'
5450 echores "$_nas"
5453 echocheck "pulse"
5454 if test "$_pulse" = auto ; then
5455 _pulse=no
5456 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5458 cat > $TMPC << EOF
5459 #include <pulse/pulseaudio.h>
5460 int main(void) { return 0; }
5462 cc_check $($_pkg_config --libs --cflags libpulse) && _pulse=yes
5466 echores "$_pulse"
5468 if test "$_pulse" = yes ; then
5469 def_pulse='#define CONFIG_PULSE 1'
5470 _aomodules="pulse $_aomodules"
5471 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
5472 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
5473 else
5474 def_pulse='#undef CONFIG_PULSE'
5475 _noaomodules="pulse $_noaomodules"
5479 echocheck "JACK"
5480 if test "$_jack" = auto ; then
5481 _jack=yes
5483 cat > $TMPC << EOF
5484 #include <jack/jack.h>
5485 int main(void) { jack_client_open("test", JackUseExactName, NULL); return 0; }
5487 if cc_check -ljack ; then
5488 libs_mplayer="$libs_mplayer -ljack"
5489 elif cc_check $($_pkg_config --libs --cflags --silence-errors jack) ; then
5490 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
5491 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
5492 else
5493 _jack=no
5497 if test "$_jack" = yes ; then
5498 def_jack='#define CONFIG_JACK 1'
5499 _aomodules="jack $_aomodules"
5500 else
5501 _noaomodules="jack $_noaomodules"
5503 echores "$_jack"
5505 echocheck "OpenAL"
5506 if test "$_openal" = auto ; then
5507 _openal=no
5508 cat > $TMPC << EOF
5509 #ifdef OPENAL_AL_H
5510 #include <OpenAL/al.h>
5511 #else
5512 #include <AL/al.h>
5513 #endif
5514 int main(void) {
5515 alSourceQueueBuffers(0, 0, 0);
5516 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5517 return 0;
5520 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5521 cc_check $I && _openal=yes && break
5522 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5523 done
5524 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
5526 if test "$_openal" = yes ; then
5527 def_openal='#define CONFIG_OPENAL 1'
5528 _aomodules="openal $_aomodules"
5529 else
5530 _noaomodules="openal $_noaomodules"
5532 echores "$_openal"
5534 echocheck "ALSA audio"
5535 if test "$_alloca" != yes ; then
5536 _alsa=no
5537 _res_comment="alloca missing"
5539 if test "$_alsa" != no ; then
5540 _alsa=no
5541 cat > $TMPC << EOF
5542 #include <sys/time.h>
5543 #include <sys/asoundlib.h>
5544 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5545 #error "alsa version != 0.5.x"
5546 #endif
5547 int main(void) { return 0; }
5549 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5551 cat > $TMPC << EOF
5552 #include <sys/time.h>
5553 #include <sys/asoundlib.h>
5554 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5555 #error "alsa version != 0.9.x"
5556 #endif
5557 int main(void) { return 0; }
5559 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5560 cat > $TMPC << EOF
5561 #include <sys/time.h>
5562 #include <alsa/asoundlib.h>
5563 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5564 #error "alsa version != 0.9.x"
5565 #endif
5566 int main(void) { return 0; }
5568 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5570 cat > $TMPC << EOF
5571 #include <sys/time.h>
5572 #include <sys/asoundlib.h>
5573 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5574 #error "alsa version != 1.0.x"
5575 #endif
5576 int main(void) { return 0; }
5578 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5579 cat > $TMPC << EOF
5580 #include <sys/time.h>
5581 #include <alsa/asoundlib.h>
5582 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5583 #error "alsa version != 1.0.x"
5584 #endif
5585 int main(void) { return 0; }
5587 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5589 def_alsa='#undef CONFIG_ALSA'
5590 def_alsa5='#undef CONFIG_ALSA5'
5591 def_alsa9='#undef CONFIG_ALSA9'
5592 def_alsa1x='#undef CONFIG_ALSA1X'
5593 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5594 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5595 if test "$_alsaver" ; then
5596 _alsa=yes
5597 if test "$_alsaver" = '0.5.x' ; then
5598 _alsa5=yes
5599 _aomodules="alsa5 $_aomodules"
5600 def_alsa5='#define CONFIG_ALSA5 1'
5601 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5602 _res_comment="using alsa 0.5.x and sys/asoundlib.h"
5603 elif test "$_alsaver" = '0.9.x-sys' ; then
5604 _alsa9=yes
5605 _aomodules="alsa $_aomodules"
5606 def_alsa='#define CONFIG_ALSA 1'
5607 def_alsa9='#define CONFIG_ALSA9 1'
5608 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5609 _res_comment="using alsa 0.9.x and sys/asoundlib.h"
5610 elif test "$_alsaver" = '0.9.x-alsa' ; then
5611 _alsa9=yes
5612 _aomodules="alsa $_aomodules"
5613 def_alsa='#define CONFIG_ALSA 1'
5614 def_alsa9='#define CONFIG_ALSA9 1'
5615 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5616 _res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5617 elif test "$_alsaver" = '1.0.x-sys' ; then
5618 _alsa1x=yes
5619 _aomodules="alsa $_aomodules"
5620 def_alsa='#define CONFIG_ALSA 1'
5621 def_alsa1x="#define CONFIG_ALSA1X 1"
5622 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5623 _res_comment="using alsa 1.0.x and sys/asoundlib.h"
5624 elif test "$_alsaver" = '1.0.x-alsa' ; then
5625 _alsa1x=yes
5626 _aomodules="alsa $_aomodules"
5627 def_alsa='#define CONFIG_ALSA 1'
5628 def_alsa1x="#define CONFIG_ALSA1X 1"
5629 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5630 _res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5631 else
5632 _alsa=no
5633 _res_comment="unknown version"
5635 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5636 else
5637 _noaomodules="alsa $_noaomodules"
5639 echores "$_alsa"
5642 echocheck "Sun audio"
5643 if test "$_sunaudio" = auto ; then
5644 cat > $TMPC << EOF
5645 #include <sys/types.h>
5646 #include <sys/audioio.h>
5647 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5649 _sunaudio=no
5650 cc_check && _sunaudio=yes
5652 if test "$_sunaudio" = yes ; then
5653 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5654 _aomodules="sun $_aomodules"
5655 else
5656 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5657 _noaomodules="sun $_noaomodules"
5659 echores "$_sunaudio"
5662 def_mlib='#define CONFIG_MLIB 0'
5663 if sunos; then
5664 echocheck "Sun mediaLib"
5665 if test "$_mlib" = auto ; then
5666 _mlib=no
5667 cat > $TMPC << EOF
5668 #include <mlib.h>
5669 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; }
5671 cc_check -lmlib && _mlib=yes && def_mlib='#define CONFIG_MLIB 1'
5673 echores "$_mlib"
5674 fi #if sunos
5677 if darwin; then
5678 echocheck "CoreAudio"
5679 if test "$_coreaudio" = auto ; then
5680 cat > $TMPC <<EOF
5681 #include <CoreAudio/CoreAudio.h>
5682 #include <AudioToolbox/AudioToolbox.h>
5683 #include <AudioUnit/AudioUnit.h>
5684 int main(void) { return 0; }
5686 _coreaudio=no
5687 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5689 if test "$_coreaudio" = yes ; then
5690 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5691 def_coreaudio='#define CONFIG_COREAUDIO 1'
5692 _aomodules="coreaudio $_aomodules"
5693 else
5694 def_coreaudio='#undef CONFIG_COREAUDIO'
5695 _noaomodules="coreaudio $_noaomodules"
5697 echores $_coreaudio
5698 fi #if darwin
5701 if irix; then
5702 echocheck "SGI audio"
5703 if test "$_sgiaudio" = auto ; then
5704 # check for SGI audio
5705 cat > $TMPC << EOF
5706 #include <dmedia/audio.h>
5707 int main(void) { return 0; }
5709 _sgiaudio=no
5710 cc_check && _sgiaudio=yes
5712 if test "$_sgiaudio" = "yes" ; then
5713 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5714 libs_mplayer="$libs_mplayer -laudio"
5715 _aomodules="sgi $_aomodules"
5716 else
5717 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5718 _noaomodules="sgi $_noaomodules"
5720 echores "$_sgiaudio"
5721 fi #if irix
5724 if os2 ; then
5725 echocheck "DART"
5726 if test "$_dart" = auto; then
5727 cat > $TMPC << EOF
5728 #include <os2.h>
5729 #include <dart.h>
5730 int main( void ) { return 0; }
5732 _dart=no;
5733 cc_check -ldart && _dart=yes
5735 if test "$_dart" = yes ; then
5736 def_dart='#define CONFIG_DART 1'
5737 libs_mplayer="$libs_mplayer -ldart"
5738 _aomodules="dart $_aomodules"
5739 else
5740 def_dart='#undef CONFIG_DART'
5741 _noaomodules="dart $_noaomodules"
5743 echores "$_dart"
5744 fi #if os2
5747 # set default CD/DVD devices
5748 if win32 || os2 ; then
5749 default_cdrom_device="D:"
5750 elif darwin ; then
5751 default_cdrom_device="/dev/disk1"
5752 elif dragonfly ; then
5753 default_cdrom_device="/dev/cd0"
5754 elif freebsd ; then
5755 default_cdrom_device="/dev/acd0"
5756 elif openbsd ; then
5757 default_cdrom_device="/dev/rcd0a"
5758 elif sunos ; then
5759 default_cdrom_device="/vol/dev/aliases/cdrom0"
5760 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5761 # file system and the volfs service.
5762 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5763 elif amigaos ; then
5764 default_cdrom_device="a1ide.device:2"
5765 else
5766 default_cdrom_device="/dev/cdrom"
5769 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5770 default_dvd_device=$default_cdrom_device
5771 elif darwin ; then
5772 default_dvd_device="/dev/rdiskN"
5773 else
5774 default_dvd_device="/dev/dvd"
5778 echocheck "VCD support"
5779 if test "$_vcd" = auto; then
5780 _vcd=no
5781 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos; then
5782 _vcd=yes
5783 elif mingw32; then
5784 cat > $TMPC << EOF
5785 #include <ddk/ntddcdrm.h>
5786 int main(void) { return 0; }
5788 cc_check && _vcd=yes
5791 if test "$_vcd" = yes; then
5792 _inputmodules="vcd $_inputmodules"
5793 def_vcd='#define CONFIG_VCD 1'
5794 else
5795 def_vcd='#undef CONFIG_VCD'
5796 _noinputmodules="vcd $_noinputmodules"
5797 _res_comment="not supported on this OS"
5799 echores "$_vcd"
5803 echocheck "dvdread"
5804 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5805 _dvdread_internal=no
5807 if test "$_dvdread_internal" = auto ; then
5808 _dvdread_internal=no
5809 _dvdread=no
5810 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) \
5811 && (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
5812 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) \
5813 || darwin || win32 || os2; then
5814 _dvdread_internal=yes
5815 _dvdread=yes
5816 extra_cflags="-Ilibdvdread4 $extra_cflags"
5818 elif test "$_dvdread" = auto ; then
5819 _dvdread=no
5820 if test "$_dl" = yes; then
5821 cat > $TMPC << EOF
5822 #include <inttypes.h>
5823 #include <dvdread/dvd_reader.h>
5824 #include <dvdread/ifo_types.h>
5825 #include <dvdread/ifo_read.h>
5826 #include <dvdread/nav_read.h>
5827 int main(void) { return 0; }
5829 _dvdreadcflags=$($_dvdreadconfig --cflags)
5830 _dvdreadlibs=$($_dvdreadconfig --libs)
5831 if cc_check -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
5832 $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5833 _dvdread=yes
5834 extra_cflags="$extra_cflags $_dvdreadcflags"
5835 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5836 _res_comment="external"
5841 if test "$_dvdread_internal" = yes; then
5842 def_dvdread='#define CONFIG_DVDREAD 1'
5843 _inputmodules="dvdread(internal) $_inputmodules"
5844 _largefiles=yes
5845 _res_comment="internal"
5846 elif test "$_dvdread" = yes; then
5847 def_dvdread='#define CONFIG_DVDREAD 1'
5848 _largefiles=yes
5849 extra_ldflags="$extra_ldflags -ldvdread"
5850 _inputmodules="dvdread(external) $_inputmodules"
5851 _res_comment="external"
5852 else
5853 def_dvdread='#undef CONFIG_DVDREAD'
5854 _noinputmodules="dvdread $_noinputmodules"
5856 echores "$_dvdread"
5859 echocheck "internal libdvdcss"
5860 if test "$_libdvdcss_internal" = auto ; then
5861 _libdvdcss_internal=no
5862 test "$_dvdread_internal" = yes && _libdvdcss_internal=yes
5863 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5865 if test "$_libdvdcss_internal" = yes ; then
5866 if linux || netbsd || openbsd || bsdos ; then
5867 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5868 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5869 elif freebsd || dragonfly ; then
5870 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5871 elif darwin ; then
5872 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5873 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5874 elif cygwin ; then
5875 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5876 elif beos ; then
5877 cflags_libdvdcss="-DSYS_BEOS"
5878 elif os2 ; then
5879 cflags_libdvdcss="-DSYS_OS2"
5881 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5882 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5883 _inputmodules="libdvdcss(internal) $_inputmodules"
5884 _largefiles=yes
5885 else
5886 _noinputmodules="libdvdcss(internal) $_noinputmodules"
5888 echores "$_libdvdcss_internal"
5891 echocheck "cdparanoia"
5892 if test "$_cdparanoia" = auto ; then
5893 cat > $TMPC <<EOF
5894 #include <cdda_interface.h>
5895 #include <cdda_paranoia.h>
5896 // This need a better test. How ?
5897 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5899 _cdparanoia=no
5900 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5901 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
5902 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5903 done
5905 if test "$_cdparanoia" = yes ; then
5906 _cdda='yes'
5907 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5908 openbsd && extra_ldflags="$extra_ldflags -lutil"
5910 echores "$_cdparanoia"
5913 echocheck "libcdio"
5914 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5915 cat > $TMPC << EOF
5916 #include <stdio.h>
5917 #include <cdio/version.h>
5918 #include <cdio/cdda.h>
5919 #include <cdio/paranoia.h>
5920 int main(void) {
5921 void *test = cdda_verbose_set;
5922 printf("%s\n", CDIO_VERSION);
5923 return test == (void *)1;
5926 _libcdio=no
5927 for _ld_tmp in "" "-lwinmm" ; do
5928 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
5929 cc_check $_ld_tmp $_ld_lm \
5930 && _libcdio=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
5931 done
5932 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
5933 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
5934 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
5935 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes \
5936 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5939 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
5940 _cdda='yes'
5941 def_libcdio='#define CONFIG_LIBCDIO 1'
5942 def_havelibcdio='yes'
5943 else
5944 if test "$_cdparanoia" = yes ; then
5945 _res_comment="using cdparanoia"
5947 def_libcdio='#undef CONFIG_LIBCDIO'
5948 def_havelibcdio='no'
5950 echores "$_libcdio"
5952 if test "$_cdda" = yes ; then
5953 test $_cddb = auto && test $_network = yes && _cddb=yes
5954 def_cdparanoia='#define CONFIG_CDDA 1'
5955 _inputmodules="cdda $_inputmodules"
5956 else
5957 def_cdparanoia='#undef CONFIG_CDDA'
5958 _noinputmodules="cdda $_noinputmodules"
5961 if test "$_cddb" = yes ; then
5962 def_cddb='#define CONFIG_CDDB 1'
5963 _inputmodules="cddb $_inputmodules"
5964 else
5965 _cddb=no
5966 def_cddb='#undef CONFIG_CDDB'
5967 _noinputmodules="cddb $_noinputmodules"
5970 echocheck "bitmap font support"
5971 if test "$_bitmap_font" = yes ; then
5972 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
5973 else
5974 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
5976 echores "$_bitmap_font"
5979 echocheck "freetype >= 2.0.9"
5981 # freetype depends on iconv
5982 if test "$_iconv" = no ; then
5983 _freetype=no
5984 _res_comment="iconv support needed"
5987 if test "$_freetype" = auto ; then
5988 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
5989 cat > $TMPC << EOF
5990 #include <stdio.h>
5991 #include <ft2build.h>
5992 #include FT_FREETYPE_H
5993 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
5994 #error "Need FreeType 2.0.9 or newer"
5995 #endif
5996 int main(void) {
5997 FT_Library library;
5998 FT_Int major=-1,minor=-1,patch=-1;
5999 int err=FT_Init_FreeType(&library);
6000 return 0;
6003 _freetype=no
6004 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
6005 else
6006 _freetype=no
6009 if test "$_freetype" = yes ; then
6010 def_freetype='#define CONFIG_FREETYPE 1'
6011 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
6012 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
6013 else
6014 def_freetype='#undef CONFIG_FREETYPE'
6016 echores "$_freetype"
6018 if test "$_freetype" = no ; then
6019 _fontconfig=no
6020 _res_comment="FreeType support needed"
6022 echocheck "fontconfig"
6023 if test "$_fontconfig" = auto ; then
6024 cat > $TMPC << EOF
6025 #include <stdio.h>
6026 #include <stdlib.h>
6027 #include <fontconfig/fontconfig.h>
6028 int main(void) {
6029 int err = FcInit();
6030 if (err == FcFalse) {
6031 printf("Couldn't initialize fontconfig lib\n");
6032 exit(err);
6034 return 0;
6037 _fontconfig=no
6038 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" ; do
6039 _ld_tmp="-lfontconfig $_ld_tmp"
6040 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6041 done
6042 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
6043 _inc_tmp=$($_pkg_config --cflags fontconfig)
6044 _ld_tmp=$($_pkg_config --libs fontconfig)
6045 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes \
6046 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6049 if test "$_fontconfig" = yes ; then
6050 def_fontconfig='#define CONFIG_FONTCONFIG 1'
6051 else
6052 def_fontconfig='#undef CONFIG_FONTCONFIG'
6054 echores "$_fontconfig"
6057 echocheck "SSA/ASS support"
6058 if test "$_ass" = auto -o "$_ass" = yes ; then
6059 if $_pkg_config libass; then
6060 _ass=yes
6061 def_ass='#define CONFIG_ASS 1'
6062 extra_ldflags="$extra_ldflags $($_pkg_config --libs libass)"
6063 extra_cflags="$extra_cflags $($_pkg_config --cflags libass)"
6064 else
6065 _ass=no
6066 def_ass='#undef CONFIG_ASS'
6068 else
6069 def_ass='#undef CONFIG_ASS'
6071 echores "$_ass"
6074 echocheck "fribidi with charsets"
6075 if test "$_fribidi" = auto ; then
6076 if ( $_fribidiconfig --version ) >/dev/null 2>&1 ; then
6077 cat > $TMPC << EOF
6078 #include <stdio.h>
6079 /* workaround for fribidi 0.10.4 and below */
6080 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
6081 #include <fribidi/fribidi.h>
6082 int main(void) {
6083 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8) {
6084 printf("Fribidi headers are not consistents with the library!\n");
6085 exit(1);
6087 return 0;
6090 _fribidi=no
6091 cc_check $($_fribidiconfig --cflags) $($_fribidiconfig --libs) && _fribidi=yes
6092 else
6093 _fribidi=no
6096 if test "$_fribidi" = yes ; then
6097 def_fribidi='#define CONFIG_FRIBIDI 1'
6098 extra_cflags="$extra_cflags $($_fribidiconfig --cflags)"
6099 extra_ldflags="$extra_ldflags $($_fribidiconfig --libs)"
6100 else
6101 def_fribidi='#undef CONFIG_FRIBIDI'
6103 echores "$_fribidi"
6106 echocheck "ENCA"
6107 if test "$_enca" = auto ; then
6108 cat > $TMPC << EOF
6109 #include <sys/types.h>
6110 #include <enca.h>
6111 int main(void) {
6112 const char **langs;
6113 size_t langcnt;
6114 langs = enca_get_languages(&langcnt);
6115 return 0;
6118 _enca=no
6119 cc_check -lenca $_ld_lm && _enca=yes
6121 if test "$_enca" = yes ; then
6122 def_enca='#define CONFIG_ENCA 1'
6123 extra_ldflags="$extra_ldflags -lenca"
6124 else
6125 def_enca='#undef CONFIG_ENCA'
6127 echores "$_enca"
6130 echocheck "zlib"
6131 cat > $TMPC << EOF
6132 #include <zlib.h>
6133 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; }
6135 _zlib=no
6136 cc_check -lz && _zlib=yes
6137 if test "$_zlib" = yes ; then
6138 def_zlib='#define CONFIG_ZLIB 1'
6139 extra_ldflags="$extra_ldflags -lz"
6140 else
6141 def_zlib='#define CONFIG_ZLIB 0'
6143 echores "$_zlib"
6146 echocheck "bzlib"
6147 bzlib=no
6148 def_bzlib='#define CONFIG_BZLIB 0'
6149 cat > $TMPC << EOF
6150 #include <bzlib.h>
6151 int main(void) { BZ2_bzlibVersion(); return 0; }
6153 cc_check -lbz2 && bzlib=yes
6154 if test "$bzlib" = yes ; then
6155 def_bzlib='#define CONFIG_BZLIB 1'
6156 extra_ldflags="$extra_ldflags -lbz2"
6158 echores "$bzlib"
6161 echocheck "RTC"
6162 if test "$_rtc" = auto ; then
6163 cat > $TMPC << EOF
6164 #include <sys/ioctl.h>
6165 #ifdef __linux__
6166 #include <linux/rtc.h>
6167 #else
6168 #include <rtc.h>
6169 #define RTC_PIE_ON RTCIO_PIE_ON
6170 #endif
6171 int main(void) { return RTC_PIE_ON; }
6173 _rtc=no
6174 cc_check && _rtc=yes
6175 ppc && _rtc=no
6177 if test "$_rtc" = yes ; then
6178 def_rtc='#define HAVE_RTC 1'
6179 else
6180 def_rtc='#undef HAVE_RTC'
6182 echores "$_rtc"
6185 echocheck "liblzo2 support"
6186 if test "$_liblzo" = auto ; then
6187 _liblzo=no
6188 cat > $TMPC << EOF
6189 #include <lzo/lzo1x.h>
6190 int main(void) { lzo_init();return 0; }
6192 cc_check -llzo2 && _liblzo=yes
6194 if test "$_liblzo" = yes ; then
6195 def_liblzo='#define CONFIG_LIBLZO 1'
6196 extra_ldflags="$extra_ldflags -llzo2"
6197 _codecmodules="liblzo $_codecmodules"
6198 else
6199 def_liblzo='#undef CONFIG_LIBLZO'
6200 _nocodecmodules="liblzo $_nocodecmodules"
6202 echores "$_liblzo"
6205 echocheck "mad support"
6206 if test "$_mad" = auto ; then
6207 _mad=no
6208 cat > $TMPC << EOF
6209 #include <mad.h>
6210 int main(void) { return 0; }
6212 cc_check -lmad && _mad=yes
6214 if test "$_mad" = yes ; then
6215 def_mad='#define CONFIG_LIBMAD 1'
6216 extra_ldflags="$extra_ldflags -lmad"
6217 _codecmodules="libmad $_codecmodules"
6218 else
6219 def_mad='#undef CONFIG_LIBMAD'
6220 _nocodecmodules="libmad $_nocodecmodules"
6222 echores "$_mad"
6224 echocheck "Twolame"
6225 if test "$_twolame" = auto ; then
6226 cat > $TMPC <<EOF
6227 #include <twolame.h>
6228 int main(void) { twolame_init(); return 0; }
6230 _twolame=no
6231 cc_check -ltwolame $_ld_lm && _twolame=yes
6233 if test "$_twolame" = yes ; then
6234 def_twolame='#define CONFIG_TWOLAME 1'
6235 libs_mencoder="$libs_mencoder -ltwolame"
6236 _codecmodules="twolame $_codecmodules"
6237 else
6238 def_twolame='#undef CONFIG_TWOLAME'
6239 _nocodecmodules="twolame $_nocodecmodules"
6241 echores "$_twolame"
6243 echocheck "Toolame"
6244 if test "$_toolame" = auto ; then
6245 _toolame=no
6246 if test "$_twolame" = yes ; then
6247 _res_comment="disabled by twolame"
6248 else
6249 cat > $TMPC <<EOF
6250 #include <toolame.h>
6251 int main(void) { toolame_init(); return 0; }
6253 cc_check -ltoolame $_ld_lm && _toolame=yes
6256 if test "$_toolame" = yes ; then
6257 def_toolame='#define CONFIG_TOOLAME 1'
6258 libs_mencoder="$libs_mencoder -ltoolame"
6259 _codecmodules="toolame $_codecmodules"
6260 else
6261 def_toolame='#undef CONFIG_TOOLAME'
6262 _nocodecmodules="toolame $_nocodecmodules"
6264 if test "$_toolamedir" ; then
6265 _res_comment="using $_toolamedir"
6267 echores "$_toolame"
6269 echocheck "OggVorbis support"
6270 if test "$_tremor_internal" = yes; then
6271 _libvorbis=no
6272 elif test "$_tremor" = auto; then
6273 _tremor=no
6274 cat > $TMPC << EOF
6275 #include <tremor/ivorbiscodec.h>
6276 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6278 cc_check -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
6280 if test "$_libvorbis" = auto; then
6281 _libvorbis=no
6282 cat > $TMPC << EOF
6283 #include <vorbis/codec.h>
6284 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6286 cc_check -lvorbis -logg $_ld_lm && _libvorbis=yes
6288 if test "$_tremor_internal" = yes ; then
6289 _vorbis=yes
6290 def_vorbis='#define CONFIG_OGGVORBIS 1'
6291 def_tremor='#define CONFIG_TREMOR 1'
6292 _codecmodules="tremor(internal) $_codecmodules"
6293 _res_comment="internal Tremor"
6294 if test "$_tremor_low" = yes ; then
6295 cflags_tremor_low="-D_LOW_ACCURACY_"
6296 _res_comment="internal low accuracy Tremor"
6298 elif test "$_tremor" = yes ; then
6299 _vorbis=yes
6300 def_vorbis='#define CONFIG_OGGVORBIS 1'
6301 def_tremor='#define CONFIG_TREMOR 1'
6302 _codecmodules="tremor(external) $_codecmodules"
6303 _res_comment="external Tremor"
6304 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
6305 elif test "$_libvorbis" = yes ; then
6306 _vorbis=yes
6307 def_vorbis='#define CONFIG_OGGVORBIS 1'
6308 _codecmodules="libvorbis $_codecmodules"
6309 _res_comment="libvorbis"
6310 extra_ldflags="$extra_ldflags -lvorbis -logg"
6311 else
6312 _vorbis=no
6313 _nocodecmodules="libvorbis $_nocodecmodules"
6315 echores "$_vorbis"
6317 echocheck "libspeex (version >= 1.1 required)"
6318 if test "$_speex" = auto ; then
6319 _speex=no
6320 cat > $TMPC << EOF
6321 #include <speex/speex.h>
6322 int main(void) { SpeexBits bits; void *dec; speex_decode_int(dec, &bits, dec); return 0; }
6324 cc_check -lspeex $_ld_lm && _speex=yes
6326 if test "$_speex" = yes ; then
6327 def_speex='#define CONFIG_SPEEX 1'
6328 extra_ldflags="$extra_ldflags -lspeex"
6329 _codecmodules="speex $_codecmodules"
6330 else
6331 def_speex='#undef CONFIG_SPEEX'
6332 _nocodecmodules="speex $_nocodecmodules"
6334 echores "$_speex"
6336 echocheck "OggTheora support"
6337 if test "$_theora" = auto ; then
6338 _theora=no
6339 cat > $TMPC << EOF
6340 #include <theora/theora.h>
6341 #include <string.h>
6342 int main(void) {
6343 /* Theora is in flux, make sure that all interface routines and datatypes
6344 * exist and work the way we expect it, so we don't break MPlayer. */
6345 ogg_packet op;
6346 theora_comment tc;
6347 theora_info inf;
6348 theora_state st;
6349 yuv_buffer yuv;
6350 int r;
6351 double t;
6353 theora_info_init(&inf);
6354 theora_comment_init(&tc);
6356 return 0;
6358 /* we don't want to execute this kind of nonsense; just for making sure
6359 * that compilation works... */
6360 memset(&op, 0, sizeof(op));
6361 r = theora_decode_header(&inf, &tc, &op);
6362 r = theora_decode_init(&st, &inf);
6363 t = theora_granule_time(&st, op.granulepos);
6364 r = theora_decode_packetin(&st, &op);
6365 r = theora_decode_YUVout(&st, &yuv);
6366 theora_clear(&st);
6368 return 0;
6371 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6372 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6373 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
6374 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6375 if test _theora = no; then
6376 _ld_theora="-ltheora -logg"
6377 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6379 if test "$_theora" = no && test "$_tremor_internal" = yes; then
6380 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6381 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6382 cc_check tremor/bitwise.c $_inc_theora $_ld_theora &&
6383 extra_ldflags="$extra_ldflags $_ld_theora" &&
6384 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6385 if test _theora = no; then
6386 _ld_theora="-ltheora -logg"
6387 cc_check tremor/bitwise.c $_ld_theora &&
6388 extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6392 if test "$_theora" = yes ; then
6393 def_theora='#define CONFIG_OGGTHEORA 1'
6394 _codecmodules="libtheora $_codecmodules"
6395 # when --enable-theora is forced, we'd better provide a probably sane
6396 # $_ld_theora than nothing
6397 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
6398 else
6399 def_theora='#undef CONFIG_OGGTHEORA'
6400 _nocodecmodules="libtheora $_nocodecmodules"
6402 echores "$_theora"
6404 echocheck "internal mp3lib support"
6405 if test "$_mp3lib" = auto ; then
6406 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _mp3lib=no || _mp3lib=yes
6408 if test "$_mp3lib" = yes ; then
6409 def_mp3lib='#define CONFIG_MP3LIB 1'
6410 _codecmodules="mp3lib(internal) $_codecmodules"
6411 else
6412 def_mp3lib='#undef CONFIG_MP3LIB'
6413 _nocodecmodules="mp3lib(internal) $_nocodecmodules"
6415 echores "$_mp3lib"
6417 echocheck "liba52 support"
6418 if test "$_liba52_internal" = auto ; then
6419 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _liba52_internal=no || _liba52_internal=yes
6421 def_liba52='#undef CONFIG_LIBA52'
6422 def_liba52_internal="#undef CONFIG_LIBA52_INTERNAL"
6423 if test "$_liba52_internal" = yes ; then
6424 _liba52=yes
6425 def_liba52_internal="#define CONFIG_LIBA52_INTERNAL 1"
6426 _res_comment="internal"
6427 elif test "$_liba52_internal" = no && test "$_liba52" = auto ; then
6428 _liba52=no
6429 cat > $TMPC << EOF
6430 #include <inttypes.h>
6431 #include <a52dec/a52.h>
6432 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6434 cc_check -la52 && _liba52=yes && _res_comment="external" && extra_ldflags="$extra_ldflags -la52"
6436 if test "$_liba52" = yes ; then
6437 def_liba52='#define CONFIG_LIBA52 1'
6438 _codecmodules="liba52($_res_comment) $_codecmodules"
6439 else
6440 _nocodecmodules="liba52 $_nocodecmodules"
6442 echores "$_liba52"
6444 echocheck "internal libmpeg2 support"
6445 if test "$_libmpeg2" = auto ; then
6446 _libmpeg2=yes
6447 if alpha && test cc_vendor=gnu; then
6448 case $cc_version in
6449 2*|3.0*|3.1*) # cannot compile MVI instructions
6450 _libmpeg2=no
6451 _res_comment="broken gcc"
6453 esac
6456 if test "$_libmpeg2" = yes ; then
6457 def_libmpeg2='#define CONFIG_LIBMPEG2 1'
6458 _codecmodules="libmpeg2(internal) $_codecmodules"
6459 else
6460 def_libmpeg2='#undef CONFIG_LIBMPEG2'
6461 _nocodecmodules="libmpeg2(internal) $_nocodecmodules"
6463 echores "$_libmpeg2"
6465 echocheck "libdca support"
6466 if test "$_libdca" = auto ; then
6467 _libdca=no
6468 cat > $TMPC << EOF
6469 #include <inttypes.h>
6470 #include <dts.h>
6471 int main(void) { dts_init(0); return 0; }
6473 for _ld_dca in -ldts -ldca ; do
6474 cc_check $_ld_dca $_ld_lm && extra_ldflags="$extra_ldflags $_ld_dca" \
6475 && _libdca=yes && break
6476 done
6478 if test "$_libdca" = yes ; then
6479 def_libdca='#define CONFIG_LIBDCA 1'
6480 _codecmodules="libdca $_codecmodules"
6481 else
6482 def_libdca='#undef CONFIG_LIBDCA'
6483 _nocodecmodules="libdca $_nocodecmodules"
6485 echores "$_libdca"
6487 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
6488 if test "$_musepack" = auto ; then
6489 _musepack=no
6490 cat > $TMPC << EOF
6491 #include <stddef.h>
6492 #include <mpcdec/mpcdec.h>
6493 int main(void) {
6494 mpc_streaminfo info;
6495 mpc_decoder decoder;
6496 mpc_decoder_set_streaminfo(&decoder, &info);
6497 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6498 return 0;
6501 cc_check -lmpcdec $_ld_lm && _musepack=yes
6503 if test "$_musepack" = yes ; then
6504 def_musepack='#define CONFIG_MUSEPACK 1'
6505 extra_ldflags="$extra_ldflags -lmpcdec"
6506 _codecmodules="musepack $_codecmodules"
6507 else
6508 def_musepack='#undef CONFIG_MUSEPACK'
6509 _nocodecmodules="musepack $_nocodecmodules"
6511 echores "$_musepack"
6514 echocheck "FAAC support"
6515 if test "$_faac" = auto ; then
6516 cat > $TMPC <<EOF
6517 #include <inttypes.h>
6518 #include <faac.h>
6519 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6521 _faac=no
6522 for _ld_faac in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6523 cc_check -O2 $_ld_faac $_ld_lm && libs_mencoder="$libs_mencoder $_ld_faac" && _faac=yes && break
6524 done
6526 if test "$_faac" = yes ; then
6527 def_faac="#define CONFIG_FAAC 1"
6528 _codecmodules="faac $_codecmodules"
6529 else
6530 def_faac="#undef CONFIG_FAAC"
6531 _nocodecmodules="faac $_nocodecmodules"
6533 echores "$_faac"
6536 echocheck "FAAD2 support"
6537 if test "$_faad_internal" = auto ; then
6538 if x86_32 && test cc_vendor=gnu; then
6539 case $cc_version in
6540 3.1*|3.2) # ICE/insn with these versions
6541 _faad_internal=no
6542 _res_comment="broken gcc"
6545 _faad=yes
6546 _faad_internal=yes
6548 esac
6549 else
6550 _faad=yes
6551 _faad_internal=yes
6554 if test "$_faad" = auto ; then
6555 cat > $TMPC << EOF
6556 #include <faad.h>
6557 #ifndef FAAD_MIN_STREAMSIZE
6558 #error Too old version
6559 #endif
6560 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6561 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6563 cc_check -lfaad $_ld_lm && _faad=yes
6566 def_faad='#undef CONFIG_FAAD'
6567 def_faad_internal="#undef CONFIG_FAAD_INTERNAL"
6568 if test "$_faad_internal" = yes ; then
6569 def_faad_internal="#define CONFIG_FAAD_INTERNAL 1"
6570 _res_comment="internal floating-point"
6571 if test "$_faad_fixed" = yes ; then
6572 # The FIXED_POINT implementation of FAAD2 improves performance
6573 # on some platforms, especially for SBR files.
6574 cflags_faad_fixed="-DFIXED_POINT"
6575 _res_comment="internal fixed-point"
6577 elif test "$_faad" = yes ; then
6578 extra_ldflags="$extra_ldflags -lfaad"
6581 if test "$_faad" = yes ; then
6582 def_faad='#define CONFIG_FAAD 1'
6583 if test "$_faad_internal" = yes ; then
6584 _codecmodules="faad2(internal) $_codecmodules"
6585 else
6586 _codecmodules="faad2 $_codecmodules"
6588 else
6589 _faad=no
6590 _nocodecmodules="faad2 $_nocodecmodules"
6592 echores "$_faad"
6595 echocheck "LADSPA plugin support"
6596 if test "$_ladspa" = auto ; then
6597 cat > $TMPC <<EOF
6598 #include <stdio.h>
6599 #include <ladspa.h>
6600 int main(void) {
6601 const LADSPA_Descriptor *ld = NULL;
6602 return 0;
6605 _ladspa=no
6606 cc_check && _ladspa=yes
6608 if test "$_ladspa" = yes; then
6609 def_ladspa="#define CONFIG_LADSPA 1"
6610 else
6611 def_ladspa="#undef CONFIG_LADSPA"
6613 echores "$_ladspa"
6616 echocheck "libbs2b audio filter support"
6617 if test "$_libbs2b" = auto ; then
6618 cat > $TMPC <<EOF
6619 #include <bs2b.h>
6620 #if BS2B_VERSION_MAJOR < 3
6621 #error Please use libbs2b >= 3.0.0, older versions are not supported.
6622 #endif
6623 int main(void) {
6624 t_bs2bdp filter;
6625 filter=bs2b_open();
6626 bs2b_close(filter);
6627 return 0;
6630 _libbs2b=no
6631 if $_pkg_config --exists libbs2b ; then
6632 _inc_tmp=$($_pkg_config --cflags libbs2b)
6633 _ld_tmp=$($_pkg_config --libs libbs2b)
6634 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
6635 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
6636 else
6637 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
6638 -I/usr/local/include/bs2b ; do
6639 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
6640 extra_ldflags="$extra_ldflags -lbs2b"
6641 extra_cflags="$extra_cflags $_inc_tmp"
6642 _libbs2b=yes
6643 break
6645 done
6648 def_libbs2b="#undef CONFIG_LIBBS2B"
6649 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
6650 echores "$_libbs2b"
6653 if test -z "$_codecsdir" ; then
6654 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
6655 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
6656 if test -d "$dir" ; then
6657 _codecsdir="$dir"
6658 break;
6660 done
6662 # Fall back on default directory.
6663 if test -z "$_codecsdir" ; then
6664 _codecsdir="$_libdir/codecs"
6665 mingw32 && _codecsdir="codecs"
6666 os2 && _codecsdir="codecs"
6670 echocheck "Win32 codecs"
6671 if test "$_win32dll" = auto ; then
6672 _win32dll=no
6673 if x86_32 && ! qnx; then
6674 _win32dll=yes
6677 if test "$_win32dll" = yes ; then
6678 def_win32dll='#define CONFIG_WIN32DLL 1'
6679 test -z "$_win32codecsdir" && _win32codecsdir=$_codecsdir
6680 _res_comment="using $_win32codecsdir"
6681 if ! win32 ; then
6682 def_win32_loader='#define WIN32_LOADER 1'
6683 _win32_emulation=yes
6684 else
6685 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
6686 _res_comment="using native windows"
6688 _codecmodules="win32 $_codecmodules"
6689 else
6690 def_win32dll='#undef CONFIG_WIN32DLL'
6691 def_win32_loader='#undef WIN32_LOADER'
6692 _nocodecmodules="win32 $_nocodecmodules"
6694 echores "$_win32dll"
6697 echocheck "XAnim codecs"
6698 if test "$_xanim" = auto ; then
6699 _xanim=no
6700 _res_comment="dynamic loader support needed"
6701 if test "$_dl" = yes ; then
6702 _xanim=yes
6705 if test "$_xanim" = yes ; then
6706 test -z "$_xanimcodecsdir" && _xanimcodecsdir=$_codecsdir
6707 def_xanim='#define CONFIG_XANIM 1'
6708 def_xanim_path="#define XACODEC_PATH \"$_xanimcodecsdir\""
6709 _codecmodules="xanim $_codecmodules"
6710 _res_comment="using $_xanimcodecsdir"
6711 else
6712 def_xanim='#undef CONFIG_XANIM'
6713 def_xanim_path='#undef XACODEC_PATH'
6714 _nocodecmodules="xanim $_nocodecmodules"
6716 echores "$_xanim"
6719 echocheck "RealPlayer codecs"
6720 if test "$_real" = auto ; then
6721 _real=no
6722 _res_comment="dynamic loader support needed"
6723 if test "$_dl" = yes || test "$_win32dll" = yes &&
6724 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32) ; then
6725 _real=yes
6728 if test "$_real" = yes ; then
6729 test -z "$_realcodecsdir" && _realcodecsdir="$_codecsdir"
6730 def_real='#define CONFIG_REALCODECS 1'
6731 def_real_path="#define REALCODEC_PATH \"$_realcodecsdir\""
6732 _codecmodules="real $_codecmodules"
6733 _res_comment="using $_realcodecsdir"
6734 else
6735 def_real='#undef CONFIG_REALCODECS'
6736 def_real_path="#undef REALCODEC_PATH"
6737 _nocodecmodules="real $_nocodecmodules"
6739 echores "$_real"
6742 echocheck "QuickTime codecs"
6743 _qtx_emulation=no
6744 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
6745 if test "$_qtx" = auto ; then
6746 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
6748 if test "$_qtx" = yes ; then
6749 def_qtx='#define CONFIG_QTX_CODECS 1'
6750 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
6751 _codecmodules="qtx $_codecmodules"
6752 darwin || win32 || _qtx_emulation=yes
6753 else
6754 def_qtx='#undef CONFIG_QTX_CODECS'
6755 _nocodecmodules="qtx $_nocodecmodules"
6757 echores "$_qtx"
6759 echocheck "Nemesi Streaming Media libraries"
6760 if test "$_nemesi" = auto && test "$_network" = yes ; then
6761 _nemesi=no
6762 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
6763 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
6764 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
6765 _nemesi=yes
6768 if test "$_nemesi" = yes; then
6769 _native_rtsp=no
6770 def_nemesi='#define CONFIG_LIBNEMESI 1'
6771 _inputmodules="nemesi $_inputmodules"
6772 else
6773 _native_rtsp="$_network"
6774 _nemesi=no
6775 def_nemesi='#undef CONFIG_LIBNEMESI'
6776 _noinputmodules="nemesi $_noinputmodules"
6778 echores "$_nemesi"
6780 echocheck "LIVE555 Streaming Media libraries"
6781 if test "$_live" = auto && test "$_network" = yes ; then
6782 cat > $TMPCPP << EOF
6783 #include <liveMedia.hh>
6784 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6785 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6786 #endif
6787 int main(void) { return 0; }
6790 _live=no
6791 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
6792 cxx_check $I/liveMedia/include $I/UsageEnvironment/include \
6793 $I/groupsock/include && _livelibdir=$(echo $I| sed s/-I//) && \
6794 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
6795 $_livelibdir/groupsock/libgroupsock.a \
6796 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6797 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6798 $extra_ldflags -lstdc++" \
6799 extra_cxxflags="-I$_livelibdir/liveMedia/include \
6800 -I$_livelibdir/UsageEnvironment/include \
6801 -I$_livelibdir/BasicUsageEnvironment/include \
6802 -I$_livelibdir/groupsock/include" && \
6803 _live=yes && break
6804 done
6805 if test "$_live" != yes ; then
6806 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6807 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
6808 _live_dist=yes
6812 if test "$_live" = yes && test "$_network" = yes; then
6813 test $_livelibdir && _res_comment="using $_livelibdir"
6814 def_live='#define CONFIG_LIVE555 1'
6815 _inputmodules="live555 $_inputmodules"
6816 elif test "$_live_dist" = yes && test "$_network" = yes; then
6817 _res_comment="using distribution version"
6818 _live="yes"
6819 def_live='#define CONFIG_LIVE555 1'
6820 extra_ldflags="$extra_ldflags $ld_tmp"
6821 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
6822 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6823 _inputmodules="live555 $_inputmodules"
6824 else
6825 _live=no
6826 def_live='#undef CONFIG_LIVE555'
6827 _noinputmodules="live555 $_noinputmodules"
6829 echores "$_live"
6832 echocheck "FFmpeg libavutil"
6833 if test "$_libavutil" = auto ; then
6834 _libavutil=no
6835 cat > $TMPC << EOF
6836 #include <libavutil/common.h>
6837 int main(void) { av_gcd(1,1); return 0; }
6839 if $_pkg_config --exists libavutil ; then
6840 _inc_libavutil=$($_pkg_config --cflags libavutil)
6841 _ld_tmp=$($_pkg_config --libs libavutil)
6842 cc_check $_inc_libavutil $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libavutil" \
6843 && _libavutil=yes
6844 elif cc_check -lavutil $_ld_lm ; then
6845 extra_ldflags="$extra_ldflags -lavutil"
6846 _libavutil=yes
6849 def_libavutil='#undef CONFIG_LIBAVUTIL'
6850 test "$_libavutil" = yes && def_libavutil='#define CONFIG_LIBAVUTIL 1'
6851 # libavutil is not available, but it is mandatory ...
6852 if test "$_libavutil" = no ; then
6853 die "You need libavutil, MPlayer will not compile without!"
6855 echores "$_libavutil"
6857 echocheck "FFmpeg libavcodec"
6858 if test "$_libavcodec" = auto ; then
6859 _libavcodec=no
6860 cat > $TMPC << EOF
6861 #include <libavcodec/avcodec.h>
6862 int main(void) { avcodec_find_encoder_by_name(""); return 0; }
6864 if $_pkg_config --exists libavcodec ; then
6865 _inc_libavcodec=$($_pkg_config --cflags libavcodec)
6866 _ld_tmp=$($_pkg_config --libs libavcodec)
6867 cc_check $_inc_libavcodec $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavcodec" \
6868 && _libavcodec=yes
6869 elif cc_check -lavcodec $_ld_lm ; then
6870 extra_ldflags="$extra_ldflags -lavcodec"
6871 _libavcodec=yes
6874 def_libavcodec='#undef CONFIG_LIBAVCODEC'
6875 test "$_libavcodec" = yes && def_libavcodec='#define CONFIG_LIBAVCODEC 1'
6876 if test "$_libavcodec" = yes ; then
6877 _codecmodules="libavcodec $_codecmodules"
6878 else
6879 _nocodecmodules="libavcodec $_nocodecmodules"
6881 echores "$_libavcodec"
6883 echocheck "FFmpeg libavformat"
6884 if test "$_libavformat" = auto ; then
6885 _libavformat=no
6886 cat > $TMPC <<EOF
6887 #include <libavformat/avformat.h>
6888 #include <libavcodec/opt.h>
6889 int main(void) { av_alloc_format_context(); return 0; }
6891 if $_pkg_config --exists libavformat ; then
6892 _inc_libavformat=$($_pkg_config --cflags libavformat)
6893 _ld_tmp=$($_pkg_config --libs libavformat)
6894 cc_check $_inc_libavformat $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavformat" \
6895 && _libavformat=yes
6896 elif cc_check $_ld_lm -lavformat ; then
6897 extra_ldflags="$extra_ldflags -lavformat"
6898 _libavformat=yes
6901 def_libavformat='#undef CONFIG_LIBAVFORMAT'
6902 test "$_libavformat" = yes && def_libavformat='#define CONFIG_LIBAVFORMAT 1'
6903 echores "$_libavformat"
6905 echocheck "FFmpeg libpostproc"
6906 if test "$_libpostproc" = auto ; then
6907 _libpostproc=no
6908 cat > $TMPC << EOF
6909 #include <inttypes.h>
6910 #include <libpostproc/postprocess.h>
6911 int main(void) { pp_get_mode_by_name_and_quality("de", 0); return 0; }
6913 if $_pkg_config --exists libpostproc ; then
6914 _inc_libpostproc=$($_pkg_config --cflags libpostproc)
6915 _ld_tmp=$($_pkg_config --libs libpostproc)
6916 cc_check $_inc_libpostproc $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libpostproc" \
6917 && _libpostproc=yes
6918 elif cc_check -lpostproc $_ld_lm ; then
6919 extra_ldflags="$extra_ldflags -lpostproc"
6920 _libpostproc=yes
6923 def_libpostproc='#undef CONFIG_LIBPOSTPROC'
6924 test "$_libpostproc" = yes && def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
6925 echores "$_libpostproc"
6927 echocheck "FFmpeg libswscale"
6928 if test "$_libswscale" = auto ; then
6929 _libswscale=no
6930 cat > $TMPC << EOF
6931 #include <libswscale/swscale.h>
6932 int main(void) { sws_scale(0, 0, 0, 0, 0, 0, 0); return 0; }
6934 if $_pkg_config --exists libswscale ; then
6935 _inc_libswscale=$($_pkg_config --cflags libswscale)
6936 _ld_tmp=$($_pkg_config --libs libswscale)
6937 cc_check $_inc_libswscale $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libswscale" \
6938 && _libswscale=yes
6939 elif cc_check -lswscale ; then
6940 extra_ldflags="$extra_ldflags -lswscale"
6941 _libswscale=yes
6944 def_libswscale='#undef CONFIG_LIBSWSCALE'
6945 test "$_libswscale" = yes && def_libswscale='#define CONFIG_LIBSWSCALE 1'
6946 echores "$_libswscale"
6948 def_libswscale_internals="#undef CONFIG_LIBSWSCALE_INTERNALS"
6949 if ! test -z "$_ffmpeg_source" ; then
6950 test "$_libswscale" = yes && def_libswscale_internals="#define CONFIG_LIBSWSCALE_INTERNALS 1" && _libswscale_internals=yes
6953 def_libavcodec_internals="#undef CONFIG_LIBAVCODEC_INTERNALS"
6954 if ! test -z "$_ffmpeg_source" ; then
6955 test "$_libavcodec" = yes && def_libavcodec_internals="#define CONFIG_LIBAVCODEC_INTERNALS 1" && _libavcodec_internals=yes
6958 echocheck "libdv-0.9.5+"
6959 if test "$_libdv" = auto ; then
6960 _libdv=no
6961 cat > $TMPC <<EOF
6962 #include <libdv/dv.h>
6963 int main(void) { dv_encoder_t* enc=dv_encoder_new(1,1,1); return 0; }
6965 cc_check -ldv $_ld_pthread $_ld_lm && _libdv=yes
6967 if test "$_libdv" = yes ; then
6968 def_libdv='#define CONFIG_LIBDV095 1'
6969 extra_ldflags="$extra_ldflags -ldv"
6970 _codecmodules="libdv $_codecmodules"
6971 else
6972 def_libdv='#undef CONFIG_LIBDV095'
6973 _nocodecmodules="libdv $_nocodecmodules"
6975 echores "$_libdv"
6978 echocheck "Xvid"
6979 if test "$_xvid" = auto ; then
6980 _xvid=no
6981 cat > $TMPC << EOF
6982 #include <xvid.h>
6983 int main(void) { xvid_global(0, 0, 0, 0); return 0; }
6985 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
6986 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
6987 done
6990 if test "$_xvid" = yes ; then
6991 def_xvid='#define CONFIG_XVID4 1'
6992 _codecmodules="xvid $_codecmodules"
6993 else
6994 def_xvid='#undef CONFIG_XVID4'
6995 _nocodecmodules="xvid $_nocodecmodules"
6997 echores "$_xvid"
6999 echocheck "x264"
7000 if test "$_x264" = auto ; then
7001 cat > $TMPC << EOF
7002 #include <inttypes.h>
7003 #include <x264.h>
7004 #if X264_BUILD < 78
7005 #error We do not support old versions of x264. Get the latest from git.
7006 #endif
7007 int main(void) { x264_encoder_open((void*)0); return 0; }
7009 _x264=no
7010 for _ld_x264 in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
7011 cc_check $_ld_x264 && libs_mencoder="$libs_mencoder $_ld_x264" && _x264=yes && break
7012 done
7015 if test "$_x264" = yes ; then
7016 def_x264='#define CONFIG_X264 1'
7017 _codecmodules="x264 $_codecmodules"
7018 else
7019 def_x264='#undef CONFIG_X264'
7020 _nocodecmodules="x264 $_nocodecmodules"
7022 echores "$_x264"
7024 echocheck "libnut"
7025 if test "$_libnut" = auto ; then
7026 cat > $TMPC << EOF
7027 #include <stdio.h>
7028 #include <stdlib.h>
7029 #include <inttypes.h>
7030 #include <libnut.h>
7031 nut_context_tt * nut;
7032 int main(void) { (void)nut_error(0); return 0; }
7034 _libnut=no
7035 cc_check -lnut && _libnut=yes
7038 if test "$_libnut" = yes ; then
7039 def_libnut='#define CONFIG_LIBNUT 1'
7040 extra_ldflags="$extra_ldflags -lnut"
7041 else
7042 def_libnut='#undef CONFIG_LIBNUT'
7044 echores "$_libnut"
7046 # These VO checks must be done after libavcodec/libswscale one
7047 echocheck "/dev/mga_vid"
7048 if test "$_mga" = auto ; then
7049 _mga=no
7050 test -c /dev/mga_vid && _mga=yes
7052 if test "$_mga" = yes ; then
7053 if test "$_libswscale_internals" = yes ; then
7054 def_mga='#define CONFIG_MGA 1'
7055 _vomodules="mga $_vomodules"
7056 else
7057 _res_comment="libswscale internal headers are required by mga, sorry"
7058 def_mga='#undef CONFIG_MGA'
7059 _novomodules="mga $_novomodules"
7061 else
7062 def_mga='#undef CONFIG_MGA'
7063 _novomodules="mga $_novomodules"
7065 echores "$_mga"
7068 echocheck "xmga"
7069 if test "$_xmga" = auto ; then
7070 _xmga=no
7071 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
7073 if test "$_xmga" = yes ; then
7074 if test "$_libswscale_internals" = yes ; then
7075 def_xmga='#define CONFIG_XMGA 1'
7076 _vomodules="xmga $_vomodules"
7077 else
7078 _res_comment="libswscale internal headers are required by mga, sorry"
7079 def_xmga='#undef CONFIG_XMGA'
7080 _novomodules="xmga $_novomodules"
7082 else
7083 def_xmga='#undef CONFIG_XMGA'
7084 _novomodules="xmga $_novomodules"
7086 echores "$_xmga"
7088 echocheck "zr"
7089 if test "$_zr" = auto ; then
7090 #36067's seem to identify themselves as 36057PQC's, so the line
7091 #below should work for 36067's and 36057's.
7092 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc/pci ; then
7093 _zr=yes
7094 else
7095 _zr=no
7098 if test "$_zr" = yes ; then
7099 if test "$_libavcodec_internals" = yes ; then
7100 def_zr='#define CONFIG_ZR 1'
7101 _vomodules="zr zr2 $_vomodules"
7102 else
7103 _res_comment="libavcodec internal headers are required by zr, sorry"
7104 _novomodules="zr $_novomodules"
7105 def_zr='#undef CONFIG_ZR'
7107 else
7108 def_zr='#undef CONFIG_ZR'
7109 _novomodules="zr zr2 $_novomodules"
7111 echores "$_zr"
7113 # mencoder requires (optional) those libs: libmp3lame
7114 if test "$_mencoder" != no ; then
7116 echocheck "libmp3lame"
7117 def_mp3lame_preset='#undef CONFIG_MP3LAME_PRESET'
7118 def_mp3lame_preset_medium='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
7119 if test "$_mp3lame" = auto ; then
7120 _mp3lame=no
7121 cat > $TMPC <<EOF
7122 #include <lame/lame.h>
7123 int main(void) { lame_version_t lv; (void) lame_init();
7124 get_lame_version_numerical(&lv); printf("%d%d\n",lv.major,lv.minor);
7125 return 0; }
7127 cc_check -lmp3lame $_ld_lm && _mp3lame=yes
7129 if test "$_mp3lame" = yes ; then
7130 def_mp3lame="#define CONFIG_MP3LAME 1"
7131 _ld_mp3lame=-lmp3lame
7132 libs_mencoder="$libs_mencoder $_ld_mp3lame"
7133 cat > $TMPC << EOF
7134 #include <lame/lame.h>
7135 int main(void) { lame_set_preset(NULL, STANDARD_FAST); return 0; }
7137 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset="#define CONFIG_MP3LAME_PRESET 1"
7138 cat > $TMPC << EOF
7139 #include <lame/lame.h>
7140 int main(void) { lame_set_preset(NULL, MEDIUM_FAST); return 0; }
7142 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset_medium="#define CONFIG_MP3LAME_PRESET_MEDIUM 1"
7143 else
7144 def_mp3lame='#undef CONFIG_MP3LAME'
7146 echores "$_mp3lame"
7148 fi # test "$_mencoder" != no
7150 echocheck "mencoder"
7151 if test "$_mencoder" = yes ; then
7152 def_muxers='#define CONFIG_MUXERS 1'
7153 else
7154 def_muxers='#define CONFIG_MUXERS 0'
7156 echores "$_mencoder"
7159 echocheck "UnRAR executable"
7160 if test "$_unrar_exec" = auto ; then
7161 _unrar_exec="yes"
7162 mingw32 && _unrar_exec="no"
7164 if test "$_unrar_exec" = yes ; then
7165 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
7166 else
7167 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
7169 echores "$_unrar_exec"
7171 echocheck "TV interface"
7172 if test "$_tv" = yes ; then
7173 def_tv='#define CONFIG_TV 1'
7174 _inputmodules="tv $_inputmodules"
7175 else
7176 _noinputmodules="tv $_noinputmodules"
7177 def_tv='#undef CONFIG_TV'
7179 echores "$_tv"
7182 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
7183 echocheck "*BSD BT848 bt8xx header"
7184 _ioctl_bt848_h=no
7185 for file in "machine/ioctl_bt848.h" \
7186 "dev/bktr/ioctl_bt848.h" \
7187 "dev/video/bktr/ioctl_bt848.h" \
7188 "dev/ic/bt8xx.h" ; do
7189 cat > $TMPC <<EOF
7190 #include <sys/types.h>
7191 #include <sys/ioctl.h>
7192 #include <$file>
7193 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
7195 if cc_check ; then
7196 _ioctl_bt848_h=yes
7197 _ioctl_bt848_h_name="$file"
7198 break;
7200 done
7201 if test "$_ioctl_bt848_h" = yes ; then
7202 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
7203 _res_comment="using $_ioctl_bt848_h_name"
7204 else
7205 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
7207 echores "$_ioctl_bt848_h"
7209 echocheck "*BSD ioctl_meteor.h"
7210 _ioctl_meteor_h=no
7211 for file in "machine/ioctl_meteor.h" \
7212 "dev/bktr/ioctl_meteor.h" \
7213 "dev/video/bktr/ioctl_meteor.h" ; do
7214 cat > $TMPC <<EOF
7215 #include <sys/types.h>
7216 #include <$file>
7217 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
7219 if cc_check ; then
7220 _ioctl_meteor_h=yes
7221 _ioctl_meteor_h_name="$file"
7222 break;
7224 done
7225 if test "$_ioctl_meteor_h" = yes ; then
7226 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
7227 _res_comment="using $_ioctl_meteor_h_name"
7228 else
7229 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
7231 echores "$_ioctl_meteor_h"
7233 echocheck "*BSD BrookTree 848 TV interface"
7234 if test "$_tv_bsdbt848" = auto ; then
7235 _tv_bsdbt848=no
7236 if test "$_tv" = yes ; then
7237 cat > $TMPC <<EOF
7238 #include <sys/types.h>
7239 $def_ioctl_meteor_h_name
7240 $def_ioctl_bt848_h_name
7241 #ifdef IOCTL_METEOR_H_NAME
7242 #include IOCTL_METEOR_H_NAME
7243 #endif
7244 #ifdef IOCTL_BT848_H_NAME
7245 #include IOCTL_BT848_H_NAME
7246 #endif
7247 int main(void) {
7248 ioctl(0, METEORSINPUT, 0);
7249 ioctl(0, TVTUNER_GETFREQ, 0);
7250 return 0;
7253 cc_check && _tv_bsdbt848=yes
7256 if test "$_tv_bsdbt848" = yes ; then
7257 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
7258 _inputmodules="tv-bsdbt848 $_inputmodules"
7259 else
7260 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
7261 _noinputmodules="tv-bsdbt848 $_noinputmodules"
7263 echores "$_tv_bsdbt848"
7264 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
7267 echocheck "DirectShow TV interface"
7268 if test "$_tv_dshow" = auto ; then
7269 _tv_dshow=no
7270 if test "$_tv" = yes && win32 ; then
7271 cat > $TMPC <<EOF
7272 #include <ole2.h>
7273 int main(void) {
7274 void* p;
7275 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
7276 return 0;
7279 cc_check -lole32 -luuid && _tv_dshow=yes
7282 if test "$_tv_dshow" = yes ; then
7283 _inputmodules="tv-dshow $_inputmodules"
7284 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
7285 extra_ldflags="$extra_ldflags -lole32 -luuid"
7286 else
7287 _noinputmodules="tv-dshow $_noinputmodules"
7288 def_tv_dshow='#undef CONFIG_TV_DSHOW'
7290 echores "$_tv_dshow"
7293 echocheck "Video 4 Linux TV interface"
7294 if test "$_tv_v4l1" = auto ; then
7295 _tv_v4l1=no
7296 if test "$_tv" = yes && linux ; then
7297 cat > $TMPC <<EOF
7298 #include <stdlib.h>
7299 #include <linux/videodev.h>
7300 int main(void) { return 0; }
7302 cc_check && _tv_v4l1=yes
7305 if test "$_tv_v4l1" = yes ; then
7306 _audio_input=yes
7307 _tv_v4l=yes
7308 def_tv_v4l='#define CONFIG_TV_V4L 1'
7309 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
7310 _inputmodules="tv-v4l $_inputmodules"
7311 else
7312 _noinputmodules="tv-v4l1 $_noinputmodules"
7313 def_tv_v4l='#undef CONFIG_TV_V4L'
7315 echores "$_tv_v4l1"
7318 echocheck "Video 4 Linux 2 TV interface"
7319 if test "$_tv_v4l2" = auto ; then
7320 _tv_v4l2=no
7321 if test "$_tv" = yes && linux ; then
7322 cat > $TMPC <<EOF
7323 #include <stdlib.h>
7324 #include <linux/types.h>
7325 #include <linux/videodev2.h>
7326 int main(void) { return 0; }
7328 cc_check && _tv_v4l2=yes
7331 if test "$_tv_v4l2" = yes ; then
7332 _audio_input=yes
7333 _tv_v4l=yes
7334 def_tv_v4l='#define CONFIG_TV_V4L 1'
7335 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
7336 _inputmodules="tv-v4l2 $_inputmodules"
7337 else
7338 _noinputmodules="tv-v4l2 $_noinputmodules"
7339 def_tv_v4l2='#undef CONFIG_TV_V4L2'
7341 echores "$_tv_v4l2"
7344 echocheck "Radio interface"
7345 if test "$_radio" = yes ; then
7346 def_radio='#define CONFIG_RADIO 1'
7347 _inputmodules="radio $_inputmodules"
7348 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
7349 _radio_capture=no
7351 if test "$_radio_capture" = yes ; then
7352 _audio_input=yes
7353 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
7354 else
7355 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7357 else
7358 _noinputmodules="radio $_noinputmodules"
7359 def_radio='#undef CONFIG_RADIO'
7360 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7361 _radio_capture=no
7363 echores "$_radio"
7364 echocheck "Capture for Radio interface"
7365 echores "$_radio_capture"
7367 echocheck "Video 4 Linux 2 Radio interface"
7368 if test "$_radio_v4l2" = auto ; then
7369 _radio_v4l2=no
7370 if test "$_radio" = yes && linux ; then
7371 cat > $TMPC <<EOF
7372 #include <stdlib.h>
7373 #include <linux/types.h>
7374 #include <linux/videodev2.h>
7375 int main(void) { return 0; }
7377 cc_check && _radio_v4l2=yes
7380 if test "$_radio_v4l2" = yes ; then
7381 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
7382 else
7383 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
7385 echores "$_radio_v4l2"
7387 echocheck "Video 4 Linux Radio interface"
7388 if test "$_radio_v4l" = auto ; then
7389 _radio_v4l=no
7390 if test "$_radio" = yes && linux ; then
7391 cat > $TMPC <<EOF
7392 #include <stdlib.h>
7393 #include <linux/videodev.h>
7394 int main(void) { return 0; }
7396 cc_check && _radio_v4l=yes
7399 if test "$_radio_v4l" = yes ; then
7400 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
7401 else
7402 def_radio_v4l='#undef CONFIG_RADIO_V4L'
7404 echores "$_radio_v4l"
7406 if freebsd || netbsd || openbsd || dragonfly || bsdos \
7407 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
7408 echocheck "*BSD BrookTree 848 Radio interface"
7409 _radio_bsdbt848=no
7410 cat > $TMPC <<EOF
7411 #include <sys/types.h>
7412 $def_ioctl_bt848_h_name
7413 #ifdef IOCTL_BT848_H_NAME
7414 #include IOCTL_BT848_H_NAME
7415 #endif
7416 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
7418 cc_check && _radio_bsdbt848=yes
7419 echores "$_radio_bsdbt848"
7420 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
7422 if test "$_radio_bsdbt848" = yes ; then
7423 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
7424 else
7425 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
7428 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no && \
7429 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
7430 die "Radio driver requires BSD BT848, V4L or V4L2!"
7433 echocheck "Video 4 Linux 2 MPEG PVR interface"
7434 if test "$_pvr" = auto ; then
7435 _pvr=no
7436 if test "$_tv_v4l2" = yes && linux ; then
7437 cat > $TMPC <<EOF
7438 #include <stdlib.h>
7439 #include <inttypes.h>
7440 #include <linux/types.h>
7441 #include <linux/videodev2.h>
7442 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
7444 cc_check && _pvr=yes
7447 if test "$_pvr" = yes ; then
7448 def_pvr='#define CONFIG_PVR 1'
7449 _inputmodules="pvr $_inputmodules"
7450 else
7451 _noinputmodules="pvr $_noinputmodules"
7452 def_pvr='#undef CONFIG_PVR'
7454 echores "$_pvr"
7457 echocheck "ftp"
7458 if ! beos && test "$_ftp" = yes ; then
7459 def_ftp='#define CONFIG_FTP 1'
7460 _inputmodules="ftp $_inputmodules"
7461 else
7462 _noinputmodules="ftp $_noinputmodules"
7463 def_ftp='#undef CONFIG_FTP'
7465 echores "$_ftp"
7467 echocheck "vstream client"
7468 if test "$_vstream" = auto ; then
7469 _vstream=no
7470 cat > $TMPC <<EOF
7471 #include <vstream-client.h>
7472 void vstream_error(const char *format, ... ) {}
7473 int main(void) { vstream_start(); return 0; }
7475 cc_check -lvstream-client && _vstream=yes
7477 if test "$_vstream" = yes ; then
7478 def_vstream='#define CONFIG_VSTREAM 1'
7479 _inputmodules="vstream $_inputmodules"
7480 extra_ldflags="$extra_ldflags -lvstream-client"
7481 else
7482 _noinputmodules="vstream $_noinputmodules"
7483 def_vstream='#undef CONFIG_VSTREAM'
7485 echores "$_vstream"
7488 echocheck "OSD menu"
7489 if test "$_menu" = yes ; then
7490 def_menu='#define CONFIG_MENU 1'
7491 test $_dvbin = "yes" && _menu_dvbin=yes
7492 else
7493 def_menu='#undef CONFIG_MENU'
7494 _menu_dvbin=no
7496 echores "$_menu"
7499 echocheck "Subtitles sorting"
7500 if test "$_sortsub" = yes ; then
7501 def_sortsub='#define CONFIG_SORTSUB 1'
7502 else
7503 def_sortsub='#undef CONFIG_SORTSUB'
7505 echores "$_sortsub"
7508 echocheck "XMMS inputplugin support"
7509 if test "$_xmms" = yes ; then
7510 if ( xmms-config --version ) >/dev/null 2>&1 ; then
7511 _xmmsplugindir=$(xmms-config --input-plugin-dir)
7512 _xmmslibdir=$(xmms-config --exec-prefix)/lib
7513 else
7514 _xmmsplugindir=/usr/lib/xmms/Input
7515 _xmmslibdir=/usr/lib
7518 def_xmms='#define CONFIG_XMMS 1'
7519 if darwin ; then
7520 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
7521 else
7522 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
7524 else
7525 def_xmms='#undef CONFIG_XMMS'
7527 echores "$_xmms"
7529 if test "$_charset" != "noconv" ; then
7530 def_charset="#define MSG_CHARSET \"$_charset\""
7531 else
7532 def_charset="#undef MSG_CHARSET"
7533 _charset="UTF-8"
7536 if test -n "$_charset" && test "$_charset" != "UTF-8" ; then
7537 echocheck "iconv program"
7538 iconv -f UTF-8 -t $_charset ${_mp_help} > /dev/null 2>> "$TMPLOG"
7539 if test "$?" -ne 0 ; then
7540 echores "no"
7541 echo "No working iconv program found, use "
7542 echo "--charset=UTF-8 to continue anyway."
7543 echo "If you also have problems with iconv library functions use --charset=noconv."
7544 exit 1
7545 else
7546 echores "yes"
7550 #############################################################################
7552 echocheck "automatic gdb attach"
7553 if test "$_crash_debug" = yes ; then
7554 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
7555 else
7556 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
7557 _crash_debug=no
7559 echores "$_crash_debug"
7561 echocheck "compiler support for noexecstack"
7562 cat > $TMPC <<EOF
7563 int main(void) { return 0; }
7565 if cc_check -Wl,-z,noexecstack ; then
7566 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
7567 echores "yes"
7568 else
7569 echores "no"
7573 # Dynamic linking flags
7574 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
7575 _ld_dl_dynamic=''
7576 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
7577 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
7578 _ld_dl_dynamic='-rdynamic'
7581 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
7582 bsdos && extra_ldflags="$extra_ldflags -ldvd"
7583 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
7585 def_debug='#undef MP_DEBUG'
7586 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
7589 echocheck "joystick"
7590 def_joystick='#undef CONFIG_JOYSTICK'
7591 if test "$_joystick" = yes ; then
7592 if linux ; then
7593 # TODO add some check
7594 def_joystick='#define CONFIG_JOYSTICK 1'
7595 else
7596 _joystick="no"
7597 _res_comment="unsupported under $system_name"
7600 echores "$_joystick"
7602 echocheck "lirc"
7603 if test "$_lirc" = auto ; then
7604 _lirc=no
7605 cat > $TMPC <<EOF
7606 #include <lirc/lirc_client.h>
7607 int main(void) { return 0; }
7609 cc_check -llirc_client && _lirc=yes
7611 if test "$_lirc" = yes ; then
7612 def_lirc='#define CONFIG_LIRC 1'
7613 libs_mplayer="$libs_mplayer -llirc_client"
7614 else
7615 def_lirc='#undef CONFIG_LIRC'
7617 echores "$_lirc"
7619 echocheck "lircc"
7620 if test "$_lircc" = auto ; then
7621 _lircc=no
7622 cat > $TMPC <<EOF
7623 #include <lirc/lircc.h>
7624 int main(void) { return 0; }
7626 cc_check -llircc && _lircc=yes
7628 if test "$_lircc" = yes ; then
7629 def_lircc='#define CONFIG_LIRCC 1'
7630 libs_mplayer="$libs_mplayer -llircc"
7631 else
7632 def_lircc='#undef CONFIG_LIRCC'
7634 echores "$_lircc"
7636 if arm; then
7637 # Detect maemo development platform libraries availability (http://www.maemo.org),
7638 # they are used when run on Nokia 770|8x0
7639 echocheck "maemo (Nokia 770|8x0)"
7640 if test "$_maemo" = auto ; then
7641 _maemo=no
7642 cat > $TMPC << EOF
7643 #include <libosso.h>
7644 int main(void) { (void) osso_initialize("", "", 0, NULL); return 0; }
7646 cc_check $($_pkg_config --cflags --libs libosso 2>/dev/null) && _maemo=yes
7648 if test "$_maemo" = yes ; then
7649 def_maemo='#define CONFIG_MAEMO 1'
7650 extra_cflags="$extra_cflags $($_pkg_config --cflags libosso)"
7651 extra_ldflags="$extra_ldflags $($_pkg_config --libs libosso) -lXsp"
7652 else
7653 def_maemo='#undef CONFIG_MAEMO'
7655 echores "$_maemo"
7658 #############################################################################
7660 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
7661 # the OMF format needs to come after the 'extern symbol prefix' check, which
7662 # uses nm.
7663 if os2 ; then
7664 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
7667 # linker paths should be the same for mencoder and mplayer
7668 _ld_tmp=""
7669 for I in $libs_mplayer ; do
7670 _tmp=$(echo $I | sed -e 's/^-L.*$//')
7671 if test -z "$_tmp" ; then
7672 extra_ldflags="$extra_ldflags $I"
7673 else
7674 _ld_tmp="$_ld_tmp $I"
7676 done
7677 libs_mplayer=$_ld_tmp
7680 #############################################################################
7681 # 64 bit file offsets?
7682 if test "$_largefiles" = yes || freebsd ; then
7683 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
7684 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
7685 # dvdread support requires this (for off64_t)
7686 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
7690 CXXFLAGS=" $CFLAGS -Iffmpeg -D__STDC_LIMIT_MACROS"
7692 # This must be the last test to be performed. Any other tests following it
7693 # could fail due to linker errors. libdvdnavmini is intentionally not linked
7694 # against libdvdread (to permit MPlayer to use its own copy of the library).
7695 # So any compilation using the flags added here but not linking against
7696 # libdvdread can fail.
7697 echocheck "DVD support (libdvdnav)"
7698 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
7699 _dvdnav=no
7701 dvdnav_internal=no
7702 if test "$_dvdnav" = auto ; then
7703 if test "$_dvdread_internal" = yes ; then
7704 _dvdnav=yes
7705 dvdnav_internal=yes
7706 _res_comment="internal"
7707 else
7708 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
7711 if test "$_dvdnav" = auto ; then
7712 cat > $TMPC <<EOF
7713 #include <inttypes.h>
7714 #include <dvdnav/dvdnav.h>
7715 int main(void) { dvdnav_t *dvd=0; return 0; }
7717 _dvdnav=no
7718 _dvdnavdir=$($_dvdnavconfig --cflags)
7719 _dvdnavlibs=$($_dvdnavconfig --libs)
7720 cc_check $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
7722 if test "$_dvdnav" = yes ; then
7723 _largefiles=yes
7724 def_dvdnav='#define CONFIG_DVDNAV 1'
7725 if test "$dvdnav_internal" = yes ; then
7726 cflags_libdvdnav="-Ilibdvdnav"
7727 _inputmodules="dvdnav(internal) $_inputmodules"
7728 else
7729 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
7730 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
7731 _inputmodules="dvdnav $_inputmodules"
7733 else
7734 def_dvdnav='#undef CONFIG_DVDNAV'
7735 _noinputmodules="dvdnav $_noinputmodules"
7737 echores "$_dvdnav"
7739 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
7740 # Read dvdnav comment above.
7742 #############################################################################
7743 echo "Creating config.mak"
7744 cat > config.mak << EOF
7745 # -------- Generated by configure -----------
7747 # Ensure that locale settings do not interfere with shell commands.
7748 export LC_ALL = C
7750 CONFIGURATION = $_configuration
7752 CHARSET = $_charset
7753 DOC_LANGS = $language_doc
7754 DOC_LANG_ALL = $doc_lang_all
7755 MAN_LANGS = $language_man
7756 MAN_LANG_ALL = $man_lang_all
7758 prefix = \$(DESTDIR)$_prefix
7759 BINDIR = \$(DESTDIR)$_bindir
7760 DATADIR = \$(DESTDIR)$_datadir
7761 LIBDIR = \$(DESTDIR)$_libdir
7762 MANDIR = \$(DESTDIR)$_mandir
7763 CONFDIR = \$(DESTDIR)$_confdir
7765 AR = $_ar
7766 AS = $_cc
7767 CC = $_cc
7768 CXX = $_cc
7769 HOST_CC = $_host_cc
7770 YASM = $_yasm
7771 INSTALL = $_install
7772 INSTALLSTRIP = $_install_strip
7773 RANLIB = $_ranlib
7774 WINDRES = $_windres
7776 CFLAGS = $CFLAGS $extra_cflags
7777 CXXFLAGS = $CXXFLAGS $extra_cflags $extra_cxxflags
7778 CFLAGS_DHAHELPER = $cflags_dhahelper
7779 CFLAGS_FAAD_FIXED = $cflags_faad_fixed
7780 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
7781 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
7782 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
7783 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
7784 CFLAGS_STACKREALIGN = $cflags_stackrealign
7785 CFLAGS_SVGALIB_HELPER = $cflags_svgalib_helper
7786 CFLAGS_TREMOR_LOW = $cflags_tremor_low
7787 YASMFLAGS = $YASMFLAGS
7789 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
7790 EXTRALIBS_MPLAYER = $libs_mplayer
7791 EXTRALIBS_MENCODER = $libs_mencoder
7793 MPDEPEND_CMD = \$(CC) -MM \$(CFLAGS) \$(filter-out %.xpm,\$(filter-out %.h,$^)) | sed -e "s,[0-9a-z._-]*: \([a-z0-9/]*/\)[^/]* ,\1&," -e "s,\(.*\)\.o: ,\1.d &,"
7794 MPDEPEND_CMD_CXX = \$(CC) -MM \$(CXXFLAGS) \$(filter-out %.hh,\$(filter-out %.h,$^)) | sed -e "s,[0-9a-z._-]*: \([a-z0-9/]*/\)[^/]* ,\1&," -e "s,\(.*\)\.o: ,\1.d &,"
7796 GETCH = $_getch
7797 HELP_FILE = $_mp_help
7798 TIMER = $_timer
7800 EXESUF = $_exesuf
7801 EXESUFS_ALL = .exe
7803 $_target_arch
7804 $_target_subarch
7805 $(echo $_cpuexts | tr '[a-z] ' '[A-Z]\n' | sed 's/^/HAVE_/;s/$/=yes/')
7807 MENCODER = $_mencoder
7808 MPLAYER = $_mplayer
7810 NEED_GETTIMEOFDAY = $_need_gettimeofday
7811 NEED_GLOB = $_need_glob
7812 NEED_MMAP = $_need_mmap
7813 NEED_SETENV = $_need_setenv
7814 NEED_SHMEM = $_need_shmem
7815 NEED_STRSEP = $_need_strsep
7816 NEED_SWAB = $_need_swab
7817 NEED_VSSCANF = $_need_vsscanf
7819 # features
7820 3DFX = $_3dfx
7821 AA = $_aa
7822 ALSA1X = $_alsa1x
7823 ALSA9 = $_alsa9
7824 ALSA5 = $_alsa5
7825 APPLE_IR = $_apple_ir
7826 APPLE_REMOTE = $_apple_remote
7827 ARTS = $_arts
7828 AUDIO_INPUT = $_audio_input
7829 BITMAP_FONT = $_bitmap_font
7830 BL = $_bl
7831 CACA = $_caca
7832 CDDA = $_cdda
7833 CDDB = $_cddb
7834 COREAUDIO = $_coreaudio
7835 COREVIDEO = $_corevideo
7836 DART = $_dart
7837 DFBMGA = $_dfbmga
7838 DGA = $_dga
7839 DIRECT3D = $_direct3d
7840 DIRECTFB = $_directfb
7841 DIRECTX = $_directx
7842 DVBIN = $_dvbin
7843 DVDNAV = $_dvdnav
7844 DVDNAV_INTERNAL = $dvdnav_internal
7845 DVDREAD = $_dvdread
7846 DVDREAD_INTERNAL = $_dvdread_internal
7847 DXR2 = $_dxr2
7848 DXR3 = $_dxr3
7849 ESD = $_esd
7850 FAAC=$_faac
7851 FAAD = $_faad
7852 FAAD_INTERNAL = $_faad_internal
7853 FASTMEMCPY = $_fastmemcpy
7854 FBDEV = $_fbdev
7855 FREETYPE = $_freetype
7856 FTP = $_ftp
7857 GIF = $_gif
7858 GGI = $_ggi
7859 GL = $_gl
7860 GL_WIN32 = $_gl_win32
7861 MATRIXVIEW = $_matrixview
7862 HAVE_POSIX_SELECT = $_posix_select
7863 HAVE_SYS_MMAN_H = $_mman
7864 IVTV = $_ivtv
7865 JACK = $_jack
7866 JOYSTICK = $_joystick
7867 JPEG = $_jpeg
7868 KVA = $_kva
7869 LADSPA = $_ladspa
7870 LIBA52 = $_liba52
7871 LIBA52_INTERNAL = $_liba52_internal
7872 LIBASS = $_ass
7873 LIBBS2B = $_libbs2b
7874 LIBDCA = $_libdca
7875 LIBDV = $_libdv
7876 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
7877 LIBLZO = $_liblzo
7878 LIBMAD = $_mad
7879 LIBMENU = $_menu
7880 LIBMENU_DVBIN = $_menu_dvbin
7881 LIBMPEG2 = $_libmpeg2
7882 LIBNEMESI = $_nemesi
7883 LIBNUT = $_libnut
7884 LIBSMBCLIENT = $_smb
7885 LIBTHEORA = $_theora
7886 LIRC = $_lirc
7887 LIVE555 = $_live
7888 MACOSX_BUNDLE = $_macosx_bundle
7889 MACOSX_FINDER = $_macosx_finder
7890 MD5SUM = $_md5sum
7891 MGA = $_mga
7892 MNG = $_mng
7893 MP3LAME = $_mp3lame
7894 MP3LIB = $_mp3lib
7895 MUSEPACK = $_musepack
7896 NAS = $_nas
7897 NATIVE_RTSP = $_native_rtsp
7898 NETWORK = $_network
7899 OPENAL = $_openal
7900 OSS = $_ossaudio
7901 PE_EXECUTABLE = $_pe_executable
7902 PNG = $_png
7903 PNM = $_pnm
7904 PRIORITY = $_priority
7905 PULSE = $_pulse
7906 PVR = $_pvr
7907 QTX_CODECS = $_qtx
7908 QTX_CODECS_WIN32 = $_qtx_codecs_win32
7909 QTX_EMULATION = $_qtx_emulation
7910 QUARTZ = $_quartz
7911 RADIO=$_radio
7912 RADIO_CAPTURE=$_radio_capture
7913 REAL_CODECS = $_real
7914 S3FB = $_s3fb
7915 SDL = $_sdl
7916 SPEEX = $_speex
7917 STREAM_CACHE = $_stream_cache
7918 SGIAUDIO = $_sgiaudio
7919 SUNAUDIO = $_sunaudio
7920 SVGA = $_svga
7921 TDFXFB = $_tdfxfb
7922 TDFXVID = $_tdfxvid
7923 TGA = $_tga
7924 TOOLAME=$_toolame
7925 TREMOR_INTERNAL = $_tremor_internal
7926 TV = $_tv
7927 TV_BSDBT848 = $_tv_bsdbt848
7928 TV_DSHOW = $_tv_dshow
7929 TV_V4L = $_tv_v4l
7930 TV_V4L1 = $_tv_v4l1
7931 TV_V4L2 = $_tv_v4l2
7932 TWOLAME=$_twolame
7933 UNRAR_EXEC = $_unrar_exec
7934 V4L2 = $_v4l2
7935 VCD = $_vcd
7936 VDPAU = $_vdpau
7937 VESA = $_vesa
7938 VIDIX = $_vidix
7939 VIDIX_PCIDB = $_vidix_pcidb_val
7940 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
7941 VIDIX_IVTV=$_vidix_drv_ivtv
7942 VIDIX_MACH64=$_vidix_drv_mach64
7943 VIDIX_MGA=$_vidix_drv_mga
7944 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
7945 VIDIX_NVIDIA=$_vidix_drv_nvidia
7946 VIDIX_PM2=$_vidix_drv_pm2
7947 VIDIX_PM3=$_vidix_drv_pm3
7948 VIDIX_RADEON=$_vidix_drv_radeon
7949 VIDIX_RAGE128=$_vidix_drv_rage128
7950 VIDIX_S3=$_vidix_drv_s3
7951 VIDIX_SH_VEU=$_vidix_drv_sh_veu
7952 VIDIX_SIS=$_vidix_drv_sis
7953 VIDIX_UNICHROME=$_vidix_drv_unichrome
7954 VORBIS = $_vorbis
7955 VSTREAM = $_vstream
7956 WII = $_wii
7957 WIN32DLL = $_win32dll
7958 WIN32WAVEOUT = $_win32waveout
7959 WIN32_EMULATION = $_win32_emulation
7960 WINVIDIX = $winvidix
7961 X11 = $_x11
7962 X264 = $_x264
7963 XANIM_CODECS = $_xanim
7964 XMGA = $_xmga
7965 XMMS_PLUGINS = $_xmms
7966 XV = $_xv
7967 XVID4 = $_xvid
7968 XVIDIX = $xvidix
7969 XVMC = $_xvmc
7970 XVR100 = $_xvr100
7971 YUV4MPEG = $_yuv4mpeg
7972 ZR = $_zr
7974 # FFmpeg
7975 LIBAVUTIL = $_libavutil
7976 LIBAVCODEC = $_libavcodec
7977 LIBAVFORMAT = $_libavformat
7978 LIBPOSTPROC = $_libpostproc
7979 LIBSWSCALE = $_libswscale
7980 LIBAVCODEC_INTERNALS = $_libavcodec_internals
7981 LIBSWSCALE_INTERNALS = $_libswscale_internals
7982 FFMPEG_SOURCE_PATH = $_ffmpeg_source
7984 # Some FFmpeg codecs depend on these. Enable them unconditionally for now.
7985 CONFIG_AANDCT=yes
7986 CONFIG_FFT=yes
7987 CONFIG_FFT_MMX=$fft_mmx
7988 CONFIG_GOLOMB=yes
7989 CONFIG_LPC=yes
7990 CONFIG_MDCT=yes
7991 CONFIG_RDFT=yes
7993 CONFIG_BZLIB=$bzlib
7994 CONFIG_ENCODERS=yes
7995 CONFIG_GPL=yes
7996 CONFIG_MLIB = $_mlib
7997 CONFIG_MUXERS=$_mencoder
7998 CONFIG_VDPAU=$_vdpau
7999 CONFIG_XVMC=$_xvmc
8000 CONFIG_ZLIB=$_zlib
8002 HAVE_PTHREADS = $_pthreads
8003 HAVE_SHM = $_shm
8004 HAVE_W32THREADS = $_w32threads
8005 HAVE_YASM = $_have_yasm
8009 #############################################################################
8011 ff_config_enable () {
8012 _nprefix=$3;
8013 test -z "$_nprefix" && _nprefix='CONFIG'
8014 for part in $1; do
8015 if $(echo $2 | grep -q -E "(^| )$part($| )"); then
8016 echo "#define ${_nprefix}_$part 1"
8017 else
8018 echo "#define ${_nprefix}_$part 0"
8020 done
8023 echo "Creating config.h"
8024 cat > $TMPH << EOF
8025 /*----------------------------------------------------------------------------
8026 ** This file has been automatically generated by configure any changes in it
8027 ** will be lost when you run configure again.
8028 ** Instead of modifying definitions here, use the --enable/--disable options
8029 ** of the configure script! See ./configure --help for details.
8030 *---------------------------------------------------------------------------*/
8032 #ifndef MPLAYER_CONFIG_H
8033 #define MPLAYER_CONFIG_H
8035 /* Undefine this if you do not want to select mono audio (left or right)
8036 with a stereo MPEG layer 2/3 audio stream. The command line option
8037 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
8038 right-only), with 0 being the default.
8040 #define CONFIG_FAKE_MONO 1
8042 /* set up max. outburst. use 65536 for ALSA 0.5, for others 16384 is enough */
8043 #define MAX_OUTBURST 65536
8045 /* set up audio OUTBURST. Do not change this! */
8046 #define OUTBURST 512
8048 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
8049 #undef FAST_OSD
8050 #undef FAST_OSD_TABLE
8052 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
8053 #define MPEG12_POSTPROC 1
8054 #define ATTRIBUTE_ALIGNED_MAX 16
8058 #define CONFIGURATION "$_configuration"
8060 #define MPLAYER_DATADIR "$_datadir"
8061 #define MPLAYER_CONFDIR "$_confdir"
8062 #define MPLAYER_LIBDIR "$_libdir"
8064 /* definitions needed by included libraries */
8065 #define HAVE_INTTYPES_H 1
8066 /* libmpeg2 + FFmpeg */
8067 $def_fast_inttypes
8068 /* libdvdcss */
8069 #define HAVE_ERRNO_H 1
8070 /* libdvdcss + libdvdread */
8071 #define HAVE_LIMITS_H 1
8072 /* libdvdcss + libfaad2 */
8073 #define HAVE_UNISTD_H 1
8074 /* libfaad2 + libdvdread */
8075 #define STDC_HEADERS 1
8076 #define HAVE_MEMCPY 1
8077 /* libfaad2 */
8078 #define HAVE_STRING_H 1
8079 #define HAVE_STRINGS_H 1
8080 #define HAVE_SYS_STAT_H 1
8081 #define HAVE_SYS_TYPES_H 1
8082 /* libdvdnav */
8083 #define READ_CACHE_TRACE 0
8084 /* libdvdread */
8085 #define HAVE_DLFCN_H 1
8086 $def_dvdcss
8089 /* system headers */
8090 $def_alloca_h
8091 $def_alsa_asoundlib_h
8092 $def_altivec_h
8093 $def_malloc_h
8094 $def_mman_h
8095 $def_mman_has_map_failed
8096 $def_soundcard_h
8097 $def_sys_asoundlib_h
8098 $def_sys_soundcard_h
8099 $def_sys_sysinfo_h
8100 $def_termios_h
8101 $def_termios_sys_h
8102 $def_winsock2_h
8105 /* system functions */
8106 $def_gethostbyname2
8107 $def_gettimeofday
8108 $def_glob
8109 $def_langinfo
8110 $def_llrint
8111 $def_log2
8112 $def_lrint
8113 $def_lrintf
8114 $def_map_memalign
8115 $def_memalign
8116 $def_nanosleep
8117 $def_posix_select
8118 $def_round
8119 $def_roundf
8120 $def_select
8121 $def_setenv
8122 $def_shm
8123 $def_strsep
8124 $def_swab
8125 $def_sysi86
8126 $def_sysi86_iv
8127 $def_termcap
8128 $def_termios
8129 $def_truncf
8130 $def_vsscanf
8133 /* system-specific features */
8134 $def_asmalign_pot
8135 $def_builtin_expect
8136 $def_dl
8137 $def_extern_asm
8138 $def_extern_prefix
8139 $def_iconv
8140 $def_kstat
8141 $def_macosx_bundle
8142 $def_macosx_finder
8143 $def_maemo
8144 $def_named_asm_args
8145 $def_priority
8146 $def_quicktime
8147 $def_restrict_keyword
8148 $def_rtc
8149 $def_unrar_exec
8152 /* configurable options */
8153 $def_charset
8154 $def_crash_debug
8155 $def_debug
8156 $def_dynamic_plugins
8157 $def_fastmemcpy
8158 $def_menu
8159 $def_runtime_cpudetection
8160 $def_sighandler
8161 $def_sortsub
8162 $def_stream_cache
8163 $def_pthread_cache
8166 /* CPU stuff */
8167 #define __CPU__ $iproc
8168 $def_words_endian
8169 $def_bigendian
8170 $(ff_config_enable "$_arch_all" "$_arch" "ARCH")
8171 $(ff_config_enable "$_cpuexts_all" "$_cpuexts" "HAVE")
8174 /* DVD/VCD/CD */
8175 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
8176 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
8177 $def_bsdi_dvd
8178 $def_cddb
8179 $def_cdio
8180 $def_cdparanoia
8181 $def_cdrom
8182 $def_dvd
8183 $def_dvd_bsd
8184 $def_dvd_darwin
8185 $def_dvd_linux
8186 $def_dvd_openbsd
8187 $def_dvdio
8188 $def_dvdnav
8189 $def_dvdread
8190 $def_hpux_scsi_h
8191 $def_libcdio
8192 $def_sol_scsi_h
8193 $def_vcd
8196 /* codec libraries */
8197 $def_faac
8198 $def_faad
8199 $def_faad_internal
8200 $def_liba52
8201 $def_liba52_internal
8202 $def_libdca
8203 $def_libdv
8204 $def_liblzo
8205 $def_libmpeg2
8206 $def_mad
8207 $def_mp3lame
8208 $def_mp3lame_preset
8209 $def_mp3lame_preset_medium
8210 $def_mp3lib
8211 $def_musepack
8212 $def_speex
8213 $def_theora
8214 $def_toolame
8215 $def_tremor
8216 $def_twolame
8217 $def_vorbis
8218 $def_x264
8219 $def_xvid
8220 $def_zlib
8222 $def_libnut
8225 /* binary codecs */
8226 $def_qtx
8227 $def_qtx_win32
8228 $def_real
8229 $def_real_path
8230 $def_win32_loader
8231 $def_win32dll
8232 #define WIN32_PATH "$_win32codecsdir"
8233 $def_xanim
8234 $def_xanim_path
8235 $def_xmms
8236 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
8239 /* Audio output drivers */
8240 $def_alsa
8241 $def_alsa1x
8242 $def_alsa5
8243 $def_alsa9
8244 $def_arts
8245 $def_coreaudio
8246 $def_dart
8247 $def_esd
8248 $def_esd_latency
8249 $def_jack
8250 $def_nas
8251 $def_openal
8252 $def_openal_h
8253 $def_ossaudio
8254 $def_ossaudio_devdsp
8255 $def_ossaudio_devmixer
8256 $def_pulse
8257 $def_sgiaudio
8258 $def_sunaudio
8259 $def_win32waveout
8261 $def_ladspa
8262 $def_libbs2b
8265 /* input */
8266 $def_apple_ir
8267 $def_apple_remote
8268 $def_ioctl_bt848_h_name
8269 $def_ioctl_meteor_h_name
8270 $def_joystick
8271 $def_lirc
8272 $def_lircc
8273 $def_pvr
8274 $def_radio
8275 $def_radio_bsdbt848
8276 $def_radio_capture
8277 $def_radio_v4l
8278 $def_radio_v4l2
8279 $def_tv
8280 $def_tv_bsdbt848
8281 $def_tv_dshow
8282 $def_tv_v4l
8283 $def_tv_v4l1
8284 $def_tv_v4l2
8287 /* font stuff */
8288 $def_ass
8289 $def_bitmap_font
8290 $def_enca
8291 $def_fontconfig
8292 $def_freetype
8293 $def_fribidi
8296 /* networking */
8297 $def_closesocket
8298 $def_ftp
8299 $def_inet6
8300 $def_inet_aton
8301 $def_inet_pton
8302 $def_live
8303 $def_nemesi
8304 $def_network
8305 $def_smb
8306 $def_socklen_t
8307 $def_vstream
8310 /* libvo options */
8311 $def_3dfx
8312 $def_aa
8313 $def_bl
8314 $def_caca
8315 $def_corevideo
8316 $def_dfbmga
8317 $def_dga
8318 $def_dga1
8319 $def_dga2
8320 $def_direct3d
8321 $def_directfb
8322 $def_directfb_version
8323 $def_directx
8324 $def_dvb
8325 $def_dvb_head
8326 $def_dvbin
8327 $def_dxr2
8328 $def_dxr3
8329 $def_fbdev
8330 $def_ggi
8331 $def_ggiwmh
8332 $def_gif
8333 $def_gif_4
8334 $def_gif_tvt_hack
8335 $def_gl
8336 $def_gl_win32
8337 $def_matrixview
8338 $def_ivtv
8339 $def_jpeg
8340 $def_kva
8341 $def_md5sum
8342 $def_mga
8343 $def_mng
8344 $def_png
8345 $def_pnm
8346 $def_quartz
8347 $def_s3fb
8348 $def_sdl
8349 $def_sdlbuggy
8350 $def_svga
8351 $def_tdfxfb
8352 $def_tdfxvid
8353 $def_tga
8354 $def_v4l2
8355 $def_vdpau
8356 $def_vesa
8357 $def_vidix
8358 $def_vidix_drv_cyberblade
8359 $def_vidix_drv_ivtv
8360 $def_vidix_drv_mach64
8361 $def_vidix_drv_mga
8362 $def_vidix_drv_mga_crtc2
8363 $def_vidix_drv_nvidia
8364 $def_vidix_drv_pm3
8365 $def_vidix_drv_radeon
8366 $def_vidix_drv_rage128
8367 $def_vidix_drv_s3
8368 $def_vidix_drv_sh_veu
8369 $def_vidix_drv_sis
8370 $def_vidix_drv_unichrome
8371 $def_vidix_pfx
8372 $def_vm
8373 $def_wii
8374 $def_x11
8375 $def_xdpms
8376 $def_xf86keysym
8377 $def_xinerama
8378 $def_xmga
8379 $def_xss
8380 $def_xv
8381 $def_xvmc
8382 $def_xvr100
8383 $def_yuv4mpeg
8384 $def_zr
8387 /* FFmpeg */
8388 $def_libavcodec
8389 $def_libavformat
8390 $def_libavutil
8391 $def_libpostproc
8392 $def_libswscale
8393 $def_libavcodec_internals
8394 $def_libswscale_internals
8396 #define CONFIG_DECODERS 1
8397 #define CONFIG_ENCODERS 1
8398 #define CONFIG_DEMUXERS 1
8399 $def_muxers
8401 $def_arpa_inet_h
8402 $def_bswap
8403 $def_bzlib
8404 $def_dcbzl
8405 $def_dos_paths
8406 $def_fast_64bit
8407 $def_fast_unaligned
8408 $def_memalign_hack
8409 $def_mlib
8410 $def_mkstemp
8411 $def_posix_memalign
8412 $def_pthreads
8413 $def_ten_operands
8414 $def_threads
8415 $def_xform_asm
8416 $def_yasm
8418 #define CONFIG_FASTDIV 0
8419 #define CONFIG_FFSERVER 0
8420 #define CONFIG_GPL 1
8421 #define CONFIG_GRAY 0
8422 #define CONFIG_HARDCODED_TABLES 0
8423 #define CONFIG_LIBVORBIS 0
8424 #define CONFIG_POWERPC_PERF 0
8425 #define CONFIG_SMALL 0
8426 #define CONFIG_SWSCALE 1
8427 #define CONFIG_SWSCALE_ALPHA 1
8429 #define HAVE_ATTRIBUTE_PACKED 1
8430 #define HAVE_GETHRTIME 0
8431 #define HAVE_INLINE_ASM 0
8432 #define HAVE_LDBRX 0
8433 #define HAVE_POLL_H 1
8434 #define HAVE_PPC4XX 0
8435 #define HAVE_VIRTUALALLOC 0
8437 /* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */
8438 #define CONFIG_AANDCT 1
8439 #define CONFIG_FFT 1
8440 #define CONFIG_GOLOMB 1
8441 #define CONFIG_LPC 1
8442 #define CONFIG_MDCT 1
8443 #define CONFIG_RDFT 1
8445 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
8446 $def_ebx_available
8447 #ifndef MP_DEBUG
8448 #define HAVE_EBP_AVAILABLE 1
8449 #else
8450 #define HAVE_EBP_AVAILABLE 0
8451 #endif
8453 #define CONFIG_H263_VAAPI_HWACCEL 0
8454 #define CONFIG_MPEG2_VAAPI_HWACCEL 0
8455 #define CONFIG_MPEG4_VAAPI_HWACCEL 0
8456 #define CONFIG_H264_VAAPI_HWACCEL 0
8457 #define CONFIG_VC1_VAAPI_HWACCEL 0
8458 #define CONFIG_WMV3_VAAPI_HWACCEL 0
8460 #endif /* MPLAYER_CONFIG_H */
8463 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
8464 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
8466 #############################################################################
8468 cat << EOF
8470 Config files successfully generated by ./configure $_configuration !
8472 Install prefix: $_prefix
8473 Data directory: $_datadir
8474 Config direct.: $_confdir
8476 Byte order: $_byte_order
8477 Optimizing for: $_optimizing
8479 Languages:
8480 Messages: $language_msg
8481 Manual pages: $language_man
8482 Documentation: $language_doc
8484 Enabled optional drivers:
8485 Input: $_inputmodules
8486 Codecs: $_codecmodules
8487 Audio output: $_aomodules
8488 Video output: $_vomodules
8490 Disabled optional drivers:
8491 Input: $_noinputmodules
8492 Codecs: $_nocodecmodules
8493 Audio output: $_noaomodules
8494 Video output: $_novomodules
8496 'config.h' and 'config.mak' contain your configuration options.
8497 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
8498 compile *** DO NOT REPORT BUGS if you tweak these files ***
8500 'make' will now compile MPlayer and 'make install' will install it.
8501 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
8506 if test "$_mtrr" = yes ; then
8507 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$doc_lang/video.html#mtrr)"
8508 echo
8511 if ! x86_32; then
8512 cat <<EOF
8513 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
8514 operating system ($system_name). You may encounter a few files that cannot
8515 be played due to missing open source video/audio codec support.
8521 cat <<EOF
8522 Check $TMPLOG if you wonder why an autodetection failed (make sure
8523 development headers/packages are installed).
8525 NOTE: The --enable-* parameters unconditionally force options on, completely
8526 skipping autodetection. This behavior is unlike what you may be used to from
8527 autoconf-based configure scripts that can decide to override you. This greater
8528 level of control comes at a price. You may have to provide the correct compiler
8529 and linker flags yourself.
8530 If you used one of these options (except --enable-menu and similar ones that
8531 turn on internal features) and experience a compilation or linking failure,
8532 make sure you have passed the necessary compiler/linker flags to configure.
8534 If you suspect a bug, please read DOCS/HTML/$doc_lang/bugreports.html.
8538 if test "$_warn_CFLAGS" = yes; then
8539 cat <<EOF
8541 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
8542 but:
8544 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
8546 It is strongly recommended to let MPlayer choose the correct CFLAGS!
8547 To do so, execute 'CFLAGS= ./configure <options>'
8552 # Last move:
8553 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP" "$TMPH"