Merge remote branch 'mplayer/master'
[mplayer/glamo.git] / configure
blob943a42dc61fa5d63edc88f067ebb3fcac6ec7c03
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]
381 --disable-glamo disable Glamo accelerated video output [enable]
383 Audio output:
384 --disable-alsa disable ALSA audio output [autodetect]
385 --disable-ossaudio disable OSS audio output [autodetect]
386 --disable-arts disable aRts audio output [autodetect]
387 --disable-esd disable esd audio output [autodetect]
388 --disable-pulse disable Pulseaudio audio output [autodetect]
389 --disable-jack disable JACK audio output [autodetect]
390 --enable-openal enable OpenAL audio output [disable]
391 --disable-nas disable NAS audio output [autodetect]
392 --disable-sgiaudio disable SGI audio output [autodetect]
393 --disable-sunaudio disable Sun audio output [autodetect]
394 --disable-kai disable KAI audio output [autodetect]
395 --disable-dart disable DART audio output [autodetect]
396 --disable-win32waveout disable Windows waveout audio output [autodetect]
397 --disable-coreaudio disable CoreAudio audio output [autodetect]
398 --disable-select disable using select() on the audio device [enable]
400 Language options:
401 --enable-translation enable support for translated output [disable]
402 --charset=charset convert the console messages to this character set
403 --language-doc=lang language to use for the documentation [en]
404 --language-man=lang language to use for the man pages [en]
405 --language-msg=lang extra languages for program messages [all]
406 --language=lang default language to use [en]
407 Specific options override --language. You can pass a list of languages separated
408 by whitespace or commas instead of a single language. Nonexisting translations
409 will be dropped from each list. All translations available in the list will be
410 installed. The value "all" will activate all translations. The LINGUAS
411 environment variable is honored. In all cases the fallback is English.
412 The program always supports English-language output; additional message
413 languages are only installed if --enable-translation is also specified.
414 Available values for --language-doc are: all $doc_lang_all
415 Available values for --language-man are: all $man_lang_all
416 Available values for --language-msg are: all $msg_lang_all
418 Miscellaneous options:
419 --enable-runtime-cpudetection enable runtime CPU detection [disable]
420 --enable-cross-compile enable cross-compilation [autodetect]
421 --cc=COMPILER C compiler to build MPlayer [gcc]
422 --host-cc=COMPILER C compiler for tools needed while building [gcc]
423 --as=ASSEMBLER assembler to build MPlayer [as]
424 --nm=NM nm tool to build MPlayer [nm]
425 --yasm=YASM Yasm assembler to build MPlayer [yasm]
426 --ar=AR librarian to build MPlayer [ar]
427 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
428 --windres=WINDRES windres to build MPlayer [windres]
429 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
430 --enable-static build a statically linked binary
431 --with-install=PATH path to a custom install program
433 Advanced options:
434 --enable-mmx enable MMX [autodetect]
435 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
436 --enable-3dnow enable 3DNow! [autodetect]
437 --enable-3dnowext enable extended 3DNow! [autodetect]
438 --enable-sse enable SSE [autodetect]
439 --enable-sse2 enable SSE2 [autodetect]
440 --enable-ssse3 enable SSSE3 [autodetect]
441 --enable-shm enable shm [autodetect]
442 --enable-altivec enable AltiVec (PowerPC) [autodetect]
443 --enable-armv5te enable DSP extensions (ARM) [autodetect]
444 --enable-armv6 enable ARMv6 (ARM) [autodetect]
445 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
446 --enable-armvfp enable ARM VFP (ARM) [autodetect]
447 --enable-neon enable NEON (ARM) [autodetect]
448 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
449 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
450 --enable-big-endian force byte order to big-endian [autodetect]
451 --enable-debug[=1-3] compile-in debugging information [disable]
452 --enable-profile compile-in profiling information [disable]
453 --disable-sighandler disable sighandler for crashes [enable]
454 --enable-crash-debug enable automatic gdb attach on crash [disable]
455 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
456 --ffmpeg-source-dir=PATH enable features requiring internal FFmpeg headers
458 Use these options if autodetection fails:
459 --extra-cflags=FLAGS extra CFLAGS
460 --extra-ldflags=FLAGS extra LDFLAGS
461 --extra-libs=FLAGS extra linker flags
462 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
463 --extra-libs-mencoder=FLAGS extra linker flags for MEncoder
464 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
466 --with-freetype-config=PATH path to freetype-config
467 --with-fribidi-config=PATH path to fribidi-config
468 --with-glib-config=PATH path to glib*-config
469 --with-gtk-config=PATH path to gtk*-config
470 --with-sdl-config=PATH path to sdl*-config
471 --with-dvdnav-config=PATH path to dvdnav-config
472 --with-dvdread-config=PATH path to dvdread-config
474 This configure script is NOT autoconf-based, even though its output is similar.
475 It will try to autodetect all configuration options. If you --enable an option
476 it will be forcefully turned on, skipping autodetection. This can break
477 compilation, so you need to know what you are doing.
479 exit 0
480 } #show_help()
482 # GOTCHA: the variables below defines the default behavior for autodetection
483 # and have - unless stated otherwise - at least 2 states : yes no
484 # If autodetection is available then the third state is: auto
485 _mmx=auto
486 _3dnow=auto
487 _3dnowext=auto
488 _mmxext=auto
489 _sse=auto
490 _sse2=auto
491 _ssse3=auto
492 _cmov=auto
493 _fast_cmov=auto
494 _fast_clz=auto
495 _armv5te=auto
496 _armv6=auto
497 _armv6t2=auto
498 _armvfp=auto
499 neon=auto
500 _iwmmxt=auto
501 _mtrr=auto
502 _altivec=auto
503 _install=install
504 _ranlib=ranlib
505 _windres=windres
506 _cc=cc
507 _ar=ar
508 test "$CC" && _cc="$CC"
509 _as=auto
510 _nm=auto
511 _yasm=yasm
512 _runtime_cpudetection=no
513 _cross_compile=auto
514 _prefix="/usr/local"
515 _libavutil=auto
516 _libavcodec=auto
517 _libavformat=auto
518 _libpostproc=auto
519 _libswscale=auto
520 _libavcodec_internals=no
521 _libswscale_internals=no
522 _mencoder=yes
523 _mplayer=yes
524 _x11=auto
525 _xshape=auto
526 _xss=auto
527 _dga1=auto
528 _dga2=auto
529 _xv=auto
530 _xvmc=no #auto when complete
531 _vdpau=auto
532 _sdl=auto
533 _kva=auto
534 _direct3d=auto
535 _directx=auto
536 _win32waveout=auto
537 _nas=auto
538 _png=auto
539 _mng=auto
540 _jpeg=auto
541 _pnm=yes
542 _md5sum=yes
543 _yuv4mpeg=yes
544 _gif=auto
545 _gl=auto
546 matrixview=yes
547 _ggi=auto
548 _ggiwmh=auto
549 _aa=auto
550 _caca=auto
551 _svga=auto
552 _vesa=auto
553 _fbdev=auto
554 _dvb=auto
555 _dxr2=auto
556 _dxr3=auto
557 _ivtv=auto
558 _v4l2=auto
559 _iconv=auto
560 _langinfo=auto
561 _rtc=auto
562 _ossaudio=auto
563 _arts=auto
564 _esd=auto
565 _pulse=auto
566 _jack=auto
567 _kai=auto
568 _dart=auto
569 _openal=no
570 _libcdio=auto
571 _liblzo=auto
572 _mad=auto
573 _mp3lame=auto
574 _toolame=auto
575 _twolame=auto
576 _tremor=auto
577 _tremor_internal=yes
578 _tremor_low=no
579 _libvorbis=auto
580 _speex=auto
581 _theora=auto
582 _mp3lib=auto
583 _liba52=auto
584 _liba52_internal=no
585 _libdca=auto
586 _libmpeg2=auto
587 _faad=auto
588 _faad_internal=auto
589 _faad_fixed=no
590 _faac=auto
591 _ladspa=auto
592 _libbs2b=auto
593 _xmms=no
594 _vcd=auto
595 _dvdnav=auto
596 _dvdnavconfig=dvdnav-config
597 _dvdreadconfig=dvdread-config
598 _dvdread=auto
599 _dvdread_internal=auto
600 _libdvdcss_internal=auto
601 _xanim=auto
602 _real=auto
603 _live=auto
604 _nemesi=auto
605 _native_rtsp=yes
606 _xinerama=auto
607 _mga=auto
608 _xmga=auto
609 _vm=auto
610 _xf86keysym=auto
611 _mlib=no #broken, thus disabled
612 _sgiaudio=auto
613 _sunaudio=auto
614 _alsa=auto
615 _fastmemcpy=yes
616 _unrar_exec=auto
617 _win32dll=auto
618 _select=yes
619 _radio=no
620 _radio_capture=no
621 _radio_v4l=auto
622 _radio_v4l2=auto
623 _radio_bsdbt848=auto
624 _tv=yes
625 _tv_v4l1=auto
626 _tv_v4l2=auto
627 _tv_bsdbt848=auto
628 _tv_dshow=auto
629 _pvr=auto
630 _network=yes
631 _winsock2_h=auto
632 _smb=auto
633 _vidix=auto
634 _vidix_pcidb=yes
635 _dhahelper=no
636 _svgalib_helper=no
637 _joystick=no
638 _xvid=auto
639 _x264=auto
640 _libnut=auto
641 _lirc=auto
642 _lircc=auto
643 _apple_remote=auto
644 _apple_ir=auto
645 _gui=no
646 _gtk1=no
647 _termcap=auto
648 _termios=auto
649 _3dfx=no
650 _s3fb=no
651 _wii=no
652 _tdfxfb=no
653 _tdfxvid=no
654 _xvr100=auto
655 _tga=yes
656 _directfb=auto
657 _zr=auto
658 _bl=no
659 _glamo=yes
660 _largefiles=yes
661 #language=en
662 _shm=auto
663 _linux_devfs=no
664 _translation=no
665 _charset="UTF-8"
666 _dynamic_plugins=no
667 _crash_debug=no
668 _sighandler=yes
669 _libdv=auto
670 _cdparanoia=auto
671 _cddb=auto
672 _big_endian=auto
673 _bitmap_font=yes
674 _freetype=auto
675 _fontconfig=auto
676 _menu=no
677 _qtx=auto
678 _maemo=auto
679 _coreaudio=auto
680 _corevideo=auto
681 _quartz=auto
682 quicktime=auto
683 _macosx_finder=no
684 _macosx_bundle=auto
685 _sortsub=yes
686 _freetypeconfig='freetype-config'
687 _fribidi=auto
688 _fribidiconfig='fribidi-config'
689 _enca=auto
690 _inet6=auto
691 _gethostbyname2=auto
692 _ftp=yes
693 _musepack=auto
694 _vstream=auto
695 _pthreads=auto
696 _w32threads=auto
697 _ass=auto
698 _rpath=no
699 _asmalign_pot=auto
700 _stream_cache=yes
701 _priority=no
702 def_dos_paths="#define HAVE_DOS_PATHS 0"
703 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
704 def_priority="#undef CONFIG_PRIORITY"
705 def_pthread_cache="#undef PTHREAD_CACHE"
706 _need_shmem=yes
707 for ac_option do
708 case "$ac_option" in
709 --help|-help|-h)
710 show_help
712 --prefix=*)
713 _prefix=$(echo $ac_option | cut -d '=' -f 2)
715 --bindir=*)
716 _bindir=$(echo $ac_option | cut -d '=' -f 2)
718 --datadir=*)
719 _datadir=$(echo $ac_option | cut -d '=' -f 2)
721 --mandir=*)
722 _mandir=$(echo $ac_option | cut -d '=' -f 2)
724 --confdir=*)
725 _confdir=$(echo $ac_option | cut -d '=' -f 2)
727 --libdir=*)
728 _libdir=$(echo $ac_option | cut -d '=' -f 2)
730 --codecsdir=*)
731 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
733 --localedir=*)
734 _localedir=$(echo $ac_option | cut -d '=' -f 2)
737 --with-install=*)
738 _install=$(echo $ac_option | cut -d '=' -f 2 )
740 --with-xvmclib=*)
741 _xvmclib=$(echo $ac_option | cut -d '=' -f 2)
744 --with-sdl-config=*)
745 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
747 --with-freetype-config=*)
748 _freetypeconfig=$(echo $ac_option | cut -d '=' -f 2)
750 --with-fribidi-config=*)
751 _fribidiconfig=$(echo $ac_option | cut -d '=' -f 2)
753 --with-gtk-config=*)
754 _gtkconfig=$(echo $ac_option | cut -d '=' -f 2)
756 --with-glib-config=*)
757 _glibconfig=$(echo $ac_option | cut -d '=' -f 2)
759 --with-dvdnav-config=*)
760 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
762 --with-dvdread-config=*)
763 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
766 --extra-cflags=*)
767 extra_cflags="$extra_cflags $(echo $ac_option | cut -d '=' -f 2-)"
769 --extra-ldflags=*)
770 extra_ldflags="$extra_ldflags $(echo $ac_option | cut -d '=' -f 2-)"
772 --extra-libs=*)
773 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
775 --extra-libs-mplayer=*)
776 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
778 --extra-libs-mencoder=*)
779 libs_mencoder=$(echo $ac_option | cut -d '=' -f 2)
782 --target=*)
783 _target=$(echo $ac_option | cut -d '=' -f 2)
785 --cc=*)
786 _cc=$(echo $ac_option | cut -d '=' -f 2)
788 --host-cc=*)
789 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
791 --as=*)
792 _as=$(echo $ac_option | cut -d '=' -f 2)
794 --nm=*)
795 _nm=$(echo $ac_option | cut -d '=' -f 2)
797 --yasm=*)
798 _yasm=$(echo $ac_option | cut -d '=' -f 2)
800 --ar=*)
801 _ar=$(echo $ac_option | cut -d '=' -f 2)
803 --ranlib=*)
804 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
806 --windres=*)
807 _windres=$(echo $ac_option | cut -d '=' -f 2)
809 --charset=*)
810 _charset=$(echo $ac_option | cut -d '=' -f 2)
812 --language-doc=*)
813 language_doc=$(echo $ac_option | cut -d '=' -f 2)
815 --language-man=*)
816 language_man=$(echo $ac_option | cut -d '=' -f 2)
818 --language-msg=*)
819 language_msg=$(echo $ac_option | cut -d '=' -f 2)
821 --language=*)
822 language=$(echo $ac_option | cut -d '=' -f 2)
825 --enable-static)
826 _ld_static='-static'
828 --disable-static)
829 _ld_static=''
831 --enable-profile)
832 _profile='-p'
834 --disable-profile)
835 _profile=
837 --enable-debug)
838 _debug='-g'
840 --enable-debug=*)
841 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
843 --disable-debug)
844 _debug=
846 --enable-translation) _translation=yes ;;
847 --disable-translation) _translation=no ;;
848 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
849 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
850 --enable-cross-compile) _cross_compile=yes ;;
851 --disable-cross-compile) _cross_compile=no ;;
852 --enable-mencoder) _mencoder=yes ;;
853 --disable-mencoder) _mencoder=no ;;
854 --enable-mplayer) _mplayer=yes ;;
855 --disable-mplayer) _mplayer=no ;;
856 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
857 --disable-dynamic-plugins) _dynamic_plugins=no ;;
858 --enable-x11) _x11=yes ;;
859 --disable-x11) _x11=no ;;
860 --enable-xshape) _xshape=yes ;;
861 --disable-xshape) _xshape=no ;;
862 --enable-xss) _xss=yes ;;
863 --disable-xss) _xss=no ;;
864 --enable-xv) _xv=yes ;;
865 --disable-xv) _xv=no ;;
866 --enable-xvmc) _xvmc=yes ;;
867 --disable-xvmc) _xvmc=no ;;
868 --enable-vdpau) _vdpau=yes ;;
869 --disable-vdpau) _vdpau=no ;;
870 --enable-sdl) _sdl=yes ;;
871 --disable-sdl) _sdl=no ;;
872 --enable-kva) _kva=yes ;;
873 --disable-kva) _kva=no ;;
874 --enable-direct3d) _direct3d=yes ;;
875 --disable-direct3d) _direct3d=no ;;
876 --enable-directx) _directx=yes ;;
877 --disable-directx) _directx=no ;;
878 --enable-win32waveout) _win32waveout=yes ;;
879 --disable-win32waveout) _win32waveout=no ;;
880 --enable-nas) _nas=yes ;;
881 --disable-nas) _nas=no ;;
882 --enable-png) _png=yes ;;
883 --disable-png) _png=no ;;
884 --enable-mng) _mng=yes ;;
885 --disable-mng) _mng=no ;;
886 --enable-jpeg) _jpeg=yes ;;
887 --disable-jpeg) _jpeg=no ;;
888 --enable-pnm) _pnm=yes ;;
889 --disable-pnm) _pnm=no ;;
890 --enable-md5sum) _md5sum=yes ;;
891 --disable-md5sum) _md5sum=no ;;
892 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
893 --disable-yuv4mpeg) _yuv4mpeg=no ;;
894 --enable-gif) _gif=yes ;;
895 --disable-gif) _gif=no ;;
896 --enable-gl) _gl=yes ;;
897 --disable-gl) _gl=no ;;
898 --enable-matrixview) matrixview=yes ;;
899 --disable-matrixview) matrixview=no ;;
900 --enable-ggi) _ggi=yes ;;
901 --disable-ggi) _ggi=no ;;
902 --enable-ggiwmh) _ggiwmh=yes ;;
903 --disable-ggiwmh) _ggiwmh=no ;;
904 --enable-aa) _aa=yes ;;
905 --disable-aa) _aa=no ;;
906 --enable-caca) _caca=yes ;;
907 --disable-caca) _caca=no ;;
908 --enable-svga) _svga=yes ;;
909 --disable-svga) _svga=no ;;
910 --enable-vesa) _vesa=yes ;;
911 --disable-vesa) _vesa=no ;;
912 --enable-fbdev) _fbdev=yes ;;
913 --disable-fbdev) _fbdev=no ;;
914 --enable-dvb) _dvb=yes ;;
915 --disable-dvb) _dvb=no ;;
916 --enable-dxr2) _dxr2=yes ;;
917 --disable-dxr2) _dxr2=no ;;
918 --enable-dxr3) _dxr3=yes ;;
919 --disable-dxr3) _dxr3=no ;;
920 --enable-ivtv) _ivtv=yes ;;
921 --disable-ivtv) _ivtv=no ;;
922 --enable-v4l2) _v4l2=yes ;;
923 --disable-v4l2) _v4l2=no ;;
924 --enable-iconv) _iconv=yes ;;
925 --disable-iconv) _iconv=no ;;
926 --enable-langinfo) _langinfo=yes ;;
927 --disable-langinfo) _langinfo=no ;;
928 --enable-rtc) _rtc=yes ;;
929 --disable-rtc) _rtc=no ;;
930 --enable-libdv) _libdv=yes ;;
931 --disable-libdv) _libdv=no ;;
932 --enable-ossaudio) _ossaudio=yes ;;
933 --disable-ossaudio) _ossaudio=no ;;
934 --enable-arts) _arts=yes ;;
935 --disable-arts) _arts=no ;;
936 --enable-esd) _esd=yes ;;
937 --disable-esd) _esd=no ;;
938 --enable-pulse) _pulse=yes ;;
939 --disable-pulse) _pulse=no ;;
940 --enable-jack) _jack=yes ;;
941 --disable-jack) _jack=no ;;
942 --enable-openal) _openal=yes ;;
943 --disable-openal) _openal=no ;;
944 --enable-kai) _kai=yes ;;
945 --disable-kai) _kai=no ;;
946 --enable-dart) _dart=yes ;;
947 --disable-dart) _dart=no ;;
948 --enable-mad) _mad=yes ;;
949 --disable-mad) _mad=no ;;
950 --enable-mp3lame) _mp3lame=yes ;;
951 --disable-mp3lame) _mp3lame=no ;;
952 --enable-toolame) _toolame=yes ;;
953 --disable-toolame) _toolame=no ;;
954 --enable-twolame) _twolame=yes ;;
955 --disable-twolame) _twolame=no ;;
956 --enable-libcdio) _libcdio=yes ;;
957 --disable-libcdio) _libcdio=no ;;
958 --enable-liblzo) _liblzo=yes ;;
959 --disable-liblzo) _liblzo=no ;;
960 --enable-libvorbis) _libvorbis=yes ;;
961 --disable-libvorbis) _libvorbis=no ;;
962 --enable-speex) _speex=yes ;;
963 --disable-speex) _speex=no ;;
964 --enable-tremor) _tremor=yes ;;
965 --disable-tremor) _tremor=no ;;
966 --enable-tremor-internal) _tremor_internal=yes ;;
967 --disable-tremor-internal) _tremor_internal=no ;;
968 --enable-tremor-low) _tremor_low=yes ;;
969 --disable-tremor-low) _tremor_low=no ;;
970 --enable-theora) _theora=yes ;;
971 --disable-theora) _theora=no ;;
972 --enable-mp3lib) _mp3lib=yes ;;
973 --disable-mp3lib) _mp3lib=no ;;
974 --enable-liba52-internal) _liba52_internal=yes ;;
975 --disable-liba52-internal) _liba52_internal=no ;;
976 --enable-liba52) _liba52=yes ;;
977 --disable-liba52) _liba52=no ;;
978 --enable-libdca) _libdca=yes ;;
979 --disable-libdca) _libdca=no ;;
980 --enable-libmpeg2) _libmpeg2=yes ;;
981 --disable-libmpeg2) _libmpeg2=no ;;
982 --enable-musepack) _musepack=yes ;;
983 --disable-musepack) _musepack=no ;;
984 --enable-faad) _faad=yes ;;
985 --disable-faad) _faad=no ;;
986 --enable-faad-internal) _faad_internal=yes ;;
987 --disable-faad-internal) _faad_internal=no ;;
988 --enable-faad-fixed) _faad_fixed=yes ;;
989 --disable-faad-fixed) _faad_fixed=no ;;
990 --enable-faac) _faac=yes ;;
991 --disable-faac) _faac=no ;;
992 --enable-ladspa) _ladspa=yes ;;
993 --disable-ladspa) _ladspa=no ;;
994 --enable-libbs2b) _libbs2b=yes ;;
995 --disable-libbs2b) _libbs2b=no ;;
996 --enable-xmms) _xmms=yes ;;
997 --disable-xmms) _xmms=no ;;
998 --enable-vcd) _vcd=yes ;;
999 --disable-vcd) _vcd=no ;;
1000 --enable-dvdread) _dvdread=yes ;;
1001 --disable-dvdread) _dvdread=no ;;
1002 --enable-dvdread-internal) _dvdread_internal=yes ;;
1003 --disable-dvdread-internal) _dvdread_internal=no ;;
1004 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
1005 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
1006 --enable-dvdnav) _dvdnav=yes ;;
1007 --disable-dvdnav) _dvdnav=no ;;
1008 --enable-xanim) _xanim=yes ;;
1009 --disable-xanim) _xanim=no ;;
1010 --enable-real) _real=yes ;;
1011 --disable-real) _real=no ;;
1012 --enable-live) _live=yes ;;
1013 --disable-live) _live=no ;;
1014 --enable-nemesi) _nemesi=yes ;;
1015 --disable-nemesi) _nemesi=no ;;
1016 --enable-xinerama) _xinerama=yes ;;
1017 --disable-xinerama) _xinerama=no ;;
1018 --enable-mga) _mga=yes ;;
1019 --disable-mga) _mga=no ;;
1020 --enable-xmga) _xmga=yes ;;
1021 --disable-xmga) _xmga=no ;;
1022 --enable-vm) _vm=yes ;;
1023 --disable-vm) _vm=no ;;
1024 --enable-xf86keysym) _xf86keysym=yes ;;
1025 --disable-xf86keysym) _xf86keysym=no ;;
1026 --enable-mlib) _mlib=yes ;;
1027 --disable-mlib) _mlib=no ;;
1028 --enable-sunaudio) _sunaudio=yes ;;
1029 --disable-sunaudio) _sunaudio=no ;;
1030 --enable-sgiaudio) _sgiaudio=yes ;;
1031 --disable-sgiaudio) _sgiaudio=no ;;
1032 --enable-alsa) _alsa=yes ;;
1033 --disable-alsa) _alsa=no ;;
1034 --enable-tv) _tv=yes ;;
1035 --disable-tv) _tv=no ;;
1036 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1037 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1038 --enable-tv-v4l1) _tv_v4l1=yes ;;
1039 --disable-tv-v4l1) _tv_v4l1=no ;;
1040 --enable-tv-v4l2) _tv_v4l2=yes ;;
1041 --disable-tv-v4l2) _tv_v4l2=no ;;
1042 --enable-tv-dshow) _tv_dshow=yes ;;
1043 --disable-tv-dshow) _tv_dshow=no ;;
1044 --enable-radio) _radio=yes ;;
1045 --enable-radio-capture) _radio_capture=yes ;;
1046 --disable-radio-capture) _radio_capture=no ;;
1047 --disable-radio) _radio=no ;;
1048 --enable-radio-v4l) _radio_v4l=yes ;;
1049 --disable-radio-v4l) _radio_v4l=no ;;
1050 --enable-radio-v4l2) _radio_v4l2=yes ;;
1051 --disable-radio-v4l2) _radio_v4l2=no ;;
1052 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1053 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1054 --enable-pvr) _pvr=yes ;;
1055 --disable-pvr) _pvr=no ;;
1056 --enable-fastmemcpy) _fastmemcpy=yes ;;
1057 --disable-fastmemcpy) _fastmemcpy=no ;;
1058 --enable-network) _network=yes ;;
1059 --disable-network) _network=no ;;
1060 --enable-winsock2_h) _winsock2_h=yes ;;
1061 --disable-winsock2_h) _winsock2_h=no ;;
1062 --enable-smb) _smb=yes ;;
1063 --disable-smb) _smb=no ;;
1064 --enable-vidix) _vidix=yes ;;
1065 --disable-vidix) _vidix=no ;;
1066 --with-vidix-drivers=*)
1067 _vidix_drivers=$(echo $ac_option | cut -d '=' -f 2)
1069 --disable-vidix-pcidb) _vidix_pcidb=no ;;
1070 --enable-dhahelper) _dhahelper=yes ;;
1071 --disable-dhahelper) _dhahelper=no ;;
1072 --enable-svgalib_helper) _svgalib_helper=yes ;;
1073 --disable-svgalib_helper) _svgalib_helper=no ;;
1074 --enable-joystick) _joystick=yes ;;
1075 --disable-joystick) _joystick=no ;;
1076 --enable-xvid) _xvid=yes ;;
1077 --disable-xvid) _xvid=no ;;
1078 --enable-x264) _x264=yes ;;
1079 --disable-x264) _x264=no ;;
1080 --enable-libnut) _libnut=yes ;;
1081 --disable-libnut) _libnut=no ;;
1082 --enable-libavutil) _libavutil=yes ;;
1083 --disable-libavutil) _libavutil=no ;;
1084 --enable-libavcodec) _libavcodec=yes ;;
1085 --disable-libavcodec) _libavcodec=no ;;
1086 --enable-libavformat) _libavformat=yes ;;
1087 --disable-libavformat) _libavformat=no ;;
1088 --enable-libpostproc) _libpostproc=yes ;;
1089 --disable-libpostproc) _libpostproc=no ;;
1090 --enable-libswscale) _libswscale=yes ;;
1091 --disable-libswscale) _libswscale=no ;;
1092 --ffmpeg-source-dir=*)
1093 _ffmpeg_source=$(echo $ac_option | cut -d '=' -f 2 ) ;;
1095 --enable-lirc) _lirc=yes ;;
1096 --disable-lirc) _lirc=no ;;
1097 --enable-lircc) _lircc=yes ;;
1098 --disable-lircc) _lircc=no ;;
1099 --enable-apple-remote) _apple_remote=yes ;;
1100 --disable-apple-remote) _apple_remote=no ;;
1101 --enable-apple-ir) _apple_ir=yes ;;
1102 --disable-apple-ir) _apple_ir=no ;;
1103 --enable-gui) _gui=yes ;;
1104 --disable-gui) _gui=no ;;
1105 --enable-gtk1) _gtk1=yes ;;
1106 --disable-gtk1) _gtk1=no ;;
1107 --enable-termcap) _termcap=yes ;;
1108 --disable-termcap) _termcap=no ;;
1109 --enable-termios) _termios=yes ;;
1110 --disable-termios) _termios=no ;;
1111 --enable-3dfx) _3dfx=yes ;;
1112 --disable-3dfx) _3dfx=no ;;
1113 --enable-s3fb) _s3fb=yes ;;
1114 --disable-s3fb) _s3fb=no ;;
1115 --enable-wii) _wii=yes ;;
1116 --disable-wii) _wii=no ;;
1117 --enable-tdfxfb) _tdfxfb=yes ;;
1118 --disable-tdfxfb) _tdfxfb=no ;;
1119 --disable-tdfxvid) _tdfxvid=no ;;
1120 --enable-tdfxvid) _tdfxvid=yes ;;
1121 --disable-xvr100) _xvr100=no ;;
1122 --enable-xvr100) _xvr100=yes ;;
1123 --disable-tga) _tga=no ;;
1124 --enable-tga) _tga=yes ;;
1125 --enable-directfb) _directfb=yes ;;
1126 --disable-directfb) _directfb=no ;;
1127 --enable-zr) _zr=yes ;;
1128 --disable-zr) _zr=no ;;
1129 --enable-bl) _bl=yes ;;
1130 --disable-bl) _bl=no ;;
1131 --enable-glamo) _glamo=yes ;;
1132 --disable-glamo) _glamo=no ;;
1133 --enable-mtrr) _mtrr=yes ;;
1134 --disable-mtrr) _mtrr=no ;;
1135 --enable-largefiles) _largefiles=yes ;;
1136 --disable-largefiles) _largefiles=no ;;
1137 --enable-shm) _shm=yes ;;
1138 --disable-shm) _shm=no ;;
1139 --enable-select) _select=yes ;;
1140 --disable-select) _select=no ;;
1141 --enable-linux-devfs) _linux_devfs=yes ;;
1142 --disable-linux-devfs) _linux_devfs=no ;;
1143 --enable-cdparanoia) _cdparanoia=yes ;;
1144 --disable-cdparanoia) _cdparanoia=no ;;
1145 --enable-cddb) _cddb=yes ;;
1146 --disable-cddb) _cddb=no ;;
1147 --enable-big-endian) _big_endian=yes ;;
1148 --disable-big-endian) _big_endian=no ;;
1149 --enable-bitmap-font) _bitmap_font=yes ;;
1150 --disable-bitmap-font) _bitmap_font=no ;;
1151 --enable-freetype) _freetype=yes ;;
1152 --disable-freetype) _freetype=no ;;
1153 --enable-fontconfig) _fontconfig=yes ;;
1154 --disable-fontconfig) _fontconfig=no ;;
1155 --enable-unrarexec) _unrar_exec=yes ;;
1156 --disable-unrarexec) _unrar_exec=no ;;
1157 --enable-ftp) _ftp=yes ;;
1158 --disable-ftp) _ftp=no ;;
1159 --enable-vstream) _vstream=yes ;;
1160 --disable-vstream) _vstream=no ;;
1161 --enable-pthreads) _pthreads=yes ;;
1162 --disable-pthreads) _pthreads=no ;;
1163 --enable-w32threads) _w32threads=yes ;;
1164 --disable-w32threads) _w32threads=no ;;
1165 --enable-ass) _ass=yes ;;
1166 --disable-ass) _ass=no ;;
1167 --enable-rpath) _rpath=yes ;;
1168 --disable-rpath) _rpath=no ;;
1170 --enable-fribidi) _fribidi=yes ;;
1171 --disable-fribidi) _fribidi=no ;;
1173 --enable-enca) _enca=yes ;;
1174 --disable-enca) _enca=no ;;
1176 --enable-inet6) _inet6=yes ;;
1177 --disable-inet6) _inet6=no ;;
1179 --enable-gethostbyname2) _gethostbyname2=yes ;;
1180 --disable-gethostbyname2) _gethostbyname2=no ;;
1182 --enable-dga1) _dga1=yes ;;
1183 --disable-dga1) _dga1=no ;;
1184 --enable-dga2) _dga2=yes ;;
1185 --disable-dga2) _dga2=no ;;
1187 --enable-menu) _menu=yes ;;
1188 --disable-menu) _menu=no ;;
1190 --enable-qtx) _qtx=yes ;;
1191 --disable-qtx) _qtx=no ;;
1193 --enable-coreaudio) _coreaudio=yes ;;
1194 --disable-coreaudio) _coreaudio=no ;;
1195 --enable-corevideo) _corevideo=yes ;;
1196 --disable-corevideo) _corevideo=no ;;
1197 --enable-quartz) _quartz=yes ;;
1198 --disable-quartz) _quartz=no ;;
1199 --enable-macosx-finder) _macosx_finder=yes ;;
1200 --disable-macosx-finder) _macosx_finder=no ;;
1201 --enable-macosx-bundle) _macosx_bundle=yes ;;
1202 --disable-macosx-bundle) _macosx_bundle=no ;;
1204 --enable-maemo) _maemo=yes ;;
1205 --disable-maemo) _maemo=no ;;
1207 --enable-sortsub) _sortsub=yes ;;
1208 --disable-sortsub) _sortsub=no ;;
1210 --enable-crash-debug) _crash_debug=yes ;;
1211 --disable-crash-debug) _crash_debug=no ;;
1212 --enable-sighandler) _sighandler=yes ;;
1213 --disable-sighandler) _sighandler=no ;;
1214 --enable-win32dll) _win32dll=yes ;;
1215 --disable-win32dll) _win32dll=no ;;
1217 --enable-sse) _sse=yes ;;
1218 --disable-sse) _sse=no ;;
1219 --enable-sse2) _sse2=yes ;;
1220 --disable-sse2) _sse2=no ;;
1221 --enable-ssse3) _ssse3=yes ;;
1222 --disable-ssse3) _ssse3=no ;;
1223 --enable-mmxext) _mmxext=yes ;;
1224 --disable-mmxext) _mmxext=no ;;
1225 --enable-3dnow) _3dnow=yes ;;
1226 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1227 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1228 --disable-3dnowext) _3dnowext=no ;;
1229 --enable-cmov) _cmov=yes ;;
1230 --disable-cmov) _cmov=no ;;
1231 --enable-fast-cmov) _fast_cmov=yes ;;
1232 --disable-fast-cmov) _fast_cmov=no ;;
1233 --enable-fast-clz) _fast_clz=yes ;;
1234 --disable-fast-clz) _fast_clz=no ;;
1235 --enable-altivec) _altivec=yes ;;
1236 --disable-altivec) _altivec=no ;;
1237 --enable-armv5te) _armv5te=yes ;;
1238 --disable-armv5te) _armv5te=no ;;
1239 --enable-armv6) _armv6=yes ;;
1240 --disable-armv6) _armv6=no ;;
1241 --enable-armv6t2) _armv6t2=yes ;;
1242 --disable-armv6t2) _armv6t2=no ;;
1243 --enable-armvfp) _armvfp=yes ;;
1244 --disable-armvfp) _armvfp=no ;;
1245 --enable-neon) neon=yes ;;
1246 --disable-neon) neon=no ;;
1247 --enable-iwmmxt) _iwmmxt=yes ;;
1248 --disable-iwmmxt) _iwmmxt=no ;;
1249 --enable-mmx) _mmx=yes ;;
1250 --disable-mmx) # 3Dnow! and MMX2 require MMX
1251 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1254 echo "Unknown parameter: $ac_option"
1255 exit 1
1258 esac
1259 done
1261 if test "$_gui" = yes ; then
1262 die "Internal GUI was removed from MPlayer. Please use one of many available\n frontends\
1263 (http://www.mplayerhq.hu/design7/projects.html#mplayer_frontends)."
1266 # Atmos: moved this here, to be correct, if --prefix is specified
1267 test -z "$_bindir" && _bindir="$_prefix/bin"
1268 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1269 test -z "$_mandir" && _mandir="$_prefix/share/man"
1270 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1271 test -z "$_libdir" && _libdir="$_prefix/lib"
1272 test -z "$_localedir" && _localedir="$_prefix/share/locale"
1274 # Determine our OS name and CPU architecture
1275 if test -z "$_target" ; then
1276 # OS name
1277 system_name=$(uname -s 2>&1)
1278 case "$system_name" in
1279 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1281 Haiku)
1282 system_name=BeOS
1284 IRIX*)
1285 system_name=IRIX
1287 GNU/kFreeBSD)
1288 system_name=FreeBSD
1290 HP-UX*)
1291 system_name=HP-UX
1293 [cC][yY][gG][wW][iI][nN]*)
1294 system_name=CYGWIN
1296 MINGW32*)
1297 system_name=MINGW32
1299 OS/2*)
1300 system_name=OS/2
1303 system_name="$system_name-UNKNOWN"
1305 esac
1308 # host's CPU/instruction set
1309 host_arch=$(uname -p 2>&1)
1310 case "$host_arch" in
1311 i386|sparc|ppc|alpha|arm|mips|vax)
1313 powerpc) # Darwin returns 'powerpc'
1314 host_arch=ppc
1316 *) # uname -p on Linux returns 'unknown' for the processor type,
1317 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1319 # Maybe uname -m (machine hardware name) returns something we
1320 # recognize.
1322 # x86/x86pc is used by QNX
1323 case "$(uname -m 2>&1)" in
1324 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 ;;
1325 ia64) host_arch=ia64 ;;
1326 macppc|ppc) host_arch=ppc ;;
1327 ppc64) host_arch=ppc64 ;;
1328 alpha) host_arch=alpha ;;
1329 sparc) host_arch=sparc ;;
1330 sparc64) host_arch=sparc64 ;;
1331 parisc*|hppa*|9000*) host_arch=hppa ;;
1332 arm*|zaurus|cats) host_arch=arm ;;
1333 sh3|sh4|sh4a) host_arch=sh ;;
1334 s390) host_arch=s390 ;;
1335 s390x) host_arch=s390x ;;
1336 *mips*) host_arch=mips ;;
1337 vax) host_arch=vax ;;
1338 xtensa*) host_arch=xtensa ;;
1339 *) host_arch=UNKNOWN ;;
1340 esac
1342 esac
1343 else # if test -z "$_target"
1344 system_name=$(echo $_target | cut -d '-' -f 2)
1345 case "$(echo $system_name | tr A-Z a-z)" in
1346 linux) system_name=Linux ;;
1347 freebsd) system_name=FreeBSD ;;
1348 gnu/kfreebsd) system_name=FreeBSD ;;
1349 netbsd) system_name=NetBSD ;;
1350 bsd/os) system_name=BSD/OS ;;
1351 openbsd) system_name=OpenBSD ;;
1352 dragonfly) system_name=DragonFly ;;
1353 sunos) system_name=SunOS ;;
1354 qnx) system_name=QNX ;;
1355 morphos) system_name=MorphOS ;;
1356 amigaos) system_name=AmigaOS ;;
1357 mingw32*) system_name=MINGW32 ;;
1358 esac
1359 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1360 host_arch=$(echo $_target | cut -d '-' -f 1)
1361 if test $(echo $host_arch) != "x86_64" ; then
1362 host_arch=$(echo $host_arch | tr '_' '-')
1366 extra_cflags="-I. $extra_cflags"
1367 _timer=timer-linux.c
1368 _getch=getch2.c
1369 if freebsd ; then
1370 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1371 extra_cflags="$extra_cflags -I/usr/local/include"
1374 if netbsd || dragonfly ; then
1375 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1376 extra_cflags="$extra_cflags -I/usr/pkg/include"
1379 if darwin; then
1380 extra_cflags="-mdynamic-no-pic -falign-loops=16 -shared-libgcc $extra_cflags"
1381 _timer=timer-darwin.c
1384 if aix ; then
1385 extra_ldflags="$extra_ldflags -lC"
1388 if irix ; then
1389 _ranlib='ar -r'
1390 elif linux ; then
1391 _ranlib='true'
1394 if win32 ; then
1395 _exesuf=".exe"
1396 extra_cflags="$extra_cflags -fno-common"
1397 # -lwinmm is always needed for osdep/timer-win2.c
1398 extra_ldflags="$extra_ldflags -lwinmm"
1399 _pe_executable=yes
1400 _timer=timer-win2.c
1401 _priority=yes
1402 def_dos_paths="#define HAVE_DOS_PATHS 1"
1403 def_priority="#define CONFIG_PRIORITY 1"
1406 if mingw32 ; then
1407 _getch=getch2-win.c
1408 _need_shmem=no
1411 if amigaos ; then
1412 _select=no
1413 _sighandler=no
1414 _stream_cache=no
1415 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1416 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1419 if qnx ; then
1420 extra_ldflags="$extra_ldflags -lph"
1423 if os2 ; then
1424 _exesuf=".exe"
1425 _getch=getch2-os2.c
1426 _need_shmem=no
1427 _priority=yes
1428 def_dos_paths="#define HAVE_DOS_PATHS 1"
1429 def_priority="#define CONFIG_PRIORITY 1"
1432 for I in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1433 test "$I" && break
1434 done
1437 TMPLOG="configure.log"
1438 TMPC="$I/mplayer-conf-$RANDOM-$$.c"
1439 TMPCPP="$I/mplayer-conf-$RANDOM-$$.cpp"
1440 TMPEXE="$I/mplayer-conf-$RANDOM-$$$_exesuf"
1441 TMPH="$I/mplayer-conf-$RANDOM-$$.h"
1442 TMPS="$I/mplayer-conf-$RANDOM-$$.S"
1444 rm -f "$TMPLOG"
1445 echo configuration: $_configuration > "$TMPLOG"
1446 echo >> "$TMPLOG"
1449 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1450 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1454 # Checking CC version...
1455 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1456 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1457 echocheck "$_cc version"
1458 cc_vendor=intel
1459 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1460 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1461 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1462 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1463 # TODO verify older icc/ecc compatibility
1464 case $cc_version in
1466 cc_version="v. ?.??, bad"
1467 cc_fail=yes
1469 10.1|11.0|11.1)
1470 cc_version="$cc_version, ok"
1473 cc_version="$cc_version, bad"
1474 cc_fail=yes
1476 esac
1477 echores "$cc_version"
1478 else
1479 for _cc in "$_cc" gcc cc ; do
1480 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1481 if test "$cc_name_tmp" = "gcc"; then
1482 cc_name=$cc_name_tmp
1483 echocheck "$_cc version"
1484 cc_vendor=gnu
1485 cc_version=$($_cc -dumpversion 2>&1)
1486 case $cc_version in
1487 2.96*)
1488 cc_fail=yes
1491 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1492 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1493 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1495 esac
1496 echores "$cc_version"
1497 break
1499 cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
1500 if test "$cc_name_tmp" = "Sun C"; then
1501 echocheck "$_cc version"
1502 cc_vendor=sun
1503 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 4)
1504 _res_comment="experimental support only"
1505 echores "Sun C $cc_version"
1506 break
1508 done
1509 fi # icc
1510 test "$cc_fail" = yes && die "unsupported compiler version"
1512 if test -z "$_target" && x86 ; then
1513 cat > $TMPC << EOF
1514 int main(void) {
1515 int test[(int)sizeof(char *)-7];
1516 return 0;
1519 cc_check && host_arch=x86_64 || host_arch=i386
1522 echo "Detected operating system: $system_name"
1523 echo "Detected host architecture: $host_arch"
1525 echocheck "host cc"
1526 test "$_host_cc" || _host_cc=$_cc
1527 echores $_host_cc
1529 echocheck "cross compilation"
1530 if test $_cross_compile = auto ; then
1531 cat > $TMPC << EOF
1532 int main(void) { return 0; }
1534 _cross_compile=yes
1535 cc_check && "$TMPEXE" && _cross_compile=no
1537 echores $_cross_compile
1539 if test $_cross_compile = yes; then
1540 tmp_run() {
1541 return 0
1545 # ---
1547 # now that we know what compiler should be used for compilation, try to find
1548 # out which assembler is used by the $_cc compiler
1549 if test "$_as" = auto ; then
1550 _as=$($_cc -print-prog-name=as)
1551 test -z "$_as" && _as=as
1554 if test "$_nm" = auto ; then
1555 _nm=$($_cc -print-prog-name=nm)
1556 test -z "$_nm" && _nm=nm
1559 # XXX: this should be ok..
1560 _cpuinfo="echo"
1562 if test "$_runtime_cpudetection" = no ; then
1564 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1565 # FIXME: Remove the cygwin check once AMD CPUs are supported
1566 if test -r /proc/cpuinfo && ! cygwin; then
1567 # Linux with /proc mounted, extract CPU information from it
1568 _cpuinfo="cat /proc/cpuinfo"
1569 elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
1570 # FreeBSD with Linux emulation /proc mounted,
1571 # extract CPU information from it
1572 # Don't use it on x86 though, it never reports 3Dnow
1573 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1574 elif darwin && ! x86 ; then
1575 # use hostinfo on Darwin
1576 _cpuinfo="hostinfo"
1577 elif aix; then
1578 # use 'lsattr' on AIX
1579 _cpuinfo="lsattr -E -l proc0 -a type"
1580 elif x86; then
1581 # all other OSes try to extract CPU information from a small helper
1582 # program cpuinfo instead
1583 $_cc -o cpuinfo$_exesuf cpuinfo.c
1584 _cpuinfo="./cpuinfo$_exesuf"
1587 if x86 ; then
1588 # gather more CPU information
1589 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1590 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1591 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1592 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1593 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1595 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1597 pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1598 -e s/xmm/sse/ -e s/kni/sse/)
1600 for ext in $pparam ; do
1601 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1602 done
1604 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1605 test $_sse = kernel_check && _mmxext=kernel_check
1607 echocheck "CPU vendor"
1608 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1610 echocheck "CPU type"
1611 echores "$pname"
1614 fi # test "$_runtime_cpudetection" = no
1616 if x86 && test "$_runtime_cpudetection" = no ; then
1617 extcheck() {
1618 if test "$1" = kernel_check ; then
1619 echocheck "kernel support of $2"
1620 cat > $TMPC <<EOF
1621 #include <stdlib.h>
1622 #include <signal.h>
1623 void catch() { exit(1); }
1624 int main(void) {
1625 signal(SIGILL, catch);
1626 __asm__ volatile ("$3":::"memory"); return 0;
1630 if cc_check && tmp_run ; then
1631 eval _$2=yes
1632 echores "yes"
1633 _optimizing="$_optimizing $2"
1634 return 0
1635 else
1636 eval _$2=no
1637 echores "failed"
1638 echo "It seems that your kernel does not correctly support $2."
1639 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1640 return 1
1643 return 0
1646 extcheck $_mmx "mmx" "emms"
1647 extcheck $_mmxext "mmxext" "sfence"
1648 extcheck $_3dnow "3dnow" "femms"
1649 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1650 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1651 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1652 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1653 extcheck $_cmov "cmov" "cmovb %%eax,%%ebx"
1655 echocheck "mtrr support"
1656 if test "$_mtrr" = kernel_check ; then
1657 _mtrr="yes"
1658 _optimizing="$_optimizing mtrr"
1660 echores "$_mtrr"
1662 if test "$_gcc3_ext" != ""; then
1663 # if we had to disable sse/sse2 because the active kernel does not
1664 # support this instruction set extension, we also have to tell
1665 # gcc3 to not generate sse/sse2 instructions for normal C code
1666 cat > $TMPC << EOF
1667 int main(void) { return 0; }
1669 cc_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1675 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1676 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1677 arch_all='X86 IA64 SPARC ARM AVR32 SH4 PPC ALPHA MIPS PA_RISC S390 S390X VAX BFIN XTENSA TOMI GENERIC'
1678 subarch_all='X86_32 X86_64 PPC64'
1679 case "$host_arch" in
1680 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1681 arch='x86'
1682 subarch='x86_32'
1683 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1684 iproc=486
1685 proc=i486
1688 if test "$_runtime_cpudetection" = no ; then
1689 case "$pvendor" in
1690 AuthenticAMD)
1691 case "$pfamily" in
1692 3) proc=i386 iproc=386 ;;
1693 4) proc=i486 iproc=486 ;;
1694 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1695 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1696 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1697 proc=k6-3
1698 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1699 proc=geode
1700 elif test "$pmodel" -ge 8; then
1701 proc=k6-2
1702 elif test "$pmodel" -ge 6; then
1703 proc=k6
1704 else
1705 proc=i586
1708 6) iproc=686
1709 # It's a bit difficult to determine the correct type of Family 6
1710 # AMD CPUs just from their signature. Instead, we check directly
1711 # whether it supports SSE.
1712 if test "$_sse" = yes; then
1713 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1714 proc=athlon-xp
1715 else
1716 # Again, gcc treats athlon and athlon-tbird similarly.
1717 proc=athlon
1720 15) iproc=686
1721 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1722 # caught and remedied in the optimization tests below.
1723 proc=k8
1726 *) proc=amdfam10 iproc=686
1727 test $_fast_clz = "auto" && _fast_clz=yes
1729 esac
1731 GenuineIntel)
1732 case "$pfamily" in
1733 3) proc=i386 iproc=386 ;;
1734 4) proc=i486 iproc=486 ;;
1735 5) iproc=586
1736 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1737 proc=pentium-mmx # 4 is desktop, 8 is mobile
1738 else
1739 proc=i586
1742 6) iproc=686
1743 if test "$pmodel" -ge 15; then
1744 proc=core2
1745 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1746 proc=pentium-m
1747 elif test "$pmodel" -ge 7; then
1748 proc=pentium3
1749 elif test "$pmodel" -ge 3; then
1750 proc=pentium2
1751 else
1752 proc=i686
1754 test $_fast_clz = "auto" && _fast_clz=yes
1756 15) iproc=686
1757 # A nocona in 32-bit mode has no more capabilities than a prescott.
1758 if test "$pmodel" -ge 3; then
1759 proc=prescott
1760 else
1761 proc=pentium4
1762 test $_fast_clz = "auto" && _fast_clz=yes
1764 test $_fast_cmov = "auto" && _fast_cmov=no
1766 *) proc=prescott iproc=686 ;;
1767 esac
1769 CentaurHauls)
1770 case "$pfamily" in
1771 5) iproc=586
1772 if test "$pmodel" -ge 8; then
1773 proc=winchip2
1774 elif test "$pmodel" -ge 4; then
1775 proc=winchip-c6
1776 else
1777 proc=i586
1780 6) iproc=686
1781 if test "$pmodel" -ge 9; then
1782 proc=c3-2
1783 else
1784 proc=c3
1785 iproc=586
1788 *) proc=i686 iproc=i686 ;;
1789 esac
1791 unknown)
1792 case "$pfamily" in
1793 3) proc=i386 iproc=386 ;;
1794 4) proc=i486 iproc=486 ;;
1795 *) proc=i586 iproc=586 ;;
1796 esac
1799 proc=i586 iproc=586 ;;
1800 esac
1801 test $_fast_clz = "auto" && _fast_clz=no
1802 fi # test "$_runtime_cpudetection" = no
1805 # check that gcc supports our CPU, if not, fall back to earlier ones
1806 # LGB: check -mcpu and -march swithing step by step with enabling
1807 # to fall back till 386.
1809 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1811 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1812 cpuopt=-mtune
1813 else
1814 cpuopt=-mcpu
1817 echocheck "GCC & CPU optimization abilities"
1818 cat > $TMPC << EOF
1819 int main(void) { return 0; }
1821 if test "$_runtime_cpudetection" = no ; then
1822 if test $cc_vendor != "intel" ; then
1823 cc_check -march=native && proc=native
1825 if test "$proc" = "k8"; then
1826 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1828 if test "$proc" = "athlon-xp"; then
1829 cc_check -march=$proc $cpuopt=$proc || proc=athlon
1831 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1832 cc_check -march=$proc $cpuopt=$proc || proc=k6
1834 if test "$proc" = "k6" || test "$proc" = "c3"; then
1835 if ! cc_check -march=$proc $cpuopt=$proc; then
1836 if cc_check -march=i586 $cpuopt=i686; then
1837 proc=i586-i686
1838 else
1839 proc=i586
1843 if test "$proc" = "prescott" ; then
1844 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
1846 if test "$proc" = "core2" ; then
1847 cc_check -march=$proc $cpuopt=$proc || proc=pentium-m
1849 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
1850 cc_check -march=$proc $cpuopt=$proc || proc=i686
1852 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1853 cc_check -march=$proc $cpuopt=$proc || proc=i586
1855 if test "$proc" = "i586"; then
1856 cc_check -march=$proc $cpuopt=$proc || proc=i486
1858 if test "$proc" = "i486" ; then
1859 cc_check -march=$proc $cpuopt=$proc || proc=i386
1861 if test "$proc" = "i386" ; then
1862 cc_check -march=$proc $cpuopt=$proc || proc=error
1864 if test "$proc" = "error" ; then
1865 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1866 _mcpu=""
1867 _march=""
1868 _optimizing=""
1869 elif test "$proc" = "i586-i686"; then
1870 _march="-march=i586"
1871 _mcpu="$cpuopt=i686"
1872 _optimizing="$proc"
1873 else
1874 _march="-march=$proc"
1875 _mcpu="$cpuopt=$proc"
1876 _optimizing="$proc"
1878 else # if test "$_runtime_cpudetection" = no
1879 _mcpu="$cpuopt=generic"
1880 # at least i486 required, for bswap instruction
1881 _march="-march=i486"
1882 cc_check $_mcpu || _mcpu="$cpuopt=i686"
1883 cc_check $_mcpu || _mcpu=""
1884 cc_check $_march $_mcpu || _march=""
1887 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1888 ## autodetected mcpu/march parameters
1889 if test "$_target" ; then
1890 # TODO: it may be a good idea to check GCC and fall back in all cases
1891 if test "$host_arch" = "i586-i686"; then
1892 _march="-march=i586"
1893 _mcpu="$cpuopt=i686"
1894 else
1895 _march="-march=$host_arch"
1896 _mcpu="$cpuopt=$host_arch"
1899 proc="$host_arch"
1901 case "$proc" in
1902 i386) iproc=386 ;;
1903 i486) iproc=486 ;;
1904 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1905 i686|athlon*|pentium*) iproc=686 ;;
1906 *) iproc=586 ;;
1907 esac
1910 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1911 _fast_cmov="yes"
1912 else
1913 _fast_cmov="no"
1915 test $_fast_clz = "auto" && _fast_clz=yes
1917 echores "$proc"
1920 ia64)
1921 arch='ia64'
1922 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1923 iproc='ia64'
1926 x86_64|amd64)
1927 arch='x86'
1928 subarch='x86_64'
1929 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1930 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1931 iproc='x86_64'
1933 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1934 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1935 cpuopt=-mtune
1936 else
1937 cpuopt=-mcpu
1939 if test "$_runtime_cpudetection" = no ; then
1940 case "$pvendor" in
1941 AuthenticAMD)
1942 case "$pfamily" in
1943 15) proc=k8
1944 test $_fast_clz = "auto" && _fast_clz=no
1946 *) proc=amdfam10;;
1947 esac
1949 GenuineIntel)
1950 case "$pfamily" in
1951 6) proc=core2;;
1953 # 64-bit prescotts exist, but as far as GCC is concerned they
1954 # have the same capabilities as a nocona.
1955 proc=nocona
1956 test $_fast_cmov = "auto" && _fast_cmov=no
1957 test $_fast_clz = "auto" && _fast_clz=no
1959 esac
1962 proc=error;;
1963 esac
1964 fi # test "$_runtime_cpudetection" = no
1966 echocheck "GCC & CPU optimization abilities"
1967 cat > $TMPC << EOF
1968 int main(void) { return 0; }
1970 # This is a stripped-down version of the i386 fallback.
1971 if test "$_runtime_cpudetection" = no ; then
1972 if test $cc_vendor != "intel" ; then
1973 cc_check -march=native && proc=native
1975 # --- AMD processors ---
1976 if test "$proc" = "k8"; then
1977 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1979 # This will fail if gcc version < 3.3, which is ok because earlier
1980 # versions don't really support 64-bit on amd64.
1981 # Is this a valid assumption? -Corey
1982 if test "$proc" = "athlon-xp"; then
1983 cc_check -march=$proc $cpuopt=$proc || proc=error
1985 # --- Intel processors ---
1986 if test "$proc" = "core2"; then
1987 cc_check -march=$proc $cpuopt=$proc || proc=x86-64
1989 if test "$proc" = "x86-64"; then
1990 cc_check -march=$proc $cpuopt=$proc || proc=nocona
1992 if test "$proc" = "nocona"; then
1993 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
1995 if test "$proc" = "pentium4"; then
1996 cc_check -march=$proc $cpuopt=$proc || proc=error
1999 _march="-march=$proc"
2000 _mcpu="$cpuopt=$proc"
2001 if test "$proc" = "error" ; then
2002 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
2003 _mcpu=""
2004 _march=""
2006 else # if test "$_runtime_cpudetection" = no
2007 # x86-64 is an undocumented option, an intersection of k8 and nocona.
2008 _march="-march=x86-64"
2009 _mcpu="$cpuopt=generic"
2010 cc_check $_mcpu || _mcpu="x86-64"
2011 cc_check $_mcpu || _mcpu=""
2012 cc_check $_march $_mcpu || _march=""
2015 _optimizing="$proc"
2016 test $_fast_cmov = "auto" && _fast_cmov=yes
2017 test $_fast_clz = "auto" && _fast_clz=yes
2019 echores "$proc"
2022 sparc|sparc64)
2023 arch='sparc'
2024 iproc='sparc'
2025 if test "$host_arch" = "sparc64" ; then
2026 _vis='yes'
2027 proc='ultrasparc'
2028 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2029 elif sunos ; then
2030 echocheck "CPU type"
2031 karch=$(uname -m)
2032 case "$(echo $karch)" in
2033 sun4) proc=v7 ;;
2034 sun4c) proc=v7 ;;
2035 sun4d) proc=v8 ;;
2036 sun4m) proc=v8 ;;
2037 sun4u) proc=ultrasparc _vis='yes' ;;
2038 sun4v) proc=v9 ;;
2039 *) proc=v8 ;;
2040 esac
2041 echores "$proc"
2042 else
2043 proc=v8
2045 _mcpu="-mcpu=$proc"
2046 _optimizing="$proc"
2049 arm*)
2050 arch='arm'
2051 iproc='arm'
2054 avr32)
2055 arch='avr32'
2056 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2057 iproc='avr32'
2058 test $_fast_clz = "auto" && _fast_clz=yes
2061 sh|sh4)
2062 arch='sh4'
2063 iproc='sh4'
2066 ppc|ppc64|powerpc|powerpc64)
2067 arch='ppc'
2068 def_dcbzl='#define HAVE_DCBZL 0'
2069 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2070 iproc='ppc'
2072 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2073 subarch='ppc64'
2074 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2076 echocheck "CPU type"
2077 case $system_name in
2078 Linux)
2079 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2080 if test -n "$($_cpuinfo | grep altivec)"; then
2081 test $_altivec = auto && _altivec=yes
2084 Darwin)
2085 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2086 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2087 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2088 test $_altivec = auto && _altivec=yes
2091 NetBSD)
2092 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2093 case $cc_version in
2094 2*|3.0*|3.1*|3.2*|3.3*)
2097 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2098 test $_altivec = auto && _altivec=yes
2101 esac
2103 AIX)
2104 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2106 esac
2107 if test "$_altivec" = yes; then
2108 echores "$proc altivec"
2109 else
2110 _altivec=no
2111 echores "$proc"
2114 echocheck "GCC & CPU optimization abilities"
2116 if test -n "$proc"; then
2117 case "$proc" in
2118 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2119 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2120 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2121 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2122 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2123 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2124 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2125 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2126 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2127 *) ;;
2128 esac
2129 # gcc 3.1(.1) and up supports 7400 and 7450
2130 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2131 case "$proc" in
2132 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2133 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2134 *) ;;
2135 esac
2137 # gcc 3.2 and up supports 970
2138 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2139 case "$proc" in
2140 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2141 def_dcbzl='#define HAVE_DCBZL 1' ;;
2142 *) ;;
2143 esac
2145 # gcc 3.3 and up supports POWER4
2146 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2147 case "$proc" in
2148 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2149 *) ;;
2150 esac
2152 # gcc 3.4 and up supports 440*
2153 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2154 case "$proc" in
2155 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2156 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2157 *) ;;
2158 esac
2160 # gcc 4.0 and up supports POWER5
2161 if test "$_cc_major" -ge "4"; then
2162 case "$proc" in
2163 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2164 *) ;;
2165 esac
2169 if test -n "$_mcpu"; then
2170 _optimizing=$(echo $_mcpu | cut -c 8-)
2171 echores "$_optimizing"
2172 else
2173 echores "none"
2176 test $_fast_clz = "auto" && _fast_clz=yes
2180 alpha*)
2181 arch='alpha'
2182 iproc='alpha'
2183 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2185 echocheck "CPU type"
2186 cat > $TMPC << EOF
2187 int main(void) {
2188 unsigned long ver, mask;
2189 __asm__ ("implver %0" : "=r" (ver));
2190 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2191 printf("%ld-%x\n", ver, ~mask);
2192 return 0;
2195 $_cc -o "$TMPEXE" "$TMPC"
2196 case $("$TMPEXE") in
2198 0-0) proc="ev4"; _mvi="0";;
2199 1-0) proc="ev5"; _mvi="0";;
2200 1-1) proc="ev56"; _mvi="0";;
2201 1-101) proc="pca56"; _mvi="1";;
2202 2-303) proc="ev6"; _mvi="1";;
2203 2-307) proc="ev67"; _mvi="1";;
2204 2-1307) proc="ev68"; _mvi="1";;
2205 esac
2206 echores "$proc"
2208 echocheck "GCC & CPU optimization abilities"
2209 if test "$proc" = "ev68" ; then
2210 cc_check -mcpu=$proc || proc=ev67
2212 if test "$proc" = "ev67" ; then
2213 cc_check -mcpu=$proc || proc=ev6
2215 _mcpu="-mcpu=$proc"
2216 echores "$proc"
2218 test $_fast_clz = "auto" && _fast_clz=yes
2220 _optimizing="$proc"
2223 mips)
2224 arch='mips'
2225 iproc='mips'
2227 if irix ; then
2228 echocheck "CPU type"
2229 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2230 case "$(echo $proc)" in
2231 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2232 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2233 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2234 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2235 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2236 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2237 esac
2238 # gcc < 3.x does not support -mtune.
2239 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2240 _mcpu=''
2242 echores "$proc"
2245 test $_fast_clz = "auto" && _fast_clz=yes
2249 hppa)
2250 arch='pa_risc'
2251 iproc='PA-RISC'
2254 s390)
2255 arch='s390'
2256 iproc='390'
2259 s390x)
2260 arch='s390x'
2261 iproc='390x'
2264 vax)
2265 arch='vax'
2266 iproc='vax'
2269 xtensa)
2270 arch='xtensa'
2271 iproc='xtensa'
2274 generic)
2275 arch='generic'
2279 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2280 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2281 die "unsupported architecture $host_arch"
2283 esac # case "$host_arch" in
2285 if test "$_runtime_cpudetection" = yes ; then
2286 if x86 ; then
2287 test "$_cmov" != no && _cmov=yes
2288 x86_32 && _cmov=no
2289 test "$_mmx" != no && _mmx=yes
2290 test "$_3dnow" != no && _3dnow=yes
2291 test "$_3dnowext" != no && _3dnowext=yes
2292 test "$_mmxext" != no && _mmxext=yes
2293 test "$_sse" != no && _sse=yes
2294 test "$_sse2" != no && _sse2=yes
2295 test "$_ssse3" != no && _ssse3=yes
2296 test "$_mtrr" != no && _mtrr=yes
2298 if ppc; then
2299 _altivec=yes
2304 # endian testing
2305 echocheck "byte order"
2306 if test "$_big_endian" = auto ; then
2307 cat > $TMPC <<EOF
2308 short ascii_name[] = { (('M'<<8)|'P'),(('l'<<8)|'a'),(('y'<<8)|'e'),(('r'<<8)|'B'),
2309 (('i'<<8)|'g'),(('E'<<8)|'n'),(('d'<<8)|'i'),(('a'<<8)|'n'),0};
2310 int main(void) { return (int)ascii_name; }
2312 if cc_check ; then
2313 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2314 _big_endian=yes
2315 else
2316 _big_endian=no
2318 else
2319 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2322 if test "$_big_endian" = yes ; then
2323 _byte_order='big-endian'
2324 def_words_endian='#define WORDS_BIGENDIAN 1'
2325 def_bigendian='#define HAVE_BIGENDIAN 1'
2326 else
2327 _byte_order='little-endian'
2328 def_words_endian='#undef WORDS_BIGENDIAN'
2329 def_bigendian='#define HAVE_BIGENDIAN 0'
2331 echores "$_byte_order"
2334 echocheck "extern symbol prefix"
2335 cat > $TMPC << EOF
2336 int ff_extern;
2338 cc_check -c || die "Symbol mangling check failed."
2339 sym=$($_nm -P -g $TMPEXE)
2340 extern_prefix=${sym%%ff_extern*}
2341 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2342 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2343 echores $extern_prefix
2346 echocheck "assembler support of -pipe option"
2347 cat > $TMPC << EOF
2348 int main(void) { return 0; }
2350 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2351 cc_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2354 echocheck "compiler support of named assembler arguments"
2355 _named_asm_args=yes
2356 def_named_asm_args="#define NAMED_ASM_ARGS 1"
2357 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2358 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2359 _named_asm_args=no
2360 def_named_asm_args="#undef NAMED_ASM_ARGS"
2362 echores $_named_asm_args
2365 if darwin && test "$cc_vendor" = "gnu" ; then
2366 echocheck "GCC support of -mstackrealign"
2367 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2368 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2369 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2370 # wrong code with this flag, but this can be worked around by adding
2371 # -fno-unit-at-a-time as described in the blog post at
2372 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2373 cat > $TMPC << EOF
2374 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2375 int main(void) { return foo3(1,2,3) == 3 ? 0 : 1; }
2377 cc_check -O2 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2378 test -z "$cflags_stackrealign" && cc_check -O2 -mstackrealign -fno-unit-at-a-time \
2379 && tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2380 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2381 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2384 # Checking for CFLAGS
2385 _install_strip="-s"
2386 if test "$_profile" != "" || test "$_debug" != "" ; then
2387 CFLAGS="-W -Wall -O2 $_march $_mcpu $_pipe $_debug $_profile"
2388 _install_strip=
2389 elif test -z "$CFLAGS" ; then
2390 if test "$cc_vendor" = "intel" ; then
2391 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer -wd167 -wd556 -wd144"
2392 elif test "$cc_vendor" = "sun" ; then
2393 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2394 elif test "$cc_vendor" != "gnu" ; then
2395 CFLAGS="-O2 $_march $_mcpu $_pipe"
2396 else
2397 CFLAGS="-Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2398 extra_ldflags="$extra_ldflags -ffast-math"
2400 else
2401 _warn_CFLAGS=yes
2404 cat > $TMPC << EOF
2405 int main(void) { return 0; }
2407 if test "$cc_vendor" = "gnu" ; then
2408 cc_check -std=gnu99 && CFLAGS="-std=gnu99 $CFLAGS"
2409 cc_check -Wno-pointer-sign && CFLAGS="-Wno-pointer-sign $CFLAGS"
2410 cc_check -Wdisabled-optimization && CFLAGS="-Wdisabled-optimization $CFLAGS"
2411 cc_check -Wundef && CFLAGS="-Wundef $CFLAGS"
2412 cc_check -Wmissing-prototypes && CFLAGS="-Wmissing-prototypes $CFLAGS"
2413 cc_check -Wstrict-prototypes && CFLAGS="-Wstrict-prototypes $CFLAGS"
2414 else
2415 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2418 cc_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2419 cc_check -MD -MP && CFLAGS="-MD -MP $CFLAGS"
2422 if test -n "$LDFLAGS" ; then
2423 extra_ldflags="$extra_ldflags $LDFLAGS"
2424 _warn_CFLAGS=yes
2425 elif test "$cc_vendor" = "intel" ; then
2426 extra_ldflags="$extra_ldflags -i-static"
2428 if test -n "$CPPFLAGS" ; then
2429 extra_cflags="$extra_cflags $CPPFLAGS"
2430 _warn_CFLAGS=yes
2435 if x86_32 ; then
2436 # Checking assembler (_as) compatibility...
2437 # Added workaround for older as that reads from stdin by default - atmos
2438 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2439 echocheck "assembler ($_as $as_version)"
2441 _pref_as_version='2.9.1'
2442 echo 'nop' > $TMPS
2443 if test "$_mmx" = yes ; then
2444 echo 'emms' >> $TMPS
2446 if test "$_3dnow" = yes ; then
2447 _pref_as_version='2.10.1'
2448 echo 'femms' >> $TMPS
2450 if test "$_3dnowext" = yes ; then
2451 _pref_as_version='2.10.1'
2452 echo 'pswapd %mm0, %mm0' >> $TMPS
2454 if test "$_mmxext" = yes ; then
2455 _pref_as_version='2.10.1'
2456 echo 'movntq %mm0, (%eax)' >> $TMPS
2458 if test "$_sse" = yes ; then
2459 _pref_as_version='2.10.1'
2460 echo 'xorps %xmm0, %xmm0' >> $TMPS
2462 #if test "$_sse2" = yes ; then
2463 # _pref_as_version='2.11'
2464 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2466 if test "$_cmov" = yes ; then
2467 _pref_as_version='2.10.1'
2468 echo 'cmovb %eax, %ebx' >> $TMPS
2470 if test "$_ssse3" = yes ; then
2471 _pref_as_version='2.16.92'
2472 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2474 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2476 if test "$as_verc_fail" != yes ; then
2477 echores "ok"
2478 else
2479 _res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2480 echores "failed"
2481 die "obsolete binutils version"
2484 fi #if x86_32
2486 echocheck ".align is a power of two"
2487 if test "$_asmalign_pot" = auto ; then
2488 _asmalign_pot=no
2489 cat > $TMPC << EOF
2490 int main(void) { __asm__ (".align 3"); return 0; }
2492 cc_check && _asmalign_pot=yes
2494 if test "$_asmalign_pot" = "yes" ; then
2495 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2496 else
2497 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2499 echores $_asmalign_pot
2501 if x86 ; then
2502 echocheck "10 assembler operands"
2503 ten_operands=no
2504 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2505 cat > $TMPC << EOF
2506 int main(void) {
2507 int x=0;
2508 __asm__ volatile(
2510 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2512 return 0;
2515 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2516 echores $ten_operands
2518 echocheck "ebx availability"
2519 ebx_available=no
2520 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2521 cat > $TMPC << EOF
2522 int main(void) {
2523 int x;
2524 __asm__ volatile(
2525 "xor %0, %0"
2526 :"=b"(x)
2527 // just adding ebx to clobber list seems unreliable with some
2528 // compilers, e.g. Haiku's gcc 2.95
2530 // and the above check does not work for OSX 64 bit...
2531 __asm__ volatile("":::"%ebx");
2532 return 0;
2535 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2536 echores $ebx_available
2538 echocheck "PIC"
2539 pic=no
2540 cat > $TMPC << EOF
2541 int main(void) {
2542 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2543 #error PIC not enabled
2544 #endif
2545 return 0;
2548 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2549 echores $pic
2551 echocheck "yasm"
2552 if test -z "$YASMFLAGS" ; then
2553 if darwin ; then
2554 x86_64 && objformat="macho64" || objformat="macho"
2555 elif win32 ; then
2556 objformat="win32"
2557 else
2558 objformat="elf"
2560 # currently tested for Linux x86, x86_64
2561 YASMFLAGS="-f $objformat"
2562 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2563 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2564 case "$objformat" in
2565 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2566 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2567 esac
2568 else
2569 _warn_CFLAGS=yes
2572 echo "pabsw xmm0, xmm0" > $TMPS
2573 yasm_check || _yasm=""
2574 if test $_yasm ; then
2575 def_yasm='#define HAVE_YASM 1'
2576 have_yasm="yes"
2577 echores "$_yasm"
2578 else
2579 def_yasm='#define HAVE_YASM 0'
2580 have_yasm="no"
2581 echores "no"
2584 echocheck "bswap"
2585 def_bswap='#define HAVE_BSWAP 0'
2586 echo 'bswap %eax' > $TMPS
2587 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2588 echores "$bswap"
2589 fi #if x86
2592 #FIXME: This should happen before the check for CFLAGS..
2593 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2594 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2596 # check if AltiVec is supported by the compiler, and how to enable it
2597 echocheck "GCC AltiVec flags"
2598 cat > $TMPC << EOF
2599 int main(void) { return 0; }
2601 if $(cc_check -maltivec -mabi=altivec) ; then
2602 _altivec_gcc_flags="-maltivec -mabi=altivec"
2603 # check if <altivec.h> should be included
2604 cat > $TMPC << EOF
2605 #include <altivec.h>
2606 int main(void) { return 0; }
2608 if $(cc_check $_altivec_gcc_flags) ; then
2609 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2610 inc_altivec_h='#include <altivec.h>'
2611 else
2612 cat > $TMPC << EOF
2613 int main(void) { return 0; }
2615 if $(cc_check -faltivec) ; then
2616 _altivec_gcc_flags="-faltivec"
2617 else
2618 _altivec=no
2619 _altivec_gcc_flags="none, AltiVec disabled"
2623 echores "$_altivec_gcc_flags"
2625 # check if the compiler supports braces for vector declarations
2626 cat > $TMPC << EOF
2627 $inc_altivec_h
2628 int main(void) { (vector int) {1}; return 0; }
2630 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2632 # Disable runtime cpudetection if we cannot generate AltiVec code or
2633 # AltiVec is disabled by the user.
2634 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2635 && _runtime_cpudetection=no
2637 # Show that we are optimizing for AltiVec (if enabled and supported).
2638 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2639 && _optimizing="$_optimizing altivec"
2641 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2642 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2645 if ppc ; then
2646 def_xform_asm='#define HAVE_XFORM_ASM 0'
2647 xform_asm=no
2648 echocheck "XFORM ASM support"
2649 cat > $TMPC << EOF
2650 int main(void) { __asm__ volatile ("lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)); return 0; }
2652 cc_check && xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2653 echores "$xform_asm"
2656 if arm ; then
2657 echocheck "ARM pld instruction"
2658 cat > $TMPC << EOF
2659 int main(void) { __asm__ volatile ("pld [r0]"); return 0; }
2661 pld=no
2662 cc_check && pld=yes
2663 echores "$pld"
2665 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2666 if test $_armv5te = "auto" ; then
2667 cat > $TMPC << EOF
2668 int main(void) { __asm__ volatile ("qadd r0, r0, r0"); return 0; }
2670 _armv5te=no
2671 cc_check && _armv5te=yes
2673 echores "$_armv5te"
2675 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2677 echocheck "ARMv6 (SIMD instructions)"
2678 if test $_armv6 = "auto" ; then
2679 cat > $TMPC << EOF
2680 int main(void) { __asm__ volatile ("sadd16 r0, r0, r0"); return 0; }
2682 _armv6=no
2683 cc_check && _armv6=yes
2685 echores "$_armv6"
2687 echocheck "ARMv6t2 (SIMD instructions)"
2688 if test $_armv6t2 = "auto" ; then
2689 cat > $TMPC << EOF
2690 int main(void) { __asm__ volatile ("movt r0, #0"); return 0; }
2692 _armv6t2=no
2693 cc_check && _armv6t2=yes
2695 echores "$_armv6"
2697 echocheck "ARM VFP"
2698 if test $_armvfp = "auto" ; then
2699 cat > $TMPC << EOF
2700 int main(void) { __asm__ volatile ("fadds s0, s0, s0"); return 0; }
2702 _armvfp=no
2703 cc_check && _armvfp=yes
2705 echores "$_armvfp"
2707 echocheck "ARM NEON"
2708 if test $neon = "auto" ; then
2709 cat > $TMPC << EOF
2710 int main(void) { __asm__ volatile ("vadd.i16 q0, q0, q0"); return 0; }
2712 neon=no
2713 cc_check && neon=yes
2715 echores "$neon"
2717 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2718 if test $_iwmmxt = "auto" ; then
2719 cat > $TMPC << EOF
2720 int main(void) { __asm__ volatile ("wunpckelub wr6, wr4"); return 0; }
2722 _iwmmxt=no
2723 cc_check && _iwmmxt=yes
2725 echores "$_iwmmxt"
2728 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'
2729 test "$_altivec" = yes && cpuexts="ALTIVEC $cpuexts"
2730 test "$_mmx" = yes && cpuexts="MMX $cpuexts"
2731 test "$_mmxext" = yes && cpuexts="MMX2 $cpuexts"
2732 test "$_3dnow" = yes && cpuexts="AMD3DNOW $cpuexts"
2733 test "$_3dnowext" = yes && cpuexts="AMD3DNOWEXT $cpuexts"
2734 test "$_sse" = yes && cpuexts="SSE $cpuexts"
2735 test "$_sse2" = yes && cpuexts="SSE2 $cpuexts"
2736 test "$_ssse3" = yes && cpuexts="SSSE3 $cpuexts"
2737 test "$_cmov" = yes && cpuexts="CMOV $cpuexts"
2738 test "$_fast_cmov" = yes && cpuexts="FAST_CMOV $cpuexts"
2739 test "$_fast_clz" = yes && cpuexts="FAST_CLZ $cpuexts"
2740 test "$pld" = yes && cpuexts="PLD $cpuexts"
2741 test "$_armv5te" = yes && cpuexts="ARMV5TE $cpuexts"
2742 test "$_armv6" = yes && cpuexts="ARMV6 $cpuexts"
2743 test "$_armv6t2" = yes && cpuexts="ARMV6T2 $cpuexts"
2744 test "$_armvfp" = yes && cpuexts="ARMVFP $cpuexts"
2745 test "$neon" = yes && cpuexts="NEON $cpuexts"
2746 test "$_iwmmxt" = yes && cpuexts="IWMMXT $cpuexts"
2747 test "$_vis" = yes && cpuexts="VIS $cpuexts"
2748 test "$_mvi" = yes && cpuexts="MVI $cpuexts"
2750 # Checking kernel version...
2751 if x86_32 && linux ; then
2752 _k_verc_problem=no
2753 kernel_version=$(uname -r 2>&1)
2754 echocheck "$system_name kernel version"
2755 case "$kernel_version" in
2756 '') kernel_version="?.??"; _k_verc_fail=yes;;
2757 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2758 _k_verc_problem=yes;;
2759 esac
2760 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2761 _k_verc_fail=yes
2763 if test "$_k_verc_fail" ; then
2764 echores "$kernel_version, fail"
2765 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2766 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2767 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2768 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2769 echo "2.2.x you must upgrade it to get SSE support!"
2770 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2771 else
2772 echores "$kernel_version, ok"
2776 ######################
2777 # MAIN TESTS GO HERE #
2778 ######################
2781 echocheck "-lposix"
2782 cat > $TMPC <<EOF
2783 int main(void) { return 0; }
2785 if cc_check -lposix ; then
2786 extra_ldflags="$extra_ldflags -lposix"
2787 echores "yes"
2788 else
2789 echores "no"
2792 echocheck "-lm"
2793 cat > $TMPC <<EOF
2794 int main(void) { return 0; }
2796 if cc_check -lm ; then
2797 _ld_lm="-lm"
2798 echores "yes"
2799 else
2800 _ld_lm=""
2801 echores "no"
2805 echocheck "langinfo"
2806 if test "$_langinfo" = auto ; then
2807 cat > $TMPC <<EOF
2808 #include <langinfo.h>
2809 int main(void) { nl_langinfo(CODESET); return 0; }
2811 _langinfo=no
2812 cc_check && _langinfo=yes
2814 if test "$_langinfo" = yes ; then
2815 def_langinfo='#define HAVE_LANGINFO 1'
2816 else
2817 def_langinfo='#undef HAVE_LANGINFO'
2819 echores "$_langinfo"
2822 echocheck "translation support"
2823 if test "$_translation" = yes; then
2824 def_translation="#define CONFIG_TRANSLATION 1"
2825 else
2826 def_translation="#undef CONFIG_TRANSLATION"
2828 echores "$_translation"
2830 echocheck "language"
2831 # Set preferred languages, "all" uses English as main language.
2832 test -z "$language" && language=$LINGUAS
2833 test -z "$language_doc" && language_doc=$language
2834 test -z "$language_man" && language_man=$language
2835 test -z "$language_msg" && language_msg="all"
2836 language_doc=$(echo $language_doc | tr , " ")
2837 language_man=$(echo $language_man | tr , " ")
2838 language_msg=$(echo $language_msg | tr , " ")
2840 test "$language_doc" = "all" && language_doc=$doc_lang_all
2841 test "$language_man" = "all" && language_man=$man_lang_all
2842 test "$language_msg" = "all" && language_msg=$msg_lang_all
2844 if test "$_translation" != yes ; then
2845 language_msg=""
2848 # Prune non-existing translations from language lists.
2849 # Set message translation to the first available language.
2850 # Fall back on English.
2851 for lang in $language_doc ; do
2852 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2853 done
2854 language_doc=$tmp_language_doc
2855 test -z "$language_doc" && language_doc=en
2857 for lang in $language_man ; do
2858 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2859 done
2860 language_man=$tmp_language_man
2861 test -z "$language_man" && language_man=en
2863 for lang in $language_msg ; do
2864 test -f po/$lang.po && tmp_language_msg="$tmp_language_msg $lang"
2865 done
2866 language_msg=$tmp_language_msg
2868 echores "messages (en+): $language_msg - man pages: $language_man - documentation: $language_doc"
2871 echocheck "enable sighandler"
2872 if test "$_sighandler" = yes ; then
2873 def_sighandler='#define CONFIG_SIGHANDLER 1'
2874 else
2875 def_sighandler='#undef CONFIG_SIGHANDLER'
2877 echores "$_sighandler"
2879 echocheck "runtime cpudetection"
2880 if test "$_runtime_cpudetection" = yes ; then
2881 _optimizing="Runtime CPU-Detection enabled"
2882 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2883 else
2884 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2886 echores "$_runtime_cpudetection"
2889 echocheck "restrict keyword"
2890 for restrict_keyword in restrict __restrict __restrict__ ; do
2891 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2892 if cc_check; then
2893 def_restrict_keyword=$restrict_keyword
2894 break;
2896 done
2897 if [ -n "$def_restrict_keyword" ]; then
2898 echores "$def_restrict_keyword"
2899 else
2900 echores "none"
2902 # Avoid infinite recursion loop ("#define restrict restrict")
2903 if [ "$def_restrict_keyword" != "restrict" ]; then
2904 def_restrict_keyword="#define restrict $def_restrict_keyword"
2905 else
2906 def_restrict_keyword=""
2910 echocheck "__builtin_expect"
2911 # GCC branch prediction hint
2912 cat > $TMPC << EOF
2913 int foo(int a) {
2914 a = __builtin_expect(a, 10);
2915 return a == 10 ? 0 : 1;
2917 int main(void) { return foo(10) && foo(0); }
2919 _builtin_expect=no
2920 cc_check && _builtin_expect=yes
2921 if test "$_builtin_expect" = yes ; then
2922 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2923 else
2924 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2926 echores "$_builtin_expect"
2929 echocheck "kstat"
2930 cat > $TMPC << EOF
2931 #include <kstat.h>
2932 int main(void) { (void) kstat_open(); (void) kstat_close(0); return 0; }
2934 _kstat=no
2935 cc_check -lkstat && _kstat=yes
2936 if test "$_kstat" = yes ; then
2937 def_kstat="#define HAVE_LIBKSTAT 1"
2938 extra_ldflags="$extra_ldflags -lkstat"
2939 else
2940 def_kstat="#undef HAVE_LIBKSTAT"
2942 echores "$_kstat"
2945 echocheck "posix4"
2946 # required for nanosleep on some systems
2947 cat > $TMPC << EOF
2948 #include <time.h>
2949 int main(void) { (void) nanosleep(0, 0); return 0; }
2951 _posix4=no
2952 cc_check -lposix4 && _posix4=yes
2953 if test "$_posix4" = yes ; then
2954 extra_ldflags="$extra_ldflags -lposix4"
2956 echores "$_posix4"
2958 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
2959 echocheck $func
2960 cat > $TMPC << EOF
2961 #include <math.h>
2962 int main(void) { long (*foo)(float); foo = $func; (void)(*foo)(0.0); return 0; }
2964 eval _$func=no
2965 cc_check -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2966 if eval test "x\$_$func" = "xyes"; then
2967 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2968 echores yes
2969 else
2970 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
2971 echores no
2973 done
2976 echocheck "mkstemp"
2977 cat > $TMPC << EOF
2978 #include <stdlib.h>
2979 int main(void) { char a; mkstemp(&a); return 0; }
2981 _mkstemp=no
2982 cc_check && _mkstemp=yes
2983 if test "$_mkstemp" = yes ; then
2984 def_mkstemp='#define HAVE_MKSTEMP 1'
2985 else
2986 def_mkstemp='#undef HAVE_MKSTEMP'
2988 echores "$_mkstemp"
2991 echocheck "nanosleep"
2992 # also check for nanosleep
2993 cat > $TMPC << EOF
2994 #include <time.h>
2995 int main(void) { (void) nanosleep(0, 0); return 0; }
2997 _nanosleep=no
2998 cc_check && _nanosleep=yes
2999 if test "$_nanosleep" = yes ; then
3000 def_nanosleep='#define HAVE_NANOSLEEP 1'
3001 else
3002 def_nanosleep='#undef HAVE_NANOSLEEP'
3004 echores "$_nanosleep"
3007 echocheck "socklib"
3008 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
3009 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
3010 cat > $TMPC << EOF
3011 #include <netdb.h>
3012 #include <sys/socket.h>
3013 int main(void) { (void) gethostbyname(0); (void) socket(AF_INET, SOCK_STREAM, 0); return 0; }
3015 _socklib=no
3016 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
3017 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
3018 done
3019 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
3020 if test $_winsock2_h = auto ; then
3021 _winsock2_h=no
3022 cat > $TMPC << EOF
3023 #include <winsock2.h>
3024 int main(void) { (void) gethostbyname(0); return 0; }
3026 cc_check -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
3028 test "$_ld_sock" && _res_comment="using $_ld_sock"
3029 echores "$_socklib"
3032 if test $_winsock2_h = yes ; then
3033 _ld_sock="-lws2_32"
3034 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
3035 else
3036 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
3040 echocheck "arpa/inet.h"
3041 arpa_inet_h=no
3042 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
3043 cat > $TMPC << EOF
3044 #include <arpa/inet.h>
3045 int main(void) { return 0; }
3047 cc_check && arpa_inet_h=yes && def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
3048 echores "$arpa_inet_h"
3051 echocheck "inet_pton()"
3052 def_inet_pton='#define HAVE_INET_PTON 0'
3053 inet_pton=no
3054 cat > $TMPC << EOF
3055 #include <sys/types.h>
3056 #include <sys/socket.h>
3057 #include <arpa/inet.h>
3058 int main(void) { (void) inet_pton(0, 0, 0); return 0; }
3060 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3061 cc_check $_ld_tmp && inet_pton=yes && break
3062 done
3063 if test $inet_pton = yes ; then
3064 test "$_ld_tmp" && _res_comment="using $_ld_tmp"
3065 def_inet_pton='#define HAVE_INET_PTON 1'
3067 echores "$inet_pton"
3070 echocheck "inet_aton()"
3071 def_inet_aton='#define HAVE_INET_ATON 0'
3072 inet_aton=no
3073 cat > $TMPC << EOF
3074 #include <sys/types.h>
3075 #include <sys/socket.h>
3076 #include <arpa/inet.h>
3077 int main(void) { (void) inet_aton(0, 0); return 0; }
3079 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3080 cc_check $_ld_tmp && inet_aton=yes && break
3081 done
3082 if test $inet_aton = yes ; then
3083 test "$_ld_tmp" && _res_comment="using $_ld_tmp"
3084 def_inet_aton='#define HAVE_INET_ATON 1'
3086 echores "$inet_aton"
3089 echocheck "socklen_t"
3090 _socklen_t=no
3091 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
3092 cat > $TMPC << EOF
3093 #include <$header>
3094 int main(void) { socklen_t v = 0; return v; }
3096 cc_check && _socklen_t=yes && break
3097 done
3098 if test "$_socklen_t" = yes ; then
3099 def_socklen_t='#define HAVE_SOCKLEN_T 1'
3100 else
3101 def_socklen_t='#define HAVE_SOCKLEN_T 0'
3103 echores "$_socklen_t"
3106 echocheck "closesocket()"
3107 _closesocket=no
3108 cat > $TMPC << EOF
3109 #include <winsock2.h>
3110 int main(void) { closesocket(~0); return 0; }
3112 cc_check $_ld_sock && _closesocket=yes
3113 if test "$_closesocket" = yes ; then
3114 def_closesocket='#define HAVE_CLOSESOCKET 1'
3115 else
3116 def_closesocket='#define HAVE_CLOSESOCKET 0'
3118 echores "$_closesocket"
3121 echocheck "network"
3122 test $_winsock2_h = no && test $inet_pton = no &&
3123 test $inet_aton = no && _network=no
3124 if test "$_network" = yes ; then
3125 def_network='#define CONFIG_NETWORK 1'
3126 extra_ldflags="$extra_ldflags $_ld_sock"
3127 _inputmodules="network $_inputmodules"
3128 else
3129 _noinputmodules="network $_noinputmodules"
3130 def_network='#undef CONFIG_NETWORK'
3131 _ftp=no
3133 echores "$_network"
3136 echocheck "inet6"
3137 if test "$_inet6" = auto ; then
3138 cat > $TMPC << EOF
3139 #include <sys/types.h>
3140 #if !defined(_WIN32) || defined(__CYGWIN__)
3141 #include <sys/socket.h>
3142 #include <netinet/in.h>
3143 #else
3144 #include <ws2tcpip.h>
3145 #endif
3146 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3148 _inet6=no
3149 if cc_check $_ld_sock ; then
3150 _inet6=yes
3153 if test "$_inet6" = yes ; then
3154 def_inet6='#define HAVE_AF_INET6 1'
3155 else
3156 def_inet6='#undef HAVE_AF_INET6'
3158 echores "$_inet6"
3161 echocheck "gethostbyname2"
3162 if test "$_gethostbyname2" = auto ; then
3163 cat > $TMPC << EOF
3164 #include <sys/types.h>
3165 #include <sys/socket.h>
3166 #include <netdb.h>
3167 int main(void) { gethostbyname2("", AF_INET); return 0; }
3169 _gethostbyname2=no
3170 if cc_check ; then
3171 _gethostbyname2=yes
3174 if test "$_gethostbyname2" = yes ; then
3175 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3176 else
3177 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3179 echores "$_gethostbyname2"
3182 echocheck "inttypes.h (required)"
3183 cat > $TMPC << EOF
3184 #include <inttypes.h>
3185 int main(void) { return 0; }
3187 _inttypes=no
3188 cc_check && _inttypes=yes
3189 echores "$_inttypes"
3191 if test "$_inttypes" = no ; then
3192 echocheck "bitypes.h (inttypes.h predecessor)"
3193 cat > $TMPC << EOF
3194 #include <sys/bitypes.h>
3195 int main(void) { return 0; }
3197 cc_check && _inttypes=yes
3198 if test "$_inttypes" = yes ; then
3199 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."
3200 else
3201 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3206 echocheck "int_fastXY_t in inttypes.h"
3207 cat > $TMPC << EOF
3208 #include <inttypes.h>
3209 int main(void) {
3210 volatile int_fast16_t v= 0;
3211 return v; }
3213 _fast_inttypes=no
3214 cc_check && _fast_inttypes=yes
3215 if test "$_fast_inttypes" = no ; then
3216 def_fast_inttypes='
3217 typedef signed char int_fast8_t;
3218 typedef signed int int_fast16_t;
3219 typedef signed int int_fast32_t;
3220 typedef signed long long int_fast64_t;
3221 typedef unsigned char uint_fast8_t;
3222 typedef unsigned int uint_fast16_t;
3223 typedef unsigned int uint_fast32_t;
3224 typedef unsigned long long uint_fast64_t;'
3226 echores "$_fast_inttypes"
3229 echocheck "malloc.h"
3230 cat > $TMPC << EOF
3231 #include <malloc.h>
3232 int main(void) { (void) malloc(0); return 0; }
3234 _malloc=no
3235 cc_check && _malloc=yes
3236 if test "$_malloc" = yes ; then
3237 def_malloc_h='#define HAVE_MALLOC_H 1'
3238 else
3239 def_malloc_h='#define HAVE_MALLOC_H 0'
3241 echores "$_malloc"
3244 echocheck "memalign()"
3245 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3246 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3247 cat > $TMPC << EOF
3248 #include <malloc.h>
3249 int main(void) { (void) memalign(64, sizeof(char)); return 0; }
3251 _memalign=no
3252 cc_check && _memalign=yes
3253 if test "$_memalign" = yes ; then
3254 def_memalign='#define HAVE_MEMALIGN 1'
3255 else
3256 def_memalign='#define HAVE_MEMALIGN 0'
3257 def_map_memalign='#define memalign(a,b) malloc(b)'
3258 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3260 echores "$_memalign"
3263 echocheck "posix_memalign()"
3264 posix_memalign=no
3265 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3266 cat > $TMPC << EOF
3267 #define _XOPEN_SOURCE 600
3268 #include <stdlib.h>
3269 int main(void) { posix_memalign(NULL, 0, 0); }
3271 cc_check && posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3272 echores "$posix_memalign"
3275 echocheck "alloca.h"
3276 cat > $TMPC << EOF
3277 #include <alloca.h>
3278 int main(void) { (void) alloca(0); return 0; }
3280 _alloca=no
3281 cc_check && _alloca=yes
3282 if cc_check ; then
3283 def_alloca_h='#define HAVE_ALLOCA_H 1'
3284 else
3285 def_alloca_h='#undef HAVE_ALLOCA_H'
3287 echores "$_alloca"
3290 echocheck "fastmemcpy"
3291 if test "$_fastmemcpy" = yes ; then
3292 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3293 else
3294 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3296 echores "$_fastmemcpy"
3299 echocheck "mman.h"
3300 cat > $TMPC << EOF
3301 #include <sys/types.h>
3302 #include <sys/mman.h>
3303 int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; }
3305 _mman=no
3306 cc_check && _mman=yes
3307 if test "$_mman" = yes ; then
3308 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3309 else
3310 def_mman_h='#undef HAVE_SYS_MMAN_H'
3311 os2 && _need_mmap=yes
3313 echores "$_mman"
3315 cat > $TMPC << EOF
3316 #include <sys/types.h>
3317 #include <sys/mman.h>
3318 int main(void) { void *p = MAP_FAILED; return 0; }
3320 _mman_has_map_failed=no
3321 cc_check && _mman_has_map_failed=yes
3322 if test "$_mman_has_map_failed" = yes ; then
3323 def_mman_has_map_failed=''
3324 else
3325 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3328 echocheck "dynamic loader"
3329 cat > $TMPC << EOF
3330 #include <stddef.h>
3331 #include <dlfcn.h>
3332 int main(void) { dlopen("", 0); dlclose(NULL); dlsym(NULL, ""); return 0; }
3334 _dl=no
3335 for _ld_tmp in "" "-ldl" ; do
3336 cc_check $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3337 done
3338 if test "$_dl" = yes ; then
3339 def_dl='#define HAVE_LIBDL 1'
3340 else
3341 def_dl='#undef HAVE_LIBDL'
3343 echores "$_dl"
3346 echocheck "dynamic a/v plugins support"
3347 if test "$_dl" = no ; then
3348 _dynamic_plugins=no
3350 if test "$_dynamic_plugins" = yes ; then
3351 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3352 else
3353 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3355 echores "$_dynamic_plugins"
3358 def_threads='#define HAVE_THREADS 0'
3360 echocheck "pthread"
3361 if linux ; then
3362 THREAD_CFLAGS=-D_REENTRANT
3363 elif freebsd || netbsd || openbsd || bsdos ; then
3364 THREAD_CFLAGS=-D_THREAD_SAFE
3366 if test "$_pthreads" = auto ; then
3367 cat > $TMPC << EOF
3368 #include <pthread.h>
3369 void* func(void *arg) { return arg; }
3370 int main(void) { pthread_t tid; return pthread_create(&tid, 0, func, 0) == 0 ? 0 : 1; }
3372 _pthreads=no
3373 if ! hpux ; then
3374 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3375 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3376 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3377 done
3380 if test "$_pthreads" = yes ; then
3381 test $_ld_pthread && _res_comment="using $_ld_pthread"
3382 def_pthreads='#define HAVE_PTHREADS 1'
3383 def_threads='#define HAVE_THREADS 1'
3384 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3385 else
3386 _res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3387 def_pthreads='#undef HAVE_PTHREADS'
3388 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3389 mingw32 || _win32dll=no
3391 echores "$_pthreads"
3393 if cygwin ; then
3394 if test "$_pthreads" = yes ; then
3395 def_pthread_cache="#define PTHREAD_CACHE 1"
3396 else
3397 _stream_cache=no
3398 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3402 echocheck "w32threads"
3403 if test "$_pthreads" = yes ; then
3404 _res_comment="using pthread instead"
3405 _w32threads=no
3407 if test "$_w32threads" = auto ; then
3408 _w32threads=no
3409 mingw32 && _w32threads=yes
3411 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3412 echores "$_w32threads"
3414 echocheck "rpath"
3415 netbsd &&_rpath=yes
3416 if test "$_rpath" = yes ; then
3417 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3418 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3419 done
3420 extra_ldflags=$tmp
3422 echores "$_rpath"
3424 echocheck "iconv"
3425 if test "$_iconv" = auto ; then
3426 cat > $TMPC << EOF
3427 #include <stdio.h>
3428 #include <unistd.h>
3429 #include <iconv.h>
3430 #define INBUFSIZE 1024
3431 #define OUTBUFSIZE 4096
3433 char inbuffer[INBUFSIZE];
3434 char outbuffer[OUTBUFSIZE];
3436 int main(void) {
3437 size_t numread;
3438 iconv_t icdsc;
3439 char *tocode="UTF-8";
3440 char *fromcode="cp1250";
3441 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3442 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3443 char *iptr=inbuffer;
3444 char *optr=outbuffer;
3445 size_t inleft=numread;
3446 size_t outleft=OUTBUFSIZE;
3447 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft)
3448 != (size_t)(-1)) {
3449 write(1, outbuffer, OUTBUFSIZE - outleft);
3452 if (iconv_close(icdsc) == -1)
3455 return 0;
3458 _iconv=no
3459 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3460 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3461 _iconv=yes && break
3462 done
3464 if test "$_iconv" = yes ; then
3465 def_iconv='#define CONFIG_ICONV 1'
3466 else
3467 def_iconv='#undef CONFIG_ICONV'
3469 echores "$_iconv"
3472 echocheck "soundcard.h"
3473 _soundcard_h=no
3474 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3475 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3476 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3477 cat > $TMPC << EOF
3478 #include <$_soundcard_header>
3479 int main(void) { return 0; }
3481 cc_check && _soundcard_h=yes && _res_comment="$_soundcard_header" && break
3482 done
3484 if test "$_soundcard_h" = yes ; then
3485 if test $_soundcard_header = "sys/soundcard.h"; then
3486 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3487 else
3488 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3491 echores "$_soundcard_h"
3494 echocheck "sys/dvdio.h"
3495 cat > $TMPC << EOF
3496 #include <unistd.h>
3497 #include <sys/dvdio.h>
3498 int main(void) { return 0; }
3500 _dvdio=no
3501 cc_check && _dvdio=yes
3502 if test "$_dvdio" = yes ; then
3503 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3504 else
3505 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3507 echores "$_dvdio"
3510 echocheck "sys/cdio.h"
3511 cat > $TMPC << EOF
3512 #include <unistd.h>
3513 #include <sys/cdio.h>
3514 int main(void) { return 0; }
3516 _cdio=no
3517 cc_check && _cdio=yes
3518 if test "$_cdio" = yes ; then
3519 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3520 else
3521 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3523 echores "$_cdio"
3526 echocheck "linux/cdrom.h"
3527 cat > $TMPC << EOF
3528 #include <sys/types.h>
3529 #include <linux/cdrom.h>
3530 int main(void) { return 0; }
3532 _cdrom=no
3533 cc_check && _cdrom=yes
3534 if test "$_cdrom" = yes ; then
3535 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3536 else
3537 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3539 echores "$_cdrom"
3542 echocheck "dvd.h"
3543 cat > $TMPC << EOF
3544 #include <dvd.h>
3545 int main(void) { return 0; }
3547 _dvd=no
3548 cc_check && _dvd=yes
3549 if test "$_dvd" = yes ; then
3550 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3551 else
3552 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3554 echores "$_dvd"
3557 if bsdos; then
3558 echocheck "BSDI dvd.h"
3559 cat > $TMPC << EOF
3560 #include <dvd.h>
3561 int main(void) { return 0; }
3563 _bsdi_dvd=no
3564 cc_check && _bsdi_dvd=yes
3565 if test "$_bsdi_dvd" = yes ; then
3566 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3567 else
3568 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3570 echores "$_bsdi_dvd"
3571 fi #if bsdos
3574 if hpux; then
3575 # also used by AIX, but AIX does not support VCD and/or libdvdread
3576 echocheck "HP-UX SCSI header"
3577 cat > $TMPC << EOF
3578 #include <sys/scsi.h>
3579 int main(void) { return 0; }
3581 _hpux_scsi_h=no
3582 cc_check && _hpux_scsi_h=yes
3583 if test "$_hpux_scsi_h" = yes ; then
3584 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3585 else
3586 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3588 echores "$_hpux_scsi_h"
3589 fi #if hpux
3592 if sunos; then
3593 echocheck "userspace SCSI headers (Solaris)"
3594 cat > $TMPC << EOF
3595 #include <unistd.h>
3596 #include <stropts.h>
3597 #include <sys/scsi/scsi_types.h>
3598 #include <sys/scsi/impl/uscsi.h>
3599 int main(void) { return 0; }
3601 _sol_scsi_h=no
3602 cc_check && _sol_scsi_h=yes
3603 if test "$_sol_scsi_h" = yes ; then
3604 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3605 else
3606 def_sol_scsi_h='#undef SOLARIS_USCSI'
3608 echores "$_sol_scsi_h"
3609 fi #if sunos
3612 echocheck "termcap"
3613 if test "$_termcap" = auto ; then
3614 cat > $TMPC <<EOF
3615 #include <stddef.h>
3616 #include <term.h>
3617 int main(void) { tgetent(NULL, NULL); return 0; }
3619 _termcap=no
3620 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3621 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
3622 && _termcap=yes && break
3623 done
3625 if test "$_termcap" = yes ; then
3626 def_termcap='#define HAVE_TERMCAP 1'
3627 test $_ld_tmp && _res_comment="using $_ld_tmp"
3628 else
3629 def_termcap='#undef HAVE_TERMCAP'
3631 echores "$_termcap"
3634 echocheck "termios"
3635 def_termios='#undef HAVE_TERMIOS'
3636 def_termios_h='#undef HAVE_TERMIOS_H'
3637 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3638 if test "$_termios" = auto ; then
3639 _termios=no
3640 for _termios_header in "sys/termios.h" "termios.h"; do
3641 cat > $TMPC <<EOF
3642 #include <$_termios_header>
3643 int main(void) { return 0; }
3645 cc_check && _termios=yes && _res_comment="using $_termios_header" && break
3646 done
3649 if test "$_termios" = yes ; then
3650 def_termios='#define HAVE_TERMIOS 1'
3651 if test "$_termios_header" = "termios.h" ; then
3652 def_termios_h='#define HAVE_TERMIOS_H 1'
3653 else
3654 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3657 echores "$_termios"
3660 echocheck "shm"
3661 if test "$_shm" = auto ; then
3662 cat > $TMPC << EOF
3663 #include <sys/types.h>
3664 #include <sys/shm.h>
3665 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3667 _shm=no
3668 cc_check && _shm=yes
3670 if test "$_shm" = yes ; then
3671 def_shm='#define HAVE_SHM 1'
3672 else
3673 def_shm='#undef HAVE_SHM'
3675 echores "$_shm"
3678 echocheck "strsep()"
3679 cat > $TMPC << EOF
3680 #include <string.h>
3681 int main(void) { char *s = "Hello, world!"; (void) strsep(&s, ","); return 0; }
3683 _strsep=no
3684 cc_check && _strsep=yes
3685 if test "$_strsep" = yes ; then
3686 def_strsep='#define HAVE_STRSEP 1'
3687 _need_strsep=no
3688 else
3689 def_strsep='#undef HAVE_STRSEP'
3690 _need_strsep=yes
3692 echores "$_strsep"
3695 echocheck "vsscanf()"
3696 cat > $TMPC << EOF
3697 #define _ISOC99_SOURCE
3698 #include <stdarg.h>
3699 #include <stdio.h>
3700 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3702 _vsscanf=no
3703 cc_check && _vsscanf=yes
3704 if test "$_vsscanf" = yes ; then
3705 def_vsscanf='#define HAVE_VSSCANF 1'
3706 _need_vsscanf=no
3707 else
3708 def_vsscanf='#undef HAVE_VSSCANF'
3709 _need_vsscanf=yes
3711 echores "$_vsscanf"
3714 echocheck "swab()"
3715 cat > $TMPC << EOF
3716 #define _XOPEN_SOURCE 600
3717 #include <unistd.h>
3718 int main(void) { swab(0, 0, 0); return 0; }
3720 _swab=no
3721 cc_check && _swab=yes
3722 if test "$_swab" = yes ; then
3723 def_swab='#define HAVE_SWAB 1'
3724 _need_swab=no
3725 else
3726 def_swab='#undef HAVE_SWAB'
3727 _need_swab=yes
3729 echores "$_swab"
3731 echocheck "POSIX select()"
3732 cat > $TMPC << EOF
3733 #include <stdio.h>
3734 #include <stdlib.h>
3735 #include <sys/types.h>
3736 #include <string.h>
3737 #include <sys/time.h>
3738 #include <unistd.h>
3739 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
3741 _posix_select=no
3742 def_posix_select='#undef HAVE_POSIX_SELECT'
3743 #select() of kLIBC (OS/2) supports socket only
3744 ! os2 && cc_check && _posix_select=yes \
3745 && def_posix_select='#define HAVE_POSIX_SELECT 1'
3746 echores "$_posix_select"
3749 echocheck "audio select()"
3750 if test "$_select" = no ; then
3751 def_select='#undef HAVE_AUDIO_SELECT'
3752 elif test "$_select" = yes ; then
3753 def_select='#define HAVE_AUDIO_SELECT 1'
3755 echores "$_select"
3758 echocheck "gettimeofday()"
3759 cat > $TMPC << EOF
3760 #include <stdio.h>
3761 #include <sys/time.h>
3762 int main(void) {struct timeval tv_start; gettimeofday(&tv_start, NULL); return 0; }
3764 _gettimeofday=no
3765 cc_check && _gettimeofday=yes
3766 if test "$_gettimeofday" = yes ; then
3767 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3768 _need_gettimeofday=no
3769 else
3770 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3771 _need_gettimeofday=yes
3773 echores "$_gettimeofday"
3776 echocheck "glob()"
3777 cat > $TMPC << EOF
3778 #include <stdio.h>
3779 #include <glob.h>
3780 int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
3782 _glob=no
3783 cc_check && _glob=yes
3784 if test "$_glob" = yes ; then
3785 def_glob='#define HAVE_GLOB 1'
3786 _need_glob=no
3787 else
3788 def_glob='#undef HAVE_GLOB'
3789 _need_glob=yes
3791 echores "$_glob"
3794 echocheck "setenv()"
3795 cat > $TMPC << EOF
3796 #include <stdlib.h>
3797 int main(void) { setenv("","",0); return 0; }
3799 _setenv=no
3800 cc_check && _setenv=yes
3801 if test "$_setenv" = yes ; then
3802 def_setenv='#define HAVE_SETENV 1'
3803 _need_setenv=no
3804 else
3805 def_setenv='#undef HAVE_SETENV'
3806 _need_setenv=yes
3808 echores "$_setenv"
3811 echocheck "setmode()"
3812 _setmode=no
3813 def_setmode='#define HAVE_SETMODE 0'
3814 cat > $TMPC << EOF
3815 #include <io.h>
3816 int main(void) { setmode(0, 0); return 0; }
3818 cc_check && _setmode=yes && def_setmode='#define HAVE_SETMODE 1'
3819 echores "$_setmode"
3822 if sunos; then
3823 echocheck "sysi86()"
3824 cat > $TMPC << EOF
3825 #include <sys/sysi86.h>
3826 int main(void) { sysi86(0); return 0; }
3828 _sysi86=no
3829 cc_check && _sysi86=yes
3830 if test "$_sysi86" = yes ; then
3831 def_sysi86='#define HAVE_SYSI86 1'
3832 cat > $TMPC << EOF
3833 #include <sys/sysi86.h>
3834 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
3836 cc_check && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3837 else
3838 def_sysi86='#undef HAVE_SYSI86'
3840 echores "$_sysi86"
3841 fi #if sunos
3844 echocheck "sys/sysinfo.h"
3845 cat > $TMPC << EOF
3846 #include <sys/sysinfo.h>
3847 int main(void) {
3848 struct sysinfo s_info;
3849 sysinfo(&s_info);
3850 return 0;
3853 _sys_sysinfo=no
3854 cc_check && _sys_sysinfo=yes
3855 if test "$_sys_sysinfo" = yes ; then
3856 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3857 else
3858 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3860 echores "$_sys_sysinfo"
3863 if darwin; then
3865 echocheck "Mac OS X Finder Support"
3866 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3867 if test "$_macosx_finder" = yes ; then
3868 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3869 extra_ldflags="$extra_ldflags -framework Carbon"
3871 echores "$_macosx_finder"
3873 echocheck "Mac OS X Bundle file locations"
3874 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3875 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3876 if test "$_macosx_bundle" = yes ; then
3877 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3878 extra_ldflags="$extra_ldflags -framework Carbon"
3880 echores "$_macosx_bundle"
3882 echocheck "Apple Remote"
3883 if test "$_apple_remote" = auto ; then
3884 _apple_remote=no
3885 cat > $TMPC <<EOF
3886 #include <stdio.h>
3887 #include <IOKit/IOCFPlugIn.h>
3888 int main(void) {
3889 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3890 CFMutableDictionaryRef hidMatchDictionary;
3891 IOReturn ioReturnValue;
3893 // Set up a matching dictionary to search the I/O Registry by class.
3894 // name for all HID class devices
3895 hidMatchDictionary = IOServiceMatching("AppleIRController");
3897 // Now search I/O Registry for matching devices.
3898 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3899 hidMatchDictionary, &hidObjectIterator);
3901 // If search is unsuccessful, return nonzero.
3902 if (ioReturnValue != kIOReturnSuccess ||
3903 !IOIteratorIsValid(hidObjectIterator)) {
3904 return 1;
3906 return 0;
3909 cc_check -framework IOKit && tmp_run && _apple_remote=yes
3911 if test "$_apple_remote" = yes ; then
3912 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3913 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3914 else
3915 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3917 echores "$_apple_remote"
3919 fi #if darwin
3921 if linux; then
3923 echocheck "Apple IR"
3924 if test "$_apple_ir" = auto ; then
3925 _apple_ir=no
3926 cat > $TMPC <<EOF
3927 #include <linux/types.h>
3928 #include <linux/input.h>
3929 int main(void) {
3930 struct input_event ev;
3931 struct input_id id;
3932 return 0;
3935 cc_check && _apple_ir=yes
3937 if test "$_apple_ir" = yes ; then
3938 def_apple_ir='#define CONFIG_APPLE_IR 1'
3939 else
3940 def_apple_ir='#undef CONFIG_APPLE_IR'
3942 echores "$_apple_ir"
3943 fi #if linux
3945 echocheck "pkg-config"
3946 _pkg_config=pkg-config
3947 if $($_pkg_config --version > /dev/null 2>&1); then
3948 if test "$_ld_static"; then
3949 _pkg_config="$_pkg_config --static"
3951 echores "yes"
3952 else
3953 _pkg_config=false
3954 echores "no"
3958 echocheck "Samba support (libsmbclient)"
3959 if test "$_smb" = yes; then
3960 extra_ldflags="$extra_ldflags -lsmbclient"
3962 if test "$_smb" = auto; then
3963 _smb=no
3964 cat > $TMPC << EOF
3965 #include <libsmbclient.h>
3966 int main(void) { smbc_opendir("smb://"); return 0; }
3968 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3969 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3970 _smb=yes && break
3971 done
3974 if test "$_smb" = yes; then
3975 def_smb="#define CONFIG_LIBSMBCLIENT 1"
3976 _inputmodules="smb $_inputmodules"
3977 else
3978 def_smb="#undef CONFIG_LIBSMBCLIENT"
3979 _noinputmodules="smb $_noinputmodules"
3981 echores "$_smb"
3984 #########
3985 # VIDEO #
3986 #########
3989 echocheck "tdfxfb"
3990 if test "$_tdfxfb" = yes ; then
3991 def_tdfxfb='#define CONFIG_TDFXFB 1'
3992 _vomodules="tdfxfb $_vomodules"
3993 else
3994 def_tdfxfb='#undef CONFIG_TDFXFB'
3995 _novomodules="tdfxfb $_novomodules"
3997 echores "$_tdfxfb"
3999 echocheck "s3fb"
4000 if test "$_s3fb" = yes ; then
4001 def_s3fb='#define CONFIG_S3FB 1'
4002 _vomodules="s3fb $_vomodules"
4003 else
4004 def_s3fb='#undef CONFIG_S3FB'
4005 _novomodules="s3fb $_novomodules"
4007 echores "$_s3fb"
4009 echocheck "wii"
4010 if test "$_wii" = yes ; then
4011 def_wii='#define CONFIG_WII 1'
4012 _vomodules="wii $_vomodules"
4013 else
4014 def_wii='#undef CONFIG_WII'
4015 _novomodules="wii $_novomodules"
4017 echores "$_wii"
4019 echocheck "tdfxvid"
4020 if test "$_tdfxvid" = yes ; then
4021 def_tdfxvid='#define CONFIG_TDFX_VID 1'
4022 _vomodules="tdfx_vid $_vomodules"
4023 else
4024 def_tdfxvid='#undef CONFIG_TDFX_VID'
4025 _novomodules="tdfx_vid $_novomodules"
4027 echores "$_tdfxvid"
4029 echocheck "xvr100"
4030 if test "$_xvr100" = auto ; then
4031 cat > $TMPC << EOF
4032 #include <unistd.h>
4033 #include <sys/fbio.h>
4034 #include <sys/visual_io.h>
4035 int main(void) {
4036 struct vis_identifier ident;
4037 struct fbgattr attr;
4038 ioctl(0, VIS_GETIDENTIFIER, &ident);
4039 ioctl(0, FBIOGATTR, &attr);
4040 return 0;
4043 _xvr100=no
4044 cc_check && _xvr100=yes
4046 if test "$_xvr100" = yes ; then
4047 def_xvr100='#define CONFIG_XVR100 1'
4048 _vomodules="xvr100 $_vomodules"
4049 else
4050 def_tdfxvid='#undef CONFIG_XVR100'
4051 _novomodules="xvr100 $_novomodules"
4053 echores "$_xvr100"
4055 echocheck "tga"
4056 if test "$_tga" = yes ; then
4057 def_tga='#define CONFIG_TGA 1'
4058 _vomodules="tga $_vomodules"
4059 else
4060 def_tga='#undef CONFIG_TGA'
4061 _novomodules="tga $_novomodules"
4063 echores "$_tga"
4066 echocheck "md5sum support"
4067 if test "$_md5sum" = yes; then
4068 def_md5sum="#define CONFIG_MD5SUM 1"
4069 _vomodules="md5sum $_vomodules"
4070 else
4071 def_md5sum="#undef CONFIG_MD5SUM"
4072 _novomodules="md5sum $_novomodules"
4074 echores "$_md5sum"
4077 echocheck "yuv4mpeg support"
4078 if test "$_yuv4mpeg" = yes; then
4079 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
4080 _vomodules="yuv4mpeg $_vomodules"
4081 else
4082 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
4083 _novomodules="yuv4mpeg $_novomodules"
4085 echores "$_yuv4mpeg"
4088 echocheck "bl"
4089 if test "$_bl" = yes ; then
4090 def_bl='#define CONFIG_BL 1'
4091 _vomodules="bl $_vomodules"
4092 else
4093 def_bl='#undef CONFIG_BL'
4094 _novomodules="bl $_novomodules"
4096 echores "$_bl"
4099 echocheck "DirectFB"
4100 if test "$_directfb" = auto ; then
4101 _directfb=no
4102 cat > $TMPC <<EOF
4103 #include <directfb.h>
4104 int main(void) { DirectFBInit(0, 0); return 0; }
4106 for _inc_tmp in "" -I/usr/local/include/directfb \
4107 -I/usr/include/directfb -I/usr/local/include; do
4108 cc_check $_inc_tmp -ldirectfb && _directfb=yes && \
4109 extra_cflags="$extra_cflags $_inc_tmp" && break
4110 done
4113 dfb_version() {
4114 expr $1 \* 65536 + $2 \* 256 + $3
4117 if test "$_directfb" = yes; then
4118 cat > $TMPC << EOF
4119 #include <directfb_version.h>
4121 dfb_ver = DIRECTFB_MAJOR_VERSION.DIRECTFB_MINOR_VERSION.DIRECTFB_MICRO_VERSION
4124 if $_cc -E $TMPC $extra_cflags > "$TMPEXE"; then
4125 _directfb_version=$(sed -n 's/^dfb_ver[^0-9]*\(.*\)/\1/p' "$TMPEXE" | tr -d '()')
4126 _dfb_major=$(echo $_directfb_version | cut -d . -f 1)
4127 _dfb_minor=$(echo $_directfb_version | cut -d . -f 2)
4128 _dfb_micro=$(echo $_directfb_version | cut -d . -f 3)
4129 _dfb_version=$(dfb_version $_dfb_major $_dfb_minor $_dfb_micro)
4130 if test "$_dfb_version" -ge $(dfb_version 0 9 13); then
4131 def_directfb_version="#define DIRECTFBVERSION $_dfb_version"
4132 _res_comment="$_directfb_version"
4133 test "$_dfb_version" -ge $(dfb_version 0 9 15) && _dfbmga=yes
4134 else
4135 def_directfb_version='#undef DIRECTFBVERSION'
4136 _directfb=no
4137 _res_comment="version >=0.9.13 required"
4139 else
4140 _directfb=no
4141 _res_comment="failed to get version"
4144 echores "$_directfb"
4146 if test "$_directfb" = yes ; then
4147 def_directfb='#define CONFIG_DIRECTFB 1'
4148 _vomodules="directfb $_vomodules"
4149 libs_mplayer="$libs_mplayer -ldirectfb"
4150 else
4151 def_directfb='#undef CONFIG_DIRECTFB'
4152 _novomodules="directfb $_novomodules"
4154 if test "$_dfbmga" = yes; then
4155 _vomodules="dfbmga $_vomodules"
4156 def_dfbmga='#define CONFIG_DFBMGA 1'
4157 else
4158 _novomodules="dfbmga $_novomodules"
4159 def_dfbmga='#undef CONFIG_DFBMGA'
4163 echocheck "X11 headers presence"
4164 _x11_headers="no"
4165 _res_comment="check if the dev(el) packages are installed"
4166 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
4167 if test -f "$I/X11/Xlib.h" ; then
4168 _x11_headers="yes"
4169 _res_comment=""
4170 break
4172 done
4173 if test $_cross_compile = no; then
4174 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
4175 /usr/include/X11R6 /usr/openwin/include ; do
4176 if test -f "$I/X11/Xlib.h" ; then
4177 extra_cflags="$extra_cflags -I$I"
4178 _x11_headers="yes"
4179 _res_comment="using $I"
4180 break
4182 done
4184 echores "$_x11_headers"
4187 echocheck "X11"
4188 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
4189 cat > $TMPC <<EOF
4190 #include <X11/Xlib.h>
4191 #include <X11/Xutil.h>
4192 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; }
4194 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
4195 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
4196 -L/usr/lib ; do
4197 if netbsd; then
4198 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
4199 else
4200 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
4202 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" \
4203 && _x11=yes && break
4204 done
4206 if test "$_x11" = yes ; then
4207 def_x11='#define CONFIG_X11 1'
4208 _vomodules="x11 xover $_vomodules"
4209 else
4210 _x11=no
4211 def_x11='#undef CONFIG_X11'
4212 _novomodules="x11 $_novomodules"
4213 _res_comment="check if the dev(el) packages are installed"
4214 # disable stuff that depends on X
4215 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
4217 echores "$_x11"
4219 echocheck "Xss screensaver extensions"
4220 if test "$_xss" = auto ; then
4221 cat > $TMPC << EOF
4222 #include <X11/Xlib.h>
4223 #include <X11/extensions/scrnsaver.h>
4224 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
4226 _xss=no
4227 cc_check -lXss && _xss=yes
4229 if test "$_xss" = yes ; then
4230 def_xss='#define CONFIG_XSS 1'
4231 libs_mplayer="$libs_mplayer -lXss"
4232 else
4233 def_xss='#undef CONFIG_XSS'
4235 echores "$_xss"
4237 echocheck "DPMS"
4238 _xdpms3=no
4239 _xdpms4=no
4240 if test "$_x11" = yes ; then
4241 cat > $TMPC <<EOF
4242 #include <X11/Xmd.h>
4243 #include <X11/Xlib.h>
4244 #include <X11/Xutil.h>
4245 #include <X11/Xatom.h>
4246 #include <X11/extensions/dpms.h>
4247 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4249 cc_check -lXdpms && _xdpms3=yes
4250 cat > $TMPC <<EOF
4251 #include <X11/Xlib.h>
4252 #include <X11/extensions/dpms.h>
4253 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4255 cc_check -lXext && _xdpms4=yes
4257 if test "$_xdpms4" = yes ; then
4258 def_xdpms='#define CONFIG_XDPMS 1'
4259 _res_comment="using Xdpms 4"
4260 echores "yes"
4261 elif test "$_xdpms3" = yes ; then
4262 def_xdpms='#define CONFIG_XDPMS 1'
4263 libs_mplayer="$libs_mplayer -lXdpms"
4264 _res_comment="using Xdpms 3"
4265 echores "yes"
4266 else
4267 def_xdpms='#undef CONFIG_XDPMS'
4268 echores "no"
4272 echocheck "Xv"
4273 if test "$_xv" = auto ; then
4274 cat > $TMPC <<EOF
4275 #include <X11/Xlib.h>
4276 #include <X11/extensions/Xvlib.h>
4277 int main(void) {
4278 (void) XvGetPortAttribute(0, 0, 0, 0);
4279 (void) XvQueryPortAttributes(0, 0, 0);
4280 return 0; }
4282 _xv=no
4283 cc_check -lXv && _xv=yes
4286 if test "$_xv" = yes ; then
4287 def_xv='#define CONFIG_XV 1'
4288 libs_mplayer="$libs_mplayer -lXv"
4289 _vomodules="xv $_vomodules"
4290 else
4291 def_xv='#undef CONFIG_XV'
4292 _novomodules="xv $_novomodules"
4294 echores "$_xv"
4297 echocheck "XvMC"
4298 if test "$_xv" = yes && test "$_xvmc" != no ; then
4299 _xvmc=no
4300 cat > $TMPC <<EOF
4301 #include <X11/Xlib.h>
4302 #include <X11/extensions/Xvlib.h>
4303 #include <X11/extensions/XvMClib.h>
4304 int main(void) {
4305 (void) XvMCQueryExtension(0,0,0);
4306 (void) XvMCCreateContext(0,0,0,0,0,0,0);
4307 return 0; }
4309 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
4310 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
4311 done
4313 if test "$_xvmc" = yes ; then
4314 def_xvmc='#define CONFIG_XVMC 1'
4315 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
4316 _vomodules="xvmc $_vomodules"
4317 _res_comment="using $_xvmclib"
4318 else
4319 def_xvmc='#define CONFIG_XVMC 0'
4320 _novomodules="xvmc $_novomodules"
4322 echores "$_xvmc"
4325 echocheck "VDPAU"
4326 if test "$_vdpau" = auto ; then
4327 _vdpau=no
4328 if test "$_dl" = yes ; then
4329 cat > $TMPC <<EOF
4330 #include <vdpau/vdpau_x11.h>
4331 int main(void) {
4332 (void) vdp_device_create_x11(0, 0, 0, 0);
4333 return VDP_VIDEO_MIXER_ATTRIBUTE_SKIP_CHROMA_DEINTERLACE;}
4335 cc_check -lvdpau && _vdpau=yes
4338 if test "$_vdpau" = yes ; then
4339 def_vdpau='#define CONFIG_VDPAU 1'
4340 libs_mplayer="$libs_mplayer -lvdpau"
4341 _vomodules="vdpau $_vomodules"
4342 else
4343 def_vdpau='#define CONFIG_VDPAU 0'
4344 _novomodules="vdpau $_novomodules"
4346 echores "$_vdpau"
4349 echocheck "Xinerama"
4350 if test "$_xinerama" = auto ; then
4351 cat > $TMPC <<EOF
4352 #include <X11/Xlib.h>
4353 #include <X11/extensions/Xinerama.h>
4354 int main(void) { (void) XineramaIsActive(0); return 0; }
4356 _xinerama=no
4357 cc_check -lXinerama && _xinerama=yes
4360 if test "$_xinerama" = yes ; then
4361 def_xinerama='#define CONFIG_XINERAMA 1'
4362 libs_mplayer="$libs_mplayer -lXinerama"
4363 else
4364 def_xinerama='#undef CONFIG_XINERAMA'
4366 echores "$_xinerama"
4369 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4370 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4371 # named 'X extensions' or something similar.
4372 # This check may be useful for future mplayer versions (to change resolution)
4373 # If you run into problems, remove '-lXxf86vm'.
4374 echocheck "Xxf86vm"
4375 if test "$_vm" = auto ; then
4376 cat > $TMPC <<EOF
4377 #include <X11/Xlib.h>
4378 #include <X11/extensions/xf86vmode.h>
4379 int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; }
4381 _vm=no
4382 cc_check -lXxf86vm && _vm=yes
4384 if test "$_vm" = yes ; then
4385 def_vm='#define CONFIG_XF86VM 1'
4386 libs_mplayer="$libs_mplayer -lXxf86vm"
4387 else
4388 def_vm='#undef CONFIG_XF86VM'
4390 echores "$_vm"
4392 # Check for the presence of special keycodes, like audio control buttons
4393 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4394 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4395 # have these new keycodes.
4396 echocheck "XF86keysym"
4397 if test "$_xf86keysym" = auto; then
4398 _xf86keysym=no
4399 cat > $TMPC <<EOF
4400 #include <X11/Xlib.h>
4401 #include <X11/XF86keysym.h>
4402 int main(void) { return XF86XK_AudioPause; }
4404 cc_check && _xf86keysym=yes
4406 if test "$_xf86keysym" = yes ; then
4407 def_xf86keysym='#define CONFIG_XF86XK 1'
4408 else
4409 def_xf86keysym='#undef CONFIG_XF86XK'
4411 echores "$_xf86keysym"
4413 echocheck "DGA"
4414 if test "$_dga2" = auto && test "$_x11" = yes ; then
4415 cat > $TMPC << EOF
4416 #include <X11/Xlib.h>
4417 #include <X11/extensions/xf86dga.h>
4418 int main(void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4420 _dga2=no
4421 cc_check -lXxf86dga && _dga2=yes
4423 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4424 cat > $TMPC << EOF
4425 #include <X11/Xlib.h>
4426 #include <X11/extensions/xf86dga.h>
4427 int main(void) { (void) XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4429 _dga1=no
4430 cc_check -lXxf86dga -lXxf86vm && _dga1=yes
4433 _dga=no
4434 def_dga='#undef CONFIG_DGA'
4435 def_dga1='#undef CONFIG_DGA1'
4436 def_dga2='#undef CONFIG_DGA2'
4437 if test "$_dga1" = yes ; then
4438 _dga=yes
4439 def_dga1='#define CONFIG_DGA1 1'
4440 _res_comment="using DGA 1.0"
4441 elif test "$_dga2" = yes ; then
4442 _dga=yes
4443 def_dga2='#define CONFIG_DGA2 1'
4444 _res_comment="using DGA 2.0"
4446 if test "$_dga" = yes ; then
4447 def_dga='#define CONFIG_DGA 1'
4448 libs_mplayer="$libs_mplayer -lXxf86dga"
4449 _vomodules="dga $_vomodules"
4450 else
4451 _novomodules="dga $_novomodules"
4453 echores "$_dga"
4456 echocheck "3dfx"
4457 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4458 def_3dfx='#define CONFIG_3DFX 1'
4459 _vomodules="3dfx $_vomodules"
4460 else
4461 def_3dfx='#undef CONFIG_3DFX'
4462 _novomodules="3dfx $_novomodules"
4464 echores "$_3dfx"
4467 echocheck "VIDIX"
4468 def_vidix='#undef CONFIG_VIDIX'
4469 def_vidix_drv_cyberblade='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4470 _vidix_drv_cyberblade=no
4471 def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4472 _vidix_drv_ivtv=no
4473 def_vidix_drv_mach64='#undef CONFIG_VIDIX_DRV_MACH64'
4474 _vidix_drv_mach64=no
4475 def_vidix_drv_mga='#undef CONFIG_VIDIX_DRV_MGA'
4476 _vidix_drv_mga=no
4477 def_vidix_drv_mga_crtc2='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4478 _vidix_drv_mga_crtc2=no
4479 def_vidix_drv_nvidia='#undef CONFIG_VIDIX_DRV_NVIDIA'
4480 _vidix_drv_nvidia=no
4481 def_vidix_drv_pm2='#undef CONFIG_VIDIX_DRV_PM2'
4482 _vidix_drv_pm2=no
4483 def_vidix_drv_pm3='#undef CONFIG_VIDIX_DRV_PM3'
4484 _vidix_drv_pm3=no
4485 def_vidix_drv_radeon='#undef CONFIG_VIDIX_DRV_RADEON'
4486 _vidix_drv_radeon=no
4487 def_vidix_drv_rage128='#undef CONFIG_VIDIX_DRV_RAGE128'
4488 _vidix_drv_rage128=no
4489 def_vidix_drv_s3='#undef CONFIG_VIDIX_DRV_S3'
4490 _vidix_drv_s3=no
4491 def_vidix_drv_sh_veu='#undef CONFIG_VIDIX_DRV_SH_VEU'
4492 _vidix_drv_sh_veu=no
4493 def_vidix_drv_sis='#undef CONFIG_VIDIX_DRV_SIS'
4494 _vidix_drv_sis=no
4495 def_vidix_drv_unichrome='#undef CONFIG_VIDIX_DRV_UNICHROME'
4496 _vidix_drv_unichrome=no
4497 if test "$_vidix" = auto ; then
4498 _vidix=no
4499 x86 && (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32) \
4500 && _vidix=yes
4501 x86_64 && ! linux && _vidix=no
4502 (ppc || alpha) && linux && _vidix=yes
4504 echores "$_vidix"
4506 if test "$_vidix" = yes ; then
4507 def_vidix='#define CONFIG_VIDIX 1'
4508 _vomodules="cvidix $_vomodules"
4509 # FIXME: ivtv driver temporarily disabled until we have a proper test
4510 #test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4511 test "$_vidix_drivers" || _vidix_drivers="cyberblade mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4513 # some vidix drivers are architecture and os specific, discard them elsewhere
4514 x86 || _vidix_drivers=$(echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome// -e s/s3//)
4515 (test $host_arch = "sh" && linux) || _vidix_drivers=$(echo $_vidix_drivers | sed s/sh_veu//)
4517 for driver in $_vidix_drivers ; do
4518 uc_driver=$(echo $driver | tr '[a-z]' '[A-Z]')
4519 eval _vidix_drv_${driver}=yes
4520 eval def_vidix_drv_${driver}=\"\#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4521 done
4523 echocheck "VIDIX PCI device name database"
4524 echores "$_vidix_pcidb"
4525 if test "$_vidix_pcidb" = yes ; then
4526 _vidix_pcidb_val=1
4527 else
4528 _vidix_pcidb_val=0
4531 echocheck "VIDIX dhahelper support"
4532 test "$_dhahelper" = yes && cflags_dhahelper=-DCONFIG_DHAHELPER
4533 echores "$_dhahelper"
4535 echocheck "VIDIX svgalib_helper support"
4536 test "$_svgalib_helper" = yes && cflags_svgalib_helper=-DCONFIG_SVGAHELPER
4537 echores "$_svgalib_helper"
4539 else
4540 _novomodules="cvidix $_novomodules"
4543 if test "$_vidix" = yes && win32; then
4544 winvidix=yes
4545 _vomodules="winvidix $_vomodules"
4546 libs_mplayer="$libs_mplayer -lgdi32"
4547 else
4548 _novomodules="winvidix $_novomodules"
4550 if test "$_vidix" = yes && test "$_x11" = yes; then
4551 xvidix=yes
4552 _vomodules="xvidix $_vomodules"
4553 else
4554 _novomodules="xvidix $_novomodules"
4557 echocheck "GGI"
4558 if test "$_ggi" = auto ; then
4559 cat > $TMPC << EOF
4560 #include <ggi/ggi.h>
4561 int main(void) { ggiInit(); return 0; }
4563 _ggi=no
4564 cc_check -lggi && _ggi=yes
4566 if test "$_ggi" = yes ; then
4567 def_ggi='#define CONFIG_GGI 1'
4568 libs_mplayer="$libs_mplayer -lggi"
4569 _vomodules="ggi $_vomodules"
4570 else
4571 def_ggi='#undef CONFIG_GGI'
4572 _novomodules="ggi $_novomodules"
4574 echores "$_ggi"
4576 echocheck "GGI extension: libggiwmh"
4577 if test "$_ggiwmh" = auto ; then
4578 _ggiwmh=no
4579 cat > $TMPC << EOF
4580 #include <ggi/ggi.h>
4581 #include <ggi/wmh.h>
4582 int main(void) { ggiInit(); ggiWmhInit(); return 0; }
4584 cc_check -lggi -lggiwmh && _ggiwmh=yes
4586 # needed to get right output on obscure combination
4587 # like --disable-ggi --enable-ggiwmh
4588 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4589 def_ggiwmh='#define CONFIG_GGIWMH 1'
4590 libs_mplayer="$libs_mplayer -lggiwmh"
4591 else
4592 _ggiwmh=no
4593 def_ggiwmh='#undef CONFIG_GGIWMH'
4595 echores "$_ggiwmh"
4598 echocheck "AA"
4599 if test "$_aa" = auto ; then
4600 cat > $TMPC << EOF
4601 #include <aalib.h>
4602 extern struct aa_hardware_params aa_defparams;
4603 extern struct aa_renderparams aa_defrenderparams;
4604 int main(void) {
4605 aa_context *c;
4606 aa_renderparams *p;
4607 (void) aa_init(0, 0, 0);
4608 c = aa_autoinit(&aa_defparams);
4609 p = aa_getrenderparams();
4610 aa_autoinitkbd(c,0);
4611 return 0; }
4613 _aa=no
4614 for _ld_tmp in "-laa" ; do
4615 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4616 done
4618 if test "$_aa" = yes ; then
4619 def_aa='#define CONFIG_AA 1'
4620 if cygwin ; then
4621 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4623 _vomodules="aa $_vomodules"
4624 else
4625 def_aa='#undef CONFIG_AA'
4626 _novomodules="aa $_novomodules"
4628 echores "$_aa"
4631 echocheck "CACA"
4632 if test "$_caca" = auto ; then
4633 _caca=no
4634 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4635 cat > $TMPC << EOF
4636 #include <caca.h>
4637 #ifdef CACA_API_VERSION_1
4638 #include <caca0.h>
4639 #endif
4640 int main(void) { (void) caca_init(); return 0; }
4642 cc_check $(caca-config --libs) && _caca=yes
4645 if test "$_caca" = yes ; then
4646 def_caca='#define CONFIG_CACA 1'
4647 extra_cflags="$extra_cflags $(caca-config --cflags)"
4648 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4649 _vomodules="caca $_vomodules"
4650 else
4651 def_caca='#undef CONFIG_CACA'
4652 _novomodules="caca $_novomodules"
4654 echores "$_caca"
4657 echocheck "SVGAlib"
4658 if test "$_svga" = auto ; then
4659 cat > $TMPC << EOF
4660 #include <vga.h>
4661 int main(void) { return 0; }
4663 _svga=no
4664 cc_check -lvga $_ld_lm && _svga=yes
4666 if test "$_svga" = yes ; then
4667 def_svga='#define CONFIG_SVGALIB 1'
4668 libs_mplayer="$libs_mplayer -lvga"
4669 _vomodules="svga $_vomodules"
4670 else
4671 def_svga='#undef CONFIG_SVGALIB'
4672 _novomodules="svga $_novomodules"
4674 echores "$_svga"
4677 echocheck "FBDev"
4678 if test "$_fbdev" = auto ; then
4679 _fbdev=no
4680 linux && _fbdev=yes
4682 if test "$_fbdev" = yes ; then
4683 def_fbdev='#define CONFIG_FBDEV 1'
4684 _vomodules="fbdev $_vomodules"
4685 else
4686 def_fbdev='#undef CONFIG_FBDEV'
4687 _novomodules="fbdev $_novomodules"
4689 echores "$_fbdev"
4693 echocheck "DVB"
4694 if test "$_dvb" = auto ; then
4695 _dvb=no
4696 cat >$TMPC << EOF
4697 #include <poll.h>
4698 #include <sys/ioctl.h>
4699 #include <stdio.h>
4700 #include <time.h>
4701 #include <unistd.h>
4702 #include <linux/dvb/dmx.h>
4703 #include <linux/dvb/frontend.h>
4704 #include <linux/dvb/video.h>
4705 #include <linux/dvb/audio.h>
4706 int main(void) {return 0;}
4708 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4709 cc_check $_inc_tmp && _dvb=yes && \
4710 extra_cflags="$extra_cflags $_inc_tmp" && break
4711 done
4713 echores "$_dvb"
4714 if test "$_dvb" = yes ; then
4715 _dvbin=yes
4716 _inputmodules="dvb $_inputmodules"
4717 def_dvb='#define CONFIG_DVB 1'
4718 def_dvbin='#define CONFIG_DVBIN 1'
4719 _aomodules="mpegpes(dvb) $_aomodules"
4720 _vomodules="mpegpes(dvb) $_vomodules"
4721 else
4722 _dvbin=no
4723 _noinputmodules="dvb $_noinputmodules"
4724 def_dvb='#undef CONFIG_DVB'
4725 def_dvbin='#undef CONFIG_DVBIN '
4726 _aomodules="mpegpes(file) $_aomodules"
4727 _vomodules="mpegpes(file) $_vomodules"
4731 if darwin; then
4733 echocheck "QuickTime"
4734 if test "$quicktime" = auto ; then
4735 cat > $TMPC <<EOF
4736 #include <QuickTime/QuickTime.h>
4737 int main(void) {
4738 ImageDescription *desc;
4739 EnterMovies();
4740 ExitMovies();
4741 return 0;
4744 quicktime=no
4745 cc_check -framework QuickTime && quicktime=yes
4747 if test "$quicktime" = yes ; then
4748 extra_ldflags="$extra_ldflags -framework QuickTime"
4749 def_quicktime='#define CONFIG_QUICKTIME 1'
4750 else
4751 def_quicktime='#undef CONFIG_QUICKTIME'
4752 _quartz=no
4754 echores $quicktime
4756 echocheck "Quartz"
4757 if test "$_quartz" = auto ; then
4758 cat > $TMPC <<EOF
4759 #include <Carbon/Carbon.h>
4760 int main(void) {
4761 CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false);
4762 return 0;
4765 _quartz=no
4766 cc_check -framework Carbon && _quartz=yes
4768 if test "$_quartz" = yes ; then
4769 libs_mplayer="$libs_mplayer -framework Carbon"
4770 def_quartz='#define CONFIG_QUARTZ 1'
4771 _vomodules="quartz $_vomodules"
4772 else
4773 def_quartz='#undef CONFIG_QUARTZ'
4774 _novomodules="quartz $_novomodules"
4776 echores $_quartz
4778 echocheck "CoreVideo"
4779 if test "$_corevideo" = auto ; then
4780 cat > $TMPC <<EOF
4781 #include <Carbon/Carbon.h>
4782 #include <CoreServices/CoreServices.h>
4783 #include <OpenGL/OpenGL.h>
4784 #include <QuartzCore/CoreVideo.h>
4785 int main(void) { return 0; }
4787 _corevideo=no
4788 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4790 if test "$_corevideo" = yes ; then
4791 _vomodules="corevideo $_vomodules"
4792 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4793 def_corevideo='#define CONFIG_COREVIDEO 1'
4794 else
4795 _novomodules="corevideo $_novomodules"
4796 def_corevideo='#undef CONFIG_COREVIDEO'
4798 echores "$_corevideo"
4800 fi #if darwin
4803 # make sure this stays below CoreVideo to avoid issues due to namespace
4804 # conflicts between -lGL and -framework OpenGL
4805 echocheck "OpenGL"
4806 #Note: this test is run even with --enable-gl since we autodetect linker flags
4807 if (test "$_x11" = yes || win32) && test "$_gl" != no ; then
4808 cat > $TMPC << EOF
4809 #ifdef GL_WIN32
4810 #include <windows.h>
4811 #include <GL/gl.h>
4812 #else
4813 #include <GL/gl.h>
4814 #include <X11/Xlib.h>
4815 #include <GL/glx.h>
4816 #endif
4817 int main(void) {
4818 #ifdef GL_WIN32
4819 HDC dc;
4820 wglCreateContext(dc);
4821 #else
4822 glXCreateContext(NULL, NULL, NULL, True);
4823 #endif
4824 glFinish();
4825 return 0;
4828 _gl=no
4829 for _ld_tmp in -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
4830 if cc_check $_ld_tmp $_ld_lm ; then
4831 _gl=yes
4832 _gl_x11=yes
4833 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
4834 break
4836 done
4837 if cc_check -DGL_WIN32 -lopengl32 ; then
4838 _gl=yes
4839 _gl_win32=yes
4840 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
4842 else
4843 _gl=no
4845 if test "$_gl" = yes ; then
4846 def_gl='#define CONFIG_GL 1'
4847 _res_comment="backends:"
4848 if test "$_gl_win32" = yes ; then
4849 def_gl_win32='#define CONFIG_GL_WIN32 1'
4850 _res_comment="$_res_comment win32"
4852 if test "$_gl_x11" = yes ; then
4853 def_gl_x11='#define CONFIG_GL_X11 1'
4854 _res_comment="$_res_comment x11"
4856 _vomodules="opengl $_vomodules"
4857 else
4858 def_gl='#undef CONFIG_GL'
4859 def_gl_win32='#undef CONFIG_GL_WIN32'
4860 def_gl_x11='#undef CONFIG_GL_X11'
4861 _novomodules="opengl $_novomodules"
4863 echores "$_gl"
4866 echocheck "MatrixView"
4867 if test "$_gl" = no ; then
4868 matrixview=no
4870 if test "$matrixview" = yes ; then
4871 _vomodules="matrixview $_vomodules"
4872 def_matrixview='#define CONFIG_MATRIXVIEW 1'
4873 else
4874 _novomodules="matrixview $_novomodules"
4875 def_matrixview='#undef CONFIG_MATRIXVIEW'
4877 echores "$matrixview"
4880 echocheck "PNG support"
4881 if test "$_png" = auto ; then
4882 _png=no
4883 if irix ; then
4884 # Don't check for -lpng on irix since it has its own libpng
4885 # incompatible with the GNU libpng
4886 _res_comment="disabled on irix (not GNU libpng)"
4887 else
4888 cat > $TMPC << EOF
4889 #include <png.h>
4890 #include <string.h>
4891 int main(void) {
4892 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4893 printf("libpng: %s\n", png_libpng_ver);
4894 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4897 cc_check -lpng -lz $_ld_lm && _png=yes
4900 echores "$_png"
4901 if test "$_png" = yes ; then
4902 def_png='#define CONFIG_PNG 1'
4903 extra_ldflags="$extra_ldflags -lpng -lz"
4904 else
4905 def_png='#undef CONFIG_PNG'
4908 echocheck "MNG support"
4909 if test "$_mng" = auto ; then
4910 _mng=no
4911 cat > $TMPC << EOF
4912 #include <libmng.h>
4913 int main(void) {
4914 const char * p_ver = mng_version_text();
4915 return !p_ver || p_ver[0] == 0;
4918 if cc_check -lmng -lz $_ld_lm ; then
4919 _mng=yes
4922 echores "$_mng"
4923 if test "$_mng" = yes ; then
4924 def_mng='#define CONFIG_MNG 1'
4925 extra_ldflags="$extra_ldflags -lmng -lz"
4926 else
4927 def_mng='#undef CONFIG_MNG'
4930 echocheck "JPEG support"
4931 if test "$_jpeg" = auto ; then
4932 _jpeg=no
4933 cat > $TMPC << EOF
4934 #include <stdio.h>
4935 #include <stdlib.h>
4936 #include <setjmp.h>
4937 #include <string.h>
4938 #include <jpeglib.h>
4939 int main(void) { return 0; }
4941 cc_check -ljpeg $_ld_lm && _jpeg=yes
4943 echores "$_jpeg"
4945 if test "$_jpeg" = yes ; then
4946 def_jpeg='#define CONFIG_JPEG 1'
4947 _vomodules="jpeg $_vomodules"
4948 extra_ldflags="$extra_ldflags -ljpeg"
4949 else
4950 def_jpeg='#undef CONFIG_JPEG'
4951 _novomodules="jpeg $_novomodules"
4956 echocheck "PNM support"
4957 if test "$_pnm" = yes; then
4958 def_pnm="#define CONFIG_PNM 1"
4959 _vomodules="pnm $_vomodules"
4960 else
4961 def_pnm="#undef CONFIG_PNM"
4962 _novomodules="pnm $_novomodules"
4964 echores "$_pnm"
4968 echocheck "GIF support"
4969 # This is to appease people who want to force gif support.
4970 # If it is forced to yes, then we still do checks to determine
4971 # which gif library to use.
4972 if test "$_gif" = yes ; then
4973 _force_gif=yes
4974 _gif=auto
4977 if test "$_gif" = auto ; then
4978 _gif=no
4979 cat > $TMPC << EOF
4980 #include <gif_lib.h>
4981 int main(void) { return 0; }
4983 for _ld_gif in "-lungif" "-lgif" ; do
4984 cc_check $_ld_gif && _gif=yes && break
4985 done
4988 # If no library was found, and the user wants support forced,
4989 # then we force it on with libgif, as this is the safest
4990 # assumption IMHO. (libungif & libregif both create symbolic
4991 # links to libgif. We also assume that no x11 support is needed,
4992 # because if you are forcing this, then you _should_ know what
4993 # you are doing. [ Besides, package maintainers should never
4994 # have compiled x11 deps into libungif in the first place. ] )
4995 # </rant>
4996 # --Joey
4997 if test "$_force_gif" = yes && test "$_gif" = no ; then
4998 _gif=yes
4999 _ld_gif="-lgif"
5002 if test "$_gif" = yes ; then
5003 def_gif='#define CONFIG_GIF 1'
5004 _codecmodules="gif $_codecmodules"
5005 _vomodules="gif89a $_vomodules"
5006 _res_comment="old version, some encoding functions disabled"
5007 def_gif_4='#undef CONFIG_GIF_4'
5008 extra_ldflags="$extra_ldflags $_ld_gif"
5010 cat > $TMPC << EOF
5011 #include <signal.h>
5012 #include <gif_lib.h>
5013 void catch() { exit(1); }
5014 int main(void) {
5015 signal(SIGSEGV, catch); // catch segfault
5016 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
5017 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
5018 return 0;
5021 if cc_check "$_ld_gif" ; then
5022 def_gif_4='#define CONFIG_GIF_4 1'
5023 _res_comment=""
5025 else
5026 def_gif='#undef CONFIG_GIF'
5027 def_gif_4='#undef CONFIG_GIF_4'
5028 _novomodules="gif89a $_novomodules"
5029 _nocodecmodules="gif $_nocodecmodules"
5031 echores "$_gif"
5034 case "$_gif" in yes*)
5035 echocheck "broken giflib workaround"
5036 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
5038 cat > $TMPC << EOF
5039 #include <gif_lib.h>
5040 int main(void) {
5041 GifFileType gif;
5042 printf("UserData is at address %p\n", gif.UserData);
5043 return 0;
5046 if cc_check "$_ld_gif" ; then
5047 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
5048 echores "disabled"
5049 else
5050 echores "enabled"
5053 esac
5056 echocheck "VESA support"
5057 if test "$_vesa" = auto ; then
5058 cat > $TMPC << EOF
5059 #include <vbe.h>
5060 int main(void) { vbeVersion(); return 0; }
5062 _vesa=no
5063 cc_check -lvbe -llrmi && _vesa=yes
5065 if test "$_vesa" = yes ; then
5066 def_vesa='#define CONFIG_VESA 1'
5067 libs_mplayer="$libs_mplayer -lvbe -llrmi"
5068 _vomodules="vesa $_vomodules"
5069 else
5070 def_vesa='#undef CONFIG_VESA'
5071 _novomodules="vesa $_novomodules"
5073 echores "$_vesa"
5075 #################
5076 # VIDEO + AUDIO #
5077 #################
5080 echocheck "SDL"
5081 _inc_tmp=""
5082 _ld_tmp=""
5083 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
5084 if test -z "$_sdlconfig" ; then
5085 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
5086 _sdlconfig="sdl-config"
5087 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
5088 _sdlconfig="sdl11-config"
5089 else
5090 _sdlconfig=false
5093 if test "$_sdl" = auto || test "$_sdl" = yes ; then
5094 cat > $TMPC << EOF
5095 #ifdef CONFIG_SDL_SDL_H
5096 #include <SDL/SDL.h>
5097 #else
5098 #include <SDL.h>
5099 #endif
5100 #ifndef __APPLE__
5101 // we allow SDL hacking our main() only on OSX
5102 #undef main
5103 #endif
5104 int main(int argc, char *argv[]) {
5105 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
5106 return 0;
5109 _sdl=no
5110 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
5111 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
5112 _sdl=yes
5113 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
5114 break
5116 done
5117 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
5118 _res_comment="using $_sdlconfig"
5119 if cygwin ; then
5120 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
5121 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
5122 elif mingw32 ; then
5123 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
5124 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
5125 else
5126 _inc_tmp="$($_sdlconfig --cflags)"
5127 _ld_tmp="$($_sdlconfig --libs)"
5129 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
5130 _sdl=yes
5134 if test "$_sdl" = yes ; then
5135 def_sdl='#define CONFIG_SDL 1'
5136 extra_cflags="$extra_cflags $_inc_tmp"
5137 libs_mplayer="$libs_mplayer $_ld_tmp"
5138 _vomodules="sdl $_vomodules"
5139 _aomodules="sdl $_aomodules"
5140 else
5141 def_sdl='#undef CONFIG_SDL'
5142 _novomodules="sdl $_novomodules"
5143 _noaomodules="sdl $_noaomodules"
5145 echores "$_sdl"
5148 if os2 ; then
5149 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
5150 if test "$_kva" = auto; then
5151 cat > $TMPC << EOF
5152 #include <os2.h>
5153 #include <kva.h>
5154 int main( void ) { return 0; }
5156 _kva=no;
5157 cc_check -lkva && _kva=yes
5159 if test "$_kva" = yes ; then
5160 def_kva='#define CONFIG_KVA 1'
5161 libs_mplayer="$libs_mplayer -lkva"
5162 _vomodules="kva $_vomodules"
5163 else
5164 def_kva='#undef CONFIG_KVA'
5165 _novomodules="kva $_novomodules"
5167 echores "$_kva"
5168 fi #if os2
5171 if win32; then
5173 echocheck "Windows waveout"
5174 if test "$_win32waveout" = auto ; then
5175 cat > $TMPC << EOF
5176 #include <windows.h>
5177 #include <mmsystem.h>
5178 int main(void) { return 0; }
5180 _win32waveout=no
5181 cc_check -lwinmm && _win32waveout=yes
5183 if test "$_win32waveout" = yes ; then
5184 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
5185 libs_mplayer="$libs_mplayer -lwinmm"
5186 _aomodules="win32 $_aomodules"
5187 else
5188 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
5189 _noaomodules="win32 $_noaomodules"
5191 echores "$_win32waveout"
5193 echocheck "Direct3D"
5194 if test "$_direct3d" = auto ; then
5195 cat > $TMPC << EOF
5196 #include <windows.h>
5197 #include <d3d9.h>
5198 int main(void) { return 0; }
5200 _direct3d=no
5201 cc_check && _direct3d=yes
5203 if test "$_direct3d" = yes ; then
5204 def_direct3d='#define CONFIG_DIRECT3D 1'
5205 _vomodules="direct3d $_vomodules"
5206 else
5207 def_direct3d='#undef CONFIG_DIRECT3D'
5208 _novomodules="direct3d $_novomodules"
5210 echores "$_direct3d"
5212 echocheck "Directx"
5213 if test "$_directx" = auto ; then
5214 cat > $TMPC << EOF
5215 #include <windows.h>
5216 #include <ddraw.h>
5217 #include <dsound.h>
5218 int main(void) { return 0; }
5220 _directx=no
5221 cc_check -lgdi32 && _directx=yes
5223 if test "$_directx" = yes ; then
5224 def_directx='#define CONFIG_DIRECTX 1'
5225 libs_mplayer="$libs_mplayer -lgdi32"
5226 _vomodules="directx $_vomodules"
5227 _aomodules="dsound $_aomodules"
5228 else
5229 def_directx='#undef CONFIG_DIRECTX'
5230 _novomodules="directx $_novomodules"
5231 _noaomodules="dsound $_noaomodules"
5233 echores "$_directx"
5235 fi #if win32; then
5238 echocheck "DXR2"
5239 if test "$_dxr2" = auto; then
5240 _dxr2=no
5241 cat > $TMPC << EOF
5242 #include <dxr2ioctl.h>
5243 int main(void) { return 0; }
5245 for _inc_tmp in "" -I/usr/local/include/dxr2 -I/usr/include/dxr2; do
5246 cc_check $_inc_tmp && _dxr2=yes && \
5247 extra_cflags="$extra_cflags $_inc_tmp" && break
5248 done
5250 if test "$_dxr2" = yes; then
5251 def_dxr2='#define CONFIG_DXR2 1'
5252 _aomodules="dxr2 $_aomodules"
5253 _vomodules="dxr2 $_vomodules"
5254 else
5255 def_dxr2='#undef CONFIG_DXR2'
5256 _noaomodules="dxr2 $_noaomodules"
5257 _novomodules="dxr2 $_novomodules"
5259 echores "$_dxr2"
5261 echocheck "DXR3/H+"
5262 if test "$_dxr3" = auto ; then
5263 cat > $TMPC << EOF
5264 #include <linux/em8300.h>
5265 int main(void) { return 0; }
5267 _dxr3=no
5268 cc_check && _dxr3=yes
5270 if test "$_dxr3" = yes ; then
5271 def_dxr3='#define CONFIG_DXR3 1'
5272 _vomodules="dxr3 $_vomodules"
5273 else
5274 def_dxr3='#undef CONFIG_DXR3'
5275 _novomodules="dxr3 $_novomodules"
5277 echores "$_dxr3"
5280 echocheck "IVTV TV-Out (pre linux-2.6.24)"
5281 if test "$_ivtv" = auto ; then
5282 cat > $TMPC << EOF
5283 #include <stdlib.h>
5284 #include <inttypes.h>
5285 #include <linux/types.h>
5286 #include <linux/videodev2.h>
5287 #include <linux/ivtv.h>
5288 #include <sys/ioctl.h>
5289 int main(void) {
5290 struct ivtv_cfg_stop_decode sd;
5291 struct ivtv_cfg_start_decode sd1;
5292 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
5293 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
5294 return 0; }
5296 _ivtv=no
5297 cc_check && _ivtv=yes
5299 if test "$_ivtv" = yes ; then
5300 def_ivtv='#define CONFIG_IVTV 1'
5301 _vomodules="ivtv $_vomodules"
5302 _aomodules="ivtv $_aomodules"
5303 else
5304 def_ivtv='#undef CONFIG_IVTV'
5305 _novomodules="ivtv $_novomodules"
5306 _noaomodules="ivtv $_noaomodules"
5308 echores "$_ivtv"
5311 echocheck "V4L2 MPEG Decoder"
5312 if test "$_v4l2" = auto ; then
5313 cat > $TMPC << EOF
5314 #include <stdlib.h>
5315 #include <inttypes.h>
5316 #include <linux/types.h>
5317 #include <linux/videodev2.h>
5318 #include <linux/version.h>
5319 int main(void) {
5320 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
5321 #error kernel headers too old, need 2.6.22
5322 #endif
5323 struct v4l2_ext_controls ctrls;
5324 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
5325 return 0;
5328 _v4l2=no
5329 cc_check && _v4l2=yes
5331 if test "$_v4l2" = yes ; then
5332 def_v4l2='#define CONFIG_V4L2_DECODER 1'
5333 _vomodules="v4l2 $_vomodules"
5334 _aomodules="v4l2 $_aomodules"
5335 else
5336 def_v4l2='#undef CONFIG_V4L2_DECODER'
5337 _novomodules="v4l2 $_novomodules"
5338 _noaomodules="v4l2 $_noaomodules"
5340 echores "$_v4l2"
5344 #########
5345 # AUDIO #
5346 #########
5349 echocheck "OSS Audio"
5350 if test "$_ossaudio" = auto ; then
5351 cat > $TMPC << EOF
5352 #include <sys/ioctl.h>
5353 #include <$_soundcard_header>
5354 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
5356 _ossaudio=no
5357 cc_check && _ossaudio=yes
5359 if test "$_ossaudio" = yes ; then
5360 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
5361 _aomodules="oss $_aomodules"
5362 if test "$_linux_devfs" = yes; then
5363 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound/dsp"'
5364 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/sound/mixer"'
5365 else
5366 cat > $TMPC << EOF
5367 #include <sys/ioctl.h>
5368 #include <$_soundcard_header>
5369 #ifdef OPEN_SOUND_SYSTEM
5370 int main(void) { return 0; }
5371 #else
5372 #error Not the real thing
5373 #endif
5375 _real_ossaudio=no
5376 cc_check && _real_ossaudio=yes
5377 if test "$_real_ossaudio" = yes; then
5378 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5379 # Check for OSS4 headers (override default headers)
5380 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
5381 if test -f /etc/oss.conf; then
5382 . /etc/oss.conf
5383 _ossinc="$OSSLIBDIR/include"
5384 if test -f "$_ossinc/sys/soundcard.h"; then
5385 extra_cflags="-I$_ossinc $extra_cflags"
5388 elif netbsd || openbsd ; then
5389 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
5390 extra_ldflags="$extra_ldflags -lossaudio"
5391 else
5392 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5394 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
5396 else
5397 def_ossaudio='#undef CONFIG_OSS_AUDIO'
5398 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
5399 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
5400 _noaomodules="oss $_noaomodules"
5402 echores "$_ossaudio"
5405 echocheck "aRts"
5406 if test "$_arts" = auto ; then
5407 _arts=no
5408 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
5410 cat > $TMPC << EOF
5411 #include <artsc.h>
5412 int main(void) { return 0; }
5414 cc_check $(artsc-config --libs) $(artsc-config --cflags) && _arts=yes
5419 if test "$_arts" = yes ; then
5420 def_arts='#define CONFIG_ARTS 1'
5421 _aomodules="arts $_aomodules"
5422 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
5423 extra_cflags="$extra_cflags $(artsc-config --cflags)"
5424 else
5425 _noaomodules="arts $_noaomodules"
5427 echores "$_arts"
5430 echocheck "EsounD"
5431 if test "$_esd" = auto ; then
5432 _esd=no
5433 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
5435 cat > $TMPC << EOF
5436 #include <esd.h>
5437 int main(void) { int fd = esd_open_sound("test"); return fd; }
5439 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd=yes
5443 echores "$_esd"
5445 if test "$_esd" = yes ; then
5446 def_esd='#define CONFIG_ESD 1'
5447 _aomodules="esd $_aomodules"
5448 libs_mplayer="$libs_mplayer $(esd-config --libs)"
5449 extra_cflags="$extra_cflags $(esd-config --cflags)"
5451 echocheck "esd_get_latency()"
5452 cat > $TMPC << EOF
5453 #include <esd.h>
5454 int main(void) { return esd_get_latency(0); }
5456 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
5457 echores "$_esd_latency"
5458 else
5459 def_esd='#undef CONFIG_ESD'
5460 def_esd_latency='#undef CONFIG_ESD_LATENCY'
5461 _noaomodules="esd $_noaomodules"
5465 echocheck "NAS"
5466 if test "$_nas" = auto ; then
5467 cat > $TMPC << EOF
5468 #include <audio/audiolib.h>
5469 int main(void) { return 0; }
5471 _nas=no
5472 cc_check $_ld_lm -laudio -lXt && _nas=yes
5474 if test "$_nas" = yes ; then
5475 def_nas='#define CONFIG_NAS 1'
5476 libs_mplayer="$libs_mplayer -laudio -lXt"
5477 _aomodules="nas $_aomodules"
5478 else
5479 _noaomodules="nas $_noaomodules"
5480 def_nas='#undef CONFIG_NAS'
5482 echores "$_nas"
5485 echocheck "pulse"
5486 if test "$_pulse" = auto ; then
5487 _pulse=no
5488 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5490 cat > $TMPC << EOF
5491 #include <pulse/pulseaudio.h>
5492 int main(void) { return 0; }
5494 cc_check $($_pkg_config --libs --cflags libpulse) && _pulse=yes
5498 echores "$_pulse"
5500 if test "$_pulse" = yes ; then
5501 def_pulse='#define CONFIG_PULSE 1'
5502 _aomodules="pulse $_aomodules"
5503 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
5504 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
5505 else
5506 def_pulse='#undef CONFIG_PULSE'
5507 _noaomodules="pulse $_noaomodules"
5511 echocheck "JACK"
5512 if test "$_jack" = auto ; then
5513 _jack=yes
5515 cat > $TMPC << EOF
5516 #include <jack/jack.h>
5517 int main(void) { jack_client_open("test", JackUseExactName, NULL); return 0; }
5519 if cc_check -ljack ; then
5520 libs_mplayer="$libs_mplayer -ljack"
5521 elif cc_check $($_pkg_config --libs --cflags --silence-errors jack) ; then
5522 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
5523 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
5524 else
5525 _jack=no
5529 if test "$_jack" = yes ; then
5530 def_jack='#define CONFIG_JACK 1'
5531 _aomodules="jack $_aomodules"
5532 else
5533 _noaomodules="jack $_noaomodules"
5535 echores "$_jack"
5537 echocheck "OpenAL"
5538 if test "$_openal" = auto ; then
5539 _openal=no
5540 cat > $TMPC << EOF
5541 #ifdef OPENAL_AL_H
5542 #include <OpenAL/al.h>
5543 #else
5544 #include <AL/al.h>
5545 #endif
5546 int main(void) {
5547 alSourceQueueBuffers(0, 0, 0);
5548 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5549 return 0;
5552 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5553 cc_check $I && _openal=yes && break
5554 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5555 done
5556 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
5558 if test "$_openal" = yes ; then
5559 def_openal='#define CONFIG_OPENAL 1'
5560 _aomodules="openal $_aomodules"
5561 else
5562 _noaomodules="openal $_noaomodules"
5564 echores "$_openal"
5566 echocheck "ALSA audio"
5567 if test "$_alloca" != yes ; then
5568 _alsa=no
5569 _res_comment="alloca missing"
5571 if test "$_alsa" != no ; then
5572 _alsa=no
5573 cat > $TMPC << EOF
5574 #include <sys/time.h>
5575 #include <sys/asoundlib.h>
5576 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5577 #error "alsa version != 0.5.x"
5578 #endif
5579 int main(void) { return 0; }
5581 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5583 cat > $TMPC << EOF
5584 #include <sys/time.h>
5585 #include <sys/asoundlib.h>
5586 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5587 #error "alsa version != 0.9.x"
5588 #endif
5589 int main(void) { return 0; }
5591 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5592 cat > $TMPC << EOF
5593 #include <sys/time.h>
5594 #include <alsa/asoundlib.h>
5595 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5596 #error "alsa version != 0.9.x"
5597 #endif
5598 int main(void) { return 0; }
5600 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5602 cat > $TMPC << EOF
5603 #include <sys/time.h>
5604 #include <sys/asoundlib.h>
5605 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5606 #error "alsa version != 1.0.x"
5607 #endif
5608 int main(void) { return 0; }
5610 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5611 cat > $TMPC << EOF
5612 #include <sys/time.h>
5613 #include <alsa/asoundlib.h>
5614 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5615 #error "alsa version != 1.0.x"
5616 #endif
5617 int main(void) { return 0; }
5619 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5621 def_alsa='#undef CONFIG_ALSA'
5622 def_alsa5='#undef CONFIG_ALSA5'
5623 def_alsa9='#undef CONFIG_ALSA9'
5624 def_alsa1x='#undef CONFIG_ALSA1X'
5625 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5626 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5627 if test "$_alsaver" ; then
5628 _alsa=yes
5629 if test "$_alsaver" = '0.5.x' ; then
5630 _alsa5=yes
5631 _aomodules="alsa5 $_aomodules"
5632 def_alsa5='#define CONFIG_ALSA5 1'
5633 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5634 _res_comment="using alsa 0.5.x and sys/asoundlib.h"
5635 elif test "$_alsaver" = '0.9.x-sys' ; then
5636 _alsa9=yes
5637 _aomodules="alsa $_aomodules"
5638 def_alsa='#define CONFIG_ALSA 1'
5639 def_alsa9='#define CONFIG_ALSA9 1'
5640 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5641 _res_comment="using alsa 0.9.x and sys/asoundlib.h"
5642 elif test "$_alsaver" = '0.9.x-alsa' ; then
5643 _alsa9=yes
5644 _aomodules="alsa $_aomodules"
5645 def_alsa='#define CONFIG_ALSA 1'
5646 def_alsa9='#define CONFIG_ALSA9 1'
5647 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5648 _res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5649 elif test "$_alsaver" = '1.0.x-sys' ; then
5650 _alsa1x=yes
5651 _aomodules="alsa $_aomodules"
5652 def_alsa='#define CONFIG_ALSA 1'
5653 def_alsa1x="#define CONFIG_ALSA1X 1"
5654 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5655 _res_comment="using alsa 1.0.x and sys/asoundlib.h"
5656 elif test "$_alsaver" = '1.0.x-alsa' ; then
5657 _alsa1x=yes
5658 _aomodules="alsa $_aomodules"
5659 def_alsa='#define CONFIG_ALSA 1'
5660 def_alsa1x="#define CONFIG_ALSA1X 1"
5661 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5662 _res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5663 else
5664 _alsa=no
5665 _res_comment="unknown version"
5667 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5668 else
5669 _noaomodules="alsa $_noaomodules"
5671 echores "$_alsa"
5674 echocheck "Sun audio"
5675 if test "$_sunaudio" = auto ; then
5676 cat > $TMPC << EOF
5677 #include <sys/types.h>
5678 #include <sys/audioio.h>
5679 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5681 _sunaudio=no
5682 cc_check && _sunaudio=yes
5684 if test "$_sunaudio" = yes ; then
5685 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5686 _aomodules="sun $_aomodules"
5687 else
5688 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5689 _noaomodules="sun $_noaomodules"
5691 echores "$_sunaudio"
5694 def_mlib='#define CONFIG_MLIB 0'
5695 if sunos; then
5696 echocheck "Sun mediaLib"
5697 if test "$_mlib" = auto ; then
5698 _mlib=no
5699 cat > $TMPC << EOF
5700 #include <mlib.h>
5701 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; }
5703 cc_check -lmlib && _mlib=yes && def_mlib='#define CONFIG_MLIB 1'
5705 echores "$_mlib"
5706 fi #if sunos
5709 if darwin; then
5710 echocheck "CoreAudio"
5711 if test "$_coreaudio" = auto ; then
5712 cat > $TMPC <<EOF
5713 #include <CoreAudio/CoreAudio.h>
5714 #include <AudioToolbox/AudioToolbox.h>
5715 #include <AudioUnit/AudioUnit.h>
5716 int main(void) { return 0; }
5718 _coreaudio=no
5719 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5721 if test "$_coreaudio" = yes ; then
5722 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5723 def_coreaudio='#define CONFIG_COREAUDIO 1'
5724 _aomodules="coreaudio $_aomodules"
5725 else
5726 def_coreaudio='#undef CONFIG_COREAUDIO'
5727 _noaomodules="coreaudio $_noaomodules"
5729 echores $_coreaudio
5730 fi #if darwin
5733 if irix; then
5734 echocheck "SGI audio"
5735 if test "$_sgiaudio" = auto ; then
5736 # check for SGI audio
5737 cat > $TMPC << EOF
5738 #include <dmedia/audio.h>
5739 int main(void) { return 0; }
5741 _sgiaudio=no
5742 cc_check && _sgiaudio=yes
5744 if test "$_sgiaudio" = "yes" ; then
5745 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5746 libs_mplayer="$libs_mplayer -laudio"
5747 _aomodules="sgi $_aomodules"
5748 else
5749 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5750 _noaomodules="sgi $_noaomodules"
5752 echores "$_sgiaudio"
5753 fi #if irix
5756 if os2 ; then
5757 echocheck "KAI (UNIAUD/DART)"
5758 if test "$_kai" = auto; then
5759 cat > $TMPC << EOF
5760 #include <os2.h>
5761 #include <kai.h>
5762 int main(void) { return 0; }
5764 _kai=no;
5765 cc_check -lkai && _kai=yes
5767 if test "$_kai" = yes ; then
5768 def_kai='#define CONFIG_KAI 1'
5769 libs_mplayer="$libs_mplayer -lkai"
5770 _aomodules="kai $_aomodules"
5771 else
5772 def_kai='#undef CONFIG_KAI'
5773 _noaomodules="kai $_noaomodules"
5775 echores "$_kai"
5777 echocheck "DART"
5778 if test "$_dart" = auto; then
5779 cat > $TMPC << EOF
5780 #include <os2.h>
5781 #include <dart.h>
5782 int main( void ) { return 0; }
5784 _dart=no;
5785 cc_check -ldart && _dart=yes
5787 if test "$_dart" = yes ; then
5788 def_dart='#define CONFIG_DART 1'
5789 libs_mplayer="$libs_mplayer -ldart"
5790 _aomodules="dart $_aomodules"
5791 else
5792 def_dart='#undef CONFIG_DART'
5793 _noaomodules="dart $_noaomodules"
5795 echores "$_dart"
5796 fi #if os2
5799 # set default CD/DVD devices
5800 if win32 || os2 ; then
5801 default_cdrom_device="D:"
5802 elif darwin ; then
5803 default_cdrom_device="/dev/disk1"
5804 elif dragonfly ; then
5805 default_cdrom_device="/dev/cd0"
5806 elif freebsd ; then
5807 default_cdrom_device="/dev/acd0"
5808 elif openbsd ; then
5809 default_cdrom_device="/dev/rcd0a"
5810 elif sunos ; then
5811 default_cdrom_device="/vol/dev/aliases/cdrom0"
5812 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5813 # file system and the volfs service.
5814 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5815 elif amigaos ; then
5816 default_cdrom_device="a1ide.device:2"
5817 else
5818 default_cdrom_device="/dev/cdrom"
5821 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5822 default_dvd_device=$default_cdrom_device
5823 elif darwin ; then
5824 default_dvd_device="/dev/rdiskN"
5825 else
5826 default_dvd_device="/dev/dvd"
5830 echocheck "VCD support"
5831 if test "$_vcd" = auto; then
5832 _vcd=no
5833 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2; then
5834 _vcd=yes
5835 elif mingw32; then
5836 cat > $TMPC << EOF
5837 #include <ddk/ntddcdrm.h>
5838 int main(void) { return 0; }
5840 cc_check && _vcd=yes
5843 if test "$_vcd" = yes; then
5844 _inputmodules="vcd $_inputmodules"
5845 def_vcd='#define CONFIG_VCD 1'
5846 else
5847 def_vcd='#undef CONFIG_VCD'
5848 _noinputmodules="vcd $_noinputmodules"
5849 _res_comment="not supported on this OS"
5851 echores "$_vcd"
5855 echocheck "dvdread"
5856 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5857 _dvdread_internal=no
5859 if test "$_dvdread_internal" = auto ; then
5860 _dvdread_internal=no
5861 _dvdread=no
5862 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) \
5863 && (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
5864 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) \
5865 || darwin || win32 || os2; then
5866 _dvdread_internal=yes
5867 _dvdread=yes
5868 extra_cflags="-Ilibdvdread4 $extra_cflags"
5870 elif test "$_dvdread" = auto ; then
5871 _dvdread=no
5872 if test "$_dl" = yes; then
5873 cat > $TMPC << EOF
5874 #include <inttypes.h>
5875 #include <dvdread/dvd_reader.h>
5876 #include <dvdread/ifo_types.h>
5877 #include <dvdread/ifo_read.h>
5878 #include <dvdread/nav_read.h>
5879 int main(void) { return 0; }
5881 _dvdreadcflags=$($_dvdreadconfig --cflags)
5882 _dvdreadlibs=$($_dvdreadconfig --libs)
5883 if cc_check -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
5884 $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5885 _dvdread=yes
5886 extra_cflags="$extra_cflags $_dvdreadcflags"
5887 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5888 _res_comment="external"
5893 if test "$_dvdread_internal" = yes; then
5894 def_dvdread='#define CONFIG_DVDREAD 1'
5895 _inputmodules="dvdread(internal) $_inputmodules"
5896 _largefiles=yes
5897 _res_comment="internal"
5898 elif test "$_dvdread" = yes; then
5899 def_dvdread='#define CONFIG_DVDREAD 1'
5900 _largefiles=yes
5901 extra_ldflags="$extra_ldflags -ldvdread"
5902 _inputmodules="dvdread(external) $_inputmodules"
5903 _res_comment="external"
5904 else
5905 def_dvdread='#undef CONFIG_DVDREAD'
5906 _noinputmodules="dvdread $_noinputmodules"
5908 echores "$_dvdread"
5911 echocheck "internal libdvdcss"
5912 if test "$_libdvdcss_internal" = auto ; then
5913 _libdvdcss_internal=no
5914 test "$_dvdread_internal" = yes && _libdvdcss_internal=yes
5915 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5917 if test "$_libdvdcss_internal" = yes ; then
5918 if linux || netbsd || openbsd || bsdos ; then
5919 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5920 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5921 elif freebsd || dragonfly ; then
5922 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5923 elif darwin ; then
5924 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5925 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5926 elif cygwin ; then
5927 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5928 elif beos ; then
5929 cflags_libdvdcss="-DSYS_BEOS"
5930 elif os2 ; then
5931 cflags_libdvdcss="-DSYS_OS2"
5933 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5934 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5935 _inputmodules="libdvdcss(internal) $_inputmodules"
5936 _largefiles=yes
5937 else
5938 _noinputmodules="libdvdcss(internal) $_noinputmodules"
5940 echores "$_libdvdcss_internal"
5943 echocheck "cdparanoia"
5944 if test "$_cdparanoia" = auto ; then
5945 cat > $TMPC <<EOF
5946 #include <cdda_interface.h>
5947 #include <cdda_paranoia.h>
5948 // This need a better test. How ?
5949 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5951 _cdparanoia=no
5952 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5953 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
5954 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5955 done
5957 if test "$_cdparanoia" = yes ; then
5958 _cdda='yes'
5959 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5960 openbsd && extra_ldflags="$extra_ldflags -lutil"
5962 echores "$_cdparanoia"
5965 echocheck "libcdio"
5966 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5967 cat > $TMPC << EOF
5968 #include <stdio.h>
5969 #include <cdio/version.h>
5970 #include <cdio/cdda.h>
5971 #include <cdio/paranoia.h>
5972 int main(void) {
5973 void *test = cdda_verbose_set;
5974 printf("%s\n", CDIO_VERSION);
5975 return test == (void *)1;
5978 _libcdio=no
5979 for _ld_tmp in "" "-lwinmm" ; do
5980 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
5981 cc_check $_ld_tmp $_ld_lm \
5982 && _libcdio=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
5983 done
5984 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
5985 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
5986 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
5987 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes \
5988 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5991 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
5992 _cdda='yes'
5993 def_libcdio='#define CONFIG_LIBCDIO 1'
5994 def_havelibcdio='yes'
5995 else
5996 if test "$_cdparanoia" = yes ; then
5997 _res_comment="using cdparanoia"
5999 def_libcdio='#undef CONFIG_LIBCDIO'
6000 def_havelibcdio='no'
6002 echores "$_libcdio"
6004 if test "$_cdda" = yes ; then
6005 test $_cddb = auto && test $_network = yes && _cddb=yes
6006 def_cdparanoia='#define CONFIG_CDDA 1'
6007 _inputmodules="cdda $_inputmodules"
6008 else
6009 def_cdparanoia='#undef CONFIG_CDDA'
6010 _noinputmodules="cdda $_noinputmodules"
6013 if test "$_cddb" = yes ; then
6014 def_cddb='#define CONFIG_CDDB 1'
6015 _inputmodules="cddb $_inputmodules"
6016 else
6017 _cddb=no
6018 def_cddb='#undef CONFIG_CDDB'
6019 _noinputmodules="cddb $_noinputmodules"
6022 echocheck "bitmap font support"
6023 if test "$_bitmap_font" = yes ; then
6024 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
6025 else
6026 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
6028 echores "$_bitmap_font"
6031 echocheck "freetype >= 2.0.9"
6033 # freetype depends on iconv
6034 if test "$_iconv" = no ; then
6035 _freetype=no
6036 _res_comment="iconv support needed"
6039 if test "$_freetype" = auto ; then
6040 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
6041 cat > $TMPC << EOF
6042 #include <stdio.h>
6043 #include <ft2build.h>
6044 #include FT_FREETYPE_H
6045 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
6046 #error "Need FreeType 2.0.9 or newer"
6047 #endif
6048 int main(void) {
6049 FT_Library library;
6050 FT_Int major=-1,minor=-1,patch=-1;
6051 int err=FT_Init_FreeType(&library);
6052 return 0;
6055 _freetype=no
6056 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
6057 else
6058 _freetype=no
6061 if test "$_freetype" = yes ; then
6062 def_freetype='#define CONFIG_FREETYPE 1'
6063 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
6064 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
6065 else
6066 def_freetype='#undef CONFIG_FREETYPE'
6068 echores "$_freetype"
6070 if test "$_freetype" = no ; then
6071 _fontconfig=no
6072 _res_comment="FreeType support needed"
6074 echocheck "fontconfig"
6075 if test "$_fontconfig" = auto ; then
6076 cat > $TMPC << EOF
6077 #include <stdio.h>
6078 #include <stdlib.h>
6079 #include <fontconfig/fontconfig.h>
6080 #if FC_VERSION < 20402
6081 #error At least version 2.4.2 of fontconfig required
6082 #endif
6083 int main(void) {
6084 int err = FcInit();
6085 if (err == FcFalse) {
6086 printf("Couldn't initialize fontconfig lib\n");
6087 exit(err);
6089 return 0;
6092 _fontconfig=no
6093 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
6094 _ld_tmp="-lfontconfig $_ld_tmp"
6095 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6096 done
6097 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
6098 _inc_tmp=$($_pkg_config --cflags fontconfig)
6099 _ld_tmp=$($_pkg_config --libs fontconfig)
6100 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes \
6101 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6104 if test "$_fontconfig" = yes ; then
6105 def_fontconfig='#define CONFIG_FONTCONFIG 1'
6106 else
6107 def_fontconfig='#undef CONFIG_FONTCONFIG'
6109 echores "$_fontconfig"
6112 echocheck "SSA/ASS support"
6113 if test "$_ass" = auto -o "$_ass" = yes ; then
6114 if $_pkg_config libass; then
6115 _ass=yes
6116 def_ass='#define CONFIG_ASS 1'
6117 extra_ldflags="$extra_ldflags $($_pkg_config --libs libass)"
6118 extra_cflags="$extra_cflags $($_pkg_config --cflags libass)"
6119 else
6120 _ass=no
6121 def_ass='#undef CONFIG_ASS'
6123 else
6124 def_ass='#undef CONFIG_ASS'
6126 echores "$_ass"
6129 echocheck "fribidi with charsets"
6130 _inc_tmp=""
6131 _ld_tmp=""
6132 if test "$_fribidi" = auto ; then
6133 cat > $TMPC << EOF
6134 #include <stdio.h>
6135 #include <stdlib.h>
6136 /* workaround for fribidi 0.10.4 and below */
6137 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
6138 #include <fribidi/fribidi.h>
6139 int main(void) {
6140 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8) {
6141 printf("Fribidi headers are not consistents with the library!\n");
6142 exit(1);
6144 return 0;
6147 _fribidi=no
6148 _inc_tmp=""
6149 _ld_tmp="-lfribidi"
6150 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6151 if $_fribidiconfig --version > /dev/null 2>&1 &&
6152 test "$_fribidi" = no ; then
6153 _inc_tmp="$($_fribidiconfig --cflags)"
6154 _ld_tmp="$($_fribidiconfig --libs)"
6155 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6158 if test "$_fribidi" = yes ; then
6159 def_fribidi='#define CONFIG_FRIBIDI 1'
6160 extra_cflags="$extra_cflags $_inc_tmp"
6161 extra_ldflags="$extra_ldflags $_ld_tmp"
6162 else
6163 def_fribidi='#undef CONFIG_FRIBIDI'
6165 echores "$_fribidi"
6168 echocheck "ENCA"
6169 if test "$_enca" = auto ; then
6170 cat > $TMPC << EOF
6171 #include <sys/types.h>
6172 #include <enca.h>
6173 int main(void) {
6174 const char **langs;
6175 size_t langcnt;
6176 langs = enca_get_languages(&langcnt);
6177 return 0;
6180 _enca=no
6181 cc_check -lenca $_ld_lm && _enca=yes
6183 if test "$_enca" = yes ; then
6184 def_enca='#define CONFIG_ENCA 1'
6185 extra_ldflags="$extra_ldflags -lenca"
6186 else
6187 def_enca='#undef CONFIG_ENCA'
6189 echores "$_enca"
6192 echocheck "zlib"
6193 cat > $TMPC << EOF
6194 #include <zlib.h>
6195 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; }
6197 _zlib=no
6198 cc_check -lz && _zlib=yes
6199 if test "$_zlib" = yes ; then
6200 def_zlib='#define CONFIG_ZLIB 1'
6201 extra_ldflags="$extra_ldflags -lz"
6202 else
6203 def_zlib='#define CONFIG_ZLIB 0'
6205 echores "$_zlib"
6208 echocheck "bzlib"
6209 bzlib=no
6210 def_bzlib='#define CONFIG_BZLIB 0'
6211 cat > $TMPC << EOF
6212 #include <bzlib.h>
6213 int main(void) { BZ2_bzlibVersion(); return 0; }
6215 cc_check -lbz2 && bzlib=yes
6216 if test "$bzlib" = yes ; then
6217 def_bzlib='#define CONFIG_BZLIB 1'
6218 extra_ldflags="$extra_ldflags -lbz2"
6220 echores "$bzlib"
6223 echocheck "RTC"
6224 if test "$_rtc" = auto ; then
6225 cat > $TMPC << EOF
6226 #include <sys/ioctl.h>
6227 #ifdef __linux__
6228 #include <linux/rtc.h>
6229 #else
6230 #include <rtc.h>
6231 #define RTC_PIE_ON RTCIO_PIE_ON
6232 #endif
6233 int main(void) { return RTC_PIE_ON; }
6235 _rtc=no
6236 cc_check && _rtc=yes
6237 ppc && _rtc=no
6239 if test "$_rtc" = yes ; then
6240 def_rtc='#define HAVE_RTC 1'
6241 else
6242 def_rtc='#undef HAVE_RTC'
6244 echores "$_rtc"
6247 echocheck "liblzo2 support"
6248 if test "$_liblzo" = auto ; then
6249 _liblzo=no
6250 cat > $TMPC << EOF
6251 #include <lzo/lzo1x.h>
6252 int main(void) { lzo_init();return 0; }
6254 cc_check -llzo2 && _liblzo=yes
6256 if test "$_liblzo" = yes ; then
6257 def_liblzo='#define CONFIG_LIBLZO 1'
6258 extra_ldflags="$extra_ldflags -llzo2"
6259 _codecmodules="liblzo $_codecmodules"
6260 else
6261 def_liblzo='#undef CONFIG_LIBLZO'
6262 _nocodecmodules="liblzo $_nocodecmodules"
6264 echores "$_liblzo"
6267 echocheck "mad support"
6268 if test "$_mad" = auto ; then
6269 _mad=no
6270 cat > $TMPC << EOF
6271 #include <mad.h>
6272 int main(void) { return 0; }
6274 cc_check -lmad && _mad=yes
6276 if test "$_mad" = yes ; then
6277 def_mad='#define CONFIG_LIBMAD 1'
6278 extra_ldflags="$extra_ldflags -lmad"
6279 _codecmodules="libmad $_codecmodules"
6280 else
6281 def_mad='#undef CONFIG_LIBMAD'
6282 _nocodecmodules="libmad $_nocodecmodules"
6284 echores "$_mad"
6286 echocheck "Twolame"
6287 if test "$_twolame" = auto ; then
6288 cat > $TMPC <<EOF
6289 #include <twolame.h>
6290 int main(void) { twolame_init(); return 0; }
6292 _twolame=no
6293 cc_check -ltwolame $_ld_lm && _twolame=yes
6295 if test "$_twolame" = yes ; then
6296 def_twolame='#define CONFIG_TWOLAME 1'
6297 libs_mencoder="$libs_mencoder -ltwolame"
6298 _codecmodules="twolame $_codecmodules"
6299 else
6300 def_twolame='#undef CONFIG_TWOLAME'
6301 _nocodecmodules="twolame $_nocodecmodules"
6303 echores "$_twolame"
6305 echocheck "Toolame"
6306 if test "$_toolame" = auto ; then
6307 _toolame=no
6308 if test "$_twolame" = yes ; then
6309 _res_comment="disabled by twolame"
6310 else
6311 cat > $TMPC <<EOF
6312 #include <toolame.h>
6313 int main(void) { toolame_init(); return 0; }
6315 cc_check -ltoolame $_ld_lm && _toolame=yes
6318 if test "$_toolame" = yes ; then
6319 def_toolame='#define CONFIG_TOOLAME 1'
6320 libs_mencoder="$libs_mencoder -ltoolame"
6321 _codecmodules="toolame $_codecmodules"
6322 else
6323 def_toolame='#undef CONFIG_TOOLAME'
6324 _nocodecmodules="toolame $_nocodecmodules"
6326 if test "$_toolamedir" ; then
6327 _res_comment="using $_toolamedir"
6329 echores "$_toolame"
6331 echocheck "OggVorbis support"
6332 if test "$_tremor_internal" = yes; then
6333 _libvorbis=no
6334 elif test "$_tremor" = auto; then
6335 _tremor=no
6336 cat > $TMPC << EOF
6337 #include <tremor/ivorbiscodec.h>
6338 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6340 cc_check -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
6342 if test "$_libvorbis" = auto; then
6343 _libvorbis=no
6344 cat > $TMPC << EOF
6345 #include <vorbis/codec.h>
6346 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6348 cc_check -lvorbis -logg $_ld_lm && _libvorbis=yes
6350 if test "$_tremor_internal" = yes ; then
6351 _vorbis=yes
6352 def_vorbis='#define CONFIG_OGGVORBIS 1'
6353 def_tremor='#define CONFIG_TREMOR 1'
6354 _codecmodules="tremor(internal) $_codecmodules"
6355 _res_comment="internal Tremor"
6356 if test "$_tremor_low" = yes ; then
6357 cflags_tremor_low="-D_LOW_ACCURACY_"
6358 _res_comment="internal low accuracy Tremor"
6360 elif test "$_tremor" = yes ; then
6361 _vorbis=yes
6362 def_vorbis='#define CONFIG_OGGVORBIS 1'
6363 def_tremor='#define CONFIG_TREMOR 1'
6364 _codecmodules="tremor(external) $_codecmodules"
6365 _res_comment="external Tremor"
6366 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
6367 elif test "$_libvorbis" = yes ; then
6368 _vorbis=yes
6369 def_vorbis='#define CONFIG_OGGVORBIS 1'
6370 _codecmodules="libvorbis $_codecmodules"
6371 _res_comment="libvorbis"
6372 extra_ldflags="$extra_ldflags -lvorbis -logg"
6373 else
6374 _vorbis=no
6375 _nocodecmodules="libvorbis $_nocodecmodules"
6377 echores "$_vorbis"
6379 echocheck "libspeex (version >= 1.1 required)"
6380 if test "$_speex" = auto ; then
6381 _speex=no
6382 cat > $TMPC << EOF
6383 #include <speex/speex.h>
6384 int main(void) { SpeexBits bits; void *dec; speex_decode_int(dec, &bits, dec); return 0; }
6386 cc_check -lspeex $_ld_lm && _speex=yes
6388 if test "$_speex" = yes ; then
6389 def_speex='#define CONFIG_SPEEX 1'
6390 extra_ldflags="$extra_ldflags -lspeex"
6391 _codecmodules="speex $_codecmodules"
6392 else
6393 def_speex='#undef CONFIG_SPEEX'
6394 _nocodecmodules="speex $_nocodecmodules"
6396 echores "$_speex"
6398 echocheck "OggTheora support"
6399 if test "$_theora" = auto ; then
6400 _theora=no
6401 cat > $TMPC << EOF
6402 #include <theora/theora.h>
6403 #include <string.h>
6404 int main(void) {
6405 /* Theora is in flux, make sure that all interface routines and datatypes
6406 * exist and work the way we expect it, so we don't break MPlayer. */
6407 ogg_packet op;
6408 theora_comment tc;
6409 theora_info inf;
6410 theora_state st;
6411 yuv_buffer yuv;
6412 int r;
6413 double t;
6415 theora_info_init(&inf);
6416 theora_comment_init(&tc);
6418 return 0;
6420 /* we don't want to execute this kind of nonsense; just for making sure
6421 * that compilation works... */
6422 memset(&op, 0, sizeof(op));
6423 r = theora_decode_header(&inf, &tc, &op);
6424 r = theora_decode_init(&st, &inf);
6425 t = theora_granule_time(&st, op.granulepos);
6426 r = theora_decode_packetin(&st, &op);
6427 r = theora_decode_YUVout(&st, &yuv);
6428 theora_clear(&st);
6430 return 0;
6433 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6434 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6435 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
6436 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6437 if test _theora = no; then
6438 _ld_theora="-ltheora -logg"
6439 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6441 if test "$_theora" = no && test "$_tremor_internal" = yes; then
6442 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6443 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6444 cc_check tremor/bitwise.c $_inc_theora $_ld_theora &&
6445 extra_ldflags="$extra_ldflags $_ld_theora" &&
6446 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6447 if test _theora = no; then
6448 _ld_theora="-ltheora -logg"
6449 cc_check tremor/bitwise.c $_ld_theora &&
6450 extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6454 if test "$_theora" = yes ; then
6455 def_theora='#define CONFIG_OGGTHEORA 1'
6456 _codecmodules="libtheora $_codecmodules"
6457 # when --enable-theora is forced, we'd better provide a probably sane
6458 # $_ld_theora than nothing
6459 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
6460 else
6461 def_theora='#undef CONFIG_OGGTHEORA'
6462 _nocodecmodules="libtheora $_nocodecmodules"
6464 echores "$_theora"
6466 echocheck "internal mp3lib support"
6467 if test "$_mp3lib" = auto ; then
6468 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _mp3lib=no || _mp3lib=yes
6470 if test "$_mp3lib" = yes ; then
6471 def_mp3lib='#define CONFIG_MP3LIB 1'
6472 _codecmodules="mp3lib(internal) $_codecmodules"
6473 else
6474 def_mp3lib='#undef CONFIG_MP3LIB'
6475 _nocodecmodules="mp3lib(internal) $_nocodecmodules"
6477 echores "$_mp3lib"
6479 echocheck "liba52 support"
6480 if test "$_liba52_internal" = auto ; then
6481 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
6483 def_liba52='#undef CONFIG_LIBA52'
6484 def_liba52_internal="#undef CONFIG_LIBA52_INTERNAL"
6485 if test "$_liba52_internal" = yes ; then
6486 _liba52=yes
6487 def_liba52_internal="#define CONFIG_LIBA52_INTERNAL 1"
6488 _res_comment="internal"
6489 elif test "$_liba52_internal" = no && test "$_liba52" = auto ; then
6490 _liba52=no
6491 cat > $TMPC << EOF
6492 #include <inttypes.h>
6493 #include <a52dec/a52.h>
6494 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6496 cc_check -la52 && _liba52=yes && _res_comment="external" && extra_ldflags="$extra_ldflags -la52"
6498 if test "$_liba52" = yes ; then
6499 def_liba52='#define CONFIG_LIBA52 1'
6500 _codecmodules="liba52($_res_comment) $_codecmodules"
6501 else
6502 _nocodecmodules="liba52 $_nocodecmodules"
6504 echores "$_liba52"
6506 echocheck "internal libmpeg2 support"
6507 if test "$_libmpeg2" = auto ; then
6508 _libmpeg2=yes
6509 if alpha && test cc_vendor=gnu; then
6510 case $cc_version in
6511 2*|3.0*|3.1*) # cannot compile MVI instructions
6512 _libmpeg2=no
6513 _res_comment="broken gcc"
6515 esac
6518 if test "$_libmpeg2" = yes ; then
6519 def_libmpeg2='#define CONFIG_LIBMPEG2 1'
6520 _codecmodules="libmpeg2(internal) $_codecmodules"
6521 else
6522 def_libmpeg2='#undef CONFIG_LIBMPEG2'
6523 _nocodecmodules="libmpeg2(internal) $_nocodecmodules"
6525 echores "$_libmpeg2"
6527 echocheck "libdca support"
6528 if test "$_libdca" = auto ; then
6529 _libdca=no
6530 cat > $TMPC << EOF
6531 #include <inttypes.h>
6532 #include <dts.h>
6533 int main(void) { dts_init(0); return 0; }
6535 for _ld_dca in -ldca -ldts ; do
6536 cc_check $_ld_dca $_ld_lm && extra_ldflags="$extra_ldflags $_ld_dca" \
6537 && _libdca=yes && break
6538 done
6540 if test "$_libdca" = yes ; then
6541 def_libdca='#define CONFIG_LIBDCA 1'
6542 _codecmodules="libdca $_codecmodules"
6543 else
6544 def_libdca='#undef CONFIG_LIBDCA'
6545 _nocodecmodules="libdca $_nocodecmodules"
6547 echores "$_libdca"
6549 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
6550 if test "$_musepack" = auto ; then
6551 _musepack=no
6552 cat > $TMPC << EOF
6553 #include <stddef.h>
6554 #include <mpcdec/mpcdec.h>
6555 int main(void) {
6556 mpc_streaminfo info;
6557 mpc_decoder decoder;
6558 mpc_decoder_set_streaminfo(&decoder, &info);
6559 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6560 return 0;
6563 cc_check -lmpcdec $_ld_lm && _musepack=yes
6565 if test "$_musepack" = yes ; then
6566 def_musepack='#define CONFIG_MUSEPACK 1'
6567 extra_ldflags="$extra_ldflags -lmpcdec"
6568 _codecmodules="musepack $_codecmodules"
6569 else
6570 def_musepack='#undef CONFIG_MUSEPACK'
6571 _nocodecmodules="musepack $_nocodecmodules"
6573 echores "$_musepack"
6576 echocheck "FAAC support"
6577 if test "$_faac" = auto ; then
6578 cat > $TMPC <<EOF
6579 #include <inttypes.h>
6580 #include <faac.h>
6581 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6583 _faac=no
6584 for _ld_faac in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6585 cc_check $_ld_faac $_ld_lm && libs_mencoder="$libs_mencoder $_ld_faac" && _faac=yes && break
6586 done
6588 if test "$_faac" = yes ; then
6589 def_faac="#define CONFIG_FAAC 1"
6590 _codecmodules="faac $_codecmodules"
6591 else
6592 def_faac="#undef CONFIG_FAAC"
6593 _nocodecmodules="faac $_nocodecmodules"
6595 echores "$_faac"
6598 echocheck "FAAD2 support"
6599 if test "$_faad_internal" = auto ; then
6600 if x86_32 && test cc_vendor=gnu; then
6601 case $cc_version in
6602 3.1*|3.2) # ICE/insn with these versions
6603 _faad_internal=no
6604 _res_comment="broken gcc"
6607 _faad=yes
6608 _faad_internal=yes
6610 esac
6611 else
6612 _faad=yes
6613 _faad_internal=yes
6616 if test "$_faad" = auto ; then
6617 cat > $TMPC << EOF
6618 #include <faad.h>
6619 #ifndef FAAD_MIN_STREAMSIZE
6620 #error Too old version
6621 #endif
6622 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6623 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6625 cc_check -lfaad $_ld_lm && _faad=yes
6628 def_faad='#undef CONFIG_FAAD'
6629 def_faad_internal="#undef CONFIG_FAAD_INTERNAL"
6630 if test "$_faad_internal" = yes ; then
6631 def_faad_internal="#define CONFIG_FAAD_INTERNAL 1"
6632 _res_comment="internal floating-point"
6633 if test "$_faad_fixed" = yes ; then
6634 # The FIXED_POINT implementation of FAAD2 improves performance
6635 # on some platforms, especially for SBR files.
6636 cflags_faad_fixed="-DFIXED_POINT"
6637 _res_comment="internal fixed-point"
6639 elif test "$_faad" = yes ; then
6640 extra_ldflags="$extra_ldflags -lfaad"
6643 if test "$_faad" = yes ; then
6644 def_faad='#define CONFIG_FAAD 1'
6645 if test "$_faad_internal" = yes ; then
6646 _codecmodules="faad2(internal) $_codecmodules"
6647 else
6648 _codecmodules="faad2 $_codecmodules"
6650 else
6651 _faad=no
6652 _nocodecmodules="faad2 $_nocodecmodules"
6654 echores "$_faad"
6657 echocheck "LADSPA plugin support"
6658 if test "$_ladspa" = auto ; then
6659 cat > $TMPC <<EOF
6660 #include <stdio.h>
6661 #include <ladspa.h>
6662 int main(void) {
6663 const LADSPA_Descriptor *ld = NULL;
6664 return 0;
6667 _ladspa=no
6668 cc_check && _ladspa=yes
6670 if test "$_ladspa" = yes; then
6671 def_ladspa="#define CONFIG_LADSPA 1"
6672 else
6673 def_ladspa="#undef CONFIG_LADSPA"
6675 echores "$_ladspa"
6678 echocheck "libbs2b audio filter support"
6679 if test "$_libbs2b" = auto ; then
6680 cat > $TMPC <<EOF
6681 #include <bs2b.h>
6682 #if BS2B_VERSION_MAJOR < 3
6683 #error Please use libbs2b >= 3.0.0, older versions are not supported.
6684 #endif
6685 int main(void) {
6686 t_bs2bdp filter;
6687 filter=bs2b_open();
6688 bs2b_close(filter);
6689 return 0;
6692 _libbs2b=no
6693 if $_pkg_config --exists libbs2b ; then
6694 _inc_tmp=$($_pkg_config --cflags libbs2b)
6695 _ld_tmp=$($_pkg_config --libs libbs2b)
6696 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
6697 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
6698 else
6699 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
6700 -I/usr/local/include/bs2b ; do
6701 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
6702 extra_ldflags="$extra_ldflags -lbs2b"
6703 extra_cflags="$extra_cflags $_inc_tmp"
6704 _libbs2b=yes
6705 break
6707 done
6710 def_libbs2b="#undef CONFIG_LIBBS2B"
6711 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
6712 echores "$_libbs2b"
6715 if test -z "$_codecsdir" ; then
6716 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
6717 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
6718 if test -d "$dir" ; then
6719 _codecsdir="$dir"
6720 break;
6722 done
6724 # Fall back on default directory.
6725 if test -z "$_codecsdir" ; then
6726 _codecsdir="$_libdir/codecs"
6727 mingw32 || os2 && _codecsdir="codecs"
6731 echocheck "Win32 codecs"
6732 if test "$_win32dll" = auto ; then
6733 _win32dll=no
6734 if x86_32 && ! qnx; then
6735 _win32dll=yes
6738 if test "$_win32dll" = yes ; then
6739 def_win32dll='#define CONFIG_WIN32DLL 1'
6740 if ! win32 ; then
6741 def_win32_loader='#define WIN32_LOADER 1'
6742 _win32_emulation=yes
6743 else
6744 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
6745 _res_comment="using native windows"
6747 _codecmodules="win32 $_codecmodules"
6748 else
6749 def_win32dll='#undef CONFIG_WIN32DLL'
6750 def_win32_loader='#undef WIN32_LOADER'
6751 _nocodecmodules="win32 $_nocodecmodules"
6753 echores "$_win32dll"
6756 echocheck "XAnim codecs"
6757 if test "$_xanim" = auto ; then
6758 _xanim=no
6759 _res_comment="dynamic loader support needed"
6760 if test "$_dl" = yes ; then
6761 _xanim=yes
6764 if test "$_xanim" = yes ; then
6765 def_xanim='#define CONFIG_XANIM 1'
6766 _codecmodules="xanim $_codecmodules"
6767 else
6768 def_xanim='#undef CONFIG_XANIM'
6769 _nocodecmodules="xanim $_nocodecmodules"
6771 echores "$_xanim"
6774 echocheck "RealPlayer codecs"
6775 if test "$_real" = auto ; then
6776 _real=no
6777 _res_comment="dynamic loader support needed"
6778 if test "$_dl" = yes || test "$_win32dll" = yes &&
6779 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2) ; then
6780 _real=yes
6783 if test "$_real" = yes ; then
6784 def_real='#define CONFIG_REALCODECS 1'
6785 _codecmodules="real $_codecmodules"
6786 else
6787 def_real='#undef CONFIG_REALCODECS'
6788 _nocodecmodules="real $_nocodecmodules"
6790 echores "$_real"
6793 echocheck "QuickTime codecs"
6794 _qtx_emulation=no
6795 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
6796 if test "$_qtx" = auto ; then
6797 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
6799 if test "$_qtx" = yes ; then
6800 def_qtx='#define CONFIG_QTX_CODECS 1'
6801 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
6802 _codecmodules="qtx $_codecmodules"
6803 darwin || win32 || _qtx_emulation=yes
6804 else
6805 def_qtx='#undef CONFIG_QTX_CODECS'
6806 _nocodecmodules="qtx $_nocodecmodules"
6808 echores "$_qtx"
6810 echocheck "Nemesi Streaming Media libraries"
6811 if test "$_nemesi" = auto && test "$_network" = yes ; then
6812 _nemesi=no
6813 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
6814 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
6815 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
6816 _nemesi=yes
6819 if test "$_nemesi" = yes; then
6820 _native_rtsp=no
6821 def_nemesi='#define CONFIG_LIBNEMESI 1'
6822 _inputmodules="nemesi $_inputmodules"
6823 else
6824 _native_rtsp="$_network"
6825 _nemesi=no
6826 def_nemesi='#undef CONFIG_LIBNEMESI'
6827 _noinputmodules="nemesi $_noinputmodules"
6829 echores "$_nemesi"
6831 echocheck "LIVE555 Streaming Media libraries"
6832 if test "$_live" = auto && test "$_network" = yes ; then
6833 cat > $TMPCPP << EOF
6834 #include <liveMedia.hh>
6835 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6836 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6837 #endif
6838 int main(void) { return 0; }
6841 _live=no
6842 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
6843 cxx_check $I/liveMedia/include $I/UsageEnvironment/include \
6844 $I/groupsock/include && _livelibdir=$(echo $I| sed s/-I//) && \
6845 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
6846 $_livelibdir/groupsock/libgroupsock.a \
6847 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6848 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6849 $extra_ldflags -lstdc++" \
6850 extra_cxxflags="-I$_livelibdir/liveMedia/include \
6851 -I$_livelibdir/UsageEnvironment/include \
6852 -I$_livelibdir/BasicUsageEnvironment/include \
6853 -I$_livelibdir/groupsock/include" && \
6854 _live=yes && break
6855 done
6856 if test "$_live" != yes ; then
6857 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6858 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
6859 _live_dist=yes
6863 if test "$_live" = yes && test "$_network" = yes; then
6864 test $_livelibdir && _res_comment="using $_livelibdir"
6865 def_live='#define CONFIG_LIVE555 1'
6866 _inputmodules="live555 $_inputmodules"
6867 elif test "$_live_dist" = yes && test "$_network" = yes; then
6868 _res_comment="using distribution version"
6869 _live="yes"
6870 def_live='#define CONFIG_LIVE555 1'
6871 extra_ldflags="$extra_ldflags $ld_tmp"
6872 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
6873 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6874 _inputmodules="live555 $_inputmodules"
6875 else
6876 _live=no
6877 def_live='#undef CONFIG_LIVE555'
6878 _noinputmodules="live555 $_noinputmodules"
6880 echores "$_live"
6883 echocheck "FFmpeg libavutil"
6884 if test "$_libavutil" = auto ; then
6885 _libavutil=no
6886 cat > $TMPC << EOF
6887 #include <libavutil/common.h>
6888 int main(void) { av_clip(1, 1, 1); return 0; }
6890 if $_pkg_config --exists libavutil ; then
6891 _inc_libavutil=$($_pkg_config --cflags libavutil)
6892 _ld_tmp=$($_pkg_config --libs libavutil)
6893 cc_check $_inc_libavutil $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libavutil" \
6894 && _libavutil=yes
6895 elif cc_check -lavutil $_ld_lm ; then
6896 extra_ldflags="$extra_ldflags -lavutil"
6897 _libavutil=yes
6900 def_libavutil='#undef CONFIG_LIBAVUTIL'
6901 test "$_libavutil" = yes && def_libavutil='#define CONFIG_LIBAVUTIL 1'
6902 # libavutil is not available, but it is mandatory ...
6903 if test "$_libavutil" = no ; then
6904 die "You need libavutil, MPlayer will not compile without!"
6906 echores "$_libavutil"
6908 echocheck "FFmpeg libavcodec"
6909 if test "$_libavcodec" = auto ; then
6910 _libavcodec=no
6911 cat > $TMPC << EOF
6912 #include <libavcodec/avcodec.h>
6913 int main(void) { avcodec_find_encoder_by_name(""); return 0; }
6915 if $_pkg_config --exists libavcodec ; then
6916 _inc_libavcodec=$($_pkg_config --cflags libavcodec)
6917 _ld_tmp=$($_pkg_config --libs libavcodec)
6918 cc_check $_inc_libavcodec $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavcodec" \
6919 && _libavcodec=yes
6920 elif cc_check -lavcodec $_ld_lm ; then
6921 extra_ldflags="$extra_ldflags -lavcodec"
6922 _libavcodec=yes
6925 def_libavcodec='#undef CONFIG_LIBAVCODEC'
6926 test "$_libavcodec" = yes && def_libavcodec='#define CONFIG_LIBAVCODEC 1'
6927 if test "$_libavcodec" = yes ; then
6928 _codecmodules="libavcodec $_codecmodules"
6929 else
6930 _nocodecmodules="libavcodec $_nocodecmodules"
6932 echores "$_libavcodec"
6934 echocheck "FFmpeg libavformat"
6935 if test "$_libavformat" = auto ; then
6936 _libavformat=no
6937 cat > $TMPC <<EOF
6938 #include <libavformat/avformat.h>
6939 #include <libavcodec/opt.h>
6940 int main(void) { av_alloc_format_context(); return 0; }
6942 if $_pkg_config --exists libavformat ; then
6943 _inc_libavformat=$($_pkg_config --cflags libavformat)
6944 _ld_tmp=$($_pkg_config --libs libavformat)
6945 cc_check $_inc_libavformat $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavformat" \
6946 && _libavformat=yes
6947 elif cc_check $_ld_lm -lavformat ; then
6948 extra_ldflags="$extra_ldflags -lavformat"
6949 _libavformat=yes
6952 def_libavformat='#undef CONFIG_LIBAVFORMAT'
6953 test "$_libavformat" = yes && def_libavformat='#define CONFIG_LIBAVFORMAT 1'
6954 echores "$_libavformat"
6956 echocheck "FFmpeg libpostproc"
6957 if test "$_libpostproc" = auto ; then
6958 _libpostproc=no
6959 cat > $TMPC << EOF
6960 #include <inttypes.h>
6961 #include <libpostproc/postprocess.h>
6962 int main(void) { pp_get_mode_by_name_and_quality("de", 0); return 0; }
6964 if $_pkg_config --exists libpostproc ; then
6965 _inc_libpostproc=$($_pkg_config --cflags libpostproc)
6966 _ld_tmp=$($_pkg_config --libs libpostproc)
6967 cc_check $_inc_libpostproc $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libpostproc" \
6968 && _libpostproc=yes
6969 elif cc_check -lpostproc $_ld_lm ; then
6970 extra_ldflags="$extra_ldflags -lpostproc"
6971 _libpostproc=yes
6974 def_libpostproc='#undef CONFIG_LIBPOSTPROC'
6975 test "$_libpostproc" = yes && def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
6976 echores "$_libpostproc"
6978 echocheck "FFmpeg libswscale"
6979 if test "$_libswscale" = auto ; then
6980 _libswscale=no
6981 cat > $TMPC << EOF
6982 #include <libswscale/swscale.h>
6983 int main(void) { sws_scale(0, 0, 0, 0, 0, 0, 0); return 0; }
6985 if $_pkg_config --exists libswscale ; then
6986 _inc_libswscale=$($_pkg_config --cflags libswscale)
6987 _ld_tmp=$($_pkg_config --libs libswscale)
6988 cc_check $_inc_libswscale $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libswscale" \
6989 && _libswscale=yes
6990 elif cc_check -lswscale ; then
6991 extra_ldflags="$extra_ldflags -lswscale"
6992 _libswscale=yes
6995 def_libswscale='#undef CONFIG_LIBSWSCALE'
6996 test "$_libswscale" = yes && def_libswscale='#define CONFIG_LIBSWSCALE 1'
6997 echores "$_libswscale"
6999 def_libswscale_internals="#undef CONFIG_LIBSWSCALE_INTERNALS"
7000 if ! test -z "$_ffmpeg_source" ; then
7001 test "$_libswscale" = yes && def_libswscale_internals="#define CONFIG_LIBSWSCALE_INTERNALS 1" && _libswscale_internals=yes
7004 def_libavcodec_internals="#undef CONFIG_LIBAVCODEC_INTERNALS"
7005 if ! test -z "$_ffmpeg_source" ; then
7006 test "$_libavcodec" = yes && def_libavcodec_internals="#define CONFIG_LIBAVCODEC_INTERNALS 1" && _libavcodec_internals=yes
7009 echocheck "libdv-0.9.5+"
7010 if test "$_libdv" = auto ; then
7011 _libdv=no
7012 cat > $TMPC <<EOF
7013 #include <libdv/dv.h>
7014 int main(void) { dv_encoder_t* enc=dv_encoder_new(1,1,1); return 0; }
7016 cc_check -ldv $_ld_pthread $_ld_lm && _libdv=yes
7018 if test "$_libdv" = yes ; then
7019 def_libdv='#define CONFIG_LIBDV095 1'
7020 extra_ldflags="$extra_ldflags -ldv"
7021 _codecmodules="libdv $_codecmodules"
7022 else
7023 def_libdv='#undef CONFIG_LIBDV095'
7024 _nocodecmodules="libdv $_nocodecmodules"
7026 echores "$_libdv"
7029 echocheck "Xvid"
7030 if test "$_xvid" = auto ; then
7031 _xvid=no
7032 cat > $TMPC << EOF
7033 #include <xvid.h>
7034 int main(void) { xvid_global(0, 0, 0, 0); return 0; }
7036 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
7037 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
7038 done
7041 if test "$_xvid" = yes ; then
7042 def_xvid='#define CONFIG_XVID4 1'
7043 _codecmodules="xvid $_codecmodules"
7044 else
7045 def_xvid='#undef CONFIG_XVID4'
7046 _nocodecmodules="xvid $_nocodecmodules"
7048 echores "$_xvid"
7050 echocheck "x264"
7051 if test "$_x264" = auto ; then
7052 cat > $TMPC << EOF
7053 #include <inttypes.h>
7054 #include <x264.h>
7055 #if X264_BUILD < 89
7056 #error We do not support old versions of x264. Get the latest from git.
7057 #endif
7058 int main(void) { x264_encoder_open((void*)0); return 0; }
7060 _x264=no
7061 for _ld_x264 in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
7062 cc_check $_ld_x264 && libs_mencoder="$libs_mencoder $_ld_x264" && _x264=yes && break
7063 done
7066 if test "$_x264" = yes ; then
7067 def_x264='#define CONFIG_X264 1'
7068 _codecmodules="x264 $_codecmodules"
7069 else
7070 def_x264='#undef CONFIG_X264'
7071 _nocodecmodules="x264 $_nocodecmodules"
7073 echores "$_x264"
7075 echocheck "libnut"
7076 if test "$_libnut" = auto ; then
7077 cat > $TMPC << EOF
7078 #include <stdio.h>
7079 #include <stdlib.h>
7080 #include <inttypes.h>
7081 #include <libnut.h>
7082 nut_context_tt * nut;
7083 int main(void) { (void)nut_error(0); return 0; }
7085 _libnut=no
7086 cc_check -lnut && _libnut=yes
7089 if test "$_libnut" = yes ; then
7090 def_libnut='#define CONFIG_LIBNUT 1'
7091 extra_ldflags="$extra_ldflags -lnut"
7092 else
7093 def_libnut='#undef CONFIG_LIBNUT'
7095 echores "$_libnut"
7097 # These VO checks must be done after libavcodec/libswscale one
7098 echocheck "/dev/mga_vid"
7099 if test "$_mga" = auto ; then
7100 _mga=no
7101 test -c /dev/mga_vid && _mga=yes
7103 if test "$_mga" = yes ; then
7104 if test "$_libswscale_internals" = yes ; then
7105 def_mga='#define CONFIG_MGA 1'
7106 _vomodules="mga $_vomodules"
7107 else
7108 _res_comment="libswscale internal headers are required by mga, sorry"
7109 def_mga='#undef CONFIG_MGA'
7110 _novomodules="mga $_novomodules"
7112 else
7113 def_mga='#undef CONFIG_MGA'
7114 _novomodules="mga $_novomodules"
7116 echores "$_mga"
7119 echocheck "xmga"
7120 if test "$_xmga" = auto ; then
7121 _xmga=no
7122 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
7124 if test "$_xmga" = yes ; then
7125 if test "$_libswscale_internals" = yes ; then
7126 def_xmga='#define CONFIG_XMGA 1'
7127 _vomodules="xmga $_vomodules"
7128 else
7129 _res_comment="libswscale internal headers are required by mga, sorry"
7130 def_xmga='#undef CONFIG_XMGA'
7131 _novomodules="xmga $_novomodules"
7133 else
7134 def_xmga='#undef CONFIG_XMGA'
7135 _novomodules="xmga $_novomodules"
7137 echores "$_xmga"
7139 echocheck "zr"
7140 if test "$_zr" = auto ; then
7141 #36067's seem to identify themselves as 36057PQC's, so the line
7142 #below should work for 36067's and 36057's.
7143 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc/pci ; then
7144 _zr=yes
7145 else
7146 _zr=no
7149 if test "$_zr" = yes ; then
7150 if test "$_libavcodec_internals" = yes ; then
7151 def_zr='#define CONFIG_ZR 1'
7152 _vomodules="zr zr2 $_vomodules"
7153 else
7154 _res_comment="libavcodec internal headers are required by zr, sorry"
7155 _novomodules="zr $_novomodules"
7156 def_zr='#undef CONFIG_ZR'
7158 else
7159 def_zr='#undef CONFIG_ZR'
7160 _novomodules="zr zr2 $_novomodules"
7162 echores "$_zr"
7164 echocheck "glamo"
7165 if test "$_glamo" = yes ; then
7166 def_glamo='#define CONFIG_GLAMO 1'
7167 _vomodules="glamo $_vomodules"
7168 else
7169 def_glamo='#undef CONFIG_GLAMO'
7170 _novomodules="glamo $_novomodules"
7172 echores "$_glamo"
7174 # mencoder requires (optional) those libs: libmp3lame
7175 if test "$_mencoder" != no ; then
7177 echocheck "libmp3lame"
7178 def_mp3lame_preset='#undef CONFIG_MP3LAME_PRESET'
7179 def_mp3lame_preset_medium='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
7180 if test "$_mp3lame" = auto ; then
7181 _mp3lame=no
7182 cat > $TMPC <<EOF
7183 #include <lame/lame.h>
7184 int main(void) { lame_version_t lv; (void) lame_init();
7185 get_lame_version_numerical(&lv);
7186 return 0; }
7188 cc_check -lmp3lame $_ld_lm && _mp3lame=yes
7190 if test "$_mp3lame" = yes ; then
7191 def_mp3lame="#define CONFIG_MP3LAME 1"
7192 _ld_mp3lame=-lmp3lame
7193 libs_mencoder="$libs_mencoder $_ld_mp3lame"
7194 cat > $TMPC << EOF
7195 #include <lame/lame.h>
7196 int main(void) { lame_set_preset(NULL, STANDARD_FAST); return 0; }
7198 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset="#define CONFIG_MP3LAME_PRESET 1"
7199 cat > $TMPC << EOF
7200 #include <lame/lame.h>
7201 int main(void) { lame_set_preset(NULL, MEDIUM_FAST); return 0; }
7203 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset_medium="#define CONFIG_MP3LAME_PRESET_MEDIUM 1"
7204 else
7205 def_mp3lame='#undef CONFIG_MP3LAME'
7207 echores "$_mp3lame"
7209 fi # test "$_mencoder" != no
7211 echocheck "mencoder"
7212 if test "$_mencoder" = yes ; then
7213 def_muxers='#define CONFIG_MUXERS 1'
7214 else
7215 def_muxers='#define CONFIG_MUXERS 0'
7217 echores "$_mencoder"
7220 echocheck "UnRAR executable"
7221 if test "$_unrar_exec" = auto ; then
7222 _unrar_exec="yes"
7223 mingw32 && _unrar_exec="no"
7225 if test "$_unrar_exec" = yes ; then
7226 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
7227 else
7228 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
7230 echores "$_unrar_exec"
7232 echocheck "TV interface"
7233 if test "$_tv" = yes ; then
7234 def_tv='#define CONFIG_TV 1'
7235 _inputmodules="tv $_inputmodules"
7236 else
7237 _noinputmodules="tv $_noinputmodules"
7238 def_tv='#undef CONFIG_TV'
7240 echores "$_tv"
7243 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
7244 echocheck "*BSD BT848 bt8xx header"
7245 _ioctl_bt848_h=no
7246 for file in "machine/ioctl_bt848.h" \
7247 "dev/bktr/ioctl_bt848.h" \
7248 "dev/video/bktr/ioctl_bt848.h" \
7249 "dev/ic/bt8xx.h" ; do
7250 cat > $TMPC <<EOF
7251 #include <sys/types.h>
7252 #include <sys/ioctl.h>
7253 #include <$file>
7254 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
7256 if cc_check ; then
7257 _ioctl_bt848_h=yes
7258 _ioctl_bt848_h_name="$file"
7259 break;
7261 done
7262 if test "$_ioctl_bt848_h" = yes ; then
7263 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
7264 _res_comment="using $_ioctl_bt848_h_name"
7265 else
7266 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
7268 echores "$_ioctl_bt848_h"
7270 echocheck "*BSD ioctl_meteor.h"
7271 _ioctl_meteor_h=no
7272 for file in "machine/ioctl_meteor.h" \
7273 "dev/bktr/ioctl_meteor.h" \
7274 "dev/video/bktr/ioctl_meteor.h" ; do
7275 cat > $TMPC <<EOF
7276 #include <sys/types.h>
7277 #include <$file>
7278 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
7280 if cc_check ; then
7281 _ioctl_meteor_h=yes
7282 _ioctl_meteor_h_name="$file"
7283 break;
7285 done
7286 if test "$_ioctl_meteor_h" = yes ; then
7287 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
7288 _res_comment="using $_ioctl_meteor_h_name"
7289 else
7290 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
7292 echores "$_ioctl_meteor_h"
7294 echocheck "*BSD BrookTree 848 TV interface"
7295 if test "$_tv_bsdbt848" = auto ; then
7296 _tv_bsdbt848=no
7297 if test "$_tv" = yes ; then
7298 cat > $TMPC <<EOF
7299 #include <sys/types.h>
7300 $def_ioctl_meteor_h_name
7301 $def_ioctl_bt848_h_name
7302 #ifdef IOCTL_METEOR_H_NAME
7303 #include IOCTL_METEOR_H_NAME
7304 #endif
7305 #ifdef IOCTL_BT848_H_NAME
7306 #include IOCTL_BT848_H_NAME
7307 #endif
7308 int main(void) {
7309 ioctl(0, METEORSINPUT, 0);
7310 ioctl(0, TVTUNER_GETFREQ, 0);
7311 return 0;
7314 cc_check && _tv_bsdbt848=yes
7317 if test "$_tv_bsdbt848" = yes ; then
7318 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
7319 _inputmodules="tv-bsdbt848 $_inputmodules"
7320 else
7321 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
7322 _noinputmodules="tv-bsdbt848 $_noinputmodules"
7324 echores "$_tv_bsdbt848"
7325 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
7328 echocheck "DirectShow TV interface"
7329 if test "$_tv_dshow" = auto ; then
7330 _tv_dshow=no
7331 if test "$_tv" = yes && win32 ; then
7332 cat > $TMPC <<EOF
7333 #include <ole2.h>
7334 int main(void) {
7335 void* p;
7336 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
7337 return 0;
7340 cc_check -lole32 -luuid && _tv_dshow=yes
7343 if test "$_tv_dshow" = yes ; then
7344 _inputmodules="tv-dshow $_inputmodules"
7345 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
7346 extra_ldflags="$extra_ldflags -lole32 -luuid"
7347 else
7348 _noinputmodules="tv-dshow $_noinputmodules"
7349 def_tv_dshow='#undef CONFIG_TV_DSHOW'
7351 echores "$_tv_dshow"
7354 echocheck "Video 4 Linux TV interface"
7355 if test "$_tv_v4l1" = auto ; then
7356 _tv_v4l1=no
7357 if test "$_tv" = yes && linux ; then
7358 cat > $TMPC <<EOF
7359 #include <stdlib.h>
7360 #include <linux/videodev.h>
7361 int main(void) { return 0; }
7363 cc_check && _tv_v4l1=yes
7366 if test "$_tv_v4l1" = yes ; then
7367 _audio_input=yes
7368 _tv_v4l=yes
7369 def_tv_v4l='#define CONFIG_TV_V4L 1'
7370 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
7371 _inputmodules="tv-v4l $_inputmodules"
7372 else
7373 _noinputmodules="tv-v4l1 $_noinputmodules"
7374 def_tv_v4l='#undef CONFIG_TV_V4L'
7376 echores "$_tv_v4l1"
7379 echocheck "Video 4 Linux 2 TV interface"
7380 if test "$_tv_v4l2" = auto ; then
7381 _tv_v4l2=no
7382 if test "$_tv" = yes && linux ; then
7383 cat > $TMPC <<EOF
7384 #include <stdlib.h>
7385 #include <linux/types.h>
7386 #include <linux/videodev2.h>
7387 int main(void) { return 0; }
7389 cc_check && _tv_v4l2=yes
7392 if test "$_tv_v4l2" = yes ; then
7393 _audio_input=yes
7394 _tv_v4l=yes
7395 def_tv_v4l='#define CONFIG_TV_V4L 1'
7396 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
7397 _inputmodules="tv-v4l2 $_inputmodules"
7398 else
7399 _noinputmodules="tv-v4l2 $_noinputmodules"
7400 def_tv_v4l2='#undef CONFIG_TV_V4L2'
7402 echores "$_tv_v4l2"
7405 echocheck "Radio interface"
7406 if test "$_radio" = yes ; then
7407 def_radio='#define CONFIG_RADIO 1'
7408 _inputmodules="radio $_inputmodules"
7409 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
7410 _radio_capture=no
7412 if test "$_radio_capture" = yes ; then
7413 _audio_input=yes
7414 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
7415 else
7416 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7418 else
7419 _noinputmodules="radio $_noinputmodules"
7420 def_radio='#undef CONFIG_RADIO'
7421 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7422 _radio_capture=no
7424 echores "$_radio"
7425 echocheck "Capture for Radio interface"
7426 echores "$_radio_capture"
7428 echocheck "Video 4 Linux 2 Radio interface"
7429 if test "$_radio_v4l2" = auto ; then
7430 _radio_v4l2=no
7431 if test "$_radio" = yes && linux ; then
7432 cat > $TMPC <<EOF
7433 #include <stdlib.h>
7434 #include <linux/types.h>
7435 #include <linux/videodev2.h>
7436 int main(void) { return 0; }
7438 cc_check && _radio_v4l2=yes
7441 if test "$_radio_v4l2" = yes ; then
7442 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
7443 else
7444 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
7446 echores "$_radio_v4l2"
7448 echocheck "Video 4 Linux Radio interface"
7449 if test "$_radio_v4l" = auto ; then
7450 _radio_v4l=no
7451 if test "$_radio" = yes && linux ; then
7452 cat > $TMPC <<EOF
7453 #include <stdlib.h>
7454 #include <linux/videodev.h>
7455 int main(void) { return 0; }
7457 cc_check && _radio_v4l=yes
7460 if test "$_radio_v4l" = yes ; then
7461 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
7462 else
7463 def_radio_v4l='#undef CONFIG_RADIO_V4L'
7465 echores "$_radio_v4l"
7467 if freebsd || netbsd || openbsd || dragonfly || bsdos \
7468 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
7469 echocheck "*BSD BrookTree 848 Radio interface"
7470 _radio_bsdbt848=no
7471 cat > $TMPC <<EOF
7472 #include <sys/types.h>
7473 $def_ioctl_bt848_h_name
7474 #ifdef IOCTL_BT848_H_NAME
7475 #include IOCTL_BT848_H_NAME
7476 #endif
7477 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
7479 cc_check && _radio_bsdbt848=yes
7480 echores "$_radio_bsdbt848"
7481 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
7483 if test "$_radio_bsdbt848" = yes ; then
7484 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
7485 else
7486 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
7489 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no && \
7490 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
7491 die "Radio driver requires BSD BT848, V4L or V4L2!"
7494 echocheck "Video 4 Linux 2 MPEG PVR interface"
7495 if test "$_pvr" = auto ; then
7496 _pvr=no
7497 if test "$_tv_v4l2" = yes && linux ; then
7498 cat > $TMPC <<EOF
7499 #include <stdlib.h>
7500 #include <inttypes.h>
7501 #include <linux/types.h>
7502 #include <linux/videodev2.h>
7503 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
7505 cc_check && _pvr=yes
7508 if test "$_pvr" = yes ; then
7509 def_pvr='#define CONFIG_PVR 1'
7510 _inputmodules="pvr $_inputmodules"
7511 else
7512 _noinputmodules="pvr $_noinputmodules"
7513 def_pvr='#undef CONFIG_PVR'
7515 echores "$_pvr"
7518 echocheck "ftp"
7519 if ! beos && test "$_ftp" = yes ; then
7520 def_ftp='#define CONFIG_FTP 1'
7521 _inputmodules="ftp $_inputmodules"
7522 else
7523 _noinputmodules="ftp $_noinputmodules"
7524 def_ftp='#undef CONFIG_FTP'
7526 echores "$_ftp"
7528 echocheck "vstream client"
7529 if test "$_vstream" = auto ; then
7530 _vstream=no
7531 cat > $TMPC <<EOF
7532 #include <vstream-client.h>
7533 void vstream_error(const char *format, ... ) {}
7534 int main(void) { vstream_start(); return 0; }
7536 cc_check -lvstream-client && _vstream=yes
7538 if test "$_vstream" = yes ; then
7539 def_vstream='#define CONFIG_VSTREAM 1'
7540 _inputmodules="vstream $_inputmodules"
7541 extra_ldflags="$extra_ldflags -lvstream-client"
7542 else
7543 _noinputmodules="vstream $_noinputmodules"
7544 def_vstream='#undef CONFIG_VSTREAM'
7546 echores "$_vstream"
7549 echocheck "OSD menu"
7550 if test "$_menu" = yes ; then
7551 def_menu='#define CONFIG_MENU 1'
7552 test $_dvbin = "yes" && _menu_dvbin=yes
7553 else
7554 def_menu='#undef CONFIG_MENU'
7555 _menu_dvbin=no
7557 echores "$_menu"
7560 echocheck "Subtitles sorting"
7561 if test "$_sortsub" = yes ; then
7562 def_sortsub='#define CONFIG_SORTSUB 1'
7563 else
7564 def_sortsub='#undef CONFIG_SORTSUB'
7566 echores "$_sortsub"
7569 echocheck "XMMS inputplugin support"
7570 if test "$_xmms" = yes ; then
7571 if ( xmms-config --version ) >/dev/null 2>&1 ; then
7572 _xmmsplugindir=$(xmms-config --input-plugin-dir)
7573 _xmmslibdir=$(xmms-config --exec-prefix)/lib
7574 else
7575 _xmmsplugindir=/usr/lib/xmms/Input
7576 _xmmslibdir=/usr/lib
7579 def_xmms='#define CONFIG_XMMS 1'
7580 if darwin ; then
7581 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
7582 else
7583 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
7585 else
7586 def_xmms='#undef CONFIG_XMMS'
7588 echores "$_xmms"
7590 if test "$_charset" != "noconv" ; then
7591 def_charset="#define MSG_CHARSET \"$_charset\""
7592 else
7593 def_charset="#undef MSG_CHARSET"
7594 _charset="UTF-8"
7597 #############################################################################
7599 echocheck "automatic gdb attach"
7600 if test "$_crash_debug" = yes ; then
7601 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
7602 else
7603 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
7604 _crash_debug=no
7606 echores "$_crash_debug"
7608 echocheck "compiler support for noexecstack"
7609 cat > $TMPC <<EOF
7610 int main(void) { return 0; }
7612 if cc_check -Wl,-z,noexecstack ; then
7613 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
7614 echores "yes"
7615 else
7616 echores "no"
7619 echocheck "linker support for --nxcompat --no-seh --dynamicbase"
7620 if cc_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
7621 extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
7622 echores "yes"
7623 else
7624 echores "no"
7628 # Dynamic linking flags
7629 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
7630 _ld_dl_dynamic=''
7631 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
7632 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
7633 _ld_dl_dynamic='-rdynamic'
7636 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
7637 bsdos && extra_ldflags="$extra_ldflags -ldvd"
7638 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
7640 def_debug='#undef MP_DEBUG'
7641 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
7644 echocheck "joystick"
7645 def_joystick='#undef CONFIG_JOYSTICK'
7646 if test "$_joystick" = yes ; then
7647 if linux ; then
7648 # TODO add some check
7649 def_joystick='#define CONFIG_JOYSTICK 1'
7650 else
7651 _joystick="no"
7652 _res_comment="unsupported under $system_name"
7655 echores "$_joystick"
7657 echocheck "lirc"
7658 if test "$_lirc" = auto ; then
7659 _lirc=no
7660 cat > $TMPC <<EOF
7661 #include <lirc/lirc_client.h>
7662 int main(void) { return 0; }
7664 cc_check -llirc_client && _lirc=yes
7666 if test "$_lirc" = yes ; then
7667 def_lirc='#define CONFIG_LIRC 1'
7668 libs_mplayer="$libs_mplayer -llirc_client"
7669 else
7670 def_lirc='#undef CONFIG_LIRC'
7672 echores "$_lirc"
7674 echocheck "lircc"
7675 if test "$_lircc" = auto ; then
7676 _lircc=no
7677 cat > $TMPC <<EOF
7678 #include <lirc/lircc.h>
7679 int main(void) { return 0; }
7681 cc_check -llircc && _lircc=yes
7683 if test "$_lircc" = yes ; then
7684 def_lircc='#define CONFIG_LIRCC 1'
7685 libs_mplayer="$libs_mplayer -llircc"
7686 else
7687 def_lircc='#undef CONFIG_LIRCC'
7689 echores "$_lircc"
7691 if arm; then
7692 # Detect maemo development platform libraries availability (http://www.maemo.org),
7693 # they are used when run on Nokia 770|8x0
7694 echocheck "maemo (Nokia 770|8x0)"
7695 if test "$_maemo" = auto ; then
7696 _maemo=no
7697 cat > $TMPC << EOF
7698 #include <libosso.h>
7699 int main(void) { (void) osso_initialize("", "", 0, NULL); return 0; }
7701 cc_check $($_pkg_config --cflags --libs libosso 2>/dev/null) && _maemo=yes
7703 if test "$_maemo" = yes ; then
7704 def_maemo='#define CONFIG_MAEMO 1'
7705 extra_cflags="$extra_cflags $($_pkg_config --cflags libosso)"
7706 extra_ldflags="$extra_ldflags $($_pkg_config --libs libosso) -lXsp"
7707 else
7708 def_maemo='#undef CONFIG_MAEMO'
7710 echores "$_maemo"
7713 #############################################################################
7715 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
7716 # the OMF format needs to come after the 'extern symbol prefix' check, which
7717 # uses nm.
7718 if os2 ; then
7719 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
7722 # linker paths should be the same for mencoder and mplayer
7723 _ld_tmp=""
7724 for I in $libs_mplayer ; do
7725 _tmp=$(echo $I | sed -e 's/^-L.*$//')
7726 if test -z "$_tmp" ; then
7727 extra_ldflags="$extra_ldflags $I"
7728 else
7729 _ld_tmp="$_ld_tmp $I"
7731 done
7732 libs_mplayer=$_ld_tmp
7735 #############################################################################
7736 # 64 bit file offsets?
7737 if test "$_largefiles" = yes || freebsd ; then
7738 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
7739 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
7740 # dvdread support requires this (for off64_t)
7741 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
7745 CXXFLAGS=" $CFLAGS -Iffmpeg -D__STDC_LIMIT_MACROS"
7747 # This must be the last test to be performed. Any other tests following it
7748 # could fail due to linker errors. libdvdnavmini is intentionally not linked
7749 # against libdvdread (to permit MPlayer to use its own copy of the library).
7750 # So any compilation using the flags added here but not linking against
7751 # libdvdread can fail.
7752 echocheck "DVD support (libdvdnav)"
7753 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
7754 _dvdnav=no
7756 dvdnav_internal=no
7757 if test "$_dvdnav" = auto ; then
7758 if test "$_dvdread_internal" = yes ; then
7759 _dvdnav=yes
7760 dvdnav_internal=yes
7761 _res_comment="internal"
7762 else
7763 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
7766 if test "$_dvdnav" = auto ; then
7767 cat > $TMPC <<EOF
7768 #include <inttypes.h>
7769 #include <dvdnav/dvdnav.h>
7770 int main(void) { dvdnav_t *dvd=0; return 0; }
7772 _dvdnav=no
7773 _dvdnavdir=$($_dvdnavconfig --cflags)
7774 _dvdnavlibs=$($_dvdnavconfig --libs)
7775 cc_check $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
7777 if test "$_dvdnav" = yes ; then
7778 _largefiles=yes
7779 def_dvdnav='#define CONFIG_DVDNAV 1'
7780 if test "$dvdnav_internal" = yes ; then
7781 cflags_libdvdnav="-Ilibdvdnav"
7782 _inputmodules="dvdnav(internal) $_inputmodules"
7783 else
7784 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
7785 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
7786 _inputmodules="dvdnav $_inputmodules"
7788 else
7789 def_dvdnav='#undef CONFIG_DVDNAV'
7790 _noinputmodules="dvdnav $_noinputmodules"
7792 echores "$_dvdnav"
7794 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
7795 # Read dvdnav comment above.
7797 mak_enable () {
7798 list=$(echo $1 | tr '[a-z]' '[A-Z]')
7799 item=$(echo $2 | tr '[a-z]' '[A-Z]')
7800 nprefix=$3;
7801 for part in $list; do
7802 if $(echo $item | grep -q -E "(^| )$part($| )"); then
7803 echo "${nprefix}_$part = yes"
7805 done
7808 #############################################################################
7809 echo "Creating config.mak"
7810 cat > config.mak << EOF
7811 # -------- Generated by configure -----------
7813 # Ensure that locale settings do not interfere with shell commands.
7814 export LC_ALL = C
7816 CONFIGURATION = $_configuration
7818 CHARSET = $_charset
7819 DOC_LANGS = $language_doc
7820 DOC_LANG_ALL = $doc_lang_all
7821 MAN_LANGS = $language_man
7822 MAN_LANG_ALL = $man_lang_all
7823 MSG_LANGS = $language_msg
7824 MSG_LANG_ALL = $msg_lang_all
7826 prefix = \$(DESTDIR)$_prefix
7827 BINDIR = \$(DESTDIR)$_bindir
7828 DATADIR = \$(DESTDIR)$_datadir
7829 LIBDIR = \$(DESTDIR)$_libdir
7830 MANDIR = \$(DESTDIR)$_mandir
7831 CONFDIR = \$(DESTDIR)$_confdir
7832 LOCALEDIR = \$(DESTDIR)$_localedir
7834 AR = $_ar
7835 AS = $_cc
7836 CC = $_cc
7837 CXX = $_cc
7838 HOST_CC = $_host_cc
7839 INSTALL = $_install
7840 INSTALLSTRIP = $_install_strip
7841 WINDRES = $_windres
7843 CFLAGS = $CFLAGS $extra_cflags
7844 CXXFLAGS = $CXXFLAGS $extra_cflags $extra_cxxflags
7846 CFLAGS_DHAHELPER = $cflags_dhahelper
7847 CFLAGS_FAAD_FIXED = $cflags_faad_fixed
7848 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
7849 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
7850 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
7851 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
7852 CFLAGS_STACKREALIGN = $cflags_stackrealign
7853 CFLAGS_SVGALIB_HELPER = $cflags_svgalib_helper
7854 CFLAGS_TREMOR_LOW = $cflags_tremor_low
7856 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
7857 EXTRALIBS_MPLAYER = $libs_mplayer
7858 EXTRALIBS_MENCODER = $libs_mencoder
7860 GETCH = $_getch
7861 TIMER = $_timer
7863 EXESUF = $_exesuf
7864 EXESUFS_ALL = .exe
7866 ARCH = $arch
7867 $(mak_enable "$arch_all" "$arch" ARCH)
7868 $(mak_enable "$subarch_all" "$subarch" ARCH)
7869 $(mak_enable "$cpuexts_all" "$cpuexts" HAVE)
7871 MENCODER = $_mencoder
7872 MPLAYER = $_mplayer
7874 NEED_GETTIMEOFDAY = $_need_gettimeofday
7875 NEED_GLOB = $_need_glob
7876 NEED_MMAP = $_need_mmap
7877 NEED_SETENV = $_need_setenv
7878 NEED_SHMEM = $_need_shmem
7879 NEED_STRSEP = $_need_strsep
7880 NEED_SWAB = $_need_swab
7881 NEED_VSSCANF = $_need_vsscanf
7883 # features
7884 3DFX = $_3dfx
7885 AA = $_aa
7886 ALSA1X = $_alsa1x
7887 ALSA9 = $_alsa9
7888 ALSA5 = $_alsa5
7889 APPLE_IR = $_apple_ir
7890 APPLE_REMOTE = $_apple_remote
7891 ARTS = $_arts
7892 AUDIO_INPUT = $_audio_input
7893 BITMAP_FONT = $_bitmap_font
7894 BL = $_bl
7895 CACA = $_caca
7896 CDDA = $_cdda
7897 CDDB = $_cddb
7898 COREAUDIO = $_coreaudio
7899 COREVIDEO = $_corevideo
7900 DART = $_dart
7901 DFBMGA = $_dfbmga
7902 DGA = $_dga
7903 DIRECT3D = $_direct3d
7904 DIRECTFB = $_directfb
7905 DIRECTX = $_directx
7906 DVBIN = $_dvbin
7907 DVDNAV = $_dvdnav
7908 DVDNAV_INTERNAL = $dvdnav_internal
7909 DVDREAD = $_dvdread
7910 DVDREAD_INTERNAL = $_dvdread_internal
7911 DXR2 = $_dxr2
7912 DXR3 = $_dxr3
7913 ESD = $_esd
7914 FAAC=$_faac
7915 FAAD = $_faad
7916 FAAD_INTERNAL = $_faad_internal
7917 FASTMEMCPY = $_fastmemcpy
7918 FBDEV = $_fbdev
7919 GLAMO = $_glamo
7920 FREETYPE = $_freetype
7921 FTP = $_ftp
7922 GIF = $_gif
7923 GGI = $_ggi
7924 GL = $_gl
7925 GL_WIN32 = $_gl_win32
7926 GL_X11 = $_gl_x11
7927 MATRIXVIEW = $matrixview
7928 HAVE_POSIX_SELECT = $_posix_select
7929 HAVE_SYS_MMAN_H = $_mman
7930 IVTV = $_ivtv
7931 JACK = $_jack
7932 JOYSTICK = $_joystick
7933 JPEG = $_jpeg
7934 KAI = $_kai
7935 KVA = $_kva
7936 LADSPA = $_ladspa
7937 LIBA52 = $_liba52
7938 LIBA52_INTERNAL = $_liba52_internal
7939 LIBASS = $_ass
7940 LIBBS2B = $_libbs2b
7941 LIBDCA = $_libdca
7942 LIBDV = $_libdv
7943 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
7944 LIBLZO = $_liblzo
7945 LIBMAD = $_mad
7946 LIBMENU = $_menu
7947 LIBMENU_DVBIN = $_menu_dvbin
7948 LIBMPEG2 = $_libmpeg2
7949 LIBNEMESI = $_nemesi
7950 LIBNUT = $_libnut
7951 LIBSMBCLIENT = $_smb
7952 LIBTHEORA = $_theora
7953 LIRC = $_lirc
7954 LIVE555 = $_live
7955 MACOSX_FINDER = $_macosx_finder
7956 MD5SUM = $_md5sum
7957 MGA = $_mga
7958 MNG = $_mng
7959 MP3LAME = $_mp3lame
7960 MP3LIB = $_mp3lib
7961 MUSEPACK = $_musepack
7962 NAS = $_nas
7963 NATIVE_RTSP = $_native_rtsp
7964 NETWORK = $_network
7965 OPENAL = $_openal
7966 OSS = $_ossaudio
7967 PE_EXECUTABLE = $_pe_executable
7968 PNG = $_png
7969 PNM = $_pnm
7970 PRIORITY = $_priority
7971 PULSE = $_pulse
7972 PVR = $_pvr
7973 QTX_CODECS = $_qtx
7974 QTX_CODECS_WIN32 = $_qtx_codecs_win32
7975 QTX_EMULATION = $_qtx_emulation
7976 QUARTZ = $_quartz
7977 RADIO=$_radio
7978 RADIO_CAPTURE=$_radio_capture
7979 REAL_CODECS = $_real
7980 S3FB = $_s3fb
7981 SDL = $_sdl
7982 SPEEX = $_speex
7983 STREAM_CACHE = $_stream_cache
7984 SGIAUDIO = $_sgiaudio
7985 SUNAUDIO = $_sunaudio
7986 SVGA = $_svga
7987 TDFXFB = $_tdfxfb
7988 TDFXVID = $_tdfxvid
7989 TGA = $_tga
7990 TOOLAME=$_toolame
7991 TREMOR_INTERNAL = $_tremor_internal
7992 TV = $_tv
7993 TV_BSDBT848 = $_tv_bsdbt848
7994 TV_DSHOW = $_tv_dshow
7995 TV_V4L = $_tv_v4l
7996 TV_V4L1 = $_tv_v4l1
7997 TV_V4L2 = $_tv_v4l2
7998 TWOLAME=$_twolame
7999 UNRAR_EXEC = $_unrar_exec
8000 V4L2 = $_v4l2
8001 VCD = $_vcd
8002 VDPAU = $_vdpau
8003 VESA = $_vesa
8004 VIDIX = $_vidix
8005 VIDIX_PCIDB = $_vidix_pcidb_val
8006 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
8007 VIDIX_IVTV=$_vidix_drv_ivtv
8008 VIDIX_MACH64=$_vidix_drv_mach64
8009 VIDIX_MGA=$_vidix_drv_mga
8010 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
8011 VIDIX_NVIDIA=$_vidix_drv_nvidia
8012 VIDIX_PM2=$_vidix_drv_pm2
8013 VIDIX_PM3=$_vidix_drv_pm3
8014 VIDIX_RADEON=$_vidix_drv_radeon
8015 VIDIX_RAGE128=$_vidix_drv_rage128
8016 VIDIX_S3=$_vidix_drv_s3
8017 VIDIX_SH_VEU=$_vidix_drv_sh_veu
8018 VIDIX_SIS=$_vidix_drv_sis
8019 VIDIX_UNICHROME=$_vidix_drv_unichrome
8020 VORBIS = $_vorbis
8021 VSTREAM = $_vstream
8022 WII = $_wii
8023 WIN32DLL = $_win32dll
8024 WIN32WAVEOUT = $_win32waveout
8025 WIN32_EMULATION = $_win32_emulation
8026 WINVIDIX = $winvidix
8027 X11 = $_x11
8028 X264 = $_x264
8029 XANIM_CODECS = $_xanim
8030 XMGA = $_xmga
8031 XMMS_PLUGINS = $_xmms
8032 XV = $_xv
8033 XVID4 = $_xvid
8034 XVIDIX = $xvidix
8035 XVMC = $_xvmc
8036 XVR100 = $_xvr100
8037 YUV4MPEG = $_yuv4mpeg
8038 ZR = $_zr
8040 # FFmpeg
8041 LIBAVUTIL = $_libavutil
8042 LIBAVCODEC = $_libavcodec
8043 LIBAVFORMAT = $_libavformat
8044 LIBPOSTPROC = $_libpostproc
8045 LIBSWSCALE = $_libswscale
8046 LIBAVCODEC_INTERNALS = $_libavcodec_internals
8047 LIBSWSCALE_INTERNALS = $_libswscale_internals
8048 FFMPEG_SOURCE_PATH = $_ffmpeg_source
8050 RANLIB = $_ranlib
8051 YASM = $_yasm
8052 YASMFLAGS = $YASMFLAGS
8054 # Some FFmpeg codecs depend on these. Enable them unconditionally for now.
8055 CONFIG_AANDCT = yes
8056 CONFIG_FFT = yes
8057 CONFIG_GOLOMB = yes
8058 CONFIG_H264DSP = yes
8059 CONFIG_LPC = yes
8060 CONFIG_MDCT = yes
8061 CONFIG_RDFT = yes
8063 CONFIG_BZLIB = $bzlib
8064 CONFIG_ENCODERS = yes
8065 CONFIG_GPL = yes
8066 CONFIG_MLIB = $_mlib
8067 CONFIG_MUXERS = $_mencoder
8068 CONFIG_VDPAU = $_vdpau
8069 CONFIG_XVMC = $_xvmc
8070 CONFIG_ZLIB = $_zlib
8072 HAVE_PTHREADS = $_pthreads
8073 HAVE_SHM = $_shm
8074 HAVE_W32THREADS = $_w32threads
8075 HAVE_YASM = $have_yasm
8079 #############################################################################
8081 ff_config_enable () {
8082 list=$(echo $1 | tr '[a-z]' '[A-Z]')
8083 item=$(echo $2 | tr '[a-z]' '[A-Z]')
8084 _nprefix=$3;
8085 test -z "$_nprefix" && _nprefix='CONFIG'
8086 for part in $list; do
8087 if $(echo $item | grep -q -E "(^| )$part($| )"); then
8088 echo "#define ${_nprefix}_$part 1"
8089 else
8090 echo "#define ${_nprefix}_$part 0"
8092 done
8095 echo "Creating config.h"
8096 cat > $TMPH << EOF
8097 /*----------------------------------------------------------------------------
8098 ** This file has been automatically generated by configure any changes in it
8099 ** will be lost when you run configure again.
8100 ** Instead of modifying definitions here, use the --enable/--disable options
8101 ** of the configure script! See ./configure --help for details.
8102 *---------------------------------------------------------------------------*/
8104 #ifndef MPLAYER_CONFIG_H
8105 #define MPLAYER_CONFIG_H
8107 /* Undefine this if you do not want to select mono audio (left or right)
8108 with a stereo MPEG layer 2/3 audio stream. The command line option
8109 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
8110 right-only), with 0 being the default.
8112 #define CONFIG_FAKE_MONO 1
8114 /* set up audio OUTBURST. Do not change this! */
8115 #define OUTBURST 512
8117 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
8118 #undef FAST_OSD
8119 #undef FAST_OSD_TABLE
8121 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
8122 #define MPEG12_POSTPROC 1
8123 #define ATTRIBUTE_ALIGNED_MAX 16
8127 #define CONFIGURATION "$_configuration"
8129 #define MPLAYER_DATADIR "$_datadir"
8130 #define MPLAYER_CONFDIR "$_confdir"
8131 #define MPLAYER_LIBDIR "$_libdir"
8132 #define MPLAYER_LOCALEDIR "$_localedir"
8134 $def_translation
8136 /* definitions needed by included libraries */
8137 #define HAVE_INTTYPES_H 1
8138 /* libmpeg2 + FFmpeg */
8139 $def_fast_inttypes
8140 /* libdvdcss */
8141 #define HAVE_ERRNO_H 1
8142 /* libdvdcss + libdvdread */
8143 #define HAVE_LIMITS_H 1
8144 /* libdvdcss + libfaad2 */
8145 #define HAVE_UNISTD_H 1
8146 /* libfaad2 + libdvdread */
8147 #define STDC_HEADERS 1
8148 #define HAVE_MEMCPY 1
8149 /* libfaad2 */
8150 #define HAVE_STRING_H 1
8151 #define HAVE_STRINGS_H 1
8152 #define HAVE_SYS_STAT_H 1
8153 #define HAVE_SYS_TYPES_H 1
8154 /* libdvdnav */
8155 #define READ_CACHE_TRACE 0
8156 /* libdvdread */
8157 #define HAVE_DLFCN_H 1
8158 $def_dvdcss
8161 /* system headers */
8162 $def_alloca_h
8163 $def_alsa_asoundlib_h
8164 $def_altivec_h
8165 $def_malloc_h
8166 $def_mman_h
8167 $def_mman_has_map_failed
8168 $def_soundcard_h
8169 $def_sys_asoundlib_h
8170 $def_sys_soundcard_h
8171 $def_sys_sysinfo_h
8172 $def_termios_h
8173 $def_termios_sys_h
8174 $def_winsock2_h
8177 /* system functions */
8178 $def_gethostbyname2
8179 $def_gettimeofday
8180 $def_glob
8181 $def_langinfo
8182 $def_lrintf
8183 $def_map_memalign
8184 $def_memalign
8185 $def_nanosleep
8186 $def_posix_select
8187 $def_select
8188 $def_setenv
8189 $def_setmode
8190 $def_shm
8191 $def_strsep
8192 $def_swab
8193 $def_sysi86
8194 $def_sysi86_iv
8195 $def_termcap
8196 $def_termios
8197 $def_vsscanf
8200 /* system-specific features */
8201 $def_asmalign_pot
8202 $def_builtin_expect
8203 $def_dl
8204 $def_dos_paths
8205 $def_extern_asm
8206 $def_extern_prefix
8207 $def_iconv
8208 $def_kstat
8209 $def_macosx_bundle
8210 $def_macosx_finder
8211 $def_maemo
8212 $def_named_asm_args
8213 $def_priority
8214 $def_quicktime
8215 $def_restrict_keyword
8216 $def_rtc
8217 $def_unrar_exec
8220 /* configurable options */
8221 $def_charset
8222 $def_crash_debug
8223 $def_debug
8224 $def_dynamic_plugins
8225 $def_fastmemcpy
8226 $def_menu
8227 $def_runtime_cpudetection
8228 $def_sighandler
8229 $def_sortsub
8230 $def_stream_cache
8231 $def_pthread_cache
8234 /* CPU stuff */
8235 #define __CPU__ $iproc
8236 $def_words_endian
8237 $def_bigendian
8238 $(ff_config_enable "$arch_all" "$arch" "ARCH")
8239 $(ff_config_enable "$subarch_all" "$subarch" "ARCH")
8240 $(ff_config_enable "$cpuexts_all" "$cpuexts" "HAVE")
8243 /* DVD/VCD/CD */
8244 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
8245 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
8246 $def_bsdi_dvd
8247 $def_cddb
8248 $def_cdio
8249 $def_cdparanoia
8250 $def_cdrom
8251 $def_dvd
8252 $def_dvd_bsd
8253 $def_dvd_darwin
8254 $def_dvd_linux
8255 $def_dvd_openbsd
8256 $def_dvdio
8257 $def_dvdnav
8258 $def_dvdread
8259 $def_hpux_scsi_h
8260 $def_libcdio
8261 $def_sol_scsi_h
8262 $def_vcd
8265 /* codec libraries */
8266 $def_faac
8267 $def_faad
8268 $def_faad_internal
8269 $def_liba52
8270 $def_liba52_internal
8271 $def_libdca
8272 $def_libdv
8273 $def_liblzo
8274 $def_libmpeg2
8275 $def_mad
8276 $def_mp3lame
8277 $def_mp3lame_preset
8278 $def_mp3lame_preset_medium
8279 $def_mp3lib
8280 $def_musepack
8281 $def_speex
8282 $def_theora
8283 $def_toolame
8284 $def_tremor
8285 $def_twolame
8286 $def_vorbis
8287 $def_x264
8288 $def_xvid
8289 $def_zlib
8291 $def_libnut
8294 /* binary codecs */
8295 $def_qtx
8296 $def_qtx_win32
8297 $def_real
8298 $def_win32_loader
8299 $def_win32dll
8300 $def_xanim
8301 $def_xmms
8302 #define BINARY_CODECS_PATH "$_codecsdir"
8303 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
8306 /* Audio output drivers */
8307 $def_alsa
8308 $def_alsa1x
8309 $def_alsa5
8310 $def_alsa9
8311 $def_arts
8312 $def_coreaudio
8313 $def_dart
8314 $def_esd
8315 $def_esd_latency
8316 $def_jack
8317 $def_kai
8318 $def_nas
8319 $def_openal
8320 $def_openal_h
8321 $def_ossaudio
8322 $def_ossaudio_devdsp
8323 $def_ossaudio_devmixer
8324 $def_pulse
8325 $def_sgiaudio
8326 $def_sunaudio
8327 $def_win32waveout
8329 $def_ladspa
8330 $def_libbs2b
8333 /* input */
8334 $def_apple_ir
8335 $def_apple_remote
8336 $def_ioctl_bt848_h_name
8337 $def_ioctl_meteor_h_name
8338 $def_joystick
8339 $def_lirc
8340 $def_lircc
8341 $def_pvr
8342 $def_radio
8343 $def_radio_bsdbt848
8344 $def_radio_capture
8345 $def_radio_v4l
8346 $def_radio_v4l2
8347 $def_tv
8348 $def_tv_bsdbt848
8349 $def_tv_dshow
8350 $def_tv_v4l
8351 $def_tv_v4l1
8352 $def_tv_v4l2
8355 /* font stuff */
8356 $def_ass
8357 $def_bitmap_font
8358 $def_enca
8359 $def_fontconfig
8360 $def_freetype
8361 $def_fribidi
8364 /* networking */
8365 $def_closesocket
8366 $def_ftp
8367 $def_inet6
8368 $def_inet_aton
8369 $def_inet_pton
8370 $def_live
8371 $def_nemesi
8372 $def_network
8373 $def_smb
8374 $def_socklen_t
8375 $def_vstream
8378 /* libvo options */
8379 $def_3dfx
8380 $def_aa
8381 $def_bl
8382 $def_caca
8383 $def_corevideo
8384 $def_dfbmga
8385 $def_dga
8386 $def_dga1
8387 $def_dga2
8388 $def_direct3d
8389 $def_directfb
8390 $def_directfb_version
8391 $def_directx
8392 $def_dvb
8393 $def_dvbin
8394 $def_dxr2
8395 $def_dxr3
8396 $def_fbdev
8397 $def_ggi
8398 $def_ggiwmh
8399 $def_gif
8400 $def_gif_4
8401 $def_gif_tvt_hack
8402 $def_gl
8403 $def_gl_win32
8404 $def_glamo
8405 $def_gl_x11
8406 $def_matrixview
8407 $def_ivtv
8408 $def_jpeg
8409 $def_kva
8410 $def_md5sum
8411 $def_mga
8412 $def_mng
8413 $def_png
8414 $def_pnm
8415 $def_quartz
8416 $def_s3fb
8417 $def_sdl
8418 $def_sdl_sdl_h
8419 $def_svga
8420 $def_tdfxfb
8421 $def_tdfxvid
8422 $def_tga
8423 $def_v4l2
8424 $def_vdpau
8425 $def_vesa
8426 $def_vidix
8427 $def_vidix_drv_cyberblade
8428 $def_vidix_drv_ivtv
8429 $def_vidix_drv_mach64
8430 $def_vidix_drv_mga
8431 $def_vidix_drv_mga_crtc2
8432 $def_vidix_drv_nvidia
8433 $def_vidix_drv_pm3
8434 $def_vidix_drv_radeon
8435 $def_vidix_drv_rage128
8436 $def_vidix_drv_s3
8437 $def_vidix_drv_sh_veu
8438 $def_vidix_drv_sis
8439 $def_vidix_drv_unichrome
8440 $def_vidix_pfx
8441 $def_vm
8442 $def_wii
8443 $def_x11
8444 $def_xdpms
8445 $def_xf86keysym
8446 $def_xinerama
8447 $def_xmga
8448 $def_xss
8449 $def_xv
8450 $def_xvmc
8451 $def_xvr100
8452 $def_yuv4mpeg
8453 $def_zr
8456 /* FFmpeg */
8457 $def_libavcodec
8458 $def_libavformat
8459 $def_libavutil
8460 $def_libpostproc
8461 $def_libswscale
8462 $def_libavcodec_internals
8463 $def_libswscale_internals
8465 #define CONFIG_DECODERS 1
8466 #define CONFIG_ENCODERS 1
8467 #define CONFIG_DEMUXERS 1
8468 $def_muxers
8470 $def_arpa_inet_h
8471 $def_bswap
8472 $def_bzlib
8473 $def_dcbzl
8474 $def_exp2
8475 $def_exp2f
8476 $def_fast_64bit
8477 $def_fast_unaligned
8478 $def_llrint
8479 $def_log2
8480 $def_log2f
8481 $def_lrint
8482 $def_memalign_hack
8483 $def_mlib
8484 $def_mkstemp
8485 $def_posix_memalign
8486 $def_pthreads
8487 $def_round
8488 $def_roundf
8489 $def_ten_operands
8490 $def_threads
8491 $def_truncf
8492 $def_xform_asm
8493 $def_yasm
8495 #define CONFIG_FASTDIV 0
8496 #define CONFIG_FFSERVER 0
8497 #define CONFIG_GPL 1
8498 #define CONFIG_GRAY 0
8499 #define CONFIG_HARDCODED_TABLES 0
8500 #define CONFIG_LIBVORBIS 0
8501 #define CONFIG_POWERPC_PERF 0
8502 #define CONFIG_SMALL 0
8503 #define CONFIG_SWSCALE_ALPHA 1
8505 #define HAVE_ATTRIBUTE_PACKED 1
8506 #define HAVE_GETHRTIME 0
8507 #define HAVE_INLINE_ASM 1
8508 #define HAVE_LDBRX 0
8509 #define HAVE_POLL_H 1
8510 #define HAVE_PPC4XX 0
8511 #define HAVE_VFP_ARGS 1
8512 #define HAVE_VIRTUALALLOC 0
8514 /* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */
8515 #define CONFIG_AANDCT 1
8516 #define CONFIG_DCT 1
8517 #define CONFIG_DWT 1
8518 #define CONFIG_FFT 1
8519 #define CONFIG_GOLOMB 1
8520 #define CONFIG_H264DSP 1
8521 #define CONFIG_LPC 1
8522 #define CONFIG_MDCT 1
8523 #define CONFIG_RDFT 1
8525 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
8526 $def_ebx_available
8527 #ifndef MP_DEBUG
8528 #define HAVE_EBP_AVAILABLE 1
8529 #else
8530 #define HAVE_EBP_AVAILABLE 0
8531 #endif
8533 #define CONFIG_H263_VAAPI_HWACCEL 0
8534 #define CONFIG_MPEG2_VAAPI_HWACCEL 0
8535 #define CONFIG_MPEG4_VAAPI_HWACCEL 0
8536 #define CONFIG_H264_VAAPI_HWACCEL 0
8537 #define CONFIG_VC1_VAAPI_HWACCEL 0
8538 #define CONFIG_WMV3_VAAPI_HWACCEL 0
8540 #endif /* MPLAYER_CONFIG_H */
8543 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
8544 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
8546 #############################################################################
8548 ./version.sh `$_cc -dumpversion`
8550 cat << EOF
8552 Config files successfully generated by ./configure $_configuration !
8554 Install prefix: $_prefix
8555 Data directory: $_datadir
8556 Config direct.: $_confdir
8558 Byte order: $_byte_order
8559 Optimizing for: $_optimizing
8561 Languages:
8562 Messages (in addition to English): $language_msg
8563 Manual pages: $language_man
8564 Documentation: $language_doc
8566 Enabled optional drivers:
8567 Input: $_inputmodules
8568 Codecs: $_codecmodules
8569 Audio output: $_aomodules
8570 Video output: $_vomodules
8572 Disabled optional drivers:
8573 Input: $_noinputmodules
8574 Codecs: $_nocodecmodules
8575 Audio output: $_noaomodules
8576 Video output: $_novomodules
8578 'config.h' and 'config.mak' contain your configuration options.
8579 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
8580 compile *** DO NOT REPORT BUGS if you tweak these files ***
8582 'make' will now compile MPlayer and 'make install' will install it.
8583 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
8588 if test "$_mtrr" = yes ; then
8589 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$doc_lang/video.html#mtrr)"
8590 echo
8593 if ! x86_32; then
8594 cat <<EOF
8595 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
8596 operating system ($system_name). You may encounter a few files that cannot
8597 be played due to missing open source video/audio codec support.
8603 cat <<EOF
8604 Check $TMPLOG if you wonder why an autodetection failed (make sure
8605 development headers/packages are installed).
8607 NOTE: The --enable-* parameters unconditionally force options on, completely
8608 skipping autodetection. This behavior is unlike what you may be used to from
8609 autoconf-based configure scripts that can decide to override you. This greater
8610 level of control comes at a price. You may have to provide the correct compiler
8611 and linker flags yourself.
8612 If you used one of these options (except --enable-menu and similar ones that
8613 turn on internal features) and experience a compilation or linking failure,
8614 make sure you have passed the necessary compiler/linker flags to configure.
8616 If you suspect a bug, please read DOCS/HTML/$doc_lang/bugreports.html.
8620 if test "$_warn_CFLAGS" = yes; then
8621 cat <<EOF
8623 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
8624 but:
8626 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
8628 It is strongly recommended to let MPlayer choose the correct CFLAGS!
8629 To do so, execute 'CFLAGS= ./configure <options>'
8634 # Last move:
8635 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP" "$TMPH"