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