Skip svn change r30265 (default mp3 decoder change)
[mplayer/kovensky.git] / configure
blob8a09d5a79e19829da6ad88407c2862d63a7415de
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 --enable-liba52-internal enable builtin liba52 [disabled]
325 --disable-libmpeg2 disable builtin libmpeg2 [autodetect]
326 --disable-musepack disable musepack support [autodetect]
328 Video output:
329 --disable-vidix disable VIDIX [for x86 *nix]
330 --with-vidix-drivers[=*] list of VIDIX drivers to be compiled in
331 Available: cyberblade,ivtv,mach64,mga,mga_crtc2,
332 nvidia,pm2,pm3,radeon,rage128,s3,sis,unichrome
333 --disable-vidix-pcidb disable VIDIX PCI device name database
334 --enable-dhahelper enable VIDIX dhahelper support
335 --enable-svgalib_helper enable VIDIX svgalib_helper support
336 --enable-gl enable OpenGL video output [autodetect]
337 --disable-matrixview disable OpenGL MatrixView video output [autodetect]
338 --enable-dga2 enable DGA 2 support [autodetect]
339 --enable-dga1 enable DGA 1 support [autodetect]
340 --enable-vesa enable VESA video output [autodetect]
341 --enable-svga enable SVGAlib video output [autodetect]
342 --enable-sdl enable SDL video output [autodetect]
343 --enable-kva enable KVA video output [autodetect]
344 --enable-aa enable AAlib video output [autodetect]
345 --enable-caca enable CACA video output [autodetect]
346 --enable-ggi enable GGI video output [autodetect]
347 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
348 --enable-direct3d enable Direct3D video output [autodetect]
349 --enable-directx enable DirectX video output [autodetect]
350 --enable-dxr2 enable DXR2 video output [autodetect]
351 --enable-dxr3 enable DXR3/H+ video output [autodetect]
352 --enable-ivtv enable IVTV TV-Out video output [autodetect]
353 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
354 --enable-dvb enable DVB video output [autodetect]
355 --enable-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=yes
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=no
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 mingw32*) 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 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
2970 if test $_winsock2_h = auto ; then
2971 _winsock2_h=no
2972 cat > $TMPC << EOF
2973 #include <winsock2.h>
2974 int main(void) { (void) gethostbyname(0); return 0; }
2976 cc_check -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
2978 test "$_ld_sock" && _res_comment="using $_ld_sock"
2979 echores "$_socklib"
2982 if test $_winsock2_h = yes ; then
2983 _ld_sock="-lws2_32"
2984 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
2985 else
2986 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
2990 echocheck "arpa/inet.h"
2991 arpa_inet_h=no
2992 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
2993 cat > $TMPC << EOF
2994 #include <arpa/inet.h>
2995 int main(void) { return 0; }
2997 cc_check && arpa_inet_h=yes && def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
2998 echores "$arpa_inet_h"
3001 echocheck "inet_pton()"
3002 def_inet_pton='#define HAVE_INET_PTON 0'
3003 inet_pton=no
3004 cat > $TMPC << EOF
3005 #include <sys/types.h>
3006 #include <sys/socket.h>
3007 #include <arpa/inet.h>
3008 int main(void) { (void) inet_pton(0, 0, 0); return 0; }
3010 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3011 cc_check $_ld_tmp && inet_pton=yes && break
3012 done
3013 if test $inet_pton = yes ; then
3014 test "$_ld_tmp" && _res_comment="using $_ld_tmp"
3015 def_inet_pton='#define HAVE_INET_PTON 1'
3017 echores "$inet_pton"
3020 echocheck "inet_aton()"
3021 def_inet_aton='#define HAVE_INET_ATON 0'
3022 inet_aton=no
3023 cat > $TMPC << EOF
3024 #include <sys/types.h>
3025 #include <sys/socket.h>
3026 #include <arpa/inet.h>
3027 int main(void) { (void) inet_aton(0, 0); return 0; }
3029 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3030 cc_check $_ld_tmp && inet_aton=yes && break
3031 done
3032 if test $inet_aton = yes ; then
3033 test "$_ld_tmp" && _res_comment="using $_ld_tmp"
3034 def_inet_aton='#define HAVE_INET_ATON 1'
3036 echores "$inet_aton"
3039 echocheck "socklen_t"
3040 _socklen_t=no
3041 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
3042 cat > $TMPC << EOF
3043 #include <$header>
3044 int main(void) { socklen_t v = 0; return v; }
3046 cc_check && _socklen_t=yes && break
3047 done
3048 if test "$_socklen_t" = yes ; then
3049 def_socklen_t='#define HAVE_SOCKLEN_T 1'
3050 else
3051 def_socklen_t='#define HAVE_SOCKLEN_T 0'
3053 echores "$_socklen_t"
3056 echocheck "closesocket()"
3057 _closesocket=no
3058 cat > $TMPC << EOF
3059 #include <winsock2.h>
3060 int main(void) { closesocket(~0); return 0; }
3062 cc_check $_ld_sock && _closesocket=yes
3063 if test "$_closesocket" = yes ; then
3064 def_closesocket='#define HAVE_CLOSESOCKET 1'
3065 else
3066 def_closesocket='#define HAVE_CLOSESOCKET 0'
3068 echores "$_closesocket"
3071 echocheck "network"
3072 test $_winsock2_h = no && test $inet_pton = no &&
3073 test $inet_aton = no && _network=no
3074 if test "$_network" = yes ; then
3075 def_network='#define CONFIG_NETWORK 1'
3076 extra_ldflags="$extra_ldflags $_ld_sock"
3077 _inputmodules="network $_inputmodules"
3078 else
3079 _noinputmodules="network $_noinputmodules"
3080 def_network='#undef CONFIG_NETWORK'
3081 _ftp=no
3083 echores "$_network"
3086 echocheck "inet6"
3087 if test "$_inet6" = auto ; then
3088 cat > $TMPC << EOF
3089 #include <sys/types.h>
3090 #if !defined(_WIN32) || defined(__CYGWIN__)
3091 #include <sys/socket.h>
3092 #include <netinet/in.h>
3093 #else
3094 #include <ws2tcpip.h>
3095 #endif
3096 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3098 _inet6=no
3099 if cc_check $_ld_sock ; then
3100 _inet6=yes
3103 if test "$_inet6" = yes ; then
3104 def_inet6='#define HAVE_AF_INET6 1'
3105 else
3106 def_inet6='#undef HAVE_AF_INET6'
3108 echores "$_inet6"
3111 echocheck "gethostbyname2"
3112 if test "$_gethostbyname2" = auto ; then
3113 cat > $TMPC << EOF
3114 #include <sys/types.h>
3115 #include <sys/socket.h>
3116 #include <netdb.h>
3117 int main(void) { gethostbyname2("", AF_INET); return 0; }
3119 _gethostbyname2=no
3120 if cc_check ; then
3121 _gethostbyname2=yes
3124 if test "$_gethostbyname2" = yes ; then
3125 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3126 else
3127 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3129 echores "$_gethostbyname2"
3132 echocheck "inttypes.h (required)"
3133 cat > $TMPC << EOF
3134 #include <inttypes.h>
3135 int main(void) { return 0; }
3137 _inttypes=no
3138 cc_check && _inttypes=yes
3139 echores "$_inttypes"
3141 if test "$_inttypes" = no ; then
3142 echocheck "bitypes.h (inttypes.h predecessor)"
3143 cat > $TMPC << EOF
3144 #include <sys/bitypes.h>
3145 int main(void) { return 0; }
3147 cc_check && _inttypes=yes
3148 if test "$_inttypes" = yes ; then
3149 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."
3150 else
3151 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3156 echocheck "int_fastXY_t in inttypes.h"
3157 cat > $TMPC << EOF
3158 #include <inttypes.h>
3159 int main(void) {
3160 volatile int_fast16_t v= 0;
3161 return v; }
3163 _fast_inttypes=no
3164 cc_check && _fast_inttypes=yes
3165 if test "$_fast_inttypes" = no ; then
3166 def_fast_inttypes='
3167 typedef signed char int_fast8_t;
3168 typedef signed int int_fast16_t;
3169 typedef signed int int_fast32_t;
3170 typedef signed long long int_fast64_t;
3171 typedef unsigned char uint_fast8_t;
3172 typedef unsigned int uint_fast16_t;
3173 typedef unsigned int uint_fast32_t;
3174 typedef unsigned long long uint_fast64_t;'
3176 echores "$_fast_inttypes"
3179 echocheck "malloc.h"
3180 cat > $TMPC << EOF
3181 #include <malloc.h>
3182 int main(void) { (void) malloc(0); return 0; }
3184 _malloc=no
3185 cc_check && _malloc=yes
3186 if test "$_malloc" = yes ; then
3187 def_malloc_h='#define HAVE_MALLOC_H 1'
3188 else
3189 def_malloc_h='#define HAVE_MALLOC_H 0'
3191 # malloc.h emits a warning in FreeBSD and OpenBSD
3192 freebsd || openbsd || dragonfly && def_malloc_h='#define HAVE_MALLOC_H 0'
3193 echores "$_malloc"
3196 echocheck "memalign()"
3197 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3198 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3199 cat > $TMPC << EOF
3200 #include <malloc.h>
3201 int main(void) { (void) memalign(64, sizeof(char)); return 0; }
3203 _memalign=no
3204 cc_check && _memalign=yes
3205 if test "$_memalign" = yes ; then
3206 def_memalign='#define HAVE_MEMALIGN 1'
3207 else
3208 def_memalign='#define HAVE_MEMALIGN 0'
3209 def_map_memalign='#define memalign(a,b) malloc(b)'
3210 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3212 echores "$_memalign"
3215 echocheck "posix_memalign()"
3216 posix_memalign=no
3217 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3218 cat > $TMPC << EOF
3219 #define _XOPEN_SOURCE 600
3220 #include <stdlib.h>
3221 int main(void) { posix_memalign(NULL, 0, 0); }
3223 cc_check && posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3224 echores "$posix_memalign"
3227 echocheck "alloca.h"
3228 cat > $TMPC << EOF
3229 #include <alloca.h>
3230 int main(void) { (void) alloca(0); return 0; }
3232 _alloca=no
3233 cc_check && _alloca=yes
3234 if cc_check ; then
3235 def_alloca_h='#define HAVE_ALLOCA_H 1'
3236 else
3237 def_alloca_h='#undef HAVE_ALLOCA_H'
3239 echores "$_alloca"
3242 echocheck "fastmemcpy"
3243 if test "$_fastmemcpy" = yes ; then
3244 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3245 else
3246 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3248 echores "$_fastmemcpy"
3251 echocheck "mman.h"
3252 cat > $TMPC << EOF
3253 #include <sys/types.h>
3254 #include <sys/mman.h>
3255 int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; }
3257 _mman=no
3258 cc_check && _mman=yes
3259 if test "$_mman" = yes ; then
3260 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3261 else
3262 def_mman_h='#undef HAVE_SYS_MMAN_H'
3263 os2 && _need_mmap=yes
3265 echores "$_mman"
3267 cat > $TMPC << EOF
3268 #include <sys/types.h>
3269 #include <sys/mman.h>
3270 int main(void) { void *p = MAP_FAILED; return 0; }
3272 _mman_has_map_failed=no
3273 cc_check && _mman_has_map_failed=yes
3274 if test "$_mman_has_map_failed" = yes ; then
3275 def_mman_has_map_failed=''
3276 else
3277 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3280 echocheck "dynamic loader"
3281 cat > $TMPC << EOF
3282 #include <stddef.h>
3283 #include <dlfcn.h>
3284 int main(void) { dlopen("", 0); dlclose(NULL); dlsym(NULL, ""); return 0; }
3286 _dl=no
3287 for _ld_tmp in "" "-ldl" ; do
3288 cc_check $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3289 done
3290 if test "$_dl" = yes ; then
3291 def_dl='#define HAVE_LIBDL 1'
3292 else
3293 def_dl='#undef HAVE_LIBDL'
3295 echores "$_dl"
3298 echocheck "dynamic a/v plugins support"
3299 if test "$_dl" = no ; then
3300 _dynamic_plugins=no
3302 if test "$_dynamic_plugins" = yes ; then
3303 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3304 else
3305 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3307 echores "$_dynamic_plugins"
3310 def_threads='#define HAVE_THREADS 0'
3312 echocheck "pthread"
3313 if linux ; then
3314 THREAD_CFLAGS=-D_REENTRANT
3315 elif freebsd || netbsd || openbsd || bsdos ; then
3316 THREAD_CFLAGS=-D_THREAD_SAFE
3318 if test "$_pthreads" = auto ; then
3319 cat > $TMPC << EOF
3320 #include <pthread.h>
3321 void* func(void *arg) { return arg; }
3322 int main(void) { pthread_t tid; return pthread_create(&tid, 0, func, 0) == 0 ? 0 : 1; }
3324 _pthreads=no
3325 if ! hpux ; then
3326 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3327 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3328 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3329 done
3332 if test "$_pthreads" = yes ; then
3333 test $_ld_pthread && _res_comment="using $_ld_pthread"
3334 def_pthreads='#define HAVE_PTHREADS 1'
3335 def_threads='#define HAVE_THREADS 1'
3336 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3337 else
3338 _res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3339 def_pthreads='#undef HAVE_PTHREADS'
3340 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3341 mingw32 || _win32dll=no
3343 echores "$_pthreads"
3345 if cygwin ; then
3346 if test "$_pthreads" = yes ; then
3347 def_pthread_cache="#define PTHREAD_CACHE 1"
3348 else
3349 _stream_cache=no
3350 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3354 echocheck "w32threads"
3355 if test "$_pthreads" = yes ; then
3356 _res_comment="using pthread instead"
3357 _w32threads=no
3359 if test "$_w32threads" = auto ; then
3360 _w32threads=no
3361 mingw32 && _w32threads=yes
3363 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3364 echores "$_w32threads"
3366 echocheck "rpath"
3367 netbsd &&_rpath=yes
3368 if test "$_rpath" = yes ; then
3369 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3370 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3371 done
3372 extra_ldflags=$tmp
3374 echores "$_rpath"
3376 echocheck "iconv"
3377 if test "$_iconv" = auto ; then
3378 cat > $TMPC << EOF
3379 #include <stdio.h>
3380 #include <unistd.h>
3381 #include <iconv.h>
3382 #define INBUFSIZE 1024
3383 #define OUTBUFSIZE 4096
3385 char inbuffer[INBUFSIZE];
3386 char outbuffer[OUTBUFSIZE];
3388 int main(void) {
3389 size_t numread;
3390 iconv_t icdsc;
3391 char *tocode="UTF-8";
3392 char *fromcode="cp1250";
3393 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3394 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3395 char *iptr=inbuffer;
3396 char *optr=outbuffer;
3397 size_t inleft=numread;
3398 size_t outleft=OUTBUFSIZE;
3399 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft)
3400 != (size_t)(-1)) {
3401 write(1, outbuffer, OUTBUFSIZE - outleft);
3404 if (iconv_close(icdsc) == -1)
3407 return 0;
3410 _iconv=no
3411 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3412 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3413 _iconv=yes && break
3414 done
3416 if test "$_iconv" = yes ; then
3417 def_iconv='#define CONFIG_ICONV 1'
3418 else
3419 def_iconv='#undef CONFIG_ICONV'
3421 echores "$_iconv"
3424 echocheck "soundcard.h"
3425 _soundcard_h=no
3426 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3427 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3428 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3429 cat > $TMPC << EOF
3430 #include <$_soundcard_header>
3431 int main(void) { return 0; }
3433 cc_check && _soundcard_h=yes && _res_comment="$_soundcard_header" && break
3434 done
3436 if test "$_soundcard_h" = yes ; then
3437 if test $_soundcard_header = "sys/soundcard.h"; then
3438 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3439 else
3440 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3443 echores "$_soundcard_h"
3446 echocheck "sys/dvdio.h"
3447 cat > $TMPC << EOF
3448 #include <unistd.h>
3449 #include <sys/dvdio.h>
3450 int main(void) { return 0; }
3452 _dvdio=no
3453 cc_check && _dvdio=yes
3454 if test "$_dvdio" = yes ; then
3455 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3456 else
3457 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3459 echores "$_dvdio"
3462 echocheck "sys/cdio.h"
3463 cat > $TMPC << EOF
3464 #include <unistd.h>
3465 #include <sys/cdio.h>
3466 int main(void) { return 0; }
3468 _cdio=no
3469 cc_check && _cdio=yes
3470 if test "$_cdio" = yes ; then
3471 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3472 else
3473 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3475 echores "$_cdio"
3478 echocheck "linux/cdrom.h"
3479 cat > $TMPC << EOF
3480 #include <sys/types.h>
3481 #include <linux/cdrom.h>
3482 int main(void) { return 0; }
3484 _cdrom=no
3485 cc_check && _cdrom=yes
3486 if test "$_cdrom" = yes ; then
3487 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3488 else
3489 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3491 echores "$_cdrom"
3494 echocheck "dvd.h"
3495 cat > $TMPC << EOF
3496 #include <dvd.h>
3497 int main(void) { return 0; }
3499 _dvd=no
3500 cc_check && _dvd=yes
3501 if test "$_dvd" = yes ; then
3502 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3503 else
3504 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3506 echores "$_dvd"
3509 if bsdos; then
3510 echocheck "BSDI dvd.h"
3511 cat > $TMPC << EOF
3512 #include <dvd.h>
3513 int main(void) { return 0; }
3515 _bsdi_dvd=no
3516 cc_check && _bsdi_dvd=yes
3517 if test "$_bsdi_dvd" = yes ; then
3518 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3519 else
3520 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3522 echores "$_bsdi_dvd"
3523 fi #if bsdos
3526 if hpux; then
3527 # also used by AIX, but AIX does not support VCD and/or libdvdread
3528 echocheck "HP-UX SCSI header"
3529 cat > $TMPC << EOF
3530 #include <sys/scsi.h>
3531 int main(void) { return 0; }
3533 _hpux_scsi_h=no
3534 cc_check && _hpux_scsi_h=yes
3535 if test "$_hpux_scsi_h" = yes ; then
3536 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3537 else
3538 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3540 echores "$_hpux_scsi_h"
3541 fi #if hpux
3544 if sunos; then
3545 echocheck "userspace SCSI headers (Solaris)"
3546 cat > $TMPC << EOF
3547 #include <unistd.h>
3548 #include <stropts.h>
3549 #include <sys/scsi/scsi_types.h>
3550 #include <sys/scsi/impl/uscsi.h>
3551 int main(void) { return 0; }
3553 _sol_scsi_h=no
3554 cc_check && _sol_scsi_h=yes
3555 if test "$_sol_scsi_h" = yes ; then
3556 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3557 else
3558 def_sol_scsi_h='#undef SOLARIS_USCSI'
3560 echores "$_sol_scsi_h"
3561 fi #if sunos
3564 echocheck "termcap"
3565 if test "$_termcap" = auto ; then
3566 cat > $TMPC <<EOF
3567 #include <stddef.h>
3568 #include <term.h>
3569 int main(void) { tgetent(NULL, NULL); return 0; }
3571 _termcap=no
3572 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3573 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
3574 && _termcap=yes && break
3575 done
3577 if test "$_termcap" = yes ; then
3578 def_termcap='#define HAVE_TERMCAP 1'
3579 test $_ld_tmp && _res_comment="using $_ld_tmp"
3580 else
3581 def_termcap='#undef HAVE_TERMCAP'
3583 echores "$_termcap"
3586 echocheck "termios"
3587 def_termios='#undef HAVE_TERMIOS'
3588 def_termios_h='#undef HAVE_TERMIOS_H'
3589 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3590 if test "$_termios" = auto ; then
3591 _termios=no
3592 for _termios_header in "sys/termios.h" "termios.h"; do
3593 cat > $TMPC <<EOF
3594 #include <$_termios_header>
3595 int main(void) { return 0; }
3597 cc_check && _termios=yes && _res_comment="using $_termios_header" && break
3598 done
3601 if test "$_termios" = yes ; then
3602 def_termios='#define HAVE_TERMIOS 1'
3603 if test "$_termios_header" = "termios.h" ; then
3604 def_termios_h='#define HAVE_TERMIOS_H 1'
3605 else
3606 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3609 echores "$_termios"
3612 echocheck "shm"
3613 if test "$_shm" = auto ; then
3614 cat > $TMPC << EOF
3615 #include <sys/types.h>
3616 #include <sys/shm.h>
3617 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3619 _shm=no
3620 cc_check && _shm=yes
3622 if test "$_shm" = yes ; then
3623 def_shm='#define HAVE_SHM 1'
3624 else
3625 def_shm='#undef HAVE_SHM'
3627 echores "$_shm"
3630 echocheck "strsep()"
3631 cat > $TMPC << EOF
3632 #include <string.h>
3633 int main(void) { char *s = "Hello, world!"; (void) strsep(&s, ","); return 0; }
3635 _strsep=no
3636 cc_check && _strsep=yes
3637 if test "$_strsep" = yes ; then
3638 def_strsep='#define HAVE_STRSEP 1'
3639 _need_strsep=no
3640 else
3641 def_strsep='#undef HAVE_STRSEP'
3642 _need_strsep=yes
3644 echores "$_strsep"
3647 echocheck "vsscanf()"
3648 cat > $TMPC << EOF
3649 #define _ISOC99_SOURCE
3650 #include <stdarg.h>
3651 #include <stdio.h>
3652 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3654 _vsscanf=no
3655 cc_check && _vsscanf=yes
3656 if test "$_vsscanf" = yes ; then
3657 def_vsscanf='#define HAVE_VSSCANF 1'
3658 _need_vsscanf=no
3659 else
3660 def_vsscanf='#undef HAVE_VSSCANF'
3661 _need_vsscanf=yes
3663 echores "$_vsscanf"
3666 echocheck "swab()"
3667 cat > $TMPC << EOF
3668 #define _XOPEN_SOURCE 600
3669 #include <unistd.h>
3670 int main(void) { swab(0, 0, 0); return 0; }
3672 _swab=no
3673 cc_check && _swab=yes
3674 if test "$_swab" = yes ; then
3675 def_swab='#define HAVE_SWAB 1'
3676 _need_swab=no
3677 else
3678 def_swab='#undef HAVE_SWAB'
3679 _need_swab=yes
3681 echores "$_swab"
3683 echocheck "POSIX select()"
3684 cat > $TMPC << EOF
3685 #include <stdio.h>
3686 #include <stdlib.h>
3687 #include <sys/types.h>
3688 #include <string.h>
3689 #include <sys/time.h>
3690 #include <unistd.h>
3691 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
3693 _posix_select=no
3694 def_posix_select='#undef HAVE_POSIX_SELECT'
3695 #select() of kLIBC (OS/2) supports socket only
3696 ! os2 && cc_check && _posix_select=yes \
3697 && def_posix_select='#define HAVE_POSIX_SELECT 1'
3698 echores "$_posix_select"
3701 echocheck "audio select()"
3702 if test "$_select" = no ; then
3703 def_select='#undef HAVE_AUDIO_SELECT'
3704 elif test "$_select" = yes ; then
3705 def_select='#define HAVE_AUDIO_SELECT 1'
3707 echores "$_select"
3710 echocheck "gettimeofday()"
3711 cat > $TMPC << EOF
3712 #include <stdio.h>
3713 #include <sys/time.h>
3714 int main(void) {struct timeval tv_start; gettimeofday(&tv_start, NULL); return 0; }
3716 _gettimeofday=no
3717 cc_check && _gettimeofday=yes
3718 if test "$_gettimeofday" = yes ; then
3719 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3720 _need_gettimeofday=no
3721 else
3722 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3723 _need_gettimeofday=yes
3725 echores "$_gettimeofday"
3728 echocheck "glob()"
3729 cat > $TMPC << EOF
3730 #include <stdio.h>
3731 #include <glob.h>
3732 int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
3734 _glob=no
3735 cc_check && _glob=yes
3736 if test "$_glob" = yes ; then
3737 def_glob='#define HAVE_GLOB 1'
3738 _need_glob=no
3739 else
3740 def_glob='#undef HAVE_GLOB'
3741 _need_glob=yes
3743 echores "$_glob"
3746 echocheck "setenv()"
3747 cat > $TMPC << EOF
3748 #include <stdlib.h>
3749 int main(void) { setenv("","",0); return 0; }
3751 _setenv=no
3752 cc_check && _setenv=yes
3753 if test "$_setenv" = yes ; then
3754 def_setenv='#define HAVE_SETENV 1'
3755 _need_setenv=no
3756 else
3757 def_setenv='#undef HAVE_SETENV'
3758 _need_setenv=yes
3760 echores "$_setenv"
3763 if sunos; then
3764 echocheck "sysi86()"
3765 cat > $TMPC << EOF
3766 #include <sys/sysi86.h>
3767 int main(void) { sysi86(0); return 0; }
3769 _sysi86=no
3770 cc_check && _sysi86=yes
3771 if test "$_sysi86" = yes ; then
3772 def_sysi86='#define HAVE_SYSI86 1'
3773 cat > $TMPC << EOF
3774 #include <sys/sysi86.h>
3775 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
3777 cc_check && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3778 else
3779 def_sysi86='#undef HAVE_SYSI86'
3781 echores "$_sysi86"
3782 fi #if sunos
3785 echocheck "sys/sysinfo.h"
3786 cat > $TMPC << EOF
3787 #include <sys/sysinfo.h>
3788 int main(void) {
3789 struct sysinfo s_info;
3790 sysinfo(&s_info);
3791 return 0;
3794 _sys_sysinfo=no
3795 cc_check && _sys_sysinfo=yes
3796 if test "$_sys_sysinfo" = yes ; then
3797 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3798 else
3799 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3801 echores "$_sys_sysinfo"
3804 if darwin; then
3806 echocheck "Mac OS X Finder Support"
3807 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3808 if test "$_macosx_finder" = yes ; then
3809 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3810 extra_ldflags="$extra_ldflags -framework Carbon"
3812 echores "$_macosx_finder"
3814 echocheck "Mac OS X Bundle file locations"
3815 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3816 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3817 if test "$_macosx_bundle" = yes ; then
3818 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3819 extra_ldflags="$extra_ldflags -framework Carbon"
3821 echores "$_macosx_bundle"
3823 echocheck "Apple Remote"
3824 if test "$_apple_remote" = auto ; then
3825 _apple_remote=no
3826 cat > $TMPC <<EOF
3827 #include <stdio.h>
3828 #include <IOKit/IOCFPlugIn.h>
3829 int main(void) {
3830 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3831 CFMutableDictionaryRef hidMatchDictionary;
3832 IOReturn ioReturnValue;
3834 // Set up a matching dictionary to search the I/O Registry by class.
3835 // name for all HID class devices
3836 hidMatchDictionary = IOServiceMatching("AppleIRController");
3838 // Now search I/O Registry for matching devices.
3839 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3840 hidMatchDictionary, &hidObjectIterator);
3842 // If search is unsuccessful, return nonzero.
3843 if (ioReturnValue != kIOReturnSuccess ||
3844 !IOIteratorIsValid(hidObjectIterator)) {
3845 return 1;
3847 return 0;
3850 cc_check -framework IOKit && tmp_run && _apple_remote=yes
3852 if test "$_apple_remote" = yes ; then
3853 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3854 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3855 else
3856 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3858 echores "$_apple_remote"
3860 fi #if darwin
3862 if linux; then
3864 echocheck "Apple IR"
3865 if test "$_apple_ir" = auto ; then
3866 _apple_ir=no
3867 cat > $TMPC <<EOF
3868 #include <linux/types.h>
3869 #include <linux/input.h>
3870 int main(void) {
3871 struct input_event ev;
3872 struct input_id id;
3873 return 0;
3876 cc_check && _apple_ir=yes
3878 if test "$_apple_ir" = yes ; then
3879 def_apple_ir='#define CONFIG_APPLE_IR 1'
3880 else
3881 def_apple_ir='#undef CONFIG_APPLE_IR'
3883 echores "$_apple_ir"
3884 fi #if linux
3886 echocheck "pkg-config"
3887 _pkg_config=pkg-config
3888 if $($_pkg_config --version > /dev/null 2>&1); then
3889 if test "$_ld_static"; then
3890 _pkg_config="$_pkg_config --static"
3892 echores "yes"
3893 else
3894 _pkg_config=false
3895 echores "no"
3899 echocheck "Samba support (libsmbclient)"
3900 if test "$_smb" = yes; then
3901 extra_ldflags="$extra_ldflags -lsmbclient"
3903 if test "$_smb" = auto; then
3904 _smb=no
3905 cat > $TMPC << EOF
3906 #include <libsmbclient.h>
3907 int main(void) { smbc_opendir("smb://"); return 0; }
3909 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3910 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3911 _smb=yes && break
3912 done
3915 if test "$_smb" = yes; then
3916 def_smb="#define CONFIG_LIBSMBCLIENT 1"
3917 _inputmodules="smb $_inputmodules"
3918 else
3919 def_smb="#undef CONFIG_LIBSMBCLIENT"
3920 _noinputmodules="smb $_noinputmodules"
3922 echores "$_smb"
3925 #########
3926 # VIDEO #
3927 #########
3930 echocheck "tdfxfb"
3931 if test "$_tdfxfb" = yes ; then
3932 def_tdfxfb='#define CONFIG_TDFXFB 1'
3933 _vomodules="tdfxfb $_vomodules"
3934 else
3935 def_tdfxfb='#undef CONFIG_TDFXFB'
3936 _novomodules="tdfxfb $_novomodules"
3938 echores "$_tdfxfb"
3940 echocheck "s3fb"
3941 if test "$_s3fb" = yes ; then
3942 def_s3fb='#define CONFIG_S3FB 1'
3943 _vomodules="s3fb $_vomodules"
3944 else
3945 def_s3fb='#undef CONFIG_S3FB'
3946 _novomodules="s3fb $_novomodules"
3948 echores "$_s3fb"
3950 echocheck "wii"
3951 if test "$_wii" = yes ; then
3952 def_wii='#define CONFIG_WII 1'
3953 _vomodules="wii $_vomodules"
3954 else
3955 def_wii='#undef CONFIG_WII'
3956 _novomodules="wii $_novomodules"
3958 echores "$_wii"
3960 echocheck "tdfxvid"
3961 if test "$_tdfxvid" = yes ; then
3962 def_tdfxvid='#define CONFIG_TDFX_VID 1'
3963 _vomodules="tdfx_vid $_vomodules"
3964 else
3965 def_tdfxvid='#undef CONFIG_TDFX_VID'
3966 _novomodules="tdfx_vid $_novomodules"
3968 echores "$_tdfxvid"
3970 echocheck "xvr100"
3971 if test "$_xvr100" = auto ; then
3972 cat > $TMPC << EOF
3973 #include <unistd.h>
3974 #include <sys/fbio.h>
3975 #include <sys/visual_io.h>
3976 int main(void) {
3977 struct vis_identifier ident;
3978 struct fbgattr attr;
3979 ioctl(0, VIS_GETIDENTIFIER, &ident);
3980 ioctl(0, FBIOGATTR, &attr);
3981 return 0;
3984 _xvr100=no
3985 cc_check && _xvr100=yes
3987 if test "$_xvr100" = yes ; then
3988 def_xvr100='#define CONFIG_XVR100 1'
3989 _vomodules="xvr100 $_vomodules"
3990 else
3991 def_tdfxvid='#undef CONFIG_XVR100'
3992 _novomodules="xvr100 $_novomodules"
3994 echores "$_xvr100"
3996 echocheck "tga"
3997 if test "$_tga" = yes ; then
3998 def_tga='#define CONFIG_TGA 1'
3999 _vomodules="tga $_vomodules"
4000 else
4001 def_tga='#undef CONFIG_TGA'
4002 _novomodules="tga $_novomodules"
4004 echores "$_tga"
4007 echocheck "md5sum support"
4008 if test "$_md5sum" = yes; then
4009 def_md5sum="#define CONFIG_MD5SUM 1"
4010 _vomodules="md5sum $_vomodules"
4011 else
4012 def_md5sum="#undef CONFIG_MD5SUM"
4013 _novomodules="md5sum $_novomodules"
4015 echores "$_md5sum"
4018 echocheck "yuv4mpeg support"
4019 if test "$_yuv4mpeg" = yes; then
4020 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
4021 _vomodules="yuv4mpeg $_vomodules"
4022 else
4023 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
4024 _novomodules="yuv4mpeg $_novomodules"
4026 echores "$_yuv4mpeg"
4029 echocheck "bl"
4030 if test "$_bl" = yes ; then
4031 def_bl='#define CONFIG_BL 1'
4032 _vomodules="bl $_vomodules"
4033 else
4034 def_bl='#undef CONFIG_BL'
4035 _novomodules="bl $_novomodules"
4037 echores "$_bl"
4040 echocheck "DirectFB"
4041 if test "$_directfb" = auto ; then
4042 _directfb=no
4043 cat > $TMPC <<EOF
4044 #include <directfb.h>
4045 int main(void) { DirectFBInit(0, 0); return 0; }
4047 for _inc_tmp in "" -I/usr/local/include/directfb \
4048 -I/usr/include/directfb -I/usr/local/include; do
4049 cc_check $_inc_tmp -ldirectfb && _directfb=yes && \
4050 extra_cflags="$extra_cflags $_inc_tmp" && break
4051 done
4054 dfb_version() {
4055 expr $1 \* 65536 + $2 \* 256 + $3
4058 if test "$_directfb" = yes; then
4059 cat > $TMPC << EOF
4060 #include <directfb_version.h>
4062 dfb_ver = DIRECTFB_MAJOR_VERSION.DIRECTFB_MINOR_VERSION.DIRECTFB_MICRO_VERSION
4065 if $_cc -E $TMPC $extra_cflags > "$TMPEXE"; then
4066 _directfb_version=$(sed -n 's/^dfb_ver[^0-9]*\(.*\)/\1/p' "$TMPEXE" | tr -d '()')
4067 _dfb_major=$(echo $_directfb_version | cut -d . -f 1)
4068 _dfb_minor=$(echo $_directfb_version | cut -d . -f 2)
4069 _dfb_micro=$(echo $_directfb_version | cut -d . -f 3)
4070 _dfb_version=$(dfb_version $_dfb_major $_dfb_minor $_dfb_micro)
4071 if test "$_dfb_version" -ge $(dfb_version 0 9 13); then
4072 def_directfb_version="#define DIRECTFBVERSION $_dfb_version"
4073 _res_comment="$_directfb_version"
4074 test "$_dfb_version" -ge $(dfb_version 0 9 15) && _dfbmga=yes
4075 else
4076 def_directfb_version='#undef DIRECTFBVERSION'
4077 _directfb=no
4078 _res_comment="version >=0.9.13 required"
4080 else
4081 _directfb=no
4082 _res_comment="failed to get version"
4085 echores "$_directfb"
4087 if test "$_directfb" = yes ; then
4088 def_directfb='#define CONFIG_DIRECTFB 1'
4089 _vomodules="directfb $_vomodules"
4090 libs_mplayer="$libs_mplayer -ldirectfb"
4091 else
4092 def_directfb='#undef CONFIG_DIRECTFB'
4093 _novomodules="directfb $_novomodules"
4095 if test "$_dfbmga" = yes; then
4096 _vomodules="dfbmga $_vomodules"
4097 def_dfbmga='#define CONFIG_DFBMGA 1'
4098 else
4099 _novomodules="dfbmga $_novomodules"
4100 def_dfbmga='#undef CONFIG_DFBMGA'
4104 echocheck "X11 headers presence"
4105 _x11_headers="no"
4106 _res_comment="check if the dev(el) packages are installed"
4107 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
4108 if test -f "$I/X11/Xlib.h" ; then
4109 _x11_headers="yes"
4110 _res_comment=""
4111 break
4113 done
4114 if test $_cross_compile = no; then
4115 for I in /usr/X11/include /usr/X11R7/include /usr/X11R6/include \
4116 /usr/include/X11R6 /usr/openwin/include ; do
4117 if test -f "$I/X11/Xlib.h" ; then
4118 extra_cflags="$extra_cflags -I$I"
4119 _x11_headers="yes"
4120 _res_comment="using $I"
4121 break
4123 done
4125 echores "$_x11_headers"
4128 echocheck "X11"
4129 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
4130 cat > $TMPC <<EOF
4131 #include <X11/Xlib.h>
4132 #include <X11/Xutil.h>
4133 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; }
4135 for I in "" -L/usr/X11R7/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
4136 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/X11R6/lib64 \
4137 -L/usr/lib ; do
4138 if netbsd; then
4139 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
4140 else
4141 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
4143 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" \
4144 && _x11=yes && break
4145 done
4147 if test "$_x11" = yes ; then
4148 def_x11='#define CONFIG_X11 1'
4149 _vomodules="x11 xover $_vomodules"
4150 else
4151 _x11=no
4152 def_x11='#undef CONFIG_X11'
4153 _novomodules="x11 $_novomodules"
4154 _res_comment="check if the dev(el) packages are installed"
4155 # disable stuff that depends on X
4156 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
4158 echores "$_x11"
4160 echocheck "Xss screensaver extensions"
4161 if test "$_xss" = auto ; then
4162 cat > $TMPC << EOF
4163 #include <X11/Xlib.h>
4164 #include <X11/extensions/scrnsaver.h>
4165 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
4167 _xss=no
4168 cc_check -lXss && _xss=yes
4170 if test "$_xss" = yes ; then
4171 def_xss='#define CONFIG_XSS 1'
4172 libs_mplayer="$libs_mplayer -lXss"
4173 else
4174 def_xss='#undef CONFIG_XSS'
4176 echores "$_xss"
4178 echocheck "DPMS"
4179 _xdpms3=no
4180 _xdpms4=no
4181 if test "$_x11" = yes ; then
4182 cat > $TMPC <<EOF
4183 #include <X11/Xmd.h>
4184 #include <X11/Xlib.h>
4185 #include <X11/Xutil.h>
4186 #include <X11/Xatom.h>
4187 #include <X11/extensions/dpms.h>
4188 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4190 cc_check -lXdpms && _xdpms3=yes
4191 cat > $TMPC <<EOF
4192 #include <X11/Xlib.h>
4193 #include <X11/extensions/dpms.h>
4194 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4196 cc_check -lXext && _xdpms4=yes
4198 if test "$_xdpms4" = yes ; then
4199 def_xdpms='#define CONFIG_XDPMS 1'
4200 _res_comment="using Xdpms 4"
4201 echores "yes"
4202 elif test "$_xdpms3" = yes ; then
4203 def_xdpms='#define CONFIG_XDPMS 1'
4204 libs_mplayer="$libs_mplayer -lXdpms"
4205 _res_comment="using Xdpms 3"
4206 echores "yes"
4207 else
4208 def_xdpms='#undef CONFIG_XDPMS'
4209 echores "no"
4213 echocheck "Xv"
4214 if test "$_xv" = auto ; then
4215 cat > $TMPC <<EOF
4216 #include <X11/Xlib.h>
4217 #include <X11/extensions/Xvlib.h>
4218 int main(void) {
4219 (void) XvGetPortAttribute(0, 0, 0, 0);
4220 (void) XvQueryPortAttributes(0, 0, 0);
4221 return 0; }
4223 _xv=no
4224 cc_check -lXv && _xv=yes
4227 if test "$_xv" = yes ; then
4228 def_xv='#define CONFIG_XV 1'
4229 libs_mplayer="$libs_mplayer -lXv"
4230 _vomodules="xv $_vomodules"
4231 else
4232 def_xv='#undef CONFIG_XV'
4233 _novomodules="xv $_novomodules"
4235 echores "$_xv"
4238 echocheck "XvMC"
4239 if test "$_xv" = yes && test "$_xvmc" != no ; then
4240 _xvmc=no
4241 cat > $TMPC <<EOF
4242 #include <X11/Xlib.h>
4243 #include <X11/extensions/Xvlib.h>
4244 #include <X11/extensions/XvMClib.h>
4245 int main(void) {
4246 (void) XvMCQueryExtension(0,0,0);
4247 (void) XvMCCreateContext(0,0,0,0,0,0,0);
4248 return 0; }
4250 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
4251 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
4252 done
4254 if test "$_xvmc" = yes ; then
4255 def_xvmc='#define CONFIG_XVMC 1'
4256 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
4257 _vomodules="xvmc $_vomodules"
4258 _res_comment="using $_xvmclib"
4259 else
4260 def_xvmc='#define CONFIG_XVMC 0'
4261 _novomodules="xvmc $_novomodules"
4263 echores "$_xvmc"
4266 echocheck "VDPAU"
4267 if test "$_vdpau" = auto ; then
4268 _vdpau=no
4269 if test "$_dl" = yes ; then
4270 cat > $TMPC <<EOF
4271 #include <vdpau/vdpau_x11.h>
4272 int main(void) {return VDP_VIDEO_MIXER_ATTRIBUTE_SKIP_CHROMA_DEINTERLACE;}
4274 cc_check && _vdpau=yes
4277 if test "$_vdpau" = yes ; then
4278 def_vdpau='#define CONFIG_VDPAU 1'
4279 _vomodules="vdpau $_vomodules"
4280 else
4281 def_vdpau='#define CONFIG_VDPAU 0'
4282 _novomodules="vdpau $_novomodules"
4284 echores "$_vdpau"
4287 echocheck "Xinerama"
4288 if test "$_xinerama" = auto ; then
4289 cat > $TMPC <<EOF
4290 #include <X11/Xlib.h>
4291 #include <X11/extensions/Xinerama.h>
4292 int main(void) { (void) XineramaIsActive(0); return 0; }
4294 _xinerama=no
4295 cc_check -lXinerama && _xinerama=yes
4298 if test "$_xinerama" = yes ; then
4299 def_xinerama='#define CONFIG_XINERAMA 1'
4300 libs_mplayer="$libs_mplayer -lXinerama"
4301 else
4302 def_xinerama='#undef CONFIG_XINERAMA'
4304 echores "$_xinerama"
4307 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4308 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4309 # named 'X extensions' or something similar.
4310 # This check may be useful for future mplayer versions (to change resolution)
4311 # If you run into problems, remove '-lXxf86vm'.
4312 echocheck "Xxf86vm"
4313 if test "$_vm" = auto ; then
4314 cat > $TMPC <<EOF
4315 #include <X11/Xlib.h>
4316 #include <X11/extensions/xf86vmode.h>
4317 int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; }
4319 _vm=no
4320 cc_check -lXxf86vm && _vm=yes
4322 if test "$_vm" = yes ; then
4323 def_vm='#define CONFIG_XF86VM 1'
4324 libs_mplayer="$libs_mplayer -lXxf86vm"
4325 else
4326 def_vm='#undef CONFIG_XF86VM'
4328 echores "$_vm"
4330 # Check for the presence of special keycodes, like audio control buttons
4331 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4332 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4333 # have these new keycodes.
4334 echocheck "XF86keysym"
4335 if test "$_xf86keysym" = auto; then
4336 _xf86keysym=no
4337 cat > $TMPC <<EOF
4338 #include <X11/Xlib.h>
4339 #include <X11/XF86keysym.h>
4340 int main(void) { return XF86XK_AudioPause; }
4342 cc_check && _xf86keysym=yes
4344 if test "$_xf86keysym" = yes ; then
4345 def_xf86keysym='#define CONFIG_XF86XK 1'
4346 else
4347 def_xf86keysym='#undef CONFIG_XF86XK'
4349 echores "$_xf86keysym"
4351 echocheck "DGA"
4352 if test "$_dga2" = auto && test "$_x11" = yes ; then
4353 cat > $TMPC << EOF
4354 #include <X11/Xlib.h>
4355 #include <X11/extensions/xf86dga.h>
4356 int main(void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4358 _dga2=no
4359 cc_check -lXxf86dga && _dga2=yes
4361 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4362 cat > $TMPC << EOF
4363 #include <X11/Xlib.h>
4364 #include <X11/extensions/xf86dga.h>
4365 int main(void) { (void) XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4367 _dga1=no
4368 cc_check -lXxf86dga -lXxf86vm && _dga1=yes
4371 _dga=no
4372 def_dga='#undef CONFIG_DGA'
4373 def_dga1='#undef CONFIG_DGA1'
4374 def_dga2='#undef CONFIG_DGA2'
4375 if test "$_dga1" = yes ; then
4376 _dga=yes
4377 def_dga1='#define CONFIG_DGA1 1'
4378 _res_comment="using DGA 1.0"
4379 elif test "$_dga2" = yes ; then
4380 _dga=yes
4381 def_dga2='#define CONFIG_DGA2 1'
4382 _res_comment="using DGA 2.0"
4384 if test "$_dga" = yes ; then
4385 def_dga='#define CONFIG_DGA 1'
4386 libs_mplayer="$libs_mplayer -lXxf86dga"
4387 _vomodules="dga $_vomodules"
4388 else
4389 _novomodules="dga $_novomodules"
4391 echores "$_dga"
4394 echocheck "3dfx"
4395 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4396 def_3dfx='#define CONFIG_3DFX 1'
4397 _vomodules="3dfx $_vomodules"
4398 else
4399 def_3dfx='#undef CONFIG_3DFX'
4400 _novomodules="3dfx $_novomodules"
4402 echores "$_3dfx"
4405 echocheck "VIDIX"
4406 def_vidix='#undef CONFIG_VIDIX'
4407 def_vidix_drv_cyberblade='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4408 _vidix_drv_cyberblade=no
4409 def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4410 _vidix_drv_ivtv=no
4411 def_vidix_drv_mach64='#undef CONFIG_VIDIX_DRV_MACH64'
4412 _vidix_drv_mach64=no
4413 def_vidix_drv_mga='#undef CONFIG_VIDIX_DRV_MGA'
4414 _vidix_drv_mga=no
4415 def_vidix_drv_mga_crtc2='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4416 _vidix_drv_mga_crtc2=no
4417 def_vidix_drv_nvidia='#undef CONFIG_VIDIX_DRV_NVIDIA'
4418 _vidix_drv_nvidia=no
4419 def_vidix_drv_pm2='#undef CONFIG_VIDIX_DRV_PM2'
4420 _vidix_drv_pm2=no
4421 def_vidix_drv_pm3='#undef CONFIG_VIDIX_DRV_PM3'
4422 _vidix_drv_pm3=no
4423 def_vidix_drv_radeon='#undef CONFIG_VIDIX_DRV_RADEON'
4424 _vidix_drv_radeon=no
4425 def_vidix_drv_rage128='#undef CONFIG_VIDIX_DRV_RAGE128'
4426 _vidix_drv_rage128=no
4427 def_vidix_drv_s3='#undef CONFIG_VIDIX_DRV_S3'
4428 _vidix_drv_s3=no
4429 def_vidix_drv_sh_veu='#undef CONFIG_VIDIX_DRV_SH_VEU'
4430 _vidix_drv_sh_veu=no
4431 def_vidix_drv_sis='#undef CONFIG_VIDIX_DRV_SIS'
4432 _vidix_drv_sis=no
4433 def_vidix_drv_unichrome='#undef CONFIG_VIDIX_DRV_UNICHROME'
4434 _vidix_drv_unichrome=no
4435 if test "$_vidix" = auto ; then
4436 _vidix=no
4437 x86 && (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32) \
4438 && _vidix=yes
4439 x86_64 && win32 && _vidix=no
4440 (ppc || alpha) && linux && _vidix=yes
4442 echores "$_vidix"
4444 if test "$_vidix" = yes ; then
4445 def_vidix='#define CONFIG_VIDIX 1'
4446 _vomodules="cvidix $_vomodules"
4447 # FIXME: ivtv driver temporarily disabled until we have a proper test
4448 #test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4449 test "$_vidix_drivers" || _vidix_drivers="cyberblade mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4451 # some vidix drivers are architecture and os specific, discard them elsewhere
4452 x86 || _vidix_drivers=$(echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome// -e s/s3//)
4453 (test $host_arch = "sh" && linux) || _vidix_drivers=$(echo $_vidix_drivers | sed s/sh_veu//)
4455 for driver in $_vidix_drivers ; do
4456 uc_driver=$(echo $driver | tr '[a-z]' '[A-Z]')
4457 eval _vidix_drv_${driver}=yes
4458 eval def_vidix_drv_${driver}=\"\#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4459 done
4461 echocheck "VIDIX PCI device name database"
4462 echores "$_vidix_pcidb"
4463 if test "$_vidix_pcidb" = yes ; then
4464 _vidix_pcidb_val=1
4465 else
4466 _vidix_pcidb_val=0
4469 echocheck "VIDIX dhahelper support"
4470 test "$_dhahelper" = yes && cflags_dhahelper=-DCONFIG_DHAHELPER
4471 echores "$_dhahelper"
4473 echocheck "VIDIX svgalib_helper support"
4474 test "$_svgalib_helper" = yes && cflags_svgalib_helper=-DCONFIG_SVGAHELPER
4475 echores "$_svgalib_helper"
4477 else
4478 _novomodules="cvidix $_novomodules"
4481 if test "$_vidix" = yes && win32; then
4482 winvidix=yes
4483 _vomodules="winvidix $_vomodules"
4484 libs_mplayer="$libs_mplayer -lgdi32"
4485 else
4486 _novomodules="winvidix $_novomodules"
4488 if test "$_vidix" = yes && test "$_x11" = yes; then
4489 xvidix=yes
4490 _vomodules="xvidix $_vomodules"
4491 else
4492 _novomodules="xvidix $_novomodules"
4495 echocheck "GGI"
4496 if test "$_ggi" = auto ; then
4497 cat > $TMPC << EOF
4498 #include <ggi/ggi.h>
4499 int main(void) { ggiInit(); return 0; }
4501 _ggi=no
4502 cc_check -lggi && _ggi=yes
4504 if test "$_ggi" = yes ; then
4505 def_ggi='#define CONFIG_GGI 1'
4506 libs_mplayer="$libs_mplayer -lggi"
4507 _vomodules="ggi $_vomodules"
4508 else
4509 def_ggi='#undef CONFIG_GGI'
4510 _novomodules="ggi $_novomodules"
4512 echores "$_ggi"
4514 echocheck "GGI extension: libggiwmh"
4515 if test "$_ggiwmh" = auto ; then
4516 _ggiwmh=no
4517 cat > $TMPC << EOF
4518 #include <ggi/ggi.h>
4519 #include <ggi/wmh.h>
4520 int main(void) { ggiInit(); ggiWmhInit(); return 0; }
4522 cc_check -lggi -lggiwmh && _ggiwmh=yes
4524 # needed to get right output on obscure combination
4525 # like --disable-ggi --enable-ggiwmh
4526 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4527 def_ggiwmh='#define CONFIG_GGIWMH 1'
4528 libs_mplayer="$libs_mplayer -lggiwmh"
4529 else
4530 _ggiwmh=no
4531 def_ggiwmh='#undef CONFIG_GGIWMH'
4533 echores "$_ggiwmh"
4536 echocheck "AA"
4537 if test "$_aa" = auto ; then
4538 cat > $TMPC << EOF
4539 #include <aalib.h>
4540 extern struct aa_hardware_params aa_defparams;
4541 extern struct aa_renderparams aa_defrenderparams;
4542 int main(void) {
4543 aa_context *c;
4544 aa_renderparams *p;
4545 (void) aa_init(0, 0, 0);
4546 c = aa_autoinit(&aa_defparams);
4547 p = aa_getrenderparams();
4548 aa_autoinitkbd(c,0);
4549 return 0; }
4551 _aa=no
4552 for _ld_tmp in "-laa" ; do
4553 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4554 done
4556 if test "$_aa" = yes ; then
4557 def_aa='#define CONFIG_AA 1'
4558 if cygwin ; then
4559 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4561 _vomodules="aa $_vomodules"
4562 else
4563 def_aa='#undef CONFIG_AA'
4564 _novomodules="aa $_novomodules"
4566 echores "$_aa"
4569 echocheck "CACA"
4570 if test "$_caca" = auto ; then
4571 _caca=no
4572 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4573 cat > $TMPC << EOF
4574 #include <caca.h>
4575 #ifdef CACA_API_VERSION_1
4576 #include <caca0.h>
4577 #endif
4578 int main(void) { (void) caca_init(); return 0; }
4580 cc_check $(caca-config --libs) && _caca=yes
4583 if test "$_caca" = yes ; then
4584 def_caca='#define CONFIG_CACA 1'
4585 extra_cflags="$extra_cflags $(caca-config --cflags)"
4586 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4587 _vomodules="caca $_vomodules"
4588 else
4589 def_caca='#undef CONFIG_CACA'
4590 _novomodules="caca $_novomodules"
4592 echores "$_caca"
4595 echocheck "SVGAlib"
4596 if test "$_svga" = auto ; then
4597 cat > $TMPC << EOF
4598 #include <vga.h>
4599 int main(void) { return 0; }
4601 _svga=no
4602 cc_check -lvga $_ld_lm && _svga=yes
4604 if test "$_svga" = yes ; then
4605 def_svga='#define CONFIG_SVGALIB 1'
4606 libs_mplayer="$libs_mplayer -lvga"
4607 _vomodules="svga $_vomodules"
4608 else
4609 def_svga='#undef CONFIG_SVGALIB'
4610 _novomodules="svga $_novomodules"
4612 echores "$_svga"
4615 echocheck "FBDev"
4616 if test "$_fbdev" = auto ; then
4617 _fbdev=no
4618 linux && _fbdev=yes
4620 if test "$_fbdev" = yes ; then
4621 def_fbdev='#define CONFIG_FBDEV 1'
4622 _vomodules="fbdev $_vomodules"
4623 else
4624 def_fbdev='#undef CONFIG_FBDEV'
4625 _novomodules="fbdev $_novomodules"
4627 echores "$_fbdev"
4631 echocheck "DVB"
4632 if test "$_dvb" = auto ; then
4633 _dvb=no
4634 cat >$TMPC << EOF
4635 #include <poll.h>
4636 #include <sys/ioctl.h>
4637 #include <stdio.h>
4638 #include <time.h>
4639 #include <unistd.h>
4640 #include <ost/dmx.h>
4641 #include <ost/frontend.h>
4642 #include <ost/sec.h>
4643 #include <ost/video.h>
4644 #include <ost/audio.h>
4645 int main(void) {return 0;}
4647 for _inc_tmp in "" "-I/usr/src/DVB/ost/include" ; do
4648 cc_check $_inc_tmp && _dvb=yes && \
4649 extra_cflags="$extra_cflags $_inc_tmp" && break
4650 done
4652 echores "$_dvb"
4653 if test "$_dvb" = yes ; then
4654 def_dvb='#define CONFIG_DVB 1'
4655 def_dvbin='#define CONFIG_DVBIN 1'
4656 _aomodules="mpegpes(dvb) $_aomodules"
4657 _vomodules="mpegpes(dvb) $_vomodules"
4660 echocheck "DVB HEAD"
4661 if test "$_dvbhead" = auto ; then
4662 _dvbhead=no
4664 cat >$TMPC << EOF
4665 #include <poll.h>
4666 #include <sys/ioctl.h>
4667 #include <stdio.h>
4668 #include <time.h>
4669 #include <unistd.h>
4670 #include <linux/dvb/dmx.h>
4671 #include <linux/dvb/frontend.h>
4672 #include <linux/dvb/video.h>
4673 #include <linux/dvb/audio.h>
4674 int main(void) {return 0;}
4676 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4677 cc_check $_inc_tmp && _dvbhead=yes && \
4678 extra_cflags="$extra_cflags $_inc_tmp" && break
4679 done
4681 echores "$_dvbhead"
4682 if test "$_dvbhead" = yes ; then
4683 def_dvb='#define CONFIG_DVB 1'
4684 def_dvb_head='#define CONFIG_DVB_HEAD 1'
4685 def_dvbin='#define CONFIG_DVBIN 1'
4686 _aomodules="mpegpes(dvb) $_aomodules"
4687 _vomodules="mpegpes(dvb) $_vomodules"
4690 if test "$_dvbhead" = no && test "$_dvb" = no ; then
4691 def_dvb='#undef CONFIG_DVB'
4692 def_dvb_head='#undef CONFIG_DVB_HEAD'
4693 def_dvbin='#undef CONFIG_DVBIN '
4694 _aomodules="mpegpes(file) $_aomodules"
4695 _vomodules="mpegpes(file) $_vomodules"
4698 if test "$_dvb" = yes || test "$_dvbhead" = yes ; then
4699 _dvbin=yes
4700 _inputmodules="dvb $_inputmodules"
4701 else
4702 _dvbin=no
4703 _noinputmodules="dvb $_noinputmodules"
4707 if darwin; then
4709 echocheck "QuickTime"
4710 if test "$quicktime" = auto ; then
4711 cat > $TMPC <<EOF
4712 #include <QuickTime/QuickTime.h>
4713 int main(void) {
4714 ImageDescription *desc;
4715 EnterMovies();
4716 ExitMovies();
4717 return 0;
4720 quicktime=no
4721 cc_check -framework QuickTime && quicktime=yes
4723 if test "$quicktime" = yes ; then
4724 extra_ldflags="$extra_ldflags -framework QuickTime"
4725 def_quicktime='#define CONFIG_QUICKTIME 1'
4726 else
4727 def_quicktime='#undef CONFIG_QUICKTIME'
4728 _quartz=no
4730 echores $quicktime
4732 echocheck "Quartz"
4733 if test "$_quartz" = auto ; then
4734 cat > $TMPC <<EOF
4735 #include <Carbon/Carbon.h>
4736 int main(void) {
4737 CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false);
4738 return 0;
4741 _quartz=no
4742 cc_check -framework Carbon && _quartz=yes
4744 if test "$_quartz" = yes ; then
4745 libs_mplayer="$libs_mplayer -framework Carbon"
4746 def_quartz='#define CONFIG_QUARTZ 1'
4747 _vomodules="quartz $_vomodules"
4748 else
4749 def_quartz='#undef CONFIG_QUARTZ'
4750 _novomodules="quartz $_novomodules"
4752 echores $_quartz
4754 echocheck "CoreVideo"
4755 if test "$_corevideo" = auto ; then
4756 cat > $TMPC <<EOF
4757 #include <Carbon/Carbon.h>
4758 #include <CoreServices/CoreServices.h>
4759 #include <OpenGL/OpenGL.h>
4760 #include <QuartzCore/CoreVideo.h>
4761 int main(void) { return 0; }
4763 _corevideo=no
4764 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4766 if test "$_corevideo" = yes ; then
4767 _vomodules="corevideo $_vomodules"
4768 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4769 def_corevideo='#define CONFIG_COREVIDEO 1'
4770 else
4771 _novomodules="corevideo $_novomodules"
4772 def_corevideo='#undef CONFIG_COREVIDEO'
4774 echores "$_corevideo"
4776 fi #if darwin
4779 # make sure this stays below CoreVideo to avoid issues due to namespace
4780 # conflicts between -lGL and -framework OpenGL
4781 echocheck "OpenGL"
4782 #Note: this test is run even with --enable-gl since we autodetect linker flags
4783 if (test "$_x11" = yes || win32) && test "$_gl" != no ; then
4784 cat > $TMPC << EOF
4785 #ifdef GL_WIN32
4786 #include <windows.h>
4787 #include <GL/gl.h>
4788 #else
4789 #include <GL/gl.h>
4790 #include <X11/Xlib.h>
4791 #include <GL/glx.h>
4792 #endif
4793 int main(void) {
4794 #ifdef GL_WIN32
4795 HDC dc;
4796 wglCreateContext(dc);
4797 #else
4798 glXCreateContext(NULL, NULL, NULL, True);
4799 #endif
4800 glFinish();
4801 return 0;
4804 _gl=no
4805 for _ld_tmp in -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
4806 if cc_check $_ld_tmp $_ld_lm ; then
4807 _gl=yes
4808 _gl_x11=yes
4809 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
4810 break
4812 done
4813 if cc_check -DGL_WIN32 -lopengl32 ; then
4814 _gl=yes
4815 _gl_win32=yes
4816 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
4818 else
4819 _gl=no
4821 if test "$_gl" = yes ; then
4822 def_gl='#define CONFIG_GL 1'
4823 _res_comment="backends:"
4824 if test "$_gl_win32" = yes ; then
4825 def_gl_win32='#define CONFIG_GL_WIN32 1'
4826 _res_comment="$_res_comment win32"
4828 if test "$_gl_x11" = yes ; then
4829 def_gl_x11='#define CONFIG_GL_X11 1'
4830 _res_comment="$_res_comment x11"
4832 _vomodules="opengl $_vomodules"
4833 else
4834 def_gl='#undef CONFIG_GL'
4835 def_gl_win32='#undef CONFIG_GL_WIN32'
4836 def_gl_x11='#undef CONFIG_GL_X11'
4837 _novomodules="opengl $_novomodules"
4839 echores "$_gl"
4842 echocheck "MatrixView"
4843 if test "$_gl" = no ; then
4844 matrixview=no
4846 if test "$matrixview" = yes ; then
4847 _vomodules="matrixview $_vomodules"
4848 def_matrixview='#define CONFIG_MATRIXVIEW 1'
4849 else
4850 _novomodules="matrixview $_novomodules"
4851 def_matrixview='#undef CONFIG_MATRIXVIEW'
4853 echores "$matrixview"
4856 echocheck "PNG support"
4857 if test "$_png" = auto ; then
4858 _png=no
4859 if irix ; then
4860 # Don't check for -lpng on irix since it has its own libpng
4861 # incompatible with the GNU libpng
4862 _res_comment="disabled on irix (not GNU libpng)"
4863 else
4864 cat > $TMPC << EOF
4865 #include <png.h>
4866 #include <string.h>
4867 int main(void) {
4868 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4869 printf("libpng: %s\n", png_libpng_ver);
4870 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4873 cc_check -lpng -lz $_ld_lm && _png=yes
4876 echores "$_png"
4877 if test "$_png" = yes ; then
4878 def_png='#define CONFIG_PNG 1'
4879 extra_ldflags="$extra_ldflags -lpng -lz"
4880 else
4881 def_png='#undef CONFIG_PNG'
4884 echocheck "MNG support"
4885 if test "$_mng" = auto ; then
4886 _mng=no
4887 cat > $TMPC << EOF
4888 #include <libmng.h>
4889 int main(void) {
4890 const char * p_ver = mng_version_text();
4891 return !p_ver || p_ver[0] == 0;
4894 if cc_check -lmng -lz $_ld_lm ; then
4895 _mng=yes
4898 echores "$_mng"
4899 if test "$_mng" = yes ; then
4900 def_mng='#define CONFIG_MNG 1'
4901 extra_ldflags="$extra_ldflags -lmng -lz"
4902 else
4903 def_mng='#undef CONFIG_MNG'
4906 echocheck "JPEG support"
4907 if test "$_jpeg" = auto ; then
4908 _jpeg=no
4909 cat > $TMPC << EOF
4910 #include <stdio.h>
4911 #include <stdlib.h>
4912 #include <setjmp.h>
4913 #include <string.h>
4914 #include <jpeglib.h>
4915 int main(void) { return 0; }
4917 cc_check -ljpeg $_ld_lm && _jpeg=yes
4919 echores "$_jpeg"
4921 if test "$_jpeg" = yes ; then
4922 def_jpeg='#define CONFIG_JPEG 1'
4923 _vomodules="jpeg $_vomodules"
4924 extra_ldflags="$extra_ldflags -ljpeg"
4925 else
4926 def_jpeg='#undef CONFIG_JPEG'
4927 _novomodules="jpeg $_novomodules"
4932 echocheck "PNM support"
4933 if test "$_pnm" = yes; then
4934 def_pnm="#define CONFIG_PNM 1"
4935 _vomodules="pnm $_vomodules"
4936 else
4937 def_pnm="#undef CONFIG_PNM"
4938 _novomodules="pnm $_novomodules"
4940 echores "$_pnm"
4944 echocheck "GIF support"
4945 # This is to appease people who want to force gif support.
4946 # If it is forced to yes, then we still do checks to determine
4947 # which gif library to use.
4948 if test "$_gif" = yes ; then
4949 _force_gif=yes
4950 _gif=auto
4953 if test "$_gif" = auto ; then
4954 _gif=no
4955 cat > $TMPC << EOF
4956 #include <gif_lib.h>
4957 int main(void) { return 0; }
4959 for _ld_gif in "-lungif" "-lgif" ; do
4960 cc_check $_ld_gif && _gif=yes && break
4961 done
4964 # If no library was found, and the user wants support forced,
4965 # then we force it on with libgif, as this is the safest
4966 # assumption IMHO. (libungif & libregif both create symbolic
4967 # links to libgif. We also assume that no x11 support is needed,
4968 # because if you are forcing this, then you _should_ know what
4969 # you are doing. [ Besides, package maintainers should never
4970 # have compiled x11 deps into libungif in the first place. ] )
4971 # </rant>
4972 # --Joey
4973 if test "$_force_gif" = yes && test "$_gif" = no ; then
4974 _gif=yes
4975 _ld_gif="-lgif"
4978 if test "$_gif" = yes ; then
4979 def_gif='#define CONFIG_GIF 1'
4980 _codecmodules="gif $_codecmodules"
4981 _vomodules="gif89a $_vomodules"
4982 _res_comment="old version, some encoding functions disabled"
4983 def_gif_4='#undef CONFIG_GIF_4'
4984 extra_ldflags="$extra_ldflags $_ld_gif"
4986 cat > $TMPC << EOF
4987 #include <signal.h>
4988 #include <gif_lib.h>
4989 void catch() { exit(1); }
4990 int main(void) {
4991 signal(SIGSEGV, catch); // catch segfault
4992 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4993 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4994 return 0;
4997 if cc_check "$_ld_gif" ; then
4998 def_gif_4='#define CONFIG_GIF_4 1'
4999 _res_comment=""
5001 else
5002 def_gif='#undef CONFIG_GIF'
5003 def_gif_4='#undef CONFIG_GIF_4'
5004 _novomodules="gif89a $_novomodules"
5005 _nocodecmodules="gif $_nocodecmodules"
5007 echores "$_gif"
5010 case "$_gif" in yes*)
5011 echocheck "broken giflib workaround"
5012 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
5014 cat > $TMPC << EOF
5015 #include <gif_lib.h>
5016 int main(void) {
5017 GifFileType gif;
5018 printf("UserData is at address %p\n", gif.UserData);
5019 return 0;
5022 if cc_check "$_ld_gif" ; then
5023 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
5024 echores "disabled"
5025 else
5026 echores "enabled"
5029 esac
5032 echocheck "VESA support"
5033 if test "$_vesa" = auto ; then
5034 cat > $TMPC << EOF
5035 #include <vbe.h>
5036 int main(void) { vbeVersion(); return 0; }
5038 _vesa=no
5039 cc_check -lvbe -llrmi && _vesa=yes
5041 if test "$_vesa" = yes ; then
5042 def_vesa='#define CONFIG_VESA 1'
5043 libs_mplayer="$libs_mplayer -lvbe -llrmi"
5044 _vomodules="vesa $_vomodules"
5045 else
5046 def_vesa='#undef CONFIG_VESA'
5047 _novomodules="vesa $_novomodules"
5049 echores "$_vesa"
5051 #################
5052 # VIDEO + AUDIO #
5053 #################
5056 echocheck "SDL"
5057 _inc_tmp=""
5058 _ld_tmp=""
5059 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
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 #ifdef CONFIG_SDL_SDL_H
5072 #include <SDL/SDL.h>
5073 #else
5074 #include <SDL.h>
5075 #endif
5076 #ifndef __APPLE__
5077 // we allow SDL hacking our main() only on OSX
5078 #undef main
5079 #endif
5080 int main(int argc, char *argv[]) {
5081 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
5082 return 0;
5085 _sdl=no
5086 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" ; do
5087 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
5088 _sdl=yes
5089 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
5090 break
5092 done
5093 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
5094 _res_comment="using $_sdlconfig"
5095 if cygwin ; then
5096 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
5097 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
5098 elif mingw32 ; then
5099 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
5100 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
5101 else
5102 _inc_tmp="$($_sdlconfig --cflags)"
5103 _ld_tmp="$($_sdlconfig --libs)"
5105 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
5106 _sdlversion=$($_sdlconfig --version | sed 's/[^0-9]//g')
5107 if test "$_sdlversion" -gt 116 ; then
5108 if test "$_sdlversion" -lt 121 ; then
5109 def_sdlbuggy='#define BUGGY_SDL'
5110 else
5111 def_sdlbuggy='#undef BUGGY_SDL'
5113 _sdl=yes
5118 if test "$_sdl" = yes ; then
5119 def_sdl='#define CONFIG_SDL 1'
5120 extra_cflags="$extra_cflags $_inc_tmp"
5121 libs_mplayer="$libs_mplayer $_ld_tmp"
5122 _vomodules="sdl $_vomodules"
5123 _aomodules="sdl $_aomodules"
5124 else
5125 def_sdl='#undef CONFIG_SDL'
5126 _novomodules="sdl $_novomodules"
5127 _noaomodules="sdl $_noaomodules"
5129 echores "$_sdl"
5132 if os2 ; then
5133 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
5134 if test "$_kva" = auto; then
5135 cat > $TMPC << EOF
5136 #include <os2.h>
5137 #include <kva.h>
5138 int main( void ) { return 0; }
5140 _kva=no;
5141 cc_check -lkva && _kva=yes
5143 if test "$_kva" = yes ; then
5144 def_kva='#define CONFIG_KVA 1'
5145 libs_mplayer="$libs_mplayer -lkva"
5146 _vomodules="kva $_vomodules"
5147 else
5148 def_kva='#undef CONFIG_KVA'
5149 _novomodules="kva $_novomodules"
5151 echores "$_kva"
5152 fi #if os2
5155 if win32; then
5157 echocheck "Windows waveout"
5158 if test "$_win32waveout" = auto ; then
5159 cat > $TMPC << EOF
5160 #include <windows.h>
5161 #include <mmsystem.h>
5162 int main(void) { return 0; }
5164 _win32waveout=no
5165 cc_check -lwinmm && _win32waveout=yes
5167 if test "$_win32waveout" = yes ; then
5168 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
5169 libs_mplayer="$libs_mplayer -lwinmm"
5170 _aomodules="win32 $_aomodules"
5171 else
5172 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
5173 _noaomodules="win32 $_noaomodules"
5175 echores "$_win32waveout"
5177 echocheck "Direct3D"
5178 if test "$_direct3d" = auto ; then
5179 cat > $TMPC << EOF
5180 #include <windows.h>
5181 #include <d3d9.h>
5182 int main(void) { return 0; }
5184 _direct3d=no
5185 cc_check && _direct3d=yes
5187 if test "$_direct3d" = yes ; then
5188 def_direct3d='#define CONFIG_DIRECT3D 1'
5189 _vomodules="direct3d $_vomodules"
5190 else
5191 def_direct3d='#undef CONFIG_DIRECT3D'
5192 _novomodules="direct3d $_novomodules"
5194 echores "$_direct3d"
5196 echocheck "Directx"
5197 if test "$_directx" = auto ; then
5198 cat > $TMPC << EOF
5199 #include <windows.h>
5200 #include <ddraw.h>
5201 #include <dsound.h>
5202 int main(void) { return 0; }
5204 _directx=no
5205 cc_check -lgdi32 && _directx=yes
5207 if test "$_directx" = yes ; then
5208 def_directx='#define CONFIG_DIRECTX 1'
5209 libs_mplayer="$libs_mplayer -lgdi32"
5210 _vomodules="directx $_vomodules"
5211 _aomodules="dsound $_aomodules"
5212 else
5213 def_directx='#undef CONFIG_DIRECTX'
5214 _novomodules="directx $_novomodules"
5215 _noaomodules="dsound $_noaomodules"
5217 echores "$_directx"
5219 fi #if win32; then
5222 echocheck "DXR2"
5223 if test "$_dxr2" = auto; then
5224 _dxr2=no
5225 cat > $TMPC << EOF
5226 #include <dxr2ioctl.h>
5227 int main(void) { return 0; }
5229 for _inc_tmp in "" -I/usr/local/include/dxr2 -I/usr/include/dxr2; do
5230 cc_check $_inc_tmp && _dxr2=yes && \
5231 extra_cflags="$extra_cflags $_inc_tmp" && break
5232 done
5234 if test "$_dxr2" = yes; then
5235 def_dxr2='#define CONFIG_DXR2 1'
5236 _aomodules="dxr2 $_aomodules"
5237 _vomodules="dxr2 $_vomodules"
5238 else
5239 def_dxr2='#undef CONFIG_DXR2'
5240 _noaomodules="dxr2 $_noaomodules"
5241 _novomodules="dxr2 $_novomodules"
5243 echores "$_dxr2"
5245 echocheck "DXR3/H+"
5246 if test "$_dxr3" = auto ; then
5247 cat > $TMPC << EOF
5248 #include <linux/em8300.h>
5249 int main(void) { return 0; }
5251 _dxr3=no
5252 cc_check && _dxr3=yes
5254 if test "$_dxr3" = yes ; then
5255 def_dxr3='#define CONFIG_DXR3 1'
5256 _vomodules="dxr3 $_vomodules"
5257 else
5258 def_dxr3='#undef CONFIG_DXR3'
5259 _novomodules="dxr3 $_novomodules"
5261 echores "$_dxr3"
5264 echocheck "IVTV TV-Out (pre linux-2.6.24)"
5265 if test "$_ivtv" = auto ; then
5266 cat > $TMPC << EOF
5267 #include <stdlib.h>
5268 #include <inttypes.h>
5269 #include <linux/types.h>
5270 #include <linux/videodev2.h>
5271 #include <linux/ivtv.h>
5272 #include <sys/ioctl.h>
5273 int main(void) {
5274 struct ivtv_cfg_stop_decode sd;
5275 struct ivtv_cfg_start_decode sd1;
5276 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
5277 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
5278 return 0; }
5280 _ivtv=no
5281 cc_check && _ivtv=yes
5283 if test "$_ivtv" = yes ; then
5284 def_ivtv='#define CONFIG_IVTV 1'
5285 _vomodules="ivtv $_vomodules"
5286 _aomodules="ivtv $_aomodules"
5287 else
5288 def_ivtv='#undef CONFIG_IVTV'
5289 _novomodules="ivtv $_novomodules"
5290 _noaomodules="ivtv $_noaomodules"
5292 echores "$_ivtv"
5295 echocheck "V4L2 MPEG Decoder"
5296 if test "$_v4l2" = auto ; then
5297 cat > $TMPC << EOF
5298 #include <stdlib.h>
5299 #include <inttypes.h>
5300 #include <linux/types.h>
5301 #include <linux/videodev2.h>
5302 #include <linux/version.h>
5303 int main(void) {
5304 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
5305 #error kernel headers too old, need 2.6.22
5306 #endif
5307 struct v4l2_ext_controls ctrls;
5308 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
5309 return 0;
5312 _v4l2=no
5313 cc_check && _v4l2=yes
5315 if test "$_v4l2" = yes ; then
5316 def_v4l2='#define CONFIG_V4L2_DECODER 1'
5317 _vomodules="v4l2 $_vomodules"
5318 _aomodules="v4l2 $_aomodules"
5319 else
5320 def_v4l2='#undef CONFIG_V4L2_DECODER'
5321 _novomodules="v4l2 $_novomodules"
5322 _noaomodules="v4l2 $_noaomodules"
5324 echores "$_v4l2"
5328 #########
5329 # AUDIO #
5330 #########
5333 echocheck "OSS Audio"
5334 if test "$_ossaudio" = auto ; then
5335 cat > $TMPC << EOF
5336 #include <sys/ioctl.h>
5337 #include <$_soundcard_header>
5338 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
5340 _ossaudio=no
5341 cc_check && _ossaudio=yes
5343 if test "$_ossaudio" = yes ; then
5344 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
5345 _aomodules="oss $_aomodules"
5346 if test "$_linux_devfs" = yes; then
5347 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound/dsp"'
5348 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/sound/mixer"'
5349 else
5350 cat > $TMPC << EOF
5351 #include <sys/ioctl.h>
5352 #include <$_soundcard_header>
5353 #ifdef OPEN_SOUND_SYSTEM
5354 int main(void) { return 0; }
5355 #else
5356 #error Not the real thing
5357 #endif
5359 _real_ossaudio=no
5360 cc_check && _real_ossaudio=yes
5361 if test "$_real_ossaudio" = yes; then
5362 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5363 # Check for OSS4 headers (override default headers)
5364 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
5365 if test -f /etc/oss.conf; then
5366 . /etc/oss.conf
5367 _ossinc="$OSSLIBDIR/include"
5368 if test -f "$_ossinc/sys/soundcard.h"; then
5369 extra_cflags="-I$_ossinc $extra_cflags"
5372 elif netbsd || openbsd ; then
5373 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
5374 extra_ldflags="$extra_ldflags -lossaudio"
5375 else
5376 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5378 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
5380 else
5381 def_ossaudio='#undef CONFIG_OSS_AUDIO'
5382 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
5383 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
5384 _noaomodules="oss $_noaomodules"
5386 echores "$_ossaudio"
5389 echocheck "aRts"
5390 if test "$_arts" = auto ; then
5391 _arts=no
5392 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
5394 cat > $TMPC << EOF
5395 #include <artsc.h>
5396 int main(void) { return 0; }
5398 cc_check $(artsc-config --libs) $(artsc-config --cflags) && _arts=yes
5403 if test "$_arts" = yes ; then
5404 def_arts='#define CONFIG_ARTS 1'
5405 _aomodules="arts $_aomodules"
5406 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
5407 extra_cflags="$extra_cflags $(artsc-config --cflags)"
5408 else
5409 _noaomodules="arts $_noaomodules"
5411 echores "$_arts"
5414 echocheck "EsounD"
5415 if test "$_esd" = auto ; then
5416 _esd=no
5417 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
5419 cat > $TMPC << EOF
5420 #include <esd.h>
5421 int main(void) { int fd = esd_open_sound("test"); return fd; }
5423 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd=yes
5427 echores "$_esd"
5429 if test "$_esd" = yes ; then
5430 def_esd='#define CONFIG_ESD 1'
5431 _aomodules="esd $_aomodules"
5432 libs_mplayer="$libs_mplayer $(esd-config --libs)"
5433 extra_cflags="$extra_cflags $(esd-config --cflags)"
5435 echocheck "esd_get_latency()"
5436 cat > $TMPC << EOF
5437 #include <esd.h>
5438 int main(void) { return esd_get_latency(0); }
5440 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
5441 echores "$_esd_latency"
5442 else
5443 def_esd='#undef CONFIG_ESD'
5444 def_esd_latency='#undef CONFIG_ESD_LATENCY'
5445 _noaomodules="esd $_noaomodules"
5449 echocheck "NAS"
5450 if test "$_nas" = auto ; then
5451 cat > $TMPC << EOF
5452 #include <audio/audiolib.h>
5453 int main(void) { return 0; }
5455 _nas=no
5456 cc_check $_ld_lm -laudio -lXt && _nas=yes
5458 if test "$_nas" = yes ; then
5459 def_nas='#define CONFIG_NAS 1'
5460 libs_mplayer="$libs_mplayer -laudio -lXt"
5461 _aomodules="nas $_aomodules"
5462 else
5463 _noaomodules="nas $_noaomodules"
5464 def_nas='#undef CONFIG_NAS'
5466 echores "$_nas"
5469 echocheck "pulse"
5470 if test "$_pulse" = auto ; then
5471 _pulse=no
5472 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5474 cat > $TMPC << EOF
5475 #include <pulse/pulseaudio.h>
5476 int main(void) { return 0; }
5478 cc_check $($_pkg_config --libs --cflags libpulse) && _pulse=yes
5482 echores "$_pulse"
5484 if test "$_pulse" = yes ; then
5485 def_pulse='#define CONFIG_PULSE 1'
5486 _aomodules="pulse $_aomodules"
5487 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
5488 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
5489 else
5490 def_pulse='#undef CONFIG_PULSE'
5491 _noaomodules="pulse $_noaomodules"
5495 echocheck "JACK"
5496 if test "$_jack" = auto ; then
5497 _jack=yes
5499 cat > $TMPC << EOF
5500 #include <jack/jack.h>
5501 int main(void) { jack_client_open("test", JackUseExactName, NULL); return 0; }
5503 if cc_check -ljack ; then
5504 libs_mplayer="$libs_mplayer -ljack"
5505 elif cc_check $($_pkg_config --libs --cflags --silence-errors jack) ; then
5506 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
5507 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
5508 else
5509 _jack=no
5513 if test "$_jack" = yes ; then
5514 def_jack='#define CONFIG_JACK 1'
5515 _aomodules="jack $_aomodules"
5516 else
5517 _noaomodules="jack $_noaomodules"
5519 echores "$_jack"
5521 echocheck "OpenAL"
5522 if test "$_openal" = auto ; then
5523 _openal=no
5524 cat > $TMPC << EOF
5525 #ifdef OPENAL_AL_H
5526 #include <OpenAL/al.h>
5527 #else
5528 #include <AL/al.h>
5529 #endif
5530 int main(void) {
5531 alSourceQueueBuffers(0, 0, 0);
5532 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5533 return 0;
5536 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5537 cc_check $I && _openal=yes && break
5538 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5539 done
5540 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
5542 if test "$_openal" = yes ; then
5543 def_openal='#define CONFIG_OPENAL 1'
5544 _aomodules="openal $_aomodules"
5545 else
5546 _noaomodules="openal $_noaomodules"
5548 echores "$_openal"
5550 echocheck "ALSA audio"
5551 if test "$_alloca" != yes ; then
5552 _alsa=no
5553 _res_comment="alloca missing"
5555 if test "$_alsa" != no ; then
5556 _alsa=no
5557 cat > $TMPC << EOF
5558 #include <sys/time.h>
5559 #include <sys/asoundlib.h>
5560 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5561 #error "alsa version != 0.5.x"
5562 #endif
5563 int main(void) { return 0; }
5565 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5567 cat > $TMPC << EOF
5568 #include <sys/time.h>
5569 #include <sys/asoundlib.h>
5570 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5571 #error "alsa version != 0.9.x"
5572 #endif
5573 int main(void) { return 0; }
5575 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5576 cat > $TMPC << EOF
5577 #include <sys/time.h>
5578 #include <alsa/asoundlib.h>
5579 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5580 #error "alsa version != 0.9.x"
5581 #endif
5582 int main(void) { return 0; }
5584 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5586 cat > $TMPC << EOF
5587 #include <sys/time.h>
5588 #include <sys/asoundlib.h>
5589 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5590 #error "alsa version != 1.0.x"
5591 #endif
5592 int main(void) { return 0; }
5594 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5595 cat > $TMPC << EOF
5596 #include <sys/time.h>
5597 #include <alsa/asoundlib.h>
5598 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5599 #error "alsa version != 1.0.x"
5600 #endif
5601 int main(void) { return 0; }
5603 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5605 def_alsa='#undef CONFIG_ALSA'
5606 def_alsa5='#undef CONFIG_ALSA5'
5607 def_alsa9='#undef CONFIG_ALSA9'
5608 def_alsa1x='#undef CONFIG_ALSA1X'
5609 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5610 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5611 if test "$_alsaver" ; then
5612 _alsa=yes
5613 if test "$_alsaver" = '0.5.x' ; then
5614 _alsa5=yes
5615 _aomodules="alsa5 $_aomodules"
5616 def_alsa5='#define CONFIG_ALSA5 1'
5617 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5618 _res_comment="using alsa 0.5.x and sys/asoundlib.h"
5619 elif test "$_alsaver" = '0.9.x-sys' ; then
5620 _alsa9=yes
5621 _aomodules="alsa $_aomodules"
5622 def_alsa='#define CONFIG_ALSA 1'
5623 def_alsa9='#define CONFIG_ALSA9 1'
5624 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5625 _res_comment="using alsa 0.9.x and sys/asoundlib.h"
5626 elif test "$_alsaver" = '0.9.x-alsa' ; then
5627 _alsa9=yes
5628 _aomodules="alsa $_aomodules"
5629 def_alsa='#define CONFIG_ALSA 1'
5630 def_alsa9='#define CONFIG_ALSA9 1'
5631 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5632 _res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5633 elif test "$_alsaver" = '1.0.x-sys' ; then
5634 _alsa1x=yes
5635 _aomodules="alsa $_aomodules"
5636 def_alsa='#define CONFIG_ALSA 1'
5637 def_alsa1x="#define CONFIG_ALSA1X 1"
5638 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5639 _res_comment="using alsa 1.0.x and sys/asoundlib.h"
5640 elif test "$_alsaver" = '1.0.x-alsa' ; then
5641 _alsa1x=yes
5642 _aomodules="alsa $_aomodules"
5643 def_alsa='#define CONFIG_ALSA 1'
5644 def_alsa1x="#define CONFIG_ALSA1X 1"
5645 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5646 _res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5647 else
5648 _alsa=no
5649 _res_comment="unknown version"
5651 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5652 else
5653 _noaomodules="alsa $_noaomodules"
5655 echores "$_alsa"
5658 echocheck "Sun audio"
5659 if test "$_sunaudio" = auto ; then
5660 cat > $TMPC << EOF
5661 #include <sys/types.h>
5662 #include <sys/audioio.h>
5663 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5665 _sunaudio=no
5666 cc_check && _sunaudio=yes
5668 if test "$_sunaudio" = yes ; then
5669 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5670 _aomodules="sun $_aomodules"
5671 else
5672 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5673 _noaomodules="sun $_noaomodules"
5675 echores "$_sunaudio"
5678 def_mlib='#define CONFIG_MLIB 0'
5679 if sunos; then
5680 echocheck "Sun mediaLib"
5681 if test "$_mlib" = auto ; then
5682 _mlib=no
5683 cat > $TMPC << EOF
5684 #include <mlib.h>
5685 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; }
5687 cc_check -lmlib && _mlib=yes && def_mlib='#define CONFIG_MLIB 1'
5689 echores "$_mlib"
5690 fi #if sunos
5693 if darwin; then
5694 echocheck "CoreAudio"
5695 if test "$_coreaudio" = auto ; then
5696 cat > $TMPC <<EOF
5697 #include <CoreAudio/CoreAudio.h>
5698 #include <AudioToolbox/AudioToolbox.h>
5699 #include <AudioUnit/AudioUnit.h>
5700 int main(void) { return 0; }
5702 _coreaudio=no
5703 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5705 if test "$_coreaudio" = yes ; then
5706 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5707 def_coreaudio='#define CONFIG_COREAUDIO 1'
5708 _aomodules="coreaudio $_aomodules"
5709 else
5710 def_coreaudio='#undef CONFIG_COREAUDIO'
5711 _noaomodules="coreaudio $_noaomodules"
5713 echores $_coreaudio
5714 fi #if darwin
5717 if irix; then
5718 echocheck "SGI audio"
5719 if test "$_sgiaudio" = auto ; then
5720 # check for SGI audio
5721 cat > $TMPC << EOF
5722 #include <dmedia/audio.h>
5723 int main(void) { return 0; }
5725 _sgiaudio=no
5726 cc_check && _sgiaudio=yes
5728 if test "$_sgiaudio" = "yes" ; then
5729 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5730 libs_mplayer="$libs_mplayer -laudio"
5731 _aomodules="sgi $_aomodules"
5732 else
5733 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5734 _noaomodules="sgi $_noaomodules"
5736 echores "$_sgiaudio"
5737 fi #if irix
5740 if os2 ; then
5741 echocheck "DART"
5742 if test "$_dart" = auto; then
5743 cat > $TMPC << EOF
5744 #include <os2.h>
5745 #include <dart.h>
5746 int main( void ) { return 0; }
5748 _dart=no;
5749 cc_check -ldart && _dart=yes
5751 if test "$_dart" = yes ; then
5752 def_dart='#define CONFIG_DART 1'
5753 libs_mplayer="$libs_mplayer -ldart"
5754 _aomodules="dart $_aomodules"
5755 else
5756 def_dart='#undef CONFIG_DART'
5757 _noaomodules="dart $_noaomodules"
5759 echores "$_dart"
5760 fi #if os2
5763 # set default CD/DVD devices
5764 if win32 || os2 ; then
5765 default_cdrom_device="D:"
5766 elif darwin ; then
5767 default_cdrom_device="/dev/disk1"
5768 elif dragonfly ; then
5769 default_cdrom_device="/dev/cd0"
5770 elif freebsd ; then
5771 default_cdrom_device="/dev/acd0"
5772 elif openbsd ; then
5773 default_cdrom_device="/dev/rcd0a"
5774 elif sunos ; then
5775 default_cdrom_device="/vol/dev/aliases/cdrom0"
5776 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5777 # file system and the volfs service.
5778 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5779 elif amigaos ; then
5780 default_cdrom_device="a1ide.device:2"
5781 else
5782 default_cdrom_device="/dev/cdrom"
5785 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5786 default_dvd_device=$default_cdrom_device
5787 elif darwin ; then
5788 default_dvd_device="/dev/rdiskN"
5789 else
5790 default_dvd_device="/dev/dvd"
5794 echocheck "VCD support"
5795 if test "$_vcd" = auto; then
5796 _vcd=no
5797 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos; then
5798 _vcd=yes
5799 elif mingw32; then
5800 cat > $TMPC << EOF
5801 #include <ddk/ntddcdrm.h>
5802 int main(void) { return 0; }
5804 cc_check && _vcd=yes
5807 if test "$_vcd" = yes; then
5808 _inputmodules="vcd $_inputmodules"
5809 def_vcd='#define CONFIG_VCD 1'
5810 else
5811 def_vcd='#undef CONFIG_VCD'
5812 _noinputmodules="vcd $_noinputmodules"
5813 _res_comment="not supported on this OS"
5815 echores "$_vcd"
5819 echocheck "dvdread"
5820 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5821 _dvdread_internal=no
5823 if test "$_dvdread_internal" = auto ; then
5824 _dvdread_internal=no
5825 _dvdread=no
5826 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) \
5827 && (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
5828 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) \
5829 || darwin || win32 || os2; then
5830 _dvdread_internal=yes
5831 _dvdread=yes
5832 extra_cflags="-Ilibdvdread4 $extra_cflags"
5834 elif test "$_dvdread" = auto ; then
5835 _dvdread=no
5836 if test "$_dl" = yes; then
5837 cat > $TMPC << EOF
5838 #include <inttypes.h>
5839 #include <dvdread/dvd_reader.h>
5840 #include <dvdread/ifo_types.h>
5841 #include <dvdread/ifo_read.h>
5842 #include <dvdread/nav_read.h>
5843 int main(void) { return 0; }
5845 _dvdreadcflags=$($_dvdreadconfig --cflags)
5846 _dvdreadlibs=$($_dvdreadconfig --libs)
5847 if cc_check -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
5848 $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5849 _dvdread=yes
5850 extra_cflags="$extra_cflags $_dvdreadcflags"
5851 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5852 _res_comment="external"
5857 if test "$_dvdread_internal" = yes; then
5858 def_dvdread='#define CONFIG_DVDREAD 1'
5859 _inputmodules="dvdread(internal) $_inputmodules"
5860 _largefiles=yes
5861 _res_comment="internal"
5862 elif test "$_dvdread" = yes; then
5863 def_dvdread='#define CONFIG_DVDREAD 1'
5864 _largefiles=yes
5865 extra_ldflags="$extra_ldflags -ldvdread"
5866 _inputmodules="dvdread(external) $_inputmodules"
5867 _res_comment="external"
5868 else
5869 def_dvdread='#undef CONFIG_DVDREAD'
5870 _noinputmodules="dvdread $_noinputmodules"
5872 echores "$_dvdread"
5875 echocheck "internal libdvdcss"
5876 if test "$_libdvdcss_internal" = auto ; then
5877 _libdvdcss_internal=no
5878 test "$_dvdread_internal" = yes && _libdvdcss_internal=yes
5879 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5881 if test "$_libdvdcss_internal" = yes ; then
5882 if linux || netbsd || openbsd || bsdos ; then
5883 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5884 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5885 elif freebsd || dragonfly ; then
5886 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5887 elif darwin ; then
5888 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5889 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5890 elif cygwin ; then
5891 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5892 elif beos ; then
5893 cflags_libdvdcss="-DSYS_BEOS"
5894 elif os2 ; then
5895 cflags_libdvdcss="-DSYS_OS2"
5897 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5898 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5899 _inputmodules="libdvdcss(internal) $_inputmodules"
5900 _largefiles=yes
5901 else
5902 _noinputmodules="libdvdcss(internal) $_noinputmodules"
5904 echores "$_libdvdcss_internal"
5907 echocheck "cdparanoia"
5908 if test "$_cdparanoia" = auto ; then
5909 cat > $TMPC <<EOF
5910 #include <cdda_interface.h>
5911 #include <cdda_paranoia.h>
5912 // This need a better test. How ?
5913 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5915 _cdparanoia=no
5916 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5917 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
5918 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5919 done
5921 if test "$_cdparanoia" = yes ; then
5922 _cdda='yes'
5923 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5924 openbsd && extra_ldflags="$extra_ldflags -lutil"
5926 echores "$_cdparanoia"
5929 echocheck "libcdio"
5930 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5931 cat > $TMPC << EOF
5932 #include <stdio.h>
5933 #include <cdio/version.h>
5934 #include <cdio/cdda.h>
5935 #include <cdio/paranoia.h>
5936 int main(void) {
5937 void *test = cdda_verbose_set;
5938 printf("%s\n", CDIO_VERSION);
5939 return test == (void *)1;
5942 _libcdio=no
5943 for _ld_tmp in "" "-lwinmm" ; do
5944 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
5945 cc_check $_ld_tmp $_ld_lm \
5946 && _libcdio=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
5947 done
5948 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
5949 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
5950 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
5951 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes \
5952 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5955 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
5956 _cdda='yes'
5957 def_libcdio='#define CONFIG_LIBCDIO 1'
5958 def_havelibcdio='yes'
5959 else
5960 if test "$_cdparanoia" = yes ; then
5961 _res_comment="using cdparanoia"
5963 def_libcdio='#undef CONFIG_LIBCDIO'
5964 def_havelibcdio='no'
5966 echores "$_libcdio"
5968 if test "$_cdda" = yes ; then
5969 test $_cddb = auto && test $_network = yes && _cddb=yes
5970 def_cdparanoia='#define CONFIG_CDDA 1'
5971 _inputmodules="cdda $_inputmodules"
5972 else
5973 def_cdparanoia='#undef CONFIG_CDDA'
5974 _noinputmodules="cdda $_noinputmodules"
5977 if test "$_cddb" = yes ; then
5978 def_cddb='#define CONFIG_CDDB 1'
5979 _inputmodules="cddb $_inputmodules"
5980 else
5981 _cddb=no
5982 def_cddb='#undef CONFIG_CDDB'
5983 _noinputmodules="cddb $_noinputmodules"
5986 echocheck "bitmap font support"
5987 if test "$_bitmap_font" = yes ; then
5988 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
5989 else
5990 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
5992 echores "$_bitmap_font"
5995 echocheck "freetype >= 2.0.9"
5997 # freetype depends on iconv
5998 if test "$_iconv" = no ; then
5999 _freetype=no
6000 _res_comment="iconv support needed"
6003 if test "$_freetype" = auto ; then
6004 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
6005 cat > $TMPC << EOF
6006 #include <stdio.h>
6007 #include <ft2build.h>
6008 #include FT_FREETYPE_H
6009 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
6010 #error "Need FreeType 2.0.9 or newer"
6011 #endif
6012 int main(void) {
6013 FT_Library library;
6014 FT_Int major=-1,minor=-1,patch=-1;
6015 int err=FT_Init_FreeType(&library);
6016 return 0;
6019 _freetype=no
6020 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
6021 else
6022 _freetype=no
6025 if test "$_freetype" = yes ; then
6026 def_freetype='#define CONFIG_FREETYPE 1'
6027 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
6028 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
6029 else
6030 def_freetype='#undef CONFIG_FREETYPE'
6032 echores "$_freetype"
6034 if test "$_freetype" = no ; then
6035 _fontconfig=no
6036 _res_comment="FreeType support needed"
6038 echocheck "fontconfig"
6039 if test "$_fontconfig" = auto ; then
6040 cat > $TMPC << EOF
6041 #include <stdio.h>
6042 #include <stdlib.h>
6043 #include <fontconfig/fontconfig.h>
6044 int main(void) {
6045 int err = FcInit();
6046 if (err == FcFalse) {
6047 printf("Couldn't initialize fontconfig lib\n");
6048 exit(err);
6050 return 0;
6053 _fontconfig=no
6054 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
6055 _ld_tmp="-lfontconfig $_ld_tmp"
6056 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6057 done
6058 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
6059 _inc_tmp=$($_pkg_config --cflags fontconfig)
6060 _ld_tmp=$($_pkg_config --libs fontconfig)
6061 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes \
6062 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6065 if test "$_fontconfig" = yes ; then
6066 def_fontconfig='#define CONFIG_FONTCONFIG 1'
6067 else
6068 def_fontconfig='#undef CONFIG_FONTCONFIG'
6070 echores "$_fontconfig"
6073 echocheck "SSA/ASS support"
6074 if test "$_ass" = auto -o "$_ass" = yes ; then
6075 if $_pkg_config libass; then
6076 _ass=yes
6077 def_ass='#define CONFIG_ASS 1'
6078 extra_ldflags="$extra_ldflags $($_pkg_config --libs libass)"
6079 extra_cflags="$extra_cflags $($_pkg_config --cflags libass)"
6080 else
6081 _ass=no
6082 def_ass='#undef CONFIG_ASS'
6084 else
6085 def_ass='#undef CONFIG_ASS'
6087 echores "$_ass"
6090 echocheck "fribidi with charsets"
6091 _inc_tmp=""
6092 _ld_tmp=""
6093 if test "$_fribidi" = auto ; then
6094 cat > $TMPC << EOF
6095 #include <stdio.h>
6096 #include <stdlib.h>
6097 /* workaround for fribidi 0.10.4 and below */
6098 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
6099 #include <fribidi/fribidi.h>
6100 int main(void) {
6101 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8) {
6102 printf("Fribidi headers are not consistents with the library!\n");
6103 exit(1);
6105 return 0;
6108 _fribidi=no
6109 _inc_tmp=""
6110 _ld_tmp="-lfribidi"
6111 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6112 if $_fribidiconfig --version > /dev/null 2>&1 &&
6113 test "$_fribidi" = no ; then
6114 _inc_tmp="$($_fribidiconfig --cflags)"
6115 _ld_tmp="$($_fribidiconfig --libs)"
6116 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6119 if test "$_fribidi" = yes ; then
6120 def_fribidi='#define CONFIG_FRIBIDI 1'
6121 extra_cflags="$extra_cflags $_inc_tmp"
6122 extra_ldflags="$extra_ldflags $_ld_tmp"
6123 else
6124 def_fribidi='#undef CONFIG_FRIBIDI'
6126 echores "$_fribidi"
6129 echocheck "ENCA"
6130 if test "$_enca" = auto ; then
6131 cat > $TMPC << EOF
6132 #include <sys/types.h>
6133 #include <enca.h>
6134 int main(void) {
6135 const char **langs;
6136 size_t langcnt;
6137 langs = enca_get_languages(&langcnt);
6138 return 0;
6141 _enca=no
6142 cc_check -lenca $_ld_lm && _enca=yes
6144 if test "$_enca" = yes ; then
6145 def_enca='#define CONFIG_ENCA 1'
6146 extra_ldflags="$extra_ldflags -lenca"
6147 else
6148 def_enca='#undef CONFIG_ENCA'
6150 echores "$_enca"
6153 echocheck "zlib"
6154 cat > $TMPC << EOF
6155 #include <zlib.h>
6156 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; }
6158 _zlib=no
6159 cc_check -lz && _zlib=yes
6160 if test "$_zlib" = yes ; then
6161 def_zlib='#define CONFIG_ZLIB 1'
6162 extra_ldflags="$extra_ldflags -lz"
6163 else
6164 def_zlib='#define CONFIG_ZLIB 0'
6166 echores "$_zlib"
6169 echocheck "bzlib"
6170 bzlib=no
6171 def_bzlib='#define CONFIG_BZLIB 0'
6172 cat > $TMPC << EOF
6173 #include <bzlib.h>
6174 int main(void) { BZ2_bzlibVersion(); return 0; }
6176 cc_check -lbz2 && bzlib=yes
6177 if test "$bzlib" = yes ; then
6178 def_bzlib='#define CONFIG_BZLIB 1'
6179 extra_ldflags="$extra_ldflags -lbz2"
6181 echores "$bzlib"
6184 echocheck "RTC"
6185 if test "$_rtc" = auto ; then
6186 cat > $TMPC << EOF
6187 #include <sys/ioctl.h>
6188 #ifdef __linux__
6189 #include <linux/rtc.h>
6190 #else
6191 #include <rtc.h>
6192 #define RTC_PIE_ON RTCIO_PIE_ON
6193 #endif
6194 int main(void) { return RTC_PIE_ON; }
6196 _rtc=no
6197 cc_check && _rtc=yes
6198 ppc && _rtc=no
6200 if test "$_rtc" = yes ; then
6201 def_rtc='#define HAVE_RTC 1'
6202 else
6203 def_rtc='#undef HAVE_RTC'
6205 echores "$_rtc"
6208 echocheck "liblzo2 support"
6209 if test "$_liblzo" = auto ; then
6210 _liblzo=no
6211 cat > $TMPC << EOF
6212 #include <lzo/lzo1x.h>
6213 int main(void) { lzo_init();return 0; }
6215 cc_check -llzo2 && _liblzo=yes
6217 if test "$_liblzo" = yes ; then
6218 def_liblzo='#define CONFIG_LIBLZO 1'
6219 extra_ldflags="$extra_ldflags -llzo2"
6220 _codecmodules="liblzo $_codecmodules"
6221 else
6222 def_liblzo='#undef CONFIG_LIBLZO'
6223 _nocodecmodules="liblzo $_nocodecmodules"
6225 echores "$_liblzo"
6228 echocheck "mad support"
6229 if test "$_mad" = auto ; then
6230 _mad=no
6231 cat > $TMPC << EOF
6232 #include <mad.h>
6233 int main(void) { return 0; }
6235 cc_check -lmad && _mad=yes
6237 if test "$_mad" = yes ; then
6238 def_mad='#define CONFIG_LIBMAD 1'
6239 extra_ldflags="$extra_ldflags -lmad"
6240 _codecmodules="libmad $_codecmodules"
6241 else
6242 def_mad='#undef CONFIG_LIBMAD'
6243 _nocodecmodules="libmad $_nocodecmodules"
6245 echores "$_mad"
6247 echocheck "Twolame"
6248 if test "$_twolame" = auto ; then
6249 cat > $TMPC <<EOF
6250 #include <twolame.h>
6251 int main(void) { twolame_init(); return 0; }
6253 _twolame=no
6254 cc_check -ltwolame $_ld_lm && _twolame=yes
6256 if test "$_twolame" = yes ; then
6257 def_twolame='#define CONFIG_TWOLAME 1'
6258 libs_mencoder="$libs_mencoder -ltwolame"
6259 _codecmodules="twolame $_codecmodules"
6260 else
6261 def_twolame='#undef CONFIG_TWOLAME'
6262 _nocodecmodules="twolame $_nocodecmodules"
6264 echores "$_twolame"
6266 echocheck "Toolame"
6267 if test "$_toolame" = auto ; then
6268 _toolame=no
6269 if test "$_twolame" = yes ; then
6270 _res_comment="disabled by twolame"
6271 else
6272 cat > $TMPC <<EOF
6273 #include <toolame.h>
6274 int main(void) { toolame_init(); return 0; }
6276 cc_check -ltoolame $_ld_lm && _toolame=yes
6279 if test "$_toolame" = yes ; then
6280 def_toolame='#define CONFIG_TOOLAME 1'
6281 libs_mencoder="$libs_mencoder -ltoolame"
6282 _codecmodules="toolame $_codecmodules"
6283 else
6284 def_toolame='#undef CONFIG_TOOLAME'
6285 _nocodecmodules="toolame $_nocodecmodules"
6287 if test "$_toolamedir" ; then
6288 _res_comment="using $_toolamedir"
6290 echores "$_toolame"
6292 echocheck "OggVorbis support"
6293 if test "$_tremor_internal" = yes; then
6294 _libvorbis=no
6295 elif test "$_tremor" = auto; then
6296 _tremor=no
6297 cat > $TMPC << EOF
6298 #include <tremor/ivorbiscodec.h>
6299 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6301 cc_check -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
6303 if test "$_libvorbis" = auto; then
6304 _libvorbis=no
6305 cat > $TMPC << EOF
6306 #include <vorbis/codec.h>
6307 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6309 cc_check -lvorbis -logg $_ld_lm && _libvorbis=yes
6311 if test "$_tremor_internal" = yes ; then
6312 _vorbis=yes
6313 def_vorbis='#define CONFIG_OGGVORBIS 1'
6314 def_tremor='#define CONFIG_TREMOR 1'
6315 _codecmodules="tremor(internal) $_codecmodules"
6316 _res_comment="internal Tremor"
6317 if test "$_tremor_low" = yes ; then
6318 cflags_tremor_low="-D_LOW_ACCURACY_"
6319 _res_comment="internal low accuracy Tremor"
6321 elif test "$_tremor" = yes ; then
6322 _vorbis=yes
6323 def_vorbis='#define CONFIG_OGGVORBIS 1'
6324 def_tremor='#define CONFIG_TREMOR 1'
6325 _codecmodules="tremor(external) $_codecmodules"
6326 _res_comment="external Tremor"
6327 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
6328 elif test "$_libvorbis" = yes ; then
6329 _vorbis=yes
6330 def_vorbis='#define CONFIG_OGGVORBIS 1'
6331 _codecmodules="libvorbis $_codecmodules"
6332 _res_comment="libvorbis"
6333 extra_ldflags="$extra_ldflags -lvorbis -logg"
6334 else
6335 _vorbis=no
6336 _nocodecmodules="libvorbis $_nocodecmodules"
6338 echores "$_vorbis"
6340 echocheck "libspeex (version >= 1.1 required)"
6341 if test "$_speex" = auto ; then
6342 _speex=no
6343 cat > $TMPC << EOF
6344 #include <speex/speex.h>
6345 int main(void) { SpeexBits bits; void *dec; speex_decode_int(dec, &bits, dec); return 0; }
6347 cc_check -lspeex $_ld_lm && _speex=yes
6349 if test "$_speex" = yes ; then
6350 def_speex='#define CONFIG_SPEEX 1'
6351 extra_ldflags="$extra_ldflags -lspeex"
6352 _codecmodules="speex $_codecmodules"
6353 else
6354 def_speex='#undef CONFIG_SPEEX'
6355 _nocodecmodules="speex $_nocodecmodules"
6357 echores "$_speex"
6359 echocheck "OggTheora support"
6360 if test "$_theora" = auto ; then
6361 _theora=no
6362 cat > $TMPC << EOF
6363 #include <theora/theora.h>
6364 #include <string.h>
6365 int main(void) {
6366 /* Theora is in flux, make sure that all interface routines and datatypes
6367 * exist and work the way we expect it, so we don't break MPlayer. */
6368 ogg_packet op;
6369 theora_comment tc;
6370 theora_info inf;
6371 theora_state st;
6372 yuv_buffer yuv;
6373 int r;
6374 double t;
6376 theora_info_init(&inf);
6377 theora_comment_init(&tc);
6379 return 0;
6381 /* we don't want to execute this kind of nonsense; just for making sure
6382 * that compilation works... */
6383 memset(&op, 0, sizeof(op));
6384 r = theora_decode_header(&inf, &tc, &op);
6385 r = theora_decode_init(&st, &inf);
6386 t = theora_granule_time(&st, op.granulepos);
6387 r = theora_decode_packetin(&st, &op);
6388 r = theora_decode_YUVout(&st, &yuv);
6389 theora_clear(&st);
6391 return 0;
6394 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6395 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6396 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
6397 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6398 if test _theora = no; then
6399 _ld_theora="-ltheora -logg"
6400 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6402 if test "$_theora" = no && test "$_tremor_internal" = yes; then
6403 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6404 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6405 cc_check tremor/bitwise.c $_inc_theora $_ld_theora &&
6406 extra_ldflags="$extra_ldflags $_ld_theora" &&
6407 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6408 if test _theora = no; then
6409 _ld_theora="-ltheora -logg"
6410 cc_check tremor/bitwise.c $_ld_theora &&
6411 extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6415 if test "$_theora" = yes ; then
6416 def_theora='#define CONFIG_OGGTHEORA 1'
6417 _codecmodules="libtheora $_codecmodules"
6418 # when --enable-theora is forced, we'd better provide a probably sane
6419 # $_ld_theora than nothing
6420 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
6421 else
6422 def_theora='#undef CONFIG_OGGTHEORA'
6423 _nocodecmodules="libtheora $_nocodecmodules"
6425 echores "$_theora"
6427 echocheck "internal mp3lib support"
6428 if test "$_mp3lib" = auto ; then
6429 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _mp3lib=no || _mp3lib=yes
6431 if test "$_mp3lib" = yes ; then
6432 def_mp3lib='#define CONFIG_MP3LIB 1'
6433 _codecmodules="mp3lib(internal) $_codecmodules"
6434 else
6435 def_mp3lib='#undef CONFIG_MP3LIB'
6436 _nocodecmodules="mp3lib(internal) $_nocodecmodules"
6438 echores "$_mp3lib"
6440 echocheck "liba52 support"
6441 if test "$_liba52_internal" = auto ; then
6442 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
6444 def_liba52='#undef CONFIG_LIBA52'
6445 def_liba52_internal="#undef CONFIG_LIBA52_INTERNAL"
6446 if test "$_liba52_internal" = yes ; then
6447 _liba52=yes
6448 def_liba52_internal="#define CONFIG_LIBA52_INTERNAL 1"
6449 _res_comment="internal"
6450 elif test "$_liba52_internal" = no && test "$_liba52" = auto ; then
6451 _liba52=no
6452 cat > $TMPC << EOF
6453 #include <inttypes.h>
6454 #include <a52dec/a52.h>
6455 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6457 cc_check -la52 && _liba52=yes && _res_comment="external" && extra_ldflags="$extra_ldflags -la52"
6459 if test "$_liba52" = yes ; then
6460 def_liba52='#define CONFIG_LIBA52 1'
6461 _codecmodules="liba52($_res_comment) $_codecmodules"
6462 else
6463 _nocodecmodules="liba52 $_nocodecmodules"
6465 echores "$_liba52"
6467 echocheck "internal libmpeg2 support"
6468 if test "$_libmpeg2" = auto ; then
6469 _libmpeg2=yes
6470 if alpha && test cc_vendor=gnu; then
6471 case $cc_version in
6472 2*|3.0*|3.1*) # cannot compile MVI instructions
6473 _libmpeg2=no
6474 _res_comment="broken gcc"
6476 esac
6479 if test "$_libmpeg2" = yes ; then
6480 def_libmpeg2='#define CONFIG_LIBMPEG2 1'
6481 _codecmodules="libmpeg2(internal) $_codecmodules"
6482 else
6483 def_libmpeg2='#undef CONFIG_LIBMPEG2'
6484 _nocodecmodules="libmpeg2(internal) $_nocodecmodules"
6486 echores "$_libmpeg2"
6488 echocheck "libdca support"
6489 if test "$_libdca" = auto ; then
6490 _libdca=no
6491 cat > $TMPC << EOF
6492 #include <inttypes.h>
6493 #include <dts.h>
6494 int main(void) { dts_init(0); return 0; }
6496 for _ld_dca in -ldca -ldts ; do
6497 cc_check $_ld_dca $_ld_lm && extra_ldflags="$extra_ldflags $_ld_dca" \
6498 && _libdca=yes && break
6499 done
6501 if test "$_libdca" = yes ; then
6502 def_libdca='#define CONFIG_LIBDCA 1'
6503 _codecmodules="libdca $_codecmodules"
6504 else
6505 def_libdca='#undef CONFIG_LIBDCA'
6506 _nocodecmodules="libdca $_nocodecmodules"
6508 echores "$_libdca"
6510 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
6511 if test "$_musepack" = auto ; then
6512 _musepack=no
6513 cat > $TMPC << EOF
6514 #include <stddef.h>
6515 #include <mpcdec/mpcdec.h>
6516 int main(void) {
6517 mpc_streaminfo info;
6518 mpc_decoder decoder;
6519 mpc_decoder_set_streaminfo(&decoder, &info);
6520 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6521 return 0;
6524 cc_check -lmpcdec $_ld_lm && _musepack=yes
6526 if test "$_musepack" = yes ; then
6527 def_musepack='#define CONFIG_MUSEPACK 1'
6528 extra_ldflags="$extra_ldflags -lmpcdec"
6529 _codecmodules="musepack $_codecmodules"
6530 else
6531 def_musepack='#undef CONFIG_MUSEPACK'
6532 _nocodecmodules="musepack $_nocodecmodules"
6534 echores "$_musepack"
6537 echocheck "FAAC support"
6538 if test "$_faac" = auto ; then
6539 cat > $TMPC <<EOF
6540 #include <inttypes.h>
6541 #include <faac.h>
6542 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6544 _faac=no
6545 for _ld_faac in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6546 cc_check -O2 $_ld_faac $_ld_lm && libs_mencoder="$libs_mencoder $_ld_faac" && _faac=yes && break
6547 done
6549 if test "$_faac" = yes ; then
6550 def_faac="#define CONFIG_FAAC 1"
6551 _codecmodules="faac $_codecmodules"
6552 else
6553 def_faac="#undef CONFIG_FAAC"
6554 _nocodecmodules="faac $_nocodecmodules"
6556 echores "$_faac"
6559 echocheck "FAAD2 support"
6560 if test "$_faad_internal" = auto ; then
6561 if x86_32 && test cc_vendor=gnu; then
6562 case $cc_version in
6563 3.1*|3.2) # ICE/insn with these versions
6564 _faad_internal=no
6565 _res_comment="broken gcc"
6568 _faad=yes
6569 _faad_internal=yes
6571 esac
6572 else
6573 _faad=yes
6574 _faad_internal=yes
6577 if test "$_faad" = auto ; then
6578 cat > $TMPC << EOF
6579 #include <faad.h>
6580 #ifndef FAAD_MIN_STREAMSIZE
6581 #error Too old version
6582 #endif
6583 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6584 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6586 cc_check -lfaad $_ld_lm && _faad=yes
6589 def_faad='#undef CONFIG_FAAD'
6590 def_faad_internal="#undef CONFIG_FAAD_INTERNAL"
6591 if test "$_faad_internal" = yes ; then
6592 def_faad_internal="#define CONFIG_FAAD_INTERNAL 1"
6593 _res_comment="internal floating-point"
6594 if test "$_faad_fixed" = yes ; then
6595 # The FIXED_POINT implementation of FAAD2 improves performance
6596 # on some platforms, especially for SBR files.
6597 cflags_faad_fixed="-DFIXED_POINT"
6598 _res_comment="internal fixed-point"
6600 elif test "$_faad" = yes ; then
6601 extra_ldflags="$extra_ldflags -lfaad"
6604 if test "$_faad" = yes ; then
6605 def_faad='#define CONFIG_FAAD 1'
6606 if test "$_faad_internal" = yes ; then
6607 _codecmodules="faad2(internal) $_codecmodules"
6608 else
6609 _codecmodules="faad2 $_codecmodules"
6611 else
6612 _faad=no
6613 _nocodecmodules="faad2 $_nocodecmodules"
6615 echores "$_faad"
6618 echocheck "LADSPA plugin support"
6619 if test "$_ladspa" = auto ; then
6620 cat > $TMPC <<EOF
6621 #include <stdio.h>
6622 #include <ladspa.h>
6623 int main(void) {
6624 const LADSPA_Descriptor *ld = NULL;
6625 return 0;
6628 _ladspa=no
6629 cc_check && _ladspa=yes
6631 if test "$_ladspa" = yes; then
6632 def_ladspa="#define CONFIG_LADSPA 1"
6633 else
6634 def_ladspa="#undef CONFIG_LADSPA"
6636 echores "$_ladspa"
6639 echocheck "libbs2b audio filter support"
6640 if test "$_libbs2b" = auto ; then
6641 cat > $TMPC <<EOF
6642 #include <bs2b.h>
6643 #if BS2B_VERSION_MAJOR < 3
6644 #error Please use libbs2b >= 3.0.0, older versions are not supported.
6645 #endif
6646 int main(void) {
6647 t_bs2bdp filter;
6648 filter=bs2b_open();
6649 bs2b_close(filter);
6650 return 0;
6653 _libbs2b=no
6654 if $_pkg_config --exists libbs2b ; then
6655 _inc_tmp=$($_pkg_config --cflags libbs2b)
6656 _ld_tmp=$($_pkg_config --libs libbs2b)
6657 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
6658 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
6659 else
6660 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
6661 -I/usr/local/include/bs2b ; do
6662 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
6663 extra_ldflags="$extra_ldflags -lbs2b"
6664 extra_cflags="$extra_cflags $_inc_tmp"
6665 _libbs2b=yes
6666 break
6668 done
6671 def_libbs2b="#undef CONFIG_LIBBS2B"
6672 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
6673 echores "$_libbs2b"
6676 if test -z "$_codecsdir" ; then
6677 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
6678 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
6679 if test -d "$dir" ; then
6680 _codecsdir="$dir"
6681 break;
6683 done
6685 # Fall back on default directory.
6686 if test -z "$_codecsdir" ; then
6687 _codecsdir="$_libdir/codecs"
6688 mingw32 && _codecsdir="codecs"
6689 os2 && _codecsdir="codecs"
6693 echocheck "Win32 codecs"
6694 if test "$_win32dll" = auto ; then
6695 _win32dll=no
6696 if x86_32 && ! qnx; then
6697 _win32dll=yes
6700 if test "$_win32dll" = yes ; then
6701 def_win32dll='#define CONFIG_WIN32DLL 1'
6702 test -z "$_win32codecsdir" && _win32codecsdir=$_codecsdir
6703 _res_comment="using $_win32codecsdir"
6704 if ! win32 ; then
6705 def_win32_loader='#define WIN32_LOADER 1'
6706 _win32_emulation=yes
6707 else
6708 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
6709 _res_comment="using native windows"
6711 _codecmodules="win32 $_codecmodules"
6712 else
6713 def_win32dll='#undef CONFIG_WIN32DLL'
6714 def_win32_loader='#undef WIN32_LOADER'
6715 _nocodecmodules="win32 $_nocodecmodules"
6717 echores "$_win32dll"
6720 echocheck "XAnim codecs"
6721 if test "$_xanim" = auto ; then
6722 _xanim=no
6723 _res_comment="dynamic loader support needed"
6724 if test "$_dl" = yes ; then
6725 _xanim=yes
6728 if test "$_xanim" = yes ; then
6729 test -z "$_xanimcodecsdir" && _xanimcodecsdir=$_codecsdir
6730 def_xanim='#define CONFIG_XANIM 1'
6731 def_xanim_path="#define XACODEC_PATH \"$_xanimcodecsdir\""
6732 _codecmodules="xanim $_codecmodules"
6733 _res_comment="using $_xanimcodecsdir"
6734 else
6735 def_xanim='#undef CONFIG_XANIM'
6736 def_xanim_path='#undef XACODEC_PATH'
6737 _nocodecmodules="xanim $_nocodecmodules"
6739 echores "$_xanim"
6742 echocheck "RealPlayer codecs"
6743 if test "$_real" = auto ; then
6744 _real=no
6745 _res_comment="dynamic loader support needed"
6746 if test "$_dl" = yes || test "$_win32dll" = yes &&
6747 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32) ; then
6748 _real=yes
6751 if test "$_real" = yes ; then
6752 test -z "$_realcodecsdir" && _realcodecsdir="$_codecsdir"
6753 def_real='#define CONFIG_REALCODECS 1'
6754 def_real_path="#define REALCODEC_PATH \"$_realcodecsdir\""
6755 _codecmodules="real $_codecmodules"
6756 _res_comment="using $_realcodecsdir"
6757 else
6758 def_real='#undef CONFIG_REALCODECS'
6759 def_real_path="#undef REALCODEC_PATH"
6760 _nocodecmodules="real $_nocodecmodules"
6762 echores "$_real"
6765 echocheck "QuickTime codecs"
6766 _qtx_emulation=no
6767 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
6768 if test "$_qtx" = auto ; then
6769 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
6771 if test "$_qtx" = yes ; then
6772 def_qtx='#define CONFIG_QTX_CODECS 1'
6773 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
6774 _codecmodules="qtx $_codecmodules"
6775 darwin || win32 || _qtx_emulation=yes
6776 else
6777 def_qtx='#undef CONFIG_QTX_CODECS'
6778 _nocodecmodules="qtx $_nocodecmodules"
6780 echores "$_qtx"
6782 echocheck "Nemesi Streaming Media libraries"
6783 if test "$_nemesi" = auto && test "$_network" = yes ; then
6784 _nemesi=no
6785 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
6786 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
6787 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
6788 _nemesi=yes
6791 if test "$_nemesi" = yes; then
6792 _native_rtsp=no
6793 def_nemesi='#define CONFIG_LIBNEMESI 1'
6794 _inputmodules="nemesi $_inputmodules"
6795 else
6796 _native_rtsp="$_network"
6797 _nemesi=no
6798 def_nemesi='#undef CONFIG_LIBNEMESI'
6799 _noinputmodules="nemesi $_noinputmodules"
6801 echores "$_nemesi"
6803 echocheck "LIVE555 Streaming Media libraries"
6804 if test "$_live" = auto && test "$_network" = yes ; then
6805 cat > $TMPCPP << EOF
6806 #include <liveMedia.hh>
6807 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6808 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6809 #endif
6810 int main(void) { return 0; }
6813 _live=no
6814 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
6815 cxx_check $I/liveMedia/include $I/UsageEnvironment/include \
6816 $I/groupsock/include && _livelibdir=$(echo $I| sed s/-I//) && \
6817 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
6818 $_livelibdir/groupsock/libgroupsock.a \
6819 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6820 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6821 $extra_ldflags -lstdc++" \
6822 extra_cxxflags="-I$_livelibdir/liveMedia/include \
6823 -I$_livelibdir/UsageEnvironment/include \
6824 -I$_livelibdir/BasicUsageEnvironment/include \
6825 -I$_livelibdir/groupsock/include" && \
6826 _live=yes && break
6827 done
6828 if test "$_live" != yes ; then
6829 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6830 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
6831 _live_dist=yes
6835 if test "$_live" = yes && test "$_network" = yes; then
6836 test $_livelibdir && _res_comment="using $_livelibdir"
6837 def_live='#define CONFIG_LIVE555 1'
6838 _inputmodules="live555 $_inputmodules"
6839 elif test "$_live_dist" = yes && test "$_network" = yes; then
6840 _res_comment="using distribution version"
6841 _live="yes"
6842 def_live='#define CONFIG_LIVE555 1'
6843 extra_ldflags="$extra_ldflags $ld_tmp"
6844 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
6845 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6846 _inputmodules="live555 $_inputmodules"
6847 else
6848 _live=no
6849 def_live='#undef CONFIG_LIVE555'
6850 _noinputmodules="live555 $_noinputmodules"
6852 echores "$_live"
6855 echocheck "FFmpeg libavutil"
6856 if test "$_libavutil" = auto ; then
6857 _libavutil=no
6858 cat > $TMPC << EOF
6859 #include <libavutil/common.h>
6860 int main(void) { av_gcd(1,1); return 0; }
6862 if $_pkg_config --exists libavutil ; then
6863 _inc_libavutil=$($_pkg_config --cflags libavutil)
6864 _ld_tmp=$($_pkg_config --libs libavutil)
6865 cc_check $_inc_libavutil $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libavutil" \
6866 && _libavutil=yes
6867 elif cc_check -lavutil $_ld_lm ; then
6868 extra_ldflags="$extra_ldflags -lavutil"
6869 _libavutil=yes
6872 def_libavutil='#undef CONFIG_LIBAVUTIL'
6873 test "$_libavutil" = yes && def_libavutil='#define CONFIG_LIBAVUTIL 1'
6874 # libavutil is not available, but it is mandatory ...
6875 if test "$_libavutil" = no ; then
6876 die "You need libavutil, MPlayer will not compile without!"
6878 echores "$_libavutil"
6880 echocheck "FFmpeg libavcodec"
6881 if test "$_libavcodec" = auto ; then
6882 _libavcodec=no
6883 cat > $TMPC << EOF
6884 #include <libavcodec/avcodec.h>
6885 int main(void) { avcodec_find_encoder_by_name(""); return 0; }
6887 if $_pkg_config --exists libavcodec ; then
6888 _inc_libavcodec=$($_pkg_config --cflags libavcodec)
6889 _ld_tmp=$($_pkg_config --libs libavcodec)
6890 cc_check $_inc_libavcodec $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavcodec" \
6891 && _libavcodec=yes
6892 elif cc_check -lavcodec $_ld_lm ; then
6893 extra_ldflags="$extra_ldflags -lavcodec"
6894 _libavcodec=yes
6897 def_libavcodec='#undef CONFIG_LIBAVCODEC'
6898 test "$_libavcodec" = yes && def_libavcodec='#define CONFIG_LIBAVCODEC 1'
6899 if test "$_libavcodec" = yes ; then
6900 _codecmodules="libavcodec $_codecmodules"
6901 else
6902 _nocodecmodules="libavcodec $_nocodecmodules"
6904 echores "$_libavcodec"
6906 echocheck "FFmpeg libavformat"
6907 if test "$_libavformat" = auto ; then
6908 _libavformat=no
6909 cat > $TMPC <<EOF
6910 #include <libavformat/avformat.h>
6911 #include <libavcodec/opt.h>
6912 int main(void) { av_alloc_format_context(); return 0; }
6914 if $_pkg_config --exists libavformat ; then
6915 _inc_libavformat=$($_pkg_config --cflags libavformat)
6916 _ld_tmp=$($_pkg_config --libs libavformat)
6917 cc_check $_inc_libavformat $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavformat" \
6918 && _libavformat=yes
6919 elif cc_check $_ld_lm -lavformat ; then
6920 extra_ldflags="$extra_ldflags -lavformat"
6921 _libavformat=yes
6924 def_libavformat='#undef CONFIG_LIBAVFORMAT'
6925 test "$_libavformat" = yes && def_libavformat='#define CONFIG_LIBAVFORMAT 1'
6926 echores "$_libavformat"
6928 echocheck "FFmpeg libpostproc"
6929 if test "$_libpostproc" = auto ; then
6930 _libpostproc=no
6931 cat > $TMPC << EOF
6932 #include <inttypes.h>
6933 #include <libpostproc/postprocess.h>
6934 int main(void) { pp_get_mode_by_name_and_quality("de", 0); return 0; }
6936 if $_pkg_config --exists libpostproc ; then
6937 _inc_libpostproc=$($_pkg_config --cflags libpostproc)
6938 _ld_tmp=$($_pkg_config --libs libpostproc)
6939 cc_check $_inc_libpostproc $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libpostproc" \
6940 && _libpostproc=yes
6941 elif cc_check -lpostproc $_ld_lm ; then
6942 extra_ldflags="$extra_ldflags -lpostproc"
6943 _libpostproc=yes
6946 def_libpostproc='#undef CONFIG_LIBPOSTPROC'
6947 test "$_libpostproc" = yes && def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
6948 echores "$_libpostproc"
6950 echocheck "FFmpeg libswscale"
6951 if test "$_libswscale" = auto ; then
6952 _libswscale=no
6953 cat > $TMPC << EOF
6954 #include <libswscale/swscale.h>
6955 int main(void) { sws_scale(0, 0, 0, 0, 0, 0, 0); return 0; }
6957 if $_pkg_config --exists libswscale ; then
6958 _inc_libswscale=$($_pkg_config --cflags libswscale)
6959 _ld_tmp=$($_pkg_config --libs libswscale)
6960 cc_check $_inc_libswscale $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libswscale" \
6961 && _libswscale=yes
6962 elif cc_check -lswscale ; then
6963 extra_ldflags="$extra_ldflags -lswscale"
6964 _libswscale=yes
6967 def_libswscale='#undef CONFIG_LIBSWSCALE'
6968 test "$_libswscale" = yes && def_libswscale='#define CONFIG_LIBSWSCALE 1'
6969 echores "$_libswscale"
6971 def_libswscale_internals="#undef CONFIG_LIBSWSCALE_INTERNALS"
6972 if ! test -z "$_ffmpeg_source" ; then
6973 test "$_libswscale" = yes && def_libswscale_internals="#define CONFIG_LIBSWSCALE_INTERNALS 1" && _libswscale_internals=yes
6976 def_libavcodec_internals="#undef CONFIG_LIBAVCODEC_INTERNALS"
6977 if ! test -z "$_ffmpeg_source" ; then
6978 test "$_libavcodec" = yes && def_libavcodec_internals="#define CONFIG_LIBAVCODEC_INTERNALS 1" && _libavcodec_internals=yes
6981 echocheck "libdv-0.9.5+"
6982 if test "$_libdv" = auto ; then
6983 _libdv=no
6984 cat > $TMPC <<EOF
6985 #include <libdv/dv.h>
6986 int main(void) { dv_encoder_t* enc=dv_encoder_new(1,1,1); return 0; }
6988 cc_check -ldv $_ld_pthread $_ld_lm && _libdv=yes
6990 if test "$_libdv" = yes ; then
6991 def_libdv='#define CONFIG_LIBDV095 1'
6992 extra_ldflags="$extra_ldflags -ldv"
6993 _codecmodules="libdv $_codecmodules"
6994 else
6995 def_libdv='#undef CONFIG_LIBDV095'
6996 _nocodecmodules="libdv $_nocodecmodules"
6998 echores "$_libdv"
7001 echocheck "Xvid"
7002 if test "$_xvid" = auto ; then
7003 _xvid=no
7004 cat > $TMPC << EOF
7005 #include <xvid.h>
7006 int main(void) { xvid_global(0, 0, 0, 0); return 0; }
7008 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
7009 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
7010 done
7013 if test "$_xvid" = yes ; then
7014 def_xvid='#define CONFIG_XVID4 1'
7015 _codecmodules="xvid $_codecmodules"
7016 else
7017 def_xvid='#undef CONFIG_XVID4'
7018 _nocodecmodules="xvid $_nocodecmodules"
7020 echores "$_xvid"
7022 echocheck "x264"
7023 if test "$_x264" = auto ; then
7024 cat > $TMPC << EOF
7025 #include <inttypes.h>
7026 #include <x264.h>
7027 #if X264_BUILD < 79
7028 #error We do not support old versions of x264. Get the latest from git.
7029 #endif
7030 int main(void) { x264_encoder_open((void*)0); return 0; }
7032 _x264=no
7033 for _ld_x264 in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
7034 cc_check $_ld_x264 && libs_mencoder="$libs_mencoder $_ld_x264" && _x264=yes && break
7035 done
7038 if test "$_x264" = yes ; then
7039 def_x264='#define CONFIG_X264 1'
7040 _codecmodules="x264 $_codecmodules"
7041 else
7042 def_x264='#undef CONFIG_X264'
7043 _nocodecmodules="x264 $_nocodecmodules"
7045 echores "$_x264"
7047 echocheck "libnut"
7048 if test "$_libnut" = auto ; then
7049 cat > $TMPC << EOF
7050 #include <stdio.h>
7051 #include <stdlib.h>
7052 #include <inttypes.h>
7053 #include <libnut.h>
7054 nut_context_tt * nut;
7055 int main(void) { (void)nut_error(0); return 0; }
7057 _libnut=no
7058 cc_check -lnut && _libnut=yes
7061 if test "$_libnut" = yes ; then
7062 def_libnut='#define CONFIG_LIBNUT 1'
7063 extra_ldflags="$extra_ldflags -lnut"
7064 else
7065 def_libnut='#undef CONFIG_LIBNUT'
7067 echores "$_libnut"
7069 # These VO checks must be done after libavcodec/libswscale one
7070 echocheck "/dev/mga_vid"
7071 if test "$_mga" = auto ; then
7072 _mga=no
7073 test -c /dev/mga_vid && _mga=yes
7075 if test "$_mga" = yes ; then
7076 if test "$_libswscale_internals" = yes ; then
7077 def_mga='#define CONFIG_MGA 1'
7078 _vomodules="mga $_vomodules"
7079 else
7080 _res_comment="libswscale internal headers are required by mga, sorry"
7081 def_mga='#undef CONFIG_MGA'
7082 _novomodules="mga $_novomodules"
7084 else
7085 def_mga='#undef CONFIG_MGA'
7086 _novomodules="mga $_novomodules"
7088 echores "$_mga"
7091 echocheck "xmga"
7092 if test "$_xmga" = auto ; then
7093 _xmga=no
7094 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
7096 if test "$_xmga" = yes ; then
7097 if test "$_libswscale_internals" = yes ; then
7098 def_xmga='#define CONFIG_XMGA 1'
7099 _vomodules="xmga $_vomodules"
7100 else
7101 _res_comment="libswscale internal headers are required by mga, sorry"
7102 def_xmga='#undef CONFIG_XMGA'
7103 _novomodules="xmga $_novomodules"
7105 else
7106 def_xmga='#undef CONFIG_XMGA'
7107 _novomodules="xmga $_novomodules"
7109 echores "$_xmga"
7111 echocheck "zr"
7112 if test "$_zr" = auto ; then
7113 #36067's seem to identify themselves as 36057PQC's, so the line
7114 #below should work for 36067's and 36057's.
7115 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc/pci ; then
7116 _zr=yes
7117 else
7118 _zr=no
7121 if test "$_zr" = yes ; then
7122 if test "$_libavcodec_internals" = yes ; then
7123 def_zr='#define CONFIG_ZR 1'
7124 _vomodules="zr zr2 $_vomodules"
7125 else
7126 _res_comment="libavcodec internal headers are required by zr, sorry"
7127 _novomodules="zr $_novomodules"
7128 def_zr='#undef CONFIG_ZR'
7130 else
7131 def_zr='#undef CONFIG_ZR'
7132 _novomodules="zr zr2 $_novomodules"
7134 echores "$_zr"
7136 # mencoder requires (optional) those libs: libmp3lame
7137 if test "$_mencoder" != no ; then
7139 echocheck "libmp3lame"
7140 def_mp3lame_preset='#undef CONFIG_MP3LAME_PRESET'
7141 def_mp3lame_preset_medium='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
7142 if test "$_mp3lame" = auto ; then
7143 _mp3lame=no
7144 cat > $TMPC <<EOF
7145 #include <lame/lame.h>
7146 int main(void) { lame_version_t lv; (void) lame_init();
7147 get_lame_version_numerical(&lv);
7148 return 0; }
7150 cc_check -lmp3lame $_ld_lm && _mp3lame=yes
7152 if test "$_mp3lame" = yes ; then
7153 def_mp3lame="#define CONFIG_MP3LAME 1"
7154 _ld_mp3lame=-lmp3lame
7155 libs_mencoder="$libs_mencoder $_ld_mp3lame"
7156 cat > $TMPC << EOF
7157 #include <lame/lame.h>
7158 int main(void) { lame_set_preset(NULL, STANDARD_FAST); return 0; }
7160 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset="#define CONFIG_MP3LAME_PRESET 1"
7161 cat > $TMPC << EOF
7162 #include <lame/lame.h>
7163 int main(void) { lame_set_preset(NULL, MEDIUM_FAST); return 0; }
7165 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset_medium="#define CONFIG_MP3LAME_PRESET_MEDIUM 1"
7166 else
7167 def_mp3lame='#undef CONFIG_MP3LAME'
7169 echores "$_mp3lame"
7171 fi # test "$_mencoder" != no
7173 echocheck "mencoder"
7174 if test "$_mencoder" = yes ; then
7175 def_muxers='#define CONFIG_MUXERS 1'
7176 else
7177 def_muxers='#define CONFIG_MUXERS 0'
7179 echores "$_mencoder"
7182 echocheck "UnRAR executable"
7183 if test "$_unrar_exec" = auto ; then
7184 _unrar_exec="yes"
7185 mingw32 && _unrar_exec="no"
7187 if test "$_unrar_exec" = yes ; then
7188 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
7189 else
7190 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
7192 echores "$_unrar_exec"
7194 echocheck "TV interface"
7195 if test "$_tv" = yes ; then
7196 def_tv='#define CONFIG_TV 1'
7197 _inputmodules="tv $_inputmodules"
7198 else
7199 _noinputmodules="tv $_noinputmodules"
7200 def_tv='#undef CONFIG_TV'
7202 echores "$_tv"
7205 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
7206 echocheck "*BSD BT848 bt8xx header"
7207 _ioctl_bt848_h=no
7208 for file in "machine/ioctl_bt848.h" \
7209 "dev/bktr/ioctl_bt848.h" \
7210 "dev/video/bktr/ioctl_bt848.h" \
7211 "dev/ic/bt8xx.h" ; do
7212 cat > $TMPC <<EOF
7213 #include <sys/types.h>
7214 #include <sys/ioctl.h>
7215 #include <$file>
7216 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
7218 if cc_check ; then
7219 _ioctl_bt848_h=yes
7220 _ioctl_bt848_h_name="$file"
7221 break;
7223 done
7224 if test "$_ioctl_bt848_h" = yes ; then
7225 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
7226 _res_comment="using $_ioctl_bt848_h_name"
7227 else
7228 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
7230 echores "$_ioctl_bt848_h"
7232 echocheck "*BSD ioctl_meteor.h"
7233 _ioctl_meteor_h=no
7234 for file in "machine/ioctl_meteor.h" \
7235 "dev/bktr/ioctl_meteor.h" \
7236 "dev/video/bktr/ioctl_meteor.h" ; do
7237 cat > $TMPC <<EOF
7238 #include <sys/types.h>
7239 #include <$file>
7240 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
7242 if cc_check ; then
7243 _ioctl_meteor_h=yes
7244 _ioctl_meteor_h_name="$file"
7245 break;
7247 done
7248 if test "$_ioctl_meteor_h" = yes ; then
7249 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
7250 _res_comment="using $_ioctl_meteor_h_name"
7251 else
7252 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
7254 echores "$_ioctl_meteor_h"
7256 echocheck "*BSD BrookTree 848 TV interface"
7257 if test "$_tv_bsdbt848" = auto ; then
7258 _tv_bsdbt848=no
7259 if test "$_tv" = yes ; then
7260 cat > $TMPC <<EOF
7261 #include <sys/types.h>
7262 $def_ioctl_meteor_h_name
7263 $def_ioctl_bt848_h_name
7264 #ifdef IOCTL_METEOR_H_NAME
7265 #include IOCTL_METEOR_H_NAME
7266 #endif
7267 #ifdef IOCTL_BT848_H_NAME
7268 #include IOCTL_BT848_H_NAME
7269 #endif
7270 int main(void) {
7271 ioctl(0, METEORSINPUT, 0);
7272 ioctl(0, TVTUNER_GETFREQ, 0);
7273 return 0;
7276 cc_check && _tv_bsdbt848=yes
7279 if test "$_tv_bsdbt848" = yes ; then
7280 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
7281 _inputmodules="tv-bsdbt848 $_inputmodules"
7282 else
7283 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
7284 _noinputmodules="tv-bsdbt848 $_noinputmodules"
7286 echores "$_tv_bsdbt848"
7287 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
7290 echocheck "DirectShow TV interface"
7291 if test "$_tv_dshow" = auto ; then
7292 _tv_dshow=no
7293 if test "$_tv" = yes && win32 ; then
7294 cat > $TMPC <<EOF
7295 #include <ole2.h>
7296 int main(void) {
7297 void* p;
7298 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
7299 return 0;
7302 cc_check -lole32 -luuid && _tv_dshow=yes
7305 if test "$_tv_dshow" = yes ; then
7306 _inputmodules="tv-dshow $_inputmodules"
7307 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
7308 extra_ldflags="$extra_ldflags -lole32 -luuid"
7309 else
7310 _noinputmodules="tv-dshow $_noinputmodules"
7311 def_tv_dshow='#undef CONFIG_TV_DSHOW'
7313 echores "$_tv_dshow"
7316 echocheck "Video 4 Linux TV interface"
7317 if test "$_tv_v4l1" = auto ; then
7318 _tv_v4l1=no
7319 if test "$_tv" = yes && linux ; then
7320 cat > $TMPC <<EOF
7321 #include <stdlib.h>
7322 #include <linux/videodev.h>
7323 int main(void) { return 0; }
7325 cc_check && _tv_v4l1=yes
7328 if test "$_tv_v4l1" = yes ; then
7329 _audio_input=yes
7330 _tv_v4l=yes
7331 def_tv_v4l='#define CONFIG_TV_V4L 1'
7332 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
7333 _inputmodules="tv-v4l $_inputmodules"
7334 else
7335 _noinputmodules="tv-v4l1 $_noinputmodules"
7336 def_tv_v4l='#undef CONFIG_TV_V4L'
7338 echores "$_tv_v4l1"
7341 echocheck "Video 4 Linux 2 TV interface"
7342 if test "$_tv_v4l2" = auto ; then
7343 _tv_v4l2=no
7344 if test "$_tv" = yes && linux ; then
7345 cat > $TMPC <<EOF
7346 #include <stdlib.h>
7347 #include <linux/types.h>
7348 #include <linux/videodev2.h>
7349 int main(void) { return 0; }
7351 cc_check && _tv_v4l2=yes
7354 if test "$_tv_v4l2" = yes ; then
7355 _audio_input=yes
7356 _tv_v4l=yes
7357 def_tv_v4l='#define CONFIG_TV_V4L 1'
7358 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
7359 _inputmodules="tv-v4l2 $_inputmodules"
7360 else
7361 _noinputmodules="tv-v4l2 $_noinputmodules"
7362 def_tv_v4l2='#undef CONFIG_TV_V4L2'
7364 echores "$_tv_v4l2"
7367 echocheck "Radio interface"
7368 if test "$_radio" = yes ; then
7369 def_radio='#define CONFIG_RADIO 1'
7370 _inputmodules="radio $_inputmodules"
7371 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
7372 _radio_capture=no
7374 if test "$_radio_capture" = yes ; then
7375 _audio_input=yes
7376 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
7377 else
7378 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7380 else
7381 _noinputmodules="radio $_noinputmodules"
7382 def_radio='#undef CONFIG_RADIO'
7383 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7384 _radio_capture=no
7386 echores "$_radio"
7387 echocheck "Capture for Radio interface"
7388 echores "$_radio_capture"
7390 echocheck "Video 4 Linux 2 Radio interface"
7391 if test "$_radio_v4l2" = auto ; then
7392 _radio_v4l2=no
7393 if test "$_radio" = yes && linux ; then
7394 cat > $TMPC <<EOF
7395 #include <stdlib.h>
7396 #include <linux/types.h>
7397 #include <linux/videodev2.h>
7398 int main(void) { return 0; }
7400 cc_check && _radio_v4l2=yes
7403 if test "$_radio_v4l2" = yes ; then
7404 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
7405 else
7406 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
7408 echores "$_radio_v4l2"
7410 echocheck "Video 4 Linux Radio interface"
7411 if test "$_radio_v4l" = auto ; then
7412 _radio_v4l=no
7413 if test "$_radio" = yes && linux ; then
7414 cat > $TMPC <<EOF
7415 #include <stdlib.h>
7416 #include <linux/videodev.h>
7417 int main(void) { return 0; }
7419 cc_check && _radio_v4l=yes
7422 if test "$_radio_v4l" = yes ; then
7423 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
7424 else
7425 def_radio_v4l='#undef CONFIG_RADIO_V4L'
7427 echores "$_radio_v4l"
7429 if freebsd || netbsd || openbsd || dragonfly || bsdos \
7430 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
7431 echocheck "*BSD BrookTree 848 Radio interface"
7432 _radio_bsdbt848=no
7433 cat > $TMPC <<EOF
7434 #include <sys/types.h>
7435 $def_ioctl_bt848_h_name
7436 #ifdef IOCTL_BT848_H_NAME
7437 #include IOCTL_BT848_H_NAME
7438 #endif
7439 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
7441 cc_check && _radio_bsdbt848=yes
7442 echores "$_radio_bsdbt848"
7443 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
7445 if test "$_radio_bsdbt848" = yes ; then
7446 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
7447 else
7448 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
7451 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no && \
7452 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
7453 die "Radio driver requires BSD BT848, V4L or V4L2!"
7456 echocheck "Video 4 Linux 2 MPEG PVR interface"
7457 if test "$_pvr" = auto ; then
7458 _pvr=no
7459 if test "$_tv_v4l2" = yes && linux ; then
7460 cat > $TMPC <<EOF
7461 #include <stdlib.h>
7462 #include <inttypes.h>
7463 #include <linux/types.h>
7464 #include <linux/videodev2.h>
7465 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
7467 cc_check && _pvr=yes
7470 if test "$_pvr" = yes ; then
7471 def_pvr='#define CONFIG_PVR 1'
7472 _inputmodules="pvr $_inputmodules"
7473 else
7474 _noinputmodules="pvr $_noinputmodules"
7475 def_pvr='#undef CONFIG_PVR'
7477 echores "$_pvr"
7480 echocheck "ftp"
7481 if ! beos && test "$_ftp" = yes ; then
7482 def_ftp='#define CONFIG_FTP 1'
7483 _inputmodules="ftp $_inputmodules"
7484 else
7485 _noinputmodules="ftp $_noinputmodules"
7486 def_ftp='#undef CONFIG_FTP'
7488 echores "$_ftp"
7490 echocheck "vstream client"
7491 if test "$_vstream" = auto ; then
7492 _vstream=no
7493 cat > $TMPC <<EOF
7494 #include <vstream-client.h>
7495 void vstream_error(const char *format, ... ) {}
7496 int main(void) { vstream_start(); return 0; }
7498 cc_check -lvstream-client && _vstream=yes
7500 if test "$_vstream" = yes ; then
7501 def_vstream='#define CONFIG_VSTREAM 1'
7502 _inputmodules="vstream $_inputmodules"
7503 extra_ldflags="$extra_ldflags -lvstream-client"
7504 else
7505 _noinputmodules="vstream $_noinputmodules"
7506 def_vstream='#undef CONFIG_VSTREAM'
7508 echores "$_vstream"
7511 echocheck "OSD menu"
7512 if test "$_menu" = yes ; then
7513 def_menu='#define CONFIG_MENU 1'
7514 test $_dvbin = "yes" && _menu_dvbin=yes
7515 else
7516 def_menu='#undef CONFIG_MENU'
7517 _menu_dvbin=no
7519 echores "$_menu"
7522 echocheck "Subtitles sorting"
7523 if test "$_sortsub" = yes ; then
7524 def_sortsub='#define CONFIG_SORTSUB 1'
7525 else
7526 def_sortsub='#undef CONFIG_SORTSUB'
7528 echores "$_sortsub"
7531 echocheck "XMMS inputplugin support"
7532 if test "$_xmms" = yes ; then
7533 if ( xmms-config --version ) >/dev/null 2>&1 ; then
7534 _xmmsplugindir=$(xmms-config --input-plugin-dir)
7535 _xmmslibdir=$(xmms-config --exec-prefix)/lib
7536 else
7537 _xmmsplugindir=/usr/lib/xmms/Input
7538 _xmmslibdir=/usr/lib
7541 def_xmms='#define CONFIG_XMMS 1'
7542 if darwin ; then
7543 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
7544 else
7545 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
7547 else
7548 def_xmms='#undef CONFIG_XMMS'
7550 echores "$_xmms"
7552 if test "$_charset" != "noconv" ; then
7553 def_charset="#define MSG_CHARSET \"$_charset\""
7554 else
7555 def_charset="#undef MSG_CHARSET"
7556 _charset="UTF-8"
7559 if test -n "$_charset" && test "$_charset" != "UTF-8" ; then
7560 echocheck "iconv program"
7561 iconv -f UTF-8 -t $_charset ${_mp_help} > /dev/null 2>> "$TMPLOG"
7562 if test "$?" -ne 0 ; then
7563 echores "no"
7564 echo "No working iconv program found, use "
7565 echo "--charset=UTF-8 to continue anyway."
7566 echo "If you also have problems with iconv library functions use --charset=noconv."
7567 exit 1
7568 else
7569 echores "yes"
7573 #############################################################################
7575 echocheck "automatic gdb attach"
7576 if test "$_crash_debug" = yes ; then
7577 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
7578 else
7579 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
7580 _crash_debug=no
7582 echores "$_crash_debug"
7584 echocheck "compiler support for noexecstack"
7585 cat > $TMPC <<EOF
7586 int main(void) { return 0; }
7588 if cc_check -Wl,-z,noexecstack ; then
7589 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
7590 echores "yes"
7591 else
7592 echores "no"
7596 # Dynamic linking flags
7597 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
7598 _ld_dl_dynamic=''
7599 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
7600 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
7601 _ld_dl_dynamic='-rdynamic'
7604 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
7605 bsdos && extra_ldflags="$extra_ldflags -ldvd"
7606 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
7608 def_debug='#undef MP_DEBUG'
7609 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
7612 echocheck "joystick"
7613 def_joystick='#undef CONFIG_JOYSTICK'
7614 if test "$_joystick" = yes ; then
7615 if linux ; then
7616 # TODO add some check
7617 def_joystick='#define CONFIG_JOYSTICK 1'
7618 else
7619 _joystick="no"
7620 _res_comment="unsupported under $system_name"
7623 echores "$_joystick"
7625 echocheck "lirc"
7626 if test "$_lirc" = auto ; then
7627 _lirc=no
7628 cat > $TMPC <<EOF
7629 #include <lirc/lirc_client.h>
7630 int main(void) { return 0; }
7632 cc_check -llirc_client && _lirc=yes
7634 if test "$_lirc" = yes ; then
7635 def_lirc='#define CONFIG_LIRC 1'
7636 libs_mplayer="$libs_mplayer -llirc_client"
7637 else
7638 def_lirc='#undef CONFIG_LIRC'
7640 echores "$_lirc"
7642 echocheck "lircc"
7643 if test "$_lircc" = auto ; then
7644 _lircc=no
7645 cat > $TMPC <<EOF
7646 #include <lirc/lircc.h>
7647 int main(void) { return 0; }
7649 cc_check -llircc && _lircc=yes
7651 if test "$_lircc" = yes ; then
7652 def_lircc='#define CONFIG_LIRCC 1'
7653 libs_mplayer="$libs_mplayer -llircc"
7654 else
7655 def_lircc='#undef CONFIG_LIRCC'
7657 echores "$_lircc"
7659 if arm; then
7660 # Detect maemo development platform libraries availability (http://www.maemo.org),
7661 # they are used when run on Nokia 770|8x0
7662 echocheck "maemo (Nokia 770|8x0)"
7663 if test "$_maemo" = auto ; then
7664 _maemo=no
7665 cat > $TMPC << EOF
7666 #include <libosso.h>
7667 int main(void) { (void) osso_initialize("", "", 0, NULL); return 0; }
7669 cc_check $($_pkg_config --cflags --libs libosso 2>/dev/null) && _maemo=yes
7671 if test "$_maemo" = yes ; then
7672 def_maemo='#define CONFIG_MAEMO 1'
7673 extra_cflags="$extra_cflags $($_pkg_config --cflags libosso)"
7674 extra_ldflags="$extra_ldflags $($_pkg_config --libs libosso) -lXsp"
7675 else
7676 def_maemo='#undef CONFIG_MAEMO'
7678 echores "$_maemo"
7681 #############################################################################
7683 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
7684 # the OMF format needs to come after the 'extern symbol prefix' check, which
7685 # uses nm.
7686 if os2 ; then
7687 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
7690 # linker paths should be the same for mencoder and mplayer
7691 _ld_tmp=""
7692 for I in $libs_mplayer ; do
7693 _tmp=$(echo $I | sed -e 's/^-L.*$//')
7694 if test -z "$_tmp" ; then
7695 extra_ldflags="$extra_ldflags $I"
7696 else
7697 _ld_tmp="$_ld_tmp $I"
7699 done
7700 libs_mplayer=$_ld_tmp
7703 #############################################################################
7704 # 64 bit file offsets?
7705 if test "$_largefiles" = yes || freebsd ; then
7706 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
7707 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
7708 # dvdread support requires this (for off64_t)
7709 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
7713 CXXFLAGS=" $CFLAGS -Iffmpeg -D__STDC_LIMIT_MACROS"
7715 # This must be the last test to be performed. Any other tests following it
7716 # could fail due to linker errors. libdvdnavmini is intentionally not linked
7717 # against libdvdread (to permit MPlayer to use its own copy of the library).
7718 # So any compilation using the flags added here but not linking against
7719 # libdvdread can fail.
7720 echocheck "DVD support (libdvdnav)"
7721 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
7722 _dvdnav=no
7724 dvdnav_internal=no
7725 if test "$_dvdnav" = auto ; then
7726 if test "$_dvdread_internal" = yes ; then
7727 _dvdnav=yes
7728 dvdnav_internal=yes
7729 _res_comment="internal"
7730 else
7731 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
7734 if test "$_dvdnav" = auto ; then
7735 cat > $TMPC <<EOF
7736 #include <inttypes.h>
7737 #include <dvdnav/dvdnav.h>
7738 int main(void) { dvdnav_t *dvd=0; return 0; }
7740 _dvdnav=no
7741 _dvdnavdir=$($_dvdnavconfig --cflags)
7742 _dvdnavlibs=$($_dvdnavconfig --libs)
7743 cc_check $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
7745 if test "$_dvdnav" = yes ; then
7746 _largefiles=yes
7747 def_dvdnav='#define CONFIG_DVDNAV 1'
7748 if test "$dvdnav_internal" = yes ; then
7749 cflags_libdvdnav="-Ilibdvdnav"
7750 _inputmodules="dvdnav(internal) $_inputmodules"
7751 else
7752 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
7753 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
7754 _inputmodules="dvdnav $_inputmodules"
7756 else
7757 def_dvdnav='#undef CONFIG_DVDNAV'
7758 _noinputmodules="dvdnav $_noinputmodules"
7760 echores "$_dvdnav"
7762 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
7763 # Read dvdnav comment above.
7765 #############################################################################
7766 echo "Creating config.mak"
7767 cat > config.mak << EOF
7768 # -------- Generated by configure -----------
7770 # Ensure that locale settings do not interfere with shell commands.
7771 export LC_ALL = C
7773 CONFIGURATION = $_configuration
7775 CHARSET = $_charset
7776 DOC_LANGS = $language_doc
7777 DOC_LANG_ALL = $doc_lang_all
7778 MAN_LANGS = $language_man
7779 MAN_LANG_ALL = $man_lang_all
7781 prefix = \$(DESTDIR)$_prefix
7782 BINDIR = \$(DESTDIR)$_bindir
7783 DATADIR = \$(DESTDIR)$_datadir
7784 LIBDIR = \$(DESTDIR)$_libdir
7785 MANDIR = \$(DESTDIR)$_mandir
7786 CONFDIR = \$(DESTDIR)$_confdir
7788 AR = $_ar
7789 AS = $_cc
7790 CC = $_cc
7791 CXX = $_cc
7792 HOST_CC = $_host_cc
7793 YASM = $_yasm
7794 INSTALL = $_install
7795 INSTALLSTRIP = $_install_strip
7796 RANLIB = $_ranlib
7797 WINDRES = $_windres
7799 CFLAGS = $CFLAGS $extra_cflags
7800 CXXFLAGS = $CXXFLAGS $extra_cflags $extra_cxxflags
7801 CFLAGS_DHAHELPER = $cflags_dhahelper
7802 CFLAGS_FAAD_FIXED = $cflags_faad_fixed
7803 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
7804 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
7805 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
7806 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
7807 CFLAGS_STACKREALIGN = $cflags_stackrealign
7808 CFLAGS_SVGALIB_HELPER = $cflags_svgalib_helper
7809 CFLAGS_TREMOR_LOW = $cflags_tremor_low
7810 YASMFLAGS = $YASMFLAGS
7812 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
7813 EXTRALIBS_MPLAYER = $libs_mplayer
7814 EXTRALIBS_MENCODER = $libs_mencoder
7816 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 &,"
7817 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 &,"
7819 GETCH = $_getch
7820 HELP_FILE = $_mp_help
7821 TIMER = $_timer
7823 EXESUF = $_exesuf
7824 EXESUFS_ALL = .exe
7826 $_target_arch
7827 $_target_subarch
7828 $(echo $_cpuexts | tr '[a-z] ' '[A-Z]\n' | sed 's/^/HAVE_/;s/$/=yes/')
7830 MENCODER = $_mencoder
7831 MPLAYER = $_mplayer
7833 NEED_GETTIMEOFDAY = $_need_gettimeofday
7834 NEED_GLOB = $_need_glob
7835 NEED_MMAP = $_need_mmap
7836 NEED_SETENV = $_need_setenv
7837 NEED_SHMEM = $_need_shmem
7838 NEED_STRSEP = $_need_strsep
7839 NEED_SWAB = $_need_swab
7840 NEED_VSSCANF = $_need_vsscanf
7842 # features
7843 3DFX = $_3dfx
7844 AA = $_aa
7845 ALSA1X = $_alsa1x
7846 ALSA9 = $_alsa9
7847 ALSA5 = $_alsa5
7848 APPLE_IR = $_apple_ir
7849 APPLE_REMOTE = $_apple_remote
7850 ARTS = $_arts
7851 AUDIO_INPUT = $_audio_input
7852 BITMAP_FONT = $_bitmap_font
7853 BL = $_bl
7854 CACA = $_caca
7855 CDDA = $_cdda
7856 CDDB = $_cddb
7857 COREAUDIO = $_coreaudio
7858 COREVIDEO = $_corevideo
7859 DART = $_dart
7860 DFBMGA = $_dfbmga
7861 DGA = $_dga
7862 DIRECT3D = $_direct3d
7863 DIRECTFB = $_directfb
7864 DIRECTX = $_directx
7865 DVBIN = $_dvbin
7866 DVDNAV = $_dvdnav
7867 DVDNAV_INTERNAL = $dvdnav_internal
7868 DVDREAD = $_dvdread
7869 DVDREAD_INTERNAL = $_dvdread_internal
7870 DXR2 = $_dxr2
7871 DXR3 = $_dxr3
7872 ESD = $_esd
7873 FAAC=$_faac
7874 FAAD = $_faad
7875 FAAD_INTERNAL = $_faad_internal
7876 FASTMEMCPY = $_fastmemcpy
7877 FBDEV = $_fbdev
7878 FREETYPE = $_freetype
7879 FTP = $_ftp
7880 GIF = $_gif
7881 GGI = $_ggi
7882 GL = $_gl
7883 GL_WIN32 = $_gl_win32
7884 GL_X11 = $_gl_x11
7885 MATRIXVIEW = $matrixview
7886 HAVE_POSIX_SELECT = $_posix_select
7887 HAVE_SYS_MMAN_H = $_mman
7888 IVTV = $_ivtv
7889 JACK = $_jack
7890 JOYSTICK = $_joystick
7891 JPEG = $_jpeg
7892 KVA = $_kva
7893 LADSPA = $_ladspa
7894 LIBA52 = $_liba52
7895 LIBA52_INTERNAL = $_liba52_internal
7896 LIBASS = $_ass
7897 LIBBS2B = $_libbs2b
7898 LIBDCA = $_libdca
7899 LIBDV = $_libdv
7900 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
7901 LIBLZO = $_liblzo
7902 LIBMAD = $_mad
7903 LIBMENU = $_menu
7904 LIBMENU_DVBIN = $_menu_dvbin
7905 LIBMPEG2 = $_libmpeg2
7906 LIBNEMESI = $_nemesi
7907 LIBNUT = $_libnut
7908 LIBSMBCLIENT = $_smb
7909 LIBTHEORA = $_theora
7910 LIRC = $_lirc
7911 LIVE555 = $_live
7912 MACOSX_BUNDLE = $_macosx_bundle
7913 MACOSX_FINDER = $_macosx_finder
7914 MD5SUM = $_md5sum
7915 MGA = $_mga
7916 MNG = $_mng
7917 MP3LAME = $_mp3lame
7918 MP3LIB = $_mp3lib
7919 MUSEPACK = $_musepack
7920 NAS = $_nas
7921 NATIVE_RTSP = $_native_rtsp
7922 NETWORK = $_network
7923 OPENAL = $_openal
7924 OSS = $_ossaudio
7925 PE_EXECUTABLE = $_pe_executable
7926 PNG = $_png
7927 PNM = $_pnm
7928 PRIORITY = $_priority
7929 PULSE = $_pulse
7930 PVR = $_pvr
7931 QTX_CODECS = $_qtx
7932 QTX_CODECS_WIN32 = $_qtx_codecs_win32
7933 QTX_EMULATION = $_qtx_emulation
7934 QUARTZ = $_quartz
7935 RADIO=$_radio
7936 RADIO_CAPTURE=$_radio_capture
7937 REAL_CODECS = $_real
7938 S3FB = $_s3fb
7939 SDL = $_sdl
7940 SPEEX = $_speex
7941 STREAM_CACHE = $_stream_cache
7942 SGIAUDIO = $_sgiaudio
7943 SUNAUDIO = $_sunaudio
7944 SVGA = $_svga
7945 TDFXFB = $_tdfxfb
7946 TDFXVID = $_tdfxvid
7947 TGA = $_tga
7948 TOOLAME=$_toolame
7949 TREMOR_INTERNAL = $_tremor_internal
7950 TV = $_tv
7951 TV_BSDBT848 = $_tv_bsdbt848
7952 TV_DSHOW = $_tv_dshow
7953 TV_V4L = $_tv_v4l
7954 TV_V4L1 = $_tv_v4l1
7955 TV_V4L2 = $_tv_v4l2
7956 TWOLAME=$_twolame
7957 UNRAR_EXEC = $_unrar_exec
7958 V4L2 = $_v4l2
7959 VCD = $_vcd
7960 VDPAU = $_vdpau
7961 VESA = $_vesa
7962 VIDIX = $_vidix
7963 VIDIX_PCIDB = $_vidix_pcidb_val
7964 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
7965 VIDIX_IVTV=$_vidix_drv_ivtv
7966 VIDIX_MACH64=$_vidix_drv_mach64
7967 VIDIX_MGA=$_vidix_drv_mga
7968 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
7969 VIDIX_NVIDIA=$_vidix_drv_nvidia
7970 VIDIX_PM2=$_vidix_drv_pm2
7971 VIDIX_PM3=$_vidix_drv_pm3
7972 VIDIX_RADEON=$_vidix_drv_radeon
7973 VIDIX_RAGE128=$_vidix_drv_rage128
7974 VIDIX_S3=$_vidix_drv_s3
7975 VIDIX_SH_VEU=$_vidix_drv_sh_veu
7976 VIDIX_SIS=$_vidix_drv_sis
7977 VIDIX_UNICHROME=$_vidix_drv_unichrome
7978 VORBIS = $_vorbis
7979 VSTREAM = $_vstream
7980 WII = $_wii
7981 WIN32DLL = $_win32dll
7982 WIN32WAVEOUT = $_win32waveout
7983 WIN32_EMULATION = $_win32_emulation
7984 WINVIDIX = $winvidix
7985 X11 = $_x11
7986 X264 = $_x264
7987 XANIM_CODECS = $_xanim
7988 XMGA = $_xmga
7989 XMMS_PLUGINS = $_xmms
7990 XV = $_xv
7991 XVID4 = $_xvid
7992 XVIDIX = $xvidix
7993 XVMC = $_xvmc
7994 XVR100 = $_xvr100
7995 YUV4MPEG = $_yuv4mpeg
7996 ZR = $_zr
7998 # FFmpeg
7999 LIBAVUTIL = $_libavutil
8000 LIBAVCODEC = $_libavcodec
8001 LIBAVFORMAT = $_libavformat
8002 LIBPOSTPROC = $_libpostproc
8003 LIBSWSCALE = $_libswscale
8004 LIBAVCODEC_INTERNALS = $_libavcodec_internals
8005 LIBSWSCALE_INTERNALS = $_libswscale_internals
8006 FFMPEG_SOURCE_PATH = $_ffmpeg_source
8008 # Some FFmpeg codecs depend on these. Enable them unconditionally for now.
8009 CONFIG_AANDCT=yes
8010 CONFIG_FFT=yes
8011 CONFIG_FFT_MMX=$fft_mmx
8012 CONFIG_GOLOMB=yes
8013 CONFIG_LPC=yes
8014 CONFIG_MDCT=yes
8015 CONFIG_RDFT=yes
8017 CONFIG_BZLIB=$bzlib
8018 CONFIG_ENCODERS=yes
8019 CONFIG_GPL=yes
8020 CONFIG_MLIB = $_mlib
8021 CONFIG_MUXERS=$_mencoder
8022 CONFIG_VDPAU=$_vdpau
8023 CONFIG_XVMC=$_xvmc
8024 CONFIG_ZLIB=$_zlib
8026 HAVE_PTHREADS = $_pthreads
8027 HAVE_SHM = $_shm
8028 HAVE_W32THREADS = $_w32threads
8029 HAVE_YASM = $_have_yasm
8033 #############################################################################
8035 ff_config_enable () {
8036 _nprefix=$3;
8037 test -z "$_nprefix" && _nprefix='CONFIG'
8038 for part in $1; do
8039 if $(echo $2 | grep -q -E "(^| )$part($| )"); then
8040 echo "#define ${_nprefix}_$part 1"
8041 else
8042 echo "#define ${_nprefix}_$part 0"
8044 done
8047 echo "Creating config.h"
8048 cat > $TMPH << EOF
8049 /*----------------------------------------------------------------------------
8050 ** This file has been automatically generated by configure any changes in it
8051 ** will be lost when you run configure again.
8052 ** Instead of modifying definitions here, use the --enable/--disable options
8053 ** of the configure script! See ./configure --help for details.
8054 *---------------------------------------------------------------------------*/
8056 #ifndef MPLAYER_CONFIG_H
8057 #define MPLAYER_CONFIG_H
8059 /* Undefine this if you do not want to select mono audio (left or right)
8060 with a stereo MPEG layer 2/3 audio stream. The command line option
8061 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
8062 right-only), with 0 being the default.
8064 #define CONFIG_FAKE_MONO 1
8066 /* set up audio OUTBURST. Do not change this! */
8067 #define OUTBURST 512
8069 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
8070 #undef FAST_OSD
8071 #undef FAST_OSD_TABLE
8073 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
8074 #define MPEG12_POSTPROC 1
8075 #define ATTRIBUTE_ALIGNED_MAX 16
8079 #define CONFIGURATION "$_configuration"
8081 #define MPLAYER_DATADIR "$_datadir"
8082 #define MPLAYER_CONFDIR "$_confdir"
8083 #define MPLAYER_LIBDIR "$_libdir"
8085 /* definitions needed by included libraries */
8086 #define HAVE_INTTYPES_H 1
8087 /* libmpeg2 + FFmpeg */
8088 $def_fast_inttypes
8089 /* libdvdcss */
8090 #define HAVE_ERRNO_H 1
8091 /* libdvdcss + libdvdread */
8092 #define HAVE_LIMITS_H 1
8093 /* libdvdcss + libfaad2 */
8094 #define HAVE_UNISTD_H 1
8095 /* libfaad2 + libdvdread */
8096 #define STDC_HEADERS 1
8097 #define HAVE_MEMCPY 1
8098 /* libfaad2 */
8099 #define HAVE_STRING_H 1
8100 #define HAVE_STRINGS_H 1
8101 #define HAVE_SYS_STAT_H 1
8102 #define HAVE_SYS_TYPES_H 1
8103 /* libdvdnav */
8104 #define READ_CACHE_TRACE 0
8105 /* libdvdread */
8106 #define HAVE_DLFCN_H 1
8107 $def_dvdcss
8110 /* system headers */
8111 $def_alloca_h
8112 $def_alsa_asoundlib_h
8113 $def_altivec_h
8114 $def_malloc_h
8115 $def_mman_h
8116 $def_mman_has_map_failed
8117 $def_soundcard_h
8118 $def_sys_asoundlib_h
8119 $def_sys_soundcard_h
8120 $def_sys_sysinfo_h
8121 $def_termios_h
8122 $def_termios_sys_h
8123 $def_winsock2_h
8126 /* system functions */
8127 $def_gethostbyname2
8128 $def_gettimeofday
8129 $def_glob
8130 $def_langinfo
8131 $def_llrint
8132 $def_log2
8133 $def_lrint
8134 $def_lrintf
8135 $def_map_memalign
8136 $def_memalign
8137 $def_nanosleep
8138 $def_posix_select
8139 $def_round
8140 $def_roundf
8141 $def_select
8142 $def_setenv
8143 $def_shm
8144 $def_strsep
8145 $def_swab
8146 $def_sysi86
8147 $def_sysi86_iv
8148 $def_termcap
8149 $def_termios
8150 $def_truncf
8151 $def_vsscanf
8154 /* system-specific features */
8155 $def_asmalign_pot
8156 $def_builtin_expect
8157 $def_dl
8158 $def_extern_asm
8159 $def_extern_prefix
8160 $def_iconv
8161 $def_kstat
8162 $def_macosx_bundle
8163 $def_macosx_finder
8164 $def_maemo
8165 $def_named_asm_args
8166 $def_priority
8167 $def_quicktime
8168 $def_restrict_keyword
8169 $def_rtc
8170 $def_unrar_exec
8173 /* configurable options */
8174 $def_charset
8175 $def_crash_debug
8176 $def_debug
8177 $def_dynamic_plugins
8178 $def_fastmemcpy
8179 $def_menu
8180 $def_runtime_cpudetection
8181 $def_sighandler
8182 $def_sortsub
8183 $def_stream_cache
8184 $def_pthread_cache
8187 /* CPU stuff */
8188 #define __CPU__ $iproc
8189 $def_words_endian
8190 $def_bigendian
8191 $(ff_config_enable "$_arch_all" "$_arch" "ARCH")
8192 $(ff_config_enable "$_cpuexts_all" "$_cpuexts" "HAVE")
8195 /* DVD/VCD/CD */
8196 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
8197 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
8198 $def_bsdi_dvd
8199 $def_cddb
8200 $def_cdio
8201 $def_cdparanoia
8202 $def_cdrom
8203 $def_dvd
8204 $def_dvd_bsd
8205 $def_dvd_darwin
8206 $def_dvd_linux
8207 $def_dvd_openbsd
8208 $def_dvdio
8209 $def_dvdnav
8210 $def_dvdread
8211 $def_hpux_scsi_h
8212 $def_libcdio
8213 $def_sol_scsi_h
8214 $def_vcd
8217 /* codec libraries */
8218 $def_faac
8219 $def_faad
8220 $def_faad_internal
8221 $def_liba52
8222 $def_liba52_internal
8223 $def_libdca
8224 $def_libdv
8225 $def_liblzo
8226 $def_libmpeg2
8227 $def_mad
8228 $def_mp3lame
8229 $def_mp3lame_preset
8230 $def_mp3lame_preset_medium
8231 $def_mp3lib
8232 $def_musepack
8233 $def_speex
8234 $def_theora
8235 $def_toolame
8236 $def_tremor
8237 $def_twolame
8238 $def_vorbis
8239 $def_x264
8240 $def_xvid
8241 $def_zlib
8243 $def_libnut
8246 /* binary codecs */
8247 $def_qtx
8248 $def_qtx_win32
8249 $def_real
8250 $def_real_path
8251 $def_win32_loader
8252 $def_win32dll
8253 #define WIN32_PATH "$_win32codecsdir"
8254 $def_xanim
8255 $def_xanim_path
8256 $def_xmms
8257 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
8260 /* Audio output drivers */
8261 $def_alsa
8262 $def_alsa1x
8263 $def_alsa5
8264 $def_alsa9
8265 $def_arts
8266 $def_coreaudio
8267 $def_dart
8268 $def_esd
8269 $def_esd_latency
8270 $def_jack
8271 $def_nas
8272 $def_openal
8273 $def_openal_h
8274 $def_ossaudio
8275 $def_ossaudio_devdsp
8276 $def_ossaudio_devmixer
8277 $def_pulse
8278 $def_sgiaudio
8279 $def_sunaudio
8280 $def_win32waveout
8282 $def_ladspa
8283 $def_libbs2b
8286 /* input */
8287 $def_apple_ir
8288 $def_apple_remote
8289 $def_ioctl_bt848_h_name
8290 $def_ioctl_meteor_h_name
8291 $def_joystick
8292 $def_lirc
8293 $def_lircc
8294 $def_pvr
8295 $def_radio
8296 $def_radio_bsdbt848
8297 $def_radio_capture
8298 $def_radio_v4l
8299 $def_radio_v4l2
8300 $def_tv
8301 $def_tv_bsdbt848
8302 $def_tv_dshow
8303 $def_tv_v4l
8304 $def_tv_v4l1
8305 $def_tv_v4l2
8308 /* font stuff */
8309 $def_ass
8310 $def_bitmap_font
8311 $def_enca
8312 $def_fontconfig
8313 $def_freetype
8314 $def_fribidi
8317 /* networking */
8318 $def_closesocket
8319 $def_ftp
8320 $def_inet6
8321 $def_inet_aton
8322 $def_inet_pton
8323 $def_live
8324 $def_nemesi
8325 $def_network
8326 $def_smb
8327 $def_socklen_t
8328 $def_vstream
8331 /* libvo options */
8332 $def_3dfx
8333 $def_aa
8334 $def_bl
8335 $def_caca
8336 $def_corevideo
8337 $def_dfbmga
8338 $def_dga
8339 $def_dga1
8340 $def_dga2
8341 $def_direct3d
8342 $def_directfb
8343 $def_directfb_version
8344 $def_directx
8345 $def_dvb
8346 $def_dvb_head
8347 $def_dvbin
8348 $def_dxr2
8349 $def_dxr3
8350 $def_fbdev
8351 $def_ggi
8352 $def_ggiwmh
8353 $def_gif
8354 $def_gif_4
8355 $def_gif_tvt_hack
8356 $def_gl
8357 $def_gl_win32
8358 $def_gl_x11
8359 $def_matrixview
8360 $def_ivtv
8361 $def_jpeg
8362 $def_kva
8363 $def_md5sum
8364 $def_mga
8365 $def_mng
8366 $def_png
8367 $def_pnm
8368 $def_quartz
8369 $def_s3fb
8370 $def_sdl
8371 $def_sdl_sdl_h
8372 $def_sdlbuggy
8373 $def_svga
8374 $def_tdfxfb
8375 $def_tdfxvid
8376 $def_tga
8377 $def_v4l2
8378 $def_vdpau
8379 $def_vesa
8380 $def_vidix
8381 $def_vidix_drv_cyberblade
8382 $def_vidix_drv_ivtv
8383 $def_vidix_drv_mach64
8384 $def_vidix_drv_mga
8385 $def_vidix_drv_mga_crtc2
8386 $def_vidix_drv_nvidia
8387 $def_vidix_drv_pm3
8388 $def_vidix_drv_radeon
8389 $def_vidix_drv_rage128
8390 $def_vidix_drv_s3
8391 $def_vidix_drv_sh_veu
8392 $def_vidix_drv_sis
8393 $def_vidix_drv_unichrome
8394 $def_vidix_pfx
8395 $def_vm
8396 $def_wii
8397 $def_x11
8398 $def_xdpms
8399 $def_xf86keysym
8400 $def_xinerama
8401 $def_xmga
8402 $def_xss
8403 $def_xv
8404 $def_xvmc
8405 $def_xvr100
8406 $def_yuv4mpeg
8407 $def_zr
8410 /* FFmpeg */
8411 $def_libavcodec
8412 $def_libavformat
8413 $def_libavutil
8414 $def_libpostproc
8415 $def_libswscale
8416 $def_libavcodec_internals
8417 $def_libswscale_internals
8419 #define CONFIG_DECODERS 1
8420 #define CONFIG_ENCODERS 1
8421 #define CONFIG_DEMUXERS 1
8422 $def_muxers
8424 $def_arpa_inet_h
8425 $def_bswap
8426 $def_bzlib
8427 $def_dcbzl
8428 $def_dos_paths
8429 $def_fast_64bit
8430 $def_fast_unaligned
8431 $def_memalign_hack
8432 $def_mlib
8433 $def_mkstemp
8434 $def_posix_memalign
8435 $def_pthreads
8436 $def_ten_operands
8437 $def_threads
8438 $def_xform_asm
8439 $def_yasm
8441 #define CONFIG_FASTDIV 0
8442 #define CONFIG_FFSERVER 0
8443 #define CONFIG_GPL 1
8444 #define CONFIG_GRAY 0
8445 #define CONFIG_HARDCODED_TABLES 0
8446 #define CONFIG_LIBVORBIS 0
8447 #define CONFIG_POWERPC_PERF 0
8448 #define CONFIG_SMALL 0
8449 #define CONFIG_SWSCALE 1
8450 #define CONFIG_SWSCALE_ALPHA 1
8452 #define HAVE_ATTRIBUTE_PACKED 1
8453 #define HAVE_GETHRTIME 0
8454 #define HAVE_INLINE_ASM 0
8455 #define HAVE_LDBRX 0
8456 #define HAVE_POLL_H 1
8457 #define HAVE_PPC4XX 0
8458 #define HAVE_VIRTUALALLOC 0
8460 /* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */
8461 #define CONFIG_AANDCT 1
8462 #define CONFIG_FFT 1
8463 #define CONFIG_GOLOMB 1
8464 #define CONFIG_LPC 1
8465 #define CONFIG_MDCT 1
8466 #define CONFIG_RDFT 1
8468 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
8469 $def_ebx_available
8470 #ifndef MP_DEBUG
8471 #define HAVE_EBP_AVAILABLE 1
8472 #else
8473 #define HAVE_EBP_AVAILABLE 0
8474 #endif
8476 #define CONFIG_H263_VAAPI_HWACCEL 0
8477 #define CONFIG_MPEG2_VAAPI_HWACCEL 0
8478 #define CONFIG_MPEG4_VAAPI_HWACCEL 0
8479 #define CONFIG_H264_VAAPI_HWACCEL 0
8480 #define CONFIG_VC1_VAAPI_HWACCEL 0
8481 #define CONFIG_WMV3_VAAPI_HWACCEL 0
8483 #endif /* MPLAYER_CONFIG_H */
8486 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
8487 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
8489 #############################################################################
8491 ./version.sh `$_cc -dumpversion`
8493 cat << EOF
8495 Config files successfully generated by ./configure $_configuration !
8497 Install prefix: $_prefix
8498 Data directory: $_datadir
8499 Config direct.: $_confdir
8501 Byte order: $_byte_order
8502 Optimizing for: $_optimizing
8504 Languages:
8505 Messages: $language_msg
8506 Manual pages: $language_man
8507 Documentation: $language_doc
8509 Enabled optional drivers:
8510 Input: $_inputmodules
8511 Codecs: $_codecmodules
8512 Audio output: $_aomodules
8513 Video output: $_vomodules
8515 Disabled optional drivers:
8516 Input: $_noinputmodules
8517 Codecs: $_nocodecmodules
8518 Audio output: $_noaomodules
8519 Video output: $_novomodules
8521 'config.h' and 'config.mak' contain your configuration options.
8522 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
8523 compile *** DO NOT REPORT BUGS if you tweak these files ***
8525 'make' will now compile MPlayer and 'make install' will install it.
8526 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
8531 if test "$_mtrr" = yes ; then
8532 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$doc_lang/video.html#mtrr)"
8533 echo
8536 if ! x86_32; then
8537 cat <<EOF
8538 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
8539 operating system ($system_name). You may encounter a few files that cannot
8540 be played due to missing open source video/audio codec support.
8546 cat <<EOF
8547 Check $TMPLOG if you wonder why an autodetection failed (make sure
8548 development headers/packages are installed).
8550 NOTE: The --enable-* parameters unconditionally force options on, completely
8551 skipping autodetection. This behavior is unlike what you may be used to from
8552 autoconf-based configure scripts that can decide to override you. This greater
8553 level of control comes at a price. You may have to provide the correct compiler
8554 and linker flags yourself.
8555 If you used one of these options (except --enable-menu and similar ones that
8556 turn on internal features) and experience a compilation or linking failure,
8557 make sure you have passed the necessary compiler/linker flags to configure.
8559 If you suspect a bug, please read DOCS/HTML/$doc_lang/bugreports.html.
8563 if test "$_warn_CFLAGS" = yes; then
8564 cat <<EOF
8566 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
8567 but:
8569 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
8571 It is strongly recommended to let MPlayer choose the correct CFLAGS!
8572 To do so, execute 'CFLAGS= ./configure <options>'
8577 # Last move:
8578 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP" "$TMPH"