demux_mkv: read tags.
[mplayer/glamo.git] / configure
blobb2a53f88e5c551970c46fa1b4c64e4d963536cf4
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=''
201 ls po/*.po >/dev/null 2>&1 && msg_lang_all=$(echo po/*.po | sed -e 's:po/\([^[:space:]]*\)\.po:\1:g')
202 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")
203 doc_lang_all=$(echo DOCS/xml/??/ DOCS/xml/??_??/ | sed -e "s:DOCS/xml/\(..\)/:\1:g" -e "s:DOCS/xml/\(.._..\)/:\1:g")
205 show_help(){
206 cat << EOF
207 Usage: $0 [OPTIONS]...
209 Configuration:
210 -h, --help display this help and exit
212 Installation directories:
213 --prefix=DIR prefix directory for installation [/usr/local]
214 --bindir=DIR directory for installing binaries [PREFIX/bin]
215 --datadir=DIR directory for installing machine independent
216 data files (skins, etc) [PREFIX/share/mplayer]
217 --mandir=DIR directory for installing man pages [PREFIX/share/man]
218 --confdir=DIR directory for installing configuration files
219 [PREFIX/etc/mplayer]
220 --localedir=DIR directory for locale tree [PREFIX/share/locale]
221 --libdir=DIR directory for object code libraries [PREFIX/lib]
222 --codecsdir=DIR directory for binary codecs [LIBDIR/codecs]
224 Optional features:
225 --disable-mencoder disable MEncoder (A/V encoder) compilation [enable]
226 --disable-mplayer disable MPlayer compilation [enable]
227 --disable-largefiles disable support for files > 2GB [enable]
228 --enable-linux-devfs set default devices to devfs [disable]
229 --enable-termcap use termcap database for key codes [autodetect]
230 --enable-termios use termios database for key codes [autodetect]
231 --disable-iconv disable iconv for encoding conversion [autodetect]
232 --disable-langinfo do not use langinfo [autodetect]
233 --enable-lirc enable LIRC (remote control) support [autodetect]
234 --enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect]
235 --enable-joystick enable joystick support [disable]
236 --enable-apple-remote enable Apple Remote input (Mac OS X only) [autodetect]
237 --enable-apple-ir enable Apple IR Remote input (Linux only) [autodetect]
238 --disable-vm disable X video mode extensions [autodetect]
239 --disable-xf86keysym disable support for multimedia keys [autodetect]
240 --enable-radio enable radio interface [disable]
241 --enable-radio-capture enable radio capture (through PCI/line-in) [disable]
242 --disable-radio-v4l2 disable Video4Linux2 radio interface [autodetect]
243 --disable-radio-bsdbt848 disable BSD BT848 radio interface [autodetect]
244 --disable-tv disable TV interface (TV/DVB grabbers) [enable]
245 --disable-tv-v4l1 disable Video4Linux TV interface [autodetect]
246 --disable-tv-v4l2 disable Video4Linux2 TV interface [autodetect]
247 --disable-tv-bsdbt848 disable BSD BT848 interface [autodetect]
248 --disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
249 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
250 --disable-network disable networking [enable]
251 --enable-winsock2_h enable winsock2_h [autodetect]
252 --enable-smb enable Samba (SMB) input [autodetect]
253 --enable-live enable LIVE555 Streaming Media [autodetect]
254 --enable-nemesi enable Nemesi Streaming Media [autodetect]
255 --disable-vcd disable VCD support [autodetect]
256 --disable-dvdnav disable libdvdnav [autodetect]
257 --disable-dvdread disable libdvdread [autodetect]
258 --disable-dvdread-internal disable internal libdvdread [autodetect]
259 --disable-libdvdcss-internal disable internal libdvdcss [autodetect]
260 --disable-cdparanoia disable cdparanoia [autodetect]
261 --disable-cddb disable cddb [autodetect]
262 --disable-bitmap-font disable bitmap font support [enable]
263 --disable-freetype disable FreeType 2 font rendering [autodetect]
264 --disable-fontconfig disable fontconfig font lookup [autodetect]
265 --disable-unrarexec disable using of UnRAR executable [enabled]
266 --enable-menu enable OSD menu (not DVD menu) [disabled]
267 --disable-sortsub disable subtitle sorting [enabled]
268 --enable-fribidi enable the FriBiDi libs [autodetect]
269 --disable-enca disable ENCA charset oracle library [autodetect]
270 --disable-maemo disable maemo specific features [autodetect]
271 --enable-macosx-finder enable Mac OS X Finder invocation parameter
272 parsing [disabled]
273 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
274 --disable-inet6 disable IPv6 support [autodetect]
275 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
276 --disable-ftp disable FTP support [enabled]
277 --disable-vstream disable TiVo vstream client support [autodetect]
278 --disable-pthreads disable Posix threads support [autodetect]
279 --disable-w32threads disable Win32 threads support [autodetect]
280 --disable-ass disable internal SSA/ASS subtitle support [autodetect]
281 --enable-rpath enable runtime linker path for extra libs [disabled]
283 Codecs:
284 --enable-gif enable GIF support [autodetect]
285 --enable-png enable PNG input/output support [autodetect]
286 --enable-mng enable MNG input support [autodetect]
287 --enable-jpeg enable JPEG input/output support [autodetect]
288 --enable-libcdio enable libcdio support [autodetect]
289 --enable-liblzo enable liblzo support [autodetect]
290 --disable-win32dll disable Win32 DLL support [autodetect]
291 --disable-qtx disable QuickTime codecs support [enabled]
292 --disable-xanim disable XAnim codecs support [enabled]
293 --disable-real disable RealPlayer codecs support [enabled]
294 --disable-xvid disable Xvid [autodetect]
295 --disable-x264 disable x264 [autodetect]
296 --disable-libnut disable libnut [autodetect]
297 --disable-libavutil disable libavutil [autodetect]
298 --disable-libavcodec disable libavcodec [autodetect]
299 --disable-libavformat disable libavformat [autodetect]
300 --disable-libpostproc disable libpostproc [autodetect]
301 --disable-libswscale disable libswscale [autodetect]
302 --disable-tremor-internal disable internal Tremor [enabled]
303 --enable-tremor-low enable lower accuracy internal Tremor [disabled]
304 --enable-tremor enable external Tremor [autodetect]
305 --disable-libvorbis disable libvorbis support [autodetect]
306 --disable-speex disable Speex support [autodetect]
307 --enable-theora enable OggTheora libraries [autodetect]
308 --enable-faad enable external FAAD2 (AAC) [autodetect]
309 --disable-faad-internal disable internal FAAD2 (AAC) [autodetect]
310 --enable-faad-fixed enable fixed-point mode in internal FAAD2 [disabled]
311 --disable-faac disable support for FAAC (AAC encoder) [autodetect]
312 --disable-ladspa disable LADSPA plugin support [autodetect]
313 --disable-libbs2b disable libbs2b audio filter support [autodetect]
314 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
315 --disable-mad disable libmad (MPEG audio) support [autodetect]
316 --disable-mp3lame disable LAME MP3 encoding support [autodetect]
317 --disable-toolame disable Toolame (MPEG layer 2) encoding [autodetect]
318 --disable-twolame disable Twolame (MPEG layer 2) encoding [autodetect]
319 --enable-xmms enable XMMS input plugin support [disabled]
320 --enable-libdca enable libdca support [autodetect]
321 --disable-mp3lib disable builtin mp3lib [autodetect]
322 --disable-liba52 disable liba52 [autodetect]
323 --enable-liba52-internal enable builtin liba52 [disabled]
324 --disable-libmpeg2 disable builtin libmpeg2 [autodetect]
325 --disable-musepack disable musepack support [autodetect]
327 Video output:
328 --disable-vidix disable VIDIX [for x86 *nix]
329 --with-vidix-drivers[=*] list of VIDIX drivers to be compiled in
330 Available: cyberblade,ivtv,mach64,mga,mga_crtc2,
331 nvidia,pm2,pm3,radeon,rage128,s3,sis,unichrome
332 --disable-vidix-pcidb disable VIDIX PCI device name database
333 --enable-dhahelper enable VIDIX dhahelper support
334 --enable-svgalib_helper enable VIDIX svgalib_helper support
335 --enable-gl enable OpenGL video output [autodetect]
336 --disable-matrixview disable OpenGL MatrixView video output [autodetect]
337 --enable-dga2 enable DGA 2 support [autodetect]
338 --enable-dga1 enable DGA 1 support [autodetect]
339 --enable-vesa enable VESA video output [autodetect]
340 --enable-svga enable SVGAlib video output [autodetect]
341 --enable-sdl enable SDL video output [autodetect]
342 --enable-kva enable KVA video output [autodetect]
343 --enable-aa enable AAlib video output [autodetect]
344 --enable-caca enable CACA video output [autodetect]
345 --enable-ggi enable GGI video output [autodetect]
346 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
347 --enable-direct3d enable Direct3D video output [autodetect]
348 --enable-directx enable DirectX video output [autodetect]
349 --enable-dxr2 enable DXR2 video output [autodetect]
350 --enable-dxr3 enable DXR3/H+ video output [autodetect]
351 --enable-ivtv enable IVTV TV-Out video output [autodetect]
352 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
353 --enable-dvb enable DVB video output [autodetect]
354 --enable-mga enable mga_vid video output [autodetect]
355 --enable-xmga enable mga_vid X11 video output [autodetect]
356 --enable-xv enable Xv video output [autodetect]
357 --enable-xvmc enable XvMC acceleration [disable]
358 --enable-vdpau enable VDPAU acceleration [autodetect]
359 --enable-vm enable XF86VidMode support [autodetect]
360 --enable-xinerama enable Xinerama support [autodetect]
361 --enable-x11 enable X11 video output [autodetect]
362 --enable-xshape enable XShape support [autodetect]
363 --disable-xss disable screensaver support via xss [autodetect]
364 --enable-fbdev enable FBDev video output [autodetect]
365 --enable-mlib enable mediaLib video output (Solaris) [disable]
366 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
367 --enable-tdfxfb enable tdfxfb video output [disable]
368 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
369 --enable-wii enable Nintendo Wii/GameCube video output [disable]
370 --enable-directfb enable DirectFB video output [autodetect]
371 --enable-zr enable ZR360[56]7/ZR36060 video output [autodetect]
372 --enable-bl enable Blinkenlights video output [disable]
373 --enable-tdfxvid enable tdfx_vid video output [disable]
374 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
375 --disable-tga disable Targa video output [enable]
376 --disable-pnm disable PNM video output [enable]
377 --disable-md5sum disable md5sum video output [enable]
378 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
379 --disable-corevideo disable CoreVideo video output [autodetect]
380 --disable-quartz disable Quartz video output [autodetect]
382 Audio output:
383 --disable-alsa disable ALSA audio output [autodetect]
384 --disable-ossaudio disable OSS audio output [autodetect]
385 --disable-arts disable aRts audio output [autodetect]
386 --disable-esd disable esd audio output [autodetect]
387 --disable-pulse disable Pulseaudio audio output [autodetect]
388 --disable-jack disable JACK audio output [autodetect]
389 --enable-openal enable OpenAL audio output [disable]
390 --disable-nas disable NAS audio output [autodetect]
391 --disable-sgiaudio disable SGI audio output [autodetect]
392 --disable-sunaudio disable Sun audio output [autodetect]
393 --disable-kai disable KAI audio output [autodetect]
394 --disable-dart disable DART audio output [autodetect]
395 --disable-win32waveout disable Windows waveout audio output [autodetect]
396 --disable-coreaudio disable CoreAudio audio output [autodetect]
397 --disable-select disable using select() on the audio device [enable]
399 Language options:
400 --enable-translation enable support for translated output [disable]
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 extra languages for program messages [all]
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 translations available in the list will be
409 installed. The value "all" will activate all translations. The LINGUAS
410 environment variable is honored. In all cases the fallback is English.
411 The program always supports English-language output; additional message
412 languages are only installed if --enable-translation is also specified.
413 Available values for --language-doc are: all $doc_lang_all
414 Available values for --language-man are: all $man_lang_all
415 Available values for --language-msg are: all $msg_lang_all
417 Miscellaneous options:
418 --enable-runtime-cpudetection enable runtime CPU detection [disable]
419 --enable-cross-compile enable cross-compilation [autodetect]
420 --cc=COMPILER C compiler to build MPlayer [gcc]
421 --host-cc=COMPILER C compiler for tools needed while building [gcc]
422 --as=ASSEMBLER assembler to build MPlayer [as]
423 --nm=NM nm tool to build MPlayer [nm]
424 --yasm=YASM Yasm assembler to build MPlayer [yasm]
425 --ar=AR librarian to build MPlayer [ar]
426 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
427 --windres=WINDRES windres to build MPlayer [windres]
428 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
429 --enable-static build a statically linked binary
430 --with-install=PATH path to a custom install program
432 Advanced options:
433 --enable-mmx enable MMX [autodetect]
434 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
435 --enable-3dnow enable 3DNow! [autodetect]
436 --enable-3dnowext enable extended 3DNow! [autodetect]
437 --enable-sse enable SSE [autodetect]
438 --enable-sse2 enable SSE2 [autodetect]
439 --enable-ssse3 enable SSSE3 [autodetect]
440 --enable-shm enable shm [autodetect]
441 --enable-altivec enable AltiVec (PowerPC) [autodetect]
442 --enable-armv5te enable DSP extensions (ARM) [autodetect]
443 --enable-armv6 enable ARMv6 (ARM) [autodetect]
444 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
445 --enable-armvfp enable ARM VFP (ARM) [autodetect]
446 --enable-neon enable NEON (ARM) [autodetect]
447 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
448 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
449 --enable-big-endian force byte order to big-endian [autodetect]
450 --enable-debug[=1-3] compile-in debugging information [disable]
451 --enable-profile compile-in profiling information [disable]
452 --disable-sighandler disable sighandler for crashes [enable]
453 --enable-crash-debug enable automatic gdb attach on crash [disable]
454 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
455 --ffmpeg-source-dir=PATH enable features requiring internal FFmpeg headers
457 Use these options if autodetection fails:
458 --extra-cflags=FLAGS extra CFLAGS
459 --extra-ldflags=FLAGS extra LDFLAGS
460 --extra-libs=FLAGS extra linker flags
461 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
462 --extra-libs-mencoder=FLAGS extra linker flags for MEncoder
463 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
465 --with-freetype-config=PATH path to freetype-config
466 --with-fribidi-config=PATH path to fribidi-config
467 --with-glib-config=PATH path to glib*-config
468 --with-gtk-config=PATH path to gtk*-config
469 --with-sdl-config=PATH path to sdl*-config
470 --with-dvdnav-config=PATH path to dvdnav-config
471 --with-dvdread-config=PATH path to dvdread-config
473 This configure script is NOT autoconf-based, even though its output is similar.
474 It will try to autodetect all configuration options. If you --enable an option
475 it will be forcefully turned on, skipping autodetection. This can break
476 compilation, so you need to know what you are doing.
478 exit 0
479 } #show_help()
481 # GOTCHA: the variables below defines the default behavior for autodetection
482 # and have - unless stated otherwise - at least 2 states : yes no
483 # If autodetection is available then the third state is: auto
484 _mmx=auto
485 _3dnow=auto
486 _3dnowext=auto
487 _mmxext=auto
488 _sse=auto
489 _sse2=auto
490 _ssse3=auto
491 _cmov=auto
492 _fast_cmov=auto
493 _fast_clz=auto
494 _armv5te=auto
495 _armv6=auto
496 _armv6t2=auto
497 _armvfp=auto
498 neon=auto
499 _iwmmxt=auto
500 _mtrr=auto
501 _altivec=auto
502 _install=install
503 _ranlib=ranlib
504 _windres=windres
505 _cc=cc
506 _ar=ar
507 test "$CC" && _cc="$CC"
508 _as=auto
509 _nm=auto
510 _yasm=yasm
511 _runtime_cpudetection=no
512 _cross_compile=auto
513 _prefix="/usr/local"
514 _libavutil=auto
515 _libavcodec=auto
516 _libavformat=auto
517 _libpostproc=auto
518 _libswscale=auto
519 _libavcodec_internals=no
520 _libswscale_internals=no
521 _mencoder=yes
522 _mplayer=yes
523 _x11=auto
524 _xshape=auto
525 _xss=auto
526 _dga1=auto
527 _dga2=auto
528 _xv=auto
529 _xvmc=no #auto when complete
530 _vdpau=auto
531 _sdl=auto
532 _kva=auto
533 _direct3d=auto
534 _directx=auto
535 _win32waveout=auto
536 _nas=auto
537 _png=auto
538 _mng=auto
539 _jpeg=auto
540 _pnm=yes
541 _md5sum=yes
542 _yuv4mpeg=yes
543 _gif=auto
544 _gl=auto
545 matrixview=yes
546 _ggi=auto
547 _ggiwmh=auto
548 _aa=auto
549 _caca=auto
550 _svga=auto
551 _vesa=auto
552 _fbdev=auto
553 _dvb=auto
554 _dxr2=auto
555 _dxr3=auto
556 _ivtv=auto
557 _v4l2=auto
558 _iconv=auto
559 _langinfo=auto
560 _rtc=auto
561 _ossaudio=auto
562 _arts=auto
563 _esd=auto
564 _pulse=auto
565 _jack=auto
566 _kai=auto
567 _dart=auto
568 _openal=no
569 _libcdio=auto
570 _liblzo=auto
571 _mad=auto
572 _mp3lame=auto
573 _toolame=auto
574 _twolame=auto
575 _tremor=auto
576 _tremor_internal=yes
577 _tremor_low=no
578 _libvorbis=auto
579 _speex=auto
580 _theora=auto
581 _mp3lib=auto
582 _liba52=auto
583 _liba52_internal=no
584 _libdca=auto
585 _libmpeg2=auto
586 _faad=auto
587 _faad_internal=auto
588 _faad_fixed=no
589 _faac=auto
590 _ladspa=auto
591 _libbs2b=auto
592 _xmms=no
593 _vcd=auto
594 _dvdnav=auto
595 _dvdnavconfig=dvdnav-config
596 _dvdreadconfig=dvdread-config
597 _dvdread=auto
598 _dvdread_internal=auto
599 _libdvdcss_internal=auto
600 _xanim=auto
601 _real=auto
602 _live=auto
603 _nemesi=auto
604 _native_rtsp=yes
605 _xinerama=auto
606 _mga=auto
607 _xmga=auto
608 _vm=auto
609 _xf86keysym=auto
610 _mlib=no #broken, thus disabled
611 _sgiaudio=auto
612 _sunaudio=auto
613 _alsa=auto
614 _fastmemcpy=yes
615 _unrar_exec=auto
616 _win32dll=auto
617 _select=yes
618 _radio=no
619 _radio_capture=no
620 _radio_v4l=auto
621 _radio_v4l2=auto
622 _radio_bsdbt848=auto
623 _tv=yes
624 _tv_v4l1=auto
625 _tv_v4l2=auto
626 _tv_bsdbt848=auto
627 _tv_dshow=auto
628 _pvr=auto
629 _network=yes
630 _winsock2_h=auto
631 _smb=auto
632 _vidix=auto
633 _vidix_pcidb=yes
634 _dhahelper=no
635 _svgalib_helper=no
636 _joystick=no
637 _xvid=auto
638 _x264=auto
639 _libnut=auto
640 _lirc=auto
641 _lircc=auto
642 _apple_remote=auto
643 _apple_ir=auto
644 _gui=no
645 _gtk1=no
646 _termcap=auto
647 _termios=auto
648 _3dfx=no
649 _s3fb=no
650 _wii=no
651 _tdfxfb=no
652 _tdfxvid=no
653 _xvr100=auto
654 _tga=yes
655 _directfb=auto
656 _zr=auto
657 _bl=no
658 _largefiles=yes
659 #language=en
660 _shm=auto
661 _linux_devfs=no
662 _translation=no
663 _charset="UTF-8"
664 _dynamic_plugins=no
665 _crash_debug=no
666 _sighandler=yes
667 _libdv=auto
668 _cdparanoia=auto
669 _cddb=auto
670 _big_endian=auto
671 _bitmap_font=yes
672 _freetype=auto
673 _fontconfig=auto
674 _menu=no
675 _qtx=auto
676 _maemo=auto
677 _coreaudio=auto
678 _corevideo=auto
679 _quartz=auto
680 quicktime=auto
681 _macosx_finder=no
682 _macosx_bundle=auto
683 _sortsub=yes
684 _freetypeconfig='freetype-config'
685 _fribidi=auto
686 _fribidiconfig='fribidi-config'
687 _enca=auto
688 _inet6=auto
689 _gethostbyname2=auto
690 _ftp=yes
691 _musepack=auto
692 _vstream=auto
693 _pthreads=auto
694 _w32threads=auto
695 _ass=auto
696 _rpath=no
697 _asmalign_pot=auto
698 _stream_cache=yes
699 _priority=no
700 def_dos_paths="#define HAVE_DOS_PATHS 0"
701 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
702 def_priority="#undef CONFIG_PRIORITY"
703 def_pthread_cache="#undef PTHREAD_CACHE"
704 _need_shmem=yes
705 for ac_option do
706 case "$ac_option" in
707 --help|-help|-h)
708 show_help
710 --prefix=*)
711 _prefix=$(echo $ac_option | cut -d '=' -f 2)
713 --bindir=*)
714 _bindir=$(echo $ac_option | cut -d '=' -f 2)
716 --datadir=*)
717 _datadir=$(echo $ac_option | cut -d '=' -f 2)
719 --mandir=*)
720 _mandir=$(echo $ac_option | cut -d '=' -f 2)
722 --confdir=*)
723 _confdir=$(echo $ac_option | cut -d '=' -f 2)
725 --libdir=*)
726 _libdir=$(echo $ac_option | cut -d '=' -f 2)
728 --codecsdir=*)
729 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
731 --localedir=*)
732 _localedir=$(echo $ac_option | cut -d '=' -f 2)
735 --with-install=*)
736 _install=$(echo $ac_option | cut -d '=' -f 2 )
738 --with-xvmclib=*)
739 _xvmclib=$(echo $ac_option | cut -d '=' -f 2)
742 --with-sdl-config=*)
743 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
745 --with-freetype-config=*)
746 _freetypeconfig=$(echo $ac_option | cut -d '=' -f 2)
748 --with-fribidi-config=*)
749 _fribidiconfig=$(echo $ac_option | cut -d '=' -f 2)
751 --with-gtk-config=*)
752 _gtkconfig=$(echo $ac_option | cut -d '=' -f 2)
754 --with-glib-config=*)
755 _glibconfig=$(echo $ac_option | cut -d '=' -f 2)
757 --with-dvdnav-config=*)
758 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
760 --with-dvdread-config=*)
761 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
764 --extra-cflags=*)
765 extra_cflags="$extra_cflags $(echo $ac_option | cut -d '=' -f 2-)"
767 --extra-ldflags=*)
768 extra_ldflags="$extra_ldflags $(echo $ac_option | cut -d '=' -f 2-)"
770 --extra-libs=*)
771 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
773 --extra-libs-mplayer=*)
774 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
776 --extra-libs-mencoder=*)
777 libs_mencoder=$(echo $ac_option | cut -d '=' -f 2)
780 --target=*)
781 _target=$(echo $ac_option | cut -d '=' -f 2)
783 --cc=*)
784 _cc=$(echo $ac_option | cut -d '=' -f 2)
786 --host-cc=*)
787 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
789 --as=*)
790 _as=$(echo $ac_option | cut -d '=' -f 2)
792 --nm=*)
793 _nm=$(echo $ac_option | cut -d '=' -f 2)
795 --yasm=*)
796 _yasm=$(echo $ac_option | cut -d '=' -f 2)
798 --ar=*)
799 _ar=$(echo $ac_option | cut -d '=' -f 2)
801 --ranlib=*)
802 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
804 --windres=*)
805 _windres=$(echo $ac_option | cut -d '=' -f 2)
807 --charset=*)
808 _charset=$(echo $ac_option | cut -d '=' -f 2)
810 --language-doc=*)
811 language_doc=$(echo $ac_option | cut -d '=' -f 2)
813 --language-man=*)
814 language_man=$(echo $ac_option | cut -d '=' -f 2)
816 --language-msg=*)
817 language_msg=$(echo $ac_option | cut -d '=' -f 2)
819 --language=*)
820 language=$(echo $ac_option | cut -d '=' -f 2)
823 --enable-static)
824 _ld_static='-static'
826 --disable-static)
827 _ld_static=''
829 --enable-profile)
830 _profile='-p'
832 --disable-profile)
833 _profile=
835 --enable-debug)
836 _debug='-g'
838 --enable-debug=*)
839 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
841 --disable-debug)
842 _debug=
844 --enable-translation) _translation=yes ;;
845 --disable-translation) _translation=no ;;
846 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
847 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
848 --enable-cross-compile) _cross_compile=yes ;;
849 --disable-cross-compile) _cross_compile=no ;;
850 --enable-mencoder) _mencoder=yes ;;
851 --disable-mencoder) _mencoder=no ;;
852 --enable-mplayer) _mplayer=yes ;;
853 --disable-mplayer) _mplayer=no ;;
854 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
855 --disable-dynamic-plugins) _dynamic_plugins=no ;;
856 --enable-x11) _x11=yes ;;
857 --disable-x11) _x11=no ;;
858 --enable-xshape) _xshape=yes ;;
859 --disable-xshape) _xshape=no ;;
860 --enable-xss) _xss=yes ;;
861 --disable-xss) _xss=no ;;
862 --enable-xv) _xv=yes ;;
863 --disable-xv) _xv=no ;;
864 --enable-xvmc) _xvmc=yes ;;
865 --disable-xvmc) _xvmc=no ;;
866 --enable-vdpau) _vdpau=yes ;;
867 --disable-vdpau) _vdpau=no ;;
868 --enable-sdl) _sdl=yes ;;
869 --disable-sdl) _sdl=no ;;
870 --enable-kva) _kva=yes ;;
871 --disable-kva) _kva=no ;;
872 --enable-direct3d) _direct3d=yes ;;
873 --disable-direct3d) _direct3d=no ;;
874 --enable-directx) _directx=yes ;;
875 --disable-directx) _directx=no ;;
876 --enable-win32waveout) _win32waveout=yes ;;
877 --disable-win32waveout) _win32waveout=no ;;
878 --enable-nas) _nas=yes ;;
879 --disable-nas) _nas=no ;;
880 --enable-png) _png=yes ;;
881 --disable-png) _png=no ;;
882 --enable-mng) _mng=yes ;;
883 --disable-mng) _mng=no ;;
884 --enable-jpeg) _jpeg=yes ;;
885 --disable-jpeg) _jpeg=no ;;
886 --enable-pnm) _pnm=yes ;;
887 --disable-pnm) _pnm=no ;;
888 --enable-md5sum) _md5sum=yes ;;
889 --disable-md5sum) _md5sum=no ;;
890 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
891 --disable-yuv4mpeg) _yuv4mpeg=no ;;
892 --enable-gif) _gif=yes ;;
893 --disable-gif) _gif=no ;;
894 --enable-gl) _gl=yes ;;
895 --disable-gl) _gl=no ;;
896 --enable-matrixview) matrixview=yes ;;
897 --disable-matrixview) matrixview=no ;;
898 --enable-ggi) _ggi=yes ;;
899 --disable-ggi) _ggi=no ;;
900 --enable-ggiwmh) _ggiwmh=yes ;;
901 --disable-ggiwmh) _ggiwmh=no ;;
902 --enable-aa) _aa=yes ;;
903 --disable-aa) _aa=no ;;
904 --enable-caca) _caca=yes ;;
905 --disable-caca) _caca=no ;;
906 --enable-svga) _svga=yes ;;
907 --disable-svga) _svga=no ;;
908 --enable-vesa) _vesa=yes ;;
909 --disable-vesa) _vesa=no ;;
910 --enable-fbdev) _fbdev=yes ;;
911 --disable-fbdev) _fbdev=no ;;
912 --enable-dvb) _dvb=yes ;;
913 --disable-dvb) _dvb=no ;;
914 --enable-dxr2) _dxr2=yes ;;
915 --disable-dxr2) _dxr2=no ;;
916 --enable-dxr3) _dxr3=yes ;;
917 --disable-dxr3) _dxr3=no ;;
918 --enable-ivtv) _ivtv=yes ;;
919 --disable-ivtv) _ivtv=no ;;
920 --enable-v4l2) _v4l2=yes ;;
921 --disable-v4l2) _v4l2=no ;;
922 --enable-iconv) _iconv=yes ;;
923 --disable-iconv) _iconv=no ;;
924 --enable-langinfo) _langinfo=yes ;;
925 --disable-langinfo) _langinfo=no ;;
926 --enable-rtc) _rtc=yes ;;
927 --disable-rtc) _rtc=no ;;
928 --enable-libdv) _libdv=yes ;;
929 --disable-libdv) _libdv=no ;;
930 --enable-ossaudio) _ossaudio=yes ;;
931 --disable-ossaudio) _ossaudio=no ;;
932 --enable-arts) _arts=yes ;;
933 --disable-arts) _arts=no ;;
934 --enable-esd) _esd=yes ;;
935 --disable-esd) _esd=no ;;
936 --enable-pulse) _pulse=yes ;;
937 --disable-pulse) _pulse=no ;;
938 --enable-jack) _jack=yes ;;
939 --disable-jack) _jack=no ;;
940 --enable-openal) _openal=yes ;;
941 --disable-openal) _openal=no ;;
942 --enable-kai) _kai=yes ;;
943 --disable-kai) _kai=no ;;
944 --enable-dart) _dart=yes ;;
945 --disable-dart) _dart=no ;;
946 --enable-mad) _mad=yes ;;
947 --disable-mad) _mad=no ;;
948 --enable-mp3lame) _mp3lame=yes ;;
949 --disable-mp3lame) _mp3lame=no ;;
950 --enable-toolame) _toolame=yes ;;
951 --disable-toolame) _toolame=no ;;
952 --enable-twolame) _twolame=yes ;;
953 --disable-twolame) _twolame=no ;;
954 --enable-libcdio) _libcdio=yes ;;
955 --disable-libcdio) _libcdio=no ;;
956 --enable-liblzo) _liblzo=yes ;;
957 --disable-liblzo) _liblzo=no ;;
958 --enable-libvorbis) _libvorbis=yes ;;
959 --disable-libvorbis) _libvorbis=no ;;
960 --enable-speex) _speex=yes ;;
961 --disable-speex) _speex=no ;;
962 --enable-tremor) _tremor=yes ;;
963 --disable-tremor) _tremor=no ;;
964 --enable-tremor-internal) _tremor_internal=yes ;;
965 --disable-tremor-internal) _tremor_internal=no ;;
966 --enable-tremor-low) _tremor_low=yes ;;
967 --disable-tremor-low) _tremor_low=no ;;
968 --enable-theora) _theora=yes ;;
969 --disable-theora) _theora=no ;;
970 --enable-mp3lib) _mp3lib=yes ;;
971 --disable-mp3lib) _mp3lib=no ;;
972 --enable-liba52-internal) _liba52_internal=yes ;;
973 --disable-liba52-internal) _liba52_internal=no ;;
974 --enable-liba52) _liba52=yes ;;
975 --disable-liba52) _liba52=no ;;
976 --enable-libdca) _libdca=yes ;;
977 --disable-libdca) _libdca=no ;;
978 --enable-libmpeg2) _libmpeg2=yes ;;
979 --disable-libmpeg2) _libmpeg2=no ;;
980 --enable-musepack) _musepack=yes ;;
981 --disable-musepack) _musepack=no ;;
982 --enable-faad) _faad=yes ;;
983 --disable-faad) _faad=no ;;
984 --enable-faad-internal) _faad_internal=yes ;;
985 --disable-faad-internal) _faad_internal=no ;;
986 --enable-faad-fixed) _faad_fixed=yes ;;
987 --disable-faad-fixed) _faad_fixed=no ;;
988 --enable-faac) _faac=yes ;;
989 --disable-faac) _faac=no ;;
990 --enable-ladspa) _ladspa=yes ;;
991 --disable-ladspa) _ladspa=no ;;
992 --enable-libbs2b) _libbs2b=yes ;;
993 --disable-libbs2b) _libbs2b=no ;;
994 --enable-xmms) _xmms=yes ;;
995 --disable-xmms) _xmms=no ;;
996 --enable-vcd) _vcd=yes ;;
997 --disable-vcd) _vcd=no ;;
998 --enable-dvdread) _dvdread=yes ;;
999 --disable-dvdread) _dvdread=no ;;
1000 --enable-dvdread-internal) _dvdread_internal=yes ;;
1001 --disable-dvdread-internal) _dvdread_internal=no ;;
1002 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
1003 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
1004 --enable-dvdnav) _dvdnav=yes ;;
1005 --disable-dvdnav) _dvdnav=no ;;
1006 --enable-xanim) _xanim=yes ;;
1007 --disable-xanim) _xanim=no ;;
1008 --enable-real) _real=yes ;;
1009 --disable-real) _real=no ;;
1010 --enable-live) _live=yes ;;
1011 --disable-live) _live=no ;;
1012 --enable-nemesi) _nemesi=yes ;;
1013 --disable-nemesi) _nemesi=no ;;
1014 --enable-xinerama) _xinerama=yes ;;
1015 --disable-xinerama) _xinerama=no ;;
1016 --enable-mga) _mga=yes ;;
1017 --disable-mga) _mga=no ;;
1018 --enable-xmga) _xmga=yes ;;
1019 --disable-xmga) _xmga=no ;;
1020 --enable-vm) _vm=yes ;;
1021 --disable-vm) _vm=no ;;
1022 --enable-xf86keysym) _xf86keysym=yes ;;
1023 --disable-xf86keysym) _xf86keysym=no ;;
1024 --enable-mlib) _mlib=yes ;;
1025 --disable-mlib) _mlib=no ;;
1026 --enable-sunaudio) _sunaudio=yes ;;
1027 --disable-sunaudio) _sunaudio=no ;;
1028 --enable-sgiaudio) _sgiaudio=yes ;;
1029 --disable-sgiaudio) _sgiaudio=no ;;
1030 --enable-alsa) _alsa=yes ;;
1031 --disable-alsa) _alsa=no ;;
1032 --enable-tv) _tv=yes ;;
1033 --disable-tv) _tv=no ;;
1034 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1035 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1036 --enable-tv-v4l1) _tv_v4l1=yes ;;
1037 --disable-tv-v4l1) _tv_v4l1=no ;;
1038 --enable-tv-v4l2) _tv_v4l2=yes ;;
1039 --disable-tv-v4l2) _tv_v4l2=no ;;
1040 --enable-tv-dshow) _tv_dshow=yes ;;
1041 --disable-tv-dshow) _tv_dshow=no ;;
1042 --enable-radio) _radio=yes ;;
1043 --enable-radio-capture) _radio_capture=yes ;;
1044 --disable-radio-capture) _radio_capture=no ;;
1045 --disable-radio) _radio=no ;;
1046 --enable-radio-v4l) _radio_v4l=yes ;;
1047 --disable-radio-v4l) _radio_v4l=no ;;
1048 --enable-radio-v4l2) _radio_v4l2=yes ;;
1049 --disable-radio-v4l2) _radio_v4l2=no ;;
1050 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1051 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1052 --enable-pvr) _pvr=yes ;;
1053 --disable-pvr) _pvr=no ;;
1054 --enable-fastmemcpy) _fastmemcpy=yes ;;
1055 --disable-fastmemcpy) _fastmemcpy=no ;;
1056 --enable-network) _network=yes ;;
1057 --disable-network) _network=no ;;
1058 --enable-winsock2_h) _winsock2_h=yes ;;
1059 --disable-winsock2_h) _winsock2_h=no ;;
1060 --enable-smb) _smb=yes ;;
1061 --disable-smb) _smb=no ;;
1062 --enable-vidix) _vidix=yes ;;
1063 --disable-vidix) _vidix=no ;;
1064 --with-vidix-drivers=*)
1065 _vidix_drivers=$(echo $ac_option | cut -d '=' -f 2)
1067 --disable-vidix-pcidb) _vidix_pcidb=no ;;
1068 --enable-dhahelper) _dhahelper=yes ;;
1069 --disable-dhahelper) _dhahelper=no ;;
1070 --enable-svgalib_helper) _svgalib_helper=yes ;;
1071 --disable-svgalib_helper) _svgalib_helper=no ;;
1072 --enable-joystick) _joystick=yes ;;
1073 --disable-joystick) _joystick=no ;;
1074 --enable-xvid) _xvid=yes ;;
1075 --disable-xvid) _xvid=no ;;
1076 --enable-x264) _x264=yes ;;
1077 --disable-x264) _x264=no ;;
1078 --enable-libnut) _libnut=yes ;;
1079 --disable-libnut) _libnut=no ;;
1080 --enable-libavutil) _libavutil=yes ;;
1081 --disable-libavutil) _libavutil=no ;;
1082 --enable-libavcodec) _libavcodec=yes ;;
1083 --disable-libavcodec) _libavcodec=no ;;
1084 --enable-libavformat) _libavformat=yes ;;
1085 --disable-libavformat) _libavformat=no ;;
1086 --enable-libpostproc) _libpostproc=yes ;;
1087 --disable-libpostproc) _libpostproc=no ;;
1088 --enable-libswscale) _libswscale=yes ;;
1089 --disable-libswscale) _libswscale=no ;;
1090 --ffmpeg-source-dir=*)
1091 _ffmpeg_source=$(echo $ac_option | cut -d '=' -f 2 ) ;;
1093 --enable-lirc) _lirc=yes ;;
1094 --disable-lirc) _lirc=no ;;
1095 --enable-lircc) _lircc=yes ;;
1096 --disable-lircc) _lircc=no ;;
1097 --enable-apple-remote) _apple_remote=yes ;;
1098 --disable-apple-remote) _apple_remote=no ;;
1099 --enable-apple-ir) _apple_ir=yes ;;
1100 --disable-apple-ir) _apple_ir=no ;;
1101 --enable-gui) _gui=yes ;;
1102 --disable-gui) _gui=no ;;
1103 --enable-gtk1) _gtk1=yes ;;
1104 --disable-gtk1) _gtk1=no ;;
1105 --enable-termcap) _termcap=yes ;;
1106 --disable-termcap) _termcap=no ;;
1107 --enable-termios) _termios=yes ;;
1108 --disable-termios) _termios=no ;;
1109 --enable-3dfx) _3dfx=yes ;;
1110 --disable-3dfx) _3dfx=no ;;
1111 --enable-s3fb) _s3fb=yes ;;
1112 --disable-s3fb) _s3fb=no ;;
1113 --enable-wii) _wii=yes ;;
1114 --disable-wii) _wii=no ;;
1115 --enable-tdfxfb) _tdfxfb=yes ;;
1116 --disable-tdfxfb) _tdfxfb=no ;;
1117 --disable-tdfxvid) _tdfxvid=no ;;
1118 --enable-tdfxvid) _tdfxvid=yes ;;
1119 --disable-xvr100) _xvr100=no ;;
1120 --enable-xvr100) _xvr100=yes ;;
1121 --disable-tga) _tga=no ;;
1122 --enable-tga) _tga=yes ;;
1123 --enable-directfb) _directfb=yes ;;
1124 --disable-directfb) _directfb=no ;;
1125 --enable-zr) _zr=yes ;;
1126 --disable-zr) _zr=no ;;
1127 --enable-bl) _bl=yes ;;
1128 --disable-bl) _bl=no ;;
1129 --enable-mtrr) _mtrr=yes ;;
1130 --disable-mtrr) _mtrr=no ;;
1131 --enable-largefiles) _largefiles=yes ;;
1132 --disable-largefiles) _largefiles=no ;;
1133 --enable-shm) _shm=yes ;;
1134 --disable-shm) _shm=no ;;
1135 --enable-select) _select=yes ;;
1136 --disable-select) _select=no ;;
1137 --enable-linux-devfs) _linux_devfs=yes ;;
1138 --disable-linux-devfs) _linux_devfs=no ;;
1139 --enable-cdparanoia) _cdparanoia=yes ;;
1140 --disable-cdparanoia) _cdparanoia=no ;;
1141 --enable-cddb) _cddb=yes ;;
1142 --disable-cddb) _cddb=no ;;
1143 --enable-big-endian) _big_endian=yes ;;
1144 --disable-big-endian) _big_endian=no ;;
1145 --enable-bitmap-font) _bitmap_font=yes ;;
1146 --disable-bitmap-font) _bitmap_font=no ;;
1147 --enable-freetype) _freetype=yes ;;
1148 --disable-freetype) _freetype=no ;;
1149 --enable-fontconfig) _fontconfig=yes ;;
1150 --disable-fontconfig) _fontconfig=no ;;
1151 --enable-unrarexec) _unrar_exec=yes ;;
1152 --disable-unrarexec) _unrar_exec=no ;;
1153 --enable-ftp) _ftp=yes ;;
1154 --disable-ftp) _ftp=no ;;
1155 --enable-vstream) _vstream=yes ;;
1156 --disable-vstream) _vstream=no ;;
1157 --enable-pthreads) _pthreads=yes ;;
1158 --disable-pthreads) _pthreads=no ;;
1159 --enable-w32threads) _w32threads=yes ;;
1160 --disable-w32threads) _w32threads=no ;;
1161 --enable-ass) _ass=yes ;;
1162 --disable-ass) _ass=no ;;
1163 --enable-rpath) _rpath=yes ;;
1164 --disable-rpath) _rpath=no ;;
1166 --enable-fribidi) _fribidi=yes ;;
1167 --disable-fribidi) _fribidi=no ;;
1169 --enable-enca) _enca=yes ;;
1170 --disable-enca) _enca=no ;;
1172 --enable-inet6) _inet6=yes ;;
1173 --disable-inet6) _inet6=no ;;
1175 --enable-gethostbyname2) _gethostbyname2=yes ;;
1176 --disable-gethostbyname2) _gethostbyname2=no ;;
1178 --enable-dga1) _dga1=yes ;;
1179 --disable-dga1) _dga1=no ;;
1180 --enable-dga2) _dga2=yes ;;
1181 --disable-dga2) _dga2=no ;;
1183 --enable-menu) _menu=yes ;;
1184 --disable-menu) _menu=no ;;
1186 --enable-qtx) _qtx=yes ;;
1187 --disable-qtx) _qtx=no ;;
1189 --enable-coreaudio) _coreaudio=yes ;;
1190 --disable-coreaudio) _coreaudio=no ;;
1191 --enable-corevideo) _corevideo=yes ;;
1192 --disable-corevideo) _corevideo=no ;;
1193 --enable-quartz) _quartz=yes ;;
1194 --disable-quartz) _quartz=no ;;
1195 --enable-macosx-finder) _macosx_finder=yes ;;
1196 --disable-macosx-finder) _macosx_finder=no ;;
1197 --enable-macosx-bundle) _macosx_bundle=yes ;;
1198 --disable-macosx-bundle) _macosx_bundle=no ;;
1200 --enable-maemo) _maemo=yes ;;
1201 --disable-maemo) _maemo=no ;;
1203 --enable-sortsub) _sortsub=yes ;;
1204 --disable-sortsub) _sortsub=no ;;
1206 --enable-crash-debug) _crash_debug=yes ;;
1207 --disable-crash-debug) _crash_debug=no ;;
1208 --enable-sighandler) _sighandler=yes ;;
1209 --disable-sighandler) _sighandler=no ;;
1210 --enable-win32dll) _win32dll=yes ;;
1211 --disable-win32dll) _win32dll=no ;;
1213 --enable-sse) _sse=yes ;;
1214 --disable-sse) _sse=no ;;
1215 --enable-sse2) _sse2=yes ;;
1216 --disable-sse2) _sse2=no ;;
1217 --enable-ssse3) _ssse3=yes ;;
1218 --disable-ssse3) _ssse3=no ;;
1219 --enable-mmxext) _mmxext=yes ;;
1220 --disable-mmxext) _mmxext=no ;;
1221 --enable-3dnow) _3dnow=yes ;;
1222 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1223 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1224 --disable-3dnowext) _3dnowext=no ;;
1225 --enable-cmov) _cmov=yes ;;
1226 --disable-cmov) _cmov=no ;;
1227 --enable-fast-cmov) _fast_cmov=yes ;;
1228 --disable-fast-cmov) _fast_cmov=no ;;
1229 --enable-fast-clz) _fast_clz=yes ;;
1230 --disable-fast-clz) _fast_clz=no ;;
1231 --enable-altivec) _altivec=yes ;;
1232 --disable-altivec) _altivec=no ;;
1233 --enable-armv5te) _armv5te=yes ;;
1234 --disable-armv5te) _armv5te=no ;;
1235 --enable-armv6) _armv6=yes ;;
1236 --disable-armv6) _armv6=no ;;
1237 --enable-armv6t2) _armv6t2=yes ;;
1238 --disable-armv6t2) _armv6t2=no ;;
1239 --enable-armvfp) _armvfp=yes ;;
1240 --disable-armvfp) _armvfp=no ;;
1241 --enable-neon) neon=yes ;;
1242 --disable-neon) neon=no ;;
1243 --enable-iwmmxt) _iwmmxt=yes ;;
1244 --disable-iwmmxt) _iwmmxt=no ;;
1245 --enable-mmx) _mmx=yes ;;
1246 --disable-mmx) # 3Dnow! and MMX2 require MMX
1247 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1250 echo "Unknown parameter: $ac_option"
1251 exit 1
1254 esac
1255 done
1257 if test "$_gui" = yes ; then
1258 die "Internal GUI was removed from MPlayer. Please use one of many available\n frontends\
1259 (http://www.mplayerhq.hu/design7/projects.html#mplayer_frontends)."
1262 # Atmos: moved this here, to be correct, if --prefix is specified
1263 test -z "$_bindir" && _bindir="$_prefix/bin"
1264 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1265 test -z "$_mandir" && _mandir="$_prefix/share/man"
1266 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1267 test -z "$_libdir" && _libdir="$_prefix/lib"
1268 test -z "$_localedir" && _localedir="$_prefix/share/locale"
1270 # Determine our OS name and CPU architecture
1271 if test -z "$_target" ; then
1272 # OS name
1273 system_name=$(uname -s 2>&1)
1274 case "$system_name" in
1275 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1277 Haiku)
1278 system_name=BeOS
1280 IRIX*)
1281 system_name=IRIX
1283 GNU/kFreeBSD)
1284 system_name=FreeBSD
1286 HP-UX*)
1287 system_name=HP-UX
1289 [cC][yY][gG][wW][iI][nN]*)
1290 system_name=CYGWIN
1292 MINGW32*)
1293 system_name=MINGW32
1295 OS/2*)
1296 system_name=OS/2
1299 system_name="$system_name-UNKNOWN"
1301 esac
1304 # host's CPU/instruction set
1305 host_arch=$(uname -p 2>&1)
1306 case "$host_arch" in
1307 i386|sparc|ppc|alpha|arm|mips|vax)
1309 powerpc) # Darwin returns 'powerpc'
1310 host_arch=ppc
1312 *) # uname -p on Linux returns 'unknown' for the processor type,
1313 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1315 # Maybe uname -m (machine hardware name) returns something we
1316 # recognize.
1318 # x86/x86pc is used by QNX
1319 case "$(uname -m 2>&1)" in
1320 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 ;;
1321 ia64) host_arch=ia64 ;;
1322 macppc|ppc) host_arch=ppc ;;
1323 ppc64) host_arch=ppc64 ;;
1324 alpha) host_arch=alpha ;;
1325 sparc) host_arch=sparc ;;
1326 sparc64) host_arch=sparc64 ;;
1327 parisc*|hppa*|9000*) host_arch=hppa ;;
1328 arm*|zaurus|cats) host_arch=arm ;;
1329 sh3|sh4|sh4a) host_arch=sh ;;
1330 s390) host_arch=s390 ;;
1331 s390x) host_arch=s390x ;;
1332 *mips*) host_arch=mips ;;
1333 vax) host_arch=vax ;;
1334 xtensa*) host_arch=xtensa ;;
1335 *) host_arch=UNKNOWN ;;
1336 esac
1338 esac
1339 else # if test -z "$_target"
1340 system_name=$(echo $_target | cut -d '-' -f 2)
1341 case "$(echo $system_name | tr A-Z a-z)" in
1342 linux) system_name=Linux ;;
1343 freebsd) system_name=FreeBSD ;;
1344 gnu/kfreebsd) system_name=FreeBSD ;;
1345 netbsd) system_name=NetBSD ;;
1346 bsd/os) system_name=BSD/OS ;;
1347 openbsd) system_name=OpenBSD ;;
1348 dragonfly) system_name=DragonFly ;;
1349 sunos) system_name=SunOS ;;
1350 qnx) system_name=QNX ;;
1351 morphos) system_name=MorphOS ;;
1352 amigaos) system_name=AmigaOS ;;
1353 mingw32*) system_name=MINGW32 ;;
1354 esac
1355 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1356 host_arch=$(echo $_target | cut -d '-' -f 1)
1357 if test $(echo $host_arch) != "x86_64" ; then
1358 host_arch=$(echo $host_arch | tr '_' '-')
1362 extra_cflags="-I. $extra_cflags"
1363 _timer=timer-linux.c
1364 _getch=getch2.c
1365 if freebsd ; then
1366 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1367 extra_cflags="$extra_cflags -I/usr/local/include"
1370 if netbsd || dragonfly ; then
1371 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1372 extra_cflags="$extra_cflags -I/usr/pkg/include"
1375 if darwin; then
1376 extra_cflags="-mdynamic-no-pic -falign-loops=16 -shared-libgcc $extra_cflags"
1377 _timer=timer-darwin.c
1380 if aix ; then
1381 extra_ldflags="$extra_ldflags -lC"
1384 if irix ; then
1385 _ranlib='ar -r'
1386 elif linux ; then
1387 _ranlib='true'
1390 if win32 ; then
1391 _exesuf=".exe"
1392 extra_cflags="$extra_cflags -fno-common"
1393 # -lwinmm is always needed for osdep/timer-win2.c
1394 extra_ldflags="$extra_ldflags -lwinmm"
1395 _pe_executable=yes
1396 _timer=timer-win2.c
1397 _priority=yes
1398 def_dos_paths="#define HAVE_DOS_PATHS 1"
1399 def_priority="#define CONFIG_PRIORITY 1"
1402 if mingw32 ; then
1403 _getch=getch2-win.c
1404 _need_shmem=no
1407 if amigaos ; then
1408 _select=no
1409 _sighandler=no
1410 _stream_cache=no
1411 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1412 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1415 if qnx ; then
1416 extra_ldflags="$extra_ldflags -lph"
1419 if os2 ; then
1420 _exesuf=".exe"
1421 _getch=getch2-os2.c
1422 _need_shmem=no
1423 _priority=yes
1424 def_dos_paths="#define HAVE_DOS_PATHS 1"
1425 def_priority="#define CONFIG_PRIORITY 1"
1428 for I in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1429 test "$I" && break
1430 done
1433 TMPLOG="configure.log"
1434 TMPC="$I/mplayer-conf-$RANDOM-$$.c"
1435 TMPCPP="$I/mplayer-conf-$RANDOM-$$.cpp"
1436 TMPEXE="$I/mplayer-conf-$RANDOM-$$$_exesuf"
1437 TMPH="$I/mplayer-conf-$RANDOM-$$.h"
1438 TMPS="$I/mplayer-conf-$RANDOM-$$.S"
1440 rm -f "$TMPLOG"
1441 echo configuration: $_configuration > "$TMPLOG"
1442 echo >> "$TMPLOG"
1445 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1446 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1450 # Checking CC version...
1451 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1452 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1453 echocheck "$_cc version"
1454 cc_vendor=intel
1455 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1456 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1457 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1458 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1459 # TODO verify older icc/ecc compatibility
1460 case $cc_version in
1462 cc_version="v. ?.??, bad"
1463 cc_fail=yes
1465 10.1|11.0|11.1)
1466 cc_version="$cc_version, ok"
1469 cc_version="$cc_version, bad"
1470 cc_fail=yes
1472 esac
1473 echores "$cc_version"
1474 else
1475 for _cc in "$_cc" gcc cc ; do
1476 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1477 if test "$cc_name_tmp" = "gcc"; then
1478 cc_name=$cc_name_tmp
1479 echocheck "$_cc version"
1480 cc_vendor=gnu
1481 cc_version=$($_cc -dumpversion 2>&1)
1482 case $cc_version in
1483 2.96*)
1484 cc_fail=yes
1487 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1488 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1489 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1491 esac
1492 echores "$cc_version"
1493 break
1495 cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
1496 if test "$cc_name_tmp" = "Sun C"; then
1497 echocheck "$_cc version"
1498 cc_vendor=sun
1499 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 4)
1500 _res_comment="experimental support only"
1501 echores "Sun C $cc_version"
1502 break
1504 done
1505 fi # icc
1506 test "$cc_fail" = yes && die "unsupported compiler version"
1508 if test -z "$_target" && x86 ; then
1509 cat > $TMPC << EOF
1510 int main(void) {
1511 int test[(int)sizeof(char *)-7];
1512 return 0;
1515 cc_check && host_arch=x86_64 || host_arch=i386
1518 echo "Detected operating system: $system_name"
1519 echo "Detected host architecture: $host_arch"
1521 echocheck "host cc"
1522 test "$_host_cc" || _host_cc=$_cc
1523 echores $_host_cc
1525 echocheck "cross compilation"
1526 if test $_cross_compile = auto ; then
1527 cat > $TMPC << EOF
1528 int main(void) { return 0; }
1530 _cross_compile=yes
1531 cc_check && "$TMPEXE" && _cross_compile=no
1533 echores $_cross_compile
1535 if test $_cross_compile = yes; then
1536 tmp_run() {
1537 return 0
1541 # ---
1543 # now that we know what compiler should be used for compilation, try to find
1544 # out which assembler is used by the $_cc compiler
1545 if test "$_as" = auto ; then
1546 _as=$($_cc -print-prog-name=as)
1547 test -z "$_as" && _as=as
1550 if test "$_nm" = auto ; then
1551 _nm=$($_cc -print-prog-name=nm)
1552 test -z "$_nm" && _nm=nm
1555 # XXX: this should be ok..
1556 _cpuinfo="echo"
1558 if test "$_runtime_cpudetection" = no ; then
1560 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1561 # FIXME: Remove the cygwin check once AMD CPUs are supported
1562 if test -r /proc/cpuinfo && ! cygwin; then
1563 # Linux with /proc mounted, extract CPU information from it
1564 _cpuinfo="cat /proc/cpuinfo"
1565 elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
1566 # FreeBSD with Linux emulation /proc mounted,
1567 # extract CPU information from it
1568 # Don't use it on x86 though, it never reports 3Dnow
1569 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1570 elif darwin && ! x86 ; then
1571 # use hostinfo on Darwin
1572 _cpuinfo="hostinfo"
1573 elif aix; then
1574 # use 'lsattr' on AIX
1575 _cpuinfo="lsattr -E -l proc0 -a type"
1576 elif x86; then
1577 # all other OSes try to extract CPU information from a small helper
1578 # program cpuinfo instead
1579 $_cc -o cpuinfo$_exesuf cpuinfo.c
1580 _cpuinfo="./cpuinfo$_exesuf"
1583 if x86 ; then
1584 # gather more CPU information
1585 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1586 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1587 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1588 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1589 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1591 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1593 pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1594 -e s/xmm/sse/ -e s/kni/sse/)
1596 for ext in $pparam ; do
1597 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1598 done
1600 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1601 test $_sse = kernel_check && _mmxext=kernel_check
1603 echocheck "CPU vendor"
1604 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1606 echocheck "CPU type"
1607 echores "$pname"
1610 fi # test "$_runtime_cpudetection" = no
1612 if x86 && test "$_runtime_cpudetection" = no ; then
1613 extcheck() {
1614 if test "$1" = kernel_check ; then
1615 echocheck "kernel support of $2"
1616 cat > $TMPC <<EOF
1617 #include <stdlib.h>
1618 #include <signal.h>
1619 void catch() { exit(1); }
1620 int main(void) {
1621 signal(SIGILL, catch);
1622 __asm__ volatile ("$3":::"memory"); return 0;
1626 if cc_check && tmp_run ; then
1627 eval _$2=yes
1628 echores "yes"
1629 _optimizing="$_optimizing $2"
1630 return 0
1631 else
1632 eval _$2=no
1633 echores "failed"
1634 echo "It seems that your kernel does not correctly support $2."
1635 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1636 return 1
1639 return 0
1642 extcheck $_mmx "mmx" "emms"
1643 extcheck $_mmxext "mmxext" "sfence"
1644 extcheck $_3dnow "3dnow" "femms"
1645 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1646 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1647 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1648 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1649 extcheck $_cmov "cmov" "cmovb %%eax,%%ebx"
1651 echocheck "mtrr support"
1652 if test "$_mtrr" = kernel_check ; then
1653 _mtrr="yes"
1654 _optimizing="$_optimizing mtrr"
1656 echores "$_mtrr"
1658 if test "$_gcc3_ext" != ""; then
1659 # if we had to disable sse/sse2 because the active kernel does not
1660 # support this instruction set extension, we also have to tell
1661 # gcc3 to not generate sse/sse2 instructions for normal C code
1662 cat > $TMPC << EOF
1663 int main(void) { return 0; }
1665 cc_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1671 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1672 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1673 arch_all='X86 IA64 SPARC ARM AVR32 SH4 PPC ALPHA MIPS PA_RISC S390 S390X VAX BFIN XTENSA TOMI GENERIC'
1674 subarch_all='X86_32 X86_64 PPC64'
1675 case "$host_arch" in
1676 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1677 arch='x86'
1678 subarch='x86_32'
1679 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1680 iproc=486
1681 proc=i486
1684 if test "$_runtime_cpudetection" = no ; then
1685 case "$pvendor" in
1686 AuthenticAMD)
1687 case "$pfamily" in
1688 3) proc=i386 iproc=386 ;;
1689 4) proc=i486 iproc=486 ;;
1690 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1691 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1692 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1693 proc=k6-3
1694 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1695 proc=geode
1696 elif test "$pmodel" -ge 8; then
1697 proc=k6-2
1698 elif test "$pmodel" -ge 6; then
1699 proc=k6
1700 else
1701 proc=i586
1704 6) iproc=686
1705 # It's a bit difficult to determine the correct type of Family 6
1706 # AMD CPUs just from their signature. Instead, we check directly
1707 # whether it supports SSE.
1708 if test "$_sse" = yes; then
1709 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1710 proc=athlon-xp
1711 else
1712 # Again, gcc treats athlon and athlon-tbird similarly.
1713 proc=athlon
1716 15) iproc=686
1717 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1718 # caught and remedied in the optimization tests below.
1719 proc=k8
1722 *) proc=amdfam10 iproc=686
1723 test $_fast_clz = "auto" && _fast_clz=yes
1725 esac
1727 GenuineIntel)
1728 case "$pfamily" in
1729 3) proc=i386 iproc=386 ;;
1730 4) proc=i486 iproc=486 ;;
1731 5) iproc=586
1732 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1733 proc=pentium-mmx # 4 is desktop, 8 is mobile
1734 else
1735 proc=i586
1738 6) iproc=686
1739 if test "$pmodel" -ge 15; then
1740 proc=core2
1741 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1742 proc=pentium-m
1743 elif test "$pmodel" -ge 7; then
1744 proc=pentium3
1745 elif test "$pmodel" -ge 3; then
1746 proc=pentium2
1747 else
1748 proc=i686
1750 test $_fast_clz = "auto" && _fast_clz=yes
1752 15) iproc=686
1753 # A nocona in 32-bit mode has no more capabilities than a prescott.
1754 if test "$pmodel" -ge 3; then
1755 proc=prescott
1756 else
1757 proc=pentium4
1758 test $_fast_clz = "auto" && _fast_clz=yes
1760 test $_fast_cmov = "auto" && _fast_cmov=no
1762 *) proc=prescott iproc=686 ;;
1763 esac
1765 CentaurHauls)
1766 case "$pfamily" in
1767 5) iproc=586
1768 if test "$pmodel" -ge 8; then
1769 proc=winchip2
1770 elif test "$pmodel" -ge 4; then
1771 proc=winchip-c6
1772 else
1773 proc=i586
1776 6) iproc=686
1777 if test "$pmodel" -ge 9; then
1778 proc=c3-2
1779 else
1780 proc=c3
1781 iproc=586
1784 *) proc=i686 iproc=i686 ;;
1785 esac
1787 unknown)
1788 case "$pfamily" in
1789 3) proc=i386 iproc=386 ;;
1790 4) proc=i486 iproc=486 ;;
1791 *) proc=i586 iproc=586 ;;
1792 esac
1795 proc=i586 iproc=586 ;;
1796 esac
1797 test $_fast_clz = "auto" && _fast_clz=no
1798 fi # test "$_runtime_cpudetection" = no
1801 # check that gcc supports our CPU, if not, fall back to earlier ones
1802 # LGB: check -mcpu and -march swithing step by step with enabling
1803 # to fall back till 386.
1805 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1807 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1808 cpuopt=-mtune
1809 else
1810 cpuopt=-mcpu
1813 echocheck "GCC & CPU optimization abilities"
1814 cat > $TMPC << EOF
1815 int main(void) { return 0; }
1817 if test "$_runtime_cpudetection" = no ; then
1818 if test $cc_vendor != "intel" ; then
1819 cc_check -march=native && proc=native
1821 if test "$proc" = "k8"; then
1822 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1824 if test "$proc" = "athlon-xp"; then
1825 cc_check -march=$proc $cpuopt=$proc || proc=athlon
1827 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1828 cc_check -march=$proc $cpuopt=$proc || proc=k6
1830 if test "$proc" = "k6" || test "$proc" = "c3"; then
1831 if ! cc_check -march=$proc $cpuopt=$proc; then
1832 if cc_check -march=i586 $cpuopt=i686; then
1833 proc=i586-i686
1834 else
1835 proc=i586
1839 if test "$proc" = "prescott" ; then
1840 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
1842 if test "$proc" = "core2" ; then
1843 cc_check -march=$proc $cpuopt=$proc || proc=pentium-m
1845 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
1846 cc_check -march=$proc $cpuopt=$proc || proc=i686
1848 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1849 cc_check -march=$proc $cpuopt=$proc || proc=i586
1851 if test "$proc" = "i586"; then
1852 cc_check -march=$proc $cpuopt=$proc || proc=i486
1854 if test "$proc" = "i486" ; then
1855 cc_check -march=$proc $cpuopt=$proc || proc=i386
1857 if test "$proc" = "i386" ; then
1858 cc_check -march=$proc $cpuopt=$proc || proc=error
1860 if test "$proc" = "error" ; then
1861 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1862 _mcpu=""
1863 _march=""
1864 _optimizing=""
1865 elif test "$proc" = "i586-i686"; then
1866 _march="-march=i586"
1867 _mcpu="$cpuopt=i686"
1868 _optimizing="$proc"
1869 else
1870 _march="-march=$proc"
1871 _mcpu="$cpuopt=$proc"
1872 _optimizing="$proc"
1874 else # if test "$_runtime_cpudetection" = no
1875 _mcpu="$cpuopt=generic"
1876 # at least i486 required, for bswap instruction
1877 _march="-march=i486"
1878 cc_check $_mcpu || _mcpu="$cpuopt=i686"
1879 cc_check $_mcpu || _mcpu=""
1880 cc_check $_march $_mcpu || _march=""
1883 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1884 ## autodetected mcpu/march parameters
1885 if test "$_target" ; then
1886 # TODO: it may be a good idea to check GCC and fall back in all cases
1887 if test "$host_arch" = "i586-i686"; then
1888 _march="-march=i586"
1889 _mcpu="$cpuopt=i686"
1890 else
1891 _march="-march=$host_arch"
1892 _mcpu="$cpuopt=$host_arch"
1895 proc="$host_arch"
1897 case "$proc" in
1898 i386) iproc=386 ;;
1899 i486) iproc=486 ;;
1900 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1901 i686|athlon*|pentium*) iproc=686 ;;
1902 *) iproc=586 ;;
1903 esac
1906 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1907 _fast_cmov="yes"
1908 else
1909 _fast_cmov="no"
1911 test $_fast_clz = "auto" && _fast_clz=yes
1913 echores "$proc"
1916 ia64)
1917 arch='ia64'
1918 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1919 iproc='ia64'
1922 x86_64|amd64)
1923 arch='x86'
1924 subarch='x86_64'
1925 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1926 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1927 iproc='x86_64'
1929 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1930 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1931 cpuopt=-mtune
1932 else
1933 cpuopt=-mcpu
1935 if test "$_runtime_cpudetection" = no ; then
1936 case "$pvendor" in
1937 AuthenticAMD)
1938 case "$pfamily" in
1939 15) proc=k8
1940 test $_fast_clz = "auto" && _fast_clz=no
1942 *) proc=amdfam10;;
1943 esac
1945 GenuineIntel)
1946 case "$pfamily" in
1947 6) proc=core2;;
1949 # 64-bit prescotts exist, but as far as GCC is concerned they
1950 # have the same capabilities as a nocona.
1951 proc=nocona
1952 test $_fast_cmov = "auto" && _fast_cmov=no
1953 test $_fast_clz = "auto" && _fast_clz=no
1955 esac
1958 proc=error;;
1959 esac
1960 fi # test "$_runtime_cpudetection" = no
1962 echocheck "GCC & CPU optimization abilities"
1963 cat > $TMPC << EOF
1964 int main(void) { return 0; }
1966 # This is a stripped-down version of the i386 fallback.
1967 if test "$_runtime_cpudetection" = no ; then
1968 if test $cc_vendor != "intel" ; then
1969 cc_check -march=native && proc=native
1971 # --- AMD processors ---
1972 if test "$proc" = "k8"; then
1973 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1975 # This will fail if gcc version < 3.3, which is ok because earlier
1976 # versions don't really support 64-bit on amd64.
1977 # Is this a valid assumption? -Corey
1978 if test "$proc" = "athlon-xp"; then
1979 cc_check -march=$proc $cpuopt=$proc || proc=error
1981 # --- Intel processors ---
1982 if test "$proc" = "core2"; then
1983 cc_check -march=$proc $cpuopt=$proc || proc=x86-64
1985 if test "$proc" = "x86-64"; then
1986 cc_check -march=$proc $cpuopt=$proc || proc=nocona
1988 if test "$proc" = "nocona"; then
1989 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
1991 if test "$proc" = "pentium4"; then
1992 cc_check -march=$proc $cpuopt=$proc || proc=error
1995 _march="-march=$proc"
1996 _mcpu="$cpuopt=$proc"
1997 if test "$proc" = "error" ; then
1998 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1999 _mcpu=""
2000 _march=""
2002 else # if test "$_runtime_cpudetection" = no
2003 # x86-64 is an undocumented option, an intersection of k8 and nocona.
2004 _march="-march=x86-64"
2005 _mcpu="$cpuopt=generic"
2006 cc_check $_mcpu || _mcpu="x86-64"
2007 cc_check $_mcpu || _mcpu=""
2008 cc_check $_march $_mcpu || _march=""
2011 _optimizing="$proc"
2012 test $_fast_cmov = "auto" && _fast_cmov=yes
2013 test $_fast_clz = "auto" && _fast_clz=yes
2015 echores "$proc"
2018 sparc|sparc64)
2019 arch='sparc'
2020 iproc='sparc'
2021 if test "$host_arch" = "sparc64" ; then
2022 _vis='yes'
2023 proc='ultrasparc'
2024 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2025 elif sunos ; then
2026 echocheck "CPU type"
2027 karch=$(uname -m)
2028 case "$(echo $karch)" in
2029 sun4) proc=v7 ;;
2030 sun4c) proc=v7 ;;
2031 sun4d) proc=v8 ;;
2032 sun4m) proc=v8 ;;
2033 sun4u) proc=ultrasparc _vis='yes' ;;
2034 sun4v) proc=v9 ;;
2035 *) proc=v8 ;;
2036 esac
2037 echores "$proc"
2038 else
2039 proc=v8
2041 _mcpu="-mcpu=$proc"
2042 _optimizing="$proc"
2045 arm*)
2046 arch='arm'
2047 iproc='arm'
2050 avr32)
2051 arch='avr32'
2052 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2053 iproc='avr32'
2054 test $_fast_clz = "auto" && _fast_clz=yes
2057 sh|sh4)
2058 arch='sh4'
2059 iproc='sh4'
2062 ppc|ppc64|powerpc|powerpc64)
2063 arch='ppc'
2064 def_dcbzl='#define HAVE_DCBZL 0'
2065 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2066 iproc='ppc'
2068 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2069 subarch='ppc64'
2070 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2072 echocheck "CPU type"
2073 case $system_name in
2074 Linux)
2075 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2076 if test -n "$($_cpuinfo | grep altivec)"; then
2077 test $_altivec = auto && _altivec=yes
2080 Darwin)
2081 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2082 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2083 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2084 test $_altivec = auto && _altivec=yes
2087 NetBSD)
2088 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2089 case $cc_version in
2090 2*|3.0*|3.1*|3.2*|3.3*)
2093 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2094 test $_altivec = auto && _altivec=yes
2097 esac
2099 AIX)
2100 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2102 esac
2103 if test "$_altivec" = yes; then
2104 echores "$proc altivec"
2105 else
2106 _altivec=no
2107 echores "$proc"
2110 echocheck "GCC & CPU optimization abilities"
2112 if test -n "$proc"; then
2113 case "$proc" in
2114 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2115 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2116 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2117 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2118 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2119 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2120 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2121 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2122 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2123 *) ;;
2124 esac
2125 # gcc 3.1(.1) and up supports 7400 and 7450
2126 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2127 case "$proc" in
2128 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2129 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2130 *) ;;
2131 esac
2133 # gcc 3.2 and up supports 970
2134 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2135 case "$proc" in
2136 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2137 def_dcbzl='#define HAVE_DCBZL 1' ;;
2138 *) ;;
2139 esac
2141 # gcc 3.3 and up supports POWER4
2142 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2143 case "$proc" in
2144 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2145 *) ;;
2146 esac
2148 # gcc 3.4 and up supports 440*
2149 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2150 case "$proc" in
2151 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2152 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2153 *) ;;
2154 esac
2156 # gcc 4.0 and up supports POWER5
2157 if test "$_cc_major" -ge "4"; then
2158 case "$proc" in
2159 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2160 *) ;;
2161 esac
2165 if test -n "$_mcpu"; then
2166 _optimizing=$(echo $_mcpu | cut -c 8-)
2167 echores "$_optimizing"
2168 else
2169 echores "none"
2172 test $_fast_clz = "auto" && _fast_clz=yes
2176 alpha*)
2177 arch='alpha'
2178 iproc='alpha'
2179 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2181 echocheck "CPU type"
2182 cat > $TMPC << EOF
2183 int main(void) {
2184 unsigned long ver, mask;
2185 __asm__ ("implver %0" : "=r" (ver));
2186 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2187 printf("%ld-%x\n", ver, ~mask);
2188 return 0;
2191 $_cc -o "$TMPEXE" "$TMPC"
2192 case $("$TMPEXE") in
2194 0-0) proc="ev4"; _mvi="0";;
2195 1-0) proc="ev5"; _mvi="0";;
2196 1-1) proc="ev56"; _mvi="0";;
2197 1-101) proc="pca56"; _mvi="1";;
2198 2-303) proc="ev6"; _mvi="1";;
2199 2-307) proc="ev67"; _mvi="1";;
2200 2-1307) proc="ev68"; _mvi="1";;
2201 esac
2202 echores "$proc"
2204 echocheck "GCC & CPU optimization abilities"
2205 if test "$proc" = "ev68" ; then
2206 cc_check -mcpu=$proc || proc=ev67
2208 if test "$proc" = "ev67" ; then
2209 cc_check -mcpu=$proc || proc=ev6
2211 _mcpu="-mcpu=$proc"
2212 echores "$proc"
2214 test $_fast_clz = "auto" && _fast_clz=yes
2216 _optimizing="$proc"
2219 mips)
2220 arch='mips'
2221 iproc='mips'
2223 if irix ; then
2224 echocheck "CPU type"
2225 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2226 case "$(echo $proc)" in
2227 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2228 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2229 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2230 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2231 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2232 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2233 esac
2234 # gcc < 3.x does not support -mtune.
2235 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2236 _mcpu=''
2238 echores "$proc"
2241 test $_fast_clz = "auto" && _fast_clz=yes
2245 hppa)
2246 arch='pa_risc'
2247 iproc='PA-RISC'
2250 s390)
2251 arch='s390'
2252 iproc='390'
2255 s390x)
2256 arch='s390x'
2257 iproc='390x'
2260 vax)
2261 arch='vax'
2262 iproc='vax'
2265 xtensa)
2266 arch='xtensa'
2267 iproc='xtensa'
2270 generic)
2271 arch='generic'
2275 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2276 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2277 die "unsupported architecture $host_arch"
2279 esac # case "$host_arch" in
2281 if test "$_runtime_cpudetection" = yes ; then
2282 if x86 ; then
2283 test "$_cmov" != no && _cmov=yes
2284 x86_32 && _cmov=no
2285 test "$_mmx" != no && _mmx=yes
2286 test "$_3dnow" != no && _3dnow=yes
2287 test "$_3dnowext" != no && _3dnowext=yes
2288 test "$_mmxext" != no && _mmxext=yes
2289 test "$_sse" != no && _sse=yes
2290 test "$_sse2" != no && _sse2=yes
2291 test "$_ssse3" != no && _ssse3=yes
2292 test "$_mtrr" != no && _mtrr=yes
2294 if ppc; then
2295 _altivec=yes
2300 # endian testing
2301 echocheck "byte order"
2302 if test "$_big_endian" = auto ; then
2303 cat > $TMPC <<EOF
2304 short ascii_name[] = { (('M'<<8)|'P'),(('l'<<8)|'a'),(('y'<<8)|'e'),(('r'<<8)|'B'),
2305 (('i'<<8)|'g'),(('E'<<8)|'n'),(('d'<<8)|'i'),(('a'<<8)|'n'),0};
2306 int main(void) { return (int)ascii_name; }
2308 if cc_check ; then
2309 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2310 _big_endian=yes
2311 else
2312 _big_endian=no
2314 else
2315 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2318 if test "$_big_endian" = yes ; then
2319 _byte_order='big-endian'
2320 def_words_endian='#define WORDS_BIGENDIAN 1'
2321 def_bigendian='#define HAVE_BIGENDIAN 1'
2322 else
2323 _byte_order='little-endian'
2324 def_words_endian='#undef WORDS_BIGENDIAN'
2325 def_bigendian='#define HAVE_BIGENDIAN 0'
2327 echores "$_byte_order"
2330 echocheck "extern symbol prefix"
2331 cat > $TMPC << EOF
2332 int ff_extern;
2334 cc_check -c || die "Symbol mangling check failed."
2335 sym=$($_nm -P -g $TMPEXE)
2336 extern_prefix=${sym%%ff_extern*}
2337 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2338 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2339 echores $extern_prefix
2342 echocheck "assembler support of -pipe option"
2343 cat > $TMPC << EOF
2344 int main(void) { return 0; }
2346 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2347 cc_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2350 echocheck "compiler support of named assembler arguments"
2351 _named_asm_args=yes
2352 def_named_asm_args="#define NAMED_ASM_ARGS 1"
2353 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2354 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2355 _named_asm_args=no
2356 def_named_asm_args="#undef NAMED_ASM_ARGS"
2358 echores $_named_asm_args
2361 if darwin && test "$cc_vendor" = "gnu" ; then
2362 echocheck "GCC support of -mstackrealign"
2363 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2364 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2365 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2366 # wrong code with this flag, but this can be worked around by adding
2367 # -fno-unit-at-a-time as described in the blog post at
2368 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2369 cat > $TMPC << EOF
2370 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2371 int main(void) { return foo3(1,2,3) == 3 ? 0 : 1; }
2373 cc_check -O2 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2374 test -z "$cflags_stackrealign" && cc_check -O2 -mstackrealign -fno-unit-at-a-time \
2375 && tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2376 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2377 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2380 # Checking for CFLAGS
2381 _install_strip="-s"
2382 if test "$_profile" != "" || test "$_debug" != "" ; then
2383 CFLAGS="-W -Wall -O2 $_march $_mcpu $_pipe $_debug $_profile"
2384 _install_strip=
2385 elif test -z "$CFLAGS" ; then
2386 if test "$cc_vendor" = "intel" ; then
2387 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer -wd167 -wd556 -wd144"
2388 elif test "$cc_vendor" = "sun" ; then
2389 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2390 elif test "$cc_vendor" != "gnu" ; then
2391 CFLAGS="-O2 $_march $_mcpu $_pipe"
2392 else
2393 CFLAGS="-Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2394 extra_ldflags="$extra_ldflags -ffast-math"
2396 else
2397 _warn_CFLAGS=yes
2400 cat > $TMPC << EOF
2401 int main(void) { return 0; }
2403 if test "$cc_vendor" = "gnu" ; then
2404 cc_check -std=gnu99 && CFLAGS="-std=gnu99 $CFLAGS"
2405 cc_check -Wno-pointer-sign && CFLAGS="-Wno-pointer-sign $CFLAGS"
2406 cc_check -Wdisabled-optimization && CFLAGS="-Wdisabled-optimization $CFLAGS"
2407 cc_check -Wundef && CFLAGS="-Wundef $CFLAGS"
2408 cc_check -Wmissing-prototypes && CFLAGS="-Wmissing-prototypes $CFLAGS"
2409 cc_check -Wstrict-prototypes && CFLAGS="-Wstrict-prototypes $CFLAGS"
2410 else
2411 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2414 cc_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2415 cc_check -MD -MP && CFLAGS="-MD -MP $CFLAGS"
2418 if test -n "$LDFLAGS" ; then
2419 extra_ldflags="$extra_ldflags $LDFLAGS"
2420 _warn_CFLAGS=yes
2421 elif test "$cc_vendor" = "intel" ; then
2422 extra_ldflags="$extra_ldflags -i-static"
2424 if test -n "$CPPFLAGS" ; then
2425 extra_cflags="$extra_cflags $CPPFLAGS"
2426 _warn_CFLAGS=yes
2431 if x86_32 ; then
2432 # Checking assembler (_as) compatibility...
2433 # Added workaround for older as that reads from stdin by default - atmos
2434 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2435 echocheck "assembler ($_as $as_version)"
2437 _pref_as_version='2.9.1'
2438 echo 'nop' > $TMPS
2439 if test "$_mmx" = yes ; then
2440 echo 'emms' >> $TMPS
2442 if test "$_3dnow" = yes ; then
2443 _pref_as_version='2.10.1'
2444 echo 'femms' >> $TMPS
2446 if test "$_3dnowext" = yes ; then
2447 _pref_as_version='2.10.1'
2448 echo 'pswapd %mm0, %mm0' >> $TMPS
2450 if test "$_mmxext" = yes ; then
2451 _pref_as_version='2.10.1'
2452 echo 'movntq %mm0, (%eax)' >> $TMPS
2454 if test "$_sse" = yes ; then
2455 _pref_as_version='2.10.1'
2456 echo 'xorps %xmm0, %xmm0' >> $TMPS
2458 #if test "$_sse2" = yes ; then
2459 # _pref_as_version='2.11'
2460 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2462 if test "$_cmov" = yes ; then
2463 _pref_as_version='2.10.1'
2464 echo 'cmovb %eax, %ebx' >> $TMPS
2466 if test "$_ssse3" = yes ; then
2467 _pref_as_version='2.16.92'
2468 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2470 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2472 if test "$as_verc_fail" != yes ; then
2473 echores "ok"
2474 else
2475 _res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2476 echores "failed"
2477 die "obsolete binutils version"
2480 fi #if x86_32
2482 echocheck ".align is a power of two"
2483 if test "$_asmalign_pot" = auto ; then
2484 _asmalign_pot=no
2485 cat > $TMPC << EOF
2486 int main(void) { __asm__ (".align 3"); return 0; }
2488 cc_check && _asmalign_pot=yes
2490 if test "$_asmalign_pot" = "yes" ; then
2491 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2492 else
2493 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2495 echores $_asmalign_pot
2497 if x86 ; then
2498 echocheck "10 assembler operands"
2499 ten_operands=no
2500 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2501 cat > $TMPC << EOF
2502 int main(void) {
2503 int x=0;
2504 __asm__ volatile(
2506 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2508 return 0;
2511 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2512 echores $ten_operands
2514 echocheck "ebx availability"
2515 ebx_available=no
2516 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2517 cat > $TMPC << EOF
2518 int main(void) {
2519 int x;
2520 __asm__ volatile(
2521 "xor %0, %0"
2522 :"=b"(x)
2523 // just adding ebx to clobber list seems unreliable with some
2524 // compilers, e.g. Haiku's gcc 2.95
2526 // and the above check does not work for OSX 64 bit...
2527 __asm__ volatile("":::"%ebx");
2528 return 0;
2531 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2532 echores $ebx_available
2534 echocheck "PIC"
2535 pic=no
2536 cat > $TMPC << EOF
2537 int main(void) {
2538 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2539 #error PIC not enabled
2540 #endif
2541 return 0;
2544 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2545 echores $pic
2547 echocheck "yasm"
2548 if test -z "$YASMFLAGS" ; then
2549 if darwin ; then
2550 x86_64 && objformat="macho64" || objformat="macho"
2551 elif win32 ; then
2552 objformat="win32"
2553 else
2554 objformat="elf"
2556 # currently tested for Linux x86, x86_64
2557 YASMFLAGS="-f $objformat"
2558 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2559 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2560 case "$objformat" in
2561 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2562 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2563 esac
2564 else
2565 _warn_CFLAGS=yes
2568 echo "pabsw xmm0, xmm0" > $TMPS
2569 yasm_check || _yasm=""
2570 if test $_yasm ; then
2571 def_yasm='#define HAVE_YASM 1'
2572 have_yasm="yes"
2573 echores "$_yasm"
2574 else
2575 def_yasm='#define HAVE_YASM 0'
2576 have_yasm="no"
2577 echores "no"
2580 echocheck "bswap"
2581 def_bswap='#define HAVE_BSWAP 0'
2582 echo 'bswap %eax' > $TMPS
2583 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2584 echores "$bswap"
2585 fi #if x86
2588 #FIXME: This should happen before the check for CFLAGS..
2589 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2590 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2592 # check if AltiVec is supported by the compiler, and how to enable it
2593 echocheck "GCC AltiVec flags"
2594 cat > $TMPC << EOF
2595 int main(void) { return 0; }
2597 if $(cc_check -maltivec -mabi=altivec) ; then
2598 _altivec_gcc_flags="-maltivec -mabi=altivec"
2599 # check if <altivec.h> should be included
2600 cat > $TMPC << EOF
2601 #include <altivec.h>
2602 int main(void) { return 0; }
2604 if $(cc_check $_altivec_gcc_flags) ; then
2605 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2606 inc_altivec_h='#include <altivec.h>'
2607 else
2608 cat > $TMPC << EOF
2609 int main(void) { return 0; }
2611 if $(cc_check -faltivec) ; then
2612 _altivec_gcc_flags="-faltivec"
2613 else
2614 _altivec=no
2615 _altivec_gcc_flags="none, AltiVec disabled"
2619 echores "$_altivec_gcc_flags"
2621 # check if the compiler supports braces for vector declarations
2622 cat > $TMPC << EOF
2623 $inc_altivec_h
2624 int main(void) { (vector int) {1}; return 0; }
2626 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2628 # Disable runtime cpudetection if we cannot generate AltiVec code or
2629 # AltiVec is disabled by the user.
2630 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2631 && _runtime_cpudetection=no
2633 # Show that we are optimizing for AltiVec (if enabled and supported).
2634 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2635 && _optimizing="$_optimizing altivec"
2637 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2638 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2641 if ppc ; then
2642 def_xform_asm='#define HAVE_XFORM_ASM 0'
2643 xform_asm=no
2644 echocheck "XFORM ASM support"
2645 cat > $TMPC << EOF
2646 int main(void) { __asm__ volatile ("lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)); return 0; }
2648 cc_check && xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2649 echores "$xform_asm"
2652 if arm ; then
2653 echocheck "ARM pld instruction"
2654 cat > $TMPC << EOF
2655 int main(void) { __asm__ volatile ("pld [r0]"); return 0; }
2657 pld=no
2658 cc_check && pld=yes
2659 echores "$pld"
2661 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2662 if test $_armv5te = "auto" ; then
2663 cat > $TMPC << EOF
2664 int main(void) { __asm__ volatile ("qadd r0, r0, r0"); return 0; }
2666 _armv5te=no
2667 cc_check && _armv5te=yes
2669 echores "$_armv5te"
2671 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2673 echocheck "ARMv6 (SIMD instructions)"
2674 if test $_armv6 = "auto" ; then
2675 cat > $TMPC << EOF
2676 int main(void) { __asm__ volatile ("sadd16 r0, r0, r0"); return 0; }
2678 _armv6=no
2679 cc_check && _armv6=yes
2681 echores "$_armv6"
2683 echocheck "ARMv6t2 (SIMD instructions)"
2684 if test $_armv6t2 = "auto" ; then
2685 cat > $TMPC << EOF
2686 int main(void) { __asm__ volatile ("movt r0, #0"); return 0; }
2688 _armv6t2=no
2689 cc_check && _armv6t2=yes
2691 echores "$_armv6"
2693 echocheck "ARM VFP"
2694 if test $_armvfp = "auto" ; then
2695 cat > $TMPC << EOF
2696 int main(void) { __asm__ volatile ("fadds s0, s0, s0"); return 0; }
2698 _armvfp=no
2699 cc_check && _armvfp=yes
2701 echores "$_armvfp"
2703 echocheck "ARM NEON"
2704 if test $neon = "auto" ; then
2705 cat > $TMPC << EOF
2706 int main(void) { __asm__ volatile ("vadd.i16 q0, q0, q0"); return 0; }
2708 neon=no
2709 cc_check && neon=yes
2711 echores "$neon"
2713 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2714 if test $_iwmmxt = "auto" ; then
2715 cat > $TMPC << EOF
2716 int main(void) { __asm__ volatile ("wunpckelub wr6, wr4"); return 0; }
2718 _iwmmxt=no
2719 cc_check && _iwmmxt=yes
2721 echores "$_iwmmxt"
2724 cpuexts_all='ALTIVEC MMX MMX2 AMD3DNOW AMD3DNOWEXT SSE SSE2 SSSE3 FAST_CMOV CMOV FAST_CLZ PLD ARMV5TE ARMV6 ARMV6T2 ARMVFP NEON IWMMXT MMI VIS MVI'
2725 test "$_altivec" = yes && cpuexts="ALTIVEC $cpuexts"
2726 test "$_mmx" = yes && cpuexts="MMX $cpuexts"
2727 test "$_mmxext" = yes && cpuexts="MMX2 $cpuexts"
2728 test "$_3dnow" = yes && cpuexts="AMD3DNOW $cpuexts"
2729 test "$_3dnowext" = yes && cpuexts="AMD3DNOWEXT $cpuexts"
2730 test "$_sse" = yes && cpuexts="SSE $cpuexts"
2731 test "$_sse2" = yes && cpuexts="SSE2 $cpuexts"
2732 test "$_ssse3" = yes && cpuexts="SSSE3 $cpuexts"
2733 test "$_cmov" = yes && cpuexts="CMOV $cpuexts"
2734 test "$_fast_cmov" = yes && cpuexts="FAST_CMOV $cpuexts"
2735 test "$_fast_clz" = yes && cpuexts="FAST_CLZ $cpuexts"
2736 test "$pld" = yes && cpuexts="PLD $cpuexts"
2737 test "$_armv5te" = yes && cpuexts="ARMV5TE $cpuexts"
2738 test "$_armv6" = yes && cpuexts="ARMV6 $cpuexts"
2739 test "$_armv6t2" = yes && cpuexts="ARMV6T2 $cpuexts"
2740 test "$_armvfp" = yes && cpuexts="ARMVFP $cpuexts"
2741 test "$neon" = yes && cpuexts="NEON $cpuexts"
2742 test "$_iwmmxt" = yes && cpuexts="IWMMXT $cpuexts"
2743 test "$_vis" = yes && cpuexts="VIS $cpuexts"
2744 test "$_mvi" = yes && cpuexts="MVI $cpuexts"
2746 # Checking kernel version...
2747 if x86_32 && linux ; then
2748 _k_verc_problem=no
2749 kernel_version=$(uname -r 2>&1)
2750 echocheck "$system_name kernel version"
2751 case "$kernel_version" in
2752 '') kernel_version="?.??"; _k_verc_fail=yes;;
2753 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2754 _k_verc_problem=yes;;
2755 esac
2756 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2757 _k_verc_fail=yes
2759 if test "$_k_verc_fail" ; then
2760 echores "$kernel_version, fail"
2761 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2762 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2763 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2764 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2765 echo "2.2.x you must upgrade it to get SSE support!"
2766 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2767 else
2768 echores "$kernel_version, ok"
2772 ######################
2773 # MAIN TESTS GO HERE #
2774 ######################
2777 echocheck "-lposix"
2778 cat > $TMPC <<EOF
2779 int main(void) { return 0; }
2781 if cc_check -lposix ; then
2782 extra_ldflags="$extra_ldflags -lposix"
2783 echores "yes"
2784 else
2785 echores "no"
2788 echocheck "-lm"
2789 cat > $TMPC <<EOF
2790 int main(void) { return 0; }
2792 if cc_check -lm ; then
2793 _ld_lm="-lm"
2794 echores "yes"
2795 else
2796 _ld_lm=""
2797 echores "no"
2801 echocheck "langinfo"
2802 if test "$_langinfo" = auto ; then
2803 cat > $TMPC <<EOF
2804 #include <langinfo.h>
2805 int main(void) { nl_langinfo(CODESET); return 0; }
2807 _langinfo=no
2808 cc_check && _langinfo=yes
2810 if test "$_langinfo" = yes ; then
2811 def_langinfo='#define HAVE_LANGINFO 1'
2812 else
2813 def_langinfo='#undef HAVE_LANGINFO'
2815 echores "$_langinfo"
2818 echocheck "translation support"
2819 if test "$_translation" = yes; then
2820 def_translation="#define CONFIG_TRANSLATION 1"
2821 else
2822 def_translation="#undef CONFIG_TRANSLATION"
2824 echores "$_translation"
2826 echocheck "language"
2827 # Set preferred languages, "all" uses English as main language.
2828 test -z "$language" && language=$LINGUAS
2829 test -z "$language_doc" && language_doc=$language
2830 test -z "$language_man" && language_man=$language
2831 test -z "$language_msg" && language_msg="all"
2832 language_doc=$(echo $language_doc | tr , " ")
2833 language_man=$(echo $language_man | tr , " ")
2834 language_msg=$(echo $language_msg | tr , " ")
2836 test "$language_doc" = "all" && language_doc=$doc_lang_all
2837 test "$language_man" = "all" && language_man=$man_lang_all
2838 test "$language_msg" = "all" && language_msg=$msg_lang_all
2840 if test "$_translation" != yes ; then
2841 language_msg=""
2844 # Prune non-existing translations from language lists.
2845 # Set message translation to the first available language.
2846 # Fall back on English.
2847 for lang in $language_doc ; do
2848 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2849 done
2850 language_doc=$tmp_language_doc
2851 test -z "$language_doc" && language_doc=en
2853 for lang in $language_man ; do
2854 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2855 done
2856 language_man=$tmp_language_man
2857 test -z "$language_man" && language_man=en
2859 for lang in $language_msg ; do
2860 test -f po/$lang.po && tmp_language_msg="$tmp_language_msg $lang"
2861 done
2862 language_msg=$tmp_language_msg
2864 echores "messages (en+): $language_msg - man pages: $language_man - documentation: $language_doc"
2867 echocheck "enable sighandler"
2868 if test "$_sighandler" = yes ; then
2869 def_sighandler='#define CONFIG_SIGHANDLER 1'
2870 else
2871 def_sighandler='#undef CONFIG_SIGHANDLER'
2873 echores "$_sighandler"
2875 echocheck "runtime cpudetection"
2876 if test "$_runtime_cpudetection" = yes ; then
2877 _optimizing="Runtime CPU-Detection enabled"
2878 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2879 else
2880 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2882 echores "$_runtime_cpudetection"
2885 echocheck "restrict keyword"
2886 for restrict_keyword in restrict __restrict __restrict__ ; do
2887 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2888 if cc_check; then
2889 def_restrict_keyword=$restrict_keyword
2890 break;
2892 done
2893 if [ -n "$def_restrict_keyword" ]; then
2894 echores "$def_restrict_keyword"
2895 else
2896 echores "none"
2898 # Avoid infinite recursion loop ("#define restrict restrict")
2899 if [ "$def_restrict_keyword" != "restrict" ]; then
2900 def_restrict_keyword="#define restrict $def_restrict_keyword"
2901 else
2902 def_restrict_keyword=""
2906 echocheck "__builtin_expect"
2907 # GCC branch prediction hint
2908 cat > $TMPC << EOF
2909 int foo(int a) {
2910 a = __builtin_expect(a, 10);
2911 return a == 10 ? 0 : 1;
2913 int main(void) { return foo(10) && foo(0); }
2915 _builtin_expect=no
2916 cc_check && _builtin_expect=yes
2917 if test "$_builtin_expect" = yes ; then
2918 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2919 else
2920 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2922 echores "$_builtin_expect"
2925 echocheck "kstat"
2926 cat > $TMPC << EOF
2927 #include <kstat.h>
2928 int main(void) { (void) kstat_open(); (void) kstat_close(0); return 0; }
2930 _kstat=no
2931 cc_check -lkstat && _kstat=yes
2932 if test "$_kstat" = yes ; then
2933 def_kstat="#define HAVE_LIBKSTAT 1"
2934 extra_ldflags="$extra_ldflags -lkstat"
2935 else
2936 def_kstat="#undef HAVE_LIBKSTAT"
2938 echores "$_kstat"
2941 echocheck "posix4"
2942 # required for nanosleep on some systems
2943 cat > $TMPC << EOF
2944 #include <time.h>
2945 int main(void) { (void) nanosleep(0, 0); return 0; }
2947 _posix4=no
2948 cc_check -lposix4 && _posix4=yes
2949 if test "$_posix4" = yes ; then
2950 extra_ldflags="$extra_ldflags -lposix4"
2952 echores "$_posix4"
2954 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
2955 echocheck $func
2956 cat > $TMPC << EOF
2957 #include <math.h>
2958 int main(void) { long (*foo)(float); foo = $func; (void)(*foo)(0.0); return 0; }
2960 eval _$func=no
2961 cc_check -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2962 if eval test "x\$_$func" = "xyes"; then
2963 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2964 echores yes
2965 else
2966 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
2967 echores no
2969 done
2972 echocheck "mkstemp"
2973 cat > $TMPC << EOF
2974 #include <stdlib.h>
2975 int main(void) { char a; mkstemp(&a); return 0; }
2977 _mkstemp=no
2978 cc_check && _mkstemp=yes
2979 if test "$_mkstemp" = yes ; then
2980 def_mkstemp='#define HAVE_MKSTEMP 1'
2981 else
2982 def_mkstemp='#undef HAVE_MKSTEMP'
2984 echores "$_mkstemp"
2987 echocheck "nanosleep"
2988 # also check for nanosleep
2989 cat > $TMPC << EOF
2990 #include <time.h>
2991 int main(void) { (void) nanosleep(0, 0); return 0; }
2993 _nanosleep=no
2994 cc_check && _nanosleep=yes
2995 if test "$_nanosleep" = yes ; then
2996 def_nanosleep='#define HAVE_NANOSLEEP 1'
2997 else
2998 def_nanosleep='#undef HAVE_NANOSLEEP'
3000 echores "$_nanosleep"
3003 echocheck "socklib"
3004 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
3005 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
3006 cat > $TMPC << EOF
3007 #include <netdb.h>
3008 #include <sys/socket.h>
3009 int main(void) { (void) gethostbyname(0); (void) socket(AF_INET, SOCK_STREAM, 0); return 0; }
3011 _socklib=no
3012 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
3013 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
3014 done
3015 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
3016 if test $_winsock2_h = auto ; then
3017 _winsock2_h=no
3018 cat > $TMPC << EOF
3019 #include <winsock2.h>
3020 int main(void) { (void) gethostbyname(0); return 0; }
3022 cc_check -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
3024 test "$_ld_sock" && _res_comment="using $_ld_sock"
3025 echores "$_socklib"
3028 if test $_winsock2_h = yes ; then
3029 _ld_sock="-lws2_32"
3030 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
3031 else
3032 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
3036 echocheck "arpa/inet.h"
3037 arpa_inet_h=no
3038 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
3039 cat > $TMPC << EOF
3040 #include <arpa/inet.h>
3041 int main(void) { return 0; }
3043 cc_check && arpa_inet_h=yes && def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
3044 echores "$arpa_inet_h"
3047 echocheck "inet_pton()"
3048 def_inet_pton='#define HAVE_INET_PTON 0'
3049 inet_pton=no
3050 cat > $TMPC << EOF
3051 #include <sys/types.h>
3052 #include <sys/socket.h>
3053 #include <arpa/inet.h>
3054 int main(void) { (void) inet_pton(0, 0, 0); return 0; }
3056 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3057 cc_check $_ld_tmp && inet_pton=yes && break
3058 done
3059 if test $inet_pton = yes ; then
3060 test "$_ld_tmp" && _res_comment="using $_ld_tmp"
3061 def_inet_pton='#define HAVE_INET_PTON 1'
3063 echores "$inet_pton"
3066 echocheck "inet_aton()"
3067 def_inet_aton='#define HAVE_INET_ATON 0'
3068 inet_aton=no
3069 cat > $TMPC << EOF
3070 #include <sys/types.h>
3071 #include <sys/socket.h>
3072 #include <arpa/inet.h>
3073 int main(void) { (void) inet_aton(0, 0); return 0; }
3075 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3076 cc_check $_ld_tmp && inet_aton=yes && break
3077 done
3078 if test $inet_aton = yes ; then
3079 test "$_ld_tmp" && _res_comment="using $_ld_tmp"
3080 def_inet_aton='#define HAVE_INET_ATON 1'
3082 echores "$inet_aton"
3085 echocheck "socklen_t"
3086 _socklen_t=no
3087 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
3088 cat > $TMPC << EOF
3089 #include <$header>
3090 int main(void) { socklen_t v = 0; return v; }
3092 cc_check && _socklen_t=yes && break
3093 done
3094 if test "$_socklen_t" = yes ; then
3095 def_socklen_t='#define HAVE_SOCKLEN_T 1'
3096 else
3097 def_socklen_t='#define HAVE_SOCKLEN_T 0'
3099 echores "$_socklen_t"
3102 echocheck "closesocket()"
3103 _closesocket=no
3104 cat > $TMPC << EOF
3105 #include <winsock2.h>
3106 int main(void) { closesocket(~0); return 0; }
3108 cc_check $_ld_sock && _closesocket=yes
3109 if test "$_closesocket" = yes ; then
3110 def_closesocket='#define HAVE_CLOSESOCKET 1'
3111 else
3112 def_closesocket='#define HAVE_CLOSESOCKET 0'
3114 echores "$_closesocket"
3117 echocheck "network"
3118 test $_winsock2_h = no && test $inet_pton = no &&
3119 test $inet_aton = no && _network=no
3120 if test "$_network" = yes ; then
3121 def_network='#define CONFIG_NETWORK 1'
3122 extra_ldflags="$extra_ldflags $_ld_sock"
3123 _inputmodules="network $_inputmodules"
3124 else
3125 _noinputmodules="network $_noinputmodules"
3126 def_network='#undef CONFIG_NETWORK'
3127 _ftp=no
3129 echores "$_network"
3132 echocheck "inet6"
3133 if test "$_inet6" = auto ; then
3134 cat > $TMPC << EOF
3135 #include <sys/types.h>
3136 #if !defined(_WIN32) || defined(__CYGWIN__)
3137 #include <sys/socket.h>
3138 #include <netinet/in.h>
3139 #else
3140 #include <ws2tcpip.h>
3141 #endif
3142 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3144 _inet6=no
3145 if cc_check $_ld_sock ; then
3146 _inet6=yes
3149 if test "$_inet6" = yes ; then
3150 def_inet6='#define HAVE_AF_INET6 1'
3151 else
3152 def_inet6='#undef HAVE_AF_INET6'
3154 echores "$_inet6"
3157 echocheck "gethostbyname2"
3158 if test "$_gethostbyname2" = auto ; then
3159 cat > $TMPC << EOF
3160 #include <sys/types.h>
3161 #include <sys/socket.h>
3162 #include <netdb.h>
3163 int main(void) { gethostbyname2("", AF_INET); return 0; }
3165 _gethostbyname2=no
3166 if cc_check ; then
3167 _gethostbyname2=yes
3170 if test "$_gethostbyname2" = yes ; then
3171 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3172 else
3173 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3175 echores "$_gethostbyname2"
3178 echocheck "inttypes.h (required)"
3179 cat > $TMPC << EOF
3180 #include <inttypes.h>
3181 int main(void) { return 0; }
3183 _inttypes=no
3184 cc_check && _inttypes=yes
3185 echores "$_inttypes"
3187 if test "$_inttypes" = no ; then
3188 echocheck "bitypes.h (inttypes.h predecessor)"
3189 cat > $TMPC << EOF
3190 #include <sys/bitypes.h>
3191 int main(void) { return 0; }
3193 cc_check && _inttypes=yes
3194 if test "$_inttypes" = yes ; then
3195 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."
3196 else
3197 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3202 echocheck "int_fastXY_t in inttypes.h"
3203 cat > $TMPC << EOF
3204 #include <inttypes.h>
3205 int main(void) {
3206 volatile int_fast16_t v= 0;
3207 return v; }
3209 _fast_inttypes=no
3210 cc_check && _fast_inttypes=yes
3211 if test "$_fast_inttypes" = no ; then
3212 def_fast_inttypes='
3213 typedef signed char int_fast8_t;
3214 typedef signed int int_fast16_t;
3215 typedef signed int int_fast32_t;
3216 typedef signed long long int_fast64_t;
3217 typedef unsigned char uint_fast8_t;
3218 typedef unsigned int uint_fast16_t;
3219 typedef unsigned int uint_fast32_t;
3220 typedef unsigned long long uint_fast64_t;'
3222 echores "$_fast_inttypes"
3225 echocheck "malloc.h"
3226 cat > $TMPC << EOF
3227 #include <malloc.h>
3228 int main(void) { (void) malloc(0); return 0; }
3230 _malloc=no
3231 cc_check && _malloc=yes
3232 if test "$_malloc" = yes ; then
3233 def_malloc_h='#define HAVE_MALLOC_H 1'
3234 else
3235 def_malloc_h='#define HAVE_MALLOC_H 0'
3237 echores "$_malloc"
3240 echocheck "memalign()"
3241 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3242 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3243 cat > $TMPC << EOF
3244 #include <malloc.h>
3245 int main(void) { (void) memalign(64, sizeof(char)); return 0; }
3247 _memalign=no
3248 cc_check && _memalign=yes
3249 if test "$_memalign" = yes ; then
3250 def_memalign='#define HAVE_MEMALIGN 1'
3251 else
3252 def_memalign='#define HAVE_MEMALIGN 0'
3253 def_map_memalign='#define memalign(a,b) malloc(b)'
3254 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3256 echores "$_memalign"
3259 echocheck "posix_memalign()"
3260 posix_memalign=no
3261 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3262 cat > $TMPC << EOF
3263 #define _XOPEN_SOURCE 600
3264 #include <stdlib.h>
3265 int main(void) { posix_memalign(NULL, 0, 0); }
3267 cc_check && posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3268 echores "$posix_memalign"
3271 echocheck "alloca.h"
3272 cat > $TMPC << EOF
3273 #include <alloca.h>
3274 int main(void) { (void) alloca(0); return 0; }
3276 _alloca=no
3277 cc_check && _alloca=yes
3278 if cc_check ; then
3279 def_alloca_h='#define HAVE_ALLOCA_H 1'
3280 else
3281 def_alloca_h='#undef HAVE_ALLOCA_H'
3283 echores "$_alloca"
3286 echocheck "fastmemcpy"
3287 if test "$_fastmemcpy" = yes ; then
3288 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3289 else
3290 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3292 echores "$_fastmemcpy"
3295 echocheck "mman.h"
3296 cat > $TMPC << EOF
3297 #include <sys/types.h>
3298 #include <sys/mman.h>
3299 int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; }
3301 _mman=no
3302 cc_check && _mman=yes
3303 if test "$_mman" = yes ; then
3304 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3305 else
3306 def_mman_h='#undef HAVE_SYS_MMAN_H'
3307 os2 && _need_mmap=yes
3309 echores "$_mman"
3311 cat > $TMPC << EOF
3312 #include <sys/types.h>
3313 #include <sys/mman.h>
3314 int main(void) { void *p = MAP_FAILED; return 0; }
3316 _mman_has_map_failed=no
3317 cc_check && _mman_has_map_failed=yes
3318 if test "$_mman_has_map_failed" = yes ; then
3319 def_mman_has_map_failed=''
3320 else
3321 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3324 echocheck "dynamic loader"
3325 cat > $TMPC << EOF
3326 #include <stddef.h>
3327 #include <dlfcn.h>
3328 int main(void) { dlopen("", 0); dlclose(NULL); dlsym(NULL, ""); return 0; }
3330 _dl=no
3331 for _ld_tmp in "" "-ldl" ; do
3332 cc_check $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3333 done
3334 if test "$_dl" = yes ; then
3335 def_dl='#define HAVE_LIBDL 1'
3336 else
3337 def_dl='#undef HAVE_LIBDL'
3339 echores "$_dl"
3342 echocheck "dynamic a/v plugins support"
3343 if test "$_dl" = no ; then
3344 _dynamic_plugins=no
3346 if test "$_dynamic_plugins" = yes ; then
3347 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3348 else
3349 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3351 echores "$_dynamic_plugins"
3354 def_threads='#define HAVE_THREADS 0'
3356 echocheck "pthread"
3357 if linux ; then
3358 THREAD_CFLAGS=-D_REENTRANT
3359 elif freebsd || netbsd || openbsd || bsdos ; then
3360 THREAD_CFLAGS=-D_THREAD_SAFE
3362 if test "$_pthreads" = auto ; then
3363 cat > $TMPC << EOF
3364 #include <pthread.h>
3365 void* func(void *arg) { return arg; }
3366 int main(void) { pthread_t tid; return pthread_create(&tid, 0, func, 0) == 0 ? 0 : 1; }
3368 _pthreads=no
3369 if ! hpux ; then
3370 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3371 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3372 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3373 done
3376 if test "$_pthreads" = yes ; then
3377 test $_ld_pthread && _res_comment="using $_ld_pthread"
3378 def_pthreads='#define HAVE_PTHREADS 1'
3379 def_threads='#define HAVE_THREADS 1'
3380 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3381 else
3382 _res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3383 def_pthreads='#undef HAVE_PTHREADS'
3384 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3385 mingw32 || _win32dll=no
3387 echores "$_pthreads"
3389 if cygwin ; then
3390 if test "$_pthreads" = yes ; then
3391 def_pthread_cache="#define PTHREAD_CACHE 1"
3392 else
3393 _stream_cache=no
3394 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3398 echocheck "w32threads"
3399 if test "$_pthreads" = yes ; then
3400 _res_comment="using pthread instead"
3401 _w32threads=no
3403 if test "$_w32threads" = auto ; then
3404 _w32threads=no
3405 mingw32 && _w32threads=yes
3407 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3408 echores "$_w32threads"
3410 echocheck "rpath"
3411 netbsd &&_rpath=yes
3412 if test "$_rpath" = yes ; then
3413 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3414 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3415 done
3416 extra_ldflags=$tmp
3418 echores "$_rpath"
3420 echocheck "iconv"
3421 if test "$_iconv" = auto ; then
3422 cat > $TMPC << EOF
3423 #include <stdio.h>
3424 #include <unistd.h>
3425 #include <iconv.h>
3426 #define INBUFSIZE 1024
3427 #define OUTBUFSIZE 4096
3429 char inbuffer[INBUFSIZE];
3430 char outbuffer[OUTBUFSIZE];
3432 int main(void) {
3433 size_t numread;
3434 iconv_t icdsc;
3435 char *tocode="UTF-8";
3436 char *fromcode="cp1250";
3437 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3438 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3439 char *iptr=inbuffer;
3440 char *optr=outbuffer;
3441 size_t inleft=numread;
3442 size_t outleft=OUTBUFSIZE;
3443 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft)
3444 != (size_t)(-1)) {
3445 write(1, outbuffer, OUTBUFSIZE - outleft);
3448 if (iconv_close(icdsc) == -1)
3451 return 0;
3454 _iconv=no
3455 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3456 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3457 _iconv=yes && break
3458 done
3460 if test "$_iconv" = yes ; then
3461 def_iconv='#define CONFIG_ICONV 1'
3462 else
3463 def_iconv='#undef CONFIG_ICONV'
3465 echores "$_iconv"
3468 echocheck "soundcard.h"
3469 _soundcard_h=no
3470 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3471 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3472 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3473 cat > $TMPC << EOF
3474 #include <$_soundcard_header>
3475 int main(void) { return 0; }
3477 cc_check && _soundcard_h=yes && _res_comment="$_soundcard_header" && break
3478 done
3480 if test "$_soundcard_h" = yes ; then
3481 if test $_soundcard_header = "sys/soundcard.h"; then
3482 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3483 else
3484 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3487 echores "$_soundcard_h"
3490 echocheck "sys/dvdio.h"
3491 cat > $TMPC << EOF
3492 #include <unistd.h>
3493 #include <sys/dvdio.h>
3494 int main(void) { return 0; }
3496 _dvdio=no
3497 cc_check && _dvdio=yes
3498 if test "$_dvdio" = yes ; then
3499 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3500 else
3501 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3503 echores "$_dvdio"
3506 echocheck "sys/cdio.h"
3507 cat > $TMPC << EOF
3508 #include <unistd.h>
3509 #include <sys/cdio.h>
3510 int main(void) { return 0; }
3512 _cdio=no
3513 cc_check && _cdio=yes
3514 if test "$_cdio" = yes ; then
3515 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3516 else
3517 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3519 echores "$_cdio"
3522 echocheck "linux/cdrom.h"
3523 cat > $TMPC << EOF
3524 #include <sys/types.h>
3525 #include <linux/cdrom.h>
3526 int main(void) { return 0; }
3528 _cdrom=no
3529 cc_check && _cdrom=yes
3530 if test "$_cdrom" = yes ; then
3531 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3532 else
3533 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3535 echores "$_cdrom"
3538 echocheck "dvd.h"
3539 cat > $TMPC << EOF
3540 #include <dvd.h>
3541 int main(void) { return 0; }
3543 _dvd=no
3544 cc_check && _dvd=yes
3545 if test "$_dvd" = yes ; then
3546 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3547 else
3548 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3550 echores "$_dvd"
3553 if bsdos; then
3554 echocheck "BSDI dvd.h"
3555 cat > $TMPC << EOF
3556 #include <dvd.h>
3557 int main(void) { return 0; }
3559 _bsdi_dvd=no
3560 cc_check && _bsdi_dvd=yes
3561 if test "$_bsdi_dvd" = yes ; then
3562 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3563 else
3564 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3566 echores "$_bsdi_dvd"
3567 fi #if bsdos
3570 if hpux; then
3571 # also used by AIX, but AIX does not support VCD and/or libdvdread
3572 echocheck "HP-UX SCSI header"
3573 cat > $TMPC << EOF
3574 #include <sys/scsi.h>
3575 int main(void) { return 0; }
3577 _hpux_scsi_h=no
3578 cc_check && _hpux_scsi_h=yes
3579 if test "$_hpux_scsi_h" = yes ; then
3580 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3581 else
3582 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3584 echores "$_hpux_scsi_h"
3585 fi #if hpux
3588 if sunos; then
3589 echocheck "userspace SCSI headers (Solaris)"
3590 cat > $TMPC << EOF
3591 #include <unistd.h>
3592 #include <stropts.h>
3593 #include <sys/scsi/scsi_types.h>
3594 #include <sys/scsi/impl/uscsi.h>
3595 int main(void) { return 0; }
3597 _sol_scsi_h=no
3598 cc_check && _sol_scsi_h=yes
3599 if test "$_sol_scsi_h" = yes ; then
3600 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3601 else
3602 def_sol_scsi_h='#undef SOLARIS_USCSI'
3604 echores "$_sol_scsi_h"
3605 fi #if sunos
3608 echocheck "termcap"
3609 if test "$_termcap" = auto ; then
3610 cat > $TMPC <<EOF
3611 #include <stddef.h>
3612 #include <term.h>
3613 int main(void) { tgetent(NULL, NULL); return 0; }
3615 _termcap=no
3616 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3617 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
3618 && _termcap=yes && break
3619 done
3621 if test "$_termcap" = yes ; then
3622 def_termcap='#define HAVE_TERMCAP 1'
3623 test $_ld_tmp && _res_comment="using $_ld_tmp"
3624 else
3625 def_termcap='#undef HAVE_TERMCAP'
3627 echores "$_termcap"
3630 echocheck "termios"
3631 def_termios='#undef HAVE_TERMIOS'
3632 def_termios_h='#undef HAVE_TERMIOS_H'
3633 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3634 if test "$_termios" = auto ; then
3635 _termios=no
3636 for _termios_header in "sys/termios.h" "termios.h"; do
3637 cat > $TMPC <<EOF
3638 #include <$_termios_header>
3639 int main(void) { return 0; }
3641 cc_check && _termios=yes && _res_comment="using $_termios_header" && break
3642 done
3645 if test "$_termios" = yes ; then
3646 def_termios='#define HAVE_TERMIOS 1'
3647 if test "$_termios_header" = "termios.h" ; then
3648 def_termios_h='#define HAVE_TERMIOS_H 1'
3649 else
3650 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3653 echores "$_termios"
3656 echocheck "shm"
3657 if test "$_shm" = auto ; then
3658 cat > $TMPC << EOF
3659 #include <sys/types.h>
3660 #include <sys/shm.h>
3661 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3663 _shm=no
3664 cc_check && _shm=yes
3666 if test "$_shm" = yes ; then
3667 def_shm='#define HAVE_SHM 1'
3668 else
3669 def_shm='#undef HAVE_SHM'
3671 echores "$_shm"
3674 echocheck "strsep()"
3675 cat > $TMPC << EOF
3676 #include <string.h>
3677 int main(void) { char *s = "Hello, world!"; (void) strsep(&s, ","); return 0; }
3679 _strsep=no
3680 cc_check && _strsep=yes
3681 if test "$_strsep" = yes ; then
3682 def_strsep='#define HAVE_STRSEP 1'
3683 _need_strsep=no
3684 else
3685 def_strsep='#undef HAVE_STRSEP'
3686 _need_strsep=yes
3688 echores "$_strsep"
3691 echocheck "vsscanf()"
3692 cat > $TMPC << EOF
3693 #define _ISOC99_SOURCE
3694 #include <stdarg.h>
3695 #include <stdio.h>
3696 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3698 _vsscanf=no
3699 cc_check && _vsscanf=yes
3700 if test "$_vsscanf" = yes ; then
3701 def_vsscanf='#define HAVE_VSSCANF 1'
3702 _need_vsscanf=no
3703 else
3704 def_vsscanf='#undef HAVE_VSSCANF'
3705 _need_vsscanf=yes
3707 echores "$_vsscanf"
3710 echocheck "swab()"
3711 cat > $TMPC << EOF
3712 #define _XOPEN_SOURCE 600
3713 #include <unistd.h>
3714 int main(void) { swab(0, 0, 0); return 0; }
3716 _swab=no
3717 cc_check && _swab=yes
3718 if test "$_swab" = yes ; then
3719 def_swab='#define HAVE_SWAB 1'
3720 _need_swab=no
3721 else
3722 def_swab='#undef HAVE_SWAB'
3723 _need_swab=yes
3725 echores "$_swab"
3727 echocheck "POSIX select()"
3728 cat > $TMPC << EOF
3729 #include <stdio.h>
3730 #include <stdlib.h>
3731 #include <sys/types.h>
3732 #include <string.h>
3733 #include <sys/time.h>
3734 #include <unistd.h>
3735 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
3737 _posix_select=no
3738 def_posix_select='#undef HAVE_POSIX_SELECT'
3739 #select() of kLIBC (OS/2) supports socket only
3740 ! os2 && cc_check && _posix_select=yes \
3741 && def_posix_select='#define HAVE_POSIX_SELECT 1'
3742 echores "$_posix_select"
3745 echocheck "audio select()"
3746 if test "$_select" = no ; then
3747 def_select='#undef HAVE_AUDIO_SELECT'
3748 elif test "$_select" = yes ; then
3749 def_select='#define HAVE_AUDIO_SELECT 1'
3751 echores "$_select"
3754 echocheck "gettimeofday()"
3755 cat > $TMPC << EOF
3756 #include <stdio.h>
3757 #include <sys/time.h>
3758 int main(void) {struct timeval tv_start; gettimeofday(&tv_start, NULL); return 0; }
3760 _gettimeofday=no
3761 cc_check && _gettimeofday=yes
3762 if test "$_gettimeofday" = yes ; then
3763 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3764 _need_gettimeofday=no
3765 else
3766 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3767 _need_gettimeofday=yes
3769 echores "$_gettimeofday"
3772 echocheck "glob()"
3773 cat > $TMPC << EOF
3774 #include <stdio.h>
3775 #include <glob.h>
3776 int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
3778 _glob=no
3779 cc_check && _glob=yes
3780 if test "$_glob" = yes ; then
3781 def_glob='#define HAVE_GLOB 1'
3782 _need_glob=no
3783 else
3784 def_glob='#undef HAVE_GLOB'
3785 _need_glob=yes
3787 echores "$_glob"
3790 echocheck "setenv()"
3791 cat > $TMPC << EOF
3792 #include <stdlib.h>
3793 int main(void) { setenv("","",0); return 0; }
3795 _setenv=no
3796 cc_check && _setenv=yes
3797 if test "$_setenv" = yes ; then
3798 def_setenv='#define HAVE_SETENV 1'
3799 _need_setenv=no
3800 else
3801 def_setenv='#undef HAVE_SETENV'
3802 _need_setenv=yes
3804 echores "$_setenv"
3807 echocheck "setmode()"
3808 _setmode=no
3809 def_setmode='#define HAVE_SETMODE 0'
3810 cat > $TMPC << EOF
3811 #include <io.h>
3812 int main(void) { setmode(0, 0); return 0; }
3814 cc_check && _setmode=yes && def_setmode='#define HAVE_SETMODE 1'
3815 echores "$_setmode"
3818 if sunos; then
3819 echocheck "sysi86()"
3820 cat > $TMPC << EOF
3821 #include <sys/sysi86.h>
3822 int main(void) { sysi86(0); return 0; }
3824 _sysi86=no
3825 cc_check && _sysi86=yes
3826 if test "$_sysi86" = yes ; then
3827 def_sysi86='#define HAVE_SYSI86 1'
3828 cat > $TMPC << EOF
3829 #include <sys/sysi86.h>
3830 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
3832 cc_check && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3833 else
3834 def_sysi86='#undef HAVE_SYSI86'
3836 echores "$_sysi86"
3837 fi #if sunos
3840 echocheck "sys/sysinfo.h"
3841 cat > $TMPC << EOF
3842 #include <sys/sysinfo.h>
3843 int main(void) {
3844 struct sysinfo s_info;
3845 sysinfo(&s_info);
3846 return 0;
3849 _sys_sysinfo=no
3850 cc_check && _sys_sysinfo=yes
3851 if test "$_sys_sysinfo" = yes ; then
3852 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3853 else
3854 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3856 echores "$_sys_sysinfo"
3859 if darwin; then
3861 echocheck "Mac OS X Finder Support"
3862 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3863 if test "$_macosx_finder" = yes ; then
3864 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3865 extra_ldflags="$extra_ldflags -framework Carbon"
3867 echores "$_macosx_finder"
3869 echocheck "Mac OS X Bundle file locations"
3870 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3871 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3872 if test "$_macosx_bundle" = yes ; then
3873 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3874 extra_ldflags="$extra_ldflags -framework Carbon"
3876 echores "$_macosx_bundle"
3878 echocheck "Apple Remote"
3879 if test "$_apple_remote" = auto ; then
3880 _apple_remote=no
3881 cat > $TMPC <<EOF
3882 #include <stdio.h>
3883 #include <IOKit/IOCFPlugIn.h>
3884 int main(void) {
3885 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3886 CFMutableDictionaryRef hidMatchDictionary;
3887 IOReturn ioReturnValue;
3889 // Set up a matching dictionary to search the I/O Registry by class.
3890 // name for all HID class devices
3891 hidMatchDictionary = IOServiceMatching("AppleIRController");
3893 // Now search I/O Registry for matching devices.
3894 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3895 hidMatchDictionary, &hidObjectIterator);
3897 // If search is unsuccessful, return nonzero.
3898 if (ioReturnValue != kIOReturnSuccess ||
3899 !IOIteratorIsValid(hidObjectIterator)) {
3900 return 1;
3902 return 0;
3905 cc_check -framework IOKit && tmp_run && _apple_remote=yes
3907 if test "$_apple_remote" = yes ; then
3908 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3909 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3910 else
3911 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3913 echores "$_apple_remote"
3915 fi #if darwin
3917 if linux; then
3919 echocheck "Apple IR"
3920 if test "$_apple_ir" = auto ; then
3921 _apple_ir=no
3922 cat > $TMPC <<EOF
3923 #include <linux/types.h>
3924 #include <linux/input.h>
3925 int main(void) {
3926 struct input_event ev;
3927 struct input_id id;
3928 return 0;
3931 cc_check && _apple_ir=yes
3933 if test "$_apple_ir" = yes ; then
3934 def_apple_ir='#define CONFIG_APPLE_IR 1'
3935 else
3936 def_apple_ir='#undef CONFIG_APPLE_IR'
3938 echores "$_apple_ir"
3939 fi #if linux
3941 echocheck "pkg-config"
3942 _pkg_config=pkg-config
3943 if $($_pkg_config --version > /dev/null 2>&1); then
3944 if test "$_ld_static"; then
3945 _pkg_config="$_pkg_config --static"
3947 echores "yes"
3948 else
3949 _pkg_config=false
3950 echores "no"
3954 echocheck "Samba support (libsmbclient)"
3955 if test "$_smb" = yes; then
3956 extra_ldflags="$extra_ldflags -lsmbclient"
3958 if test "$_smb" = auto; then
3959 _smb=no
3960 cat > $TMPC << EOF
3961 #include <libsmbclient.h>
3962 int main(void) { smbc_opendir("smb://"); return 0; }
3964 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3965 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3966 _smb=yes && break
3967 done
3970 if test "$_smb" = yes; then
3971 def_smb="#define CONFIG_LIBSMBCLIENT 1"
3972 _inputmodules="smb $_inputmodules"
3973 else
3974 def_smb="#undef CONFIG_LIBSMBCLIENT"
3975 _noinputmodules="smb $_noinputmodules"
3977 echores "$_smb"
3980 #########
3981 # VIDEO #
3982 #########
3985 echocheck "tdfxfb"
3986 if test "$_tdfxfb" = yes ; then
3987 def_tdfxfb='#define CONFIG_TDFXFB 1'
3988 _vomodules="tdfxfb $_vomodules"
3989 else
3990 def_tdfxfb='#undef CONFIG_TDFXFB'
3991 _novomodules="tdfxfb $_novomodules"
3993 echores "$_tdfxfb"
3995 echocheck "s3fb"
3996 if test "$_s3fb" = yes ; then
3997 def_s3fb='#define CONFIG_S3FB 1'
3998 _vomodules="s3fb $_vomodules"
3999 else
4000 def_s3fb='#undef CONFIG_S3FB'
4001 _novomodules="s3fb $_novomodules"
4003 echores "$_s3fb"
4005 echocheck "wii"
4006 if test "$_wii" = yes ; then
4007 def_wii='#define CONFIG_WII 1'
4008 _vomodules="wii $_vomodules"
4009 else
4010 def_wii='#undef CONFIG_WII'
4011 _novomodules="wii $_novomodules"
4013 echores "$_wii"
4015 echocheck "tdfxvid"
4016 if test "$_tdfxvid" = yes ; then
4017 def_tdfxvid='#define CONFIG_TDFX_VID 1'
4018 _vomodules="tdfx_vid $_vomodules"
4019 else
4020 def_tdfxvid='#undef CONFIG_TDFX_VID'
4021 _novomodules="tdfx_vid $_novomodules"
4023 echores "$_tdfxvid"
4025 echocheck "xvr100"
4026 if test "$_xvr100" = auto ; then
4027 cat > $TMPC << EOF
4028 #include <unistd.h>
4029 #include <sys/fbio.h>
4030 #include <sys/visual_io.h>
4031 int main(void) {
4032 struct vis_identifier ident;
4033 struct fbgattr attr;
4034 ioctl(0, VIS_GETIDENTIFIER, &ident);
4035 ioctl(0, FBIOGATTR, &attr);
4036 return 0;
4039 _xvr100=no
4040 cc_check && _xvr100=yes
4042 if test "$_xvr100" = yes ; then
4043 def_xvr100='#define CONFIG_XVR100 1'
4044 _vomodules="xvr100 $_vomodules"
4045 else
4046 def_tdfxvid='#undef CONFIG_XVR100'
4047 _novomodules="xvr100 $_novomodules"
4049 echores "$_xvr100"
4051 echocheck "tga"
4052 if test "$_tga" = yes ; then
4053 def_tga='#define CONFIG_TGA 1'
4054 _vomodules="tga $_vomodules"
4055 else
4056 def_tga='#undef CONFIG_TGA'
4057 _novomodules="tga $_novomodules"
4059 echores "$_tga"
4062 echocheck "md5sum support"
4063 if test "$_md5sum" = yes; then
4064 def_md5sum="#define CONFIG_MD5SUM 1"
4065 _vomodules="md5sum $_vomodules"
4066 else
4067 def_md5sum="#undef CONFIG_MD5SUM"
4068 _novomodules="md5sum $_novomodules"
4070 echores "$_md5sum"
4073 echocheck "yuv4mpeg support"
4074 if test "$_yuv4mpeg" = yes; then
4075 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
4076 _vomodules="yuv4mpeg $_vomodules"
4077 else
4078 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
4079 _novomodules="yuv4mpeg $_novomodules"
4081 echores "$_yuv4mpeg"
4084 echocheck "bl"
4085 if test "$_bl" = yes ; then
4086 def_bl='#define CONFIG_BL 1'
4087 _vomodules="bl $_vomodules"
4088 else
4089 def_bl='#undef CONFIG_BL'
4090 _novomodules="bl $_novomodules"
4092 echores "$_bl"
4095 echocheck "DirectFB"
4096 if test "$_directfb" = auto ; then
4097 _directfb=no
4098 cat > $TMPC <<EOF
4099 #include <directfb.h>
4100 int main(void) { DirectFBInit(0, 0); return 0; }
4102 for _inc_tmp in "" -I/usr/local/include/directfb \
4103 -I/usr/include/directfb -I/usr/local/include; do
4104 cc_check $_inc_tmp -ldirectfb && _directfb=yes && \
4105 extra_cflags="$extra_cflags $_inc_tmp" && break
4106 done
4109 dfb_version() {
4110 expr $1 \* 65536 + $2 \* 256 + $3
4113 if test "$_directfb" = yes; then
4114 cat > $TMPC << EOF
4115 #include <directfb_version.h>
4117 dfb_ver = DIRECTFB_MAJOR_VERSION.DIRECTFB_MINOR_VERSION.DIRECTFB_MICRO_VERSION
4120 if $_cc -E $TMPC $extra_cflags > "$TMPEXE"; then
4121 _directfb_version=$(sed -n 's/^dfb_ver[^0-9]*\(.*\)/\1/p' "$TMPEXE" | tr -d '()')
4122 _dfb_major=$(echo $_directfb_version | cut -d . -f 1)
4123 _dfb_minor=$(echo $_directfb_version | cut -d . -f 2)
4124 _dfb_micro=$(echo $_directfb_version | cut -d . -f 3)
4125 _dfb_version=$(dfb_version $_dfb_major $_dfb_minor $_dfb_micro)
4126 if test "$_dfb_version" -ge $(dfb_version 0 9 13); then
4127 def_directfb_version="#define DIRECTFBVERSION $_dfb_version"
4128 _res_comment="$_directfb_version"
4129 test "$_dfb_version" -ge $(dfb_version 0 9 15) && _dfbmga=yes
4130 else
4131 def_directfb_version='#undef DIRECTFBVERSION'
4132 _directfb=no
4133 _res_comment="version >=0.9.13 required"
4135 else
4136 _directfb=no
4137 _res_comment="failed to get version"
4140 echores "$_directfb"
4142 if test "$_directfb" = yes ; then
4143 def_directfb='#define CONFIG_DIRECTFB 1'
4144 _vomodules="directfb $_vomodules"
4145 libs_mplayer="$libs_mplayer -ldirectfb"
4146 else
4147 def_directfb='#undef CONFIG_DIRECTFB'
4148 _novomodules="directfb $_novomodules"
4150 if test "$_dfbmga" = yes; then
4151 _vomodules="dfbmga $_vomodules"
4152 def_dfbmga='#define CONFIG_DFBMGA 1'
4153 else
4154 _novomodules="dfbmga $_novomodules"
4155 def_dfbmga='#undef CONFIG_DFBMGA'
4159 echocheck "X11 headers presence"
4160 _x11_headers="no"
4161 _res_comment="check if the dev(el) packages are installed"
4162 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
4163 if test -f "$I/X11/Xlib.h" ; then
4164 _x11_headers="yes"
4165 _res_comment=""
4166 break
4168 done
4169 if test $_cross_compile = no; then
4170 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
4171 /usr/include/X11R6 /usr/openwin/include ; do
4172 if test -f "$I/X11/Xlib.h" ; then
4173 extra_cflags="$extra_cflags -I$I"
4174 _x11_headers="yes"
4175 _res_comment="using $I"
4176 break
4178 done
4180 echores "$_x11_headers"
4183 echocheck "X11"
4184 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
4185 cat > $TMPC <<EOF
4186 #include <X11/Xlib.h>
4187 #include <X11/Xutil.h>
4188 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; }
4190 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
4191 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
4192 -L/usr/lib ; do
4193 if netbsd; then
4194 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
4195 else
4196 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
4198 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" \
4199 && _x11=yes && break
4200 done
4202 if test "$_x11" = yes ; then
4203 def_x11='#define CONFIG_X11 1'
4204 _vomodules="x11 xover $_vomodules"
4205 else
4206 _x11=no
4207 def_x11='#undef CONFIG_X11'
4208 _novomodules="x11 $_novomodules"
4209 _res_comment="check if the dev(el) packages are installed"
4210 # disable stuff that depends on X
4211 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
4213 echores "$_x11"
4215 echocheck "Xss screensaver extensions"
4216 if test "$_xss" = auto ; then
4217 cat > $TMPC << EOF
4218 #include <X11/Xlib.h>
4219 #include <X11/extensions/scrnsaver.h>
4220 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
4222 _xss=no
4223 cc_check -lXss && _xss=yes
4225 if test "$_xss" = yes ; then
4226 def_xss='#define CONFIG_XSS 1'
4227 libs_mplayer="$libs_mplayer -lXss"
4228 else
4229 def_xss='#undef CONFIG_XSS'
4231 echores "$_xss"
4233 echocheck "DPMS"
4234 _xdpms3=no
4235 _xdpms4=no
4236 if test "$_x11" = yes ; then
4237 cat > $TMPC <<EOF
4238 #include <X11/Xmd.h>
4239 #include <X11/Xlib.h>
4240 #include <X11/Xutil.h>
4241 #include <X11/Xatom.h>
4242 #include <X11/extensions/dpms.h>
4243 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4245 cc_check -lXdpms && _xdpms3=yes
4246 cat > $TMPC <<EOF
4247 #include <X11/Xlib.h>
4248 #include <X11/extensions/dpms.h>
4249 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4251 cc_check -lXext && _xdpms4=yes
4253 if test "$_xdpms4" = yes ; then
4254 def_xdpms='#define CONFIG_XDPMS 1'
4255 _res_comment="using Xdpms 4"
4256 echores "yes"
4257 elif test "$_xdpms3" = yes ; then
4258 def_xdpms='#define CONFIG_XDPMS 1'
4259 libs_mplayer="$libs_mplayer -lXdpms"
4260 _res_comment="using Xdpms 3"
4261 echores "yes"
4262 else
4263 def_xdpms='#undef CONFIG_XDPMS'
4264 echores "no"
4268 echocheck "Xv"
4269 if test "$_xv" = auto ; then
4270 cat > $TMPC <<EOF
4271 #include <X11/Xlib.h>
4272 #include <X11/extensions/Xvlib.h>
4273 int main(void) {
4274 (void) XvGetPortAttribute(0, 0, 0, 0);
4275 (void) XvQueryPortAttributes(0, 0, 0);
4276 return 0; }
4278 _xv=no
4279 cc_check -lXv && _xv=yes
4282 if test "$_xv" = yes ; then
4283 def_xv='#define CONFIG_XV 1'
4284 libs_mplayer="$libs_mplayer -lXv"
4285 _vomodules="xv $_vomodules"
4286 else
4287 def_xv='#undef CONFIG_XV'
4288 _novomodules="xv $_novomodules"
4290 echores "$_xv"
4293 echocheck "XvMC"
4294 if test "$_xv" = yes && test "$_xvmc" != no ; then
4295 _xvmc=no
4296 cat > $TMPC <<EOF
4297 #include <X11/Xlib.h>
4298 #include <X11/extensions/Xvlib.h>
4299 #include <X11/extensions/XvMClib.h>
4300 int main(void) {
4301 (void) XvMCQueryExtension(0,0,0);
4302 (void) XvMCCreateContext(0,0,0,0,0,0,0);
4303 return 0; }
4305 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
4306 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
4307 done
4309 if test "$_xvmc" = yes ; then
4310 def_xvmc='#define CONFIG_XVMC 1'
4311 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
4312 _vomodules="xvmc $_vomodules"
4313 _res_comment="using $_xvmclib"
4314 else
4315 def_xvmc='#define CONFIG_XVMC 0'
4316 _novomodules="xvmc $_novomodules"
4318 echores "$_xvmc"
4321 echocheck "VDPAU"
4322 if test "$_vdpau" = auto ; then
4323 _vdpau=no
4324 if test "$_dl" = yes ; then
4325 cat > $TMPC <<EOF
4326 #include <vdpau/vdpau_x11.h>
4327 int main(void) {
4328 (void) vdp_device_create_x11(0, 0, 0, 0);
4329 return VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L1; }
4331 cc_check -lvdpau && _vdpau=yes
4334 if test "$_vdpau" = yes ; then
4335 def_vdpau='#define CONFIG_VDPAU 1'
4336 libs_mplayer="$libs_mplayer -lvdpau"
4337 _vomodules="vdpau $_vomodules"
4338 else
4339 def_vdpau='#define CONFIG_VDPAU 0'
4340 _novomodules="vdpau $_novomodules"
4342 echores "$_vdpau"
4345 echocheck "Xinerama"
4346 if test "$_xinerama" = auto ; then
4347 cat > $TMPC <<EOF
4348 #include <X11/Xlib.h>
4349 #include <X11/extensions/Xinerama.h>
4350 int main(void) { (void) XineramaIsActive(0); return 0; }
4352 _xinerama=no
4353 cc_check -lXinerama && _xinerama=yes
4356 if test "$_xinerama" = yes ; then
4357 def_xinerama='#define CONFIG_XINERAMA 1'
4358 libs_mplayer="$libs_mplayer -lXinerama"
4359 else
4360 def_xinerama='#undef CONFIG_XINERAMA'
4362 echores "$_xinerama"
4365 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4366 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4367 # named 'X extensions' or something similar.
4368 # This check may be useful for future mplayer versions (to change resolution)
4369 # If you run into problems, remove '-lXxf86vm'.
4370 echocheck "Xxf86vm"
4371 if test "$_vm" = auto ; then
4372 cat > $TMPC <<EOF
4373 #include <X11/Xlib.h>
4374 #include <X11/extensions/xf86vmode.h>
4375 int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; }
4377 _vm=no
4378 cc_check -lXxf86vm && _vm=yes
4380 if test "$_vm" = yes ; then
4381 def_vm='#define CONFIG_XF86VM 1'
4382 libs_mplayer="$libs_mplayer -lXxf86vm"
4383 else
4384 def_vm='#undef CONFIG_XF86VM'
4386 echores "$_vm"
4388 # Check for the presence of special keycodes, like audio control buttons
4389 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4390 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4391 # have these new keycodes.
4392 echocheck "XF86keysym"
4393 if test "$_xf86keysym" = auto; then
4394 _xf86keysym=no
4395 cat > $TMPC <<EOF
4396 #include <X11/Xlib.h>
4397 #include <X11/XF86keysym.h>
4398 int main(void) { return XF86XK_AudioPause; }
4400 cc_check && _xf86keysym=yes
4402 if test "$_xf86keysym" = yes ; then
4403 def_xf86keysym='#define CONFIG_XF86XK 1'
4404 else
4405 def_xf86keysym='#undef CONFIG_XF86XK'
4407 echores "$_xf86keysym"
4409 echocheck "DGA"
4410 if test "$_dga2" = auto && test "$_x11" = yes ; then
4411 cat > $TMPC << EOF
4412 #include <X11/Xlib.h>
4413 #include <X11/extensions/xf86dga.h>
4414 int main(void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4416 _dga2=no
4417 cc_check -lXxf86dga && _dga2=yes
4419 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4420 cat > $TMPC << EOF
4421 #include <X11/Xlib.h>
4422 #include <X11/extensions/xf86dga.h>
4423 int main(void) { (void) XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4425 _dga1=no
4426 cc_check -lXxf86dga -lXxf86vm && _dga1=yes
4429 _dga=no
4430 def_dga='#undef CONFIG_DGA'
4431 def_dga1='#undef CONFIG_DGA1'
4432 def_dga2='#undef CONFIG_DGA2'
4433 if test "$_dga1" = yes ; then
4434 _dga=yes
4435 def_dga1='#define CONFIG_DGA1 1'
4436 _res_comment="using DGA 1.0"
4437 elif test "$_dga2" = yes ; then
4438 _dga=yes
4439 def_dga2='#define CONFIG_DGA2 1'
4440 _res_comment="using DGA 2.0"
4442 if test "$_dga" = yes ; then
4443 def_dga='#define CONFIG_DGA 1'
4444 libs_mplayer="$libs_mplayer -lXxf86dga"
4445 _vomodules="dga $_vomodules"
4446 else
4447 _novomodules="dga $_novomodules"
4449 echores "$_dga"
4452 echocheck "3dfx"
4453 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4454 def_3dfx='#define CONFIG_3DFX 1'
4455 _vomodules="3dfx $_vomodules"
4456 else
4457 def_3dfx='#undef CONFIG_3DFX'
4458 _novomodules="3dfx $_novomodules"
4460 echores "$_3dfx"
4463 echocheck "VIDIX"
4464 def_vidix='#undef CONFIG_VIDIX'
4465 def_vidix_drv_cyberblade='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4466 _vidix_drv_cyberblade=no
4467 def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4468 _vidix_drv_ivtv=no
4469 def_vidix_drv_mach64='#undef CONFIG_VIDIX_DRV_MACH64'
4470 _vidix_drv_mach64=no
4471 def_vidix_drv_mga='#undef CONFIG_VIDIX_DRV_MGA'
4472 _vidix_drv_mga=no
4473 def_vidix_drv_mga_crtc2='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4474 _vidix_drv_mga_crtc2=no
4475 def_vidix_drv_nvidia='#undef CONFIG_VIDIX_DRV_NVIDIA'
4476 _vidix_drv_nvidia=no
4477 def_vidix_drv_pm2='#undef CONFIG_VIDIX_DRV_PM2'
4478 _vidix_drv_pm2=no
4479 def_vidix_drv_pm3='#undef CONFIG_VIDIX_DRV_PM3'
4480 _vidix_drv_pm3=no
4481 def_vidix_drv_radeon='#undef CONFIG_VIDIX_DRV_RADEON'
4482 _vidix_drv_radeon=no
4483 def_vidix_drv_rage128='#undef CONFIG_VIDIX_DRV_RAGE128'
4484 _vidix_drv_rage128=no
4485 def_vidix_drv_s3='#undef CONFIG_VIDIX_DRV_S3'
4486 _vidix_drv_s3=no
4487 def_vidix_drv_sh_veu='#undef CONFIG_VIDIX_DRV_SH_VEU'
4488 _vidix_drv_sh_veu=no
4489 def_vidix_drv_sis='#undef CONFIG_VIDIX_DRV_SIS'
4490 _vidix_drv_sis=no
4491 def_vidix_drv_unichrome='#undef CONFIG_VIDIX_DRV_UNICHROME'
4492 _vidix_drv_unichrome=no
4493 if test "$_vidix" = auto ; then
4494 _vidix=no
4495 x86 && (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32) \
4496 && _vidix=yes
4497 x86_64 && ! linux && _vidix=no
4498 (ppc || alpha) && linux && _vidix=yes
4500 echores "$_vidix"
4502 if test "$_vidix" = yes ; then
4503 def_vidix='#define CONFIG_VIDIX 1'
4504 _vomodules="cvidix $_vomodules"
4505 # FIXME: ivtv driver temporarily disabled until we have a proper test
4506 #test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4507 test "$_vidix_drivers" || _vidix_drivers="cyberblade mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4509 # some vidix drivers are architecture and os specific, discard them elsewhere
4510 x86 || _vidix_drivers=$(echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome// -e s/s3//)
4511 (test $host_arch = "sh" && linux) || _vidix_drivers=$(echo $_vidix_drivers | sed s/sh_veu//)
4513 for driver in $_vidix_drivers ; do
4514 uc_driver=$(echo $driver | tr '[a-z]' '[A-Z]')
4515 eval _vidix_drv_${driver}=yes
4516 eval def_vidix_drv_${driver}=\"\#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4517 done
4519 echocheck "VIDIX PCI device name database"
4520 echores "$_vidix_pcidb"
4521 if test "$_vidix_pcidb" = yes ; then
4522 _vidix_pcidb_val=1
4523 else
4524 _vidix_pcidb_val=0
4527 echocheck "VIDIX dhahelper support"
4528 test "$_dhahelper" = yes && cflags_dhahelper=-DCONFIG_DHAHELPER
4529 echores "$_dhahelper"
4531 echocheck "VIDIX svgalib_helper support"
4532 test "$_svgalib_helper" = yes && cflags_svgalib_helper=-DCONFIG_SVGAHELPER
4533 echores "$_svgalib_helper"
4535 else
4536 _novomodules="cvidix $_novomodules"
4539 if test "$_vidix" = yes && win32; then
4540 winvidix=yes
4541 _vomodules="winvidix $_vomodules"
4542 libs_mplayer="$libs_mplayer -lgdi32"
4543 else
4544 _novomodules="winvidix $_novomodules"
4546 if test "$_vidix" = yes && test "$_x11" = yes; then
4547 xvidix=yes
4548 _vomodules="xvidix $_vomodules"
4549 else
4550 _novomodules="xvidix $_novomodules"
4553 echocheck "GGI"
4554 if test "$_ggi" = auto ; then
4555 cat > $TMPC << EOF
4556 #include <ggi/ggi.h>
4557 int main(void) { ggiInit(); return 0; }
4559 _ggi=no
4560 cc_check -lggi && _ggi=yes
4562 if test "$_ggi" = yes ; then
4563 def_ggi='#define CONFIG_GGI 1'
4564 libs_mplayer="$libs_mplayer -lggi"
4565 _vomodules="ggi $_vomodules"
4566 else
4567 def_ggi='#undef CONFIG_GGI'
4568 _novomodules="ggi $_novomodules"
4570 echores "$_ggi"
4572 echocheck "GGI extension: libggiwmh"
4573 if test "$_ggiwmh" = auto ; then
4574 _ggiwmh=no
4575 cat > $TMPC << EOF
4576 #include <ggi/ggi.h>
4577 #include <ggi/wmh.h>
4578 int main(void) { ggiInit(); ggiWmhInit(); return 0; }
4580 cc_check -lggi -lggiwmh && _ggiwmh=yes
4582 # needed to get right output on obscure combination
4583 # like --disable-ggi --enable-ggiwmh
4584 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4585 def_ggiwmh='#define CONFIG_GGIWMH 1'
4586 libs_mplayer="$libs_mplayer -lggiwmh"
4587 else
4588 _ggiwmh=no
4589 def_ggiwmh='#undef CONFIG_GGIWMH'
4591 echores "$_ggiwmh"
4594 echocheck "AA"
4595 if test "$_aa" = auto ; then
4596 cat > $TMPC << EOF
4597 #include <aalib.h>
4598 extern struct aa_hardware_params aa_defparams;
4599 extern struct aa_renderparams aa_defrenderparams;
4600 int main(void) {
4601 aa_context *c;
4602 aa_renderparams *p;
4603 (void) aa_init(0, 0, 0);
4604 c = aa_autoinit(&aa_defparams);
4605 p = aa_getrenderparams();
4606 aa_autoinitkbd(c,0);
4607 return 0; }
4609 _aa=no
4610 for _ld_tmp in "-laa" ; do
4611 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4612 done
4614 if test "$_aa" = yes ; then
4615 def_aa='#define CONFIG_AA 1'
4616 if cygwin ; then
4617 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4619 _vomodules="aa $_vomodules"
4620 else
4621 def_aa='#undef CONFIG_AA'
4622 _novomodules="aa $_novomodules"
4624 echores "$_aa"
4627 echocheck "CACA"
4628 if test "$_caca" = auto ; then
4629 _caca=no
4630 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4631 cat > $TMPC << EOF
4632 #include <caca.h>
4633 #ifdef CACA_API_VERSION_1
4634 #include <caca0.h>
4635 #endif
4636 int main(void) { (void) caca_init(); return 0; }
4638 cc_check $(caca-config --libs) && _caca=yes
4641 if test "$_caca" = yes ; then
4642 def_caca='#define CONFIG_CACA 1'
4643 extra_cflags="$extra_cflags $(caca-config --cflags)"
4644 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4645 _vomodules="caca $_vomodules"
4646 else
4647 def_caca='#undef CONFIG_CACA'
4648 _novomodules="caca $_novomodules"
4650 echores "$_caca"
4653 echocheck "SVGAlib"
4654 if test "$_svga" = auto ; then
4655 cat > $TMPC << EOF
4656 #include <vga.h>
4657 int main(void) { return 0; }
4659 _svga=no
4660 cc_check -lvga $_ld_lm && _svga=yes
4662 if test "$_svga" = yes ; then
4663 def_svga='#define CONFIG_SVGALIB 1'
4664 libs_mplayer="$libs_mplayer -lvga"
4665 _vomodules="svga $_vomodules"
4666 else
4667 def_svga='#undef CONFIG_SVGALIB'
4668 _novomodules="svga $_novomodules"
4670 echores "$_svga"
4673 echocheck "FBDev"
4674 if test "$_fbdev" = auto ; then
4675 _fbdev=no
4676 linux && _fbdev=yes
4678 if test "$_fbdev" = yes ; then
4679 def_fbdev='#define CONFIG_FBDEV 1'
4680 _vomodules="fbdev $_vomodules"
4681 else
4682 def_fbdev='#undef CONFIG_FBDEV'
4683 _novomodules="fbdev $_novomodules"
4685 echores "$_fbdev"
4689 echocheck "DVB"
4690 if test "$_dvb" = auto ; then
4691 _dvb=no
4692 cat >$TMPC << EOF
4693 #include <poll.h>
4694 #include <sys/ioctl.h>
4695 #include <stdio.h>
4696 #include <time.h>
4697 #include <unistd.h>
4698 #include <linux/dvb/dmx.h>
4699 #include <linux/dvb/frontend.h>
4700 #include <linux/dvb/video.h>
4701 #include <linux/dvb/audio.h>
4702 int main(void) {return 0;}
4704 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4705 cc_check $_inc_tmp && _dvb=yes && \
4706 extra_cflags="$extra_cflags $_inc_tmp" && break
4707 done
4709 echores "$_dvb"
4710 if test "$_dvb" = yes ; then
4711 _dvbin=yes
4712 _inputmodules="dvb $_inputmodules"
4713 def_dvb='#define CONFIG_DVB 1'
4714 def_dvbin='#define CONFIG_DVBIN 1'
4715 _aomodules="mpegpes(dvb) $_aomodules"
4716 _vomodules="mpegpes(dvb) $_vomodules"
4717 else
4718 _dvbin=no
4719 _noinputmodules="dvb $_noinputmodules"
4720 def_dvb='#undef CONFIG_DVB'
4721 def_dvbin='#undef CONFIG_DVBIN '
4722 _aomodules="mpegpes(file) $_aomodules"
4723 _vomodules="mpegpes(file) $_vomodules"
4727 if darwin; then
4729 echocheck "QuickTime"
4730 if test "$quicktime" = auto ; then
4731 cat > $TMPC <<EOF
4732 #include <QuickTime/QuickTime.h>
4733 int main(void) {
4734 ImageDescription *desc;
4735 EnterMovies();
4736 ExitMovies();
4737 return 0;
4740 quicktime=no
4741 cc_check -framework QuickTime && quicktime=yes
4743 if test "$quicktime" = yes ; then
4744 extra_ldflags="$extra_ldflags -framework QuickTime"
4745 def_quicktime='#define CONFIG_QUICKTIME 1'
4746 else
4747 def_quicktime='#undef CONFIG_QUICKTIME'
4748 _quartz=no
4750 echores $quicktime
4752 echocheck "Quartz"
4753 if test "$_quartz" = auto ; then
4754 cat > $TMPC <<EOF
4755 #include <Carbon/Carbon.h>
4756 int main(void) {
4757 CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false);
4758 return 0;
4761 _quartz=no
4762 cc_check -framework Carbon && _quartz=yes
4764 if test "$_quartz" = yes ; then
4765 libs_mplayer="$libs_mplayer -framework Carbon"
4766 def_quartz='#define CONFIG_QUARTZ 1'
4767 _vomodules="quartz $_vomodules"
4768 else
4769 def_quartz='#undef CONFIG_QUARTZ'
4770 _novomodules="quartz $_novomodules"
4772 echores $_quartz
4774 echocheck "CoreVideo"
4775 if test "$_corevideo" = auto ; then
4776 cat > $TMPC <<EOF
4777 #include <Carbon/Carbon.h>
4778 #include <CoreServices/CoreServices.h>
4779 #include <OpenGL/OpenGL.h>
4780 #include <QuartzCore/CoreVideo.h>
4781 int main(void) { return 0; }
4783 _corevideo=no
4784 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4786 if test "$_corevideo" = yes ; then
4787 _vomodules="corevideo $_vomodules"
4788 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4789 def_corevideo='#define CONFIG_COREVIDEO 1'
4790 else
4791 _novomodules="corevideo $_novomodules"
4792 def_corevideo='#undef CONFIG_COREVIDEO'
4794 echores "$_corevideo"
4796 fi #if darwin
4799 echocheck "PNG support"
4800 if test "$_png" = auto ; then
4801 _png=no
4802 if irix ; then
4803 # Don't check for -lpng on irix since it has its own libpng
4804 # incompatible with the GNU libpng
4805 _res_comment="disabled on irix (not GNU libpng)"
4806 else
4807 cat > $TMPC << EOF
4808 #include <png.h>
4809 #include <string.h>
4810 int main(void) {
4811 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4812 printf("libpng: %s\n", png_libpng_ver);
4813 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4816 cc_check -lpng -lz $_ld_lm && _png=yes
4819 echores "$_png"
4820 if test "$_png" = yes ; then
4821 def_png='#define CONFIG_PNG 1'
4822 extra_ldflags="$extra_ldflags -lpng -lz"
4823 else
4824 def_png='#undef CONFIG_PNG'
4827 echocheck "MNG support"
4828 if test "$_mng" = auto ; then
4829 _mng=no
4830 cat > $TMPC << EOF
4831 #include <libmng.h>
4832 int main(void) {
4833 const char * p_ver = mng_version_text();
4834 return !p_ver || p_ver[0] == 0;
4837 if cc_check -lmng -lz $_ld_lm ; then
4838 _mng=yes
4841 echores "$_mng"
4842 if test "$_mng" = yes ; then
4843 def_mng='#define CONFIG_MNG 1'
4844 extra_ldflags="$extra_ldflags -lmng -lz"
4845 else
4846 def_mng='#undef CONFIG_MNG'
4849 echocheck "JPEG support"
4850 if test "$_jpeg" = auto ; then
4851 _jpeg=no
4852 cat > $TMPC << EOF
4853 #include <stdio.h>
4854 #include <stdlib.h>
4855 #include <setjmp.h>
4856 #include <string.h>
4857 #include <jpeglib.h>
4858 int main(void) { return 0; }
4860 cc_check -ljpeg $_ld_lm && _jpeg=yes
4862 echores "$_jpeg"
4864 if test "$_jpeg" = yes ; then
4865 def_jpeg='#define CONFIG_JPEG 1'
4866 _vomodules="jpeg $_vomodules"
4867 extra_ldflags="$extra_ldflags -ljpeg"
4868 else
4869 def_jpeg='#undef CONFIG_JPEG'
4870 _novomodules="jpeg $_novomodules"
4875 echocheck "PNM support"
4876 if test "$_pnm" = yes; then
4877 def_pnm="#define CONFIG_PNM 1"
4878 _vomodules="pnm $_vomodules"
4879 else
4880 def_pnm="#undef CONFIG_PNM"
4881 _novomodules="pnm $_novomodules"
4883 echores "$_pnm"
4887 echocheck "GIF support"
4888 # This is to appease people who want to force gif support.
4889 # If it is forced to yes, then we still do checks to determine
4890 # which gif library to use.
4891 if test "$_gif" = yes ; then
4892 _force_gif=yes
4893 _gif=auto
4896 if test "$_gif" = auto ; then
4897 _gif=no
4898 cat > $TMPC << EOF
4899 #include <gif_lib.h>
4900 int main(void) { return 0; }
4902 for _ld_gif in "-lungif" "-lgif" ; do
4903 cc_check $_ld_gif && _gif=yes && break
4904 done
4907 # If no library was found, and the user wants support forced,
4908 # then we force it on with libgif, as this is the safest
4909 # assumption IMHO. (libungif & libregif both create symbolic
4910 # links to libgif. We also assume that no x11 support is needed,
4911 # because if you are forcing this, then you _should_ know what
4912 # you are doing. [ Besides, package maintainers should never
4913 # have compiled x11 deps into libungif in the first place. ] )
4914 # </rant>
4915 # --Joey
4916 if test "$_force_gif" = yes && test "$_gif" = no ; then
4917 _gif=yes
4918 _ld_gif="-lgif"
4921 if test "$_gif" = yes ; then
4922 def_gif='#define CONFIG_GIF 1'
4923 _codecmodules="gif $_codecmodules"
4924 _vomodules="gif89a $_vomodules"
4925 _res_comment="old version, some encoding functions disabled"
4926 def_gif_4='#undef CONFIG_GIF_4'
4927 extra_ldflags="$extra_ldflags $_ld_gif"
4929 cat > $TMPC << EOF
4930 #include <signal.h>
4931 #include <gif_lib.h>
4932 void catch() { exit(1); }
4933 int main(void) {
4934 signal(SIGSEGV, catch); // catch segfault
4935 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4936 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4937 return 0;
4940 if cc_check "$_ld_gif" ; then
4941 def_gif_4='#define CONFIG_GIF_4 1'
4942 _res_comment=""
4944 else
4945 def_gif='#undef CONFIG_GIF'
4946 def_gif_4='#undef CONFIG_GIF_4'
4947 _novomodules="gif89a $_novomodules"
4948 _nocodecmodules="gif $_nocodecmodules"
4950 echores "$_gif"
4953 case "$_gif" in yes*)
4954 echocheck "broken giflib workaround"
4955 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
4957 cat > $TMPC << EOF
4958 #include <gif_lib.h>
4959 int main(void) {
4960 GifFileType gif;
4961 printf("UserData is at address %p\n", gif.UserData);
4962 return 0;
4965 if cc_check "$_ld_gif" ; then
4966 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
4967 echores "disabled"
4968 else
4969 echores "enabled"
4972 esac
4975 echocheck "VESA support"
4976 if test "$_vesa" = auto ; then
4977 cat > $TMPC << EOF
4978 #include <vbe.h>
4979 int main(void) { vbeVersion(); return 0; }
4981 _vesa=no
4982 cc_check -lvbe -llrmi && _vesa=yes
4984 if test "$_vesa" = yes ; then
4985 def_vesa='#define CONFIG_VESA 1'
4986 libs_mplayer="$libs_mplayer -lvbe -llrmi"
4987 _vomodules="vesa $_vomodules"
4988 else
4989 def_vesa='#undef CONFIG_VESA'
4990 _novomodules="vesa $_novomodules"
4992 echores "$_vesa"
4994 #################
4995 # VIDEO + AUDIO #
4996 #################
4999 echocheck "SDL"
5000 _inc_tmp=""
5001 _ld_tmp=""
5002 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
5003 if test -z "$_sdlconfig" ; then
5004 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
5005 _sdlconfig="sdl-config"
5006 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
5007 _sdlconfig="sdl11-config"
5008 else
5009 _sdlconfig=false
5012 if test "$_sdl" = auto || test "$_sdl" = yes ; then
5013 cat > $TMPC << EOF
5014 #ifdef CONFIG_SDL_SDL_H
5015 #include <SDL/SDL.h>
5016 #else
5017 #include <SDL.h>
5018 #endif
5019 #ifndef __APPLE__
5020 // we allow SDL hacking our main() only on OSX
5021 #undef main
5022 #endif
5023 int main(int argc, char *argv[]) {
5024 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
5025 return 0;
5028 _sdl=no
5029 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
5030 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
5031 _sdl=yes
5032 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
5033 break
5035 done
5036 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
5037 _res_comment="using $_sdlconfig"
5038 if cygwin ; then
5039 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
5040 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
5041 elif mingw32 ; then
5042 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
5043 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
5044 else
5045 _inc_tmp="$($_sdlconfig --cflags)"
5046 _ld_tmp="$($_sdlconfig --libs)"
5048 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
5049 _sdl=yes
5053 if test "$_sdl" = yes ; then
5054 def_sdl='#define CONFIG_SDL 1'
5055 extra_cflags="$extra_cflags $_inc_tmp"
5056 libs_mplayer="$libs_mplayer $_ld_tmp"
5057 _vomodules="sdl $_vomodules"
5058 _aomodules="sdl $_aomodules"
5059 else
5060 def_sdl='#undef CONFIG_SDL'
5061 _novomodules="sdl $_novomodules"
5062 _noaomodules="sdl $_noaomodules"
5064 echores "$_sdl"
5067 # make sure this stays below CoreVideo to avoid issues due to namespace
5068 # conflicts between -lGL and -framework OpenGL
5069 echocheck "OpenGL"
5070 #Note: this test is run even with --enable-gl since we autodetect linker flags
5071 if (test "$_x11" = yes || test "$_sdl" = yes || win32) && test "$_gl" != no ; then
5072 cat > $TMPC << EOF
5073 #ifdef GL_WIN32
5074 #include <windows.h>
5075 #include <GL/gl.h>
5076 #elif defined(GL_SDL)
5077 #include <GL/gl.h>
5078 #ifdef CONFIG_SDL_SDL_H
5079 #include <SDL/SDL.h>
5080 #else
5081 #include <SDL.h>
5082 #endif
5083 #ifndef __APPLE__
5084 // we allow SDL hacking our main() only on OSX
5085 #undef main
5086 #endif
5087 #else
5088 #include <GL/gl.h>
5089 #include <X11/Xlib.h>
5090 #include <GL/glx.h>
5091 #endif
5092 int main(void) {
5093 #ifdef GL_WIN32
5094 HDC dc;
5095 wglCreateContext(dc);
5096 #elif defined(GL_SDL)
5097 SDL_GL_SwapBuffers();
5098 #else
5099 glXCreateContext(NULL, NULL, NULL, True);
5100 #endif
5101 glFinish();
5102 return 0;
5105 _gl=no
5106 for _ld_tmp in "" -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
5107 if cc_check $_ld_tmp $_ld_lm ; then
5108 _gl=yes
5109 _gl_x11=yes
5110 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
5111 break
5113 done
5114 if cc_check -DGL_WIN32 -lopengl32 ; then
5115 _gl=yes
5116 _gl_win32=yes
5117 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
5119 # last so it can reuse any linker etc. flags detected before
5120 if test "$_sdl" = yes ; then
5121 if cc_check -DGL_SDL ||
5122 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL ; then
5123 _gl=yes
5124 _gl_sdl=yes
5125 elif cc_check -DGL_SDL -lGL ||
5126 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL -lGL ; then
5127 _gl=yes
5128 _gl_sdl=yes
5129 libs_mplayer="$libs_mplayer -lGL"
5132 else
5133 _gl=no
5135 if test "$_gl" = yes ; then
5136 def_gl='#define CONFIG_GL 1'
5137 _res_comment="backends:"
5138 if test "$_gl_win32" = yes ; then
5139 def_gl_win32='#define CONFIG_GL_WIN32 1'
5140 _res_comment="$_res_comment win32"
5142 if test "$_gl_x11" = yes ; then
5143 def_gl_x11='#define CONFIG_GL_X11 1'
5144 _res_comment="$_res_comment x11"
5146 if test "$_gl_sdl" = yes ; then
5147 def_gl_sdl='#define CONFIG_GL_SDL 1'
5148 _res_comment="$_res_comment sdl"
5150 _vomodules="opengl $_vomodules"
5151 else
5152 def_gl='#undef CONFIG_GL'
5153 def_gl_win32='#undef CONFIG_GL_WIN32'
5154 def_gl_x11='#undef CONFIG_GL_X11'
5155 def_gl_sdl='#undef CONFIG_GL_SDL'
5156 _novomodules="opengl $_novomodules"
5158 echores "$_gl"
5161 echocheck "MatrixView"
5162 if test "$_gl" = no ; then
5163 matrixview=no
5165 if test "$matrixview" = yes ; then
5166 _vomodules="matrixview $_vomodules"
5167 def_matrixview='#define CONFIG_MATRIXVIEW 1'
5168 else
5169 _novomodules="matrixview $_novomodules"
5170 def_matrixview='#undef CONFIG_MATRIXVIEW'
5172 echores "$matrixview"
5175 if os2 ; then
5176 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
5177 if test "$_kva" = auto; then
5178 cat > $TMPC << EOF
5179 #include <os2.h>
5180 #include <kva.h>
5181 int main( void ) { return 0; }
5183 _kva=no;
5184 cc_check -lkva && _kva=yes
5186 if test "$_kva" = yes ; then
5187 def_kva='#define CONFIG_KVA 1'
5188 libs_mplayer="$libs_mplayer -lkva"
5189 _vomodules="kva $_vomodules"
5190 else
5191 def_kva='#undef CONFIG_KVA'
5192 _novomodules="kva $_novomodules"
5194 echores "$_kva"
5195 fi #if os2
5198 if win32; then
5200 echocheck "Windows waveout"
5201 if test "$_win32waveout" = auto ; then
5202 cat > $TMPC << EOF
5203 #include <windows.h>
5204 #include <mmsystem.h>
5205 int main(void) { return 0; }
5207 _win32waveout=no
5208 cc_check -lwinmm && _win32waveout=yes
5210 if test "$_win32waveout" = yes ; then
5211 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
5212 libs_mplayer="$libs_mplayer -lwinmm"
5213 _aomodules="win32 $_aomodules"
5214 else
5215 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
5216 _noaomodules="win32 $_noaomodules"
5218 echores "$_win32waveout"
5220 echocheck "Direct3D"
5221 if test "$_direct3d" = auto ; then
5222 cat > $TMPC << EOF
5223 #include <windows.h>
5224 #include <d3d9.h>
5225 int main(void) { return 0; }
5227 _direct3d=no
5228 cc_check && _direct3d=yes
5230 if test "$_direct3d" = yes ; then
5231 def_direct3d='#define CONFIG_DIRECT3D 1'
5232 _vomodules="direct3d $_vomodules"
5233 else
5234 def_direct3d='#undef CONFIG_DIRECT3D'
5235 _novomodules="direct3d $_novomodules"
5237 echores "$_direct3d"
5239 echocheck "Directx"
5240 if test "$_directx" = auto ; then
5241 cat > $TMPC << EOF
5242 #include <windows.h>
5243 #include <ddraw.h>
5244 #include <dsound.h>
5245 int main(void) { return 0; }
5247 _directx=no
5248 cc_check -lgdi32 && _directx=yes
5250 if test "$_directx" = yes ; then
5251 def_directx='#define CONFIG_DIRECTX 1'
5252 libs_mplayer="$libs_mplayer -lgdi32"
5253 _vomodules="directx $_vomodules"
5254 _aomodules="dsound $_aomodules"
5255 else
5256 def_directx='#undef CONFIG_DIRECTX'
5257 _novomodules="directx $_novomodules"
5258 _noaomodules="dsound $_noaomodules"
5260 echores "$_directx"
5262 fi #if win32; then
5265 echocheck "DXR2"
5266 if test "$_dxr2" = auto; then
5267 _dxr2=no
5268 cat > $TMPC << EOF
5269 #include <dxr2ioctl.h>
5270 int main(void) { return 0; }
5272 for _inc_tmp in "" -I/usr/local/include/dxr2 -I/usr/include/dxr2; do
5273 cc_check $_inc_tmp && _dxr2=yes && \
5274 extra_cflags="$extra_cflags $_inc_tmp" && break
5275 done
5277 if test "$_dxr2" = yes; then
5278 def_dxr2='#define CONFIG_DXR2 1'
5279 _aomodules="dxr2 $_aomodules"
5280 _vomodules="dxr2 $_vomodules"
5281 else
5282 def_dxr2='#undef CONFIG_DXR2'
5283 _noaomodules="dxr2 $_noaomodules"
5284 _novomodules="dxr2 $_novomodules"
5286 echores "$_dxr2"
5288 echocheck "DXR3/H+"
5289 if test "$_dxr3" = auto ; then
5290 cat > $TMPC << EOF
5291 #include <linux/em8300.h>
5292 int main(void) { return 0; }
5294 _dxr3=no
5295 cc_check && _dxr3=yes
5297 if test "$_dxr3" = yes ; then
5298 def_dxr3='#define CONFIG_DXR3 1'
5299 _vomodules="dxr3 $_vomodules"
5300 else
5301 def_dxr3='#undef CONFIG_DXR3'
5302 _novomodules="dxr3 $_novomodules"
5304 echores "$_dxr3"
5307 echocheck "IVTV TV-Out (pre linux-2.6.24)"
5308 if test "$_ivtv" = auto ; then
5309 cat > $TMPC << EOF
5310 #include <stdlib.h>
5311 #include <inttypes.h>
5312 #include <linux/types.h>
5313 #include <linux/videodev2.h>
5314 #include <linux/ivtv.h>
5315 #include <sys/ioctl.h>
5316 int main(void) {
5317 struct ivtv_cfg_stop_decode sd;
5318 struct ivtv_cfg_start_decode sd1;
5319 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
5320 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
5321 return 0; }
5323 _ivtv=no
5324 cc_check && _ivtv=yes
5326 if test "$_ivtv" = yes ; then
5327 def_ivtv='#define CONFIG_IVTV 1'
5328 _vomodules="ivtv $_vomodules"
5329 _aomodules="ivtv $_aomodules"
5330 else
5331 def_ivtv='#undef CONFIG_IVTV'
5332 _novomodules="ivtv $_novomodules"
5333 _noaomodules="ivtv $_noaomodules"
5335 echores "$_ivtv"
5338 echocheck "V4L2 MPEG Decoder"
5339 if test "$_v4l2" = auto ; then
5340 cat > $TMPC << EOF
5341 #include <stdlib.h>
5342 #include <inttypes.h>
5343 #include <linux/types.h>
5344 #include <linux/videodev2.h>
5345 #include <linux/version.h>
5346 int main(void) {
5347 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
5348 #error kernel headers too old, need 2.6.22
5349 #endif
5350 struct v4l2_ext_controls ctrls;
5351 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
5352 return 0;
5355 _v4l2=no
5356 cc_check && _v4l2=yes
5358 if test "$_v4l2" = yes ; then
5359 def_v4l2='#define CONFIG_V4L2_DECODER 1'
5360 _vomodules="v4l2 $_vomodules"
5361 _aomodules="v4l2 $_aomodules"
5362 else
5363 def_v4l2='#undef CONFIG_V4L2_DECODER'
5364 _novomodules="v4l2 $_novomodules"
5365 _noaomodules="v4l2 $_noaomodules"
5367 echores "$_v4l2"
5371 #########
5372 # AUDIO #
5373 #########
5376 echocheck "OSS Audio"
5377 if test "$_ossaudio" = auto ; then
5378 cat > $TMPC << EOF
5379 #include <sys/ioctl.h>
5380 #include <$_soundcard_header>
5381 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
5383 _ossaudio=no
5384 cc_check && _ossaudio=yes
5386 if test "$_ossaudio" = yes ; then
5387 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
5388 _aomodules="oss $_aomodules"
5389 if test "$_linux_devfs" = yes; then
5390 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound/dsp"'
5391 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/sound/mixer"'
5392 else
5393 cat > $TMPC << EOF
5394 #include <sys/ioctl.h>
5395 #include <$_soundcard_header>
5396 #ifdef OPEN_SOUND_SYSTEM
5397 int main(void) { return 0; }
5398 #else
5399 #error Not the real thing
5400 #endif
5402 _real_ossaudio=no
5403 cc_check && _real_ossaudio=yes
5404 if test "$_real_ossaudio" = yes; then
5405 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5406 # Check for OSS4 headers (override default headers)
5407 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
5408 if test -f /etc/oss.conf; then
5409 . /etc/oss.conf
5410 _ossinc="$OSSLIBDIR/include"
5411 if test -f "$_ossinc/sys/soundcard.h"; then
5412 extra_cflags="-I$_ossinc $extra_cflags"
5415 elif netbsd || openbsd ; then
5416 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
5417 extra_ldflags="$extra_ldflags -lossaudio"
5418 else
5419 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5421 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
5423 else
5424 def_ossaudio='#undef CONFIG_OSS_AUDIO'
5425 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
5426 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
5427 _noaomodules="oss $_noaomodules"
5429 echores "$_ossaudio"
5432 echocheck "aRts"
5433 if test "$_arts" = auto ; then
5434 _arts=no
5435 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
5437 cat > $TMPC << EOF
5438 #include <artsc.h>
5439 int main(void) { return 0; }
5441 cc_check $(artsc-config --libs) $(artsc-config --cflags) && _arts=yes
5446 if test "$_arts" = yes ; then
5447 def_arts='#define CONFIG_ARTS 1'
5448 _aomodules="arts $_aomodules"
5449 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
5450 extra_cflags="$extra_cflags $(artsc-config --cflags)"
5451 else
5452 _noaomodules="arts $_noaomodules"
5454 echores "$_arts"
5457 echocheck "EsounD"
5458 if test "$_esd" = auto ; then
5459 _esd=no
5460 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
5462 cat > $TMPC << EOF
5463 #include <esd.h>
5464 int main(void) { int fd = esd_open_sound("test"); return fd; }
5466 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd=yes
5470 echores "$_esd"
5472 if test "$_esd" = yes ; then
5473 def_esd='#define CONFIG_ESD 1'
5474 _aomodules="esd $_aomodules"
5475 libs_mplayer="$libs_mplayer $(esd-config --libs)"
5476 extra_cflags="$extra_cflags $(esd-config --cflags)"
5478 echocheck "esd_get_latency()"
5479 cat > $TMPC << EOF
5480 #include <esd.h>
5481 int main(void) { return esd_get_latency(0); }
5483 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
5484 echores "$_esd_latency"
5485 else
5486 def_esd='#undef CONFIG_ESD'
5487 def_esd_latency='#undef CONFIG_ESD_LATENCY'
5488 _noaomodules="esd $_noaomodules"
5492 echocheck "NAS"
5493 if test "$_nas" = auto ; then
5494 cat > $TMPC << EOF
5495 #include <audio/audiolib.h>
5496 int main(void) { return 0; }
5498 _nas=no
5499 cc_check $_ld_lm -laudio -lXt && _nas=yes
5501 if test "$_nas" = yes ; then
5502 def_nas='#define CONFIG_NAS 1'
5503 libs_mplayer="$libs_mplayer -laudio -lXt"
5504 _aomodules="nas $_aomodules"
5505 else
5506 _noaomodules="nas $_noaomodules"
5507 def_nas='#undef CONFIG_NAS'
5509 echores "$_nas"
5512 echocheck "pulse"
5513 if test "$_pulse" = auto ; then
5514 _pulse=no
5515 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5517 cat > $TMPC << EOF
5518 #include <pulse/pulseaudio.h>
5519 int main(void) { return 0; }
5521 cc_check $($_pkg_config --libs --cflags libpulse) && _pulse=yes
5525 echores "$_pulse"
5527 if test "$_pulse" = yes ; then
5528 def_pulse='#define CONFIG_PULSE 1'
5529 _aomodules="pulse $_aomodules"
5530 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
5531 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
5532 else
5533 def_pulse='#undef CONFIG_PULSE'
5534 _noaomodules="pulse $_noaomodules"
5538 echocheck "JACK"
5539 if test "$_jack" = auto ; then
5540 _jack=yes
5542 cat > $TMPC << EOF
5543 #include <jack/jack.h>
5544 int main(void) { jack_client_open("test", JackUseExactName, NULL); return 0; }
5546 if cc_check -ljack ; then
5547 libs_mplayer="$libs_mplayer -ljack"
5548 elif cc_check $($_pkg_config --libs --cflags --silence-errors jack) ; then
5549 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
5550 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
5551 else
5552 _jack=no
5556 if test "$_jack" = yes ; then
5557 def_jack='#define CONFIG_JACK 1'
5558 _aomodules="jack $_aomodules"
5559 else
5560 _noaomodules="jack $_noaomodules"
5562 echores "$_jack"
5564 echocheck "OpenAL"
5565 if test "$_openal" = auto ; then
5566 _openal=no
5567 cat > $TMPC << EOF
5568 #ifdef OPENAL_AL_H
5569 #include <OpenAL/al.h>
5570 #else
5571 #include <AL/al.h>
5572 #endif
5573 int main(void) {
5574 alSourceQueueBuffers(0, 0, 0);
5575 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5576 return 0;
5579 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5580 cc_check $I && _openal=yes && break
5581 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5582 done
5583 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
5585 if test "$_openal" = yes ; then
5586 def_openal='#define CONFIG_OPENAL 1'
5587 _aomodules="openal $_aomodules"
5588 else
5589 _noaomodules="openal $_noaomodules"
5591 echores "$_openal"
5593 echocheck "ALSA audio"
5594 if test "$_alloca" != yes ; then
5595 _alsa=no
5596 _res_comment="alloca missing"
5598 if test "$_alsa" != no ; then
5599 _alsa=no
5600 cat > $TMPC << EOF
5601 #include <sys/time.h>
5602 #include <sys/asoundlib.h>
5603 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5604 #error "alsa version != 0.5.x"
5605 #endif
5606 int main(void) { return 0; }
5608 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5610 cat > $TMPC << EOF
5611 #include <sys/time.h>
5612 #include <sys/asoundlib.h>
5613 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5614 #error "alsa version != 0.9.x"
5615 #endif
5616 int main(void) { return 0; }
5618 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5619 cat > $TMPC << EOF
5620 #include <sys/time.h>
5621 #include <alsa/asoundlib.h>
5622 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5623 #error "alsa version != 0.9.x"
5624 #endif
5625 int main(void) { return 0; }
5627 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5629 cat > $TMPC << EOF
5630 #include <sys/time.h>
5631 #include <sys/asoundlib.h>
5632 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5633 #error "alsa version != 1.0.x"
5634 #endif
5635 int main(void) { return 0; }
5637 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5638 cat > $TMPC << EOF
5639 #include <sys/time.h>
5640 #include <alsa/asoundlib.h>
5641 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5642 #error "alsa version != 1.0.x"
5643 #endif
5644 int main(void) { return 0; }
5646 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5648 def_alsa='#undef CONFIG_ALSA'
5649 def_alsa5='#undef CONFIG_ALSA5'
5650 def_alsa9='#undef CONFIG_ALSA9'
5651 def_alsa1x='#undef CONFIG_ALSA1X'
5652 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5653 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5654 if test "$_alsaver" ; then
5655 _alsa=yes
5656 if test "$_alsaver" = '0.5.x' ; then
5657 _alsa5=yes
5658 _aomodules="alsa5 $_aomodules"
5659 def_alsa5='#define CONFIG_ALSA5 1'
5660 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5661 _res_comment="using alsa 0.5.x and sys/asoundlib.h"
5662 elif test "$_alsaver" = '0.9.x-sys' ; then
5663 _alsa9=yes
5664 _aomodules="alsa $_aomodules"
5665 def_alsa='#define CONFIG_ALSA 1'
5666 def_alsa9='#define CONFIG_ALSA9 1'
5667 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5668 _res_comment="using alsa 0.9.x and sys/asoundlib.h"
5669 elif test "$_alsaver" = '0.9.x-alsa' ; then
5670 _alsa9=yes
5671 _aomodules="alsa $_aomodules"
5672 def_alsa='#define CONFIG_ALSA 1'
5673 def_alsa9='#define CONFIG_ALSA9 1'
5674 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5675 _res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5676 elif test "$_alsaver" = '1.0.x-sys' ; then
5677 _alsa1x=yes
5678 _aomodules="alsa $_aomodules"
5679 def_alsa='#define CONFIG_ALSA 1'
5680 def_alsa1x="#define CONFIG_ALSA1X 1"
5681 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5682 _res_comment="using alsa 1.0.x and sys/asoundlib.h"
5683 elif test "$_alsaver" = '1.0.x-alsa' ; then
5684 _alsa1x=yes
5685 _aomodules="alsa $_aomodules"
5686 def_alsa='#define CONFIG_ALSA 1'
5687 def_alsa1x="#define CONFIG_ALSA1X 1"
5688 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5689 _res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5690 else
5691 _alsa=no
5692 _res_comment="unknown version"
5694 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5695 else
5696 _noaomodules="alsa $_noaomodules"
5698 echores "$_alsa"
5701 echocheck "Sun audio"
5702 if test "$_sunaudio" = auto ; then
5703 cat > $TMPC << EOF
5704 #include <sys/types.h>
5705 #include <sys/audioio.h>
5706 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5708 _sunaudio=no
5709 cc_check && _sunaudio=yes
5711 if test "$_sunaudio" = yes ; then
5712 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5713 _aomodules="sun $_aomodules"
5714 else
5715 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5716 _noaomodules="sun $_noaomodules"
5718 echores "$_sunaudio"
5721 def_mlib='#define CONFIG_MLIB 0'
5722 if sunos; then
5723 echocheck "Sun mediaLib"
5724 if test "$_mlib" = auto ; then
5725 _mlib=no
5726 cat > $TMPC << EOF
5727 #include <mlib.h>
5728 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; }
5730 cc_check -lmlib && _mlib=yes && def_mlib='#define CONFIG_MLIB 1'
5732 echores "$_mlib"
5733 fi #if sunos
5736 if darwin; then
5737 echocheck "CoreAudio"
5738 if test "$_coreaudio" = auto ; then
5739 cat > $TMPC <<EOF
5740 #include <CoreAudio/CoreAudio.h>
5741 #include <AudioToolbox/AudioToolbox.h>
5742 #include <AudioUnit/AudioUnit.h>
5743 int main(void) { return 0; }
5745 _coreaudio=no
5746 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5748 if test "$_coreaudio" = yes ; then
5749 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5750 def_coreaudio='#define CONFIG_COREAUDIO 1'
5751 _aomodules="coreaudio $_aomodules"
5752 else
5753 def_coreaudio='#undef CONFIG_COREAUDIO'
5754 _noaomodules="coreaudio $_noaomodules"
5756 echores $_coreaudio
5757 fi #if darwin
5760 if irix; then
5761 echocheck "SGI audio"
5762 if test "$_sgiaudio" = auto ; then
5763 # check for SGI audio
5764 cat > $TMPC << EOF
5765 #include <dmedia/audio.h>
5766 int main(void) { return 0; }
5768 _sgiaudio=no
5769 cc_check && _sgiaudio=yes
5771 if test "$_sgiaudio" = "yes" ; then
5772 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5773 libs_mplayer="$libs_mplayer -laudio"
5774 _aomodules="sgi $_aomodules"
5775 else
5776 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5777 _noaomodules="sgi $_noaomodules"
5779 echores "$_sgiaudio"
5780 fi #if irix
5783 if os2 ; then
5784 echocheck "KAI (UNIAUD/DART)"
5785 if test "$_kai" = auto; then
5786 cat > $TMPC << EOF
5787 #include <os2.h>
5788 #include <kai.h>
5789 int main(void) { return 0; }
5791 _kai=no;
5792 cc_check -lkai && _kai=yes
5794 if test "$_kai" = yes ; then
5795 def_kai='#define CONFIG_KAI 1'
5796 libs_mplayer="$libs_mplayer -lkai"
5797 _aomodules="kai $_aomodules"
5798 else
5799 def_kai='#undef CONFIG_KAI'
5800 _noaomodules="kai $_noaomodules"
5802 echores "$_kai"
5804 echocheck "DART"
5805 if test "$_dart" = auto; then
5806 cat > $TMPC << EOF
5807 #include <os2.h>
5808 #include <dart.h>
5809 int main( void ) { return 0; }
5811 _dart=no;
5812 cc_check -ldart && _dart=yes
5814 if test "$_dart" = yes ; then
5815 def_dart='#define CONFIG_DART 1'
5816 libs_mplayer="$libs_mplayer -ldart"
5817 _aomodules="dart $_aomodules"
5818 else
5819 def_dart='#undef CONFIG_DART'
5820 _noaomodules="dart $_noaomodules"
5822 echores "$_dart"
5823 fi #if os2
5826 # set default CD/DVD devices
5827 if win32 || os2 ; then
5828 default_cdrom_device="D:"
5829 elif darwin ; then
5830 default_cdrom_device="/dev/disk1"
5831 elif dragonfly ; then
5832 default_cdrom_device="/dev/cd0"
5833 elif freebsd ; then
5834 default_cdrom_device="/dev/acd0"
5835 elif openbsd ; then
5836 default_cdrom_device="/dev/rcd0a"
5837 elif sunos ; then
5838 default_cdrom_device="/vol/dev/aliases/cdrom0"
5839 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5840 # file system and the volfs service.
5841 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5842 elif amigaos ; then
5843 default_cdrom_device="a1ide.device:2"
5844 else
5845 default_cdrom_device="/dev/cdrom"
5848 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5849 default_dvd_device=$default_cdrom_device
5850 elif darwin ; then
5851 default_dvd_device="/dev/rdiskN"
5852 else
5853 default_dvd_device="/dev/dvd"
5857 echocheck "VCD support"
5858 if test "$_vcd" = auto; then
5859 _vcd=no
5860 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2; then
5861 _vcd=yes
5862 elif mingw32; then
5863 cat > $TMPC << EOF
5864 #include <ddk/ntddcdrm.h>
5865 int main(void) { return 0; }
5867 cc_check && _vcd=yes
5870 if test "$_vcd" = yes; then
5871 _inputmodules="vcd $_inputmodules"
5872 def_vcd='#define CONFIG_VCD 1'
5873 else
5874 def_vcd='#undef CONFIG_VCD'
5875 _noinputmodules="vcd $_noinputmodules"
5876 _res_comment="not supported on this OS"
5878 echores "$_vcd"
5882 echocheck "dvdread"
5883 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5884 _dvdread_internal=no
5886 if test "$_dvdread_internal" = auto ; then
5887 _dvdread_internal=no
5888 _dvdread=no
5889 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) \
5890 && (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
5891 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) \
5892 || darwin || win32 || os2; then
5893 _dvdread_internal=yes
5894 _dvdread=yes
5895 extra_cflags="-Ilibdvdread4 $extra_cflags"
5897 elif test "$_dvdread" = auto ; then
5898 _dvdread=no
5899 if test "$_dl" = yes; then
5900 cat > $TMPC << EOF
5901 #include <inttypes.h>
5902 #include <dvdread/dvd_reader.h>
5903 #include <dvdread/ifo_types.h>
5904 #include <dvdread/ifo_read.h>
5905 #include <dvdread/nav_read.h>
5906 int main(void) { return 0; }
5908 _dvdreadcflags=$($_dvdreadconfig --cflags)
5909 _dvdreadlibs=$($_dvdreadconfig --libs)
5910 if cc_check -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
5911 $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5912 _dvdread=yes
5913 extra_cflags="$extra_cflags $_dvdreadcflags"
5914 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5915 _res_comment="external"
5920 if test "$_dvdread_internal" = yes; then
5921 def_dvdread='#define CONFIG_DVDREAD 1'
5922 _inputmodules="dvdread(internal) $_inputmodules"
5923 _largefiles=yes
5924 _res_comment="internal"
5925 elif test "$_dvdread" = yes; then
5926 def_dvdread='#define CONFIG_DVDREAD 1'
5927 _largefiles=yes
5928 extra_ldflags="$extra_ldflags -ldvdread"
5929 _inputmodules="dvdread(external) $_inputmodules"
5930 _res_comment="external"
5931 else
5932 def_dvdread='#undef CONFIG_DVDREAD'
5933 _noinputmodules="dvdread $_noinputmodules"
5935 echores "$_dvdread"
5938 echocheck "internal libdvdcss"
5939 if test "$_libdvdcss_internal" = auto ; then
5940 _libdvdcss_internal=no
5941 test "$_dvdread_internal" = yes && _libdvdcss_internal=yes
5942 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5944 if test "$_libdvdcss_internal" = yes ; then
5945 if linux || netbsd || openbsd || bsdos ; then
5946 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5947 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5948 elif freebsd || dragonfly ; then
5949 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5950 elif darwin ; then
5951 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5952 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5953 elif cygwin ; then
5954 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5955 elif beos ; then
5956 cflags_libdvdcss="-DSYS_BEOS"
5957 elif os2 ; then
5958 cflags_libdvdcss="-DSYS_OS2"
5960 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5961 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5962 _inputmodules="libdvdcss(internal) $_inputmodules"
5963 _largefiles=yes
5964 else
5965 _noinputmodules="libdvdcss(internal) $_noinputmodules"
5967 echores "$_libdvdcss_internal"
5970 echocheck "cdparanoia"
5971 if test "$_cdparanoia" = auto ; then
5972 cat > $TMPC <<EOF
5973 #include <cdda_interface.h>
5974 #include <cdda_paranoia.h>
5975 // This need a better test. How ?
5976 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5978 _cdparanoia=no
5979 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5980 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
5981 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5982 done
5984 if test "$_cdparanoia" = yes ; then
5985 _cdda='yes'
5986 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5987 openbsd && extra_ldflags="$extra_ldflags -lutil"
5989 echores "$_cdparanoia"
5992 echocheck "libcdio"
5993 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5994 cat > $TMPC << EOF
5995 #include <stdio.h>
5996 #include <cdio/version.h>
5997 #include <cdio/cdda.h>
5998 #include <cdio/paranoia.h>
5999 int main(void) {
6000 void *test = cdda_verbose_set;
6001 printf("%s\n", CDIO_VERSION);
6002 return test == (void *)1;
6005 _libcdio=no
6006 for _ld_tmp in "" "-lwinmm" ; do
6007 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
6008 cc_check $_ld_tmp $_ld_lm \
6009 && _libcdio=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6010 done
6011 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
6012 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
6013 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
6014 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes \
6015 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6018 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
6019 _cdda='yes'
6020 def_libcdio='#define CONFIG_LIBCDIO 1'
6021 def_havelibcdio='yes'
6022 else
6023 if test "$_cdparanoia" = yes ; then
6024 _res_comment="using cdparanoia"
6026 def_libcdio='#undef CONFIG_LIBCDIO'
6027 def_havelibcdio='no'
6029 echores "$_libcdio"
6031 if test "$_cdda" = yes ; then
6032 test $_cddb = auto && test $_network = yes && _cddb=yes
6033 def_cdparanoia='#define CONFIG_CDDA 1'
6034 _inputmodules="cdda $_inputmodules"
6035 else
6036 def_cdparanoia='#undef CONFIG_CDDA'
6037 _noinputmodules="cdda $_noinputmodules"
6040 if test "$_cddb" = yes ; then
6041 def_cddb='#define CONFIG_CDDB 1'
6042 _inputmodules="cddb $_inputmodules"
6043 else
6044 _cddb=no
6045 def_cddb='#undef CONFIG_CDDB'
6046 _noinputmodules="cddb $_noinputmodules"
6049 echocheck "bitmap font support"
6050 if test "$_bitmap_font" = yes ; then
6051 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
6052 else
6053 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
6055 echores "$_bitmap_font"
6058 echocheck "freetype >= 2.0.9"
6060 # freetype depends on iconv
6061 if test "$_iconv" = no ; then
6062 _freetype=no
6063 _res_comment="iconv support needed"
6066 if test "$_freetype" = auto ; then
6067 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
6068 cat > $TMPC << EOF
6069 #include <stdio.h>
6070 #include <ft2build.h>
6071 #include FT_FREETYPE_H
6072 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
6073 #error "Need FreeType 2.0.9 or newer"
6074 #endif
6075 int main(void) {
6076 FT_Library library;
6077 FT_Int major=-1,minor=-1,patch=-1;
6078 int err=FT_Init_FreeType(&library);
6079 return 0;
6082 _freetype=no
6083 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
6084 else
6085 _freetype=no
6088 if test "$_freetype" = yes ; then
6089 def_freetype='#define CONFIG_FREETYPE 1'
6090 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
6091 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
6092 else
6093 def_freetype='#undef CONFIG_FREETYPE'
6095 echores "$_freetype"
6097 if test "$_freetype" = no ; then
6098 _fontconfig=no
6099 _res_comment="FreeType support needed"
6101 echocheck "fontconfig"
6102 if test "$_fontconfig" = auto ; then
6103 cat > $TMPC << EOF
6104 #include <stdio.h>
6105 #include <stdlib.h>
6106 #include <fontconfig/fontconfig.h>
6107 #if FC_VERSION < 20402
6108 #error At least version 2.4.2 of fontconfig required
6109 #endif
6110 int main(void) {
6111 int err = FcInit();
6112 if (err == FcFalse) {
6113 printf("Couldn't initialize fontconfig lib\n");
6114 exit(err);
6116 return 0;
6119 _fontconfig=no
6120 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
6121 _ld_tmp="-lfontconfig $_ld_tmp"
6122 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6123 done
6124 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
6125 _inc_tmp=$($_pkg_config --cflags fontconfig)
6126 _ld_tmp=$($_pkg_config --libs fontconfig)
6127 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes \
6128 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6131 if test "$_fontconfig" = yes ; then
6132 def_fontconfig='#define CONFIG_FONTCONFIG 1'
6133 else
6134 def_fontconfig='#undef CONFIG_FONTCONFIG'
6136 echores "$_fontconfig"
6139 echocheck "SSA/ASS support"
6140 if test "$_ass" = auto -o "$_ass" = yes ; then
6141 if $_pkg_config libass; then
6142 _ass=yes
6143 def_ass='#define CONFIG_ASS 1'
6144 extra_ldflags="$extra_ldflags $($_pkg_config --libs libass)"
6145 extra_cflags="$extra_cflags $($_pkg_config --cflags libass)"
6146 else
6147 _ass=no
6148 def_ass='#undef CONFIG_ASS'
6150 else
6151 def_ass='#undef CONFIG_ASS'
6153 echores "$_ass"
6156 echocheck "fribidi with charsets"
6157 _inc_tmp=""
6158 _ld_tmp=""
6159 if test "$_fribidi" = auto ; then
6160 cat > $TMPC << EOF
6161 #include <stdio.h>
6162 #include <stdlib.h>
6163 /* workaround for fribidi 0.10.4 and below */
6164 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
6165 #include <fribidi/fribidi.h>
6166 int main(void) {
6167 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8) {
6168 printf("Fribidi headers are not consistents with the library!\n");
6169 exit(1);
6171 return 0;
6174 _fribidi=no
6175 _inc_tmp=""
6176 _ld_tmp="-lfribidi"
6177 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6178 if $_fribidiconfig --version > /dev/null 2>&1 &&
6179 test "$_fribidi" = no ; then
6180 _inc_tmp="$($_fribidiconfig --cflags)"
6181 _ld_tmp="$($_fribidiconfig --libs)"
6182 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6185 if test "$_fribidi" = yes ; then
6186 def_fribidi='#define CONFIG_FRIBIDI 1'
6187 extra_cflags="$extra_cflags $_inc_tmp"
6188 extra_ldflags="$extra_ldflags $_ld_tmp"
6189 else
6190 def_fribidi='#undef CONFIG_FRIBIDI'
6192 echores "$_fribidi"
6195 echocheck "ENCA"
6196 if test "$_enca" = auto ; then
6197 cat > $TMPC << EOF
6198 #include <sys/types.h>
6199 #include <enca.h>
6200 int main(void) {
6201 const char **langs;
6202 size_t langcnt;
6203 langs = enca_get_languages(&langcnt);
6204 return 0;
6207 _enca=no
6208 cc_check -lenca $_ld_lm && _enca=yes
6210 if test "$_enca" = yes ; then
6211 def_enca='#define CONFIG_ENCA 1'
6212 extra_ldflags="$extra_ldflags -lenca"
6213 else
6214 def_enca='#undef CONFIG_ENCA'
6216 echores "$_enca"
6219 echocheck "zlib"
6220 cat > $TMPC << EOF
6221 #include <zlib.h>
6222 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; }
6224 _zlib=no
6225 cc_check -lz && _zlib=yes
6226 if test "$_zlib" = yes ; then
6227 def_zlib='#define CONFIG_ZLIB 1'
6228 extra_ldflags="$extra_ldflags -lz"
6229 else
6230 def_zlib='#define CONFIG_ZLIB 0'
6232 echores "$_zlib"
6235 echocheck "bzlib"
6236 bzlib=no
6237 def_bzlib='#define CONFIG_BZLIB 0'
6238 cat > $TMPC << EOF
6239 #include <bzlib.h>
6240 int main(void) { BZ2_bzlibVersion(); return 0; }
6242 cc_check -lbz2 && bzlib=yes
6243 if test "$bzlib" = yes ; then
6244 def_bzlib='#define CONFIG_BZLIB 1'
6245 extra_ldflags="$extra_ldflags -lbz2"
6247 echores "$bzlib"
6250 echocheck "RTC"
6251 if test "$_rtc" = auto ; then
6252 cat > $TMPC << EOF
6253 #include <sys/ioctl.h>
6254 #ifdef __linux__
6255 #include <linux/rtc.h>
6256 #else
6257 #include <rtc.h>
6258 #define RTC_PIE_ON RTCIO_PIE_ON
6259 #endif
6260 int main(void) { return RTC_PIE_ON; }
6262 _rtc=no
6263 cc_check && _rtc=yes
6264 ppc && _rtc=no
6266 if test "$_rtc" = yes ; then
6267 def_rtc='#define HAVE_RTC 1'
6268 else
6269 def_rtc='#undef HAVE_RTC'
6271 echores "$_rtc"
6274 echocheck "liblzo2 support"
6275 if test "$_liblzo" = auto ; then
6276 _liblzo=no
6277 cat > $TMPC << EOF
6278 #include <lzo/lzo1x.h>
6279 int main(void) { lzo_init();return 0; }
6281 cc_check -llzo2 && _liblzo=yes
6283 if test "$_liblzo" = yes ; then
6284 def_liblzo='#define CONFIG_LIBLZO 1'
6285 extra_ldflags="$extra_ldflags -llzo2"
6286 _codecmodules="liblzo $_codecmodules"
6287 else
6288 def_liblzo='#undef CONFIG_LIBLZO'
6289 _nocodecmodules="liblzo $_nocodecmodules"
6291 echores "$_liblzo"
6294 echocheck "mad support"
6295 if test "$_mad" = auto ; then
6296 _mad=no
6297 cat > $TMPC << EOF
6298 #include <mad.h>
6299 int main(void) { return 0; }
6301 cc_check -lmad && _mad=yes
6303 if test "$_mad" = yes ; then
6304 def_mad='#define CONFIG_LIBMAD 1'
6305 extra_ldflags="$extra_ldflags -lmad"
6306 _codecmodules="libmad $_codecmodules"
6307 else
6308 def_mad='#undef CONFIG_LIBMAD'
6309 _nocodecmodules="libmad $_nocodecmodules"
6311 echores "$_mad"
6313 echocheck "Twolame"
6314 if test "$_twolame" = auto ; then
6315 cat > $TMPC <<EOF
6316 #include <twolame.h>
6317 int main(void) { twolame_init(); return 0; }
6319 _twolame=no
6320 cc_check -ltwolame $_ld_lm && _twolame=yes
6322 if test "$_twolame" = yes ; then
6323 def_twolame='#define CONFIG_TWOLAME 1'
6324 libs_mencoder="$libs_mencoder -ltwolame"
6325 _codecmodules="twolame $_codecmodules"
6326 else
6327 def_twolame='#undef CONFIG_TWOLAME'
6328 _nocodecmodules="twolame $_nocodecmodules"
6330 echores "$_twolame"
6332 echocheck "Toolame"
6333 if test "$_toolame" = auto ; then
6334 _toolame=no
6335 if test "$_twolame" = yes ; then
6336 _res_comment="disabled by twolame"
6337 else
6338 cat > $TMPC <<EOF
6339 #include <toolame.h>
6340 int main(void) { toolame_init(); return 0; }
6342 cc_check -ltoolame $_ld_lm && _toolame=yes
6345 if test "$_toolame" = yes ; then
6346 def_toolame='#define CONFIG_TOOLAME 1'
6347 libs_mencoder="$libs_mencoder -ltoolame"
6348 _codecmodules="toolame $_codecmodules"
6349 else
6350 def_toolame='#undef CONFIG_TOOLAME'
6351 _nocodecmodules="toolame $_nocodecmodules"
6353 if test "$_toolamedir" ; then
6354 _res_comment="using $_toolamedir"
6356 echores "$_toolame"
6358 echocheck "OggVorbis support"
6359 if test "$_tremor_internal" = yes; then
6360 _libvorbis=no
6361 elif test "$_tremor" = auto; then
6362 _tremor=no
6363 cat > $TMPC << EOF
6364 #include <tremor/ivorbiscodec.h>
6365 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6367 cc_check -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
6369 if test "$_libvorbis" = auto; then
6370 _libvorbis=no
6371 cat > $TMPC << EOF
6372 #include <vorbis/codec.h>
6373 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6375 cc_check -lvorbis -logg $_ld_lm && _libvorbis=yes
6377 if test "$_tremor_internal" = yes ; then
6378 _vorbis=yes
6379 def_vorbis='#define CONFIG_OGGVORBIS 1'
6380 def_tremor='#define CONFIG_TREMOR 1'
6381 _codecmodules="tremor(internal) $_codecmodules"
6382 _res_comment="internal Tremor"
6383 if test "$_tremor_low" = yes ; then
6384 cflags_tremor_low="-D_LOW_ACCURACY_"
6385 _res_comment="internal low accuracy Tremor"
6387 elif test "$_tremor" = yes ; then
6388 _vorbis=yes
6389 def_vorbis='#define CONFIG_OGGVORBIS 1'
6390 def_tremor='#define CONFIG_TREMOR 1'
6391 _codecmodules="tremor(external) $_codecmodules"
6392 _res_comment="external Tremor"
6393 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
6394 elif test "$_libvorbis" = yes ; then
6395 _vorbis=yes
6396 def_vorbis='#define CONFIG_OGGVORBIS 1'
6397 _codecmodules="libvorbis $_codecmodules"
6398 _res_comment="libvorbis"
6399 extra_ldflags="$extra_ldflags -lvorbis -logg"
6400 else
6401 _vorbis=no
6402 _nocodecmodules="libvorbis $_nocodecmodules"
6404 echores "$_vorbis"
6406 echocheck "libspeex (version >= 1.1 required)"
6407 if test "$_speex" = auto ; then
6408 _speex=no
6409 cat > $TMPC << EOF
6410 #include <speex/speex.h>
6411 int main(void) { SpeexBits bits; void *dec; speex_decode_int(dec, &bits, dec); return 0; }
6413 cc_check -lspeex $_ld_lm && _speex=yes
6415 if test "$_speex" = yes ; then
6416 def_speex='#define CONFIG_SPEEX 1'
6417 extra_ldflags="$extra_ldflags -lspeex"
6418 _codecmodules="speex $_codecmodules"
6419 else
6420 def_speex='#undef CONFIG_SPEEX'
6421 _nocodecmodules="speex $_nocodecmodules"
6423 echores "$_speex"
6425 echocheck "OggTheora support"
6426 if test "$_theora" = auto ; then
6427 _theora=no
6428 cat > $TMPC << EOF
6429 #include <theora/theora.h>
6430 #include <string.h>
6431 int main(void) {
6432 /* Theora is in flux, make sure that all interface routines and datatypes
6433 * exist and work the way we expect it, so we don't break MPlayer. */
6434 ogg_packet op;
6435 theora_comment tc;
6436 theora_info inf;
6437 theora_state st;
6438 yuv_buffer yuv;
6439 int r;
6440 double t;
6442 theora_info_init(&inf);
6443 theora_comment_init(&tc);
6445 return 0;
6447 /* we don't want to execute this kind of nonsense; just for making sure
6448 * that compilation works... */
6449 memset(&op, 0, sizeof(op));
6450 r = theora_decode_header(&inf, &tc, &op);
6451 r = theora_decode_init(&st, &inf);
6452 t = theora_granule_time(&st, op.granulepos);
6453 r = theora_decode_packetin(&st, &op);
6454 r = theora_decode_YUVout(&st, &yuv);
6455 theora_clear(&st);
6457 return 0;
6460 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6461 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6462 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
6463 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6464 if test _theora = no; then
6465 _ld_theora="-ltheora -logg"
6466 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6468 if test "$_theora" = no && test "$_tremor_internal" = yes; then
6469 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6470 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6471 cc_check tremor/bitwise.c $_inc_theora $_ld_theora &&
6472 extra_ldflags="$extra_ldflags $_ld_theora" &&
6473 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6474 if test _theora = no; then
6475 _ld_theora="-ltheora -logg"
6476 cc_check tremor/bitwise.c $_ld_theora &&
6477 extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6481 if test "$_theora" = yes ; then
6482 def_theora='#define CONFIG_OGGTHEORA 1'
6483 _codecmodules="libtheora $_codecmodules"
6484 # when --enable-theora is forced, we'd better provide a probably sane
6485 # $_ld_theora than nothing
6486 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
6487 else
6488 def_theora='#undef CONFIG_OGGTHEORA'
6489 _nocodecmodules="libtheora $_nocodecmodules"
6491 echores "$_theora"
6493 echocheck "internal mp3lib support"
6494 if test "$_mp3lib" = auto ; then
6495 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _mp3lib=no || _mp3lib=yes
6497 if test "$_mp3lib" = yes ; then
6498 def_mp3lib='#define CONFIG_MP3LIB 1'
6499 _codecmodules="mp3lib(internal) $_codecmodules"
6500 else
6501 def_mp3lib='#undef CONFIG_MP3LIB'
6502 _nocodecmodules="mp3lib(internal) $_nocodecmodules"
6504 echores "$_mp3lib"
6506 echocheck "liba52 support"
6507 if test "$_liba52_internal" = auto ; then
6508 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
6510 def_liba52='#undef CONFIG_LIBA52'
6511 def_liba52_internal="#undef CONFIG_LIBA52_INTERNAL"
6512 if test "$_liba52_internal" = yes ; then
6513 _liba52=yes
6514 def_liba52_internal="#define CONFIG_LIBA52_INTERNAL 1"
6515 _res_comment="internal"
6516 elif test "$_liba52_internal" = no && test "$_liba52" = auto ; then
6517 _liba52=no
6518 cat > $TMPC << EOF
6519 #include <inttypes.h>
6520 #include <a52dec/a52.h>
6521 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6523 cc_check -la52 && _liba52=yes && _res_comment="external" && extra_ldflags="$extra_ldflags -la52"
6525 if test "$_liba52" = yes ; then
6526 def_liba52='#define CONFIG_LIBA52 1'
6527 _codecmodules="liba52($_res_comment) $_codecmodules"
6528 else
6529 _nocodecmodules="liba52 $_nocodecmodules"
6531 echores "$_liba52"
6533 echocheck "internal libmpeg2 support"
6534 if test "$_libmpeg2" = auto ; then
6535 _libmpeg2=yes
6536 if alpha && test cc_vendor=gnu; then
6537 case $cc_version in
6538 2*|3.0*|3.1*) # cannot compile MVI instructions
6539 _libmpeg2=no
6540 _res_comment="broken gcc"
6542 esac
6545 if test "$_libmpeg2" = yes ; then
6546 def_libmpeg2='#define CONFIG_LIBMPEG2 1'
6547 _codecmodules="libmpeg2(internal) $_codecmodules"
6548 else
6549 def_libmpeg2='#undef CONFIG_LIBMPEG2'
6550 _nocodecmodules="libmpeg2(internal) $_nocodecmodules"
6552 echores "$_libmpeg2"
6554 echocheck "libdca support"
6555 if test "$_libdca" = auto ; then
6556 _libdca=no
6557 cat > $TMPC << EOF
6558 #include <inttypes.h>
6559 #include <dts.h>
6560 int main(void) { dts_init(0); return 0; }
6562 for _ld_dca in -ldca -ldts ; do
6563 cc_check $_ld_dca $_ld_lm && extra_ldflags="$extra_ldflags $_ld_dca" \
6564 && _libdca=yes && break
6565 done
6567 if test "$_libdca" = yes ; then
6568 def_libdca='#define CONFIG_LIBDCA 1'
6569 _codecmodules="libdca $_codecmodules"
6570 else
6571 def_libdca='#undef CONFIG_LIBDCA'
6572 _nocodecmodules="libdca $_nocodecmodules"
6574 echores "$_libdca"
6576 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
6577 if test "$_musepack" = auto ; then
6578 _musepack=no
6579 cat > $TMPC << EOF
6580 #include <stddef.h>
6581 #include <mpcdec/mpcdec.h>
6582 int main(void) {
6583 mpc_streaminfo info;
6584 mpc_decoder decoder;
6585 mpc_decoder_set_streaminfo(&decoder, &info);
6586 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6587 return 0;
6590 cc_check -lmpcdec $_ld_lm && _musepack=yes
6592 if test "$_musepack" = yes ; then
6593 def_musepack='#define CONFIG_MUSEPACK 1'
6594 extra_ldflags="$extra_ldflags -lmpcdec"
6595 _codecmodules="musepack $_codecmodules"
6596 else
6597 def_musepack='#undef CONFIG_MUSEPACK'
6598 _nocodecmodules="musepack $_nocodecmodules"
6600 echores "$_musepack"
6603 echocheck "FAAC support"
6604 if test "$_faac" = auto ; then
6605 cat > $TMPC <<EOF
6606 #include <inttypes.h>
6607 #include <faac.h>
6608 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6610 _faac=no
6611 for _ld_faac in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6612 cc_check $_ld_faac $_ld_lm && libs_mencoder="$libs_mencoder $_ld_faac" && _faac=yes && break
6613 done
6615 if test "$_faac" = yes ; then
6616 def_faac="#define CONFIG_FAAC 1"
6617 _codecmodules="faac $_codecmodules"
6618 else
6619 def_faac="#undef CONFIG_FAAC"
6620 _nocodecmodules="faac $_nocodecmodules"
6622 echores "$_faac"
6625 echocheck "FAAD2 support"
6626 if test "$_faad_internal" = auto ; then
6627 if x86_32 && test cc_vendor=gnu; then
6628 case $cc_version in
6629 3.1*|3.2) # ICE/insn with these versions
6630 _faad_internal=no
6631 _res_comment="broken gcc"
6634 _faad=yes
6635 _faad_internal=yes
6637 esac
6638 else
6639 _faad=yes
6640 _faad_internal=yes
6643 if test "$_faad" = auto ; then
6644 cat > $TMPC << EOF
6645 #include <faad.h>
6646 #ifndef FAAD_MIN_STREAMSIZE
6647 #error Too old version
6648 #endif
6649 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6650 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6652 cc_check -lfaad $_ld_lm && _faad=yes
6655 def_faad='#undef CONFIG_FAAD'
6656 def_faad_internal="#undef CONFIG_FAAD_INTERNAL"
6657 if test "$_faad_internal" = yes ; then
6658 def_faad_internal="#define CONFIG_FAAD_INTERNAL 1"
6659 _res_comment="internal floating-point"
6660 if test "$_faad_fixed" = yes ; then
6661 # The FIXED_POINT implementation of FAAD2 improves performance
6662 # on some platforms, especially for SBR files.
6663 cflags_faad_fixed="-DFIXED_POINT"
6664 _res_comment="internal fixed-point"
6666 elif test "$_faad" = yes ; then
6667 extra_ldflags="$extra_ldflags -lfaad"
6670 if test "$_faad" = yes ; then
6671 def_faad='#define CONFIG_FAAD 1'
6672 if test "$_faad_internal" = yes ; then
6673 _codecmodules="faad2(internal) $_codecmodules"
6674 else
6675 _codecmodules="faad2 $_codecmodules"
6677 else
6678 _faad=no
6679 _nocodecmodules="faad2 $_nocodecmodules"
6681 echores "$_faad"
6684 echocheck "LADSPA plugin support"
6685 if test "$_ladspa" = auto ; then
6686 cat > $TMPC <<EOF
6687 #include <stdio.h>
6688 #include <ladspa.h>
6689 int main(void) {
6690 const LADSPA_Descriptor *ld = NULL;
6691 return 0;
6694 _ladspa=no
6695 cc_check && _ladspa=yes
6697 if test "$_ladspa" = yes; then
6698 def_ladspa="#define CONFIG_LADSPA 1"
6699 else
6700 def_ladspa="#undef CONFIG_LADSPA"
6702 echores "$_ladspa"
6705 echocheck "libbs2b audio filter support"
6706 if test "$_libbs2b" = auto ; then
6707 cat > $TMPC <<EOF
6708 #include <bs2b.h>
6709 #if BS2B_VERSION_MAJOR < 3
6710 #error Please use libbs2b >= 3.0.0, older versions are not supported.
6711 #endif
6712 int main(void) {
6713 t_bs2bdp filter;
6714 filter=bs2b_open();
6715 bs2b_close(filter);
6716 return 0;
6719 _libbs2b=no
6720 if $_pkg_config --exists libbs2b ; then
6721 _inc_tmp=$($_pkg_config --cflags libbs2b)
6722 _ld_tmp=$($_pkg_config --libs libbs2b)
6723 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
6724 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
6725 else
6726 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
6727 -I/usr/local/include/bs2b ; do
6728 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
6729 extra_ldflags="$extra_ldflags -lbs2b"
6730 extra_cflags="$extra_cflags $_inc_tmp"
6731 _libbs2b=yes
6732 break
6734 done
6737 def_libbs2b="#undef CONFIG_LIBBS2B"
6738 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
6739 echores "$_libbs2b"
6742 if test -z "$_codecsdir" ; then
6743 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
6744 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
6745 if test -d "$dir" ; then
6746 _codecsdir="$dir"
6747 break;
6749 done
6751 # Fall back on default directory.
6752 if test -z "$_codecsdir" ; then
6753 _codecsdir="$_libdir/codecs"
6754 mingw32 || os2 && _codecsdir="codecs"
6758 echocheck "Win32 codecs"
6759 if test "$_win32dll" = auto ; then
6760 _win32dll=no
6761 if x86_32 && ! qnx; then
6762 _win32dll=yes
6765 if test "$_win32dll" = yes ; then
6766 def_win32dll='#define CONFIG_WIN32DLL 1'
6767 if ! win32 ; then
6768 def_win32_loader='#define WIN32_LOADER 1'
6769 _win32_emulation=yes
6770 else
6771 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
6772 _res_comment="using native windows"
6774 _codecmodules="win32 $_codecmodules"
6775 else
6776 def_win32dll='#undef CONFIG_WIN32DLL'
6777 def_win32_loader='#undef WIN32_LOADER'
6778 _nocodecmodules="win32 $_nocodecmodules"
6780 echores "$_win32dll"
6783 echocheck "XAnim codecs"
6784 if test "$_xanim" = auto ; then
6785 _xanim=no
6786 _res_comment="dynamic loader support needed"
6787 if test "$_dl" = yes ; then
6788 _xanim=yes
6791 if test "$_xanim" = yes ; then
6792 def_xanim='#define CONFIG_XANIM 1'
6793 _codecmodules="xanim $_codecmodules"
6794 else
6795 def_xanim='#undef CONFIG_XANIM'
6796 _nocodecmodules="xanim $_nocodecmodules"
6798 echores "$_xanim"
6801 echocheck "RealPlayer codecs"
6802 if test "$_real" = auto ; then
6803 _real=no
6804 _res_comment="dynamic loader support needed"
6805 if test "$_dl" = yes || test "$_win32dll" = yes &&
6806 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2) ; then
6807 _real=yes
6810 if test "$_real" = yes ; then
6811 def_real='#define CONFIG_REALCODECS 1'
6812 _codecmodules="real $_codecmodules"
6813 else
6814 def_real='#undef CONFIG_REALCODECS'
6815 _nocodecmodules="real $_nocodecmodules"
6817 echores "$_real"
6820 echocheck "QuickTime codecs"
6821 _qtx_emulation=no
6822 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
6823 if test "$_qtx" = auto ; then
6824 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
6826 if test "$_qtx" = yes ; then
6827 def_qtx='#define CONFIG_QTX_CODECS 1'
6828 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
6829 _codecmodules="qtx $_codecmodules"
6830 darwin || win32 || _qtx_emulation=yes
6831 else
6832 def_qtx='#undef CONFIG_QTX_CODECS'
6833 _nocodecmodules="qtx $_nocodecmodules"
6835 echores "$_qtx"
6837 echocheck "Nemesi Streaming Media libraries"
6838 if test "$_nemesi" = auto && test "$_network" = yes ; then
6839 _nemesi=no
6840 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
6841 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
6842 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
6843 _nemesi=yes
6846 if test "$_nemesi" = yes; then
6847 _native_rtsp=no
6848 def_nemesi='#define CONFIG_LIBNEMESI 1'
6849 _inputmodules="nemesi $_inputmodules"
6850 else
6851 _native_rtsp="$_network"
6852 _nemesi=no
6853 def_nemesi='#undef CONFIG_LIBNEMESI'
6854 _noinputmodules="nemesi $_noinputmodules"
6856 echores "$_nemesi"
6858 echocheck "LIVE555 Streaming Media libraries"
6859 if test "$_live" = auto && test "$_network" = yes ; then
6860 cat > $TMPCPP << EOF
6861 #include <liveMedia.hh>
6862 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6863 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6864 #endif
6865 int main(void) { return 0; }
6868 _live=no
6869 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
6870 cxx_check $I/liveMedia/include $I/UsageEnvironment/include \
6871 $I/groupsock/include && _livelibdir=$(echo $I| sed s/-I//) && \
6872 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
6873 $_livelibdir/groupsock/libgroupsock.a \
6874 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6875 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6876 $extra_ldflags -lstdc++" \
6877 extra_cxxflags="-I$_livelibdir/liveMedia/include \
6878 -I$_livelibdir/UsageEnvironment/include \
6879 -I$_livelibdir/BasicUsageEnvironment/include \
6880 -I$_livelibdir/groupsock/include" && \
6881 _live=yes && break
6882 done
6883 if test "$_live" != yes ; then
6884 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6885 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
6886 _live_dist=yes
6890 if test "$_live" = yes && test "$_network" = yes; then
6891 test $_livelibdir && _res_comment="using $_livelibdir"
6892 def_live='#define CONFIG_LIVE555 1'
6893 _inputmodules="live555 $_inputmodules"
6894 elif test "$_live_dist" = yes && test "$_network" = yes; then
6895 _res_comment="using distribution version"
6896 _live="yes"
6897 def_live='#define CONFIG_LIVE555 1'
6898 extra_ldflags="$extra_ldflags $ld_tmp"
6899 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
6900 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6901 _inputmodules="live555 $_inputmodules"
6902 else
6903 _live=no
6904 def_live='#undef CONFIG_LIVE555'
6905 _noinputmodules="live555 $_noinputmodules"
6907 echores "$_live"
6910 echocheck "FFmpeg libavutil"
6911 if test "$_libavutil" = auto ; then
6912 _libavutil=no
6913 cat > $TMPC << EOF
6914 #include <libavutil/common.h>
6915 int main(void) { av_clip(1, 1, 1); return 0; }
6917 if $_pkg_config --exists libavutil ; then
6918 _inc_libavutil=$($_pkg_config --cflags libavutil)
6919 _ld_tmp=$($_pkg_config --libs libavutil)
6920 cc_check $_inc_libavutil $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libavutil" \
6921 && _libavutil=yes
6922 elif cc_check -lavutil $_ld_lm ; then
6923 extra_ldflags="$extra_ldflags -lavutil"
6924 _libavutil=yes
6927 def_libavutil='#undef CONFIG_LIBAVUTIL'
6928 test "$_libavutil" = yes && def_libavutil='#define CONFIG_LIBAVUTIL 1'
6929 # libavutil is not available, but it is mandatory ...
6930 if test "$_libavutil" = no ; then
6931 die "You need libavutil, MPlayer will not compile without!"
6933 echores "$_libavutil"
6935 echocheck "FFmpeg libavcodec"
6936 if test "$_libavcodec" = auto ; then
6937 _libavcodec=no
6938 cat > $TMPC << EOF
6939 #include <libavcodec/avcodec.h>
6940 int main(void) { avcodec_find_encoder_by_name(""); return 0; }
6942 if $_pkg_config --exists libavcodec ; then
6943 _inc_libavcodec=$($_pkg_config --cflags libavcodec)
6944 _ld_tmp=$($_pkg_config --libs libavcodec)
6945 cc_check $_inc_libavcodec $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavcodec" \
6946 && _libavcodec=yes
6947 elif cc_check -lavcodec $_ld_lm ; then
6948 extra_ldflags="$extra_ldflags -lavcodec"
6949 _libavcodec=yes
6952 def_libavcodec='#undef CONFIG_LIBAVCODEC'
6953 test "$_libavcodec" = yes && def_libavcodec='#define CONFIG_LIBAVCODEC 1'
6954 if test "$_libavcodec" = yes ; then
6955 _codecmodules="libavcodec $_codecmodules"
6956 else
6957 _nocodecmodules="libavcodec $_nocodecmodules"
6959 echores "$_libavcodec"
6961 echocheck "FFmpeg libavformat"
6962 if test "$_libavformat" = auto ; then
6963 _libavformat=no
6964 cat > $TMPC <<EOF
6965 #include <libavformat/avformat.h>
6966 #include <libavcodec/opt.h>
6967 int main(void) { av_alloc_format_context(); return 0; }
6969 if $_pkg_config --exists libavformat ; then
6970 _inc_libavformat=$($_pkg_config --cflags libavformat)
6971 _ld_tmp=$($_pkg_config --libs libavformat)
6972 cc_check $_inc_libavformat $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavformat" \
6973 && _libavformat=yes
6974 elif cc_check $_ld_lm -lavformat ; then
6975 extra_ldflags="$extra_ldflags -lavformat"
6976 _libavformat=yes
6979 def_libavformat='#undef CONFIG_LIBAVFORMAT'
6980 test "$_libavformat" = yes && def_libavformat='#define CONFIG_LIBAVFORMAT 1'
6981 echores "$_libavformat"
6983 echocheck "FFmpeg libpostproc"
6984 if test "$_libpostproc" = auto ; then
6985 _libpostproc=no
6986 cat > $TMPC << EOF
6987 #include <inttypes.h>
6988 #include <libpostproc/postprocess.h>
6989 int main(void) { pp_get_mode_by_name_and_quality("de", 0); return 0; }
6991 if $_pkg_config --exists libpostproc ; then
6992 _inc_libpostproc=$($_pkg_config --cflags libpostproc)
6993 _ld_tmp=$($_pkg_config --libs libpostproc)
6994 cc_check $_inc_libpostproc $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libpostproc" \
6995 && _libpostproc=yes
6996 elif cc_check -lpostproc $_ld_lm ; then
6997 extra_ldflags="$extra_ldflags -lpostproc"
6998 _libpostproc=yes
7001 def_libpostproc='#undef CONFIG_LIBPOSTPROC'
7002 test "$_libpostproc" = yes && def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
7003 echores "$_libpostproc"
7005 echocheck "FFmpeg libswscale"
7006 if test "$_libswscale" = auto ; then
7007 _libswscale=no
7008 cat > $TMPC << EOF
7009 #include <libswscale/swscale.h>
7010 int main(void) { sws_scale(0, 0, 0, 0, 0, 0, 0); return 0; }
7012 if $_pkg_config --exists libswscale ; then
7013 _inc_libswscale=$($_pkg_config --cflags libswscale)
7014 _ld_tmp=$($_pkg_config --libs libswscale)
7015 cc_check $_inc_libswscale $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libswscale" \
7016 && _libswscale=yes
7017 elif cc_check -lswscale ; then
7018 extra_ldflags="$extra_ldflags -lswscale"
7019 _libswscale=yes
7022 def_libswscale='#undef CONFIG_LIBSWSCALE'
7023 test "$_libswscale" = yes && def_libswscale='#define CONFIG_LIBSWSCALE 1'
7024 echores "$_libswscale"
7026 def_libswscale_internals="#undef CONFIG_LIBSWSCALE_INTERNALS"
7027 if ! test -z "$_ffmpeg_source" ; then
7028 test "$_libswscale" = yes && def_libswscale_internals="#define CONFIG_LIBSWSCALE_INTERNALS 1" && _libswscale_internals=yes
7031 def_libavcodec_internals="#undef CONFIG_LIBAVCODEC_INTERNALS"
7032 if ! test -z "$_ffmpeg_source" ; then
7033 test "$_libavcodec" = yes && def_libavcodec_internals="#define CONFIG_LIBAVCODEC_INTERNALS 1" && _libavcodec_internals=yes
7036 echocheck "libdv-0.9.5+"
7037 if test "$_libdv" = auto ; then
7038 _libdv=no
7039 cat > $TMPC <<EOF
7040 #include <libdv/dv.h>
7041 int main(void) { dv_encoder_t* enc=dv_encoder_new(1,1,1); return 0; }
7043 cc_check -ldv $_ld_pthread $_ld_lm && _libdv=yes
7045 if test "$_libdv" = yes ; then
7046 def_libdv='#define CONFIG_LIBDV095 1'
7047 extra_ldflags="$extra_ldflags -ldv"
7048 _codecmodules="libdv $_codecmodules"
7049 else
7050 def_libdv='#undef CONFIG_LIBDV095'
7051 _nocodecmodules="libdv $_nocodecmodules"
7053 echores "$_libdv"
7056 echocheck "Xvid"
7057 if test "$_xvid" = auto ; then
7058 _xvid=no
7059 cat > $TMPC << EOF
7060 #include <xvid.h>
7061 int main(void) { xvid_global(0, 0, 0, 0); return 0; }
7063 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
7064 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
7065 done
7068 if test "$_xvid" = yes ; then
7069 def_xvid='#define CONFIG_XVID4 1'
7070 _codecmodules="xvid $_codecmodules"
7071 else
7072 def_xvid='#undef CONFIG_XVID4'
7073 _nocodecmodules="xvid $_nocodecmodules"
7075 echores "$_xvid"
7077 echocheck "x264"
7078 if test "$_x264" = auto ; then
7079 cat > $TMPC << EOF
7080 #include <inttypes.h>
7081 #include <x264.h>
7082 #if X264_BUILD < 89
7083 #error We do not support old versions of x264. Get the latest from git.
7084 #endif
7085 int main(void) { x264_encoder_open((void*)0); return 0; }
7087 _x264=no
7088 for _ld_x264 in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
7089 cc_check $_ld_x264 && libs_mencoder="$libs_mencoder $_ld_x264" && _x264=yes && break
7090 done
7093 if test "$_x264" = yes ; then
7094 def_x264='#define CONFIG_X264 1'
7095 _codecmodules="x264 $_codecmodules"
7096 else
7097 def_x264='#undef CONFIG_X264'
7098 _nocodecmodules="x264 $_nocodecmodules"
7100 echores "$_x264"
7102 echocheck "libnut"
7103 if test "$_libnut" = auto ; then
7104 cat > $TMPC << EOF
7105 #include <stdio.h>
7106 #include <stdlib.h>
7107 #include <inttypes.h>
7108 #include <libnut.h>
7109 nut_context_tt * nut;
7110 int main(void) { (void)nut_error(0); return 0; }
7112 _libnut=no
7113 cc_check -lnut && _libnut=yes
7116 if test "$_libnut" = yes ; then
7117 def_libnut='#define CONFIG_LIBNUT 1'
7118 extra_ldflags="$extra_ldflags -lnut"
7119 else
7120 def_libnut='#undef CONFIG_LIBNUT'
7122 echores "$_libnut"
7124 # These VO checks must be done after libavcodec/libswscale one
7125 echocheck "/dev/mga_vid"
7126 if test "$_mga" = auto ; then
7127 _mga=no
7128 test -c /dev/mga_vid && _mga=yes
7130 if test "$_mga" = yes ; then
7131 if test "$_libswscale_internals" = yes ; then
7132 def_mga='#define CONFIG_MGA 1'
7133 _vomodules="mga $_vomodules"
7134 else
7135 _res_comment="libswscale internal headers are required by mga, sorry"
7136 def_mga='#undef CONFIG_MGA'
7137 _novomodules="mga $_novomodules"
7139 else
7140 def_mga='#undef CONFIG_MGA'
7141 _novomodules="mga $_novomodules"
7143 echores "$_mga"
7146 echocheck "xmga"
7147 if test "$_xmga" = auto ; then
7148 _xmga=no
7149 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
7151 if test "$_xmga" = yes ; then
7152 if test "$_libswscale_internals" = yes ; then
7153 def_xmga='#define CONFIG_XMGA 1'
7154 _vomodules="xmga $_vomodules"
7155 else
7156 _res_comment="libswscale internal headers are required by mga, sorry"
7157 def_xmga='#undef CONFIG_XMGA'
7158 _novomodules="xmga $_novomodules"
7160 else
7161 def_xmga='#undef CONFIG_XMGA'
7162 _novomodules="xmga $_novomodules"
7164 echores "$_xmga"
7166 echocheck "zr"
7167 if test "$_zr" = auto ; then
7168 #36067's seem to identify themselves as 36057PQC's, so the line
7169 #below should work for 36067's and 36057's.
7170 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc/pci ; then
7171 _zr=yes
7172 else
7173 _zr=no
7176 if test "$_zr" = yes ; then
7177 if test "$_libavcodec_internals" = yes ; then
7178 def_zr='#define CONFIG_ZR 1'
7179 _vomodules="zr zr2 $_vomodules"
7180 else
7181 _res_comment="libavcodec internal headers are required by zr, sorry"
7182 _novomodules="zr $_novomodules"
7183 def_zr='#undef CONFIG_ZR'
7185 else
7186 def_zr='#undef CONFIG_ZR'
7187 _novomodules="zr zr2 $_novomodules"
7189 echores "$_zr"
7191 # mencoder requires (optional) those libs: libmp3lame
7192 if test "$_mencoder" != no ; then
7194 echocheck "libmp3lame"
7195 def_mp3lame_preset='#undef CONFIG_MP3LAME_PRESET'
7196 def_mp3lame_preset_medium='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
7197 if test "$_mp3lame" = auto ; then
7198 _mp3lame=no
7199 cat > $TMPC <<EOF
7200 #include <lame/lame.h>
7201 int main(void) { lame_version_t lv; (void) lame_init();
7202 get_lame_version_numerical(&lv);
7203 return 0; }
7205 cc_check -lmp3lame $_ld_lm && _mp3lame=yes
7207 if test "$_mp3lame" = yes ; then
7208 def_mp3lame="#define CONFIG_MP3LAME 1"
7209 _ld_mp3lame=-lmp3lame
7210 libs_mencoder="$libs_mencoder $_ld_mp3lame"
7211 cat > $TMPC << EOF
7212 #include <lame/lame.h>
7213 int main(void) { lame_set_preset(NULL, STANDARD_FAST); return 0; }
7215 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset="#define CONFIG_MP3LAME_PRESET 1"
7216 cat > $TMPC << EOF
7217 #include <lame/lame.h>
7218 int main(void) { lame_set_preset(NULL, MEDIUM_FAST); return 0; }
7220 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset_medium="#define CONFIG_MP3LAME_PRESET_MEDIUM 1"
7221 else
7222 def_mp3lame='#undef CONFIG_MP3LAME'
7224 echores "$_mp3lame"
7226 fi # test "$_mencoder" != no
7228 echocheck "mencoder"
7229 if test "$_mencoder" = yes ; then
7230 def_muxers='#define CONFIG_MUXERS 1'
7231 else
7232 def_muxers='#define CONFIG_MUXERS 0'
7234 echores "$_mencoder"
7237 echocheck "UnRAR executable"
7238 if test "$_unrar_exec" = auto ; then
7239 _unrar_exec="yes"
7240 mingw32 && _unrar_exec="no"
7242 if test "$_unrar_exec" = yes ; then
7243 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
7244 else
7245 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
7247 echores "$_unrar_exec"
7249 echocheck "TV interface"
7250 if test "$_tv" = yes ; then
7251 def_tv='#define CONFIG_TV 1'
7252 _inputmodules="tv $_inputmodules"
7253 else
7254 _noinputmodules="tv $_noinputmodules"
7255 def_tv='#undef CONFIG_TV'
7257 echores "$_tv"
7260 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
7261 echocheck "*BSD BT848 bt8xx header"
7262 _ioctl_bt848_h=no
7263 for file in "machine/ioctl_bt848.h" \
7264 "dev/bktr/ioctl_bt848.h" \
7265 "dev/video/bktr/ioctl_bt848.h" \
7266 "dev/ic/bt8xx.h" ; do
7267 cat > $TMPC <<EOF
7268 #include <sys/types.h>
7269 #include <sys/ioctl.h>
7270 #include <$file>
7271 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
7273 if cc_check ; then
7274 _ioctl_bt848_h=yes
7275 _ioctl_bt848_h_name="$file"
7276 break;
7278 done
7279 if test "$_ioctl_bt848_h" = yes ; then
7280 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
7281 _res_comment="using $_ioctl_bt848_h_name"
7282 else
7283 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
7285 echores "$_ioctl_bt848_h"
7287 echocheck "*BSD ioctl_meteor.h"
7288 _ioctl_meteor_h=no
7289 for file in "machine/ioctl_meteor.h" \
7290 "dev/bktr/ioctl_meteor.h" \
7291 "dev/video/bktr/ioctl_meteor.h" ; do
7292 cat > $TMPC <<EOF
7293 #include <sys/types.h>
7294 #include <$file>
7295 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
7297 if cc_check ; then
7298 _ioctl_meteor_h=yes
7299 _ioctl_meteor_h_name="$file"
7300 break;
7302 done
7303 if test "$_ioctl_meteor_h" = yes ; then
7304 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
7305 _res_comment="using $_ioctl_meteor_h_name"
7306 else
7307 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
7309 echores "$_ioctl_meteor_h"
7311 echocheck "*BSD BrookTree 848 TV interface"
7312 if test "$_tv_bsdbt848" = auto ; then
7313 _tv_bsdbt848=no
7314 if test "$_tv" = yes ; then
7315 cat > $TMPC <<EOF
7316 #include <sys/types.h>
7317 $def_ioctl_meteor_h_name
7318 $def_ioctl_bt848_h_name
7319 #ifdef IOCTL_METEOR_H_NAME
7320 #include IOCTL_METEOR_H_NAME
7321 #endif
7322 #ifdef IOCTL_BT848_H_NAME
7323 #include IOCTL_BT848_H_NAME
7324 #endif
7325 int main(void) {
7326 ioctl(0, METEORSINPUT, 0);
7327 ioctl(0, TVTUNER_GETFREQ, 0);
7328 return 0;
7331 cc_check && _tv_bsdbt848=yes
7334 if test "$_tv_bsdbt848" = yes ; then
7335 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
7336 _inputmodules="tv-bsdbt848 $_inputmodules"
7337 else
7338 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
7339 _noinputmodules="tv-bsdbt848 $_noinputmodules"
7341 echores "$_tv_bsdbt848"
7342 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
7345 echocheck "DirectShow TV interface"
7346 if test "$_tv_dshow" = auto ; then
7347 _tv_dshow=no
7348 if test "$_tv" = yes && win32 ; then
7349 cat > $TMPC <<EOF
7350 #include <ole2.h>
7351 int main(void) {
7352 void* p;
7353 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
7354 return 0;
7357 cc_check -lole32 -luuid && _tv_dshow=yes
7360 if test "$_tv_dshow" = yes ; then
7361 _inputmodules="tv-dshow $_inputmodules"
7362 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
7363 extra_ldflags="$extra_ldflags -lole32 -luuid"
7364 else
7365 _noinputmodules="tv-dshow $_noinputmodules"
7366 def_tv_dshow='#undef CONFIG_TV_DSHOW'
7368 echores "$_tv_dshow"
7371 echocheck "Video 4 Linux TV interface"
7372 if test "$_tv_v4l1" = auto ; then
7373 _tv_v4l1=no
7374 if test "$_tv" = yes && linux ; then
7375 cat > $TMPC <<EOF
7376 #include <stdlib.h>
7377 #include <linux/videodev.h>
7378 int main(void) { return 0; }
7380 cc_check && _tv_v4l1=yes
7383 if test "$_tv_v4l1" = yes ; then
7384 _audio_input=yes
7385 _tv_v4l=yes
7386 def_tv_v4l='#define CONFIG_TV_V4L 1'
7387 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
7388 _inputmodules="tv-v4l $_inputmodules"
7389 else
7390 _noinputmodules="tv-v4l1 $_noinputmodules"
7391 def_tv_v4l='#undef CONFIG_TV_V4L'
7393 echores "$_tv_v4l1"
7396 echocheck "Video 4 Linux 2 TV interface"
7397 if test "$_tv_v4l2" = auto ; then
7398 _tv_v4l2=no
7399 if test "$_tv" = yes && linux ; then
7400 cat > $TMPC <<EOF
7401 #include <stdlib.h>
7402 #include <linux/types.h>
7403 #include <linux/videodev2.h>
7404 int main(void) { return 0; }
7406 cc_check && _tv_v4l2=yes
7409 if test "$_tv_v4l2" = yes ; then
7410 _audio_input=yes
7411 _tv_v4l=yes
7412 def_tv_v4l='#define CONFIG_TV_V4L 1'
7413 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
7414 _inputmodules="tv-v4l2 $_inputmodules"
7415 else
7416 _noinputmodules="tv-v4l2 $_noinputmodules"
7417 def_tv_v4l2='#undef CONFIG_TV_V4L2'
7419 echores "$_tv_v4l2"
7422 echocheck "Radio interface"
7423 if test "$_radio" = yes ; then
7424 def_radio='#define CONFIG_RADIO 1'
7425 _inputmodules="radio $_inputmodules"
7426 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
7427 _radio_capture=no
7429 if test "$_radio_capture" = yes ; then
7430 _audio_input=yes
7431 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
7432 else
7433 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7435 else
7436 _noinputmodules="radio $_noinputmodules"
7437 def_radio='#undef CONFIG_RADIO'
7438 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7439 _radio_capture=no
7441 echores "$_radio"
7442 echocheck "Capture for Radio interface"
7443 echores "$_radio_capture"
7445 echocheck "Video 4 Linux 2 Radio interface"
7446 if test "$_radio_v4l2" = auto ; then
7447 _radio_v4l2=no
7448 if test "$_radio" = yes && linux ; then
7449 cat > $TMPC <<EOF
7450 #include <stdlib.h>
7451 #include <linux/types.h>
7452 #include <linux/videodev2.h>
7453 int main(void) { return 0; }
7455 cc_check && _radio_v4l2=yes
7458 if test "$_radio_v4l2" = yes ; then
7459 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
7460 else
7461 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
7463 echores "$_radio_v4l2"
7465 echocheck "Video 4 Linux Radio interface"
7466 if test "$_radio_v4l" = auto ; then
7467 _radio_v4l=no
7468 if test "$_radio" = yes && linux ; then
7469 cat > $TMPC <<EOF
7470 #include <stdlib.h>
7471 #include <linux/videodev.h>
7472 int main(void) { return 0; }
7474 cc_check && _radio_v4l=yes
7477 if test "$_radio_v4l" = yes ; then
7478 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
7479 else
7480 def_radio_v4l='#undef CONFIG_RADIO_V4L'
7482 echores "$_radio_v4l"
7484 if freebsd || netbsd || openbsd || dragonfly || bsdos \
7485 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
7486 echocheck "*BSD BrookTree 848 Radio interface"
7487 _radio_bsdbt848=no
7488 cat > $TMPC <<EOF
7489 #include <sys/types.h>
7490 $def_ioctl_bt848_h_name
7491 #ifdef IOCTL_BT848_H_NAME
7492 #include IOCTL_BT848_H_NAME
7493 #endif
7494 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
7496 cc_check && _radio_bsdbt848=yes
7497 echores "$_radio_bsdbt848"
7498 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
7500 if test "$_radio_bsdbt848" = yes ; then
7501 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
7502 else
7503 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
7506 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no && \
7507 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
7508 die "Radio driver requires BSD BT848, V4L or V4L2!"
7511 echocheck "Video 4 Linux 2 MPEG PVR interface"
7512 if test "$_pvr" = auto ; then
7513 _pvr=no
7514 if test "$_tv_v4l2" = yes && linux ; then
7515 cat > $TMPC <<EOF
7516 #include <stdlib.h>
7517 #include <inttypes.h>
7518 #include <linux/types.h>
7519 #include <linux/videodev2.h>
7520 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
7522 cc_check && _pvr=yes
7525 if test "$_pvr" = yes ; then
7526 def_pvr='#define CONFIG_PVR 1'
7527 _inputmodules="pvr $_inputmodules"
7528 else
7529 _noinputmodules="pvr $_noinputmodules"
7530 def_pvr='#undef CONFIG_PVR'
7532 echores "$_pvr"
7535 echocheck "ftp"
7536 if ! beos && test "$_ftp" = yes ; then
7537 def_ftp='#define CONFIG_FTP 1'
7538 _inputmodules="ftp $_inputmodules"
7539 else
7540 _noinputmodules="ftp $_noinputmodules"
7541 def_ftp='#undef CONFIG_FTP'
7543 echores "$_ftp"
7545 echocheck "vstream client"
7546 if test "$_vstream" = auto ; then
7547 _vstream=no
7548 cat > $TMPC <<EOF
7549 #include <vstream-client.h>
7550 void vstream_error(const char *format, ... ) {}
7551 int main(void) { vstream_start(); return 0; }
7553 cc_check -lvstream-client && _vstream=yes
7555 if test "$_vstream" = yes ; then
7556 def_vstream='#define CONFIG_VSTREAM 1'
7557 _inputmodules="vstream $_inputmodules"
7558 extra_ldflags="$extra_ldflags -lvstream-client"
7559 else
7560 _noinputmodules="vstream $_noinputmodules"
7561 def_vstream='#undef CONFIG_VSTREAM'
7563 echores "$_vstream"
7566 echocheck "OSD menu"
7567 if test "$_menu" = yes ; then
7568 def_menu='#define CONFIG_MENU 1'
7569 test $_dvbin = "yes" && _menu_dvbin=yes
7570 else
7571 def_menu='#undef CONFIG_MENU'
7572 _menu_dvbin=no
7574 echores "$_menu"
7577 echocheck "Subtitles sorting"
7578 if test "$_sortsub" = yes ; then
7579 def_sortsub='#define CONFIG_SORTSUB 1'
7580 else
7581 def_sortsub='#undef CONFIG_SORTSUB'
7583 echores "$_sortsub"
7586 echocheck "XMMS inputplugin support"
7587 if test "$_xmms" = yes ; then
7588 if ( xmms-config --version ) >/dev/null 2>&1 ; then
7589 _xmmsplugindir=$(xmms-config --input-plugin-dir)
7590 _xmmslibdir=$(xmms-config --exec-prefix)/lib
7591 else
7592 _xmmsplugindir=/usr/lib/xmms/Input
7593 _xmmslibdir=/usr/lib
7596 def_xmms='#define CONFIG_XMMS 1'
7597 if darwin ; then
7598 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
7599 else
7600 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
7602 else
7603 def_xmms='#undef CONFIG_XMMS'
7605 echores "$_xmms"
7607 if test "$_charset" != "noconv" ; then
7608 def_charset="#define MSG_CHARSET \"$_charset\""
7609 else
7610 def_charset="#undef MSG_CHARSET"
7611 _charset="UTF-8"
7614 #############################################################################
7616 echocheck "automatic gdb attach"
7617 if test "$_crash_debug" = yes ; then
7618 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
7619 else
7620 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
7621 _crash_debug=no
7623 echores "$_crash_debug"
7625 echocheck "compiler support for noexecstack"
7626 cat > $TMPC <<EOF
7627 int main(void) { return 0; }
7629 if cc_check -Wl,-z,noexecstack ; then
7630 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
7631 echores "yes"
7632 else
7633 echores "no"
7636 echocheck "linker support for --nxcompat --no-seh --dynamicbase"
7637 if cc_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
7638 extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
7639 echores "yes"
7640 else
7641 echores "no"
7645 # Dynamic linking flags
7646 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
7647 _ld_dl_dynamic=''
7648 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
7649 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
7650 _ld_dl_dynamic='-rdynamic'
7653 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
7654 bsdos && extra_ldflags="$extra_ldflags -ldvd"
7655 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
7657 def_debug='#undef MP_DEBUG'
7658 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
7661 echocheck "joystick"
7662 def_joystick='#undef CONFIG_JOYSTICK'
7663 if test "$_joystick" = yes ; then
7664 if linux ; then
7665 # TODO add some check
7666 def_joystick='#define CONFIG_JOYSTICK 1'
7667 else
7668 _joystick="no"
7669 _res_comment="unsupported under $system_name"
7672 echores "$_joystick"
7674 echocheck "lirc"
7675 if test "$_lirc" = auto ; then
7676 _lirc=no
7677 cat > $TMPC <<EOF
7678 #include <lirc/lirc_client.h>
7679 int main(void) { return 0; }
7681 cc_check -llirc_client && _lirc=yes
7683 if test "$_lirc" = yes ; then
7684 def_lirc='#define CONFIG_LIRC 1'
7685 libs_mplayer="$libs_mplayer -llirc_client"
7686 else
7687 def_lirc='#undef CONFIG_LIRC'
7689 echores "$_lirc"
7691 echocheck "lircc"
7692 if test "$_lircc" = auto ; then
7693 _lircc=no
7694 cat > $TMPC <<EOF
7695 #include <lirc/lircc.h>
7696 int main(void) { return 0; }
7698 cc_check -llircc && _lircc=yes
7700 if test "$_lircc" = yes ; then
7701 def_lircc='#define CONFIG_LIRCC 1'
7702 libs_mplayer="$libs_mplayer -llircc"
7703 else
7704 def_lircc='#undef CONFIG_LIRCC'
7706 echores "$_lircc"
7708 if arm; then
7709 # Detect maemo development platform libraries availability (http://www.maemo.org),
7710 # they are used when run on Nokia 770|8x0
7711 echocheck "maemo (Nokia 770|8x0)"
7712 if test "$_maemo" = auto ; then
7713 _maemo=no
7714 cat > $TMPC << EOF
7715 #include <libosso.h>
7716 int main(void) { (void) osso_initialize("", "", 0, NULL); return 0; }
7718 cc_check $($_pkg_config --cflags --libs libosso 2>/dev/null) && _maemo=yes
7720 if test "$_maemo" = yes ; then
7721 def_maemo='#define CONFIG_MAEMO 1'
7722 extra_cflags="$extra_cflags $($_pkg_config --cflags libosso)"
7723 extra_ldflags="$extra_ldflags $($_pkg_config --libs libosso) -lXsp"
7724 else
7725 def_maemo='#undef CONFIG_MAEMO'
7727 echores "$_maemo"
7730 #############################################################################
7732 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
7733 # the OMF format needs to come after the 'extern symbol prefix' check, which
7734 # uses nm.
7735 if os2 ; then
7736 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
7739 # linker paths should be the same for mencoder and mplayer
7740 _ld_tmp=""
7741 for I in $libs_mplayer ; do
7742 _tmp=$(echo $I | sed -e 's/^-L.*$//')
7743 if test -z "$_tmp" ; then
7744 extra_ldflags="$extra_ldflags $I"
7745 else
7746 _ld_tmp="$_ld_tmp $I"
7748 done
7749 libs_mplayer=$_ld_tmp
7752 #############################################################################
7753 # 64 bit file offsets?
7754 if test "$_largefiles" = yes || freebsd ; then
7755 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
7756 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
7757 # dvdread support requires this (for off64_t)
7758 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
7762 CXXFLAGS=" $CFLAGS -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS"
7764 # This must be the last test to be performed. Any other tests following it
7765 # could fail due to linker errors. libdvdnavmini is intentionally not linked
7766 # against libdvdread (to permit MPlayer to use its own copy of the library).
7767 # So any compilation using the flags added here but not linking against
7768 # libdvdread can fail.
7769 echocheck "DVD support (libdvdnav)"
7770 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
7771 _dvdnav=no
7773 dvdnav_internal=no
7774 if test "$_dvdnav" = auto ; then
7775 if test "$_dvdread_internal" = yes ; then
7776 _dvdnav=yes
7777 dvdnav_internal=yes
7778 _res_comment="internal"
7779 else
7780 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
7783 if test "$_dvdnav" = auto ; then
7784 cat > $TMPC <<EOF
7785 #include <inttypes.h>
7786 #include <dvdnav/dvdnav.h>
7787 int main(void) { dvdnav_t *dvd=0; return 0; }
7789 _dvdnav=no
7790 _dvdnavdir=$($_dvdnavconfig --cflags)
7791 _dvdnavlibs=$($_dvdnavconfig --libs)
7792 cc_check $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
7794 if test "$_dvdnav" = yes ; then
7795 _largefiles=yes
7796 def_dvdnav='#define CONFIG_DVDNAV 1'
7797 if test "$dvdnav_internal" = yes ; then
7798 cflags_libdvdnav="-Ilibdvdnav"
7799 _inputmodules="dvdnav(internal) $_inputmodules"
7800 else
7801 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
7802 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
7803 _inputmodules="dvdnav $_inputmodules"
7805 else
7806 def_dvdnav='#undef CONFIG_DVDNAV'
7807 _noinputmodules="dvdnav $_noinputmodules"
7809 echores "$_dvdnav"
7811 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
7812 # Read dvdnav comment above.
7814 mak_enable () {
7815 list=$(echo $1 | tr '[a-z]' '[A-Z]')
7816 item=$(echo $2 | tr '[a-z]' '[A-Z]')
7817 nprefix=$3;
7818 for part in $list; do
7819 if $(echo $item | grep -q -E "(^| )$part($| )"); then
7820 echo "${nprefix}_$part = yes"
7822 done
7825 #############################################################################
7826 echo "Creating config.mak"
7827 cat > config.mak << EOF
7828 # -------- Generated by configure -----------
7830 # Ensure that locale settings do not interfere with shell commands.
7831 export LC_ALL = C
7833 CONFIGURATION = $_configuration
7835 CHARSET = $_charset
7836 DOC_LANGS = $language_doc
7837 DOC_LANG_ALL = $doc_lang_all
7838 MAN_LANGS = $language_man
7839 MAN_LANG_ALL = $man_lang_all
7840 MSG_LANGS = $language_msg
7841 MSG_LANG_ALL = $msg_lang_all
7843 prefix = \$(DESTDIR)$_prefix
7844 BINDIR = \$(DESTDIR)$_bindir
7845 DATADIR = \$(DESTDIR)$_datadir
7846 LIBDIR = \$(DESTDIR)$_libdir
7847 MANDIR = \$(DESTDIR)$_mandir
7848 CONFDIR = \$(DESTDIR)$_confdir
7849 LOCALEDIR = \$(DESTDIR)$_localedir
7851 AR = $_ar
7852 AS = $_cc
7853 CC = $_cc
7854 CXX = $_cc
7855 HOST_CC = $_host_cc
7856 INSTALL = $_install
7857 INSTALLSTRIP = $_install_strip
7858 WINDRES = $_windres
7860 CFLAGS = $CFLAGS $extra_cflags
7861 CXXFLAGS = $CXXFLAGS $extra_cflags $extra_cxxflags
7863 CFLAGS_DHAHELPER = $cflags_dhahelper
7864 CFLAGS_FAAD_FIXED = $cflags_faad_fixed
7865 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
7866 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
7867 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
7868 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
7869 CFLAGS_STACKREALIGN = $cflags_stackrealign
7870 CFLAGS_SVGALIB_HELPER = $cflags_svgalib_helper
7871 CFLAGS_TREMOR_LOW = $cflags_tremor_low
7873 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
7874 EXTRALIBS_MPLAYER = $libs_mplayer
7875 EXTRALIBS_MENCODER = $libs_mencoder
7877 GETCH = $_getch
7878 TIMER = $_timer
7880 EXESUF = $_exesuf
7881 EXESUFS_ALL = .exe
7883 ARCH = $arch
7884 $(mak_enable "$arch_all" "$arch" ARCH)
7885 $(mak_enable "$subarch_all" "$subarch" ARCH)
7886 $(mak_enable "$cpuexts_all" "$cpuexts" HAVE)
7888 MENCODER = $_mencoder
7889 MPLAYER = $_mplayer
7891 NEED_GETTIMEOFDAY = $_need_gettimeofday
7892 NEED_GLOB = $_need_glob
7893 NEED_MMAP = $_need_mmap
7894 NEED_SETENV = $_need_setenv
7895 NEED_SHMEM = $_need_shmem
7896 NEED_STRSEP = $_need_strsep
7897 NEED_SWAB = $_need_swab
7898 NEED_VSSCANF = $_need_vsscanf
7900 # features
7901 3DFX = $_3dfx
7902 AA = $_aa
7903 ALSA1X = $_alsa1x
7904 ALSA9 = $_alsa9
7905 ALSA5 = $_alsa5
7906 APPLE_IR = $_apple_ir
7907 APPLE_REMOTE = $_apple_remote
7908 ARTS = $_arts
7909 AUDIO_INPUT = $_audio_input
7910 BITMAP_FONT = $_bitmap_font
7911 BL = $_bl
7912 CACA = $_caca
7913 CDDA = $_cdda
7914 CDDB = $_cddb
7915 COREAUDIO = $_coreaudio
7916 COREVIDEO = $_corevideo
7917 DART = $_dart
7918 DFBMGA = $_dfbmga
7919 DGA = $_dga
7920 DIRECT3D = $_direct3d
7921 DIRECTFB = $_directfb
7922 DIRECTX = $_directx
7923 DVBIN = $_dvbin
7924 DVDNAV = $_dvdnav
7925 DVDNAV_INTERNAL = $dvdnav_internal
7926 DVDREAD = $_dvdread
7927 DVDREAD_INTERNAL = $_dvdread_internal
7928 DXR2 = $_dxr2
7929 DXR3 = $_dxr3
7930 ESD = $_esd
7931 FAAC=$_faac
7932 FAAD = $_faad
7933 FAAD_INTERNAL = $_faad_internal
7934 FASTMEMCPY = $_fastmemcpy
7935 FBDEV = $_fbdev
7936 FREETYPE = $_freetype
7937 FTP = $_ftp
7938 GIF = $_gif
7939 GGI = $_ggi
7940 GL = $_gl
7941 GL_WIN32 = $_gl_win32
7942 GL_X11 = $_gl_x11
7943 GL_SDL = $_gl_sdl
7944 MATRIXVIEW = $matrixview
7945 HAVE_POSIX_SELECT = $_posix_select
7946 HAVE_SYS_MMAN_H = $_mman
7947 IVTV = $_ivtv
7948 JACK = $_jack
7949 JOYSTICK = $_joystick
7950 JPEG = $_jpeg
7951 KAI = $_kai
7952 KVA = $_kva
7953 LADSPA = $_ladspa
7954 LIBA52 = $_liba52
7955 LIBA52_INTERNAL = $_liba52_internal
7956 LIBASS = $_ass
7957 LIBBS2B = $_libbs2b
7958 LIBDCA = $_libdca
7959 LIBDV = $_libdv
7960 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
7961 LIBLZO = $_liblzo
7962 LIBMAD = $_mad
7963 LIBMENU = $_menu
7964 LIBMENU_DVBIN = $_menu_dvbin
7965 LIBMPEG2 = $_libmpeg2
7966 LIBNEMESI = $_nemesi
7967 LIBNUT = $_libnut
7968 LIBSMBCLIENT = $_smb
7969 LIBTHEORA = $_theora
7970 LIRC = $_lirc
7971 LIVE555 = $_live
7972 MACOSX_FINDER = $_macosx_finder
7973 MD5SUM = $_md5sum
7974 MGA = $_mga
7975 MNG = $_mng
7976 MP3LAME = $_mp3lame
7977 MP3LIB = $_mp3lib
7978 MUSEPACK = $_musepack
7979 NAS = $_nas
7980 NATIVE_RTSP = $_native_rtsp
7981 NETWORK = $_network
7982 OPENAL = $_openal
7983 OSS = $_ossaudio
7984 PE_EXECUTABLE = $_pe_executable
7985 PNG = $_png
7986 PNM = $_pnm
7987 PRIORITY = $_priority
7988 PULSE = $_pulse
7989 PVR = $_pvr
7990 QTX_CODECS = $_qtx
7991 QTX_CODECS_WIN32 = $_qtx_codecs_win32
7992 QTX_EMULATION = $_qtx_emulation
7993 QUARTZ = $_quartz
7994 RADIO=$_radio
7995 RADIO_CAPTURE=$_radio_capture
7996 REAL_CODECS = $_real
7997 S3FB = $_s3fb
7998 SDL = $_sdl
7999 SPEEX = $_speex
8000 STREAM_CACHE = $_stream_cache
8001 SGIAUDIO = $_sgiaudio
8002 SUNAUDIO = $_sunaudio
8003 SVGA = $_svga
8004 TDFXFB = $_tdfxfb
8005 TDFXVID = $_tdfxvid
8006 TGA = $_tga
8007 TOOLAME=$_toolame
8008 TREMOR_INTERNAL = $_tremor_internal
8009 TV = $_tv
8010 TV_BSDBT848 = $_tv_bsdbt848
8011 TV_DSHOW = $_tv_dshow
8012 TV_V4L = $_tv_v4l
8013 TV_V4L1 = $_tv_v4l1
8014 TV_V4L2 = $_tv_v4l2
8015 TWOLAME=$_twolame
8016 UNRAR_EXEC = $_unrar_exec
8017 V4L2 = $_v4l2
8018 VCD = $_vcd
8019 VDPAU = $_vdpau
8020 VESA = $_vesa
8021 VIDIX = $_vidix
8022 VIDIX_PCIDB = $_vidix_pcidb_val
8023 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
8024 VIDIX_IVTV=$_vidix_drv_ivtv
8025 VIDIX_MACH64=$_vidix_drv_mach64
8026 VIDIX_MGA=$_vidix_drv_mga
8027 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
8028 VIDIX_NVIDIA=$_vidix_drv_nvidia
8029 VIDIX_PM2=$_vidix_drv_pm2
8030 VIDIX_PM3=$_vidix_drv_pm3
8031 VIDIX_RADEON=$_vidix_drv_radeon
8032 VIDIX_RAGE128=$_vidix_drv_rage128
8033 VIDIX_S3=$_vidix_drv_s3
8034 VIDIX_SH_VEU=$_vidix_drv_sh_veu
8035 VIDIX_SIS=$_vidix_drv_sis
8036 VIDIX_UNICHROME=$_vidix_drv_unichrome
8037 VORBIS = $_vorbis
8038 VSTREAM = $_vstream
8039 WII = $_wii
8040 WIN32DLL = $_win32dll
8041 WIN32WAVEOUT = $_win32waveout
8042 WIN32_EMULATION = $_win32_emulation
8043 WINVIDIX = $winvidix
8044 X11 = $_x11
8045 X264 = $_x264
8046 XANIM_CODECS = $_xanim
8047 XMGA = $_xmga
8048 XMMS_PLUGINS = $_xmms
8049 XV = $_xv
8050 XVID4 = $_xvid
8051 XVIDIX = $xvidix
8052 XVMC = $_xvmc
8053 XVR100 = $_xvr100
8054 YUV4MPEG = $_yuv4mpeg
8055 ZR = $_zr
8057 # FFmpeg
8058 LIBAVUTIL = $_libavutil
8059 LIBAVCODEC = $_libavcodec
8060 LIBAVFORMAT = $_libavformat
8061 LIBPOSTPROC = $_libpostproc
8062 LIBSWSCALE = $_libswscale
8063 LIBAVCODEC_INTERNALS = $_libavcodec_internals
8064 LIBSWSCALE_INTERNALS = $_libswscale_internals
8065 FFMPEG_SOURCE_PATH = $_ffmpeg_source
8067 RANLIB = $_ranlib
8068 YASM = $_yasm
8069 YASMFLAGS = $YASMFLAGS
8071 # Some FFmpeg codecs depend on these. Enable them unconditionally for now.
8072 CONFIG_AANDCT = yes
8073 CONFIG_FFT = yes
8074 CONFIG_GOLOMB = yes
8075 CONFIG_H264DSP = yes
8076 CONFIG_LPC = yes
8077 CONFIG_MDCT = yes
8078 CONFIG_RDFT = yes
8080 CONFIG_BZLIB = $bzlib
8081 CONFIG_ENCODERS = yes
8082 CONFIG_GPL = yes
8083 CONFIG_MLIB = $_mlib
8084 CONFIG_MUXERS = $_mencoder
8085 CONFIG_VDPAU = $_vdpau
8086 CONFIG_XVMC = $_xvmc
8087 CONFIG_ZLIB = $_zlib
8089 HAVE_PTHREADS = $_pthreads
8090 HAVE_SHM = $_shm
8091 HAVE_W32THREADS = $_w32threads
8092 HAVE_YASM = $have_yasm
8096 #############################################################################
8098 ff_config_enable () {
8099 list=$(echo $1 | tr '[a-z]' '[A-Z]')
8100 item=$(echo $2 | tr '[a-z]' '[A-Z]')
8101 _nprefix=$3;
8102 test -z "$_nprefix" && _nprefix='CONFIG'
8103 for part in $list; do
8104 if $(echo $item | grep -q -E "(^| )$part($| )"); then
8105 echo "#define ${_nprefix}_$part 1"
8106 else
8107 echo "#define ${_nprefix}_$part 0"
8109 done
8112 echo "Creating config.h"
8113 cat > $TMPH << EOF
8114 /*----------------------------------------------------------------------------
8115 ** This file has been automatically generated by configure any changes in it
8116 ** will be lost when you run configure again.
8117 ** Instead of modifying definitions here, use the --enable/--disable options
8118 ** of the configure script! See ./configure --help for details.
8119 *---------------------------------------------------------------------------*/
8121 #ifndef MPLAYER_CONFIG_H
8122 #define MPLAYER_CONFIG_H
8124 /* Undefine this if you do not want to select mono audio (left or right)
8125 with a stereo MPEG layer 2/3 audio stream. The command line option
8126 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
8127 right-only), with 0 being the default.
8129 #define CONFIG_FAKE_MONO 1
8131 /* set up audio OUTBURST. Do not change this! */
8132 #define OUTBURST 512
8134 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
8135 #undef FAST_OSD
8136 #undef FAST_OSD_TABLE
8138 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
8139 #define MPEG12_POSTPROC 1
8140 #define ATTRIBUTE_ALIGNED_MAX 16
8144 #define CONFIGURATION "$_configuration"
8146 #define MPLAYER_DATADIR "$_datadir"
8147 #define MPLAYER_CONFDIR "$_confdir"
8148 #define MPLAYER_LIBDIR "$_libdir"
8149 #define MPLAYER_LOCALEDIR "$_localedir"
8151 $def_translation
8153 /* definitions needed by included libraries */
8154 #define HAVE_INTTYPES_H 1
8155 /* libmpeg2 + FFmpeg */
8156 $def_fast_inttypes
8157 /* libdvdcss */
8158 #define HAVE_ERRNO_H 1
8159 /* libdvdcss + libdvdread */
8160 #define HAVE_LIMITS_H 1
8161 /* libdvdcss + libfaad2 */
8162 #define HAVE_UNISTD_H 1
8163 /* libfaad2 + libdvdread */
8164 #define STDC_HEADERS 1
8165 #define HAVE_MEMCPY 1
8166 /* libfaad2 */
8167 #define HAVE_STRING_H 1
8168 #define HAVE_STRINGS_H 1
8169 #define HAVE_SYS_STAT_H 1
8170 #define HAVE_SYS_TYPES_H 1
8171 /* libdvdnav */
8172 #define READ_CACHE_TRACE 0
8173 /* libdvdread */
8174 #define HAVE_DLFCN_H 1
8175 $def_dvdcss
8178 /* system headers */
8179 $def_alloca_h
8180 $def_alsa_asoundlib_h
8181 $def_altivec_h
8182 $def_malloc_h
8183 $def_mman_h
8184 $def_mman_has_map_failed
8185 $def_soundcard_h
8186 $def_sys_asoundlib_h
8187 $def_sys_soundcard_h
8188 $def_sys_sysinfo_h
8189 $def_termios_h
8190 $def_termios_sys_h
8191 $def_winsock2_h
8194 /* system functions */
8195 $def_gethostbyname2
8196 $def_gettimeofday
8197 $def_glob
8198 $def_langinfo
8199 $def_lrintf
8200 $def_map_memalign
8201 $def_memalign
8202 $def_nanosleep
8203 $def_posix_select
8204 $def_select
8205 $def_setenv
8206 $def_setmode
8207 $def_shm
8208 $def_strsep
8209 $def_swab
8210 $def_sysi86
8211 $def_sysi86_iv
8212 $def_termcap
8213 $def_termios
8214 $def_vsscanf
8217 /* system-specific features */
8218 $def_asmalign_pot
8219 $def_builtin_expect
8220 $def_dl
8221 $def_dos_paths
8222 $def_extern_asm
8223 $def_extern_prefix
8224 $def_iconv
8225 $def_kstat
8226 $def_macosx_bundle
8227 $def_macosx_finder
8228 $def_maemo
8229 $def_named_asm_args
8230 $def_priority
8231 $def_quicktime
8232 $def_restrict_keyword
8233 $def_rtc
8234 $def_unrar_exec
8237 /* configurable options */
8238 $def_charset
8239 $def_crash_debug
8240 $def_debug
8241 $def_dynamic_plugins
8242 $def_fastmemcpy
8243 $def_menu
8244 $def_runtime_cpudetection
8245 $def_sighandler
8246 $def_sortsub
8247 $def_stream_cache
8248 $def_pthread_cache
8251 /* CPU stuff */
8252 #define __CPU__ $iproc
8253 $def_words_endian
8254 $def_bigendian
8255 $(ff_config_enable "$arch_all" "$arch" "ARCH")
8256 $(ff_config_enable "$subarch_all" "$subarch" "ARCH")
8257 $(ff_config_enable "$cpuexts_all" "$cpuexts" "HAVE")
8260 /* DVD/VCD/CD */
8261 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
8262 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
8263 $def_bsdi_dvd
8264 $def_cddb
8265 $def_cdio
8266 $def_cdparanoia
8267 $def_cdrom
8268 $def_dvd
8269 $def_dvd_bsd
8270 $def_dvd_darwin
8271 $def_dvd_linux
8272 $def_dvd_openbsd
8273 $def_dvdio
8274 $def_dvdnav
8275 $def_dvdread
8276 $def_hpux_scsi_h
8277 $def_libcdio
8278 $def_sol_scsi_h
8279 $def_vcd
8282 /* codec libraries */
8283 $def_faac
8284 $def_faad
8285 $def_faad_internal
8286 $def_liba52
8287 $def_liba52_internal
8288 $def_libdca
8289 $def_libdv
8290 $def_liblzo
8291 $def_libmpeg2
8292 $def_mad
8293 $def_mp3lame
8294 $def_mp3lame_preset
8295 $def_mp3lame_preset_medium
8296 $def_mp3lib
8297 $def_musepack
8298 $def_speex
8299 $def_theora
8300 $def_toolame
8301 $def_tremor
8302 $def_twolame
8303 $def_vorbis
8304 $def_x264
8305 $def_xvid
8306 $def_zlib
8308 $def_libnut
8311 /* binary codecs */
8312 $def_qtx
8313 $def_qtx_win32
8314 $def_real
8315 $def_win32_loader
8316 $def_win32dll
8317 $def_xanim
8318 $def_xmms
8319 #define BINARY_CODECS_PATH "$_codecsdir"
8320 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
8323 /* Audio output drivers */
8324 $def_alsa
8325 $def_alsa1x
8326 $def_alsa5
8327 $def_alsa9
8328 $def_arts
8329 $def_coreaudio
8330 $def_dart
8331 $def_esd
8332 $def_esd_latency
8333 $def_jack
8334 $def_kai
8335 $def_nas
8336 $def_openal
8337 $def_openal_h
8338 $def_ossaudio
8339 $def_ossaudio_devdsp
8340 $def_ossaudio_devmixer
8341 $def_pulse
8342 $def_sgiaudio
8343 $def_sunaudio
8344 $def_win32waveout
8346 $def_ladspa
8347 $def_libbs2b
8350 /* input */
8351 $def_apple_ir
8352 $def_apple_remote
8353 $def_ioctl_bt848_h_name
8354 $def_ioctl_meteor_h_name
8355 $def_joystick
8356 $def_lirc
8357 $def_lircc
8358 $def_pvr
8359 $def_radio
8360 $def_radio_bsdbt848
8361 $def_radio_capture
8362 $def_radio_v4l
8363 $def_radio_v4l2
8364 $def_tv
8365 $def_tv_bsdbt848
8366 $def_tv_dshow
8367 $def_tv_v4l
8368 $def_tv_v4l1
8369 $def_tv_v4l2
8372 /* font stuff */
8373 $def_ass
8374 $def_bitmap_font
8375 $def_enca
8376 $def_fontconfig
8377 $def_freetype
8378 $def_fribidi
8381 /* networking */
8382 $def_closesocket
8383 $def_ftp
8384 $def_inet6
8385 $def_inet_aton
8386 $def_inet_pton
8387 $def_live
8388 $def_nemesi
8389 $def_network
8390 $def_smb
8391 $def_socklen_t
8392 $def_vstream
8395 /* libvo options */
8396 $def_3dfx
8397 $def_aa
8398 $def_bl
8399 $def_caca
8400 $def_corevideo
8401 $def_dfbmga
8402 $def_dga
8403 $def_dga1
8404 $def_dga2
8405 $def_direct3d
8406 $def_directfb
8407 $def_directfb_version
8408 $def_directx
8409 $def_dvb
8410 $def_dvbin
8411 $def_dxr2
8412 $def_dxr3
8413 $def_fbdev
8414 $def_ggi
8415 $def_ggiwmh
8416 $def_gif
8417 $def_gif_4
8418 $def_gif_tvt_hack
8419 $def_gl
8420 $def_gl_win32
8421 $def_gl_x11
8422 $def_gl_sdl
8423 $def_matrixview
8424 $def_ivtv
8425 $def_jpeg
8426 $def_kva
8427 $def_md5sum
8428 $def_mga
8429 $def_mng
8430 $def_png
8431 $def_pnm
8432 $def_quartz
8433 $def_s3fb
8434 $def_sdl
8435 $def_sdl_sdl_h
8436 $def_svga
8437 $def_tdfxfb
8438 $def_tdfxvid
8439 $def_tga
8440 $def_v4l2
8441 $def_vdpau
8442 $def_vesa
8443 $def_vidix
8444 $def_vidix_drv_cyberblade
8445 $def_vidix_drv_ivtv
8446 $def_vidix_drv_mach64
8447 $def_vidix_drv_mga
8448 $def_vidix_drv_mga_crtc2
8449 $def_vidix_drv_nvidia
8450 $def_vidix_drv_pm3
8451 $def_vidix_drv_radeon
8452 $def_vidix_drv_rage128
8453 $def_vidix_drv_s3
8454 $def_vidix_drv_sh_veu
8455 $def_vidix_drv_sis
8456 $def_vidix_drv_unichrome
8457 $def_vidix_pfx
8458 $def_vm
8459 $def_wii
8460 $def_x11
8461 $def_xdpms
8462 $def_xf86keysym
8463 $def_xinerama
8464 $def_xmga
8465 $def_xss
8466 $def_xv
8467 $def_xvmc
8468 $def_xvr100
8469 $def_yuv4mpeg
8470 $def_zr
8473 /* FFmpeg */
8474 $def_libavcodec
8475 $def_libavformat
8476 $def_libavutil
8477 $def_libpostproc
8478 $def_libswscale
8479 $def_libavcodec_internals
8480 $def_libswscale_internals
8482 #define CONFIG_DECODERS 1
8483 #define CONFIG_ENCODERS 1
8484 #define CONFIG_DEMUXERS 1
8485 $def_muxers
8487 $def_arpa_inet_h
8488 $def_bswap
8489 $def_bzlib
8490 $def_dcbzl
8491 $def_exp2
8492 $def_exp2f
8493 $def_fast_64bit
8494 $def_fast_unaligned
8495 $def_llrint
8496 $def_log2
8497 $def_log2f
8498 $def_lrint
8499 $def_memalign_hack
8500 $def_mlib
8501 $def_mkstemp
8502 $def_posix_memalign
8503 $def_pthreads
8504 $def_round
8505 $def_roundf
8506 $def_ten_operands
8507 $def_threads
8508 $def_truncf
8509 $def_xform_asm
8510 $def_yasm
8512 #define CONFIG_FASTDIV 0
8513 #define CONFIG_FFSERVER 0
8514 #define CONFIG_GPL 1
8515 #define CONFIG_GRAY 0
8516 #define CONFIG_HARDCODED_TABLES 0
8517 #define CONFIG_LIBVORBIS 0
8518 #define CONFIG_POWERPC_PERF 0
8519 #define CONFIG_SMALL 0
8520 #define CONFIG_SWSCALE_ALPHA 1
8522 #define HAVE_ATTRIBUTE_PACKED 1
8523 #define HAVE_GETHRTIME 0
8524 #define HAVE_INLINE_ASM 1
8525 #define HAVE_LDBRX 0
8526 #define HAVE_POLL_H 1
8527 #define HAVE_PPC4XX 0
8528 #define HAVE_VFP_ARGS 1
8529 #define HAVE_VIRTUALALLOC 0
8531 /* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */
8532 #define CONFIG_AANDCT 1
8533 #define CONFIG_DCT 1
8534 #define CONFIG_DWT 1
8535 #define CONFIG_FFT 1
8536 #define CONFIG_GOLOMB 1
8537 #define CONFIG_H264DSP 1
8538 #define CONFIG_LPC 1
8539 #define CONFIG_MDCT 1
8540 #define CONFIG_RDFT 1
8542 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
8543 $def_ebx_available
8544 #ifndef MP_DEBUG
8545 #define HAVE_EBP_AVAILABLE 1
8546 #else
8547 #define HAVE_EBP_AVAILABLE 0
8548 #endif
8550 #define CONFIG_H263_VAAPI_HWACCEL 0
8551 #define CONFIG_MPEG2_VAAPI_HWACCEL 0
8552 #define CONFIG_MPEG4_VAAPI_HWACCEL 0
8553 #define CONFIG_H264_VAAPI_HWACCEL 0
8554 #define CONFIG_VC1_VAAPI_HWACCEL 0
8555 #define CONFIG_WMV3_VAAPI_HWACCEL 0
8557 #endif /* MPLAYER_CONFIG_H */
8560 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
8561 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
8563 #############################################################################
8565 ./version.sh `$_cc -dumpversion`
8567 cat << EOF
8569 Config files successfully generated by ./configure $_configuration !
8571 Install prefix: $_prefix
8572 Data directory: $_datadir
8573 Config direct.: $_confdir
8575 Byte order: $_byte_order
8576 Optimizing for: $_optimizing
8578 Languages:
8579 Messages (in addition to English): $language_msg
8580 Manual pages: $language_man
8581 Documentation: $language_doc
8583 Enabled optional drivers:
8584 Input: $_inputmodules
8585 Codecs: $_codecmodules
8586 Audio output: $_aomodules
8587 Video output: $_vomodules
8589 Disabled optional drivers:
8590 Input: $_noinputmodules
8591 Codecs: $_nocodecmodules
8592 Audio output: $_noaomodules
8593 Video output: $_novomodules
8595 'config.h' and 'config.mak' contain your configuration options.
8596 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
8597 compile *** DO NOT REPORT BUGS if you tweak these files ***
8599 'make' will now compile MPlayer and 'make install' will install it.
8600 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
8605 if test "$_mtrr" = yes ; then
8606 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$doc_lang/video.html#mtrr)"
8607 echo
8610 if ! x86_32; then
8611 cat <<EOF
8612 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
8613 operating system ($system_name). You may encounter a few files that cannot
8614 be played due to missing open source video/audio codec support.
8620 cat <<EOF
8621 Check $TMPLOG if you wonder why an autodetection failed (make sure
8622 development headers/packages are installed).
8624 NOTE: The --enable-* parameters unconditionally force options on, completely
8625 skipping autodetection. This behavior is unlike what you may be used to from
8626 autoconf-based configure scripts that can decide to override you. This greater
8627 level of control comes at a price. You may have to provide the correct compiler
8628 and linker flags yourself.
8629 If you used one of these options (except --enable-menu and similar ones that
8630 turn on internal features) and experience a compilation or linking failure,
8631 make sure you have passed the necessary compiler/linker flags to configure.
8633 If you suspect a bug, please read DOCS/HTML/$doc_lang/bugreports.html.
8637 if test "$_warn_CFLAGS" = yes; then
8638 cat <<EOF
8640 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
8641 but:
8643 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
8645 It is strongly recommended to let MPlayer choose the correct CFLAGS!
8646 To do so, execute 'CFLAGS= ./configure <options>'
8651 # Last move:
8652 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP" "$TMPH"