Skip svn changes up to r31248
[mplayer/glamo.git] / configure
blobb3b3ac25554e60e792979bd770f639dc7badfa7e
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 --disable-libmpeg2 disable builtin libmpeg2 [autodetect]
324 --disable-musepack disable musepack support [autodetect]
326 Video output:
327 --disable-vidix disable VIDIX [for x86 *nix]
328 --with-vidix-drivers[=*] list of VIDIX drivers to be compiled in
329 Available: cyberblade,ivtv,mach64,mga,mga_crtc2,
330 nvidia,pm2,pm3,radeon,rage128,s3,sis,unichrome
331 --disable-vidix-pcidb disable VIDIX PCI device name database
332 --enable-dhahelper enable VIDIX dhahelper support
333 --enable-svgalib_helper enable VIDIX svgalib_helper support
334 --enable-gl enable OpenGL video output [autodetect]
335 --disable-matrixview disable OpenGL MatrixView video output [autodetect]
336 --enable-dga2 enable DGA 2 support [autodetect]
337 --enable-dga1 enable DGA 1 support [autodetect]
338 --enable-vesa enable VESA video output [autodetect]
339 --enable-svga enable SVGAlib video output [autodetect]
340 --enable-sdl enable SDL video output [autodetect]
341 --enable-kva enable KVA video output [autodetect]
342 --enable-aa enable AAlib video output [autodetect]
343 --enable-caca enable CACA video output [autodetect]
344 --enable-ggi enable GGI video output [autodetect]
345 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
346 --enable-direct3d enable Direct3D video output [autodetect]
347 --enable-directx enable DirectX video output [autodetect]
348 --enable-dxr2 enable DXR2 video output [autodetect]
349 --enable-dxr3 enable DXR3/H+ video output [autodetect]
350 --enable-ivtv enable IVTV TV-Out video output [autodetect]
351 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
352 --enable-dvb enable DVB video output [autodetect]
353 --enable-mga enable mga_vid video output [autodetect]
354 --enable-xmga enable mga_vid X11 video output [autodetect]
355 --enable-xv enable Xv video output [autodetect]
356 --enable-xvmc enable XvMC acceleration [disable]
357 --enable-vdpau enable VDPAU acceleration [autodetect]
358 --enable-vm enable XF86VidMode support [autodetect]
359 --enable-xinerama enable Xinerama support [autodetect]
360 --enable-x11 enable X11 video output [autodetect]
361 --enable-xshape enable XShape support [autodetect]
362 --disable-xss disable screensaver support via xss [autodetect]
363 --enable-fbdev enable FBDev video output [autodetect]
364 --enable-mlib enable mediaLib video output (Solaris) [disable]
365 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
366 --enable-tdfxfb enable tdfxfb video output [disable]
367 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
368 --enable-wii enable Nintendo Wii/GameCube video output [disable]
369 --enable-directfb enable DirectFB video output [autodetect]
370 --enable-zr enable ZR360[56]7/ZR36060 video output [autodetect]
371 --enable-bl enable Blinkenlights video output [disable]
372 --enable-tdfxvid enable tdfx_vid video output [disable]
373 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
374 --disable-tga disable Targa video output [enable]
375 --disable-pnm disable PNM video output [enable]
376 --disable-md5sum disable md5sum video output [enable]
377 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
378 --disable-corevideo disable CoreVideo video output [autodetect]
379 --disable-quartz disable Quartz video output [autodetect]
381 Audio output:
382 --disable-alsa disable ALSA audio output [autodetect]
383 --disable-ossaudio disable OSS audio output [autodetect]
384 --disable-arts disable aRts audio output [autodetect]
385 --disable-esd disable esd audio output [autodetect]
386 --disable-pulse disable Pulseaudio audio output [autodetect]
387 --disable-jack disable JACK audio output [autodetect]
388 --enable-openal enable OpenAL audio output [disable]
389 --disable-nas disable NAS audio output [autodetect]
390 --disable-sgiaudio disable SGI audio output [autodetect]
391 --disable-sunaudio disable Sun audio output [autodetect]
392 --disable-kai disable KAI audio output [autodetect]
393 --disable-dart disable DART audio output [autodetect]
394 --disable-win32waveout disable Windows waveout audio output [autodetect]
395 --disable-coreaudio disable CoreAudio audio output [autodetect]
396 --disable-select disable using select() on the audio device [enable]
398 Language options:
399 --enable-translation enable support for translated output [disable]
400 --charset=charset convert the console messages to this character set
401 --language-doc=lang language to use for the documentation [en]
402 --language-man=lang language to use for the man pages [en]
403 --language-msg=lang extra languages for program messages [all]
404 --language=lang default language to use [en]
405 Specific options override --language. You can pass a list of languages separated
406 by whitespace or commas instead of a single language. Nonexisting translations
407 will be dropped from each list. All translations available in the list will be
408 installed. The value "all" will activate all translations. The LINGUAS
409 environment variable is honored. In all cases the fallback is English.
410 The program always supports English-language output; additional message
411 languages are only installed if --enable-translation is also specified.
412 Available values for --language-doc are: all $doc_lang_all
413 Available values for --language-man are: all $man_lang_all
414 Available values for --language-msg are: all $msg_lang_all
416 Miscellaneous options:
417 --enable-runtime-cpudetection enable runtime CPU detection [disable]
418 --enable-cross-compile enable cross-compilation [autodetect]
419 --cc=COMPILER C compiler to build MPlayer [gcc]
420 --host-cc=COMPILER C compiler for tools needed while building [gcc]
421 --as=ASSEMBLER assembler to build MPlayer [as]
422 --nm=NM nm tool to build MPlayer [nm]
423 --yasm=YASM Yasm assembler to build MPlayer [yasm]
424 --ar=AR librarian to build MPlayer [ar]
425 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
426 --windres=WINDRES windres to build MPlayer [windres]
427 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
428 --enable-static build a statically linked binary
429 --with-install=PATH path to a custom install program
431 Advanced options:
432 --enable-mmx enable MMX [autodetect]
433 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
434 --enable-3dnow enable 3DNow! [autodetect]
435 --enable-3dnowext enable extended 3DNow! [autodetect]
436 --enable-sse enable SSE [autodetect]
437 --enable-sse2 enable SSE2 [autodetect]
438 --enable-ssse3 enable SSSE3 [autodetect]
439 --enable-shm enable shm [autodetect]
440 --enable-altivec enable AltiVec (PowerPC) [autodetect]
441 --enable-armv5te enable DSP extensions (ARM) [autodetect]
442 --enable-armv6 enable ARMv6 (ARM) [autodetect]
443 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
444 --enable-armvfp enable ARM VFP (ARM) [autodetect]
445 --enable-neon enable NEON (ARM) [autodetect]
446 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
447 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
448 --enable-big-endian force byte order to big-endian [autodetect]
449 --enable-debug[=1-3] compile-in debugging information [disable]
450 --enable-profile compile-in profiling information [disable]
451 --disable-sighandler disable sighandler for crashes [enable]
452 --enable-crash-debug enable automatic gdb attach on crash [disable]
453 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
454 --ffmpeg-source-dir=PATH enable features requiring internal FFmpeg headers
456 Use these options if autodetection fails:
457 --extra-cflags=FLAGS extra CFLAGS
458 --extra-ldflags=FLAGS extra LDFLAGS
459 --extra-libs=FLAGS extra linker flags
460 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
461 --extra-libs-mencoder=FLAGS extra linker flags for MEncoder
462 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
464 --with-freetype-config=PATH path to freetype-config
465 --with-glib-config=PATH path to glib*-config
466 --with-gtk-config=PATH path to gtk*-config
467 --with-sdl-config=PATH path to sdl*-config
468 --with-dvdnav-config=PATH path to dvdnav-config
469 --with-dvdread-config=PATH path to dvdread-config
471 This configure script is NOT autoconf-based, even though its output is similar.
472 It will try to autodetect all configuration options. If you --enable an option
473 it will be forcefully turned on, skipping autodetection. This can break
474 compilation, so you need to know what you are doing.
476 exit 0
477 } #show_help()
479 # GOTCHA: the variables below defines the default behavior for autodetection
480 # and have - unless stated otherwise - at least 2 states : yes no
481 # If autodetection is available then the third state is: auto
482 _mmx=auto
483 _3dnow=auto
484 _3dnowext=auto
485 _mmxext=auto
486 _sse=auto
487 _sse2=auto
488 _ssse3=auto
489 _cmov=auto
490 _fast_cmov=auto
491 _fast_clz=auto
492 _armv5te=auto
493 _armv6=auto
494 _armv6t2=auto
495 _armvfp=auto
496 neon=auto
497 _iwmmxt=auto
498 _mtrr=auto
499 _altivec=auto
500 _install=install
501 _ranlib=ranlib
502 _windres=windres
503 _cc=cc
504 _ar=ar
505 test "$CC" && _cc="$CC"
506 _as=auto
507 _nm=auto
508 _yasm=yasm
509 _runtime_cpudetection=no
510 _cross_compile=auto
511 _prefix="/usr/local"
512 _libavutil=auto
513 _libavcodec=auto
514 _libavformat=auto
515 _libpostproc=auto
516 _libswscale=auto
517 _libavcodec_internals=no
518 _libswscale_internals=no
519 _mencoder=yes
520 _mplayer=yes
521 _x11=auto
522 _xshape=auto
523 _xss=auto
524 _dga1=auto
525 _dga2=auto
526 _xv=auto
527 _xvmc=no #auto when complete
528 _vdpau=auto
529 _sdl=auto
530 _kva=auto
531 _direct3d=auto
532 _directx=auto
533 _win32waveout=auto
534 _nas=auto
535 _png=auto
536 _mng=auto
537 _jpeg=auto
538 _pnm=yes
539 _md5sum=yes
540 _yuv4mpeg=yes
541 _gif=auto
542 _gl=auto
543 matrixview=yes
544 _ggi=auto
545 _ggiwmh=auto
546 _aa=auto
547 _caca=auto
548 _svga=auto
549 _vesa=auto
550 _fbdev=auto
551 _dvb=auto
552 _dxr2=auto
553 _dxr3=auto
554 _ivtv=auto
555 _v4l2=auto
556 _iconv=auto
557 _langinfo=auto
558 _rtc=auto
559 _ossaudio=auto
560 _arts=auto
561 _esd=auto
562 _pulse=auto
563 _jack=auto
564 _kai=auto
565 _dart=auto
566 _openal=no
567 _libcdio=auto
568 _liblzo=auto
569 _mad=auto
570 _mp3lame=auto
571 _toolame=auto
572 _twolame=auto
573 _tremor=auto
574 _tremor_internal=yes
575 _tremor_low=no
576 _libvorbis=auto
577 _speex=auto
578 _theora=auto
579 _mp3lib=auto
580 _liba52=auto
581 _libdca=auto
582 _libmpeg2=auto
583 _faad=auto
584 _faad_internal=auto
585 _faad_fixed=no
586 _faac=auto
587 _ladspa=auto
588 _libbs2b=auto
589 _xmms=no
590 _vcd=auto
591 _dvdnav=auto
592 _dvdnavconfig=dvdnav-config
593 _dvdreadconfig=dvdread-config
594 _dvdread=auto
595 _dvdread_internal=auto
596 _libdvdcss_internal=auto
597 _xanim=auto
598 _real=auto
599 _live=auto
600 _nemesi=auto
601 _native_rtsp=yes
602 _xinerama=auto
603 _mga=auto
604 _xmga=auto
605 _vm=auto
606 _xf86keysym=auto
607 _mlib=no #broken, thus disabled
608 _sgiaudio=auto
609 _sunaudio=auto
610 _alsa=auto
611 _fastmemcpy=yes
612 _unrar_exec=auto
613 _win32dll=auto
614 _select=yes
615 _radio=no
616 _radio_capture=no
617 _radio_v4l=auto
618 _radio_v4l2=auto
619 _radio_bsdbt848=auto
620 _tv=yes
621 _tv_v4l1=auto
622 _tv_v4l2=auto
623 _tv_bsdbt848=auto
624 _tv_dshow=auto
625 _pvr=auto
626 _network=yes
627 _winsock2_h=auto
628 _smb=auto
629 _vidix=auto
630 _vidix_pcidb=yes
631 _dhahelper=no
632 _svgalib_helper=no
633 _joystick=no
634 _xvid=auto
635 _x264=auto
636 _libnut=auto
637 _lirc=auto
638 _lircc=auto
639 _apple_remote=auto
640 _apple_ir=auto
641 _gui=no
642 _gtk1=no
643 _termcap=auto
644 _termios=auto
645 _3dfx=no
646 _s3fb=no
647 _wii=no
648 _tdfxfb=no
649 _tdfxvid=no
650 _xvr100=auto
651 _tga=yes
652 _directfb=auto
653 _zr=auto
654 _bl=no
655 _largefiles=yes
656 #language=en
657 _shm=auto
658 _linux_devfs=no
659 _translation=no
660 _charset="UTF-8"
661 _dynamic_plugins=no
662 _crash_debug=no
663 _sighandler=yes
664 _libdv=auto
665 _cdparanoia=auto
666 _cddb=auto
667 _big_endian=auto
668 _bitmap_font=yes
669 _freetype=auto
670 _fontconfig=auto
671 _menu=no
672 _qtx=auto
673 _maemo=auto
674 _coreaudio=auto
675 _corevideo=auto
676 _quartz=auto
677 quicktime=auto
678 _macosx_finder=no
679 _macosx_bundle=auto
680 _sortsub=yes
681 _freetypeconfig='freetype-config'
682 _fribidi=auto
683 _enca=auto
684 _inet6=auto
685 _gethostbyname2=auto
686 _ftp=yes
687 _musepack=auto
688 _vstream=auto
689 _pthreads=auto
690 _w32threads=auto
691 _ass=auto
692 _rpath=no
693 _asmalign_pot=auto
694 _stream_cache=yes
695 _priority=no
696 def_dos_paths="#define HAVE_DOS_PATHS 0"
697 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
698 def_priority="#undef CONFIG_PRIORITY"
699 def_pthread_cache="#undef PTHREAD_CACHE"
700 _need_shmem=yes
701 for ac_option do
702 case "$ac_option" in
703 --help|-help|-h)
704 show_help
706 --prefix=*)
707 _prefix=$(echo $ac_option | cut -d '=' -f 2)
709 --bindir=*)
710 _bindir=$(echo $ac_option | cut -d '=' -f 2)
712 --datadir=*)
713 _datadir=$(echo $ac_option | cut -d '=' -f 2)
715 --mandir=*)
716 _mandir=$(echo $ac_option | cut -d '=' -f 2)
718 --confdir=*)
719 _confdir=$(echo $ac_option | cut -d '=' -f 2)
721 --libdir=*)
722 _libdir=$(echo $ac_option | cut -d '=' -f 2)
724 --codecsdir=*)
725 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
727 --localedir=*)
728 _localedir=$(echo $ac_option | cut -d '=' -f 2)
731 --with-install=*)
732 _install=$(echo $ac_option | cut -d '=' -f 2 )
734 --with-xvmclib=*)
735 _xvmclib=$(echo $ac_option | cut -d '=' -f 2)
738 --with-sdl-config=*)
739 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
741 --with-freetype-config=*)
742 _freetypeconfig=$(echo $ac_option | cut -d '=' -f 2)
744 --with-gtk-config=*)
745 _gtkconfig=$(echo $ac_option | cut -d '=' -f 2)
747 --with-glib-config=*)
748 _glibconfig=$(echo $ac_option | cut -d '=' -f 2)
750 --with-dvdnav-config=*)
751 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
753 --with-dvdread-config=*)
754 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
757 --extra-cflags=*)
758 extra_cflags="$extra_cflags $(echo $ac_option | cut -d '=' -f 2-)"
760 --extra-ldflags=*)
761 extra_ldflags="$extra_ldflags $(echo $ac_option | cut -d '=' -f 2-)"
763 --extra-libs=*)
764 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
766 --extra-libs-mplayer=*)
767 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
769 --extra-libs-mencoder=*)
770 libs_mencoder=$(echo $ac_option | cut -d '=' -f 2)
773 --target=*)
774 _target=$(echo $ac_option | cut -d '=' -f 2)
776 --cc=*)
777 _cc=$(echo $ac_option | cut -d '=' -f 2)
779 --host-cc=*)
780 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
782 --as=*)
783 _as=$(echo $ac_option | cut -d '=' -f 2)
785 --nm=*)
786 _nm=$(echo $ac_option | cut -d '=' -f 2)
788 --yasm=*)
789 _yasm=$(echo $ac_option | cut -d '=' -f 2)
791 --ar=*)
792 _ar=$(echo $ac_option | cut -d '=' -f 2)
794 --ranlib=*)
795 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
797 --windres=*)
798 _windres=$(echo $ac_option | cut -d '=' -f 2)
800 --charset=*)
801 _charset=$(echo $ac_option | cut -d '=' -f 2)
803 --language-doc=*)
804 language_doc=$(echo $ac_option | cut -d '=' -f 2)
806 --language-man=*)
807 language_man=$(echo $ac_option | cut -d '=' -f 2)
809 --language-msg=*)
810 language_msg=$(echo $ac_option | cut -d '=' -f 2)
812 --language=*)
813 language=$(echo $ac_option | cut -d '=' -f 2)
816 --enable-static)
817 _ld_static='-static'
819 --disable-static)
820 _ld_static=''
822 --enable-profile)
823 _profile='-p'
825 --disable-profile)
826 _profile=
828 --enable-debug)
829 _debug='-g'
831 --enable-debug=*)
832 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
834 --disable-debug)
835 _debug=
837 --enable-translation) _translation=yes ;;
838 --disable-translation) _translation=no ;;
839 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
840 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
841 --enable-cross-compile) _cross_compile=yes ;;
842 --disable-cross-compile) _cross_compile=no ;;
843 --enable-mencoder) _mencoder=yes ;;
844 --disable-mencoder) _mencoder=no ;;
845 --enable-mplayer) _mplayer=yes ;;
846 --disable-mplayer) _mplayer=no ;;
847 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
848 --disable-dynamic-plugins) _dynamic_plugins=no ;;
849 --enable-x11) _x11=yes ;;
850 --disable-x11) _x11=no ;;
851 --enable-xshape) _xshape=yes ;;
852 --disable-xshape) _xshape=no ;;
853 --enable-xss) _xss=yes ;;
854 --disable-xss) _xss=no ;;
855 --enable-xv) _xv=yes ;;
856 --disable-xv) _xv=no ;;
857 --enable-xvmc) _xvmc=yes ;;
858 --disable-xvmc) _xvmc=no ;;
859 --enable-vdpau) _vdpau=yes ;;
860 --disable-vdpau) _vdpau=no ;;
861 --enable-sdl) _sdl=yes ;;
862 --disable-sdl) _sdl=no ;;
863 --enable-kva) _kva=yes ;;
864 --disable-kva) _kva=no ;;
865 --enable-direct3d) _direct3d=yes ;;
866 --disable-direct3d) _direct3d=no ;;
867 --enable-directx) _directx=yes ;;
868 --disable-directx) _directx=no ;;
869 --enable-win32waveout) _win32waveout=yes ;;
870 --disable-win32waveout) _win32waveout=no ;;
871 --enable-nas) _nas=yes ;;
872 --disable-nas) _nas=no ;;
873 --enable-png) _png=yes ;;
874 --disable-png) _png=no ;;
875 --enable-mng) _mng=yes ;;
876 --disable-mng) _mng=no ;;
877 --enable-jpeg) _jpeg=yes ;;
878 --disable-jpeg) _jpeg=no ;;
879 --enable-pnm) _pnm=yes ;;
880 --disable-pnm) _pnm=no ;;
881 --enable-md5sum) _md5sum=yes ;;
882 --disable-md5sum) _md5sum=no ;;
883 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
884 --disable-yuv4mpeg) _yuv4mpeg=no ;;
885 --enable-gif) _gif=yes ;;
886 --disable-gif) _gif=no ;;
887 --enable-gl) _gl=yes ;;
888 --disable-gl) _gl=no ;;
889 --enable-matrixview) matrixview=yes ;;
890 --disable-matrixview) matrixview=no ;;
891 --enable-ggi) _ggi=yes ;;
892 --disable-ggi) _ggi=no ;;
893 --enable-ggiwmh) _ggiwmh=yes ;;
894 --disable-ggiwmh) _ggiwmh=no ;;
895 --enable-aa) _aa=yes ;;
896 --disable-aa) _aa=no ;;
897 --enable-caca) _caca=yes ;;
898 --disable-caca) _caca=no ;;
899 --enable-svga) _svga=yes ;;
900 --disable-svga) _svga=no ;;
901 --enable-vesa) _vesa=yes ;;
902 --disable-vesa) _vesa=no ;;
903 --enable-fbdev) _fbdev=yes ;;
904 --disable-fbdev) _fbdev=no ;;
905 --enable-dvb) _dvb=yes ;;
906 --disable-dvb) _dvb=no ;;
907 --enable-dxr2) _dxr2=yes ;;
908 --disable-dxr2) _dxr2=no ;;
909 --enable-dxr3) _dxr3=yes ;;
910 --disable-dxr3) _dxr3=no ;;
911 --enable-ivtv) _ivtv=yes ;;
912 --disable-ivtv) _ivtv=no ;;
913 --enable-v4l2) _v4l2=yes ;;
914 --disable-v4l2) _v4l2=no ;;
915 --enable-iconv) _iconv=yes ;;
916 --disable-iconv) _iconv=no ;;
917 --enable-langinfo) _langinfo=yes ;;
918 --disable-langinfo) _langinfo=no ;;
919 --enable-rtc) _rtc=yes ;;
920 --disable-rtc) _rtc=no ;;
921 --enable-libdv) _libdv=yes ;;
922 --disable-libdv) _libdv=no ;;
923 --enable-ossaudio) _ossaudio=yes ;;
924 --disable-ossaudio) _ossaudio=no ;;
925 --enable-arts) _arts=yes ;;
926 --disable-arts) _arts=no ;;
927 --enable-esd) _esd=yes ;;
928 --disable-esd) _esd=no ;;
929 --enable-pulse) _pulse=yes ;;
930 --disable-pulse) _pulse=no ;;
931 --enable-jack) _jack=yes ;;
932 --disable-jack) _jack=no ;;
933 --enable-openal) _openal=yes ;;
934 --disable-openal) _openal=no ;;
935 --enable-kai) _kai=yes ;;
936 --disable-kai) _kai=no ;;
937 --enable-dart) _dart=yes ;;
938 --disable-dart) _dart=no ;;
939 --enable-mad) _mad=yes ;;
940 --disable-mad) _mad=no ;;
941 --enable-mp3lame) _mp3lame=yes ;;
942 --disable-mp3lame) _mp3lame=no ;;
943 --enable-toolame) _toolame=yes ;;
944 --disable-toolame) _toolame=no ;;
945 --enable-twolame) _twolame=yes ;;
946 --disable-twolame) _twolame=no ;;
947 --enable-libcdio) _libcdio=yes ;;
948 --disable-libcdio) _libcdio=no ;;
949 --enable-liblzo) _liblzo=yes ;;
950 --disable-liblzo) _liblzo=no ;;
951 --enable-libvorbis) _libvorbis=yes ;;
952 --disable-libvorbis) _libvorbis=no ;;
953 --enable-speex) _speex=yes ;;
954 --disable-speex) _speex=no ;;
955 --enable-tremor) _tremor=yes ;;
956 --disable-tremor) _tremor=no ;;
957 --enable-tremor-internal) _tremor_internal=yes ;;
958 --disable-tremor-internal) _tremor_internal=no ;;
959 --enable-tremor-low) _tremor_low=yes ;;
960 --disable-tremor-low) _tremor_low=no ;;
961 --enable-theora) _theora=yes ;;
962 --disable-theora) _theora=no ;;
963 --enable-mp3lib) _mp3lib=yes ;;
964 --disable-mp3lib) _mp3lib=no ;;
965 --enable-liba52) _liba52=yes ;;
966 --disable-liba52) _liba52=no ;;
967 --enable-libdca) _libdca=yes ;;
968 --disable-libdca) _libdca=no ;;
969 --enable-libmpeg2) _libmpeg2=yes ;;
970 --disable-libmpeg2) _libmpeg2=no ;;
971 --enable-musepack) _musepack=yes ;;
972 --disable-musepack) _musepack=no ;;
973 --enable-faad) _faad=yes ;;
974 --disable-faad) _faad=no ;;
975 --enable-faad-internal) _faad_internal=yes ;;
976 --disable-faad-internal) _faad_internal=no ;;
977 --enable-faad-fixed) _faad_fixed=yes ;;
978 --disable-faad-fixed) _faad_fixed=no ;;
979 --enable-faac) _faac=yes ;;
980 --disable-faac) _faac=no ;;
981 --enable-ladspa) _ladspa=yes ;;
982 --disable-ladspa) _ladspa=no ;;
983 --enable-libbs2b) _libbs2b=yes ;;
984 --disable-libbs2b) _libbs2b=no ;;
985 --enable-xmms) _xmms=yes ;;
986 --disable-xmms) _xmms=no ;;
987 --enable-vcd) _vcd=yes ;;
988 --disable-vcd) _vcd=no ;;
989 --enable-dvdread) _dvdread=yes ;;
990 --disable-dvdread) _dvdread=no ;;
991 --enable-dvdread-internal) _dvdread_internal=yes ;;
992 --disable-dvdread-internal) _dvdread_internal=no ;;
993 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
994 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
995 --enable-dvdnav) _dvdnav=yes ;;
996 --disable-dvdnav) _dvdnav=no ;;
997 --enable-xanim) _xanim=yes ;;
998 --disable-xanim) _xanim=no ;;
999 --enable-real) _real=yes ;;
1000 --disable-real) _real=no ;;
1001 --enable-live) _live=yes ;;
1002 --disable-live) _live=no ;;
1003 --enable-nemesi) _nemesi=yes ;;
1004 --disable-nemesi) _nemesi=no ;;
1005 --enable-xinerama) _xinerama=yes ;;
1006 --disable-xinerama) _xinerama=no ;;
1007 --enable-mga) _mga=yes ;;
1008 --disable-mga) _mga=no ;;
1009 --enable-xmga) _xmga=yes ;;
1010 --disable-xmga) _xmga=no ;;
1011 --enable-vm) _vm=yes ;;
1012 --disable-vm) _vm=no ;;
1013 --enable-xf86keysym) _xf86keysym=yes ;;
1014 --disable-xf86keysym) _xf86keysym=no ;;
1015 --enable-mlib) _mlib=yes ;;
1016 --disable-mlib) _mlib=no ;;
1017 --enable-sunaudio) _sunaudio=yes ;;
1018 --disable-sunaudio) _sunaudio=no ;;
1019 --enable-sgiaudio) _sgiaudio=yes ;;
1020 --disable-sgiaudio) _sgiaudio=no ;;
1021 --enable-alsa) _alsa=yes ;;
1022 --disable-alsa) _alsa=no ;;
1023 --enable-tv) _tv=yes ;;
1024 --disable-tv) _tv=no ;;
1025 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1026 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1027 --enable-tv-v4l1) _tv_v4l1=yes ;;
1028 --disable-tv-v4l1) _tv_v4l1=no ;;
1029 --enable-tv-v4l2) _tv_v4l2=yes ;;
1030 --disable-tv-v4l2) _tv_v4l2=no ;;
1031 --enable-tv-dshow) _tv_dshow=yes ;;
1032 --disable-tv-dshow) _tv_dshow=no ;;
1033 --enable-radio) _radio=yes ;;
1034 --enable-radio-capture) _radio_capture=yes ;;
1035 --disable-radio-capture) _radio_capture=no ;;
1036 --disable-radio) _radio=no ;;
1037 --enable-radio-v4l) _radio_v4l=yes ;;
1038 --disable-radio-v4l) _radio_v4l=no ;;
1039 --enable-radio-v4l2) _radio_v4l2=yes ;;
1040 --disable-radio-v4l2) _radio_v4l2=no ;;
1041 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1042 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1043 --enable-pvr) _pvr=yes ;;
1044 --disable-pvr) _pvr=no ;;
1045 --enable-fastmemcpy) _fastmemcpy=yes ;;
1046 --disable-fastmemcpy) _fastmemcpy=no ;;
1047 --enable-network) _network=yes ;;
1048 --disable-network) _network=no ;;
1049 --enable-winsock2_h) _winsock2_h=yes ;;
1050 --disable-winsock2_h) _winsock2_h=no ;;
1051 --enable-smb) _smb=yes ;;
1052 --disable-smb) _smb=no ;;
1053 --enable-vidix) _vidix=yes ;;
1054 --disable-vidix) _vidix=no ;;
1055 --with-vidix-drivers=*)
1056 _vidix_drivers=$(echo $ac_option | cut -d '=' -f 2)
1058 --disable-vidix-pcidb) _vidix_pcidb=no ;;
1059 --enable-dhahelper) _dhahelper=yes ;;
1060 --disable-dhahelper) _dhahelper=no ;;
1061 --enable-svgalib_helper) _svgalib_helper=yes ;;
1062 --disable-svgalib_helper) _svgalib_helper=no ;;
1063 --enable-joystick) _joystick=yes ;;
1064 --disable-joystick) _joystick=no ;;
1065 --enable-xvid) _xvid=yes ;;
1066 --disable-xvid) _xvid=no ;;
1067 --enable-x264) _x264=yes ;;
1068 --disable-x264) _x264=no ;;
1069 --enable-libnut) _libnut=yes ;;
1070 --disable-libnut) _libnut=no ;;
1071 --enable-libavutil) _libavutil=yes ;;
1072 --disable-libavutil) _libavutil=no ;;
1073 --enable-libavcodec) _libavcodec=yes ;;
1074 --disable-libavcodec) _libavcodec=no ;;
1075 --enable-libavformat) _libavformat=yes ;;
1076 --disable-libavformat) _libavformat=no ;;
1077 --enable-libpostproc) _libpostproc=yes ;;
1078 --disable-libpostproc) _libpostproc=no ;;
1079 --enable-libswscale) _libswscale=yes ;;
1080 --disable-libswscale) _libswscale=no ;;
1081 --ffmpeg-source-dir=*)
1082 _ffmpeg_source=$(echo $ac_option | cut -d '=' -f 2 ) ;;
1084 --enable-lirc) _lirc=yes ;;
1085 --disable-lirc) _lirc=no ;;
1086 --enable-lircc) _lircc=yes ;;
1087 --disable-lircc) _lircc=no ;;
1088 --enable-apple-remote) _apple_remote=yes ;;
1089 --disable-apple-remote) _apple_remote=no ;;
1090 --enable-apple-ir) _apple_ir=yes ;;
1091 --disable-apple-ir) _apple_ir=no ;;
1092 --enable-gui) _gui=yes ;;
1093 --disable-gui) _gui=no ;;
1094 --enable-gtk1) _gtk1=yes ;;
1095 --disable-gtk1) _gtk1=no ;;
1096 --enable-termcap) _termcap=yes ;;
1097 --disable-termcap) _termcap=no ;;
1098 --enable-termios) _termios=yes ;;
1099 --disable-termios) _termios=no ;;
1100 --enable-3dfx) _3dfx=yes ;;
1101 --disable-3dfx) _3dfx=no ;;
1102 --enable-s3fb) _s3fb=yes ;;
1103 --disable-s3fb) _s3fb=no ;;
1104 --enable-wii) _wii=yes ;;
1105 --disable-wii) _wii=no ;;
1106 --enable-tdfxfb) _tdfxfb=yes ;;
1107 --disable-tdfxfb) _tdfxfb=no ;;
1108 --disable-tdfxvid) _tdfxvid=no ;;
1109 --enable-tdfxvid) _tdfxvid=yes ;;
1110 --disable-xvr100) _xvr100=no ;;
1111 --enable-xvr100) _xvr100=yes ;;
1112 --disable-tga) _tga=no ;;
1113 --enable-tga) _tga=yes ;;
1114 --enable-directfb) _directfb=yes ;;
1115 --disable-directfb) _directfb=no ;;
1116 --enable-zr) _zr=yes ;;
1117 --disable-zr) _zr=no ;;
1118 --enable-bl) _bl=yes ;;
1119 --disable-bl) _bl=no ;;
1120 --enable-mtrr) _mtrr=yes ;;
1121 --disable-mtrr) _mtrr=no ;;
1122 --enable-largefiles) _largefiles=yes ;;
1123 --disable-largefiles) _largefiles=no ;;
1124 --enable-shm) _shm=yes ;;
1125 --disable-shm) _shm=no ;;
1126 --enable-select) _select=yes ;;
1127 --disable-select) _select=no ;;
1128 --enable-linux-devfs) _linux_devfs=yes ;;
1129 --disable-linux-devfs) _linux_devfs=no ;;
1130 --enable-cdparanoia) _cdparanoia=yes ;;
1131 --disable-cdparanoia) _cdparanoia=no ;;
1132 --enable-cddb) _cddb=yes ;;
1133 --disable-cddb) _cddb=no ;;
1134 --enable-big-endian) _big_endian=yes ;;
1135 --disable-big-endian) _big_endian=no ;;
1136 --enable-bitmap-font) _bitmap_font=yes ;;
1137 --disable-bitmap-font) _bitmap_font=no ;;
1138 --enable-freetype) _freetype=yes ;;
1139 --disable-freetype) _freetype=no ;;
1140 --enable-fontconfig) _fontconfig=yes ;;
1141 --disable-fontconfig) _fontconfig=no ;;
1142 --enable-unrarexec) _unrar_exec=yes ;;
1143 --disable-unrarexec) _unrar_exec=no ;;
1144 --enable-ftp) _ftp=yes ;;
1145 --disable-ftp) _ftp=no ;;
1146 --enable-vstream) _vstream=yes ;;
1147 --disable-vstream) _vstream=no ;;
1148 --enable-pthreads) _pthreads=yes ;;
1149 --disable-pthreads) _pthreads=no ;;
1150 --enable-w32threads) _w32threads=yes ;;
1151 --disable-w32threads) _w32threads=no ;;
1152 --enable-ass) _ass=yes ;;
1153 --disable-ass) _ass=no ;;
1154 --enable-rpath) _rpath=yes ;;
1155 --disable-rpath) _rpath=no ;;
1157 --enable-fribidi) _fribidi=yes ;;
1158 --disable-fribidi) _fribidi=no ;;
1160 --enable-enca) _enca=yes ;;
1161 --disable-enca) _enca=no ;;
1163 --enable-inet6) _inet6=yes ;;
1164 --disable-inet6) _inet6=no ;;
1166 --enable-gethostbyname2) _gethostbyname2=yes ;;
1167 --disable-gethostbyname2) _gethostbyname2=no ;;
1169 --enable-dga1) _dga1=yes ;;
1170 --disable-dga1) _dga1=no ;;
1171 --enable-dga2) _dga2=yes ;;
1172 --disable-dga2) _dga2=no ;;
1174 --enable-menu) _menu=yes ;;
1175 --disable-menu) _menu=no ;;
1177 --enable-qtx) _qtx=yes ;;
1178 --disable-qtx) _qtx=no ;;
1180 --enable-coreaudio) _coreaudio=yes ;;
1181 --disable-coreaudio) _coreaudio=no ;;
1182 --enable-corevideo) _corevideo=yes ;;
1183 --disable-corevideo) _corevideo=no ;;
1184 --enable-quartz) _quartz=yes ;;
1185 --disable-quartz) _quartz=no ;;
1186 --enable-macosx-finder) _macosx_finder=yes ;;
1187 --disable-macosx-finder) _macosx_finder=no ;;
1188 --enable-macosx-bundle) _macosx_bundle=yes ;;
1189 --disable-macosx-bundle) _macosx_bundle=no ;;
1191 --enable-maemo) _maemo=yes ;;
1192 --disable-maemo) _maemo=no ;;
1194 --enable-sortsub) _sortsub=yes ;;
1195 --disable-sortsub) _sortsub=no ;;
1197 --enable-crash-debug) _crash_debug=yes ;;
1198 --disable-crash-debug) _crash_debug=no ;;
1199 --enable-sighandler) _sighandler=yes ;;
1200 --disable-sighandler) _sighandler=no ;;
1201 --enable-win32dll) _win32dll=yes ;;
1202 --disable-win32dll) _win32dll=no ;;
1204 --enable-sse) _sse=yes ;;
1205 --disable-sse) _sse=no ;;
1206 --enable-sse2) _sse2=yes ;;
1207 --disable-sse2) _sse2=no ;;
1208 --enable-ssse3) _ssse3=yes ;;
1209 --disable-ssse3) _ssse3=no ;;
1210 --enable-mmxext) _mmxext=yes ;;
1211 --disable-mmxext) _mmxext=no ;;
1212 --enable-3dnow) _3dnow=yes ;;
1213 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1214 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1215 --disable-3dnowext) _3dnowext=no ;;
1216 --enable-cmov) _cmov=yes ;;
1217 --disable-cmov) _cmov=no ;;
1218 --enable-fast-cmov) _fast_cmov=yes ;;
1219 --disable-fast-cmov) _fast_cmov=no ;;
1220 --enable-fast-clz) _fast_clz=yes ;;
1221 --disable-fast-clz) _fast_clz=no ;;
1222 --enable-altivec) _altivec=yes ;;
1223 --disable-altivec) _altivec=no ;;
1224 --enable-armv5te) _armv5te=yes ;;
1225 --disable-armv5te) _armv5te=no ;;
1226 --enable-armv6) _armv6=yes ;;
1227 --disable-armv6) _armv6=no ;;
1228 --enable-armv6t2) _armv6t2=yes ;;
1229 --disable-armv6t2) _armv6t2=no ;;
1230 --enable-armvfp) _armvfp=yes ;;
1231 --disable-armvfp) _armvfp=no ;;
1232 --enable-neon) neon=yes ;;
1233 --disable-neon) neon=no ;;
1234 --enable-iwmmxt) _iwmmxt=yes ;;
1235 --disable-iwmmxt) _iwmmxt=no ;;
1236 --enable-mmx) _mmx=yes ;;
1237 --disable-mmx) # 3Dnow! and MMX2 require MMX
1238 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1241 echo "Unknown parameter: $ac_option"
1242 exit 1
1245 esac
1246 done
1248 if test "$_gui" = yes ; then
1249 die "Internal GUI was removed from MPlayer. Please use one of many available\n frontends\
1250 (http://www.mplayerhq.hu/design7/projects.html#mplayer_frontends)."
1253 # Atmos: moved this here, to be correct, if --prefix is specified
1254 test -z "$_bindir" && _bindir="$_prefix/bin"
1255 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1256 test -z "$_mandir" && _mandir="$_prefix/share/man"
1257 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1258 test -z "$_libdir" && _libdir="$_prefix/lib"
1259 test -z "$_localedir" && _localedir="$_prefix/share/locale"
1261 # Determine our OS name and CPU architecture
1262 if test -z "$_target" ; then
1263 # OS name
1264 system_name=$(uname -s 2>&1)
1265 case "$system_name" in
1266 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1268 Haiku)
1269 system_name=BeOS
1271 IRIX*)
1272 system_name=IRIX
1274 GNU/kFreeBSD)
1275 system_name=FreeBSD
1277 HP-UX*)
1278 system_name=HP-UX
1280 [cC][yY][gG][wW][iI][nN]*)
1281 system_name=CYGWIN
1283 MINGW32*)
1284 system_name=MINGW32
1286 OS/2*)
1287 system_name=OS/2
1290 system_name="$system_name-UNKNOWN"
1292 esac
1295 # host's CPU/instruction set
1296 host_arch=$(uname -p 2>&1)
1297 case "$host_arch" in
1298 i386|sparc|ppc|alpha|arm|mips|vax)
1300 powerpc) # Darwin returns 'powerpc'
1301 host_arch=ppc
1303 *) # uname -p on Linux returns 'unknown' for the processor type,
1304 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1306 # Maybe uname -m (machine hardware name) returns something we
1307 # recognize.
1309 # x86/x86pc is used by QNX
1310 case "$(uname -m 2>&1)" in
1311 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 ;;
1312 ia64) host_arch=ia64 ;;
1313 macppc|ppc) host_arch=ppc ;;
1314 ppc64) host_arch=ppc64 ;;
1315 alpha) host_arch=alpha ;;
1316 sparc) host_arch=sparc ;;
1317 sparc64) host_arch=sparc64 ;;
1318 parisc*|hppa*|9000*) host_arch=hppa ;;
1319 arm*|zaurus|cats) host_arch=arm ;;
1320 sh3|sh4|sh4a) host_arch=sh ;;
1321 s390) host_arch=s390 ;;
1322 s390x) host_arch=s390x ;;
1323 *mips*) host_arch=mips ;;
1324 vax) host_arch=vax ;;
1325 xtensa*) host_arch=xtensa ;;
1326 *) host_arch=UNKNOWN ;;
1327 esac
1329 esac
1330 else # if test -z "$_target"
1331 system_name=$(echo $_target | cut -d '-' -f 2)
1332 case "$(echo $system_name | tr A-Z a-z)" in
1333 linux) system_name=Linux ;;
1334 freebsd) system_name=FreeBSD ;;
1335 gnu/kfreebsd) system_name=FreeBSD ;;
1336 netbsd) system_name=NetBSD ;;
1337 bsd/os) system_name=BSD/OS ;;
1338 openbsd) system_name=OpenBSD ;;
1339 dragonfly) system_name=DragonFly ;;
1340 sunos) system_name=SunOS ;;
1341 qnx) system_name=QNX ;;
1342 morphos) system_name=MorphOS ;;
1343 amigaos) system_name=AmigaOS ;;
1344 mingw32*) system_name=MINGW32 ;;
1345 esac
1346 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1347 host_arch=$(echo $_target | cut -d '-' -f 1)
1348 if test $(echo $host_arch) != "x86_64" ; then
1349 host_arch=$(echo $host_arch | tr '_' '-')
1353 extra_cflags="-I. $extra_cflags"
1354 _timer=timer-linux.c
1355 _getch=getch2.c
1356 if freebsd ; then
1357 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1358 extra_cflags="$extra_cflags -I/usr/local/include"
1361 if netbsd || dragonfly ; then
1362 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1363 extra_cflags="$extra_cflags -I/usr/pkg/include"
1366 if darwin; then
1367 extra_cflags="-mdynamic-no-pic -falign-loops=16 -shared-libgcc $extra_cflags"
1368 _timer=timer-darwin.c
1371 if aix ; then
1372 extra_ldflags="$extra_ldflags -lC"
1375 if irix ; then
1376 _ranlib='ar -r'
1377 elif linux ; then
1378 _ranlib='true'
1381 if win32 ; then
1382 _exesuf=".exe"
1383 extra_cflags="$extra_cflags -fno-common"
1384 # -lwinmm is always needed for osdep/timer-win2.c
1385 extra_ldflags="$extra_ldflags -lwinmm"
1386 _pe_executable=yes
1387 _timer=timer-win2.c
1388 _priority=yes
1389 def_dos_paths="#define HAVE_DOS_PATHS 1"
1390 def_priority="#define CONFIG_PRIORITY 1"
1393 if mingw32 ; then
1394 _getch=getch2-win.c
1395 _need_shmem=no
1398 if amigaos ; then
1399 _select=no
1400 _sighandler=no
1401 _stream_cache=no
1402 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1403 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1406 if qnx ; then
1407 extra_ldflags="$extra_ldflags -lph"
1410 if os2 ; then
1411 _exesuf=".exe"
1412 _getch=getch2-os2.c
1413 _need_shmem=no
1414 _priority=yes
1415 def_dos_paths="#define HAVE_DOS_PATHS 1"
1416 def_priority="#define CONFIG_PRIORITY 1"
1419 for I in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1420 test "$I" && break
1421 done
1424 TMPLOG="configure.log"
1425 TMPC="$I/mplayer-conf-$RANDOM-$$.c"
1426 TMPCPP="$I/mplayer-conf-$RANDOM-$$.cpp"
1427 TMPEXE="$I/mplayer-conf-$RANDOM-$$$_exesuf"
1428 TMPH="$I/mplayer-conf-$RANDOM-$$.h"
1429 TMPS="$I/mplayer-conf-$RANDOM-$$.S"
1431 rm -f "$TMPLOG"
1432 echo configuration: $_configuration > "$TMPLOG"
1433 echo >> "$TMPLOG"
1436 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1437 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1441 # Checking CC version...
1442 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1443 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1444 echocheck "$_cc version"
1445 cc_vendor=intel
1446 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1447 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1448 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1449 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1450 # TODO verify older icc/ecc compatibility
1451 case $cc_version in
1453 cc_version="v. ?.??, bad"
1454 cc_fail=yes
1456 10.1|11.0|11.1)
1457 cc_version="$cc_version, ok"
1460 cc_version="$cc_version, bad"
1461 cc_fail=yes
1463 esac
1464 echores "$cc_version"
1465 else
1466 for _cc in "$_cc" gcc cc ; do
1467 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1468 if test "$cc_name_tmp" = "gcc"; then
1469 cc_name=$cc_name_tmp
1470 echocheck "$_cc version"
1471 cc_vendor=gnu
1472 cc_version=$($_cc -dumpversion 2>&1)
1473 case $cc_version in
1474 2.96*)
1475 cc_fail=yes
1478 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1479 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1480 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1482 esac
1483 echores "$cc_version"
1484 break
1486 cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
1487 if test "$cc_name_tmp" = "Sun C"; then
1488 echocheck "$_cc version"
1489 cc_vendor=sun
1490 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 4)
1491 res_comment="experimental support only"
1492 echores "Sun C $cc_version"
1493 break
1495 done
1496 fi # icc
1497 test "$cc_fail" = yes && die "unsupported compiler version"
1499 if test -z "$_target" && x86 ; then
1500 cat > $TMPC << EOF
1501 int main(void) {
1502 int test[(int)sizeof(char *)-7];
1503 return 0;
1506 cc_check && host_arch=x86_64 || host_arch=i386
1509 echo "Detected operating system: $system_name"
1510 echo "Detected host architecture: $host_arch"
1512 echocheck "host cc"
1513 test "$_host_cc" || _host_cc=$_cc
1514 echores $_host_cc
1516 echocheck "cross compilation"
1517 if test $_cross_compile = auto ; then
1518 cat > $TMPC << EOF
1519 int main(void) { return 0; }
1521 _cross_compile=yes
1522 cc_check && "$TMPEXE" && _cross_compile=no
1524 echores $_cross_compile
1526 if test $_cross_compile = yes; then
1527 tmp_run() {
1528 return 0
1532 # ---
1534 # now that we know what compiler should be used for compilation, try to find
1535 # out which assembler is used by the $_cc compiler
1536 if test "$_as" = auto ; then
1537 _as=$($_cc -print-prog-name=as)
1538 test -z "$_as" && _as=as
1541 if test "$_nm" = auto ; then
1542 _nm=$($_cc -print-prog-name=nm)
1543 test -z "$_nm" && _nm=nm
1546 # XXX: this should be ok..
1547 _cpuinfo="echo"
1549 if test "$_runtime_cpudetection" = no ; then
1551 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1552 # FIXME: Remove the cygwin check once AMD CPUs are supported
1553 if test -r /proc/cpuinfo && ! cygwin; then
1554 # Linux with /proc mounted, extract CPU information from it
1555 _cpuinfo="cat /proc/cpuinfo"
1556 elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
1557 # FreeBSD with Linux emulation /proc mounted,
1558 # extract CPU information from it
1559 # Don't use it on x86 though, it never reports 3Dnow
1560 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1561 elif darwin && ! x86 ; then
1562 # use hostinfo on Darwin
1563 _cpuinfo="hostinfo"
1564 elif aix; then
1565 # use 'lsattr' on AIX
1566 _cpuinfo="lsattr -E -l proc0 -a type"
1567 elif x86; then
1568 # all other OSes try to extract CPU information from a small helper
1569 # program cpuinfo instead
1570 $_cc -o cpuinfo$_exesuf cpuinfo.c
1571 _cpuinfo="./cpuinfo$_exesuf"
1574 if x86 ; then
1575 # gather more CPU information
1576 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1577 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1578 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1579 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1580 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1582 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1584 pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1585 -e s/xmm/sse/ -e s/kni/sse/)
1587 for ext in $pparam ; do
1588 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1589 done
1591 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1592 test $_sse = kernel_check && _mmxext=kernel_check
1594 echocheck "CPU vendor"
1595 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1597 echocheck "CPU type"
1598 echores "$pname"
1601 fi # test "$_runtime_cpudetection" = no
1603 if x86 && test "$_runtime_cpudetection" = no ; then
1604 extcheck() {
1605 if test "$1" = kernel_check ; then
1606 echocheck "kernel support of $2"
1607 cat > $TMPC <<EOF
1608 #include <stdlib.h>
1609 #include <signal.h>
1610 void catch() { exit(1); }
1611 int main(void) {
1612 signal(SIGILL, catch);
1613 __asm__ volatile ("$3":::"memory"); return 0;
1617 if cc_check && tmp_run ; then
1618 eval _$2=yes
1619 echores "yes"
1620 _optimizing="$_optimizing $2"
1621 return 0
1622 else
1623 eval _$2=no
1624 echores "failed"
1625 echo "It seems that your kernel does not correctly support $2."
1626 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1627 return 1
1630 return 0
1633 extcheck $_mmx "mmx" "emms"
1634 extcheck $_mmxext "mmxext" "sfence"
1635 extcheck $_3dnow "3dnow" "femms"
1636 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1637 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1638 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1639 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1640 extcheck $_cmov "cmov" "cmovb %%eax,%%ebx"
1642 echocheck "mtrr support"
1643 if test "$_mtrr" = kernel_check ; then
1644 _mtrr="yes"
1645 _optimizing="$_optimizing mtrr"
1647 echores "$_mtrr"
1649 if test "$_gcc3_ext" != ""; then
1650 # if we had to disable sse/sse2 because the active kernel does not
1651 # support this instruction set extension, we also have to tell
1652 # gcc3 to not generate sse/sse2 instructions for normal C code
1653 cat > $TMPC << EOF
1654 int main(void) { return 0; }
1656 cc_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1662 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1663 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1664 arch_all='X86 IA64 SPARC ARM AVR32 SH4 PPC ALPHA MIPS PA_RISC S390 S390X VAX BFIN XTENSA TOMI GENERIC'
1665 subarch_all='X86_32 X86_64 PPC64'
1666 case "$host_arch" in
1667 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1668 arch='x86'
1669 subarch='x86_32'
1670 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1671 iproc=486
1672 proc=i486
1675 if test "$_runtime_cpudetection" = no ; then
1676 case "$pvendor" in
1677 AuthenticAMD)
1678 case "$pfamily" in
1679 3) proc=i386 iproc=386 ;;
1680 4) proc=i486 iproc=486 ;;
1681 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1682 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1683 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1684 proc=k6-3
1685 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1686 proc=geode
1687 elif test "$pmodel" -ge 8; then
1688 proc=k6-2
1689 elif test "$pmodel" -ge 6; then
1690 proc=k6
1691 else
1692 proc=i586
1695 6) iproc=686
1696 # It's a bit difficult to determine the correct type of Family 6
1697 # AMD CPUs just from their signature. Instead, we check directly
1698 # whether it supports SSE.
1699 if test "$_sse" = yes; then
1700 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1701 proc=athlon-xp
1702 else
1703 # Again, gcc treats athlon and athlon-tbird similarly.
1704 proc=athlon
1707 15) iproc=686
1708 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1709 # caught and remedied in the optimization tests below.
1710 proc=k8
1713 *) proc=amdfam10 iproc=686
1714 test $_fast_clz = "auto" && _fast_clz=yes
1716 esac
1718 GenuineIntel)
1719 case "$pfamily" in
1720 3) proc=i386 iproc=386 ;;
1721 4) proc=i486 iproc=486 ;;
1722 5) iproc=586
1723 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1724 proc=pentium-mmx # 4 is desktop, 8 is mobile
1725 else
1726 proc=i586
1729 6) iproc=686
1730 if test "$pmodel" -ge 15; then
1731 proc=core2
1732 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1733 proc=pentium-m
1734 elif test "$pmodel" -ge 7; then
1735 proc=pentium3
1736 elif test "$pmodel" -ge 3; then
1737 proc=pentium2
1738 else
1739 proc=i686
1741 test $_fast_clz = "auto" && _fast_clz=yes
1743 15) iproc=686
1744 # A nocona in 32-bit mode has no more capabilities than a prescott.
1745 if test "$pmodel" -ge 3; then
1746 proc=prescott
1747 else
1748 proc=pentium4
1749 test $_fast_clz = "auto" && _fast_clz=yes
1751 test $_fast_cmov = "auto" && _fast_cmov=no
1753 *) proc=prescott iproc=686 ;;
1754 esac
1756 CentaurHauls)
1757 case "$pfamily" in
1758 5) iproc=586
1759 if test "$pmodel" -ge 8; then
1760 proc=winchip2
1761 elif test "$pmodel" -ge 4; then
1762 proc=winchip-c6
1763 else
1764 proc=i586
1767 6) iproc=686
1768 if test "$pmodel" -ge 9; then
1769 proc=c3-2
1770 else
1771 proc=c3
1772 iproc=586
1775 *) proc=i686 iproc=i686 ;;
1776 esac
1778 unknown)
1779 case "$pfamily" in
1780 3) proc=i386 iproc=386 ;;
1781 4) proc=i486 iproc=486 ;;
1782 *) proc=i586 iproc=586 ;;
1783 esac
1786 proc=i586 iproc=586 ;;
1787 esac
1788 test $_fast_clz = "auto" && _fast_clz=no
1789 fi # test "$_runtime_cpudetection" = no
1792 # check that gcc supports our CPU, if not, fall back to earlier ones
1793 # LGB: check -mcpu and -march swithing step by step with enabling
1794 # to fall back till 386.
1796 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1798 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1799 cpuopt=-mtune
1800 else
1801 cpuopt=-mcpu
1804 echocheck "GCC & CPU optimization abilities"
1805 cat > $TMPC << EOF
1806 int main(void) { return 0; }
1808 if test "$_runtime_cpudetection" = no ; then
1809 if test $cc_vendor != "intel" ; then
1810 cc_check -march=native && proc=native
1812 if test "$proc" = "k8"; then
1813 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1815 if test "$proc" = "athlon-xp"; then
1816 cc_check -march=$proc $cpuopt=$proc || proc=athlon
1818 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1819 cc_check -march=$proc $cpuopt=$proc || proc=k6
1821 if test "$proc" = "k6" || test "$proc" = "c3"; then
1822 if ! cc_check -march=$proc $cpuopt=$proc; then
1823 if cc_check -march=i586 $cpuopt=i686; then
1824 proc=i586-i686
1825 else
1826 proc=i586
1830 if test "$proc" = "prescott" ; then
1831 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
1833 if test "$proc" = "core2" ; then
1834 cc_check -march=$proc $cpuopt=$proc || proc=pentium-m
1836 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
1837 cc_check -march=$proc $cpuopt=$proc || proc=i686
1839 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1840 cc_check -march=$proc $cpuopt=$proc || proc=i586
1842 if test "$proc" = "i586"; then
1843 cc_check -march=$proc $cpuopt=$proc || proc=i486
1845 if test "$proc" = "i486" ; then
1846 cc_check -march=$proc $cpuopt=$proc || proc=i386
1848 if test "$proc" = "i386" ; then
1849 cc_check -march=$proc $cpuopt=$proc || proc=error
1851 if test "$proc" = "error" ; then
1852 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1853 _mcpu=""
1854 _march=""
1855 _optimizing=""
1856 elif test "$proc" = "i586-i686"; then
1857 _march="-march=i586"
1858 _mcpu="$cpuopt=i686"
1859 _optimizing="$proc"
1860 else
1861 _march="-march=$proc"
1862 _mcpu="$cpuopt=$proc"
1863 _optimizing="$proc"
1865 else # if test "$_runtime_cpudetection" = no
1866 _mcpu="$cpuopt=generic"
1867 # at least i486 required, for bswap instruction
1868 _march="-march=i486"
1869 cc_check $_mcpu || _mcpu="$cpuopt=i686"
1870 cc_check $_mcpu || _mcpu=""
1871 cc_check $_march $_mcpu || _march=""
1874 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1875 ## autodetected mcpu/march parameters
1876 if test "$_target" ; then
1877 # TODO: it may be a good idea to check GCC and fall back in all cases
1878 if test "$host_arch" = "i586-i686"; then
1879 _march="-march=i586"
1880 _mcpu="$cpuopt=i686"
1881 else
1882 _march="-march=$host_arch"
1883 _mcpu="$cpuopt=$host_arch"
1886 proc="$host_arch"
1888 case "$proc" in
1889 i386) iproc=386 ;;
1890 i486) iproc=486 ;;
1891 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1892 i686|athlon*|pentium*) iproc=686 ;;
1893 *) iproc=586 ;;
1894 esac
1897 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1898 _fast_cmov="yes"
1899 else
1900 _fast_cmov="no"
1902 test $_fast_clz = "auto" && _fast_clz=yes
1904 echores "$proc"
1907 ia64)
1908 arch='ia64'
1909 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1910 iproc='ia64'
1913 x86_64|amd64)
1914 arch='x86'
1915 subarch='x86_64'
1916 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1917 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1918 iproc='x86_64'
1920 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1921 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1922 cpuopt=-mtune
1923 else
1924 cpuopt=-mcpu
1926 if test "$_runtime_cpudetection" = no ; then
1927 case "$pvendor" in
1928 AuthenticAMD)
1929 case "$pfamily" in
1930 15) proc=k8
1931 test $_fast_clz = "auto" && _fast_clz=no
1933 *) proc=amdfam10;;
1934 esac
1936 GenuineIntel)
1937 case "$pfamily" in
1938 6) proc=core2;;
1940 # 64-bit prescotts exist, but as far as GCC is concerned they
1941 # have the same capabilities as a nocona.
1942 proc=nocona
1943 test $_fast_cmov = "auto" && _fast_cmov=no
1944 test $_fast_clz = "auto" && _fast_clz=no
1946 esac
1949 proc=error;;
1950 esac
1951 fi # test "$_runtime_cpudetection" = no
1953 echocheck "GCC & CPU optimization abilities"
1954 cat > $TMPC << EOF
1955 int main(void) { return 0; }
1957 # This is a stripped-down version of the i386 fallback.
1958 if test "$_runtime_cpudetection" = no ; then
1959 if test $cc_vendor != "intel" ; then
1960 cc_check -march=native && proc=native
1962 # --- AMD processors ---
1963 if test "$proc" = "k8"; then
1964 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1966 # This will fail if gcc version < 3.3, which is ok because earlier
1967 # versions don't really support 64-bit on amd64.
1968 # Is this a valid assumption? -Corey
1969 if test "$proc" = "athlon-xp"; then
1970 cc_check -march=$proc $cpuopt=$proc || proc=error
1972 # --- Intel processors ---
1973 if test "$proc" = "core2"; then
1974 cc_check -march=$proc $cpuopt=$proc || proc=x86-64
1976 if test "$proc" = "x86-64"; then
1977 cc_check -march=$proc $cpuopt=$proc || proc=nocona
1979 if test "$proc" = "nocona"; then
1980 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
1982 if test "$proc" = "pentium4"; then
1983 cc_check -march=$proc $cpuopt=$proc || proc=error
1986 _march="-march=$proc"
1987 _mcpu="$cpuopt=$proc"
1988 if test "$proc" = "error" ; then
1989 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1990 _mcpu=""
1991 _march=""
1993 else # if test "$_runtime_cpudetection" = no
1994 # x86-64 is an undocumented option, an intersection of k8 and nocona.
1995 _march="-march=x86-64"
1996 _mcpu="$cpuopt=generic"
1997 cc_check $_mcpu || _mcpu="x86-64"
1998 cc_check $_mcpu || _mcpu=""
1999 cc_check $_march $_mcpu || _march=""
2002 _optimizing="$proc"
2003 test $_fast_cmov = "auto" && _fast_cmov=yes
2004 test $_fast_clz = "auto" && _fast_clz=yes
2006 echores "$proc"
2009 sparc|sparc64)
2010 arch='sparc'
2011 iproc='sparc'
2012 if test "$host_arch" = "sparc64" ; then
2013 _vis='yes'
2014 proc='ultrasparc'
2015 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2016 elif sunos ; then
2017 echocheck "CPU type"
2018 karch=$(uname -m)
2019 case "$(echo $karch)" in
2020 sun4) proc=v7 ;;
2021 sun4c) proc=v7 ;;
2022 sun4d) proc=v8 ;;
2023 sun4m) proc=v8 ;;
2024 sun4u) proc=ultrasparc _vis='yes' ;;
2025 sun4v) proc=v9 ;;
2026 *) proc=v8 ;;
2027 esac
2028 echores "$proc"
2029 else
2030 proc=v8
2032 _mcpu="-mcpu=$proc"
2033 _optimizing="$proc"
2036 arm*)
2037 arch='arm'
2038 iproc='arm'
2041 avr32)
2042 arch='avr32'
2043 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2044 iproc='avr32'
2045 test $_fast_clz = "auto" && _fast_clz=yes
2048 sh|sh4)
2049 arch='sh4'
2050 iproc='sh4'
2053 ppc|ppc64|powerpc|powerpc64)
2054 arch='ppc'
2055 def_dcbzl='#define HAVE_DCBZL 0'
2056 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2057 iproc='ppc'
2059 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2060 subarch='ppc64'
2061 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2063 echocheck "CPU type"
2064 case $system_name in
2065 Linux)
2066 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2067 if test -n "$($_cpuinfo | grep altivec)"; then
2068 test $_altivec = auto && _altivec=yes
2071 Darwin)
2072 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2073 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2074 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2075 test $_altivec = auto && _altivec=yes
2078 NetBSD)
2079 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2080 case $cc_version in
2081 2*|3.0*|3.1*|3.2*|3.3*)
2084 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2085 test $_altivec = auto && _altivec=yes
2088 esac
2090 AIX)
2091 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2093 esac
2094 if test "$_altivec" = yes; then
2095 echores "$proc altivec"
2096 else
2097 _altivec=no
2098 echores "$proc"
2101 echocheck "GCC & CPU optimization abilities"
2103 if test -n "$proc"; then
2104 case "$proc" in
2105 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2106 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2107 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2108 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2109 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2110 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2111 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2112 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2113 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2114 *) ;;
2115 esac
2116 # gcc 3.1(.1) and up supports 7400 and 7450
2117 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2118 case "$proc" in
2119 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2120 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2121 *) ;;
2122 esac
2124 # gcc 3.2 and up supports 970
2125 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2126 case "$proc" in
2127 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2128 def_dcbzl='#define HAVE_DCBZL 1' ;;
2129 *) ;;
2130 esac
2132 # gcc 3.3 and up supports POWER4
2133 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2134 case "$proc" in
2135 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2136 *) ;;
2137 esac
2139 # gcc 3.4 and up supports 440*
2140 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2141 case "$proc" in
2142 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2143 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2144 *) ;;
2145 esac
2147 # gcc 4.0 and up supports POWER5
2148 if test "$_cc_major" -ge "4"; then
2149 case "$proc" in
2150 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2151 *) ;;
2152 esac
2156 if test -n "$_mcpu"; then
2157 _optimizing=$(echo $_mcpu | cut -c 8-)
2158 echores "$_optimizing"
2159 else
2160 echores "none"
2163 test $_fast_clz = "auto" && _fast_clz=yes
2167 alpha*)
2168 arch='alpha'
2169 iproc='alpha'
2170 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2172 echocheck "CPU type"
2173 cat > $TMPC << EOF
2174 int main(void) {
2175 unsigned long ver, mask;
2176 __asm__ ("implver %0" : "=r" (ver));
2177 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2178 printf("%ld-%x\n", ver, ~mask);
2179 return 0;
2182 $_cc -o "$TMPEXE" "$TMPC"
2183 case $("$TMPEXE") in
2185 0-0) proc="ev4"; _mvi="0";;
2186 1-0) proc="ev5"; _mvi="0";;
2187 1-1) proc="ev56"; _mvi="0";;
2188 1-101) proc="pca56"; _mvi="1";;
2189 2-303) proc="ev6"; _mvi="1";;
2190 2-307) proc="ev67"; _mvi="1";;
2191 2-1307) proc="ev68"; _mvi="1";;
2192 esac
2193 echores "$proc"
2195 echocheck "GCC & CPU optimization abilities"
2196 if test "$proc" = "ev68" ; then
2197 cc_check -mcpu=$proc || proc=ev67
2199 if test "$proc" = "ev67" ; then
2200 cc_check -mcpu=$proc || proc=ev6
2202 _mcpu="-mcpu=$proc"
2203 echores "$proc"
2205 test $_fast_clz = "auto" && _fast_clz=yes
2207 _optimizing="$proc"
2210 mips)
2211 arch='mips'
2212 iproc='mips'
2214 if irix ; then
2215 echocheck "CPU type"
2216 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2217 case "$(echo $proc)" in
2218 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2219 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2220 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2221 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2222 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2223 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2224 esac
2225 # gcc < 3.x does not support -mtune.
2226 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2227 _mcpu=''
2229 echores "$proc"
2232 test $_fast_clz = "auto" && _fast_clz=yes
2236 hppa)
2237 arch='pa_risc'
2238 iproc='PA-RISC'
2241 s390)
2242 arch='s390'
2243 iproc='390'
2246 s390x)
2247 arch='s390x'
2248 iproc='390x'
2251 vax)
2252 arch='vax'
2253 iproc='vax'
2256 xtensa)
2257 arch='xtensa'
2258 iproc='xtensa'
2261 generic)
2262 arch='generic'
2266 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2267 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2268 die "unsupported architecture $host_arch"
2270 esac # case "$host_arch" in
2272 if test "$_runtime_cpudetection" = yes ; then
2273 if x86 ; then
2274 test "$_cmov" != no && _cmov=yes
2275 x86_32 && _cmov=no
2276 test "$_mmx" != no && _mmx=yes
2277 test "$_3dnow" != no && _3dnow=yes
2278 test "$_3dnowext" != no && _3dnowext=yes
2279 test "$_mmxext" != no && _mmxext=yes
2280 test "$_sse" != no && _sse=yes
2281 test "$_sse2" != no && _sse2=yes
2282 test "$_ssse3" != no && _ssse3=yes
2283 test "$_mtrr" != no && _mtrr=yes
2285 if ppc; then
2286 _altivec=yes
2291 # endian testing
2292 echocheck "byte order"
2293 if test "$_big_endian" = auto ; then
2294 cat > $TMPC <<EOF
2295 short ascii_name[] = { (('M'<<8)|'P'),(('l'<<8)|'a'),(('y'<<8)|'e'),(('r'<<8)|'B'),
2296 (('i'<<8)|'g'),(('E'<<8)|'n'),(('d'<<8)|'i'),(('a'<<8)|'n'),0};
2297 int main(void) { return (int)ascii_name; }
2299 if cc_check ; then
2300 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2301 _big_endian=yes
2302 else
2303 _big_endian=no
2305 else
2306 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2309 if test "$_big_endian" = yes ; then
2310 _byte_order='big-endian'
2311 def_words_endian='#define WORDS_BIGENDIAN 1'
2312 def_bigendian='#define HAVE_BIGENDIAN 1'
2313 else
2314 _byte_order='little-endian'
2315 def_words_endian='#undef WORDS_BIGENDIAN'
2316 def_bigendian='#define HAVE_BIGENDIAN 0'
2318 echores "$_byte_order"
2321 echocheck "extern symbol prefix"
2322 cat > $TMPC << EOF
2323 int ff_extern;
2325 cc_check -c || die "Symbol mangling check failed."
2326 sym=$($_nm -P -g $TMPEXE)
2327 extern_prefix=${sym%%ff_extern*}
2328 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2329 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2330 echores $extern_prefix
2333 echocheck "assembler support of -pipe option"
2334 cat > $TMPC << EOF
2335 int main(void) { return 0; }
2337 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2338 cc_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2341 echocheck "compiler support of named assembler arguments"
2342 _named_asm_args=yes
2343 def_named_asm_args="#define NAMED_ASM_ARGS 1"
2344 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2345 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2346 _named_asm_args=no
2347 def_named_asm_args="#undef NAMED_ASM_ARGS"
2349 echores $_named_asm_args
2352 if darwin && test "$cc_vendor" = "gnu" ; then
2353 echocheck "GCC support of -mstackrealign"
2354 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2355 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2356 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2357 # wrong code with this flag, but this can be worked around by adding
2358 # -fno-unit-at-a-time as described in the blog post at
2359 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2360 cat > $TMPC << EOF
2361 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2362 int main(void) { return foo3(1,2,3) == 3 ? 0 : 1; }
2364 cc_check -O2 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2365 test -z "$cflags_stackrealign" && cc_check -O2 -mstackrealign -fno-unit-at-a-time \
2366 && tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2367 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2368 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2371 # Checking for CFLAGS
2372 _install_strip="-s"
2373 if test "$_profile" != "" || test "$_debug" != "" ; then
2374 CFLAGS="-W -Wall -O2 $_march $_mcpu $_pipe $_debug $_profile"
2375 _install_strip=
2376 elif test -z "$CFLAGS" ; then
2377 if test "$cc_vendor" = "intel" ; then
2378 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer -wd167 -wd556 -wd144"
2379 elif test "$cc_vendor" = "sun" ; then
2380 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2381 elif test "$cc_vendor" != "gnu" ; then
2382 CFLAGS="-O2 $_march $_mcpu $_pipe"
2383 else
2384 CFLAGS="-Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2385 extra_ldflags="$extra_ldflags -ffast-math"
2387 else
2388 _warn_CFLAGS=yes
2391 cat > $TMPC << EOF
2392 int main(void) { return 0; }
2394 if test "$cc_vendor" = "gnu" ; then
2395 cc_check -std=gnu99 && CFLAGS="-std=gnu99 $CFLAGS"
2396 cc_check -Wno-pointer-sign && CFLAGS="-Wno-pointer-sign $CFLAGS"
2397 cc_check -Wdisabled-optimization && CFLAGS="-Wdisabled-optimization $CFLAGS"
2398 cc_check -Wundef && CFLAGS="-Wundef $CFLAGS"
2399 cc_check -Wmissing-prototypes && CFLAGS="-Wmissing-prototypes $CFLAGS"
2400 cc_check -Wstrict-prototypes && CFLAGS="-Wstrict-prototypes $CFLAGS"
2401 else
2402 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2405 cc_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2406 cc_check -MD -MP && CFLAGS="-MD -MP $CFLAGS"
2409 if test -n "$LDFLAGS" ; then
2410 extra_ldflags="$extra_ldflags $LDFLAGS"
2411 _warn_CFLAGS=yes
2412 elif test "$cc_vendor" = "intel" ; then
2413 extra_ldflags="$extra_ldflags -i-static"
2415 if test -n "$CPPFLAGS" ; then
2416 extra_cflags="$extra_cflags $CPPFLAGS"
2417 _warn_CFLAGS=yes
2422 if x86_32 ; then
2423 # Checking assembler (_as) compatibility...
2424 # Added workaround for older as that reads from stdin by default - atmos
2425 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2426 echocheck "assembler ($_as $as_version)"
2428 _pref_as_version='2.9.1'
2429 echo 'nop' > $TMPS
2430 if test "$_mmx" = yes ; then
2431 echo 'emms' >> $TMPS
2433 if test "$_3dnow" = yes ; then
2434 _pref_as_version='2.10.1'
2435 echo 'femms' >> $TMPS
2437 if test "$_3dnowext" = yes ; then
2438 _pref_as_version='2.10.1'
2439 echo 'pswapd %mm0, %mm0' >> $TMPS
2441 if test "$_mmxext" = yes ; then
2442 _pref_as_version='2.10.1'
2443 echo 'movntq %mm0, (%eax)' >> $TMPS
2445 if test "$_sse" = yes ; then
2446 _pref_as_version='2.10.1'
2447 echo 'xorps %xmm0, %xmm0' >> $TMPS
2449 #if test "$_sse2" = yes ; then
2450 # _pref_as_version='2.11'
2451 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2453 if test "$_cmov" = yes ; then
2454 _pref_as_version='2.10.1'
2455 echo 'cmovb %eax, %ebx' >> $TMPS
2457 if test "$_ssse3" = yes ; then
2458 _pref_as_version='2.16.92'
2459 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2461 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2463 if test "$as_verc_fail" != yes ; then
2464 echores "ok"
2465 else
2466 res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2467 echores "failed"
2468 die "obsolete binutils version"
2471 fi #if x86_32
2473 echocheck ".align is a power of two"
2474 if test "$_asmalign_pot" = auto ; then
2475 _asmalign_pot=no
2476 cat > $TMPC << EOF
2477 int main(void) { __asm__ (".align 3"); return 0; }
2479 cc_check && _asmalign_pot=yes
2481 if test "$_asmalign_pot" = "yes" ; then
2482 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2483 else
2484 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2486 echores $_asmalign_pot
2488 if x86 ; then
2489 echocheck "10 assembler operands"
2490 ten_operands=no
2491 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2492 cat > $TMPC << EOF
2493 int main(void) {
2494 int x=0;
2495 __asm__ volatile(
2497 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2499 return 0;
2502 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2503 echores $ten_operands
2505 echocheck "ebx availability"
2506 ebx_available=no
2507 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2508 cat > $TMPC << EOF
2509 int main(void) {
2510 int x;
2511 __asm__ volatile(
2512 "xor %0, %0"
2513 :"=b"(x)
2514 // just adding ebx to clobber list seems unreliable with some
2515 // compilers, e.g. Haiku's gcc 2.95
2517 // and the above check does not work for OSX 64 bit...
2518 __asm__ volatile("":::"%ebx");
2519 return 0;
2522 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2523 echores $ebx_available
2525 echocheck "PIC"
2526 pic=no
2527 cat > $TMPC << EOF
2528 int main(void) {
2529 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2530 #error PIC not enabled
2531 #endif
2532 return 0;
2535 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2536 echores $pic
2538 echocheck "yasm"
2539 if test -z "$YASMFLAGS" ; then
2540 if darwin ; then
2541 x86_64 && objformat="macho64" || objformat="macho"
2542 elif win32 ; then
2543 objformat="win32"
2544 else
2545 objformat="elf"
2547 # currently tested for Linux x86, x86_64
2548 YASMFLAGS="-f $objformat"
2549 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2550 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2551 case "$objformat" in
2552 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2553 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2554 esac
2555 else
2556 _warn_CFLAGS=yes
2559 echo "pabsw xmm0, xmm0" > $TMPS
2560 yasm_check || _yasm=""
2561 if test $_yasm ; then
2562 def_yasm='#define HAVE_YASM 1'
2563 have_yasm="yes"
2564 echores "$_yasm"
2565 else
2566 def_yasm='#define HAVE_YASM 0'
2567 have_yasm="no"
2568 echores "no"
2571 echocheck "bswap"
2572 def_bswap='#define HAVE_BSWAP 0'
2573 echo 'bswap %eax' > $TMPS
2574 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2575 echores "$bswap"
2576 fi #if x86
2579 #FIXME: This should happen before the check for CFLAGS..
2580 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2581 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2583 # check if AltiVec is supported by the compiler, and how to enable it
2584 echocheck "GCC AltiVec flags"
2585 cat > $TMPC << EOF
2586 int main(void) { return 0; }
2588 if $(cc_check -maltivec -mabi=altivec) ; then
2589 _altivec_gcc_flags="-maltivec -mabi=altivec"
2590 # check if <altivec.h> should be included
2591 cat > $TMPC << EOF
2592 #include <altivec.h>
2593 int main(void) { return 0; }
2595 if $(cc_check $_altivec_gcc_flags) ; then
2596 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2597 inc_altivec_h='#include <altivec.h>'
2598 else
2599 cat > $TMPC << EOF
2600 int main(void) { return 0; }
2602 if $(cc_check -faltivec) ; then
2603 _altivec_gcc_flags="-faltivec"
2604 else
2605 _altivec=no
2606 _altivec_gcc_flags="none, AltiVec disabled"
2610 echores "$_altivec_gcc_flags"
2612 # check if the compiler supports braces for vector declarations
2613 cat > $TMPC << EOF
2614 $inc_altivec_h
2615 int main(void) { (vector int) {1}; return 0; }
2617 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2619 # Disable runtime cpudetection if we cannot generate AltiVec code or
2620 # AltiVec is disabled by the user.
2621 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2622 && _runtime_cpudetection=no
2624 # Show that we are optimizing for AltiVec (if enabled and supported).
2625 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2626 && _optimizing="$_optimizing altivec"
2628 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2629 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2632 if ppc ; then
2633 def_xform_asm='#define HAVE_XFORM_ASM 0'
2634 xform_asm=no
2635 echocheck "XFORM ASM support"
2636 cat > $TMPC << EOF
2637 int main(void) { __asm__ volatile ("lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)); return 0; }
2639 cc_check && xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2640 echores "$xform_asm"
2643 if arm ; then
2644 echocheck "ARM pld instruction"
2645 cat > $TMPC << EOF
2646 int main(void) { __asm__ volatile ("pld [r0]"); return 0; }
2648 pld=no
2649 cc_check && pld=yes
2650 echores "$pld"
2652 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2653 if test $_armv5te = "auto" ; then
2654 cat > $TMPC << EOF
2655 int main(void) { __asm__ volatile ("qadd r0, r0, r0"); return 0; }
2657 _armv5te=no
2658 cc_check && _armv5te=yes
2660 echores "$_armv5te"
2662 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2664 echocheck "ARMv6 (SIMD instructions)"
2665 if test $_armv6 = "auto" ; then
2666 cat > $TMPC << EOF
2667 int main(void) { __asm__ volatile ("sadd16 r0, r0, r0"); return 0; }
2669 _armv6=no
2670 cc_check && _armv6=yes
2672 echores "$_armv6"
2674 echocheck "ARMv6t2 (SIMD instructions)"
2675 if test $_armv6t2 = "auto" ; then
2676 cat > $TMPC << EOF
2677 int main(void) { __asm__ volatile ("movt r0, #0"); return 0; }
2679 _armv6t2=no
2680 cc_check && _armv6t2=yes
2682 echores "$_armv6"
2684 echocheck "ARM VFP"
2685 if test $_armvfp = "auto" ; then
2686 cat > $TMPC << EOF
2687 int main(void) { __asm__ volatile ("fadds s0, s0, s0"); return 0; }
2689 _armvfp=no
2690 cc_check && _armvfp=yes
2692 echores "$_armvfp"
2694 echocheck "ARM NEON"
2695 if test $neon = "auto" ; then
2696 cat > $TMPC << EOF
2697 int main(void) { __asm__ volatile ("vadd.i16 q0, q0, q0"); return 0; }
2699 neon=no
2700 cc_check && neon=yes
2702 echores "$neon"
2704 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2705 if test $_iwmmxt = "auto" ; then
2706 cat > $TMPC << EOF
2707 int main(void) { __asm__ volatile ("wunpckelub wr6, wr4"); return 0; }
2709 _iwmmxt=no
2710 cc_check && _iwmmxt=yes
2712 echores "$_iwmmxt"
2715 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'
2716 test "$_altivec" = yes && cpuexts="ALTIVEC $cpuexts"
2717 test "$_mmx" = yes && cpuexts="MMX $cpuexts"
2718 test "$_mmxext" = yes && cpuexts="MMX2 $cpuexts"
2719 test "$_3dnow" = yes && cpuexts="AMD3DNOW $cpuexts"
2720 test "$_3dnowext" = yes && cpuexts="AMD3DNOWEXT $cpuexts"
2721 test "$_sse" = yes && cpuexts="SSE $cpuexts"
2722 test "$_sse2" = yes && cpuexts="SSE2 $cpuexts"
2723 test "$_ssse3" = yes && cpuexts="SSSE3 $cpuexts"
2724 test "$_cmov" = yes && cpuexts="CMOV $cpuexts"
2725 test "$_fast_cmov" = yes && cpuexts="FAST_CMOV $cpuexts"
2726 test "$_fast_clz" = yes && cpuexts="FAST_CLZ $cpuexts"
2727 test "$pld" = yes && cpuexts="PLD $cpuexts"
2728 test "$_armv5te" = yes && cpuexts="ARMV5TE $cpuexts"
2729 test "$_armv6" = yes && cpuexts="ARMV6 $cpuexts"
2730 test "$_armv6t2" = yes && cpuexts="ARMV6T2 $cpuexts"
2731 test "$_armvfp" = yes && cpuexts="ARMVFP $cpuexts"
2732 test "$neon" = yes && cpuexts="NEON $cpuexts"
2733 test "$_iwmmxt" = yes && cpuexts="IWMMXT $cpuexts"
2734 test "$_vis" = yes && cpuexts="VIS $cpuexts"
2735 test "$_mvi" = yes && cpuexts="MVI $cpuexts"
2737 # Checking kernel version...
2738 if x86_32 && linux ; then
2739 _k_verc_problem=no
2740 kernel_version=$(uname -r 2>&1)
2741 echocheck "$system_name kernel version"
2742 case "$kernel_version" in
2743 '') kernel_version="?.??"; _k_verc_fail=yes;;
2744 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2745 _k_verc_problem=yes;;
2746 esac
2747 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2748 _k_verc_fail=yes
2750 if test "$_k_verc_fail" ; then
2751 echores "$kernel_version, fail"
2752 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2753 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2754 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2755 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2756 echo "2.2.x you must upgrade it to get SSE support!"
2757 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2758 else
2759 echores "$kernel_version, ok"
2763 ######################
2764 # MAIN TESTS GO HERE #
2765 ######################
2768 echocheck "-lposix"
2769 cat > $TMPC <<EOF
2770 int main(void) { return 0; }
2772 if cc_check -lposix ; then
2773 extra_ldflags="$extra_ldflags -lposix"
2774 echores "yes"
2775 else
2776 echores "no"
2779 echocheck "-lm"
2780 cat > $TMPC <<EOF
2781 int main(void) { return 0; }
2783 if cc_check -lm ; then
2784 _ld_lm="-lm"
2785 echores "yes"
2786 else
2787 _ld_lm=""
2788 echores "no"
2792 echocheck "langinfo"
2793 if test "$_langinfo" = auto ; then
2794 cat > $TMPC <<EOF
2795 #include <langinfo.h>
2796 int main(void) { nl_langinfo(CODESET); return 0; }
2798 _langinfo=no
2799 cc_check && _langinfo=yes
2801 if test "$_langinfo" = yes ; then
2802 def_langinfo='#define HAVE_LANGINFO 1'
2803 else
2804 def_langinfo='#undef HAVE_LANGINFO'
2806 echores "$_langinfo"
2809 echocheck "translation support"
2810 if test "$_translation" = yes; then
2811 def_translation="#define CONFIG_TRANSLATION 1"
2812 else
2813 def_translation="#undef CONFIG_TRANSLATION"
2815 echores "$_translation"
2817 echocheck "language"
2818 # Set preferred languages, "all" uses English as main language.
2819 test -z "$language" && language=$LINGUAS
2820 test -z "$language_doc" && language_doc=$language
2821 test -z "$language_man" && language_man=$language
2822 test -z "$language_msg" && language_msg="all"
2823 language_doc=$(echo $language_doc | tr , " ")
2824 language_man=$(echo $language_man | tr , " ")
2825 language_msg=$(echo $language_msg | tr , " ")
2827 test "$language_doc" = "all" && language_doc=$doc_lang_all
2828 test "$language_man" = "all" && language_man=$man_lang_all
2829 test "$language_msg" = "all" && language_msg=$msg_lang_all
2831 if test "$_translation" != yes ; then
2832 language_msg=""
2835 # Prune non-existing translations from language lists.
2836 # Set message translation to the first available language.
2837 # Fall back on English.
2838 for lang in $language_doc ; do
2839 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2840 done
2841 language_doc=$tmp_language_doc
2842 test -z "$language_doc" && language_doc=en
2844 for lang in $language_man ; do
2845 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2846 done
2847 language_man=$tmp_language_man
2848 test -z "$language_man" && language_man=en
2850 for lang in $language_msg ; do
2851 test -f po/$lang.po && tmp_language_msg="$tmp_language_msg $lang"
2852 done
2853 language_msg=$tmp_language_msg
2855 echores "messages (en+): $language_msg - man pages: $language_man - documentation: $language_doc"
2858 echocheck "enable sighandler"
2859 if test "$_sighandler" = yes ; then
2860 def_sighandler='#define CONFIG_SIGHANDLER 1'
2861 else
2862 def_sighandler='#undef CONFIG_SIGHANDLER'
2864 echores "$_sighandler"
2866 echocheck "runtime cpudetection"
2867 if test "$_runtime_cpudetection" = yes ; then
2868 _optimizing="Runtime CPU-Detection enabled"
2869 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2870 else
2871 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2873 echores "$_runtime_cpudetection"
2876 echocheck "restrict keyword"
2877 for restrict_keyword in restrict __restrict __restrict__ ; do
2878 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2879 if cc_check; then
2880 def_restrict_keyword=$restrict_keyword
2881 break;
2883 done
2884 if [ -n "$def_restrict_keyword" ]; then
2885 echores "$def_restrict_keyword"
2886 else
2887 echores "none"
2889 # Avoid infinite recursion loop ("#define restrict restrict")
2890 if [ "$def_restrict_keyword" != "restrict" ]; then
2891 def_restrict_keyword="#define restrict $def_restrict_keyword"
2892 else
2893 def_restrict_keyword=""
2897 echocheck "__builtin_expect"
2898 # GCC branch prediction hint
2899 cat > $TMPC << EOF
2900 int foo(int a) {
2901 a = __builtin_expect(a, 10);
2902 return a == 10 ? 0 : 1;
2904 int main(void) { return foo(10) && foo(0); }
2906 _builtin_expect=no
2907 cc_check && _builtin_expect=yes
2908 if test "$_builtin_expect" = yes ; then
2909 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2910 else
2911 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2913 echores "$_builtin_expect"
2916 echocheck "kstat"
2917 cat > $TMPC << EOF
2918 #include <kstat.h>
2919 int main(void) { (void) kstat_open(); (void) kstat_close(0); return 0; }
2921 _kstat=no
2922 cc_check -lkstat && _kstat=yes
2923 if test "$_kstat" = yes ; then
2924 def_kstat="#define HAVE_LIBKSTAT 1"
2925 extra_ldflags="$extra_ldflags -lkstat"
2926 else
2927 def_kstat="#undef HAVE_LIBKSTAT"
2929 echores "$_kstat"
2932 echocheck "posix4"
2933 # required for nanosleep on some systems
2934 cat > $TMPC << EOF
2935 #include <time.h>
2936 int main(void) { (void) nanosleep(0, 0); return 0; }
2938 _posix4=no
2939 cc_check -lposix4 && _posix4=yes
2940 if test "$_posix4" = yes ; then
2941 extra_ldflags="$extra_ldflags -lposix4"
2943 echores "$_posix4"
2945 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
2946 echocheck $func
2947 cat > $TMPC << EOF
2948 #include <math.h>
2949 int main(void) { long (*foo)(float); foo = $func; (void)(*foo)(0.0); return 0; }
2951 eval _$func=no
2952 cc_check -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2953 if eval test "x\$_$func" = "xyes"; then
2954 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2955 echores yes
2956 else
2957 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
2958 echores no
2960 done
2963 echocheck "mkstemp"
2964 cat > $TMPC << EOF
2965 #include <stdlib.h>
2966 int main(void) { char a; mkstemp(&a); return 0; }
2968 _mkstemp=no
2969 cc_check && _mkstemp=yes
2970 if test "$_mkstemp" = yes ; then
2971 def_mkstemp='#define HAVE_MKSTEMP 1'
2972 else
2973 def_mkstemp='#undef HAVE_MKSTEMP'
2975 echores "$_mkstemp"
2978 echocheck "nanosleep"
2979 # also check for nanosleep
2980 cat > $TMPC << EOF
2981 #include <time.h>
2982 int main(void) { (void) nanosleep(0, 0); return 0; }
2984 _nanosleep=no
2985 cc_check && _nanosleep=yes
2986 if test "$_nanosleep" = yes ; then
2987 def_nanosleep='#define HAVE_NANOSLEEP 1'
2988 else
2989 def_nanosleep='#undef HAVE_NANOSLEEP'
2991 echores "$_nanosleep"
2994 echocheck "socklib"
2995 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
2996 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
2997 cat > $TMPC << EOF
2998 #include <netdb.h>
2999 #include <sys/socket.h>
3000 int main(void) { (void) gethostbyname(0); (void) socket(AF_INET, SOCK_STREAM, 0); return 0; }
3002 _socklib=no
3003 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
3004 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
3005 done
3006 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
3007 if test $_winsock2_h = auto ; then
3008 _winsock2_h=no
3009 cat > $TMPC << EOF
3010 #include <winsock2.h>
3011 int main(void) { (void) gethostbyname(0); return 0; }
3013 cc_check -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
3015 test "$_ld_sock" && res_comment="using $_ld_sock"
3016 echores "$_socklib"
3019 if test $_winsock2_h = yes ; then
3020 _ld_sock="-lws2_32"
3021 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
3022 else
3023 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
3027 echocheck "arpa/inet.h"
3028 arpa_inet_h=no
3029 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
3030 cat > $TMPC << EOF
3031 #include <arpa/inet.h>
3032 int main(void) { return 0; }
3034 cc_check && arpa_inet_h=yes && def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
3035 echores "$arpa_inet_h"
3038 echocheck "inet_pton()"
3039 def_inet_pton='#define HAVE_INET_PTON 0'
3040 inet_pton=no
3041 cat > $TMPC << EOF
3042 #include <sys/types.h>
3043 #include <sys/socket.h>
3044 #include <arpa/inet.h>
3045 int main(void) { (void) inet_pton(0, 0, 0); return 0; }
3047 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3048 cc_check $_ld_tmp && inet_pton=yes && break
3049 done
3050 if test $inet_pton = yes ; then
3051 test "$_ld_tmp" && res_comment="using $_ld_tmp"
3052 def_inet_pton='#define HAVE_INET_PTON 1'
3054 echores "$inet_pton"
3057 echocheck "inet_aton()"
3058 def_inet_aton='#define HAVE_INET_ATON 0'
3059 inet_aton=no
3060 cat > $TMPC << EOF
3061 #include <sys/types.h>
3062 #include <sys/socket.h>
3063 #include <arpa/inet.h>
3064 int main(void) { (void) inet_aton(0, 0); return 0; }
3066 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3067 cc_check $_ld_tmp && inet_aton=yes && break
3068 done
3069 if test $inet_aton = yes ; then
3070 test "$_ld_tmp" && res_comment="using $_ld_tmp"
3071 def_inet_aton='#define HAVE_INET_ATON 1'
3073 echores "$inet_aton"
3076 echocheck "socklen_t"
3077 _socklen_t=no
3078 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
3079 cat > $TMPC << EOF
3080 #include <$header>
3081 int main(void) { socklen_t v = 0; return v; }
3083 cc_check && _socklen_t=yes && break
3084 done
3085 if test "$_socklen_t" = yes ; then
3086 def_socklen_t='#define HAVE_SOCKLEN_T 1'
3087 else
3088 def_socklen_t='#define HAVE_SOCKLEN_T 0'
3090 echores "$_socklen_t"
3093 echocheck "closesocket()"
3094 _closesocket=no
3095 cat > $TMPC << EOF
3096 #include <winsock2.h>
3097 int main(void) { closesocket(~0); return 0; }
3099 cc_check $_ld_sock && _closesocket=yes
3100 if test "$_closesocket" = yes ; then
3101 def_closesocket='#define HAVE_CLOSESOCKET 1'
3102 else
3103 def_closesocket='#define HAVE_CLOSESOCKET 0'
3105 echores "$_closesocket"
3108 echocheck "network"
3109 test $_winsock2_h = no && test $inet_pton = no &&
3110 test $inet_aton = no && _network=no
3111 if test "$_network" = yes ; then
3112 def_network='#define CONFIG_NETWORK 1'
3113 extra_ldflags="$extra_ldflags $_ld_sock"
3114 inputmodules="network $inputmodules"
3115 else
3116 _noinputmodules="network $_noinputmodules"
3117 def_network='#undef CONFIG_NETWORK'
3118 _ftp=no
3120 echores "$_network"
3123 echocheck "inet6"
3124 if test "$_inet6" = auto ; then
3125 cat > $TMPC << EOF
3126 #include <sys/types.h>
3127 #if !defined(_WIN32) || defined(__CYGWIN__)
3128 #include <sys/socket.h>
3129 #include <netinet/in.h>
3130 #else
3131 #include <ws2tcpip.h>
3132 #endif
3133 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3135 _inet6=no
3136 if cc_check $_ld_sock ; then
3137 _inet6=yes
3140 if test "$_inet6" = yes ; then
3141 def_inet6='#define HAVE_AF_INET6 1'
3142 else
3143 def_inet6='#undef HAVE_AF_INET6'
3145 echores "$_inet6"
3148 echocheck "gethostbyname2"
3149 if test "$_gethostbyname2" = auto ; then
3150 cat > $TMPC << EOF
3151 #include <sys/types.h>
3152 #include <sys/socket.h>
3153 #include <netdb.h>
3154 int main(void) { gethostbyname2("", AF_INET); return 0; }
3156 _gethostbyname2=no
3157 if cc_check ; then
3158 _gethostbyname2=yes
3161 if test "$_gethostbyname2" = yes ; then
3162 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3163 else
3164 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3166 echores "$_gethostbyname2"
3169 echocheck "inttypes.h (required)"
3170 cat > $TMPC << EOF
3171 #include <inttypes.h>
3172 int main(void) { return 0; }
3174 _inttypes=no
3175 cc_check && _inttypes=yes
3176 echores "$_inttypes"
3178 if test "$_inttypes" = no ; then
3179 echocheck "bitypes.h (inttypes.h predecessor)"
3180 cat > $TMPC << EOF
3181 #include <sys/bitypes.h>
3182 int main(void) { return 0; }
3184 cc_check && _inttypes=yes
3185 if test "$_inttypes" = yes ; then
3186 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."
3187 else
3188 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3193 echocheck "int_fastXY_t in inttypes.h"
3194 cat > $TMPC << EOF
3195 #include <inttypes.h>
3196 int main(void) {
3197 volatile int_fast16_t v= 0;
3198 return v; }
3200 _fast_inttypes=no
3201 cc_check && _fast_inttypes=yes
3202 if test "$_fast_inttypes" = no ; then
3203 def_fast_inttypes='
3204 typedef signed char int_fast8_t;
3205 typedef signed int int_fast16_t;
3206 typedef signed int int_fast32_t;
3207 typedef signed long long int_fast64_t;
3208 typedef unsigned char uint_fast8_t;
3209 typedef unsigned int uint_fast16_t;
3210 typedef unsigned int uint_fast32_t;
3211 typedef unsigned long long uint_fast64_t;'
3213 echores "$_fast_inttypes"
3216 echocheck "malloc.h"
3217 cat > $TMPC << EOF
3218 #include <malloc.h>
3219 int main(void) { (void) malloc(0); return 0; }
3221 _malloc=no
3222 cc_check && _malloc=yes
3223 if test "$_malloc" = yes ; then
3224 def_malloc_h='#define HAVE_MALLOC_H 1'
3225 else
3226 def_malloc_h='#define HAVE_MALLOC_H 0'
3228 echores "$_malloc"
3231 echocheck "memalign()"
3232 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3233 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3234 cat > $TMPC << EOF
3235 #include <malloc.h>
3236 int main(void) { (void) memalign(64, sizeof(char)); return 0; }
3238 _memalign=no
3239 cc_check && _memalign=yes
3240 if test "$_memalign" = yes ; then
3241 def_memalign='#define HAVE_MEMALIGN 1'
3242 else
3243 def_memalign='#define HAVE_MEMALIGN 0'
3244 def_map_memalign='#define memalign(a,b) malloc(b)'
3245 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3247 echores "$_memalign"
3250 echocheck "posix_memalign()"
3251 posix_memalign=no
3252 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3253 cat > $TMPC << EOF
3254 #define _XOPEN_SOURCE 600
3255 #include <stdlib.h>
3256 int main(void) { posix_memalign(NULL, 0, 0); }
3258 cc_check && posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3259 echores "$posix_memalign"
3262 echocheck "alloca.h"
3263 cat > $TMPC << EOF
3264 #include <alloca.h>
3265 int main(void) { (void) alloca(0); return 0; }
3267 _alloca=no
3268 cc_check && _alloca=yes
3269 if cc_check ; then
3270 def_alloca_h='#define HAVE_ALLOCA_H 1'
3271 else
3272 def_alloca_h='#undef HAVE_ALLOCA_H'
3274 echores "$_alloca"
3277 echocheck "fastmemcpy"
3278 if test "$_fastmemcpy" = yes ; then
3279 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3280 else
3281 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3283 echores "$_fastmemcpy"
3286 echocheck "mman.h"
3287 cat > $TMPC << EOF
3288 #include <sys/types.h>
3289 #include <sys/mman.h>
3290 int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; }
3292 _mman=no
3293 cc_check && _mman=yes
3294 if test "$_mman" = yes ; then
3295 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3296 else
3297 def_mman_h='#undef HAVE_SYS_MMAN_H'
3298 os2 && _need_mmap=yes
3300 echores "$_mman"
3302 cat > $TMPC << EOF
3303 #include <sys/types.h>
3304 #include <sys/mman.h>
3305 int main(void) { void *p = MAP_FAILED; return 0; }
3307 _mman_has_map_failed=no
3308 cc_check && _mman_has_map_failed=yes
3309 if test "$_mman_has_map_failed" = yes ; then
3310 def_mman_has_map_failed=''
3311 else
3312 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3315 echocheck "dynamic loader"
3316 cat > $TMPC << EOF
3317 #include <stddef.h>
3318 #include <dlfcn.h>
3319 int main(void) { dlopen("", 0); dlclose(NULL); dlsym(NULL, ""); return 0; }
3321 _dl=no
3322 for _ld_tmp in "" "-ldl" ; do
3323 cc_check $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3324 done
3325 if test "$_dl" = yes ; then
3326 def_dl='#define HAVE_LIBDL 1'
3327 else
3328 def_dl='#undef HAVE_LIBDL'
3330 echores "$_dl"
3333 echocheck "dynamic a/v plugins support"
3334 if test "$_dl" = no ; then
3335 _dynamic_plugins=no
3337 if test "$_dynamic_plugins" = yes ; then
3338 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3339 else
3340 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3342 echores "$_dynamic_plugins"
3345 def_threads='#define HAVE_THREADS 0'
3347 echocheck "pthread"
3348 if linux ; then
3349 THREAD_CFLAGS=-D_REENTRANT
3350 elif freebsd || netbsd || openbsd || bsdos ; then
3351 THREAD_CFLAGS=-D_THREAD_SAFE
3353 if test "$_pthreads" = auto ; then
3354 cat > $TMPC << EOF
3355 #include <pthread.h>
3356 void* func(void *arg) { return arg; }
3357 int main(void) { pthread_t tid; return pthread_create(&tid, 0, func, 0) == 0 ? 0 : 1; }
3359 _pthreads=no
3360 if ! hpux ; then
3361 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3362 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3363 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3364 done
3367 if test "$_pthreads" = yes ; then
3368 test $_ld_pthread && res_comment="using $_ld_pthread"
3369 def_pthreads='#define HAVE_PTHREADS 1'
3370 def_threads='#define HAVE_THREADS 1'
3371 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3372 else
3373 res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3374 def_pthreads='#undef HAVE_PTHREADS'
3375 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3376 mingw32 || _win32dll=no
3378 echores "$_pthreads"
3380 if cygwin ; then
3381 if test "$_pthreads" = yes ; then
3382 def_pthread_cache="#define PTHREAD_CACHE 1"
3383 else
3384 _stream_cache=no
3385 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3389 echocheck "w32threads"
3390 if test "$_pthreads" = yes ; then
3391 res_comment="using pthread instead"
3392 _w32threads=no
3394 if test "$_w32threads" = auto ; then
3395 _w32threads=no
3396 mingw32 && _w32threads=yes
3398 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3399 echores "$_w32threads"
3401 echocheck "rpath"
3402 netbsd &&_rpath=yes
3403 if test "$_rpath" = yes ; then
3404 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3405 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3406 done
3407 extra_ldflags=$tmp
3409 echores "$_rpath"
3411 echocheck "iconv"
3412 if test "$_iconv" = auto ; then
3413 cat > $TMPC << EOF
3414 #include <stdio.h>
3415 #include <unistd.h>
3416 #include <iconv.h>
3417 #define INBUFSIZE 1024
3418 #define OUTBUFSIZE 4096
3420 char inbuffer[INBUFSIZE];
3421 char outbuffer[OUTBUFSIZE];
3423 int main(void) {
3424 size_t numread;
3425 iconv_t icdsc;
3426 char *tocode="UTF-8";
3427 char *fromcode="cp1250";
3428 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3429 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3430 char *iptr=inbuffer;
3431 char *optr=outbuffer;
3432 size_t inleft=numread;
3433 size_t outleft=OUTBUFSIZE;
3434 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft)
3435 != (size_t)(-1)) {
3436 write(1, outbuffer, OUTBUFSIZE - outleft);
3439 if (iconv_close(icdsc) == -1)
3442 return 0;
3445 _iconv=no
3446 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3447 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3448 _iconv=yes && break
3449 done
3451 if test "$_iconv" = yes ; then
3452 def_iconv='#define CONFIG_ICONV 1'
3453 else
3454 def_iconv='#undef CONFIG_ICONV'
3456 echores "$_iconv"
3459 echocheck "soundcard.h"
3460 _soundcard_h=no
3461 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3462 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3463 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3464 cat > $TMPC << EOF
3465 #include <$_soundcard_header>
3466 int main(void) { return 0; }
3468 cc_check && _soundcard_h=yes && res_comment="$_soundcard_header" && break
3469 done
3471 if test "$_soundcard_h" = yes ; then
3472 if test $_soundcard_header = "sys/soundcard.h"; then
3473 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3474 else
3475 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3478 echores "$_soundcard_h"
3481 echocheck "sys/dvdio.h"
3482 cat > $TMPC << EOF
3483 #include <unistd.h>
3484 #include <sys/dvdio.h>
3485 int main(void) { return 0; }
3487 _dvdio=no
3488 cc_check && _dvdio=yes
3489 if test "$_dvdio" = yes ; then
3490 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3491 else
3492 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3494 echores "$_dvdio"
3497 echocheck "sys/cdio.h"
3498 cat > $TMPC << EOF
3499 #include <unistd.h>
3500 #include <sys/cdio.h>
3501 int main(void) { return 0; }
3503 _cdio=no
3504 cc_check && _cdio=yes
3505 if test "$_cdio" = yes ; then
3506 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3507 else
3508 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3510 echores "$_cdio"
3513 echocheck "linux/cdrom.h"
3514 cat > $TMPC << EOF
3515 #include <sys/types.h>
3516 #include <linux/cdrom.h>
3517 int main(void) { return 0; }
3519 _cdrom=no
3520 cc_check && _cdrom=yes
3521 if test "$_cdrom" = yes ; then
3522 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3523 else
3524 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3526 echores "$_cdrom"
3529 echocheck "dvd.h"
3530 cat > $TMPC << EOF
3531 #include <dvd.h>
3532 int main(void) { return 0; }
3534 _dvd=no
3535 cc_check && _dvd=yes
3536 if test "$_dvd" = yes ; then
3537 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3538 else
3539 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3541 echores "$_dvd"
3544 if bsdos; then
3545 echocheck "BSDI dvd.h"
3546 cat > $TMPC << EOF
3547 #include <dvd.h>
3548 int main(void) { return 0; }
3550 _bsdi_dvd=no
3551 cc_check && _bsdi_dvd=yes
3552 if test "$_bsdi_dvd" = yes ; then
3553 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3554 else
3555 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3557 echores "$_bsdi_dvd"
3558 fi #if bsdos
3561 if hpux; then
3562 # also used by AIX, but AIX does not support VCD and/or libdvdread
3563 echocheck "HP-UX SCSI header"
3564 cat > $TMPC << EOF
3565 #include <sys/scsi.h>
3566 int main(void) { return 0; }
3568 _hpux_scsi_h=no
3569 cc_check && _hpux_scsi_h=yes
3570 if test "$_hpux_scsi_h" = yes ; then
3571 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3572 else
3573 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3575 echores "$_hpux_scsi_h"
3576 fi #if hpux
3579 if sunos; then
3580 echocheck "userspace SCSI headers (Solaris)"
3581 cat > $TMPC << EOF
3582 #include <unistd.h>
3583 #include <stropts.h>
3584 #include <sys/scsi/scsi_types.h>
3585 #include <sys/scsi/impl/uscsi.h>
3586 int main(void) { return 0; }
3588 _sol_scsi_h=no
3589 cc_check && _sol_scsi_h=yes
3590 if test "$_sol_scsi_h" = yes ; then
3591 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3592 else
3593 def_sol_scsi_h='#undef SOLARIS_USCSI'
3595 echores "$_sol_scsi_h"
3596 fi #if sunos
3599 echocheck "termcap"
3600 if test "$_termcap" = auto ; then
3601 cat > $TMPC <<EOF
3602 #include <stddef.h>
3603 #include <term.h>
3604 int main(void) { tgetent(NULL, NULL); return 0; }
3606 _termcap=no
3607 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3608 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
3609 && _termcap=yes && break
3610 done
3612 if test "$_termcap" = yes ; then
3613 def_termcap='#define HAVE_TERMCAP 1'
3614 test $_ld_tmp && res_comment="using $_ld_tmp"
3615 else
3616 def_termcap='#undef HAVE_TERMCAP'
3618 echores "$_termcap"
3621 echocheck "termios"
3622 def_termios='#undef HAVE_TERMIOS'
3623 def_termios_h='#undef HAVE_TERMIOS_H'
3624 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3625 if test "$_termios" = auto ; then
3626 _termios=no
3627 for _termios_header in "termios.h" "sys/termios.h"; do
3628 cat > $TMPC <<EOF
3629 #include <$_termios_header>
3630 int main(void) { return 0; }
3632 cc_check && _termios=yes && res_comment="using $_termios_header" && break
3633 done
3636 if test "$_termios" = yes ; then
3637 def_termios='#define HAVE_TERMIOS 1'
3638 if test "$_termios_header" = "termios.h" ; then
3639 def_termios_h='#define HAVE_TERMIOS_H 1'
3640 else
3641 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3644 echores "$_termios"
3647 echocheck "shm"
3648 if test "$_shm" = auto ; then
3649 cat > $TMPC << EOF
3650 #include <sys/types.h>
3651 #include <sys/shm.h>
3652 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3654 _shm=no
3655 cc_check && _shm=yes
3657 if test "$_shm" = yes ; then
3658 def_shm='#define HAVE_SHM 1'
3659 else
3660 def_shm='#undef HAVE_SHM'
3662 echores "$_shm"
3665 echocheck "strsep()"
3666 cat > $TMPC << EOF
3667 #include <string.h>
3668 int main(void) { char *s = "Hello, world!"; (void) strsep(&s, ","); return 0; }
3670 _strsep=no
3671 cc_check && _strsep=yes
3672 if test "$_strsep" = yes ; then
3673 def_strsep='#define HAVE_STRSEP 1'
3674 _need_strsep=no
3675 else
3676 def_strsep='#undef HAVE_STRSEP'
3677 _need_strsep=yes
3679 echores "$_strsep"
3682 echocheck "vsscanf()"
3683 cat > $TMPC << EOF
3684 #define _ISOC99_SOURCE
3685 #include <stdarg.h>
3686 #include <stdio.h>
3687 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3689 _vsscanf=no
3690 cc_check && _vsscanf=yes
3691 if test "$_vsscanf" = yes ; then
3692 def_vsscanf='#define HAVE_VSSCANF 1'
3693 _need_vsscanf=no
3694 else
3695 def_vsscanf='#undef HAVE_VSSCANF'
3696 _need_vsscanf=yes
3698 echores "$_vsscanf"
3701 echocheck "swab()"
3702 cat > $TMPC << EOF
3703 #define _XOPEN_SOURCE 600
3704 #include <unistd.h>
3705 int main(void) { swab(0, 0, 0); return 0; }
3707 _swab=no
3708 cc_check && _swab=yes
3709 if test "$_swab" = yes ; then
3710 def_swab='#define HAVE_SWAB 1'
3711 _need_swab=no
3712 else
3713 def_swab='#undef HAVE_SWAB'
3714 _need_swab=yes
3716 echores "$_swab"
3718 echocheck "POSIX select()"
3719 cat > $TMPC << EOF
3720 #include <stdio.h>
3721 #include <stdlib.h>
3722 #include <sys/types.h>
3723 #include <string.h>
3724 #include <sys/time.h>
3725 #include <unistd.h>
3726 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
3728 _posix_select=no
3729 def_posix_select='#undef HAVE_POSIX_SELECT'
3730 #select() of kLIBC (OS/2) supports socket only
3731 ! os2 && cc_check && _posix_select=yes \
3732 && def_posix_select='#define HAVE_POSIX_SELECT 1'
3733 echores "$_posix_select"
3736 echocheck "audio select()"
3737 if test "$_select" = no ; then
3738 def_select='#undef HAVE_AUDIO_SELECT'
3739 elif test "$_select" = yes ; then
3740 def_select='#define HAVE_AUDIO_SELECT 1'
3742 echores "$_select"
3745 echocheck "gettimeofday()"
3746 cat > $TMPC << EOF
3747 #include <stdio.h>
3748 #include <sys/time.h>
3749 int main(void) {struct timeval tv_start; gettimeofday(&tv_start, NULL); return 0; }
3751 _gettimeofday=no
3752 cc_check && _gettimeofday=yes
3753 if test "$_gettimeofday" = yes ; then
3754 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3755 _need_gettimeofday=no
3756 else
3757 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3758 _need_gettimeofday=yes
3760 echores "$_gettimeofday"
3763 echocheck "glob()"
3764 cat > $TMPC << EOF
3765 #include <stdio.h>
3766 #include <glob.h>
3767 int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
3769 _glob=no
3770 cc_check && _glob=yes
3771 if test "$_glob" = yes ; then
3772 def_glob='#define HAVE_GLOB 1'
3773 _need_glob=no
3774 else
3775 def_glob='#undef HAVE_GLOB'
3776 _need_glob=yes
3778 echores "$_glob"
3781 echocheck "setenv()"
3782 cat > $TMPC << EOF
3783 #include <stdlib.h>
3784 int main(void) { setenv("","",0); return 0; }
3786 _setenv=no
3787 cc_check && _setenv=yes
3788 if test "$_setenv" = yes ; then
3789 def_setenv='#define HAVE_SETENV 1'
3790 _need_setenv=no
3791 else
3792 def_setenv='#undef HAVE_SETENV'
3793 _need_setenv=yes
3795 echores "$_setenv"
3798 echocheck "setmode()"
3799 _setmode=no
3800 def_setmode='#define HAVE_SETMODE 0'
3801 cat > $TMPC << EOF
3802 #include <io.h>
3803 int main(void) { setmode(0, 0); return 0; }
3805 cc_check && _setmode=yes && def_setmode='#define HAVE_SETMODE 1'
3806 echores "$_setmode"
3809 if sunos; then
3810 echocheck "sysi86()"
3811 cat > $TMPC << EOF
3812 #include <sys/sysi86.h>
3813 int main(void) { sysi86(0); return 0; }
3815 _sysi86=no
3816 cc_check && _sysi86=yes
3817 if test "$_sysi86" = yes ; then
3818 def_sysi86='#define HAVE_SYSI86 1'
3819 cat > $TMPC << EOF
3820 #include <sys/sysi86.h>
3821 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
3823 cc_check && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3824 else
3825 def_sysi86='#undef HAVE_SYSI86'
3827 echores "$_sysi86"
3828 fi #if sunos
3831 echocheck "sys/sysinfo.h"
3832 cat > $TMPC << EOF
3833 #include <sys/sysinfo.h>
3834 int main(void) {
3835 struct sysinfo s_info;
3836 sysinfo(&s_info);
3837 return 0;
3840 _sys_sysinfo=no
3841 cc_check && _sys_sysinfo=yes
3842 if test "$_sys_sysinfo" = yes ; then
3843 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3844 else
3845 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3847 echores "$_sys_sysinfo"
3850 if darwin; then
3852 echocheck "Mac OS X Finder Support"
3853 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3854 if test "$_macosx_finder" = yes ; then
3855 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3856 extra_ldflags="$extra_ldflags -framework Carbon"
3858 echores "$_macosx_finder"
3860 echocheck "Mac OS X Bundle file locations"
3861 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3862 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3863 if test "$_macosx_bundle" = yes ; then
3864 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3865 extra_ldflags="$extra_ldflags -framework Carbon"
3867 echores "$_macosx_bundle"
3869 echocheck "Apple Remote"
3870 if test "$_apple_remote" = auto ; then
3871 _apple_remote=no
3872 cat > $TMPC <<EOF
3873 #include <stdio.h>
3874 #include <IOKit/IOCFPlugIn.h>
3875 int main(void) {
3876 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3877 CFMutableDictionaryRef hidMatchDictionary;
3878 IOReturn ioReturnValue;
3880 // Set up a matching dictionary to search the I/O Registry by class.
3881 // name for all HID class devices
3882 hidMatchDictionary = IOServiceMatching("AppleIRController");
3884 // Now search I/O Registry for matching devices.
3885 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3886 hidMatchDictionary, &hidObjectIterator);
3888 // If search is unsuccessful, return nonzero.
3889 if (ioReturnValue != kIOReturnSuccess ||
3890 !IOIteratorIsValid(hidObjectIterator)) {
3891 return 1;
3893 return 0;
3896 cc_check -framework IOKit && tmp_run && _apple_remote=yes
3898 if test "$_apple_remote" = yes ; then
3899 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3900 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3901 else
3902 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3904 echores "$_apple_remote"
3906 fi #if darwin
3908 if linux; then
3910 echocheck "Apple IR"
3911 if test "$_apple_ir" = auto ; then
3912 _apple_ir=no
3913 cat > $TMPC <<EOF
3914 #include <linux/types.h>
3915 #include <linux/input.h>
3916 int main(void) {
3917 struct input_event ev;
3918 struct input_id id;
3919 return 0;
3922 cc_check && _apple_ir=yes
3924 if test "$_apple_ir" = yes ; then
3925 def_apple_ir='#define CONFIG_APPLE_IR 1'
3926 else
3927 def_apple_ir='#undef CONFIG_APPLE_IR'
3929 echores "$_apple_ir"
3930 fi #if linux
3932 echocheck "pkg-config"
3933 _pkg_config=pkg-config
3934 if $($_pkg_config --version > /dev/null 2>&1); then
3935 if test "$_ld_static"; then
3936 _pkg_config="$_pkg_config --static"
3938 echores "yes"
3939 else
3940 _pkg_config=false
3941 echores "no"
3945 echocheck "Samba support (libsmbclient)"
3946 if test "$_smb" = yes; then
3947 extra_ldflags="$extra_ldflags -lsmbclient"
3949 if test "$_smb" = auto; then
3950 _smb=no
3951 cat > $TMPC << EOF
3952 #include <libsmbclient.h>
3953 int main(void) { smbc_opendir("smb://"); return 0; }
3955 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3956 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3957 _smb=yes && break
3958 done
3961 if test "$_smb" = yes; then
3962 def_smb="#define CONFIG_LIBSMBCLIENT 1"
3963 inputmodules="smb $inputmodules"
3964 else
3965 def_smb="#undef CONFIG_LIBSMBCLIENT"
3966 _noinputmodules="smb $_noinputmodules"
3968 echores "$_smb"
3971 #########
3972 # VIDEO #
3973 #########
3976 echocheck "tdfxfb"
3977 if test "$_tdfxfb" = yes ; then
3978 def_tdfxfb='#define CONFIG_TDFXFB 1'
3979 vomodules="tdfxfb $vomodules"
3980 else
3981 def_tdfxfb='#undef CONFIG_TDFXFB'
3982 novomodules="tdfxfb $novomodules"
3984 echores "$_tdfxfb"
3986 echocheck "s3fb"
3987 if test "$_s3fb" = yes ; then
3988 def_s3fb='#define CONFIG_S3FB 1'
3989 vomodules="s3fb $vomodules"
3990 else
3991 def_s3fb='#undef CONFIG_S3FB'
3992 novomodules="s3fb $novomodules"
3994 echores "$_s3fb"
3996 echocheck "wii"
3997 if test "$_wii" = yes ; then
3998 def_wii='#define CONFIG_WII 1'
3999 vomodules="wii $vomodules"
4000 else
4001 def_wii='#undef CONFIG_WII'
4002 novomodules="wii $novomodules"
4004 echores "$_wii"
4006 echocheck "tdfxvid"
4007 if test "$_tdfxvid" = yes ; then
4008 def_tdfxvid='#define CONFIG_TDFX_VID 1'
4009 vomodules="tdfx_vid $vomodules"
4010 else
4011 def_tdfxvid='#undef CONFIG_TDFX_VID'
4012 novomodules="tdfx_vid $novomodules"
4014 echores "$_tdfxvid"
4016 echocheck "xvr100"
4017 if test "$_xvr100" = auto ; then
4018 cat > $TMPC << EOF
4019 #include <unistd.h>
4020 #include <sys/fbio.h>
4021 #include <sys/visual_io.h>
4022 int main(void) {
4023 struct vis_identifier ident;
4024 struct fbgattr attr;
4025 ioctl(0, VIS_GETIDENTIFIER, &ident);
4026 ioctl(0, FBIOGATTR, &attr);
4027 return 0;
4030 _xvr100=no
4031 cc_check && _xvr100=yes
4033 if test "$_xvr100" = yes ; then
4034 def_xvr100='#define CONFIG_XVR100 1'
4035 vomodules="xvr100 $vomodules"
4036 else
4037 def_tdfxvid='#undef CONFIG_XVR100'
4038 novomodules="xvr100 $novomodules"
4040 echores "$_xvr100"
4042 echocheck "tga"
4043 if test "$_tga" = yes ; then
4044 def_tga='#define CONFIG_TGA 1'
4045 vomodules="tga $vomodules"
4046 else
4047 def_tga='#undef CONFIG_TGA'
4048 novomodules="tga $novomodules"
4050 echores "$_tga"
4053 echocheck "md5sum support"
4054 if test "$_md5sum" = yes; then
4055 def_md5sum="#define CONFIG_MD5SUM 1"
4056 vomodules="md5sum $vomodules"
4057 else
4058 def_md5sum="#undef CONFIG_MD5SUM"
4059 novomodules="md5sum $novomodules"
4061 echores "$_md5sum"
4064 echocheck "yuv4mpeg support"
4065 if test "$_yuv4mpeg" = yes; then
4066 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
4067 vomodules="yuv4mpeg $vomodules"
4068 else
4069 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
4070 novomodules="yuv4mpeg $novomodules"
4072 echores "$_yuv4mpeg"
4075 echocheck "bl"
4076 if test "$_bl" = yes ; then
4077 def_bl='#define CONFIG_BL 1'
4078 vomodules="bl $vomodules"
4079 else
4080 def_bl='#undef CONFIG_BL'
4081 novomodules="bl $novomodules"
4083 echores "$_bl"
4086 echocheck "DirectFB"
4087 if test "$_directfb" = auto ; then
4088 _directfb=no
4089 cat > $TMPC <<EOF
4090 #include <directfb.h>
4091 int main(void) { DirectFBInit(0, 0); return 0; }
4093 for _inc_tmp in "" -I/usr/local/include/directfb \
4094 -I/usr/include/directfb -I/usr/local/include; do
4095 cc_check $_inc_tmp -ldirectfb && _directfb=yes && \
4096 extra_cflags="$extra_cflags $_inc_tmp" && break
4097 done
4100 dfb_version() {
4101 expr $1 \* 65536 + $2 \* 256 + $3
4104 if test "$_directfb" = yes; then
4105 cat > $TMPC << EOF
4106 #include <directfb_version.h>
4108 dfb_ver = DIRECTFB_MAJOR_VERSION.DIRECTFB_MINOR_VERSION.DIRECTFB_MICRO_VERSION
4111 if $_cc -E $TMPC $extra_cflags > "$TMPEXE"; then
4112 _directfb_version=$(sed -n 's/^dfb_ver[^0-9]*\(.*\)/\1/p' "$TMPEXE" | tr -d '()')
4113 _dfb_major=$(echo $_directfb_version | cut -d . -f 1)
4114 _dfb_minor=$(echo $_directfb_version | cut -d . -f 2)
4115 _dfb_micro=$(echo $_directfb_version | cut -d . -f 3)
4116 _dfb_version=$(dfb_version $_dfb_major $_dfb_minor $_dfb_micro)
4117 if test "$_dfb_version" -ge $(dfb_version 0 9 13); then
4118 def_directfb_version="#define DIRECTFBVERSION $_dfb_version"
4119 res_comment="$_directfb_version"
4120 test "$_dfb_version" -ge $(dfb_version 0 9 15) && _dfbmga=yes
4121 else
4122 def_directfb_version='#undef DIRECTFBVERSION'
4123 _directfb=no
4124 res_comment="version >=0.9.13 required"
4126 else
4127 _directfb=no
4128 res_comment="failed to get version"
4131 echores "$_directfb"
4133 if test "$_directfb" = yes ; then
4134 def_directfb='#define CONFIG_DIRECTFB 1'
4135 vomodules="directfb $vomodules"
4136 libs_mplayer="$libs_mplayer -ldirectfb"
4137 else
4138 def_directfb='#undef CONFIG_DIRECTFB'
4139 novomodules="directfb $novomodules"
4141 if test "$_dfbmga" = yes; then
4142 vomodules="dfbmga $vomodules"
4143 def_dfbmga='#define CONFIG_DFBMGA 1'
4144 else
4145 novomodules="dfbmga $novomodules"
4146 def_dfbmga='#undef CONFIG_DFBMGA'
4150 echocheck "X11 headers presence"
4151 _x11_headers="no"
4152 res_comment="check if the dev(el) packages are installed"
4153 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
4154 if test -f "$I/X11/Xlib.h" ; then
4155 _x11_headers="yes"
4156 res_comment=""
4157 break
4159 done
4160 if test $_cross_compile = no; then
4161 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
4162 /usr/include/X11R6 /usr/openwin/include ; do
4163 if test -f "$I/X11/Xlib.h" ; then
4164 extra_cflags="$extra_cflags -I$I"
4165 _x11_headers="yes"
4166 res_comment="using $I"
4167 break
4169 done
4171 echores "$_x11_headers"
4174 echocheck "X11"
4175 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
4176 cat > $TMPC <<EOF
4177 #include <X11/Xlib.h>
4178 #include <X11/Xutil.h>
4179 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; }
4181 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
4182 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
4183 -L/usr/lib ; do
4184 if netbsd; then
4185 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
4186 else
4187 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
4189 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" \
4190 && _x11=yes && break
4191 done
4193 if test "$_x11" = yes ; then
4194 def_x11='#define CONFIG_X11 1'
4195 vomodules="x11 xover $vomodules"
4196 else
4197 _x11=no
4198 def_x11='#undef CONFIG_X11'
4199 novomodules="x11 $novomodules"
4200 res_comment="check if the dev(el) packages are installed"
4201 # disable stuff that depends on X
4202 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
4204 echores "$_x11"
4206 echocheck "Xss screensaver extensions"
4207 if test "$_xss" = auto ; then
4208 cat > $TMPC << EOF
4209 #include <X11/Xlib.h>
4210 #include <X11/extensions/scrnsaver.h>
4211 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
4213 _xss=no
4214 cc_check -lXss && _xss=yes
4216 if test "$_xss" = yes ; then
4217 def_xss='#define CONFIG_XSS 1'
4218 libs_mplayer="$libs_mplayer -lXss"
4219 else
4220 def_xss='#undef CONFIG_XSS'
4222 echores "$_xss"
4224 echocheck "DPMS"
4225 _xdpms3=no
4226 _xdpms4=no
4227 if test "$_x11" = yes ; then
4228 cat > $TMPC <<EOF
4229 #include <X11/Xmd.h>
4230 #include <X11/Xlib.h>
4231 #include <X11/Xutil.h>
4232 #include <X11/Xatom.h>
4233 #include <X11/extensions/dpms.h>
4234 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4236 cc_check -lXdpms && _xdpms3=yes
4237 cat > $TMPC <<EOF
4238 #include <X11/Xlib.h>
4239 #include <X11/extensions/dpms.h>
4240 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4242 cc_check -lXext && _xdpms4=yes
4244 if test "$_xdpms4" = yes ; then
4245 def_xdpms='#define CONFIG_XDPMS 1'
4246 res_comment="using Xdpms 4"
4247 echores "yes"
4248 elif test "$_xdpms3" = yes ; then
4249 def_xdpms='#define CONFIG_XDPMS 1'
4250 libs_mplayer="$libs_mplayer -lXdpms"
4251 res_comment="using Xdpms 3"
4252 echores "yes"
4253 else
4254 def_xdpms='#undef CONFIG_XDPMS'
4255 echores "no"
4259 echocheck "Xv"
4260 if test "$_xv" = auto ; then
4261 cat > $TMPC <<EOF
4262 #include <X11/Xlib.h>
4263 #include <X11/extensions/Xvlib.h>
4264 int main(void) {
4265 (void) XvGetPortAttribute(0, 0, 0, 0);
4266 (void) XvQueryPortAttributes(0, 0, 0);
4267 return 0; }
4269 _xv=no
4270 cc_check -lXv && _xv=yes
4273 if test "$_xv" = yes ; then
4274 def_xv='#define CONFIG_XV 1'
4275 libs_mplayer="$libs_mplayer -lXv"
4276 vomodules="xv $vomodules"
4277 else
4278 def_xv='#undef CONFIG_XV'
4279 novomodules="xv $novomodules"
4281 echores "$_xv"
4284 echocheck "XvMC"
4285 if test "$_xv" = yes && test "$_xvmc" != no ; then
4286 _xvmc=no
4287 cat > $TMPC <<EOF
4288 #include <X11/Xlib.h>
4289 #include <X11/extensions/Xvlib.h>
4290 #include <X11/extensions/XvMClib.h>
4291 int main(void) {
4292 (void) XvMCQueryExtension(0,0,0);
4293 (void) XvMCCreateContext(0,0,0,0,0,0,0);
4294 return 0; }
4296 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
4297 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
4298 done
4300 if test "$_xvmc" = yes ; then
4301 def_xvmc='#define CONFIG_XVMC 1'
4302 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
4303 vomodules="xvmc $vomodules"
4304 res_comment="using $_xvmclib"
4305 else
4306 def_xvmc='#define CONFIG_XVMC 0'
4307 novomodules="xvmc $novomodules"
4309 echores "$_xvmc"
4312 echocheck "VDPAU"
4313 if test "$_vdpau" = auto ; then
4314 _vdpau=no
4315 if test "$_dl" = yes ; then
4316 cat > $TMPC <<EOF
4317 #include <vdpau/vdpau_x11.h>
4318 int main(void) {
4319 (void) vdp_device_create_x11(0, 0, 0, 0);
4320 return VDP_VIDEO_MIXER_FEATURE_HIGH_QUALITY_SCALING_L1; }
4322 cc_check -lvdpau && _vdpau=yes
4325 if test "$_vdpau" = yes ; then
4326 def_vdpau='#define CONFIG_VDPAU 1'
4327 libs_mplayer="$libs_mplayer -lvdpau"
4328 vomodules="vdpau $vomodules"
4329 else
4330 def_vdpau='#define CONFIG_VDPAU 0'
4331 novomodules="vdpau $novomodules"
4333 echores "$_vdpau"
4336 echocheck "Xinerama"
4337 if test "$_xinerama" = auto ; then
4338 cat > $TMPC <<EOF
4339 #include <X11/Xlib.h>
4340 #include <X11/extensions/Xinerama.h>
4341 int main(void) { (void) XineramaIsActive(0); return 0; }
4343 _xinerama=no
4344 cc_check -lXinerama && _xinerama=yes
4347 if test "$_xinerama" = yes ; then
4348 def_xinerama='#define CONFIG_XINERAMA 1'
4349 libs_mplayer="$libs_mplayer -lXinerama"
4350 else
4351 def_xinerama='#undef CONFIG_XINERAMA'
4353 echores "$_xinerama"
4356 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4357 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4358 # named 'X extensions' or something similar.
4359 # This check may be useful for future mplayer versions (to change resolution)
4360 # If you run into problems, remove '-lXxf86vm'.
4361 echocheck "Xxf86vm"
4362 if test "$_vm" = auto ; then
4363 cat > $TMPC <<EOF
4364 #include <X11/Xlib.h>
4365 #include <X11/extensions/xf86vmode.h>
4366 int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; }
4368 _vm=no
4369 cc_check -lXxf86vm && _vm=yes
4371 if test "$_vm" = yes ; then
4372 def_vm='#define CONFIG_XF86VM 1'
4373 libs_mplayer="$libs_mplayer -lXxf86vm"
4374 else
4375 def_vm='#undef CONFIG_XF86VM'
4377 echores "$_vm"
4379 # Check for the presence of special keycodes, like audio control buttons
4380 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4381 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4382 # have these new keycodes.
4383 echocheck "XF86keysym"
4384 if test "$_xf86keysym" = auto; then
4385 _xf86keysym=no
4386 cat > $TMPC <<EOF
4387 #include <X11/Xlib.h>
4388 #include <X11/XF86keysym.h>
4389 int main(void) { return XF86XK_AudioPause; }
4391 cc_check && _xf86keysym=yes
4393 if test "$_xf86keysym" = yes ; then
4394 def_xf86keysym='#define CONFIG_XF86XK 1'
4395 else
4396 def_xf86keysym='#undef CONFIG_XF86XK'
4398 echores "$_xf86keysym"
4400 echocheck "DGA"
4401 if test "$_dga2" = auto && test "$_x11" = yes ; then
4402 cat > $TMPC << EOF
4403 #include <X11/Xlib.h>
4404 #include <X11/extensions/xf86dga.h>
4405 int main(void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4407 _dga2=no
4408 cc_check -lXxf86dga && _dga2=yes
4410 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4411 cat > $TMPC << EOF
4412 #include <X11/Xlib.h>
4413 #include <X11/extensions/xf86dga.h>
4414 int main(void) { (void) XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4416 _dga1=no
4417 cc_check -lXxf86dga -lXxf86vm && _dga1=yes
4420 _dga=no
4421 def_dga='#undef CONFIG_DGA'
4422 def_dga1='#undef CONFIG_DGA1'
4423 def_dga2='#undef CONFIG_DGA2'
4424 if test "$_dga1" = yes ; then
4425 _dga=yes
4426 def_dga1='#define CONFIG_DGA1 1'
4427 res_comment="using DGA 1.0"
4428 elif test "$_dga2" = yes ; then
4429 _dga=yes
4430 def_dga2='#define CONFIG_DGA2 1'
4431 res_comment="using DGA 2.0"
4433 if test "$_dga" = yes ; then
4434 def_dga='#define CONFIG_DGA 1'
4435 libs_mplayer="$libs_mplayer -lXxf86dga"
4436 vomodules="dga $vomodules"
4437 else
4438 novomodules="dga $novomodules"
4440 echores "$_dga"
4443 echocheck "3dfx"
4444 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4445 def_3dfx='#define CONFIG_3DFX 1'
4446 vomodules="3dfx $vomodules"
4447 else
4448 def_3dfx='#undef CONFIG_3DFX'
4449 novomodules="3dfx $novomodules"
4451 echores "$_3dfx"
4454 echocheck "VIDIX"
4455 def_vidix='#undef CONFIG_VIDIX'
4456 def_vidix_drv_cyberblade='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4457 _vidix_drv_cyberblade=no
4458 def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4459 _vidix_drv_ivtv=no
4460 def_vidix_drv_mach64='#undef CONFIG_VIDIX_DRV_MACH64'
4461 _vidix_drv_mach64=no
4462 def_vidix_drv_mga='#undef CONFIG_VIDIX_DRV_MGA'
4463 _vidix_drv_mga=no
4464 def_vidix_drv_mga_crtc2='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4465 _vidix_drv_mga_crtc2=no
4466 def_vidix_drv_nvidia='#undef CONFIG_VIDIX_DRV_NVIDIA'
4467 _vidix_drv_nvidia=no
4468 def_vidix_drv_pm2='#undef CONFIG_VIDIX_DRV_PM2'
4469 _vidix_drv_pm2=no
4470 def_vidix_drv_pm3='#undef CONFIG_VIDIX_DRV_PM3'
4471 _vidix_drv_pm3=no
4472 def_vidix_drv_radeon='#undef CONFIG_VIDIX_DRV_RADEON'
4473 _vidix_drv_radeon=no
4474 def_vidix_drv_rage128='#undef CONFIG_VIDIX_DRV_RAGE128'
4475 _vidix_drv_rage128=no
4476 def_vidix_drv_s3='#undef CONFIG_VIDIX_DRV_S3'
4477 _vidix_drv_s3=no
4478 def_vidix_drv_sh_veu='#undef CONFIG_VIDIX_DRV_SH_VEU'
4479 _vidix_drv_sh_veu=no
4480 def_vidix_drv_sis='#undef CONFIG_VIDIX_DRV_SIS'
4481 _vidix_drv_sis=no
4482 def_vidix_drv_unichrome='#undef CONFIG_VIDIX_DRV_UNICHROME'
4483 _vidix_drv_unichrome=no
4484 if test "$_vidix" = auto ; then
4485 _vidix=no
4486 x86 && (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32) \
4487 && _vidix=yes
4488 x86_64 && ! linux && _vidix=no
4489 (ppc || alpha) && linux && _vidix=yes
4491 echores "$_vidix"
4493 if test "$_vidix" = yes ; then
4494 def_vidix='#define CONFIG_VIDIX 1'
4495 vomodules="cvidix $vomodules"
4496 # FIXME: ivtv driver temporarily disabled until we have a proper test
4497 #test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4498 test "$_vidix_drivers" || _vidix_drivers="cyberblade mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4500 # some vidix drivers are architecture and os specific, discard them elsewhere
4501 x86 || _vidix_drivers=$(echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome// -e s/s3//)
4502 (test $host_arch = "sh" && linux) || _vidix_drivers=$(echo $_vidix_drivers | sed s/sh_veu//)
4504 for driver in $_vidix_drivers ; do
4505 uc_driver=$(echo $driver | tr '[a-z]' '[A-Z]')
4506 eval _vidix_drv_${driver}=yes
4507 eval def_vidix_drv_${driver}=\"\#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4508 done
4510 echocheck "VIDIX PCI device name database"
4511 echores "$_vidix_pcidb"
4512 if test "$_vidix_pcidb" = yes ; then
4513 _vidix_pcidb_val=1
4514 else
4515 _vidix_pcidb_val=0
4518 echocheck "VIDIX dhahelper support"
4519 test "$_dhahelper" = yes && cflags_dhahelper=-DCONFIG_DHAHELPER
4520 echores "$_dhahelper"
4522 echocheck "VIDIX svgalib_helper support"
4523 test "$_svgalib_helper" = yes && cflags_svgalib_helper=-DCONFIG_SVGAHELPER
4524 echores "$_svgalib_helper"
4526 else
4527 novomodules="cvidix $novomodules"
4530 if test "$_vidix" = yes && win32; then
4531 winvidix=yes
4532 vomodules="winvidix $vomodules"
4533 libs_mplayer="$libs_mplayer -lgdi32"
4534 else
4535 novomodules="winvidix $novomodules"
4537 if test "$_vidix" = yes && test "$_x11" = yes; then
4538 xvidix=yes
4539 vomodules="xvidix $vomodules"
4540 else
4541 novomodules="xvidix $novomodules"
4544 echocheck "GGI"
4545 if test "$_ggi" = auto ; then
4546 cat > $TMPC << EOF
4547 #include <ggi/ggi.h>
4548 int main(void) { ggiInit(); return 0; }
4550 _ggi=no
4551 cc_check -lggi && _ggi=yes
4553 if test "$_ggi" = yes ; then
4554 def_ggi='#define CONFIG_GGI 1'
4555 libs_mplayer="$libs_mplayer -lggi"
4556 vomodules="ggi $vomodules"
4557 else
4558 def_ggi='#undef CONFIG_GGI'
4559 novomodules="ggi $novomodules"
4561 echores "$_ggi"
4563 echocheck "GGI extension: libggiwmh"
4564 if test "$_ggiwmh" = auto ; then
4565 _ggiwmh=no
4566 cat > $TMPC << EOF
4567 #include <ggi/ggi.h>
4568 #include <ggi/wmh.h>
4569 int main(void) { ggiInit(); ggiWmhInit(); return 0; }
4571 cc_check -lggi -lggiwmh && _ggiwmh=yes
4573 # needed to get right output on obscure combination
4574 # like --disable-ggi --enable-ggiwmh
4575 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4576 def_ggiwmh='#define CONFIG_GGIWMH 1'
4577 libs_mplayer="$libs_mplayer -lggiwmh"
4578 else
4579 _ggiwmh=no
4580 def_ggiwmh='#undef CONFIG_GGIWMH'
4582 echores "$_ggiwmh"
4585 echocheck "AA"
4586 if test "$_aa" = auto ; then
4587 cat > $TMPC << EOF
4588 #include <aalib.h>
4589 extern struct aa_hardware_params aa_defparams;
4590 extern struct aa_renderparams aa_defrenderparams;
4591 int main(void) {
4592 aa_context *c;
4593 aa_renderparams *p;
4594 (void) aa_init(0, 0, 0);
4595 c = aa_autoinit(&aa_defparams);
4596 p = aa_getrenderparams();
4597 aa_autoinitkbd(c,0);
4598 return 0; }
4600 _aa=no
4601 for _ld_tmp in "-laa" ; do
4602 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4603 done
4605 if test "$_aa" = yes ; then
4606 def_aa='#define CONFIG_AA 1'
4607 if cygwin ; then
4608 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4610 vomodules="aa $vomodules"
4611 else
4612 def_aa='#undef CONFIG_AA'
4613 novomodules="aa $novomodules"
4615 echores "$_aa"
4618 echocheck "CACA"
4619 if test "$_caca" = auto ; then
4620 _caca=no
4621 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4622 cat > $TMPC << EOF
4623 #include <caca.h>
4624 #ifdef CACA_API_VERSION_1
4625 #include <caca0.h>
4626 #endif
4627 int main(void) { (void) caca_init(); return 0; }
4629 cc_check $(caca-config --libs) && _caca=yes
4632 if test "$_caca" = yes ; then
4633 def_caca='#define CONFIG_CACA 1'
4634 extra_cflags="$extra_cflags $(caca-config --cflags)"
4635 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4636 vomodules="caca $vomodules"
4637 else
4638 def_caca='#undef CONFIG_CACA'
4639 novomodules="caca $novomodules"
4641 echores "$_caca"
4644 echocheck "SVGAlib"
4645 if test "$_svga" = auto ; then
4646 cat > $TMPC << EOF
4647 #include <vga.h>
4648 int main(void) { return 0; }
4650 _svga=no
4651 cc_check -lvga $_ld_lm && _svga=yes
4653 if test "$_svga" = yes ; then
4654 def_svga='#define CONFIG_SVGALIB 1'
4655 libs_mplayer="$libs_mplayer -lvga"
4656 vomodules="svga $vomodules"
4657 else
4658 def_svga='#undef CONFIG_SVGALIB'
4659 novomodules="svga $novomodules"
4661 echores "$_svga"
4664 echocheck "FBDev"
4665 if test "$_fbdev" = auto ; then
4666 _fbdev=no
4667 linux && _fbdev=yes
4669 if test "$_fbdev" = yes ; then
4670 def_fbdev='#define CONFIG_FBDEV 1'
4671 vomodules="fbdev $vomodules"
4672 else
4673 def_fbdev='#undef CONFIG_FBDEV'
4674 novomodules="fbdev $novomodules"
4676 echores "$_fbdev"
4680 echocheck "DVB"
4681 if test "$_dvb" = auto ; then
4682 _dvb=no
4683 cat >$TMPC << EOF
4684 #include <poll.h>
4685 #include <sys/ioctl.h>
4686 #include <stdio.h>
4687 #include <time.h>
4688 #include <unistd.h>
4689 #include <linux/dvb/dmx.h>
4690 #include <linux/dvb/frontend.h>
4691 #include <linux/dvb/video.h>
4692 #include <linux/dvb/audio.h>
4693 int main(void) {return 0;}
4695 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4696 cc_check $_inc_tmp && _dvb=yes && \
4697 extra_cflags="$extra_cflags $_inc_tmp" && break
4698 done
4700 echores "$_dvb"
4701 if test "$_dvb" = yes ; then
4702 _dvbin=yes
4703 inputmodules="dvb $inputmodules"
4704 def_dvb='#define CONFIG_DVB 1'
4705 def_dvbin='#define CONFIG_DVBIN 1'
4706 aomodules="mpegpes(dvb) $aomodules"
4707 vomodules="mpegpes(dvb) $vomodules"
4708 else
4709 _dvbin=no
4710 _noinputmodules="dvb $_noinputmodules"
4711 def_dvb='#undef CONFIG_DVB'
4712 def_dvbin='#undef CONFIG_DVBIN '
4713 aomodules="mpegpes(file) $aomodules"
4714 vomodules="mpegpes(file) $vomodules"
4718 if darwin; then
4720 echocheck "QuickTime"
4721 if test "$quicktime" = auto ; then
4722 cat > $TMPC <<EOF
4723 #include <QuickTime/QuickTime.h>
4724 int main(void) {
4725 ImageDescription *desc;
4726 EnterMovies();
4727 ExitMovies();
4728 return 0;
4731 quicktime=no
4732 cc_check -framework QuickTime && quicktime=yes
4734 if test "$quicktime" = yes ; then
4735 extra_ldflags="$extra_ldflags -framework QuickTime"
4736 def_quicktime='#define CONFIG_QUICKTIME 1'
4737 else
4738 def_quicktime='#undef CONFIG_QUICKTIME'
4739 _quartz=no
4741 echores $quicktime
4743 echocheck "Quartz"
4744 if test "$_quartz" = auto ; then
4745 cat > $TMPC <<EOF
4746 #include <Carbon/Carbon.h>
4747 int main(void) {
4748 CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false);
4749 return 0;
4752 _quartz=no
4753 cc_check -framework Carbon && _quartz=yes
4755 if test "$_quartz" = yes ; then
4756 libs_mplayer="$libs_mplayer -framework Carbon"
4757 def_quartz='#define CONFIG_QUARTZ 1'
4758 vomodules="quartz $vomodules"
4759 else
4760 def_quartz='#undef CONFIG_QUARTZ'
4761 novomodules="quartz $novomodules"
4763 echores $_quartz
4765 echocheck "CoreVideo"
4766 if test "$_corevideo" = auto ; then
4767 cat > $TMPC <<EOF
4768 #include <Carbon/Carbon.h>
4769 #include <CoreServices/CoreServices.h>
4770 #include <OpenGL/OpenGL.h>
4771 #include <QuartzCore/CoreVideo.h>
4772 int main(void) { return 0; }
4774 _corevideo=no
4775 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4777 if test "$_corevideo" = yes ; then
4778 vomodules="corevideo $vomodules"
4779 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4780 def_corevideo='#define CONFIG_COREVIDEO 1'
4781 else
4782 novomodules="corevideo $novomodules"
4783 def_corevideo='#undef CONFIG_COREVIDEO'
4785 echores "$_corevideo"
4787 fi #if darwin
4790 echocheck "PNG support"
4791 if test "$_png" = auto ; then
4792 _png=no
4793 if irix ; then
4794 # Don't check for -lpng on irix since it has its own libpng
4795 # incompatible with the GNU libpng
4796 res_comment="disabled on irix (not GNU libpng)"
4797 else
4798 cat > $TMPC << EOF
4799 #include <png.h>
4800 #include <string.h>
4801 int main(void) {
4802 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4803 printf("libpng: %s\n", png_libpng_ver);
4804 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4807 cc_check -lpng -lz $_ld_lm && _png=yes
4810 echores "$_png"
4811 if test "$_png" = yes ; then
4812 def_png='#define CONFIG_PNG 1'
4813 extra_ldflags="$extra_ldflags -lpng -lz"
4814 else
4815 def_png='#undef CONFIG_PNG'
4818 echocheck "MNG support"
4819 if test "$_mng" = auto ; then
4820 _mng=no
4821 cat > $TMPC << EOF
4822 #include <libmng.h>
4823 int main(void) {
4824 const char * p_ver = mng_version_text();
4825 return !p_ver || p_ver[0] == 0;
4828 if cc_check -lmng -lz $_ld_lm ; then
4829 _mng=yes
4832 echores "$_mng"
4833 if test "$_mng" = yes ; then
4834 def_mng='#define CONFIG_MNG 1'
4835 extra_ldflags="$extra_ldflags -lmng -lz"
4836 else
4837 def_mng='#undef CONFIG_MNG'
4840 echocheck "JPEG support"
4841 if test "$_jpeg" = auto ; then
4842 _jpeg=no
4843 cat > $TMPC << EOF
4844 #include <stdio.h>
4845 #include <stdlib.h>
4846 #include <setjmp.h>
4847 #include <string.h>
4848 #include <jpeglib.h>
4849 int main(void) { return 0; }
4851 cc_check -ljpeg $_ld_lm && _jpeg=yes
4853 echores "$_jpeg"
4855 if test "$_jpeg" = yes ; then
4856 def_jpeg='#define CONFIG_JPEG 1'
4857 vomodules="jpeg $vomodules"
4858 extra_ldflags="$extra_ldflags -ljpeg"
4859 else
4860 def_jpeg='#undef CONFIG_JPEG'
4861 novomodules="jpeg $novomodules"
4866 echocheck "PNM support"
4867 if test "$_pnm" = yes; then
4868 def_pnm="#define CONFIG_PNM 1"
4869 vomodules="pnm $vomodules"
4870 else
4871 def_pnm="#undef CONFIG_PNM"
4872 novomodules="pnm $novomodules"
4874 echores "$_pnm"
4878 echocheck "GIF support"
4879 # This is to appease people who want to force gif support.
4880 # If it is forced to yes, then we still do checks to determine
4881 # which gif library to use.
4882 if test "$_gif" = yes ; then
4883 _force_gif=yes
4884 _gif=auto
4887 if test "$_gif" = auto ; then
4888 _gif=no
4889 cat > $TMPC << EOF
4890 #include <gif_lib.h>
4891 int main(void) { return 0; }
4893 for _ld_gif in "-lungif" "-lgif" ; do
4894 cc_check $_ld_gif && _gif=yes && break
4895 done
4898 # If no library was found, and the user wants support forced,
4899 # then we force it on with libgif, as this is the safest
4900 # assumption IMHO. (libungif & libregif both create symbolic
4901 # links to libgif. We also assume that no x11 support is needed,
4902 # because if you are forcing this, then you _should_ know what
4903 # you are doing. [ Besides, package maintainers should never
4904 # have compiled x11 deps into libungif in the first place. ] )
4905 # </rant>
4906 # --Joey
4907 if test "$_force_gif" = yes && test "$_gif" = no ; then
4908 _gif=yes
4909 _ld_gif="-lgif"
4912 if test "$_gif" = yes ; then
4913 def_gif='#define CONFIG_GIF 1'
4914 codecmodules="gif $codecmodules"
4915 vomodules="gif89a $vomodules"
4916 res_comment="old version, some encoding functions disabled"
4917 def_gif_4='#undef CONFIG_GIF_4'
4918 extra_ldflags="$extra_ldflags $_ld_gif"
4920 cat > $TMPC << EOF
4921 #include <signal.h>
4922 #include <gif_lib.h>
4923 void catch() { exit(1); }
4924 int main(void) {
4925 signal(SIGSEGV, catch); // catch segfault
4926 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4927 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4928 return 0;
4931 if cc_check "$_ld_gif" ; then
4932 def_gif_4='#define CONFIG_GIF_4 1'
4933 res_comment=""
4935 else
4936 def_gif='#undef CONFIG_GIF'
4937 def_gif_4='#undef CONFIG_GIF_4'
4938 novomodules="gif89a $novomodules"
4939 nocodecmodules="gif $nocodecmodules"
4941 echores "$_gif"
4944 case "$_gif" in yes*)
4945 echocheck "broken giflib workaround"
4946 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
4948 cat > $TMPC << EOF
4949 #include <gif_lib.h>
4950 int main(void) {
4951 GifFileType gif;
4952 printf("UserData is at address %p\n", gif.UserData);
4953 return 0;
4956 if cc_check "$_ld_gif" ; then
4957 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
4958 echores "disabled"
4959 else
4960 echores "enabled"
4963 esac
4966 echocheck "VESA support"
4967 if test "$_vesa" = auto ; then
4968 cat > $TMPC << EOF
4969 #include <vbe.h>
4970 int main(void) { vbeVersion(); return 0; }
4972 _vesa=no
4973 cc_check -lvbe -llrmi && _vesa=yes
4975 if test "$_vesa" = yes ; then
4976 def_vesa='#define CONFIG_VESA 1'
4977 libs_mplayer="$libs_mplayer -lvbe -llrmi"
4978 vomodules="vesa $vomodules"
4979 else
4980 def_vesa='#undef CONFIG_VESA'
4981 novomodules="vesa $novomodules"
4983 echores "$_vesa"
4985 #################
4986 # VIDEO + AUDIO #
4987 #################
4990 echocheck "SDL"
4991 _inc_tmp=""
4992 _ld_tmp=""
4993 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
4994 if test -z "$_sdlconfig" ; then
4995 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
4996 _sdlconfig="sdl-config"
4997 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
4998 _sdlconfig="sdl11-config"
4999 else
5000 _sdlconfig=false
5003 if test "$_sdl" = auto || test "$_sdl" = yes ; then
5004 cat > $TMPC << EOF
5005 #ifdef CONFIG_SDL_SDL_H
5006 #include <SDL/SDL.h>
5007 #else
5008 #include <SDL.h>
5009 #endif
5010 #ifndef __APPLE__
5011 // we allow SDL hacking our main() only on OSX
5012 #undef main
5013 #endif
5014 int main(int argc, char *argv[]) {
5015 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
5016 return 0;
5019 _sdl=no
5020 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
5021 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
5022 _sdl=yes
5023 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
5024 break
5026 done
5027 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
5028 res_comment="using $_sdlconfig"
5029 if cygwin ; then
5030 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
5031 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
5032 elif mingw32 ; then
5033 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
5034 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
5035 else
5036 _inc_tmp="$($_sdlconfig --cflags)"
5037 _ld_tmp="$($_sdlconfig --libs)"
5039 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
5040 _sdl=yes
5044 if test "$_sdl" = yes ; then
5045 def_sdl='#define CONFIG_SDL 1'
5046 extra_cflags="$extra_cflags $_inc_tmp"
5047 libs_mplayer="$libs_mplayer $_ld_tmp"
5048 vomodules="sdl $vomodules"
5049 aomodules="sdl $aomodules"
5050 else
5051 def_sdl='#undef CONFIG_SDL'
5052 novomodules="sdl $novomodules"
5053 noaomodules="sdl $noaomodules"
5055 echores "$_sdl"
5058 # make sure this stays below CoreVideo to avoid issues due to namespace
5059 # conflicts between -lGL and -framework OpenGL
5060 echocheck "OpenGL"
5061 #Note: this test is run even with --enable-gl since we autodetect linker flags
5062 if (test "$_x11" = yes || test "$_sdl" = yes || win32) && test "$_gl" != no ; then
5063 cat > $TMPC << EOF
5064 #ifdef GL_WIN32
5065 #include <windows.h>
5066 #include <GL/gl.h>
5067 #elif defined(GL_SDL)
5068 #include <GL/gl.h>
5069 #ifdef CONFIG_SDL_SDL_H
5070 #include <SDL/SDL.h>
5071 #else
5072 #include <SDL.h>
5073 #endif
5074 #ifndef __APPLE__
5075 // we allow SDL hacking our main() only on OSX
5076 #undef main
5077 #endif
5078 #else
5079 #include <GL/gl.h>
5080 #include <X11/Xlib.h>
5081 #include <GL/glx.h>
5082 #endif
5083 int main(void) {
5084 #ifdef GL_WIN32
5085 HDC dc;
5086 wglCreateContext(dc);
5087 #elif defined(GL_SDL)
5088 SDL_GL_SwapBuffers();
5089 #else
5090 glXCreateContext(NULL, NULL, NULL, True);
5091 #endif
5092 glFinish();
5093 return 0;
5096 _gl=no
5097 for _ld_tmp in "" -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
5098 if cc_check $_ld_tmp $_ld_lm ; then
5099 _gl=yes
5100 _gl_x11=yes
5101 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
5102 break
5104 done
5105 if cc_check -DGL_WIN32 -lopengl32 ; then
5106 _gl=yes
5107 _gl_win32=yes
5108 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
5110 # last so it can reuse any linker etc. flags detected before
5111 if test "$_sdl" = yes ; then
5112 if cc_check -DGL_SDL ||
5113 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL ; then
5114 _gl=yes
5115 _gl_sdl=yes
5116 elif cc_check -DGL_SDL -lGL ||
5117 cc_check -DCONFIG_SDL_SDL_H -DGL_SDL -lGL ; then
5118 _gl=yes
5119 _gl_sdl=yes
5120 libs_mplayer="$libs_mplayer -lGL"
5123 else
5124 _gl=no
5126 if test "$_gl" = yes ; then
5127 def_gl='#define CONFIG_GL 1'
5128 res_comment="backends:"
5129 if test "$_gl_win32" = yes ; then
5130 def_gl_win32='#define CONFIG_GL_WIN32 1'
5131 res_comment="$res_comment win32"
5133 if test "$_gl_x11" = yes ; then
5134 def_gl_x11='#define CONFIG_GL_X11 1'
5135 res_comment="$res_comment x11"
5137 if test "$_gl_sdl" = yes ; then
5138 def_gl_sdl='#define CONFIG_GL_SDL 1'
5139 res_comment="$res_comment sdl"
5141 vomodules="opengl $vomodules"
5142 else
5143 def_gl='#undef CONFIG_GL'
5144 def_gl_win32='#undef CONFIG_GL_WIN32'
5145 def_gl_x11='#undef CONFIG_GL_X11'
5146 def_gl_sdl='#undef CONFIG_GL_SDL'
5147 novomodules="opengl $novomodules"
5149 echores "$_gl"
5152 echocheck "MatrixView"
5153 if test "$_gl" = no ; then
5154 matrixview=no
5156 if test "$matrixview" = yes ; then
5157 vomodules="matrixview $vomodules"
5158 def_matrixview='#define CONFIG_MATRIXVIEW 1'
5159 else
5160 novomodules="matrixview $novomodules"
5161 def_matrixview='#undef CONFIG_MATRIXVIEW'
5163 echores "$matrixview"
5166 if os2 ; then
5167 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
5168 if test "$_kva" = auto; then
5169 cat > $TMPC << EOF
5170 #include <os2.h>
5171 #include <kva.h>
5172 int main( void ) { return 0; }
5174 _kva=no;
5175 cc_check -lkva && _kva=yes
5177 if test "$_kva" = yes ; then
5178 def_kva='#define CONFIG_KVA 1'
5179 libs_mplayer="$libs_mplayer -lkva"
5180 vomodules="kva $vomodules"
5181 else
5182 def_kva='#undef CONFIG_KVA'
5183 novomodules="kva $novomodules"
5185 echores "$_kva"
5186 fi #if os2
5189 if win32; then
5191 echocheck "Windows waveout"
5192 if test "$_win32waveout" = auto ; then
5193 cat > $TMPC << EOF
5194 #include <windows.h>
5195 #include <mmsystem.h>
5196 int main(void) { return 0; }
5198 _win32waveout=no
5199 cc_check -lwinmm && _win32waveout=yes
5201 if test "$_win32waveout" = yes ; then
5202 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
5203 libs_mplayer="$libs_mplayer -lwinmm"
5204 aomodules="win32 $aomodules"
5205 else
5206 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
5207 noaomodules="win32 $noaomodules"
5209 echores "$_win32waveout"
5211 echocheck "Direct3D"
5212 if test "$_direct3d" = auto ; then
5213 cat > $TMPC << EOF
5214 #include <windows.h>
5215 #include <d3d9.h>
5216 int main(void) { return 0; }
5218 _direct3d=no
5219 cc_check && _direct3d=yes
5221 if test "$_direct3d" = yes ; then
5222 def_direct3d='#define CONFIG_DIRECT3D 1'
5223 vomodules="direct3d $vomodules"
5224 else
5225 def_direct3d='#undef CONFIG_DIRECT3D'
5226 novomodules="direct3d $novomodules"
5228 echores "$_direct3d"
5230 echocheck "Directx"
5231 if test "$_directx" = auto ; then
5232 cat > $TMPC << EOF
5233 #include <windows.h>
5234 #include <ddraw.h>
5235 #include <dsound.h>
5236 int main(void) { return 0; }
5238 _directx=no
5239 cc_check -lgdi32 && _directx=yes
5241 if test "$_directx" = yes ; then
5242 def_directx='#define CONFIG_DIRECTX 1'
5243 libs_mplayer="$libs_mplayer -lgdi32"
5244 vomodules="directx $vomodules"
5245 aomodules="dsound $aomodules"
5246 else
5247 def_directx='#undef CONFIG_DIRECTX'
5248 novomodules="directx $novomodules"
5249 noaomodules="dsound $noaomodules"
5251 echores "$_directx"
5253 fi #if win32; then
5256 echocheck "DXR2"
5257 if test "$_dxr2" = auto; then
5258 _dxr2=no
5259 cat > $TMPC << EOF
5260 #include <dxr2ioctl.h>
5261 int main(void) { return 0; }
5263 for _inc_tmp in "" -I/usr/local/include/dxr2 -I/usr/include/dxr2; do
5264 cc_check $_inc_tmp && _dxr2=yes && \
5265 extra_cflags="$extra_cflags $_inc_tmp" && break
5266 done
5268 if test "$_dxr2" = yes; then
5269 def_dxr2='#define CONFIG_DXR2 1'
5270 aomodules="dxr2 $aomodules"
5271 vomodules="dxr2 $vomodules"
5272 else
5273 def_dxr2='#undef CONFIG_DXR2'
5274 noaomodules="dxr2 $noaomodules"
5275 novomodules="dxr2 $novomodules"
5277 echores "$_dxr2"
5279 echocheck "DXR3/H+"
5280 if test "$_dxr3" = auto ; then
5281 cat > $TMPC << EOF
5282 #include <linux/em8300.h>
5283 int main(void) { return 0; }
5285 _dxr3=no
5286 cc_check && _dxr3=yes
5288 if test "$_dxr3" = yes ; then
5289 def_dxr3='#define CONFIG_DXR3 1'
5290 vomodules="dxr3 $vomodules"
5291 else
5292 def_dxr3='#undef CONFIG_DXR3'
5293 novomodules="dxr3 $novomodules"
5295 echores "$_dxr3"
5298 echocheck "IVTV TV-Out (pre linux-2.6.24)"
5299 if test "$_ivtv" = auto ; then
5300 cat > $TMPC << EOF
5301 #include <stdlib.h>
5302 #include <inttypes.h>
5303 #include <linux/types.h>
5304 #include <linux/videodev2.h>
5305 #include <linux/ivtv.h>
5306 #include <sys/ioctl.h>
5307 int main(void) {
5308 struct ivtv_cfg_stop_decode sd;
5309 struct ivtv_cfg_start_decode sd1;
5310 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
5311 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
5312 return 0; }
5314 _ivtv=no
5315 cc_check && _ivtv=yes
5317 if test "$_ivtv" = yes ; then
5318 def_ivtv='#define CONFIG_IVTV 1'
5319 vomodules="ivtv $vomodules"
5320 aomodules="ivtv $aomodules"
5321 else
5322 def_ivtv='#undef CONFIG_IVTV'
5323 novomodules="ivtv $novomodules"
5324 noaomodules="ivtv $noaomodules"
5326 echores "$_ivtv"
5329 echocheck "V4L2 MPEG Decoder"
5330 if test "$_v4l2" = auto ; then
5331 cat > $TMPC << EOF
5332 #include <stdlib.h>
5333 #include <inttypes.h>
5334 #include <linux/types.h>
5335 #include <linux/videodev2.h>
5336 #include <linux/version.h>
5337 int main(void) {
5338 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
5339 #error kernel headers too old, need 2.6.22
5340 #endif
5341 struct v4l2_ext_controls ctrls;
5342 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
5343 return 0;
5346 _v4l2=no
5347 cc_check && _v4l2=yes
5349 if test "$_v4l2" = yes ; then
5350 def_v4l2='#define CONFIG_V4L2_DECODER 1'
5351 vomodules="v4l2 $vomodules"
5352 aomodules="v4l2 $aomodules"
5353 else
5354 def_v4l2='#undef CONFIG_V4L2_DECODER'
5355 novomodules="v4l2 $novomodules"
5356 noaomodules="v4l2 $noaomodules"
5358 echores "$_v4l2"
5362 #########
5363 # AUDIO #
5364 #########
5367 echocheck "OSS Audio"
5368 if test "$_ossaudio" = auto ; then
5369 cat > $TMPC << EOF
5370 #include <sys/ioctl.h>
5371 #include <$_soundcard_header>
5372 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
5374 _ossaudio=no
5375 cc_check && _ossaudio=yes
5377 if test "$_ossaudio" = yes ; then
5378 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
5379 aomodules="oss $aomodules"
5380 if test "$_linux_devfs" = yes; then
5381 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound/dsp"'
5382 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/sound/mixer"'
5383 else
5384 cat > $TMPC << EOF
5385 #include <sys/ioctl.h>
5386 #include <$_soundcard_header>
5387 #ifdef OPEN_SOUND_SYSTEM
5388 int main(void) { return 0; }
5389 #else
5390 #error Not the real thing
5391 #endif
5393 _real_ossaudio=no
5394 cc_check && _real_ossaudio=yes
5395 if test "$_real_ossaudio" = yes; then
5396 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5397 # Check for OSS4 headers (override default headers)
5398 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
5399 if test -f /etc/oss.conf; then
5400 . /etc/oss.conf
5401 _ossinc="$OSSLIBDIR/include"
5402 if test -f "$_ossinc/sys/soundcard.h"; then
5403 extra_cflags="-I$_ossinc $extra_cflags"
5406 elif netbsd || openbsd ; then
5407 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
5408 extra_ldflags="$extra_ldflags -lossaudio"
5409 else
5410 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5412 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
5414 else
5415 def_ossaudio='#undef CONFIG_OSS_AUDIO'
5416 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
5417 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
5418 noaomodules="oss $noaomodules"
5420 echores "$_ossaudio"
5423 echocheck "aRts"
5424 if test "$_arts" = auto ; then
5425 _arts=no
5426 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
5428 cat > $TMPC << EOF
5429 #include <artsc.h>
5430 int main(void) { return 0; }
5432 cc_check $(artsc-config --libs) $(artsc-config --cflags) && _arts=yes
5437 if test "$_arts" = yes ; then
5438 def_arts='#define CONFIG_ARTS 1'
5439 aomodules="arts $aomodules"
5440 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
5441 extra_cflags="$extra_cflags $(artsc-config --cflags)"
5442 else
5443 noaomodules="arts $noaomodules"
5445 echores "$_arts"
5448 echocheck "EsounD"
5449 if test "$_esd" = auto ; then
5450 _esd=no
5451 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
5453 cat > $TMPC << EOF
5454 #include <esd.h>
5455 int main(void) { int fd = esd_open_sound("test"); return fd; }
5457 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd=yes
5461 echores "$_esd"
5463 if test "$_esd" = yes ; then
5464 def_esd='#define CONFIG_ESD 1'
5465 aomodules="esd $aomodules"
5466 libs_mplayer="$libs_mplayer $(esd-config --libs)"
5467 extra_cflags="$extra_cflags $(esd-config --cflags)"
5469 echocheck "esd_get_latency()"
5470 cat > $TMPC << EOF
5471 #include <esd.h>
5472 int main(void) { return esd_get_latency(0); }
5474 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
5475 echores "$_esd_latency"
5476 else
5477 def_esd='#undef CONFIG_ESD'
5478 def_esd_latency='#undef CONFIG_ESD_LATENCY'
5479 noaomodules="esd $noaomodules"
5483 echocheck "NAS"
5484 if test "$_nas" = auto ; then
5485 cat > $TMPC << EOF
5486 #include <audio/audiolib.h>
5487 int main(void) { return 0; }
5489 _nas=no
5490 cc_check $_ld_lm -laudio -lXt && _nas=yes
5492 if test "$_nas" = yes ; then
5493 def_nas='#define CONFIG_NAS 1'
5494 libs_mplayer="$libs_mplayer -laudio -lXt"
5495 aomodules="nas $aomodules"
5496 else
5497 noaomodules="nas $noaomodules"
5498 def_nas='#undef CONFIG_NAS'
5500 echores "$_nas"
5503 echocheck "pulse"
5504 if test "$_pulse" = auto ; then
5505 _pulse=no
5506 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5508 cat > $TMPC << EOF
5509 #include <pulse/pulseaudio.h>
5510 int main(void) { return 0; }
5512 cc_check $($_pkg_config --libs --cflags libpulse) && _pulse=yes
5516 echores "$_pulse"
5518 if test "$_pulse" = yes ; then
5519 def_pulse='#define CONFIG_PULSE 1'
5520 aomodules="pulse $aomodules"
5521 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
5522 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
5523 else
5524 def_pulse='#undef CONFIG_PULSE'
5525 noaomodules="pulse $noaomodules"
5529 echocheck "JACK"
5530 if test "$_jack" = auto ; then
5531 _jack=yes
5533 cat > $TMPC << EOF
5534 #include <jack/jack.h>
5535 int main(void) { jack_client_open("test", JackUseExactName, NULL); return 0; }
5537 if cc_check -ljack ; then
5538 libs_mplayer="$libs_mplayer -ljack"
5539 elif cc_check $($_pkg_config --libs --cflags --silence-errors jack) ; then
5540 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
5541 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
5542 else
5543 _jack=no
5547 if test "$_jack" = yes ; then
5548 def_jack='#define CONFIG_JACK 1'
5549 aomodules="jack $aomodules"
5550 else
5551 noaomodules="jack $noaomodules"
5553 echores "$_jack"
5555 echocheck "OpenAL"
5556 if test "$_openal" = auto ; then
5557 _openal=no
5558 cat > $TMPC << EOF
5559 #ifdef OPENAL_AL_H
5560 #include <OpenAL/al.h>
5561 #else
5562 #include <AL/al.h>
5563 #endif
5564 int main(void) {
5565 alSourceQueueBuffers(0, 0, 0);
5566 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5567 return 0;
5570 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5571 cc_check $I && _openal=yes && break
5572 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5573 done
5574 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
5576 if test "$_openal" = yes ; then
5577 def_openal='#define CONFIG_OPENAL 1'
5578 aomodules="openal $aomodules"
5579 else
5580 noaomodules="openal $noaomodules"
5582 echores "$_openal"
5584 echocheck "ALSA audio"
5585 if test "$_alloca" != yes ; then
5586 _alsa=no
5587 res_comment="alloca missing"
5589 if test "$_alsa" != no ; then
5590 _alsa=no
5591 cat > $TMPC << EOF
5592 #include <sys/time.h>
5593 #include <sys/asoundlib.h>
5594 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5595 #error "alsa version != 0.5.x"
5596 #endif
5597 int main(void) { return 0; }
5599 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5601 cat > $TMPC << EOF
5602 #include <sys/time.h>
5603 #include <sys/asoundlib.h>
5604 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5605 #error "alsa version != 0.9.x"
5606 #endif
5607 int main(void) { return 0; }
5609 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5610 cat > $TMPC << EOF
5611 #include <sys/time.h>
5612 #include <alsa/asoundlib.h>
5613 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5614 #error "alsa version != 0.9.x"
5615 #endif
5616 int main(void) { return 0; }
5618 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5620 cat > $TMPC << EOF
5621 #include <sys/time.h>
5622 #include <sys/asoundlib.h>
5623 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5624 #error "alsa version != 1.0.x"
5625 #endif
5626 int main(void) { return 0; }
5628 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5629 cat > $TMPC << EOF
5630 #include <sys/time.h>
5631 #include <alsa/asoundlib.h>
5632 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5633 #error "alsa version != 1.0.x"
5634 #endif
5635 int main(void) { return 0; }
5637 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5639 def_alsa='#undef CONFIG_ALSA'
5640 def_alsa5='#undef CONFIG_ALSA5'
5641 def_alsa9='#undef CONFIG_ALSA9'
5642 def_alsa1x='#undef CONFIG_ALSA1X'
5643 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5644 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5645 if test "$_alsaver" ; then
5646 _alsa=yes
5647 if test "$_alsaver" = '0.5.x' ; then
5648 _alsa5=yes
5649 aomodules="alsa5 $aomodules"
5650 def_alsa5='#define CONFIG_ALSA5 1'
5651 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5652 res_comment="using alsa 0.5.x and sys/asoundlib.h"
5653 elif test "$_alsaver" = '0.9.x-sys' ; then
5654 _alsa9=yes
5655 aomodules="alsa $aomodules"
5656 def_alsa='#define CONFIG_ALSA 1'
5657 def_alsa9='#define CONFIG_ALSA9 1'
5658 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5659 res_comment="using alsa 0.9.x and sys/asoundlib.h"
5660 elif test "$_alsaver" = '0.9.x-alsa' ; then
5661 _alsa9=yes
5662 aomodules="alsa $aomodules"
5663 def_alsa='#define CONFIG_ALSA 1'
5664 def_alsa9='#define CONFIG_ALSA9 1'
5665 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5666 res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5667 elif test "$_alsaver" = '1.0.x-sys' ; then
5668 _alsa1x=yes
5669 aomodules="alsa $aomodules"
5670 def_alsa='#define CONFIG_ALSA 1'
5671 def_alsa1x="#define CONFIG_ALSA1X 1"
5672 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5673 res_comment="using alsa 1.0.x and sys/asoundlib.h"
5674 elif test "$_alsaver" = '1.0.x-alsa' ; then
5675 _alsa1x=yes
5676 aomodules="alsa $aomodules"
5677 def_alsa='#define CONFIG_ALSA 1'
5678 def_alsa1x="#define CONFIG_ALSA1X 1"
5679 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5680 res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5681 else
5682 _alsa=no
5683 res_comment="unknown version"
5685 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5686 else
5687 noaomodules="alsa $noaomodules"
5689 echores "$_alsa"
5692 echocheck "Sun audio"
5693 if test "$_sunaudio" = auto ; then
5694 cat > $TMPC << EOF
5695 #include <sys/types.h>
5696 #include <sys/audioio.h>
5697 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5699 _sunaudio=no
5700 cc_check && _sunaudio=yes
5702 if test "$_sunaudio" = yes ; then
5703 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5704 aomodules="sun $aomodules"
5705 else
5706 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5707 noaomodules="sun $noaomodules"
5709 echores "$_sunaudio"
5712 def_mlib='#define CONFIG_MLIB 0'
5713 if sunos; then
5714 echocheck "Sun mediaLib"
5715 if test "$_mlib" = auto ; then
5716 _mlib=no
5717 cat > $TMPC << EOF
5718 #include <mlib.h>
5719 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; }
5721 cc_check -lmlib && _mlib=yes && def_mlib='#define CONFIG_MLIB 1'
5723 echores "$_mlib"
5724 fi #if sunos
5727 if darwin; then
5728 echocheck "CoreAudio"
5729 if test "$_coreaudio" = auto ; then
5730 cat > $TMPC <<EOF
5731 #include <CoreAudio/CoreAudio.h>
5732 #include <AudioToolbox/AudioToolbox.h>
5733 #include <AudioUnit/AudioUnit.h>
5734 int main(void) { return 0; }
5736 _coreaudio=no
5737 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5739 if test "$_coreaudio" = yes ; then
5740 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5741 def_coreaudio='#define CONFIG_COREAUDIO 1'
5742 aomodules="coreaudio $aomodules"
5743 else
5744 def_coreaudio='#undef CONFIG_COREAUDIO'
5745 noaomodules="coreaudio $noaomodules"
5747 echores $_coreaudio
5748 fi #if darwin
5751 if irix; then
5752 echocheck "SGI audio"
5753 if test "$_sgiaudio" = auto ; then
5754 # check for SGI audio
5755 cat > $TMPC << EOF
5756 #include <dmedia/audio.h>
5757 int main(void) { return 0; }
5759 _sgiaudio=no
5760 cc_check && _sgiaudio=yes
5762 if test "$_sgiaudio" = "yes" ; then
5763 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5764 libs_mplayer="$libs_mplayer -laudio"
5765 aomodules="sgi $aomodules"
5766 else
5767 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5768 noaomodules="sgi $noaomodules"
5770 echores "$_sgiaudio"
5771 fi #if irix
5774 if os2 ; then
5775 echocheck "KAI (UNIAUD/DART)"
5776 if test "$_kai" = auto; then
5777 cat > $TMPC << EOF
5778 #include <os2.h>
5779 #include <kai.h>
5780 int main(void) { return 0; }
5782 _kai=no;
5783 cc_check -lkai && _kai=yes
5785 if test "$_kai" = yes ; then
5786 def_kai='#define CONFIG_KAI 1'
5787 libs_mplayer="$libs_mplayer -lkai"
5788 aomodules="kai $aomodules"
5789 else
5790 def_kai='#undef CONFIG_KAI'
5791 noaomodules="kai $noaomodules"
5793 echores "$_kai"
5795 echocheck "DART"
5796 if test "$_dart" = auto; then
5797 cat > $TMPC << EOF
5798 #include <os2.h>
5799 #include <dart.h>
5800 int main( void ) { return 0; }
5802 _dart=no;
5803 cc_check -ldart && _dart=yes
5805 if test "$_dart" = yes ; then
5806 def_dart='#define CONFIG_DART 1'
5807 libs_mplayer="$libs_mplayer -ldart"
5808 aomodules="dart $aomodules"
5809 else
5810 def_dart='#undef CONFIG_DART'
5811 noaomodules="dart $noaomodules"
5813 echores "$_dart"
5814 fi #if os2
5817 # set default CD/DVD devices
5818 if win32 || os2 ; then
5819 default_cdrom_device="D:"
5820 elif darwin ; then
5821 default_cdrom_device="/dev/disk1"
5822 elif dragonfly ; then
5823 default_cdrom_device="/dev/cd0"
5824 elif freebsd ; then
5825 default_cdrom_device="/dev/acd0"
5826 elif openbsd ; then
5827 default_cdrom_device="/dev/rcd0a"
5828 elif sunos ; then
5829 default_cdrom_device="/vol/dev/aliases/cdrom0"
5830 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5831 # file system and the volfs service.
5832 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5833 elif amigaos ; then
5834 default_cdrom_device="a1ide.device:2"
5835 else
5836 default_cdrom_device="/dev/cdrom"
5839 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5840 default_dvd_device=$default_cdrom_device
5841 elif darwin ; then
5842 default_dvd_device="/dev/rdiskN"
5843 else
5844 default_dvd_device="/dev/dvd"
5848 echocheck "VCD support"
5849 if test "$_vcd" = auto; then
5850 _vcd=no
5851 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2; then
5852 _vcd=yes
5853 elif mingw32; then
5854 cat > $TMPC << EOF
5855 #include <ddk/ntddcdrm.h>
5856 int main(void) { return 0; }
5858 cc_check && _vcd=yes
5861 if test "$_vcd" = yes; then
5862 inputmodules="vcd $inputmodules"
5863 def_vcd='#define CONFIG_VCD 1'
5864 else
5865 def_vcd='#undef CONFIG_VCD'
5866 _noinputmodules="vcd $_noinputmodules"
5867 res_comment="not supported on this OS"
5869 echores "$_vcd"
5873 echocheck "dvdread"
5874 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5875 _dvdread_internal=no
5877 if test "$_dvdread_internal" = auto ; then
5878 _dvdread_internal=no
5879 _dvdread=no
5880 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) \
5881 && (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
5882 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) \
5883 || darwin || win32 || os2; then
5884 _dvdread_internal=yes
5885 _dvdread=yes
5886 extra_cflags="-Ilibdvdread4 $extra_cflags"
5888 elif test "$_dvdread" = auto ; then
5889 _dvdread=no
5890 if test "$_dl" = yes; then
5891 cat > $TMPC << EOF
5892 #include <inttypes.h>
5893 #include <dvdread/dvd_reader.h>
5894 #include <dvdread/ifo_types.h>
5895 #include <dvdread/ifo_read.h>
5896 #include <dvdread/nav_read.h>
5897 int main(void) { return 0; }
5899 _dvdreadcflags=$($_dvdreadconfig --cflags)
5900 _dvdreadlibs=$($_dvdreadconfig --libs)
5901 if cc_check -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
5902 $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5903 _dvdread=yes
5904 extra_cflags="$extra_cflags $_dvdreadcflags"
5905 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5906 res_comment="external"
5911 if test "$_dvdread_internal" = yes; then
5912 def_dvdread='#define CONFIG_DVDREAD 1'
5913 inputmodules="dvdread(internal) $inputmodules"
5914 _largefiles=yes
5915 res_comment="internal"
5916 elif test "$_dvdread" = yes; then
5917 def_dvdread='#define CONFIG_DVDREAD 1'
5918 _largefiles=yes
5919 extra_ldflags="$extra_ldflags -ldvdread"
5920 inputmodules="dvdread(external) $inputmodules"
5921 res_comment="external"
5922 else
5923 def_dvdread='#undef CONFIG_DVDREAD'
5924 _noinputmodules="dvdread $_noinputmodules"
5926 echores "$_dvdread"
5929 echocheck "internal libdvdcss"
5930 if test "$_libdvdcss_internal" = auto ; then
5931 _libdvdcss_internal=no
5932 test "$_dvdread_internal" = yes && _libdvdcss_internal=yes
5933 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5935 if test "$_libdvdcss_internal" = yes ; then
5936 if linux || netbsd || openbsd || bsdos ; then
5937 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5938 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5939 elif freebsd || dragonfly ; then
5940 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5941 elif darwin ; then
5942 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5943 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5944 elif cygwin ; then
5945 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5946 elif beos ; then
5947 cflags_libdvdcss="-DSYS_BEOS"
5948 elif os2 ; then
5949 cflags_libdvdcss="-DSYS_OS2"
5951 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5952 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5953 inputmodules="libdvdcss(internal) $inputmodules"
5954 _largefiles=yes
5955 else
5956 _noinputmodules="libdvdcss(internal) $_noinputmodules"
5958 echores "$_libdvdcss_internal"
5961 echocheck "cdparanoia"
5962 if test "$_cdparanoia" = auto ; then
5963 cat > $TMPC <<EOF
5964 #include <cdda_interface.h>
5965 #include <cdda_paranoia.h>
5966 // This need a better test. How ?
5967 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5969 _cdparanoia=no
5970 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5971 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
5972 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5973 done
5975 if test "$_cdparanoia" = yes ; then
5976 _cdda='yes'
5977 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5978 openbsd && extra_ldflags="$extra_ldflags -lutil"
5980 echores "$_cdparanoia"
5983 echocheck "libcdio"
5984 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5985 cat > $TMPC << EOF
5986 #include <stdio.h>
5987 #include <cdio/version.h>
5988 #include <cdio/cdda.h>
5989 #include <cdio/paranoia.h>
5990 int main(void) {
5991 void *test = cdda_verbose_set;
5992 printf("%s\n", CDIO_VERSION);
5993 return test == (void *)1;
5996 _libcdio=no
5997 for _ld_tmp in "" "-lwinmm" ; do
5998 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
5999 cc_check $_ld_tmp $_ld_lm \
6000 && _libcdio=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6001 done
6002 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
6003 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
6004 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
6005 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes \
6006 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6009 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
6010 _cdda='yes'
6011 def_libcdio='#define CONFIG_LIBCDIO 1'
6012 def_havelibcdio='yes'
6013 else
6014 if test "$_cdparanoia" = yes ; then
6015 res_comment="using cdparanoia"
6017 def_libcdio='#undef CONFIG_LIBCDIO'
6018 def_havelibcdio='no'
6020 echores "$_libcdio"
6022 if test "$_cdda" = yes ; then
6023 test $_cddb = auto && test $_network = yes && _cddb=yes
6024 def_cdparanoia='#define CONFIG_CDDA 1'
6025 inputmodules="cdda $inputmodules"
6026 else
6027 def_cdparanoia='#undef CONFIG_CDDA'
6028 _noinputmodules="cdda $_noinputmodules"
6031 if test "$_cddb" = yes ; then
6032 def_cddb='#define CONFIG_CDDB 1'
6033 inputmodules="cddb $inputmodules"
6034 else
6035 _cddb=no
6036 def_cddb='#undef CONFIG_CDDB'
6037 _noinputmodules="cddb $_noinputmodules"
6040 echocheck "bitmap font support"
6041 if test "$_bitmap_font" = yes ; then
6042 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
6043 else
6044 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
6046 echores "$_bitmap_font"
6049 echocheck "freetype >= 2.0.9"
6051 # freetype depends on iconv
6052 if test "$_iconv" = no ; then
6053 _freetype=no
6054 res_comment="iconv support needed"
6057 if test "$_freetype" = auto ; then
6058 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
6059 cat > $TMPC << EOF
6060 #include <stdio.h>
6061 #include <ft2build.h>
6062 #include FT_FREETYPE_H
6063 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
6064 #error "Need FreeType 2.0.9 or newer"
6065 #endif
6066 int main(void) {
6067 FT_Library library;
6068 FT_Int major=-1,minor=-1,patch=-1;
6069 int err=FT_Init_FreeType(&library);
6070 return 0;
6073 _freetype=no
6074 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
6075 else
6076 _freetype=no
6079 if test "$_freetype" = yes ; then
6080 def_freetype='#define CONFIG_FREETYPE 1'
6081 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
6082 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
6083 else
6084 def_freetype='#undef CONFIG_FREETYPE'
6086 echores "$_freetype"
6088 if test "$_freetype" = no ; then
6089 _fontconfig=no
6090 res_comment="FreeType support needed"
6092 echocheck "fontconfig"
6093 if test "$_fontconfig" = auto ; then
6094 cat > $TMPC << EOF
6095 #include <stdio.h>
6096 #include <stdlib.h>
6097 #include <fontconfig/fontconfig.h>
6098 #if FC_VERSION < 20402
6099 #error At least version 2.4.2 of fontconfig required
6100 #endif
6101 int main(void) {
6102 int err = FcInit();
6103 if (err == FcFalse) {
6104 printf("Couldn't initialize fontconfig lib\n");
6105 exit(err);
6107 return 0;
6110 _fontconfig=no
6111 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
6112 _ld_tmp="-lfontconfig $_ld_tmp"
6113 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6114 done
6115 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
6116 _inc_tmp=$($_pkg_config --cflags fontconfig)
6117 _ld_tmp=$($_pkg_config --libs fontconfig)
6118 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes \
6119 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6122 if test "$_fontconfig" = yes ; then
6123 def_fontconfig='#define CONFIG_FONTCONFIG 1'
6124 else
6125 def_fontconfig='#undef CONFIG_FONTCONFIG'
6127 echores "$_fontconfig"
6130 echocheck "SSA/ASS support"
6131 if test "$_ass" = auto -o "$_ass" = yes ; then
6132 if $_pkg_config libass; then
6133 _ass=yes
6134 def_ass='#define CONFIG_ASS 1'
6135 extra_ldflags="$extra_ldflags $($_pkg_config --libs libass)"
6136 extra_cflags="$extra_cflags $($_pkg_config --cflags libass)"
6137 else
6138 _ass=no
6139 def_ass='#undef CONFIG_ASS'
6141 else
6142 def_ass='#undef CONFIG_ASS'
6144 echores "$_ass"
6147 echocheck "fribidi with charsets"
6148 _inc_tmp=""
6149 _ld_tmp=""
6150 if test "$_fribidi" = auto ; then
6151 cat > $TMPC << EOF
6152 #include <stdio.h>
6153 #include <stdlib.h>
6154 /* workaround for fribidi 0.10.4 and below */
6155 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
6156 #include <fribidi/fribidi.h>
6157 int main(void) {
6158 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8) {
6159 printf("Fribidi headers are not consistents with the library!\n");
6160 exit(1);
6162 return 0;
6165 _fribidi=no
6166 _inc_tmp=""
6167 _ld_tmp="-lfribidi"
6168 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6169 if $_pkg_config --exists fribidi > /dev/null 2>&1 &&
6170 test "$_fribidi" = no ; then
6171 _inc_tmp="$($_pkg_config --cflags)"
6172 _ld_tmp="$($_pkg_config --libs)"
6173 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6176 if test "$_fribidi" = yes ; then
6177 def_fribidi='#define CONFIG_FRIBIDI 1'
6178 extra_cflags="$extra_cflags $_inc_tmp"
6179 extra_ldflags="$extra_ldflags $_ld_tmp"
6180 else
6181 def_fribidi='#undef CONFIG_FRIBIDI'
6183 echores "$_fribidi"
6186 echocheck "ENCA"
6187 if test "$_enca" = auto ; then
6188 cat > $TMPC << EOF
6189 #include <sys/types.h>
6190 #include <enca.h>
6191 int main(void) {
6192 const char **langs;
6193 size_t langcnt;
6194 langs = enca_get_languages(&langcnt);
6195 return 0;
6198 _enca=no
6199 cc_check -lenca $_ld_lm && _enca=yes
6201 if test "$_enca" = yes ; then
6202 def_enca='#define CONFIG_ENCA 1'
6203 extra_ldflags="$extra_ldflags -lenca"
6204 else
6205 def_enca='#undef CONFIG_ENCA'
6207 echores "$_enca"
6210 echocheck "zlib"
6211 cat > $TMPC << EOF
6212 #include <zlib.h>
6213 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; }
6215 _zlib=no
6216 cc_check -lz && _zlib=yes
6217 if test "$_zlib" = yes ; then
6218 def_zlib='#define CONFIG_ZLIB 1'
6219 extra_ldflags="$extra_ldflags -lz"
6220 else
6221 def_zlib='#define CONFIG_ZLIB 0'
6223 echores "$_zlib"
6226 echocheck "bzlib"
6227 bzlib=no
6228 def_bzlib='#define CONFIG_BZLIB 0'
6229 cat > $TMPC << EOF
6230 #include <bzlib.h>
6231 int main(void) { BZ2_bzlibVersion(); return 0; }
6233 cc_check -lbz2 && bzlib=yes
6234 if test "$bzlib" = yes ; then
6235 def_bzlib='#define CONFIG_BZLIB 1'
6236 extra_ldflags="$extra_ldflags -lbz2"
6238 echores "$bzlib"
6241 echocheck "RTC"
6242 if test "$_rtc" = auto ; then
6243 cat > $TMPC << EOF
6244 #include <sys/ioctl.h>
6245 #ifdef __linux__
6246 #include <linux/rtc.h>
6247 #else
6248 #include <rtc.h>
6249 #define RTC_PIE_ON RTCIO_PIE_ON
6250 #endif
6251 int main(void) { return RTC_PIE_ON; }
6253 _rtc=no
6254 cc_check && _rtc=yes
6255 ppc && _rtc=no
6257 if test "$_rtc" = yes ; then
6258 def_rtc='#define HAVE_RTC 1'
6259 else
6260 def_rtc='#undef HAVE_RTC'
6262 echores "$_rtc"
6265 echocheck "liblzo2 support"
6266 if test "$_liblzo" = auto ; then
6267 _liblzo=no
6268 cat > $TMPC << EOF
6269 #include <lzo/lzo1x.h>
6270 int main(void) { lzo_init();return 0; }
6272 cc_check -llzo2 && _liblzo=yes
6274 if test "$_liblzo" = yes ; then
6275 def_liblzo='#define CONFIG_LIBLZO 1'
6276 extra_ldflags="$extra_ldflags -llzo2"
6277 codecmodules="liblzo $codecmodules"
6278 else
6279 def_liblzo='#undef CONFIG_LIBLZO'
6280 nocodecmodules="liblzo $nocodecmodules"
6282 echores "$_liblzo"
6285 echocheck "mad support"
6286 if test "$_mad" = auto ; then
6287 _mad=no
6288 cat > $TMPC << EOF
6289 #include <mad.h>
6290 int main(void) { return 0; }
6292 cc_check -lmad && _mad=yes
6294 if test "$_mad" = yes ; then
6295 def_mad='#define CONFIG_LIBMAD 1'
6296 extra_ldflags="$extra_ldflags -lmad"
6297 codecmodules="libmad $codecmodules"
6298 else
6299 def_mad='#undef CONFIG_LIBMAD'
6300 nocodecmodules="libmad $nocodecmodules"
6302 echores "$_mad"
6304 echocheck "Twolame"
6305 if test "$_twolame" = auto ; then
6306 cat > $TMPC <<EOF
6307 #include <twolame.h>
6308 int main(void) { twolame_init(); return 0; }
6310 _twolame=no
6311 cc_check -ltwolame $_ld_lm && _twolame=yes
6313 if test "$_twolame" = yes ; then
6314 def_twolame='#define CONFIG_TWOLAME 1'
6315 libs_mencoder="$libs_mencoder -ltwolame"
6316 codecmodules="twolame $codecmodules"
6317 else
6318 def_twolame='#undef CONFIG_TWOLAME'
6319 nocodecmodules="twolame $nocodecmodules"
6321 echores "$_twolame"
6323 echocheck "Toolame"
6324 if test "$_toolame" = auto ; then
6325 _toolame=no
6326 if test "$_twolame" = yes ; then
6327 res_comment="disabled by twolame"
6328 else
6329 cat > $TMPC <<EOF
6330 #include <toolame.h>
6331 int main(void) { toolame_init(); return 0; }
6333 cc_check -ltoolame $_ld_lm && _toolame=yes
6336 if test "$_toolame" = yes ; then
6337 def_toolame='#define CONFIG_TOOLAME 1'
6338 libs_mencoder="$libs_mencoder -ltoolame"
6339 codecmodules="toolame $codecmodules"
6340 else
6341 def_toolame='#undef CONFIG_TOOLAME'
6342 nocodecmodules="toolame $nocodecmodules"
6344 if test "$_toolamedir" ; then
6345 res_comment="using $_toolamedir"
6347 echores "$_toolame"
6349 echocheck "OggVorbis support"
6350 if test "$_tremor_internal" = yes; then
6351 _libvorbis=no
6352 elif test "$_tremor" = auto; then
6353 _tremor=no
6354 cat > $TMPC << EOF
6355 #include <tremor/ivorbiscodec.h>
6356 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6358 cc_check -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
6360 if test "$_libvorbis" = auto; then
6361 _libvorbis=no
6362 cat > $TMPC << EOF
6363 #include <vorbis/codec.h>
6364 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6366 cc_check -lvorbis -logg $_ld_lm && _libvorbis=yes
6368 if test "$_tremor_internal" = yes ; then
6369 _vorbis=yes
6370 def_vorbis='#define CONFIG_OGGVORBIS 1'
6371 def_tremor='#define CONFIG_TREMOR 1'
6372 codecmodules="tremor(internal) $codecmodules"
6373 res_comment="internal Tremor"
6374 if test "$_tremor_low" = yes ; then
6375 cflags_tremor_low="-D_LOW_ACCURACY_"
6376 res_comment="internal low accuracy Tremor"
6378 elif test "$_tremor" = yes ; then
6379 _vorbis=yes
6380 def_vorbis='#define CONFIG_OGGVORBIS 1'
6381 def_tremor='#define CONFIG_TREMOR 1'
6382 codecmodules="tremor(external) $codecmodules"
6383 res_comment="external Tremor"
6384 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
6385 elif test "$_libvorbis" = yes ; then
6386 _vorbis=yes
6387 def_vorbis='#define CONFIG_OGGVORBIS 1'
6388 codecmodules="libvorbis $codecmodules"
6389 res_comment="libvorbis"
6390 extra_ldflags="$extra_ldflags -lvorbis -logg"
6391 else
6392 _vorbis=no
6393 nocodecmodules="libvorbis $nocodecmodules"
6395 echores "$_vorbis"
6397 echocheck "libspeex (version >= 1.1 required)"
6398 if test "$_speex" = auto ; then
6399 _speex=no
6400 cat > $TMPC << EOF
6401 #include <speex/speex.h>
6402 int main(void) { SpeexBits bits; void *dec; speex_decode_int(dec, &bits, dec); return 0; }
6404 cc_check -lspeex $_ld_lm && _speex=yes
6406 if test "$_speex" = yes ; then
6407 def_speex='#define CONFIG_SPEEX 1'
6408 extra_ldflags="$extra_ldflags -lspeex"
6409 codecmodules="speex $codecmodules"
6410 else
6411 def_speex='#undef CONFIG_SPEEX'
6412 nocodecmodules="speex $nocodecmodules"
6414 echores "$_speex"
6416 echocheck "OggTheora support"
6417 if test "$_theora" = auto ; then
6418 _theora=no
6419 cat > $TMPC << EOF
6420 #include <theora/theora.h>
6421 #include <string.h>
6422 int main(void) {
6423 /* Theora is in flux, make sure that all interface routines and datatypes
6424 * exist and work the way we expect it, so we don't break MPlayer. */
6425 ogg_packet op;
6426 theora_comment tc;
6427 theora_info inf;
6428 theora_state st;
6429 yuv_buffer yuv;
6430 int r;
6431 double t;
6433 theora_info_init(&inf);
6434 theora_comment_init(&tc);
6436 return 0;
6438 /* we don't want to execute this kind of nonsense; just for making sure
6439 * that compilation works... */
6440 memset(&op, 0, sizeof(op));
6441 r = theora_decode_header(&inf, &tc, &op);
6442 r = theora_decode_init(&st, &inf);
6443 t = theora_granule_time(&st, op.granulepos);
6444 r = theora_decode_packetin(&st, &op);
6445 r = theora_decode_YUVout(&st, &yuv);
6446 theora_clear(&st);
6448 return 0;
6451 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6452 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6453 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
6454 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6455 if test _theora = no; then
6456 _ld_theora="-ltheora -logg"
6457 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6459 if test "$_theora" = no && test "$_tremor_internal" = yes; then
6460 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6461 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6462 cc_check tremor/bitwise.c $_inc_theora $_ld_theora &&
6463 extra_ldflags="$extra_ldflags $_ld_theora" &&
6464 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6465 if test _theora = no; then
6466 _ld_theora="-ltheora -logg"
6467 cc_check tremor/bitwise.c $_ld_theora &&
6468 extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6472 if test "$_theora" = yes ; then
6473 def_theora='#define CONFIG_OGGTHEORA 1'
6474 codecmodules="libtheora $codecmodules"
6475 # when --enable-theora is forced, we'd better provide a probably sane
6476 # $_ld_theora than nothing
6477 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
6478 else
6479 def_theora='#undef CONFIG_OGGTHEORA'
6480 nocodecmodules="libtheora $nocodecmodules"
6482 echores "$_theora"
6484 echocheck "mp3lib support"
6485 if test "$_mp3lib" = auto ; then
6486 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _mp3lib=no || _mp3lib=yes
6488 if test "$_mp3lib" = yes ; then
6489 def_mp3lib='#define CONFIG_MP3LIB 1'
6490 codecmodules="mp3lib(internal) $codecmodules"
6491 else
6492 def_mp3lib='#undef CONFIG_MP3LIB'
6493 nocodecmodules="mp3lib(internal) $nocodecmodules"
6495 echores "$_mp3lib"
6497 echocheck "liba52 support"
6498 def_liba52='#undef CONFIG_LIBA52'
6499 if test "$_liba52" = auto ; then
6500 _liba52=no
6501 cat > $TMPC << EOF
6502 #include <inttypes.h>
6503 #include <a52dec/a52.h>
6504 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6506 cc_check -la52 && _liba52=yes && extra_ldflags="$extra_ldflags -la52"
6508 if test "$_liba52" = yes ; then
6509 def_liba52='#define CONFIG_LIBA52 1'
6510 codecmodules="liba52 $codecmodules"
6511 else
6512 nocodecmodules="liba52 $nocodecmodules"
6514 echores "$_liba52"
6516 echocheck "internal libmpeg2 support"
6517 if test "$_libmpeg2" = auto ; then
6518 _libmpeg2=yes
6519 if alpha && test cc_vendor=gnu; then
6520 case $cc_version in
6521 2*|3.0*|3.1*) # cannot compile MVI instructions
6522 _libmpeg2=no
6523 res_comment="broken gcc"
6525 esac
6528 if test "$_libmpeg2" = yes ; then
6529 def_libmpeg2='#define CONFIG_LIBMPEG2 1'
6530 codecmodules="libmpeg2(internal) $codecmodules"
6531 else
6532 def_libmpeg2='#undef CONFIG_LIBMPEG2'
6533 nocodecmodules="libmpeg2(internal) $nocodecmodules"
6535 echores "$_libmpeg2"
6537 echocheck "libdca support"
6538 if test "$_libdca" = auto ; then
6539 _libdca=no
6540 cat > $TMPC << EOF
6541 #include <inttypes.h>
6542 #include <dts.h>
6543 int main(void) { dts_init(0); return 0; }
6545 for _ld_dca in -ldca -ldts ; do
6546 cc_check $_ld_dca $_ld_lm && extra_ldflags="$extra_ldflags $_ld_dca" \
6547 && _libdca=yes && break
6548 done
6550 if test "$_libdca" = yes ; then
6551 def_libdca='#define CONFIG_LIBDCA 1'
6552 codecmodules="libdca $codecmodules"
6553 else
6554 def_libdca='#undef CONFIG_LIBDCA'
6555 nocodecmodules="libdca $nocodecmodules"
6557 echores "$_libdca"
6559 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
6560 if test "$_musepack" = auto ; then
6561 _musepack=no
6562 cat > $TMPC << EOF
6563 #include <stddef.h>
6564 #include <mpcdec/mpcdec.h>
6565 int main(void) {
6566 mpc_streaminfo info;
6567 mpc_decoder decoder;
6568 mpc_decoder_set_streaminfo(&decoder, &info);
6569 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6570 return 0;
6573 cc_check -lmpcdec $_ld_lm && _musepack=yes
6575 if test "$_musepack" = yes ; then
6576 def_musepack='#define CONFIG_MUSEPACK 1'
6577 extra_ldflags="$extra_ldflags -lmpcdec"
6578 codecmodules="musepack $codecmodules"
6579 else
6580 def_musepack='#undef CONFIG_MUSEPACK'
6581 nocodecmodules="musepack $nocodecmodules"
6583 echores "$_musepack"
6586 echocheck "FAAC support"
6587 if test "$_faac" = auto ; then
6588 cat > $TMPC <<EOF
6589 #include <inttypes.h>
6590 #include <faac.h>
6591 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6593 _faac=no
6594 for _ld_faac in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6595 cc_check $_ld_faac $_ld_lm && libs_mencoder="$libs_mencoder $_ld_faac" && _faac=yes && break
6596 done
6598 if test "$_faac" = yes ; then
6599 def_faac="#define CONFIG_FAAC 1"
6600 codecmodules="faac $codecmodules"
6601 else
6602 def_faac="#undef CONFIG_FAAC"
6603 nocodecmodules="faac $nocodecmodules"
6605 echores "$_faac"
6608 echocheck "FAAD2 support"
6609 if test "$_faad_internal" = auto ; then
6610 if x86_32 && test cc_vendor=gnu; then
6611 case $cc_version in
6612 3.1*|3.2) # ICE/insn with these versions
6613 _faad_internal=no
6614 res_comment="broken gcc"
6617 _faad=yes
6618 _faad_internal=yes
6620 esac
6621 else
6622 _faad=yes
6623 _faad_internal=yes
6626 if test "$_faad" = auto ; then
6627 cat > $TMPC << EOF
6628 #include <faad.h>
6629 #ifndef FAAD_MIN_STREAMSIZE
6630 #error Too old version
6631 #endif
6632 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6633 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6635 cc_check -lfaad $_ld_lm && _faad=yes
6638 def_faad='#undef CONFIG_FAAD'
6639 def_faad_internal="#undef CONFIG_FAAD_INTERNAL"
6640 if test "$_faad_internal" = yes ; then
6641 def_faad_internal="#define CONFIG_FAAD_INTERNAL 1"
6642 res_comment="internal floating-point"
6643 if test "$_faad_fixed" = yes ; then
6644 # The FIXED_POINT implementation of FAAD2 improves performance
6645 # on some platforms, especially for SBR files.
6646 cflags_faad_fixed="-DFIXED_POINT"
6647 res_comment="internal fixed-point"
6649 elif test "$_faad" = yes ; then
6650 extra_ldflags="$extra_ldflags -lfaad"
6653 if test "$_faad" = yes ; then
6654 def_faad='#define CONFIG_FAAD 1'
6655 if test "$_faad_internal" = yes ; then
6656 codecmodules="faad2(internal) $codecmodules"
6657 else
6658 codecmodules="faad2 $codecmodules"
6660 else
6661 _faad=no
6662 nocodecmodules="faad2 $nocodecmodules"
6664 echores "$_faad"
6667 echocheck "LADSPA plugin support"
6668 if test "$_ladspa" = auto ; then
6669 cat > $TMPC <<EOF
6670 #include <stdio.h>
6671 #include <ladspa.h>
6672 int main(void) {
6673 const LADSPA_Descriptor *ld = NULL;
6674 return 0;
6677 _ladspa=no
6678 cc_check && _ladspa=yes
6680 if test "$_ladspa" = yes; then
6681 def_ladspa="#define CONFIG_LADSPA 1"
6682 else
6683 def_ladspa="#undef CONFIG_LADSPA"
6685 echores "$_ladspa"
6688 echocheck "libbs2b audio filter support"
6689 if test "$_libbs2b" = auto ; then
6690 cat > $TMPC <<EOF
6691 #include <bs2b.h>
6692 #if BS2B_VERSION_MAJOR < 3
6693 #error Please use libbs2b >= 3.0.0, older versions are not supported.
6694 #endif
6695 int main(void) {
6696 t_bs2bdp filter;
6697 filter=bs2b_open();
6698 bs2b_close(filter);
6699 return 0;
6702 _libbs2b=no
6703 if $_pkg_config --exists libbs2b ; then
6704 _inc_tmp=$($_pkg_config --cflags libbs2b)
6705 _ld_tmp=$($_pkg_config --libs libbs2b)
6706 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
6707 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
6708 else
6709 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
6710 -I/usr/local/include/bs2b ; do
6711 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
6712 extra_ldflags="$extra_ldflags -lbs2b"
6713 extra_cflags="$extra_cflags $_inc_tmp"
6714 _libbs2b=yes
6715 break
6717 done
6720 def_libbs2b="#undef CONFIG_LIBBS2B"
6721 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
6722 echores "$_libbs2b"
6725 if test -z "$_codecsdir" ; then
6726 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
6727 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
6728 if test -d "$dir" ; then
6729 _codecsdir="$dir"
6730 break;
6732 done
6734 # Fall back on default directory.
6735 if test -z "$_codecsdir" ; then
6736 _codecsdir="$_libdir/codecs"
6737 mingw32 || os2 && _codecsdir="codecs"
6741 echocheck "Win32 codecs"
6742 if test "$_win32dll" = auto ; then
6743 _win32dll=no
6744 if x86_32 && ! qnx; then
6745 _win32dll=yes
6748 if test "$_win32dll" = yes ; then
6749 def_win32dll='#define CONFIG_WIN32DLL 1'
6750 if ! win32 ; then
6751 def_win32_loader='#define WIN32_LOADER 1'
6752 _win32_emulation=yes
6753 else
6754 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
6755 res_comment="using native windows"
6757 codecmodules="win32 $codecmodules"
6758 else
6759 def_win32dll='#undef CONFIG_WIN32DLL'
6760 def_win32_loader='#undef WIN32_LOADER'
6761 nocodecmodules="win32 $nocodecmodules"
6763 echores "$_win32dll"
6766 echocheck "XAnim codecs"
6767 if test "$_xanim" = auto ; then
6768 _xanim=no
6769 res_comment="dynamic loader support needed"
6770 if test "$_dl" = yes ; then
6771 _xanim=yes
6774 if test "$_xanim" = yes ; then
6775 def_xanim='#define CONFIG_XANIM 1'
6776 codecmodules="xanim $codecmodules"
6777 else
6778 def_xanim='#undef CONFIG_XANIM'
6779 nocodecmodules="xanim $nocodecmodules"
6781 echores "$_xanim"
6784 echocheck "RealPlayer codecs"
6785 if test "$_real" = auto ; then
6786 _real=no
6787 res_comment="dynamic loader support needed"
6788 if test "$_dl" = yes || test "$_win32dll" = yes &&
6789 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2) ; then
6790 _real=yes
6793 if test "$_real" = yes ; then
6794 def_real='#define CONFIG_REALCODECS 1'
6795 codecmodules="real $codecmodules"
6796 else
6797 def_real='#undef CONFIG_REALCODECS'
6798 nocodecmodules="real $nocodecmodules"
6800 echores "$_real"
6803 echocheck "QuickTime codecs"
6804 _qtx_emulation=no
6805 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
6806 if test "$_qtx" = auto ; then
6807 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
6809 if test "$_qtx" = yes ; then
6810 def_qtx='#define CONFIG_QTX_CODECS 1'
6811 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
6812 codecmodules="qtx $codecmodules"
6813 darwin || win32 || _qtx_emulation=yes
6814 else
6815 def_qtx='#undef CONFIG_QTX_CODECS'
6816 nocodecmodules="qtx $nocodecmodules"
6818 echores "$_qtx"
6820 echocheck "Nemesi Streaming Media libraries"
6821 if test "$_nemesi" = auto && test "$_network" = yes ; then
6822 _nemesi=no
6823 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
6824 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
6825 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
6826 _nemesi=yes
6829 if test "$_nemesi" = yes; then
6830 _native_rtsp=no
6831 def_nemesi='#define CONFIG_LIBNEMESI 1'
6832 inputmodules="nemesi $inputmodules"
6833 else
6834 _native_rtsp="$_network"
6835 _nemesi=no
6836 def_nemesi='#undef CONFIG_LIBNEMESI'
6837 _noinputmodules="nemesi $_noinputmodules"
6839 echores "$_nemesi"
6841 echocheck "LIVE555 Streaming Media libraries"
6842 if test "$_live" = auto && test "$_network" = yes ; then
6843 cat > $TMPCPP << EOF
6844 #include <liveMedia.hh>
6845 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6846 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6847 #endif
6848 int main(void) { return 0; }
6851 _live=no
6852 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
6853 cxx_check $I/liveMedia/include $I/UsageEnvironment/include \
6854 $I/groupsock/include && _livelibdir=$(echo $I| sed s/-I//) && \
6855 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
6856 $_livelibdir/groupsock/libgroupsock.a \
6857 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6858 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6859 $extra_ldflags -lstdc++" \
6860 extra_cxxflags="-I$_livelibdir/liveMedia/include \
6861 -I$_livelibdir/UsageEnvironment/include \
6862 -I$_livelibdir/BasicUsageEnvironment/include \
6863 -I$_livelibdir/groupsock/include" && \
6864 _live=yes && break
6865 done
6866 if test "$_live" != yes ; then
6867 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6868 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
6869 _live_dist=yes
6873 if test "$_live" = yes && test "$_network" = yes; then
6874 test $_livelibdir && res_comment="using $_livelibdir"
6875 def_live='#define CONFIG_LIVE555 1'
6876 inputmodules="live555 $inputmodules"
6877 elif test "$_live_dist" = yes && test "$_network" = yes; then
6878 res_comment="using distribution version"
6879 _live="yes"
6880 def_live='#define CONFIG_LIVE555 1'
6881 extra_ldflags="$extra_ldflags $ld_tmp"
6882 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
6883 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6884 inputmodules="live555 $inputmodules"
6885 else
6886 _live=no
6887 def_live='#undef CONFIG_LIVE555'
6888 _noinputmodules="live555 $_noinputmodules"
6890 echores "$_live"
6893 echocheck "FFmpeg libavutil"
6894 if test "$_libavutil" = auto ; then
6895 _libavutil=no
6896 cat > $TMPC << EOF
6897 #include <libavutil/common.h>
6898 int main(void) { av_clip(1, 1, 1); return 0; }
6900 if $_pkg_config --exists libavutil ; then
6901 _inc_libavutil=$($_pkg_config --cflags libavutil)
6902 _ld_tmp=$($_pkg_config --libs libavutil)
6903 cc_check $_inc_libavutil $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libavutil" \
6904 && _libavutil=yes
6905 elif cc_check -lavutil $_ld_lm ; then
6906 extra_ldflags="$extra_ldflags -lavutil"
6907 _libavutil=yes
6910 def_libavutil='#undef CONFIG_LIBAVUTIL'
6911 test "$_libavutil" = yes && def_libavutil='#define CONFIG_LIBAVUTIL 1'
6912 # libavutil is not available, but it is mandatory ...
6913 if test "$_libavutil" = no ; then
6914 die "You need libavutil, MPlayer will not compile without!"
6916 echores "$_libavutil"
6918 echocheck "FFmpeg libavcodec"
6919 if test "$_libavcodec" = auto ; then
6920 _libavcodec=no
6921 cat > $TMPC << EOF
6922 #include <libavcodec/avcodec.h>
6923 int main(void) { avcodec_find_encoder_by_name(""); return 0; }
6925 if $_pkg_config --exists libavcodec ; then
6926 _inc_libavcodec=$($_pkg_config --cflags libavcodec)
6927 _ld_tmp=$($_pkg_config --libs libavcodec)
6928 cc_check $_inc_libavcodec $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavcodec" \
6929 && _libavcodec=yes
6930 elif cc_check -lavcodec $_ld_lm ; then
6931 extra_ldflags="$extra_ldflags -lavcodec"
6932 _libavcodec=yes
6935 def_libavcodec='#undef CONFIG_LIBAVCODEC'
6936 test "$_libavcodec" = yes && def_libavcodec='#define CONFIG_LIBAVCODEC 1'
6937 if test "$_libavcodec" = yes ; then
6938 codecmodules="libavcodec $codecmodules"
6939 else
6940 nocodecmodules="libavcodec $nocodecmodules"
6942 echores "$_libavcodec"
6944 echocheck "FFmpeg libavformat"
6945 if test "$_libavformat" = auto ; then
6946 _libavformat=no
6947 cat > $TMPC <<EOF
6948 #include <libavformat/avformat.h>
6949 #include <libavcodec/opt.h>
6950 int main(void) { av_alloc_format_context(); return 0; }
6952 if $_pkg_config --exists libavformat ; then
6953 _inc_libavformat=$($_pkg_config --cflags libavformat)
6954 _ld_tmp=$($_pkg_config --libs libavformat)
6955 cc_check $_inc_libavformat $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavformat" \
6956 && _libavformat=yes
6957 elif cc_check $_ld_lm -lavformat ; then
6958 extra_ldflags="$extra_ldflags -lavformat"
6959 _libavformat=yes
6962 def_libavformat='#undef CONFIG_LIBAVFORMAT'
6963 test "$_libavformat" = yes && def_libavformat='#define CONFIG_LIBAVFORMAT 1'
6964 echores "$_libavformat"
6966 echocheck "FFmpeg libpostproc"
6967 if test "$_libpostproc" = auto ; then
6968 _libpostproc=no
6969 cat > $TMPC << EOF
6970 #include <inttypes.h>
6971 #include <libpostproc/postprocess.h>
6972 int main(void) { pp_get_mode_by_name_and_quality("de", 0); return 0; }
6974 if $_pkg_config --exists libpostproc ; then
6975 _inc_libpostproc=$($_pkg_config --cflags libpostproc)
6976 _ld_tmp=$($_pkg_config --libs libpostproc)
6977 cc_check $_inc_libpostproc $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libpostproc" \
6978 && _libpostproc=yes
6979 elif cc_check -lpostproc $_ld_lm ; then
6980 extra_ldflags="$extra_ldflags -lpostproc"
6981 _libpostproc=yes
6984 def_libpostproc='#undef CONFIG_LIBPOSTPROC'
6985 test "$_libpostproc" = yes && def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
6986 echores "$_libpostproc"
6988 echocheck "FFmpeg libswscale"
6989 if test "$_libswscale" = auto ; then
6990 _libswscale=no
6991 cat > $TMPC << EOF
6992 #include <libswscale/swscale.h>
6993 int main(void) { sws_scale(0, 0, 0, 0, 0, 0, 0); return 0; }
6995 if $_pkg_config --exists libswscale ; then
6996 _inc_libswscale=$($_pkg_config --cflags libswscale)
6997 _ld_tmp=$($_pkg_config --libs libswscale)
6998 cc_check $_inc_libswscale $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libswscale" \
6999 && _libswscale=yes
7000 elif cc_check -lswscale ; then
7001 extra_ldflags="$extra_ldflags -lswscale"
7002 _libswscale=yes
7005 def_libswscale='#undef CONFIG_LIBSWSCALE'
7006 test "$_libswscale" = yes && def_libswscale='#define CONFIG_LIBSWSCALE 1'
7007 echores "$_libswscale"
7009 def_libswscale_internals="#undef CONFIG_LIBSWSCALE_INTERNALS"
7010 if ! test -z "$_ffmpeg_source" ; then
7011 test "$_libswscale" = yes && def_libswscale_internals="#define CONFIG_LIBSWSCALE_INTERNALS 1" && _libswscale_internals=yes
7014 def_libavcodec_internals="#undef CONFIG_LIBAVCODEC_INTERNALS"
7015 if ! test -z "$_ffmpeg_source" ; then
7016 test "$_libavcodec" = yes && def_libavcodec_internals="#define CONFIG_LIBAVCODEC_INTERNALS 1" && _libavcodec_internals=yes
7019 echocheck "libdv-0.9.5+"
7020 if test "$_libdv" = auto ; then
7021 _libdv=no
7022 cat > $TMPC <<EOF
7023 #include <libdv/dv.h>
7024 int main(void) { dv_encoder_t* enc=dv_encoder_new(1,1,1); return 0; }
7026 cc_check -ldv $_ld_pthread $_ld_lm && _libdv=yes
7028 if test "$_libdv" = yes ; then
7029 def_libdv='#define CONFIG_LIBDV095 1'
7030 extra_ldflags="$extra_ldflags -ldv"
7031 codecmodules="libdv $codecmodules"
7032 else
7033 def_libdv='#undef CONFIG_LIBDV095'
7034 nocodecmodules="libdv $nocodecmodules"
7036 echores "$_libdv"
7039 echocheck "Xvid"
7040 if test "$_xvid" = auto ; then
7041 _xvid=no
7042 cat > $TMPC << EOF
7043 #include <xvid.h>
7044 int main(void) { xvid_global(0, 0, 0, 0); return 0; }
7046 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
7047 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
7048 done
7051 if test "$_xvid" = yes ; then
7052 def_xvid='#define CONFIG_XVID4 1'
7053 codecmodules="xvid $codecmodules"
7054 else
7055 def_xvid='#undef CONFIG_XVID4'
7056 nocodecmodules="xvid $nocodecmodules"
7058 echores "$_xvid"
7060 echocheck "x264"
7061 if test "$_x264" = auto ; then
7062 cat > $TMPC << EOF
7063 #include <inttypes.h>
7064 #include <x264.h>
7065 #if X264_BUILD < 89
7066 #error We do not support old versions of x264. Get the latest from git.
7067 #endif
7068 int main(void) { x264_encoder_open((void*)0); return 0; }
7070 _x264=no
7071 for _ld_x264 in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
7072 cc_check $_ld_x264 && libs_mencoder="$libs_mencoder $_ld_x264" && _x264=yes && break
7073 done
7076 if test "$_x264" = yes ; then
7077 def_x264='#define CONFIG_X264 1'
7078 codecmodules="x264 $codecmodules"
7079 else
7080 def_x264='#undef CONFIG_X264'
7081 nocodecmodules="x264 $nocodecmodules"
7083 echores "$_x264"
7085 echocheck "libnut"
7086 if test "$_libnut" = auto ; then
7087 cat > $TMPC << EOF
7088 #include <stdio.h>
7089 #include <stdlib.h>
7090 #include <inttypes.h>
7091 #include <libnut.h>
7092 nut_context_tt * nut;
7093 int main(void) { (void)nut_error(0); return 0; }
7095 _libnut=no
7096 cc_check -lnut && _libnut=yes
7099 if test "$_libnut" = yes ; then
7100 def_libnut='#define CONFIG_LIBNUT 1'
7101 extra_ldflags="$extra_ldflags -lnut"
7102 else
7103 def_libnut='#undef CONFIG_LIBNUT'
7105 echores "$_libnut"
7107 # These VO checks must be done after libavcodec/libswscale one
7108 echocheck "/dev/mga_vid"
7109 if test "$_mga" = auto ; then
7110 _mga=no
7111 test -c /dev/mga_vid && _mga=yes
7113 if test "$_mga" = yes ; then
7114 if test "$_libswscale_internals" = yes ; then
7115 def_mga='#define CONFIG_MGA 1'
7116 vomodules="mga $vomodules"
7117 else
7118 res_comment="libswscale internal headers are required by mga, sorry"
7119 def_mga='#undef CONFIG_MGA'
7120 novomodules="mga $novomodules"
7122 else
7123 def_mga='#undef CONFIG_MGA'
7124 novomodules="mga $novomodules"
7126 echores "$_mga"
7129 echocheck "xmga"
7130 if test "$_xmga" = auto ; then
7131 _xmga=no
7132 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
7134 if test "$_xmga" = yes ; then
7135 if test "$_libswscale_internals" = yes ; then
7136 def_xmga='#define CONFIG_XMGA 1'
7137 vomodules="xmga $vomodules"
7138 else
7139 res_comment="libswscale internal headers are required by mga, sorry"
7140 def_xmga='#undef CONFIG_XMGA'
7141 novomodules="xmga $novomodules"
7143 else
7144 def_xmga='#undef CONFIG_XMGA'
7145 novomodules="xmga $novomodules"
7147 echores "$_xmga"
7149 echocheck "zr"
7150 if test "$_zr" = auto ; then
7151 #36067's seem to identify themselves as 36057PQC's, so the line
7152 #below should work for 36067's and 36057's.
7153 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc/pci ; then
7154 _zr=yes
7155 else
7156 _zr=no
7159 if test "$_zr" = yes ; then
7160 if test "$_libavcodec_internals" = yes ; then
7161 def_zr='#define CONFIG_ZR 1'
7162 vomodules="zr zr2 $vomodules"
7163 else
7164 res_comment="libavcodec internal headers are required by zr, sorry"
7165 novomodules="zr $novomodules"
7166 def_zr='#undef CONFIG_ZR'
7168 else
7169 def_zr='#undef CONFIG_ZR'
7170 novomodules="zr zr2 $novomodules"
7172 echores "$_zr"
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 -D__STDC_CONSTANT_MACROS -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 FREETYPE = $_freetype
7920 FTP = $_ftp
7921 GIF = $_gif
7922 GGI = $_ggi
7923 GL = $_gl
7924 GL_WIN32 = $_gl_win32
7925 GL_X11 = $_gl_x11
7926 GL_SDL = $_gl_sdl
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 LIBASS = $_ass
7939 LIBBS2B = $_libbs2b
7940 LIBDCA = $_libdca
7941 LIBDV = $_libdv
7942 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
7943 LIBLZO = $_liblzo
7944 LIBMAD = $_mad
7945 LIBMENU = $_menu
7946 LIBMENU_DVBIN = $_menu_dvbin
7947 LIBMPEG2 = $_libmpeg2
7948 LIBNEMESI = $_nemesi
7949 LIBNUT = $_libnut
7950 LIBSMBCLIENT = $_smb
7951 LIBTHEORA = $_theora
7952 LIRC = $_lirc
7953 LIVE555 = $_live
7954 MACOSX_FINDER = $_macosx_finder
7955 MD5SUM = $_md5sum
7956 MGA = $_mga
7957 MNG = $_mng
7958 MP3LAME = $_mp3lame
7959 MP3LIB = $_mp3lib
7960 MUSEPACK = $_musepack
7961 NAS = $_nas
7962 NATIVE_RTSP = $_native_rtsp
7963 NETWORK = $_network
7964 OPENAL = $_openal
7965 OSS = $_ossaudio
7966 PE_EXECUTABLE = $_pe_executable
7967 PNG = $_png
7968 PNM = $_pnm
7969 PRIORITY = $_priority
7970 PULSE = $_pulse
7971 PVR = $_pvr
7972 QTX_CODECS = $_qtx
7973 QTX_CODECS_WIN32 = $_qtx_codecs_win32
7974 QTX_EMULATION = $_qtx_emulation
7975 QUARTZ = $_quartz
7976 RADIO=$_radio
7977 RADIO_CAPTURE=$_radio_capture
7978 REAL_CODECS = $_real
7979 S3FB = $_s3fb
7980 SDL = $_sdl
7981 SPEEX = $_speex
7982 STREAM_CACHE = $_stream_cache
7983 SGIAUDIO = $_sgiaudio
7984 SUNAUDIO = $_sunaudio
7985 SVGA = $_svga
7986 TDFXFB = $_tdfxfb
7987 TDFXVID = $_tdfxvid
7988 TGA = $_tga
7989 TOOLAME=$_toolame
7990 TREMOR_INTERNAL = $_tremor_internal
7991 TV = $_tv
7992 TV_BSDBT848 = $_tv_bsdbt848
7993 TV_DSHOW = $_tv_dshow
7994 TV_V4L = $_tv_v4l
7995 TV_V4L1 = $_tv_v4l1
7996 TV_V4L2 = $_tv_v4l2
7997 TWOLAME=$_twolame
7998 UNRAR_EXEC = $_unrar_exec
7999 V4L2 = $_v4l2
8000 VCD = $_vcd
8001 VDPAU = $_vdpau
8002 VESA = $_vesa
8003 VIDIX = $_vidix
8004 VIDIX_PCIDB = $_vidix_pcidb_val
8005 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
8006 VIDIX_IVTV=$_vidix_drv_ivtv
8007 VIDIX_MACH64=$_vidix_drv_mach64
8008 VIDIX_MGA=$_vidix_drv_mga
8009 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
8010 VIDIX_NVIDIA=$_vidix_drv_nvidia
8011 VIDIX_PM2=$_vidix_drv_pm2
8012 VIDIX_PM3=$_vidix_drv_pm3
8013 VIDIX_RADEON=$_vidix_drv_radeon
8014 VIDIX_RAGE128=$_vidix_drv_rage128
8015 VIDIX_S3=$_vidix_drv_s3
8016 VIDIX_SH_VEU=$_vidix_drv_sh_veu
8017 VIDIX_SIS=$_vidix_drv_sis
8018 VIDIX_UNICHROME=$_vidix_drv_unichrome
8019 VORBIS = $_vorbis
8020 VSTREAM = $_vstream
8021 WII = $_wii
8022 WIN32DLL = $_win32dll
8023 WIN32WAVEOUT = $_win32waveout
8024 WIN32_EMULATION = $_win32_emulation
8025 WINVIDIX = $winvidix
8026 X11 = $_x11
8027 X264 = $_x264
8028 XANIM_CODECS = $_xanim
8029 XMGA = $_xmga
8030 XMMS_PLUGINS = $_xmms
8031 XV = $_xv
8032 XVID4 = $_xvid
8033 XVIDIX = $xvidix
8034 XVMC = $_xvmc
8035 XVR100 = $_xvr100
8036 YUV4MPEG = $_yuv4mpeg
8037 ZR = $_zr
8039 # FFmpeg
8040 LIBAVUTIL = $_libavutil
8041 LIBAVCODEC = $_libavcodec
8042 LIBAVFORMAT = $_libavformat
8043 LIBPOSTPROC = $_libpostproc
8044 LIBSWSCALE = $_libswscale
8045 LIBAVCODEC_INTERNALS = $_libavcodec_internals
8046 LIBSWSCALE_INTERNALS = $_libswscale_internals
8047 FFMPEG_SOURCE_PATH = $_ffmpeg_source
8049 RANLIB = $_ranlib
8050 YASM = $_yasm
8051 YASMFLAGS = $YASMFLAGS
8053 # Some FFmpeg codecs depend on these. Enable them unconditionally for now.
8054 CONFIG_AANDCT = yes
8055 CONFIG_FFT = yes
8056 CONFIG_GOLOMB = yes
8057 CONFIG_H264DSP = yes
8058 CONFIG_LPC = yes
8059 CONFIG_MDCT = yes
8060 CONFIG_RDFT = yes
8062 CONFIG_BZLIB = $bzlib
8063 CONFIG_ENCODERS = yes
8064 CONFIG_GPL = yes
8065 CONFIG_MLIB = $_mlib
8066 CONFIG_MUXERS = $_mencoder
8067 CONFIG_VDPAU = $_vdpau
8068 CONFIG_XVMC = $_xvmc
8069 CONFIG_ZLIB = $_zlib
8071 HAVE_PTHREADS = $_pthreads
8072 HAVE_SHM = $_shm
8073 HAVE_W32THREADS = $_w32threads
8074 HAVE_YASM = $have_yasm
8078 #############################################################################
8080 ff_config_enable () {
8081 list=$(echo $1 | tr '[a-z]' '[A-Z]')
8082 item=$(echo $2 | tr '[a-z]' '[A-Z]')
8083 _nprefix=$3;
8084 test -z "$_nprefix" && _nprefix='CONFIG'
8085 for part in $list; do
8086 if $(echo $item | grep -q -E "(^| )$part($| )"); then
8087 echo "#define ${_nprefix}_$part 1"
8088 else
8089 echo "#define ${_nprefix}_$part 0"
8091 done
8094 echo "Creating config.h"
8095 cat > $TMPH << EOF
8096 /*----------------------------------------------------------------------------
8097 ** This file has been automatically generated by configure any changes in it
8098 ** will be lost when you run configure again.
8099 ** Instead of modifying definitions here, use the --enable/--disable options
8100 ** of the configure script! See ./configure --help for details.
8101 *---------------------------------------------------------------------------*/
8103 #ifndef MPLAYER_CONFIG_H
8104 #define MPLAYER_CONFIG_H
8106 /* Undefine this if you do not want to select mono audio (left or right)
8107 with a stereo MPEG layer 2/3 audio stream. The command line option
8108 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
8109 right-only), with 0 being the default.
8111 #define CONFIG_FAKE_MONO 1
8113 /* set up audio OUTBURST. Do not change this! */
8114 #define OUTBURST 512
8116 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
8117 #undef FAST_OSD
8118 #undef FAST_OSD_TABLE
8120 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
8121 #define MPEG12_POSTPROC 1
8122 #define ATTRIBUTE_ALIGNED_MAX 16
8126 #define CONFIGURATION "$_configuration"
8128 #define MPLAYER_DATADIR "$_datadir"
8129 #define MPLAYER_CONFDIR "$_confdir"
8130 #define MPLAYER_LIBDIR "$_libdir"
8131 #define MPLAYER_LOCALEDIR "$_localedir"
8133 $def_translation
8135 /* definitions needed by included libraries */
8136 #define HAVE_INTTYPES_H 1
8137 /* libmpeg2 + FFmpeg */
8138 $def_fast_inttypes
8139 /* libdvdcss */
8140 #define HAVE_ERRNO_H 1
8141 /* libdvdcss + libdvdread */
8142 #define HAVE_LIMITS_H 1
8143 /* libdvdcss + libfaad2 */
8144 #define HAVE_UNISTD_H 1
8145 /* libfaad2 + libdvdread */
8146 #define STDC_HEADERS 1
8147 #define HAVE_MEMCPY 1
8148 /* libfaad2 */
8149 #define HAVE_STRING_H 1
8150 #define HAVE_STRINGS_H 1
8151 #define HAVE_SYS_STAT_H 1
8152 #define HAVE_SYS_TYPES_H 1
8153 /* libdvdnav */
8154 #define READ_CACHE_TRACE 0
8155 /* libdvdread */
8156 #define HAVE_DLFCN_H 1
8157 $def_dvdcss
8160 /* system headers */
8161 $def_alloca_h
8162 $def_alsa_asoundlib_h
8163 $def_altivec_h
8164 $def_malloc_h
8165 $def_mman_h
8166 $def_mman_has_map_failed
8167 $def_soundcard_h
8168 $def_sys_asoundlib_h
8169 $def_sys_soundcard_h
8170 $def_sys_sysinfo_h
8171 $def_termios_h
8172 $def_termios_sys_h
8173 $def_winsock2_h
8176 /* system functions */
8177 $def_gethostbyname2
8178 $def_gettimeofday
8179 $def_glob
8180 $def_langinfo
8181 $def_lrintf
8182 $def_map_memalign
8183 $def_memalign
8184 $def_nanosleep
8185 $def_posix_select
8186 $def_select
8187 $def_setenv
8188 $def_setmode
8189 $def_shm
8190 $def_strsep
8191 $def_swab
8192 $def_sysi86
8193 $def_sysi86_iv
8194 $def_termcap
8195 $def_termios
8196 $def_vsscanf
8199 /* system-specific features */
8200 $def_asmalign_pot
8201 $def_builtin_expect
8202 $def_dl
8203 $def_dos_paths
8204 $def_extern_asm
8205 $def_extern_prefix
8206 $def_iconv
8207 $def_kstat
8208 $def_macosx_bundle
8209 $def_macosx_finder
8210 $def_maemo
8211 $def_named_asm_args
8212 $def_priority
8213 $def_quicktime
8214 $def_restrict_keyword
8215 $def_rtc
8216 $def_unrar_exec
8219 /* configurable options */
8220 $def_charset
8221 $def_crash_debug
8222 $def_debug
8223 $def_dynamic_plugins
8224 $def_fastmemcpy
8225 $def_menu
8226 $def_runtime_cpudetection
8227 $def_sighandler
8228 $def_sortsub
8229 $def_stream_cache
8230 $def_pthread_cache
8233 /* CPU stuff */
8234 #define __CPU__ $iproc
8235 $def_words_endian
8236 $def_bigendian
8237 $(ff_config_enable "$arch_all" "$arch" "ARCH")
8238 $(ff_config_enable "$subarch_all" "$subarch" "ARCH")
8239 $(ff_config_enable "$cpuexts_all" "$cpuexts" "HAVE")
8242 /* DVD/VCD/CD */
8243 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
8244 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
8245 $def_bsdi_dvd
8246 $def_cddb
8247 $def_cdio
8248 $def_cdparanoia
8249 $def_cdrom
8250 $def_dvd
8251 $def_dvd_bsd
8252 $def_dvd_darwin
8253 $def_dvd_linux
8254 $def_dvd_openbsd
8255 $def_dvdio
8256 $def_dvdnav
8257 $def_dvdread
8258 $def_hpux_scsi_h
8259 $def_libcdio
8260 $def_sol_scsi_h
8261 $def_vcd
8264 /* codec libraries */
8265 $def_faac
8266 $def_faad
8267 $def_faad_internal
8268 $def_liba52
8269 $def_libdca
8270 $def_libdv
8271 $def_liblzo
8272 $def_libmpeg2
8273 $def_mad
8274 $def_mp3lame
8275 $def_mp3lame_preset
8276 $def_mp3lame_preset_medium
8277 $def_mp3lib
8278 $def_musepack
8279 $def_speex
8280 $def_theora
8281 $def_toolame
8282 $def_tremor
8283 $def_twolame
8284 $def_vorbis
8285 $def_x264
8286 $def_xvid
8287 $def_zlib
8289 $def_libnut
8292 /* binary codecs */
8293 $def_qtx
8294 $def_qtx_win32
8295 $def_real
8296 $def_win32_loader
8297 $def_win32dll
8298 $def_xanim
8299 $def_xmms
8300 #define BINARY_CODECS_PATH "$_codecsdir"
8301 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
8304 /* Audio output drivers */
8305 $def_alsa
8306 $def_alsa1x
8307 $def_alsa5
8308 $def_alsa9
8309 $def_arts
8310 $def_coreaudio
8311 $def_dart
8312 $def_esd
8313 $def_esd_latency
8314 $def_jack
8315 $def_kai
8316 $def_nas
8317 $def_openal
8318 $def_openal_h
8319 $def_ossaudio
8320 $def_ossaudio_devdsp
8321 $def_ossaudio_devmixer
8322 $def_pulse
8323 $def_sgiaudio
8324 $def_sunaudio
8325 $def_win32waveout
8327 $def_ladspa
8328 $def_libbs2b
8331 /* input */
8332 $def_apple_ir
8333 $def_apple_remote
8334 $def_ioctl_bt848_h_name
8335 $def_ioctl_meteor_h_name
8336 $def_joystick
8337 $def_lirc
8338 $def_lircc
8339 $def_pvr
8340 $def_radio
8341 $def_radio_bsdbt848
8342 $def_radio_capture
8343 $def_radio_v4l
8344 $def_radio_v4l2
8345 $def_tv
8346 $def_tv_bsdbt848
8347 $def_tv_dshow
8348 $def_tv_v4l
8349 $def_tv_v4l1
8350 $def_tv_v4l2
8353 /* font stuff */
8354 $def_ass
8355 $def_bitmap_font
8356 $def_enca
8357 $def_fontconfig
8358 $def_freetype
8359 $def_fribidi
8362 /* networking */
8363 $def_closesocket
8364 $def_ftp
8365 $def_inet6
8366 $def_inet_aton
8367 $def_inet_pton
8368 $def_live
8369 $def_nemesi
8370 $def_network
8371 $def_smb
8372 $def_socklen_t
8373 $def_vstream
8376 /* libvo options */
8377 $def_3dfx
8378 $def_aa
8379 $def_bl
8380 $def_caca
8381 $def_corevideo
8382 $def_dfbmga
8383 $def_dga
8384 $def_dga1
8385 $def_dga2
8386 $def_direct3d
8387 $def_directfb
8388 $def_directfb_version
8389 $def_directx
8390 $def_dvb
8391 $def_dvbin
8392 $def_dxr2
8393 $def_dxr3
8394 $def_fbdev
8395 $def_ggi
8396 $def_ggiwmh
8397 $def_gif
8398 $def_gif_4
8399 $def_gif_tvt_hack
8400 $def_gl
8401 $def_gl_win32
8402 $def_gl_x11
8403 $def_gl_sdl
8404 $def_matrixview
8405 $def_ivtv
8406 $def_jpeg
8407 $def_kva
8408 $def_md5sum
8409 $def_mga
8410 $def_mng
8411 $def_png
8412 $def_pnm
8413 $def_quartz
8414 $def_s3fb
8415 $def_sdl
8416 $def_sdl_sdl_h
8417 $def_svga
8418 $def_tdfxfb
8419 $def_tdfxvid
8420 $def_tga
8421 $def_v4l2
8422 $def_vdpau
8423 $def_vesa
8424 $def_vidix
8425 $def_vidix_drv_cyberblade
8426 $def_vidix_drv_ivtv
8427 $def_vidix_drv_mach64
8428 $def_vidix_drv_mga
8429 $def_vidix_drv_mga_crtc2
8430 $def_vidix_drv_nvidia
8431 $def_vidix_drv_pm3
8432 $def_vidix_drv_radeon
8433 $def_vidix_drv_rage128
8434 $def_vidix_drv_s3
8435 $def_vidix_drv_sh_veu
8436 $def_vidix_drv_sis
8437 $def_vidix_drv_unichrome
8438 $def_vidix_pfx
8439 $def_vm
8440 $def_wii
8441 $def_x11
8442 $def_xdpms
8443 $def_xf86keysym
8444 $def_xinerama
8445 $def_xmga
8446 $def_xss
8447 $def_xv
8448 $def_xvmc
8449 $def_xvr100
8450 $def_yuv4mpeg
8451 $def_zr
8454 /* FFmpeg */
8455 $def_libavcodec
8456 $def_libavformat
8457 $def_libavutil
8458 $def_libpostproc
8459 $def_libswscale
8460 $def_libavcodec_internals
8461 $def_libswscale_internals
8463 #define CONFIG_DECODERS 1
8464 #define CONFIG_ENCODERS 1
8465 #define CONFIG_DEMUXERS 1
8466 $def_muxers
8468 $def_arpa_inet_h
8469 $def_bswap
8470 $def_bzlib
8471 $def_dcbzl
8472 $def_exp2
8473 $def_exp2f
8474 $def_fast_64bit
8475 $def_fast_unaligned
8476 $def_llrint
8477 $def_log2
8478 $def_log2f
8479 $def_lrint
8480 $def_memalign_hack
8481 $def_mlib
8482 $def_mkstemp
8483 $def_posix_memalign
8484 $def_pthreads
8485 $def_round
8486 $def_roundf
8487 $def_ten_operands
8488 $def_threads
8489 $def_truncf
8490 $def_xform_asm
8491 $def_yasm
8493 #define CONFIG_FASTDIV 0
8494 #define CONFIG_FFSERVER 0
8495 #define CONFIG_GPL 1
8496 #define CONFIG_GRAY 0
8497 #define CONFIG_HARDCODED_TABLES 0
8498 #define CONFIG_LIBVORBIS 0
8499 #define CONFIG_POWERPC_PERF 0
8500 #define CONFIG_SMALL 0
8501 #define CONFIG_SWSCALE_ALPHA 1
8503 #define HAVE_ATTRIBUTE_PACKED 1
8504 #define HAVE_GETHRTIME 0
8505 #define HAVE_INLINE_ASM 1
8506 #define HAVE_LDBRX 0
8507 #define HAVE_POLL_H 1
8508 #define HAVE_PPC4XX 0
8509 #define HAVE_VFP_ARGS 1
8510 #define HAVE_VIRTUALALLOC 0
8512 /* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */
8513 #define CONFIG_AANDCT 1
8514 #define CONFIG_DCT 1
8515 #define CONFIG_DWT 1
8516 #define CONFIG_FFT 1
8517 #define CONFIG_GOLOMB 1
8518 #define CONFIG_H264DSP 1
8519 #define CONFIG_LPC 1
8520 #define CONFIG_MDCT 1
8521 #define CONFIG_RDFT 1
8523 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
8524 $def_ebx_available
8525 #ifndef MP_DEBUG
8526 #define HAVE_EBP_AVAILABLE 1
8527 #else
8528 #define HAVE_EBP_AVAILABLE 0
8529 #endif
8531 #define CONFIG_H263_VAAPI_HWACCEL 0
8532 #define CONFIG_MPEG2_VAAPI_HWACCEL 0
8533 #define CONFIG_MPEG4_VAAPI_HWACCEL 0
8534 #define CONFIG_H264_VAAPI_HWACCEL 0
8535 #define CONFIG_VC1_VAAPI_HWACCEL 0
8536 #define CONFIG_WMV3_VAAPI_HWACCEL 0
8538 #endif /* MPLAYER_CONFIG_H */
8541 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
8542 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
8544 #############################################################################
8546 ./version.sh `$_cc -dumpversion`
8548 cat << EOF
8550 Config files successfully generated by ./configure $_configuration !
8552 Install prefix: $_prefix
8553 Data directory: $_datadir
8554 Config direct.: $_confdir
8556 Byte order: $_byte_order
8557 Optimizing for: $_optimizing
8559 Languages:
8560 Messages (in addition to English): $language_msg
8561 Manual pages: $language_man
8562 Documentation: $language_doc
8564 Enabled optional drivers:
8565 Input: $inputmodules
8566 Codecs: $codecmodules
8567 Audio output: $aomodules
8568 Video output: $vomodules
8570 Disabled optional drivers:
8571 Input: $_noinputmodules
8572 Codecs: $nocodecmodules
8573 Audio output: $noaomodules
8574 Video output: $novomodules
8576 'config.h' and 'config.mak' contain your configuration options.
8577 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
8578 compile *** DO NOT REPORT BUGS if you tweak these files ***
8580 'make' will now compile MPlayer and 'make install' will install it.
8581 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
8586 if test "$_mtrr" = yes ; then
8587 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$doc_lang/video.html#mtrr)"
8588 echo
8591 if ! x86_32; then
8592 cat <<EOF
8593 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
8594 operating system ($system_name). You may encounter a few files that cannot
8595 be played due to missing open source video/audio codec support.
8601 cat <<EOF
8602 Check $TMPLOG if you wonder why an autodetection failed (make sure
8603 development headers/packages are installed).
8605 NOTE: The --enable-* parameters unconditionally force options on, completely
8606 skipping autodetection. This behavior is unlike what you may be used to from
8607 autoconf-based configure scripts that can decide to override you. This greater
8608 level of control comes at a price. You may have to provide the correct compiler
8609 and linker flags yourself.
8610 If you used one of these options (except --enable-menu and similar ones that
8611 turn on internal features) and experience a compilation or linking failure,
8612 make sure you have passed the necessary compiler/linker flags to configure.
8614 If you suspect a bug, please read DOCS/HTML/$doc_lang/bugreports.html.
8618 if test "$_warn_CFLAGS" = yes; then
8619 cat <<EOF
8621 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
8622 but:
8624 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
8626 It is strongly recommended to let MPlayer choose the correct CFLAGS!
8627 To do so, execute 'CFLAGS= ./configure <options>'
8632 # Last move:
8633 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP" "$TMPH"