Merge remote branch 'mplayer/master'
[mplayer/glamo.git] / configure
blob37a846bb0f376c47a929a5a6394e1a5ee254c86d
1 #! /bin/sh
3 # Original version (C) 2000 Pontscho/fresh!mindworkz
4 # pontscho@makacs.poliod.hu
6 # History / Contributors: Check the Subversion log.
8 # Cleanups all over the place (c) 2001 pl
11 # This configure script is *not* autoconf-based and has different semantics.
12 # It attempts to autodetect all settings and options where possible. It is
13 # possible to override autodetection with the --enable-option/--disable-option
14 # command line parameters. --enable-option forces the option on skipping
15 # autodetection. Yes, this means that compilation may fail and yes, this is not
16 # how autoconf-based configure scripts behave.
18 # configure generates a series of configuration files:
19 # - config.h contains #defines that are used in the C code.
20 # - config.mak is included from the Makefiles.
22 # If you want to add a new check for $feature, here is a simple skeleton:
24 # echocheck "$feature"
25 # if test "$_feature" = auto; then
26 # cat > $TMPC << EOF
27 # #include <feature.h>
28 # int main(void) { return 0; }
29 # EOF
30 # _feature=no
31 # cc_check && _feature=yes
32 # fi
33 # if test "$_feature" = yes ; then
34 # def_feature='#define CONFIG_FEATURE 1'
35 # else
36 # def_feature='#undef CONFIG_FEATURE'
37 # fi
38 # echores "$_feature"
40 # Furthermore you need to add the variable _feature to the list of default
41 # settings and set it to one of yes/no/auto. Also add appropriate
42 # --enable-feature/--disable-feature command line options.
43 # The results of the check should be written to config.h and config.mak
44 # at the end of this script. The variable names used for this should be
45 # uniform, i.e. if the option is named 'feature':
47 # _feature : should have a value of yes/no/auto
48 # def_feature : '#define ... 1' or '#undef ...' for conditional compilation
49 # _ld_feature : '-L/path/dir -lfeature' GCC options
51 #############################################################################
53 # Prevent locale nonsense from breaking basic text processing utils
54 export LC_ALL=C
56 # Store the configure line that was used
57 _configuration="$*"
59 # Prefer these macros to full length text !
60 # These macros only return an error code - NO display is done
61 compile_check() {
62 echo >> "$TMPLOG"
63 cat "$1" >> "$TMPLOG"
64 echo >> "$TMPLOG"
65 echo "$_cc $CFLAGS $extra_cflags $_ld_static $extra_ldflags $libs_mplayer $libs_mencoder -o $TMPEXE $@" >> "$TMPLOG"
66 rm -f "$TMPEXE"
67 $_cc $CFLAGS $extra_cflags $_ld_static $extra_ldflags $libs_mplayer $libs_mencoder -o "$TMPEXE" "$@" >> "$TMPLOG" 2>&1
68 TMPRES="$?"
69 echo >> "$TMPLOG"
70 echo >> "$TMPLOG"
71 return "$TMPRES"
74 cc_check() {
75 compile_check $TMPC $@
78 cxx_check() {
79 compile_check $TMPCPP $@ -lstdc++
82 yasm_check() {
83 echo >> "$TMPLOG"
84 cat "$TMPS" >> "$TMPLOG"
85 echo >> "$TMPLOG"
86 echo "$_yasm $YASMFLAGS -o $TMPEXE $TMPS $@" >> "$TMPLOG"
87 rm -f "$TMPEXE"
88 $_yasm $YASMFLAGS -o "$TMPEXE" "$TMPS" "$@" >> "$TMPLOG" 2>&1
89 TMPRES="$?"
90 echo >> "$TMPLOG"
91 echo >> "$TMPLOG"
92 return "$TMPRES"
95 tmp_run() {
96 "$TMPEXE" >> "$TMPLOG" 2>&1
99 # Display error message, flushes tempfile, exit
100 die () {
101 echo
102 echo "Error: $@" >&2
103 echo >&2
104 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP"
105 echo "Check \"$TMPLOG\" if you do not understand why it failed."
106 exit 1
109 # OS test booleans functions
110 issystem() {
111 test "$(echo $system_name | tr A-Z a-z)" = "$(echo $1 | tr A-Z a-z)"
113 aix() { issystem "AIX"; }
114 amigaos() { issystem "AmigaOS"; }
115 beos() { issystem "BEOS"; }
116 bsdos() { issystem "BSD/OS"; }
117 cygwin() { issystem "CYGWIN"; }
118 darwin() { issystem "Darwin"; }
119 dragonfly() { issystem "DragonFly"; }
120 freebsd() { issystem "FreeBSD" || issystem "GNU/kFreeBSD"; }
121 gnu() { issystem "GNU"; }
122 hpux() { issystem "HP-UX"; }
123 irix() { issystem "IRIX"; }
124 linux() { issystem "Linux"; }
125 mingw32() { issystem "MINGW32"; }
126 morphos() { issystem "MorphOS"; }
127 netbsd() { issystem "NetBSD"; }
128 openbsd() { issystem "OpenBSD"; }
129 os2() { issystem "OS/2"; }
130 qnx() { issystem "QNX"; }
131 sunos() { issystem "SunOS"; }
132 win32() { cygwin || mingw32; }
134 # arch test boolean functions
135 # x86/x86pc is used by QNX
136 x86_32() {
137 case "$host_arch" in
138 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686) return 0 ;;
139 *) return 1 ;;
140 esac
143 x86_64() {
144 case "$host_arch" in
145 x86_64|amd64) return 0 ;;
146 *) return 1 ;;
147 esac
150 x86() {
151 x86_32 || x86_64
154 ppc() {
155 case "$host_arch" in
156 ppc|ppc64|powerpc|powerpc64) return 0;;
157 *) return 1;;
158 esac
161 alpha() {
162 case "$host_arch" in
163 alpha*) return 0;;
164 *) return 1;;
165 esac
168 arm() {
169 case "$host_arch" in
170 arm) return 0;;
171 *) return 1;;
172 esac
175 # Use this before starting a check
176 echocheck() {
177 echo "============ Checking for $@ ============" >> "$TMPLOG"
178 echo ${_echo_n} "Checking for $@ ... ${_echo_c}"
181 # Use this to echo the results of a check
182 echores() {
183 if test "$_res_comment" ; then
184 _res_comment="($_res_comment)"
186 echo "Result is: $@ $_res_comment" >> "$TMPLOG"
187 echo "##########################################" >> "$TMPLOG"
188 echo "" >> "$TMPLOG"
189 echo "$@ $_res_comment"
190 _res_comment=""
192 #############################################################################
194 # Check how echo works in this /bin/sh
195 case $(echo -n) in
196 -n) _echo_n= _echo_c='\c' ;; # SysV echo
197 *) _echo_n='-n ' _echo_c= ;; # BSD echo
198 esac
200 msg_lang_all=$(echo help/help_mp-??.h help/help_mp-??_??.h | sed -e "s:help/help_mp-\(..\).h:\1:g" -e "s:help/help_mp-\(.....\).h:\1:g")
201 man_lang_all=$(echo DOCS/man/??/mplayer.1 DOCS/man/??_??/mplayer.1 | sed -e "s:DOCS/man/\(..\)/mplayer.1:\1:g" -e "s:DOCS/man/\(.._..\)/mplayer.1:\1:g")
202 doc_lang_all=$(echo DOCS/xml/??/ DOCS/xml/??_??/ | sed -e "s:DOCS/xml/\(..\)/:\1:g" -e "s:DOCS/xml/\(.._..\)/:\1:g")
204 show_help(){
205 cat << EOF
206 Usage: $0 [OPTIONS]...
208 Configuration:
209 -h, --help display this help and exit
211 Installation directories:
212 --prefix=DIR prefix directory for installation [/usr/local]
213 --bindir=DIR directory for installing binaries [PREFIX/bin]
214 --datadir=DIR directory for installing machine independent
215 data files (skins, etc) [PREFIX/share/mplayer]
216 --mandir=DIR directory for installing man pages [PREFIX/share/man]
217 --confdir=DIR directory for installing configuration files
218 [PREFIX/etc/mplayer]
219 --libdir=DIR directory for object code libraries [PREFIX/lib]
220 --codecsdir=DIR directory for binary codecs [LIBDIR/codecs]
221 --win32codecsdir=DIR directory for Windows DLLs [LIBDIR/codecs]
222 --xanimcodecsdir=DIR directory for XAnim codecs [LIBDIR/codecs]
223 --realcodecsdir=DIR directory for RealPlayer codecs [LIBDIR/codecs]
225 Optional features:
226 --disable-mencoder disable MEncoder (A/V encoder) compilation [enable]
227 --disable-mplayer disable MPlayer compilation [enable]
228 --disable-largefiles disable support for files > 2GB [enable]
229 --enable-linux-devfs set default devices to devfs [disable]
230 --enable-termcap use termcap database for key codes [autodetect]
231 --enable-termios use termios database for key codes [autodetect]
232 --disable-iconv disable iconv for encoding conversion [autodetect]
233 --disable-langinfo do not use langinfo [autodetect]
234 --enable-lirc enable LIRC (remote control) support [autodetect]
235 --enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect]
236 --enable-joystick enable joystick support [disable]
237 --enable-apple-remote enable Apple Remote input (Mac OS X only) [autodetect]
238 --enable-apple-ir enable Apple IR Remote input (Linux only) [autodetect]
239 --disable-vm disable X video mode extensions [autodetect]
240 --disable-xf86keysym disable support for multimedia keys [autodetect]
241 --enable-radio enable radio interface [disable]
242 --enable-radio-capture enable radio capture (through PCI/line-in) [disable]
243 --disable-radio-v4l2 disable Video4Linux2 radio interface [autodetect]
244 --disable-radio-bsdbt848 disable BSD BT848 radio interface [autodetect]
245 --disable-tv disable TV interface (TV/DVB grabbers) [enable]
246 --disable-tv-v4l1 disable Video4Linux TV interface [autodetect]
247 --disable-tv-v4l2 disable Video4Linux2 TV interface [autodetect]
248 --disable-tv-bsdbt848 disable BSD BT848 interface [autodetect]
249 --disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
250 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
251 --disable-network disable networking [enable]
252 --enable-winsock2_h enable winsock2_h [autodetect]
253 --enable-smb enable Samba (SMB) input [autodetect]
254 --enable-live enable LIVE555 Streaming Media [autodetect]
255 --enable-nemesi enable Nemesi Streaming Media [autodetect]
256 --disable-vcd disable VCD support [autodetect]
257 --disable-dvdnav disable libdvdnav [autodetect]
258 --disable-dvdread disable libdvdread [autodetect]
259 --disable-dvdread-internal disable internal libdvdread [autodetect]
260 --disable-libdvdcss-internal disable internal libdvdcss [autodetect]
261 --disable-cdparanoia disable cdparanoia [autodetect]
262 --disable-cddb disable cddb [autodetect]
263 --disable-bitmap-font disable bitmap font support [enable]
264 --disable-freetype disable FreeType 2 font rendering [autodetect]
265 --disable-fontconfig disable fontconfig font lookup [autodetect]
266 --disable-unrarexec disable using of UnRAR executable [enabled]
267 --enable-menu enable OSD menu (not DVD menu) [disabled]
268 --disable-sortsub disable subtitle sorting [enabled]
269 --enable-fribidi enable the FriBiDi libs [autodetect]
270 --disable-enca disable ENCA charset oracle library [autodetect]
271 --disable-maemo disable maemo specific features [autodetect]
272 --enable-macosx-finder enable Mac OS X Finder invocation parameter
273 parsing [disabled]
274 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
275 --disable-inet6 disable IPv6 support [autodetect]
276 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
277 --disable-ftp disable FTP support [enabled]
278 --disable-vstream disable TiVo vstream client support [autodetect]
279 --disable-pthreads disable Posix threads support [autodetect]
280 --disable-w32threads disable Win32 threads support [autodetect]
281 --disable-ass disable internal SSA/ASS subtitle support [autodetect]
282 --enable-rpath enable runtime linker path for extra libs [disabled]
284 Codecs:
285 --enable-gif enable GIF support [autodetect]
286 --enable-png enable PNG input/output support [autodetect]
287 --enable-mng enable MNG input support [autodetect]
288 --enable-jpeg enable JPEG input/output support [autodetect]
289 --enable-libcdio enable libcdio support [autodetect]
290 --enable-liblzo enable liblzo support [autodetect]
291 --disable-win32dll disable Win32 DLL support [enabled]
292 --disable-qtx disable QuickTime codecs support [enabled]
293 --disable-xanim disable XAnim codecs support [enabled]
294 --disable-real disable RealPlayer codecs support [enabled]
295 --disable-xvid disable Xvid [autodetect]
296 --disable-x264 disable x264 [autodetect]
297 --disable-libnut disable libnut [autodetect]
298 --disable-libavutil disable libavutil [autodetect]
299 --disable-libavcodec disable libavcodec [autodetect]
300 --disable-libavformat disable libavformat [autodetect]
301 --disable-libpostproc disable libpostproc [autodetect]
302 --disable-libswscale disable libswscale [autodetect]
303 --disable-tremor-internal disable internal Tremor [enabled]
304 --enable-tremor-low enable lower accuracy internal Tremor [disabled]
305 --enable-tremor enable external Tremor [autodetect]
306 --disable-libvorbis disable libvorbis support [autodetect]
307 --disable-speex disable Speex support [autodetect]
308 --enable-theora enable OggTheora libraries [autodetect]
309 --enable-faad enable external FAAD2 (AAC) [autodetect]
310 --disable-faad-internal disable internal FAAD2 (AAC) [autodetect]
311 --enable-faad-fixed enable fixed-point mode in internal FAAD2 [disabled]
312 --disable-faac disable support for FAAC (AAC encoder) [autodetect]
313 --disable-ladspa disable LADSPA plugin support [autodetect]
314 --disable-libbs2b disable libbs2b audio filter support [autodetect]
315 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
316 --disable-mad disable libmad (MPEG audio) support [autodetect]
317 --disable-mp3lame disable LAME MP3 encoding support [autodetect]
318 --disable-toolame disable Toolame (MPEG layer 2) encoding [autodetect]
319 --disable-twolame disable Twolame (MPEG layer 2) encoding [autodetect]
320 --enable-xmms enable XMMS input plugin support [disabled]
321 --enable-libdca enable libdca support [autodetect]
322 --disable-mp3lib disable builtin mp3lib [autodetect]
323 --disable-liba52 disable liba52 [autodetect]
324 --disable-liba52-internal disable builtin liba52 [autodetect]
325 --disable-libmpeg2 disable builtin libmpeg2 [autodetect]
326 --disable-musepack disable musepack support [autodetect]
328 Video output:
329 --disable-vidix disable VIDIX [for x86 *nix]
330 --with-vidix-drivers[=*] list of VIDIX drivers to be compiled in
331 Available: cyberblade,ivtv,mach64,mga,mga_crtc2,
332 nvidia,pm2,pm3,radeon,rage128,s3,sis,unichrome
333 --disable-vidix-pcidb disable VIDIX PCI device name database
334 --enable-dhahelper enable VIDIX dhahelper support
335 --enable-svgalib_helper enable VIDIX svgalib_helper support
336 --enable-gl enable OpenGL video output [autodetect]
337 --disable-matrixview disable OpenGL MatrixView video output [autodetect]
338 --enable-dga2 enable DGA 2 support [autodetect]
339 --enable-dga1 enable DGA 1 support [autodetect]
340 --enable-vesa enable VESA video output [autodetect]
341 --enable-svga enable SVGAlib video output [autodetect]
342 --enable-sdl enable SDL video output [autodetect]
343 --enable-kva enable KVA video output [autodetect]
344 --enable-aa enable AAlib video output [autodetect]
345 --enable-caca enable CACA video output [autodetect]
346 --enable-ggi enable GGI video output [autodetect]
347 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
348 --enable-direct3d enable Direct3D video output [autodetect]
349 --enable-directx enable DirectX video output [autodetect]
350 --enable-dxr2 enable DXR2 video output [autodetect]
351 --enable-dxr3 enable DXR3/H+ video output [autodetect]
352 --enable-ivtv enable IVTV TV-Out video output [autodetect]
353 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
354 --enable-dvb enable DVB video output [autodetect]
355 --enable-dvbhead enable DVB video output (HEAD version) [autodetect]
356 --enable-mga enable mga_vid video output [autodetect]
357 --enable-xmga enable mga_vid X11 video output [autodetect]
358 --enable-xv enable Xv video output [autodetect]
359 --enable-xvmc enable XvMC acceleration [disable]
360 --enable-vdpau enable VDPAU acceleration [autodetect]
361 --enable-vm enable XF86VidMode support [autodetect]
362 --enable-xinerama enable Xinerama support [autodetect]
363 --enable-x11 enable X11 video output [autodetect]
364 --enable-xshape enable XShape support [autodetect]
365 --disable-xss disable screensaver support via xss [autodetect]
366 --enable-fbdev enable FBDev video output [autodetect]
367 --enable-mlib enable mediaLib video output (Solaris) [disable]
368 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
369 --enable-tdfxfb enable tdfxfb video output [disable]
370 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
371 --enable-wii enable Nintendo Wii/GameCube video output [disable]
372 --enable-directfb enable DirectFB video output [autodetect]
373 --enable-zr enable ZR360[56]7/ZR36060 video output [autodetect]
374 --enable-bl enable Blinkenlights video output [disable]
375 --enable-tdfxvid enable tdfx_vid video output [disable]
376 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
377 --disable-tga disable Targa video output [enable]
378 --disable-pnm disable PNM video output [enable]
379 --disable-md5sum disable md5sum video output [enable]
380 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
381 --disable-corevideo disable CoreVideo video output [autodetect]
382 --disable-quartz disable Quartz video output [autodetect]
383 --disable-glamo disable Glamo accelerated video output [enable]
385 Audio output:
386 --disable-alsa disable ALSA audio output [autodetect]
387 --disable-ossaudio disable OSS audio output [autodetect]
388 --disable-arts disable aRts audio output [autodetect]
389 --disable-esd disable esd audio output [autodetect]
390 --disable-pulse disable Pulseaudio audio output [autodetect]
391 --disable-jack disable JACK audio output [autodetect]
392 --enable-openal enable OpenAL audio output [disable]
393 --disable-nas disable NAS audio output [autodetect]
394 --disable-sgiaudio disable SGI audio output [autodetect]
395 --disable-sunaudio disable Sun audio output [autodetect]
396 --disable-dart disable DART audio output [autodetect]
397 --disable-win32waveout disable Windows waveout audio output [autodetect]
398 --disable-coreaudio disable CoreAudio audio output [autodetect]
399 --disable-select disable using select() on the audio device [enable]
401 Language options:
402 --charset=charset convert the console messages to this character set
403 --language-doc=lang language to use for the documentation [en]
404 --language-man=lang language to use for the man pages [en]
405 --language-msg=lang language to use for the messages [en]
406 --language=lang default language to use [en]
407 Specific options override --language. You can pass a list of languages separated
408 by whitespace or commas instead of a single language. Nonexisting translations
409 will be dropped from each list. All documentation and man page translations
410 available in the list will be installed, for the messages the first available
411 translation will be used. The value "all" will activate all translations. The
412 LINGUAS environment variable is honored. In all cases the fallback is English.
413 Available values are: all $msg_lang_all
415 Miscellaneous options:
416 --enable-runtime-cpudetection enable runtime CPU detection [disable]
417 --enable-cross-compile enable cross-compilation [autodetect]
418 --cc=COMPILER C compiler to build MPlayer [gcc]
419 --host-cc=COMPILER C compiler for tools needed while building [gcc]
420 --as=ASSEMBLER assembler to build MPlayer [as]
421 --nm=NM nm tool to build MPlayer [nm]
422 --yasm=YASM Yasm assembler to build MPlayer [yasm]
423 --ar=AR librarian to build MPlayer [ar]
424 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
425 --windres=WINDRES windres to build MPlayer [windres]
426 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
427 --enable-static build a statically linked binary
428 --with-install=PATH path to a custom install program
430 Advanced options:
431 --enable-mmx enable MMX [autodetect]
432 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
433 --enable-3dnow enable 3DNow! [autodetect]
434 --enable-3dnowext enable extended 3DNow! [autodetect]
435 --enable-sse enable SSE [autodetect]
436 --enable-sse2 enable SSE2 [autodetect]
437 --enable-ssse3 enable SSSE3 [autodetect]
438 --enable-shm enable shm [autodetect]
439 --enable-altivec enable AltiVec (PowerPC) [autodetect]
440 --enable-armv5te enable DSP extensions (ARM) [autodetect]
441 --enable-armv6 enable ARMv6 (ARM) [autodetect]
442 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
443 --enable-armvfp enable ARM VFP (ARM) [autodetect]
444 --enable-neon enable NEON (ARM) [autodetect]
445 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
446 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
447 --enable-big-endian force byte order to big-endian [autodetect]
448 --enable-debug[=1-3] compile-in debugging information [disable]
449 --enable-profile compile-in profiling information [disable]
450 --disable-sighandler disable sighandler for crashes [enable]
451 --enable-crash-debug enable automatic gdb attach on crash [disable]
452 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
453 --ffmpeg-source-dir=PATH enable features requiring internal FFmpeg headers
455 Use these options if autodetection fails:
456 --extra-cflags=FLAGS extra CFLAGS
457 --extra-ldflags=FLAGS extra LDFLAGS
458 --extra-libs=FLAGS extra linker flags
459 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
460 --extra-libs-mencoder=FLAGS extra linker flags for MEncoder
461 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
463 --with-freetype-config=PATH path to freetype-config
464 --with-fribidi-config=PATH path to fribidi-config
465 --with-glib-config=PATH path to glib*-config
466 --with-gtk-config=PATH path to gtk*-config
467 --with-sdl-config=PATH path to sdl*-config
468 --with-dvdnav-config=PATH path to dvdnav-config
469 --with-dvdread-config=PATH path to dvdread-config
471 This configure script is NOT autoconf-based, even though its output is similar.
472 It will try to autodetect all configuration options. If you --enable an option
473 it will be forcefully turned on, skipping autodetection. This can break
474 compilation, so you need to know what you are doing.
476 exit 0
477 } #show_help()
479 # GOTCHA: the variables below defines the default behavior for autodetection
480 # and have - unless stated otherwise - at least 2 states : yes no
481 # If autodetection is available then the third state is: auto
482 _mmx=auto
483 _3dnow=auto
484 _3dnowext=auto
485 _mmxext=auto
486 _sse=auto
487 _sse2=auto
488 _ssse3=auto
489 _cmov=auto
490 _fast_cmov=auto
491 _armv5te=auto
492 _armv6=auto
493 _armv6t2=auto
494 _armvfp=auto
495 neon=auto
496 _iwmmxt=auto
497 _mtrr=auto
498 _altivec=auto
499 _install=install
500 _ranlib=ranlib
501 _windres=windres
502 _cc=cc
503 _ar=ar
504 test "$CC" && _cc="$CC"
505 _as=auto
506 _nm=auto
507 _yasm=yasm
508 _runtime_cpudetection=no
509 _cross_compile=auto
510 _prefix="/usr/local"
511 _libavutil=auto
512 _libavcodec=auto
513 _libavformat=auto
514 _libpostproc=auto
515 _libswscale=auto
516 _libavcodec_internals=no
517 _libswscale_internals=no
518 _mencoder=yes
519 _mplayer=yes
520 _x11=auto
521 _xshape=auto
522 _xss=auto
523 _dga1=auto
524 _dga2=auto
525 _xv=auto
526 _xvmc=no #auto when complete
527 _vdpau=auto
528 _sdl=auto
529 _kva=auto
530 _direct3d=auto
531 _directx=auto
532 _win32waveout=auto
533 _nas=auto
534 _png=auto
535 _mng=auto
536 _jpeg=auto
537 _pnm=yes
538 _md5sum=yes
539 _yuv4mpeg=yes
540 _gif=auto
541 _gl=auto
542 matrixview=yes
543 _ggi=auto
544 _ggiwmh=auto
545 _aa=auto
546 _caca=auto
547 _svga=auto
548 _vesa=auto
549 _fbdev=auto
550 _dvb=auto
551 _dvbhead=auto
552 _dxr2=auto
553 _dxr3=auto
554 _ivtv=auto
555 _v4l2=auto
556 _iconv=auto
557 _langinfo=auto
558 _rtc=auto
559 _ossaudio=auto
560 _arts=auto
561 _esd=auto
562 _pulse=auto
563 _jack=auto
564 _dart=auto
565 _openal=no
566 _libcdio=auto
567 _liblzo=auto
568 _mad=auto
569 _mp3lame=auto
570 _toolame=auto
571 _twolame=auto
572 _tremor=auto
573 _tremor_internal=yes
574 _tremor_low=no
575 _libvorbis=auto
576 _speex=auto
577 _theora=auto
578 _mp3lib=auto
579 _liba52=auto
580 _liba52_internal=auto
581 _libdca=auto
582 _libmpeg2=auto
583 _faad=auto
584 _faad_internal=auto
585 _faad_fixed=no
586 _faac=auto
587 _ladspa=auto
588 _libbs2b=auto
589 _xmms=no
590 _vcd=auto
591 _dvdnav=auto
592 _dvdnavconfig=dvdnav-config
593 _dvdreadconfig=dvdread-config
594 _dvdread=auto
595 _dvdread_internal=auto
596 _libdvdcss_internal=auto
597 _xanim=auto
598 _real=auto
599 _live=auto
600 _nemesi=auto
601 _native_rtsp=yes
602 _xinerama=auto
603 _mga=auto
604 _xmga=auto
605 _vm=auto
606 _xf86keysym=auto
607 _mlib=no #broken, thus disabled
608 _sgiaudio=auto
609 _sunaudio=auto
610 _alsa=auto
611 _fastmemcpy=yes
612 _unrar_exec=auto
613 _win32dll=auto
614 _select=yes
615 _radio=no
616 _radio_capture=no
617 _radio_v4l=auto
618 _radio_v4l2=auto
619 _radio_bsdbt848=auto
620 _tv=yes
621 _tv_v4l1=auto
622 _tv_v4l2=auto
623 _tv_bsdbt848=auto
624 _tv_dshow=auto
625 _pvr=auto
626 _network=yes
627 _winsock2_h=auto
628 _smb=auto
629 _vidix=auto
630 _vidix_pcidb=yes
631 _dhahelper=no
632 _svgalib_helper=no
633 _joystick=no
634 _xvid=auto
635 _x264=auto
636 _libnut=auto
637 _lirc=auto
638 _lircc=auto
639 _apple_remote=auto
640 _apple_ir=auto
641 _gui=no
642 _gtk1=no
643 _termcap=auto
644 _termios=auto
645 _3dfx=no
646 _s3fb=no
647 _wii=no
648 _tdfxfb=no
649 _tdfxvid=no
650 _xvr100=auto
651 _tga=yes
652 _directfb=auto
653 _zr=auto
654 _bl=no
655 _glamo=yes
656 _largefiles=yes
657 #language=en
658 _shm=auto
659 _linux_devfs=no
660 _charset="UTF-8"
661 _dynamic_plugins=no
662 _crash_debug=no
663 _sighandler=yes
664 _libdv=auto
665 _cdparanoia=auto
666 _cddb=auto
667 _big_endian=auto
668 _bitmap_font=yes
669 _freetype=auto
670 _fontconfig=auto
671 _menu=no
672 _qtx=auto
673 _maemo=auto
674 _coreaudio=auto
675 _corevideo=auto
676 _quartz=auto
677 quicktime=auto
678 _macosx_finder=no
679 _macosx_bundle=auto
680 _sortsub=yes
681 _freetypeconfig='freetype-config'
682 _fribidi=auto
683 _fribidiconfig='fribidi-config'
684 _enca=auto
685 _inet6=auto
686 _gethostbyname2=auto
687 _ftp=yes
688 _musepack=auto
689 _vstream=auto
690 _pthreads=auto
691 _w32threads=auto
692 _ass=auto
693 _rpath=no
694 _asmalign_pot=auto
695 _stream_cache=yes
696 _priority=no
697 def_dos_paths="#define HAVE_DOS_PATHS 0"
698 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
699 def_priority="#undef CONFIG_PRIORITY"
700 def_pthread_cache="#undef PTHREAD_CACHE"
701 _need_shmem=yes
702 for ac_option do
703 case "$ac_option" in
704 --help|-help|-h)
705 show_help
707 --prefix=*)
708 _prefix=$(echo $ac_option | cut -d '=' -f 2)
710 --bindir=*)
711 _bindir=$(echo $ac_option | cut -d '=' -f 2)
713 --datadir=*)
714 _datadir=$(echo $ac_option | cut -d '=' -f 2)
716 --mandir=*)
717 _mandir=$(echo $ac_option | cut -d '=' -f 2)
719 --confdir=*)
720 _confdir=$(echo $ac_option | cut -d '=' -f 2)
722 --libdir=*)
723 _libdir=$(echo $ac_option | cut -d '=' -f 2)
725 --codecsdir=*)
726 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
728 --win32codecsdir=*)
729 _win32codecsdir=$(echo $ac_option | cut -d '=' -f 2)
731 --xanimcodecsdir=*)
732 _xanimcodecsdir=$(echo $ac_option | cut -d '=' -f 2)
734 --realcodecsdir=*)
735 _realcodecsdir=$(echo $ac_option | cut -d '=' -f 2)
738 --with-install=*)
739 _install=$(echo $ac_option | cut -d '=' -f 2 )
741 --with-xvmclib=*)
742 _xvmclib=$(echo $ac_option | cut -d '=' -f 2)
745 --with-sdl-config=*)
746 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
748 --with-freetype-config=*)
749 _freetypeconfig=$(echo $ac_option | cut -d '=' -f 2)
751 --with-fribidi-config=*)
752 _fribidiconfig=$(echo $ac_option | cut -d '=' -f 2)
754 --with-gtk-config=*)
755 _gtkconfig=$(echo $ac_option | cut -d '=' -f 2)
757 --with-glib-config=*)
758 _glibconfig=$(echo $ac_option | cut -d '=' -f 2)
760 --with-dvdnav-config=*)
761 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
763 --with-dvdread-config=*)
764 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
767 --extra-cflags=*)
768 extra_cflags="$extra_cflags $(echo $ac_option | cut -d '=' -f 2-)"
770 --extra-ldflags=*)
771 extra_ldflags="$extra_ldflags $(echo $ac_option | cut -d '=' -f 2-)"
773 --extra-libs=*)
774 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
776 --extra-libs-mplayer=*)
777 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
779 --extra-libs-mencoder=*)
780 libs_mencoder=$(echo $ac_option | cut -d '=' -f 2)
783 --target=*)
784 _target=$(echo $ac_option | cut -d '=' -f 2)
786 --cc=*)
787 _cc=$(echo $ac_option | cut -d '=' -f 2)
789 --host-cc=*)
790 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
792 --as=*)
793 _as=$(echo $ac_option | cut -d '=' -f 2)
795 --nm=*)
796 _nm=$(echo $ac_option | cut -d '=' -f 2)
798 --yasm=*)
799 _yasm=$(echo $ac_option | cut -d '=' -f 2)
801 --ar=*)
802 _ar=$(echo $ac_option | cut -d '=' -f 2)
804 --ranlib=*)
805 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
807 --windres=*)
808 _windres=$(echo $ac_option | cut -d '=' -f 2)
810 --charset=*)
811 _charset=$(echo $ac_option | cut -d '=' -f 2)
813 --language-doc=*)
814 language_doc=$(echo $ac_option | cut -d '=' -f 2)
816 --language-man=*)
817 language_man=$(echo $ac_option | cut -d '=' -f 2)
819 --language-msg=*)
820 language_msg=$(echo $ac_option | cut -d '=' -f 2)
822 --language=*)
823 language=$(echo $ac_option | cut -d '=' -f 2)
826 --enable-static)
827 _ld_static='-static'
829 --disable-static)
830 _ld_static=''
832 --enable-profile)
833 _profile='-p'
835 --disable-profile)
836 _profile=
838 --enable-debug)
839 _debug='-g'
841 --enable-debug=*)
842 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
844 --disable-debug)
845 _debug=
847 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
848 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
849 --enable-cross-compile) _cross_compile=yes ;;
850 --disable-cross-compile) _cross_compile=no ;;
851 --enable-mencoder) _mencoder=yes ;;
852 --disable-mencoder) _mencoder=no ;;
853 --enable-mplayer) _mplayer=yes ;;
854 --disable-mplayer) _mplayer=no ;;
855 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
856 --disable-dynamic-plugins) _dynamic_plugins=no ;;
857 --enable-x11) _x11=yes ;;
858 --disable-x11) _x11=no ;;
859 --enable-xshape) _xshape=yes ;;
860 --disable-xshape) _xshape=no ;;
861 --enable-xss) _xss=yes ;;
862 --disable-xss) _xss=no ;;
863 --enable-xv) _xv=yes ;;
864 --disable-xv) _xv=no ;;
865 --enable-xvmc) _xvmc=yes ;;
866 --disable-xvmc) _xvmc=no ;;
867 --enable-vdpau) _vdpau=yes ;;
868 --disable-vdpau) _vdpau=no ;;
869 --enable-sdl) _sdl=yes ;;
870 --disable-sdl) _sdl=no ;;
871 --enable-kva) _kva=yes ;;
872 --disable-kva) _kva=no ;;
873 --enable-direct3d) _direct3d=yes ;;
874 --disable-direct3d) _direct3d=no ;;
875 --enable-directx) _directx=yes ;;
876 --disable-directx) _directx=no ;;
877 --enable-win32waveout) _win32waveout=yes ;;
878 --disable-win32waveout) _win32waveout=no ;;
879 --enable-nas) _nas=yes ;;
880 --disable-nas) _nas=no ;;
881 --enable-png) _png=yes ;;
882 --disable-png) _png=no ;;
883 --enable-mng) _mng=yes ;;
884 --disable-mng) _mng=no ;;
885 --enable-jpeg) _jpeg=yes ;;
886 --disable-jpeg) _jpeg=no ;;
887 --enable-pnm) _pnm=yes ;;
888 --disable-pnm) _pnm=no ;;
889 --enable-md5sum) _md5sum=yes ;;
890 --disable-md5sum) _md5sum=no ;;
891 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
892 --disable-yuv4mpeg) _yuv4mpeg=no ;;
893 --enable-gif) _gif=yes ;;
894 --disable-gif) _gif=no ;;
895 --enable-gl) _gl=yes ;;
896 --disable-gl) _gl=no ;;
897 --enable-matrixview) matrixview=yes ;;
898 --disable-matrixview) matrixview=no ;;
899 --enable-ggi) _ggi=yes ;;
900 --disable-ggi) _ggi=no ;;
901 --enable-ggiwmh) _ggiwmh=yes ;;
902 --disable-ggiwmh) _ggiwmh=no ;;
903 --enable-aa) _aa=yes ;;
904 --disable-aa) _aa=no ;;
905 --enable-caca) _caca=yes ;;
906 --disable-caca) _caca=no ;;
907 --enable-svga) _svga=yes ;;
908 --disable-svga) _svga=no ;;
909 --enable-vesa) _vesa=yes ;;
910 --disable-vesa) _vesa=no ;;
911 --enable-fbdev) _fbdev=yes ;;
912 --disable-fbdev) _fbdev=no ;;
913 --enable-dvb) _dvb=yes ;;
914 --disable-dvb) _dvb=no ;;
915 --enable-dvbhead) _dvbhead=yes ;;
916 --disable-dvbhead) _dvbhead=no ;;
917 --enable-dxr2) _dxr2=yes ;;
918 --disable-dxr2) _dxr2=no ;;
919 --enable-dxr3) _dxr3=yes ;;
920 --disable-dxr3) _dxr3=no ;;
921 --enable-ivtv) _ivtv=yes ;;
922 --disable-ivtv) _ivtv=no ;;
923 --enable-v4l2) _v4l2=yes ;;
924 --disable-v4l2) _v4l2=no ;;
925 --enable-iconv) _iconv=yes ;;
926 --disable-iconv) _iconv=no ;;
927 --enable-langinfo) _langinfo=yes ;;
928 --disable-langinfo) _langinfo=no ;;
929 --enable-rtc) _rtc=yes ;;
930 --disable-rtc) _rtc=no ;;
931 --enable-libdv) _libdv=yes ;;
932 --disable-libdv) _libdv=no ;;
933 --enable-ossaudio) _ossaudio=yes ;;
934 --disable-ossaudio) _ossaudio=no ;;
935 --enable-arts) _arts=yes ;;
936 --disable-arts) _arts=no ;;
937 --enable-esd) _esd=yes ;;
938 --disable-esd) _esd=no ;;
939 --enable-pulse) _pulse=yes ;;
940 --disable-pulse) _pulse=no ;;
941 --enable-jack) _jack=yes ;;
942 --disable-jack) _jack=no ;;
943 --enable-openal) _openal=yes ;;
944 --disable-openal) _openal=no ;;
945 --enable-dart) _dart=yes ;;
946 --disable-dart) _dart=no ;;
947 --enable-mad) _mad=yes ;;
948 --disable-mad) _mad=no ;;
949 --enable-mp3lame) _mp3lame=yes ;;
950 --disable-mp3lame) _mp3lame=no ;;
951 --enable-toolame) _toolame=yes ;;
952 --disable-toolame) _toolame=no ;;
953 --enable-twolame) _twolame=yes ;;
954 --disable-twolame) _twolame=no ;;
955 --enable-libcdio) _libcdio=yes ;;
956 --disable-libcdio) _libcdio=no ;;
957 --enable-liblzo) _liblzo=yes ;;
958 --disable-liblzo) _liblzo=no ;;
959 --enable-libvorbis) _libvorbis=yes ;;
960 --disable-libvorbis) _libvorbis=no ;;
961 --enable-speex) _speex=yes ;;
962 --disable-speex) _speex=no ;;
963 --enable-tremor) _tremor=yes ;;
964 --disable-tremor) _tremor=no ;;
965 --enable-tremor-internal) _tremor_internal=yes ;;
966 --disable-tremor-internal) _tremor_internal=no ;;
967 --enable-tremor-low) _tremor_low=yes ;;
968 --disable-tremor-low) _tremor_low=no ;;
969 --enable-theora) _theora=yes ;;
970 --disable-theora) _theora=no ;;
971 --enable-mp3lib) _mp3lib=yes ;;
972 --disable-mp3lib) _mp3lib=no ;;
973 --enable-liba52-internal) _liba52_internal=yes ;;
974 --disable-liba52-internal) _liba52_internal=no ;;
975 --enable-liba52) _liba52=yes ;;
976 --disable-liba52) _liba52=no ;;
977 --enable-libdca) _libdca=yes ;;
978 --disable-libdca) _libdca=no ;;
979 --enable-libmpeg2) _libmpeg2=yes ;;
980 --disable-libmpeg2) _libmpeg2=no ;;
981 --enable-musepack) _musepack=yes ;;
982 --disable-musepack) _musepack=no ;;
983 --enable-faad) _faad=yes ;;
984 --disable-faad) _faad=no ;;
985 --enable-faad-internal) _faad_internal=yes ;;
986 --disable-faad-internal) _faad_internal=no ;;
987 --enable-faad-fixed) _faad_fixed=yes ;;
988 --disable-faad-fixed) _faad_fixed=no ;;
989 --enable-faac) _faac=yes ;;
990 --disable-faac) _faac=no ;;
991 --enable-ladspa) _ladspa=yes ;;
992 --disable-ladspa) _ladspa=no ;;
993 --enable-libbs2b) _libbs2b=yes ;;
994 --disable-libbs2b) _libbs2b=no ;;
995 --enable-xmms) _xmms=yes ;;
996 --disable-xmms) _xmms=no ;;
997 --enable-vcd) _vcd=yes ;;
998 --disable-vcd) _vcd=no ;;
999 --enable-dvdread) _dvdread=yes ;;
1000 --disable-dvdread) _dvdread=no ;;
1001 --enable-dvdread-internal) _dvdread_internal=yes ;;
1002 --disable-dvdread-internal) _dvdread_internal=no ;;
1003 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
1004 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
1005 --enable-dvdnav) _dvdnav=yes ;;
1006 --disable-dvdnav) _dvdnav=no ;;
1007 --enable-xanim) _xanim=yes ;;
1008 --disable-xanim) _xanim=no ;;
1009 --enable-real) _real=yes ;;
1010 --disable-real) _real=no ;;
1011 --enable-live) _live=yes ;;
1012 --disable-live) _live=no ;;
1013 --enable-nemesi) _nemesi=yes ;;
1014 --disable-nemesi) _nemesi=no ;;
1015 --enable-xinerama) _xinerama=yes ;;
1016 --disable-xinerama) _xinerama=no ;;
1017 --enable-mga) _mga=yes ;;
1018 --disable-mga) _mga=no ;;
1019 --enable-xmga) _xmga=yes ;;
1020 --disable-xmga) _xmga=no ;;
1021 --enable-vm) _vm=yes ;;
1022 --disable-vm) _vm=no ;;
1023 --enable-xf86keysym) _xf86keysym=yes ;;
1024 --disable-xf86keysym) _xf86keysym=no ;;
1025 --enable-mlib) _mlib=yes ;;
1026 --disable-mlib) _mlib=no ;;
1027 --enable-sunaudio) _sunaudio=yes ;;
1028 --disable-sunaudio) _sunaudio=no ;;
1029 --enable-sgiaudio) _sgiaudio=yes ;;
1030 --disable-sgiaudio) _sgiaudio=no ;;
1031 --enable-alsa) _alsa=yes ;;
1032 --disable-alsa) _alsa=no ;;
1033 --enable-tv) _tv=yes ;;
1034 --disable-tv) _tv=no ;;
1035 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1036 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1037 --enable-tv-v4l1) _tv_v4l1=yes ;;
1038 --disable-tv-v4l1) _tv_v4l1=no ;;
1039 --enable-tv-v4l2) _tv_v4l2=yes ;;
1040 --disable-tv-v4l2) _tv_v4l2=no ;;
1041 --enable-tv-dshow) _tv_dshow=yes ;;
1042 --disable-tv-dshow) _tv_dshow=no ;;
1043 --enable-radio) _radio=yes ;;
1044 --enable-radio-capture) _radio_capture=yes ;;
1045 --disable-radio-capture) _radio_capture=no ;;
1046 --disable-radio) _radio=no ;;
1047 --enable-radio-v4l) _radio_v4l=yes ;;
1048 --disable-radio-v4l) _radio_v4l=no ;;
1049 --enable-radio-v4l2) _radio_v4l2=yes ;;
1050 --disable-radio-v4l2) _radio_v4l2=no ;;
1051 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1052 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1053 --enable-pvr) _pvr=yes ;;
1054 --disable-pvr) _pvr=no ;;
1055 --enable-fastmemcpy) _fastmemcpy=yes ;;
1056 --disable-fastmemcpy) _fastmemcpy=no ;;
1057 --enable-network) _network=yes ;;
1058 --disable-network) _network=no ;;
1059 --enable-winsock2_h) _winsock2_h=yes ;;
1060 --disable-winsock2_h) _winsock2_h=no ;;
1061 --enable-smb) _smb=yes ;;
1062 --disable-smb) _smb=no ;;
1063 --enable-vidix) _vidix=yes ;;
1064 --disable-vidix) _vidix=no ;;
1065 --with-vidix-drivers=*)
1066 _vidix_drivers=$(echo $ac_option | cut -d '=' -f 2)
1068 --disable-vidix-pcidb) _vidix_pcidb=no ;;
1069 --enable-dhahelper) _dhahelper=yes ;;
1070 --disable-dhahelper) _dhahelper=no ;;
1071 --enable-svgalib_helper) _svgalib_helper=yes ;;
1072 --disable-svgalib_helper) _svgalib_helper=no ;;
1073 --enable-joystick) _joystick=yes ;;
1074 --disable-joystick) _joystick=no ;;
1075 --enable-xvid) _xvid=yes ;;
1076 --disable-xvid) _xvid=no ;;
1077 --enable-x264) _x264=yes ;;
1078 --disable-x264) _x264=no ;;
1079 --enable-libnut) _libnut=yes ;;
1080 --disable-libnut) _libnut=no ;;
1081 --enable-libavutil) _libavutil=yes ;;
1082 --disable-libavutil) _libavutil=no ;;
1083 --enable-libavcodec) _libavcodec=yes ;;
1084 --disable-libavcodec) _libavcodec=no ;;
1085 --enable-libavformat) _libavformat=yes ;;
1086 --disable-libavformat) _libavformat=no ;;
1087 --enable-libpostproc) _libpostproc=yes ;;
1088 --disable-libpostproc) _libpostproc=no ;;
1089 --enable-libswscale) _libswscale=yes ;;
1090 --disable-libswscale) _libswscale=no ;;
1091 --ffmpeg-source-dir=*)
1092 _ffmpeg_source=$(echo $ac_option | cut -d '=' -f 2 ) ;;
1094 --enable-lirc) _lirc=yes ;;
1095 --disable-lirc) _lirc=no ;;
1096 --enable-lircc) _lircc=yes ;;
1097 --disable-lircc) _lircc=no ;;
1098 --enable-apple-remote) _apple_remote=yes ;;
1099 --disable-apple-remote) _apple_remote=no ;;
1100 --enable-apple-ir) _apple_ir=yes ;;
1101 --disable-apple-ir) _apple_ir=no ;;
1102 --enable-gui) _gui=yes ;;
1103 --disable-gui) _gui=no ;;
1104 --enable-gtk1) _gtk1=yes ;;
1105 --disable-gtk1) _gtk1=no ;;
1106 --enable-termcap) _termcap=yes ;;
1107 --disable-termcap) _termcap=no ;;
1108 --enable-termios) _termios=yes ;;
1109 --disable-termios) _termios=no ;;
1110 --enable-3dfx) _3dfx=yes ;;
1111 --disable-3dfx) _3dfx=no ;;
1112 --enable-s3fb) _s3fb=yes ;;
1113 --disable-s3fb) _s3fb=no ;;
1114 --enable-wii) _wii=yes ;;
1115 --disable-wii) _wii=no ;;
1116 --enable-tdfxfb) _tdfxfb=yes ;;
1117 --disable-tdfxfb) _tdfxfb=no ;;
1118 --disable-tdfxvid) _tdfxvid=no ;;
1119 --enable-tdfxvid) _tdfxvid=yes ;;
1120 --disable-xvr100) _xvr100=no ;;
1121 --enable-xvr100) _xvr100=yes ;;
1122 --disable-tga) _tga=no ;;
1123 --enable-tga) _tga=yes ;;
1124 --enable-directfb) _directfb=yes ;;
1125 --disable-directfb) _directfb=no ;;
1126 --enable-zr) _zr=yes ;;
1127 --disable-zr) _zr=no ;;
1128 --enable-bl) _bl=yes ;;
1129 --disable-bl) _bl=no ;;
1130 --enable-glamo) _glamo=yes ;;
1131 --disable-glamo) _glamo=no ;;
1132 --enable-mtrr) _mtrr=yes ;;
1133 --disable-mtrr) _mtrr=no ;;
1134 --enable-largefiles) _largefiles=yes ;;
1135 --disable-largefiles) _largefiles=no ;;
1136 --enable-shm) _shm=yes ;;
1137 --disable-shm) _shm=no ;;
1138 --enable-select) _select=yes ;;
1139 --disable-select) _select=no ;;
1140 --enable-linux-devfs) _linux_devfs=yes ;;
1141 --disable-linux-devfs) _linux_devfs=no ;;
1142 --enable-cdparanoia) _cdparanoia=yes ;;
1143 --disable-cdparanoia) _cdparanoia=no ;;
1144 --enable-cddb) _cddb=yes ;;
1145 --disable-cddb) _cddb=no ;;
1146 --enable-big-endian) _big_endian=yes ;;
1147 --disable-big-endian) _big_endian=no ;;
1148 --enable-bitmap-font) _bitmap_font=yes ;;
1149 --disable-bitmap-font) _bitmap_font=no ;;
1150 --enable-freetype) _freetype=yes ;;
1151 --disable-freetype) _freetype=no ;;
1152 --enable-fontconfig) _fontconfig=yes ;;
1153 --disable-fontconfig) _fontconfig=no ;;
1154 --enable-unrarexec) _unrar_exec=yes ;;
1155 --disable-unrarexec) _unrar_exec=no ;;
1156 --enable-ftp) _ftp=yes ;;
1157 --disable-ftp) _ftp=no ;;
1158 --enable-vstream) _vstream=yes ;;
1159 --disable-vstream) _vstream=no ;;
1160 --enable-pthreads) _pthreads=yes ;;
1161 --disable-pthreads) _pthreads=no ;;
1162 --enable-w32threads) _w32threads=yes ;;
1163 --disable-w32threads) _w32threads=no ;;
1164 --enable-ass) _ass=yes ;;
1165 --disable-ass) _ass=no ;;
1166 --enable-rpath) _rpath=yes ;;
1167 --disable-rpath) _rpath=no ;;
1169 --enable-fribidi) _fribidi=yes ;;
1170 --disable-fribidi) _fribidi=no ;;
1172 --enable-enca) _enca=yes ;;
1173 --disable-enca) _enca=no ;;
1175 --enable-inet6) _inet6=yes ;;
1176 --disable-inet6) _inet6=no ;;
1178 --enable-gethostbyname2) _gethostbyname2=yes ;;
1179 --disable-gethostbyname2) _gethostbyname2=no ;;
1181 --enable-dga1) _dga1=yes ;;
1182 --disable-dga1) _dga1=no ;;
1183 --enable-dga2) _dga2=yes ;;
1184 --disable-dga2) _dga2=no ;;
1186 --enable-menu) _menu=yes ;;
1187 --disable-menu) _menu=no ;;
1189 --enable-qtx) _qtx=yes ;;
1190 --disable-qtx) _qtx=no ;;
1192 --enable-coreaudio) _coreaudio=yes ;;
1193 --disable-coreaudio) _coreaudio=no ;;
1194 --enable-corevideo) _corevideo=yes ;;
1195 --disable-corevideo) _corevideo=no ;;
1196 --enable-quartz) _quartz=yes ;;
1197 --disable-quartz) _quartz=no ;;
1198 --enable-macosx-finder) _macosx_finder=yes ;;
1199 --disable-macosx-finder) _macosx_finder=no ;;
1200 --enable-macosx-bundle) _macosx_bundle=yes ;;
1201 --disable-macosx-bundle) _macosx_bundle=no ;;
1203 --enable-maemo) _maemo=yes ;;
1204 --disable-maemo) _maemo=no ;;
1206 --enable-sortsub) _sortsub=yes ;;
1207 --disable-sortsub) _sortsub=no ;;
1209 --enable-crash-debug) _crash_debug=yes ;;
1210 --disable-crash-debug) _crash_debug=no ;;
1211 --enable-sighandler) _sighandler=yes ;;
1212 --disable-sighandler) _sighandler=no ;;
1213 --enable-win32dll) _win32dll=yes ;;
1214 --disable-win32dll) _win32dll=no ;;
1216 --enable-sse) _sse=yes ;;
1217 --disable-sse) _sse=no ;;
1218 --enable-sse2) _sse2=yes ;;
1219 --disable-sse2) _sse2=no ;;
1220 --enable-ssse3) _ssse3=yes ;;
1221 --disable-ssse3) _ssse3=no ;;
1222 --enable-mmxext) _mmxext=yes ;;
1223 --disable-mmxext) _mmxext=no ;;
1224 --enable-3dnow) _3dnow=yes ;;
1225 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1226 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1227 --disable-3dnowext) _3dnowext=no ;;
1228 --enable-cmov) _cmov=yes ;;
1229 --disable-cmov) _cmov=no ;;
1230 --enable-fast-cmov) _fast_cmov=yes ;;
1231 --disable-fast-cmov) _fast_cmov=no ;;
1232 --enable-altivec) _altivec=yes ;;
1233 --disable-altivec) _altivec=no ;;
1234 --enable-armv5te) _armv5te=yes ;;
1235 --disable-armv5te) _armv5te=no ;;
1236 --enable-armv6) _armv6=yes ;;
1237 --disable-armv6) _armv6=no ;;
1238 --enable-armv6t2) _armv6t2=yes ;;
1239 --disable-armv6t2) _armv6t2=no ;;
1240 --enable-armvfp) _armvfp=yes ;;
1241 --disable-armvfp) _armvfp=no ;;
1242 --enable-neon) neon=yes ;;
1243 --disable-neon) neon=no ;;
1244 --enable-iwmmxt) _iwmmxt=yes ;;
1245 --disable-iwmmxt) _iwmmxt=no ;;
1246 --enable-mmx) _mmx=yes ;;
1247 --disable-mmx) # 3Dnow! and MMX2 require MMX
1248 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1251 echo "Unknown parameter: $ac_option"
1252 exit 1
1255 esac
1256 done
1258 if test "$_gui" = yes ; then
1259 die "Internal GUI was removed from MPlayer. Please use one of many available\n frontends\
1260 (http://www.mplayerhq.hu/design7/projects.html#mplayer_frontends)."
1263 # Atmos: moved this here, to be correct, if --prefix is specified
1264 test -z "$_bindir" && _bindir="$_prefix/bin"
1265 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1266 test -z "$_mandir" && _mandir="$_prefix/share/man"
1267 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1268 test -z "$_libdir" && _libdir="$_prefix/lib"
1270 # Determine our OS name and CPU architecture
1271 if test -z "$_target" ; then
1272 # OS name
1273 system_name=$(uname -s 2>&1)
1274 case "$system_name" in
1275 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1277 Haiku)
1278 system_name=BeOS
1280 IRIX*)
1281 system_name=IRIX
1283 GNU/kFreeBSD)
1284 system_name=FreeBSD
1286 HP-UX*)
1287 system_name=HP-UX
1289 [cC][yY][gG][wW][iI][nN]*)
1290 system_name=CYGWIN
1292 MINGW32*)
1293 system_name=MINGW32
1295 OS/2*)
1296 system_name=OS/2
1299 system_name="$system_name-UNKNOWN"
1301 esac
1304 # host's CPU/instruction set
1305 host_arch=$(uname -p 2>&1)
1306 case "$host_arch" in
1307 i386|sparc|ppc|alpha|arm|mips|vax)
1309 powerpc) # Darwin returns 'powerpc'
1310 host_arch=ppc
1312 *) # uname -p on Linux returns 'unknown' for the processor type,
1313 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1315 # Maybe uname -m (machine hardware name) returns something we
1316 # recognize.
1318 # x86/x86pc is used by QNX
1319 case "$(uname -m 2>&1)" in
1320 x86_64|amd64|i[3-9]86*|x86|x86pc|k5|k6|k6_2|k6_3|k6-2|k6-3|pentium*|athlon*|i586_i686|i586-i686|BePC) host_arch=i386 ;;
1321 ia64) host_arch=ia64 ;;
1322 macppc|ppc) host_arch=ppc ;;
1323 ppc64) host_arch=ppc64 ;;
1324 alpha) host_arch=alpha ;;
1325 sparc) host_arch=sparc ;;
1326 sparc64) host_arch=sparc64 ;;
1327 parisc*|hppa*|9000*) host_arch=hppa ;;
1328 arm*|zaurus|cats) host_arch=arm ;;
1329 sh3|sh4|sh4a) host_arch=sh ;;
1330 s390) host_arch=s390 ;;
1331 s390x) host_arch=s390x ;;
1332 *mips*) host_arch=mips ;;
1333 vax) host_arch=vax ;;
1334 xtensa*) host_arch=xtensa ;;
1335 *) host_arch=UNKNOWN ;;
1336 esac
1338 esac
1339 else # if test -z "$_target"
1340 system_name=$(echo $_target | cut -d '-' -f 2)
1341 case "$(echo $system_name | tr A-Z a-z)" in
1342 linux) system_name=Linux ;;
1343 freebsd) system_name=FreeBSD ;;
1344 gnu/kfreebsd) system_name=FreeBSD ;;
1345 netbsd) system_name=NetBSD ;;
1346 bsd/os) system_name=BSD/OS ;;
1347 openbsd) system_name=OpenBSD ;;
1348 dragonfly) system_name=DragonFly ;;
1349 sunos) system_name=SunOS ;;
1350 qnx) system_name=QNX ;;
1351 morphos) system_name=MorphOS ;;
1352 amigaos) system_name=AmigaOS ;;
1353 mingw32*) system_name=MINGW32 ;;
1354 esac
1355 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1356 host_arch=$(echo $_target | cut -d '-' -f 1)
1357 if test $(echo $host_arch) != "x86_64" ; then
1358 host_arch=$(echo $host_arch | tr '_' '-')
1362 extra_cflags="-I. $extra_cflags"
1363 _timer=timer-linux.c
1364 _getch=getch2.c
1365 if freebsd ; then
1366 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1367 extra_cflags="$extra_cflags -I/usr/local/include"
1370 if netbsd || dragonfly ; then
1371 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1372 extra_cflags="$extra_cflags -I/usr/pkg/include"
1375 if darwin; then
1376 extra_cflags="-mdynamic-no-pic -falign-loops=16 -shared-libgcc $extra_cflags"
1377 _timer=timer-darwin.c
1380 if aix ; then
1381 extra_ldflags="$extra_ldflags -lC"
1384 if irix ; then
1385 _ranlib='ar -r'
1386 elif linux ; then
1387 _ranlib='true'
1390 if win32 ; then
1391 _exesuf=".exe"
1392 # -lwinmm is always needed for osdep/timer-win2.c
1393 extra_ldflags="$extra_ldflags -lwinmm"
1394 _pe_executable=yes
1395 _timer=timer-win2.c
1396 _priority=yes
1397 def_dos_paths="#define HAVE_DOS_PATHS 1"
1398 def_priority="#define CONFIG_PRIORITY 1"
1401 if mingw32 ; then
1402 _getch=getch2-win.c
1403 _need_shmem=no
1406 if amigaos ; then
1407 _select=no
1408 _sighandler=no
1409 _stream_cache=no
1410 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1411 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1414 if qnx ; then
1415 extra_ldflags="$extra_ldflags -lph"
1418 if os2 ; then
1419 _exesuf=".exe"
1420 _getch=getch2-os2.c
1421 _need_shmem=no
1422 _priority=yes
1423 def_dos_paths="#define HAVE_DOS_PATHS 1"
1424 def_priority="#define CONFIG_PRIORITY 1"
1427 for I in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1428 test "$I" && break
1429 done
1432 TMPLOG="configure.log"
1433 TMPC="$I/mplayer-conf-$RANDOM-$$.c"
1434 TMPCPP="$I/mplayer-conf-$RANDOM-$$.cpp"
1435 TMPEXE="$I/mplayer-conf-$RANDOM-$$$_exesuf"
1436 TMPH="$I/mplayer-conf-$RANDOM-$$.h"
1437 TMPS="$I/mplayer-conf-$RANDOM-$$.S"
1439 rm -f "$TMPLOG"
1440 echo configuration: $_configuration > "$TMPLOG"
1441 echo >> "$TMPLOG"
1444 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1445 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1449 # Checking CC version...
1450 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1451 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1452 echocheck "$_cc version"
1453 cc_vendor=intel
1454 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1455 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1456 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1457 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1458 # TODO verify older icc/ecc compatibility
1459 case $cc_version in
1461 cc_version="v. ?.??, bad"
1462 cc_fail=yes
1464 10.1|11.0|11.1)
1465 cc_version="$cc_version, ok"
1468 cc_version="$cc_version, bad"
1469 cc_fail=yes
1471 esac
1472 echores "$cc_version"
1473 else
1474 for _cc in "$_cc" cc gcc ; do
1475 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1476 if test "$cc_name_tmp" = "gcc"; then
1477 cc_name=$cc_name_tmp
1478 echocheck "$_cc version"
1479 cc_vendor=gnu
1480 cc_version=$($_cc -dumpversion 2>&1)
1481 case $cc_version in
1482 2.96*)
1483 cc_fail=yes
1486 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1487 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1488 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1490 esac
1491 echores "$cc_version"
1492 break
1494 done
1495 fi # icc
1496 test "$cc_fail" = yes && die "unsupported compiler version"
1498 if test -z "$_target" && x86 ; then
1499 cat > $TMPC << EOF
1500 int main(void) {
1501 int test[(int)sizeof(char *)-7];
1502 return 0;
1505 cc_check && host_arch=x86_64 || host_arch=i386
1508 echo "Detected operating system: $system_name"
1509 echo "Detected host architecture: $host_arch"
1511 echocheck "host cc"
1512 test "$_host_cc" || _host_cc=$_cc
1513 echores $_host_cc
1515 echocheck "cross compilation"
1516 if test $_cross_compile = auto ; then
1517 cat > $TMPC << EOF
1518 int main(void) { return 0; }
1520 _cross_compile=yes
1521 cc_check && "$TMPEXE" && _cross_compile=no
1523 echores $_cross_compile
1525 if test $_cross_compile = yes; then
1526 tmp_run() {
1527 return 0
1531 # ---
1533 # now that we know what compiler should be used for compilation, try to find
1534 # out which assembler is used by the $_cc compiler
1535 if test "$_as" = auto ; then
1536 _as=$($_cc -print-prog-name=as)
1537 test -z "$_as" && _as=as
1540 if test "$_nm" = auto ; then
1541 _nm=$($_cc -print-prog-name=nm)
1542 test -z "$_nm" && _nm=nm
1545 # XXX: this should be ok..
1546 _cpuinfo="echo"
1548 if test "$_runtime_cpudetection" = no ; then
1550 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1551 # FIXME: Remove the cygwin check once AMD CPUs are supported
1552 if test -r /proc/cpuinfo && ! cygwin; then
1553 # Linux with /proc mounted, extract CPU information from it
1554 _cpuinfo="cat /proc/cpuinfo"
1555 elif test -r /compat/linux/proc/cpuinfo && ! x86_32 ; then
1556 # FreeBSD with Linux emulation /proc mounted,
1557 # extract CPU information from it
1558 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1559 elif darwin && ! x86 ; then
1560 # use hostinfo on Darwin
1561 _cpuinfo="hostinfo"
1562 elif aix; then
1563 # use 'lsattr' on AIX
1564 _cpuinfo="lsattr -E -l proc0 -a type"
1565 elif x86; then
1566 # all other OSes try to extract CPU information from a small helper
1567 # program cpuinfo instead
1568 $_cc -o cpuinfo$_exesuf cpuinfo.c
1569 _cpuinfo="./cpuinfo$_exesuf"
1572 if x86 ; then
1573 # gather more CPU information
1574 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1575 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1576 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1577 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1578 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1580 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1582 pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1583 -e s/xmm/sse/ -e s/kni/sse/)
1585 for ext in $pparam ; do
1586 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1587 done
1589 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1590 test $_sse = kernel_check && _mmxext=kernel_check
1592 echocheck "CPU vendor"
1593 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1595 echocheck "CPU type"
1596 echores "$pname"
1599 fi # test "$_runtime_cpudetection" = no
1601 if x86 && test "$_runtime_cpudetection" = no ; then
1602 extcheck() {
1603 if test "$1" = kernel_check ; then
1604 echocheck "kernel support of $2"
1605 cat > $TMPC <<EOF
1606 #include <stdlib.h>
1607 #include <signal.h>
1608 void catch() { exit(1); }
1609 int main(void) {
1610 signal(SIGILL, catch);
1611 __asm__ volatile ("$3":::"memory"); return 0;
1615 if cc_check && tmp_run ; then
1616 eval _$2=yes
1617 echores "yes"
1618 _optimizing="$_optimizing $2"
1619 return 0
1620 else
1621 eval _$2=no
1622 echores "failed"
1623 echo "It seems that your kernel does not correctly support $2."
1624 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1625 return 1
1628 return 0
1631 extcheck $_mmx "mmx" "emms"
1632 extcheck $_mmxext "mmxext" "sfence"
1633 extcheck $_3dnow "3dnow" "femms"
1634 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1635 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1636 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1637 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1638 extcheck $_cmov "cmov" "cmovb %%eax,%%ebx"
1640 echocheck "mtrr support"
1641 if test "$_mtrr" = kernel_check ; then
1642 _mtrr="yes"
1643 _optimizing="$_optimizing mtrr"
1645 echores "$_mtrr"
1647 if test "$_gcc3_ext" != ""; then
1648 # if we had to disable sse/sse2 because the active kernel does not
1649 # support this instruction set extension, we also have to tell
1650 # gcc3 to not generate sse/sse2 instructions for normal C code
1651 cat > $TMPC << EOF
1652 int main(void) { return 0; }
1654 cc_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1660 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1661 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1662 _arch_all='X86 X86_32 X86_64 IA64 SPARC ARM AVR32 SH4 PPC PPC64 ALPHA MIPS SGI_MIPS PA_RISC S390 S390X VAX BFIN XTENSA GENERIC'
1663 case "$host_arch" in
1664 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1665 _arch='X86 X86_32'
1666 _target_arch="ARCH_X86 = yes"
1667 _target_subarch="ARCH_X86_32 = yes"
1668 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1669 iproc=486
1670 proc=i486
1673 if test "$_runtime_cpudetection" = no ; then
1674 case "$pvendor" in
1675 AuthenticAMD)
1676 case "$pfamily" in
1677 3) proc=i386 iproc=386 ;;
1678 4) proc=i486 iproc=486 ;;
1679 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1680 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1681 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1682 proc=k6-3
1683 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1684 proc=geode
1685 elif test "$pmodel" -ge 8; then
1686 proc=k6-2
1687 elif test "$pmodel" -ge 6; then
1688 proc=k6
1689 else
1690 proc=i586
1693 6) iproc=686
1694 # It's a bit difficult to determine the correct type of Family 6
1695 # AMD CPUs just from their signature. Instead, we check directly
1696 # whether it supports SSE.
1697 if test "$_sse" = yes; then
1698 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1699 proc=athlon-xp
1700 else
1701 # Again, gcc treats athlon and athlon-tbird similarly.
1702 proc=athlon
1705 15) iproc=686
1706 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1707 # caught and remedied in the optimization tests below.
1708 proc=k8
1711 *) proc=k8 iproc=686 ;;
1712 esac
1714 GenuineIntel)
1715 case "$pfamily" in
1716 3) proc=i386 iproc=386 ;;
1717 4) proc=i486 iproc=486 ;;
1718 5) iproc=586
1719 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1720 proc=pentium-mmx # 4 is desktop, 8 is mobile
1721 else
1722 proc=i586
1725 6) iproc=686
1726 if test "$pmodel" -ge 15; then
1727 proc=core2
1728 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1729 proc=pentium-m
1730 elif test "$pmodel" -ge 7; then
1731 proc=pentium3
1732 elif test "$pmodel" -ge 3; then
1733 proc=pentium2
1734 else
1735 proc=i686
1738 15) iproc=686
1739 # A nocona in 32-bit mode has no more capabilities than a prescott.
1740 if test "$pmodel" -ge 3; then
1741 proc=prescott
1742 else
1743 proc=pentium4
1745 test $_fast_cmov = "auto" && _fast_cmov=no
1747 *) proc=prescott iproc=686 ;;
1748 esac
1750 CentaurHauls)
1751 case "$pfamily" in
1752 5) iproc=586
1753 if test "$pmodel" -ge 8; then
1754 proc=winchip2
1755 elif test "$pmodel" -ge 4; then
1756 proc=winchip-c6
1757 else
1758 proc=i586
1761 6) iproc=686
1762 if test "$pmodel" -ge 9; then
1763 proc=c3-2
1764 else
1765 proc=c3
1766 iproc=586
1769 *) proc=i686 iproc=i686 ;;
1770 esac
1772 unknown)
1773 case "$pfamily" in
1774 3) proc=i386 iproc=386 ;;
1775 4) proc=i486 iproc=486 ;;
1776 *) proc=i586 iproc=586 ;;
1777 esac
1780 proc=i586 iproc=586 ;;
1781 esac
1782 fi # test "$_runtime_cpudetection" = no
1785 # check that gcc supports our CPU, if not, fall back to earlier ones
1786 # LGB: check -mcpu and -march swithing step by step with enabling
1787 # to fall back till 386.
1789 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1791 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1792 cpuopt=-mtune
1793 else
1794 cpuopt=-mcpu
1797 echocheck "GCC & CPU optimization abilities"
1798 cat > $TMPC << EOF
1799 int main(void) { return 0; }
1801 if test "$_runtime_cpudetection" = no ; then
1802 cc_check -march=native && proc=native
1803 if test "$proc" = "k8"; then
1804 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1806 if test "$proc" = "athlon-xp"; then
1807 cc_check -march=$proc $cpuopt=$proc || proc=athlon
1809 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1810 cc_check -march=$proc $cpuopt=$proc || proc=k6
1812 if test "$proc" = "k6" || test "$proc" = "c3"; then
1813 if ! cc_check -march=$proc $cpuopt=$proc; then
1814 if cc_check -march=i586 $cpuopt=i686; then
1815 proc=i586-i686
1816 else
1817 proc=i586
1821 if test "$proc" = "prescott" ; then
1822 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
1824 if test "$proc" = "core2" ; then
1825 cc_check -march=$proc $cpuopt=$proc || proc=pentium-m
1827 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
1828 cc_check -march=$proc $cpuopt=$proc || proc=i686
1830 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1831 cc_check -march=$proc $cpuopt=$proc || proc=i586
1833 if test "$proc" = "i586"; then
1834 cc_check -march=$proc $cpuopt=$proc || proc=i486
1836 if test "$proc" = "i486" ; then
1837 cc_check -march=$proc $cpuopt=$proc || proc=i386
1839 if test "$proc" = "i386" ; then
1840 cc_check -march=$proc $cpuopt=$proc || proc=error
1842 if test "$proc" = "error" ; then
1843 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1844 _mcpu=""
1845 _march=""
1846 _optimizing=""
1847 elif test "$proc" = "i586-i686"; then
1848 _march="-march=i586"
1849 _mcpu="$cpuopt=i686"
1850 _optimizing="$proc"
1851 else
1852 _march="-march=$proc"
1853 _mcpu="$cpuopt=$proc"
1854 _optimizing="$proc"
1856 else # if test "$_runtime_cpudetection" = no
1857 _mcpu="$cpuopt=generic"
1858 # at least i486 required, for bswap instruction
1859 _march="-march=i486"
1860 cc_check $_mcpu || _mcpu="$cpuopt=i686"
1861 cc_check $_mcpu || _mcpu=""
1862 cc_check $_march $_mcpu || _march=""
1865 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1866 ## autodetected mcpu/march parameters
1867 if test "$_target" ; then
1868 # TODO: it may be a good idea to check GCC and fall back in all cases
1869 if test "$host_arch" = "i586-i686"; then
1870 _march="-march=i586"
1871 _mcpu="$cpuopt=i686"
1872 else
1873 _march="-march=$host_arch"
1874 _mcpu="$cpuopt=$host_arch"
1877 proc="$host_arch"
1879 case "$proc" in
1880 i386) iproc=386 ;;
1881 i486) iproc=486 ;;
1882 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1883 i686|athlon*|pentium*) iproc=686 ;;
1884 *) iproc=586 ;;
1885 esac
1888 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1889 _fast_cmov="yes"
1890 else
1891 _fast_cmov="no"
1894 echores "$proc"
1897 ia64)
1898 _arch='IA64'
1899 _target_arch='ARCH_IA64 = yes'
1900 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1901 iproc='ia64'
1904 x86_64|amd64)
1905 _arch='X86 X86_64'
1906 _target_subarch='ARCH_X86_64 = yes'
1907 _target_arch="ARCH_X86 = yes"
1908 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1909 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1910 iproc='x86_64'
1912 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1913 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1914 cpuopt=-mtune
1915 else
1916 cpuopt=-mcpu
1918 test $_fast_cmov = "auto" && _fast_cmov=yes
1919 if test "$_runtime_cpudetection" = no ; then
1920 case "$pvendor" in
1921 AuthenticAMD)
1922 proc=k8;;
1923 GenuineIntel)
1924 case "$pfamily" in
1925 6) proc=core2;;
1927 # 64-bit prescotts exist, but as far as GCC is concerned they
1928 # have the same capabilities as a nocona.
1929 proc=nocona
1931 esac
1934 proc=error;;
1935 esac
1936 fi # test "$_runtime_cpudetection" = no
1938 echocheck "GCC & CPU optimization abilities"
1939 cat > $TMPC << EOF
1940 int main(void) { return 0; }
1942 # This is a stripped-down version of the i386 fallback.
1943 if test "$_runtime_cpudetection" = no ; then
1944 cc_check -march=native && proc=native
1945 # --- AMD processors ---
1946 if test "$proc" = "k8"; then
1947 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1949 # This will fail if gcc version < 3.3, which is ok because earlier
1950 # versions don't really support 64-bit on amd64.
1951 # Is this a valid assumption? -Corey
1952 if test "$proc" = "athlon-xp"; then
1953 cc_check -march=$proc $cpuopt=$proc || proc=error
1955 # --- Intel processors ---
1956 if test "$proc" = "core2"; then
1957 cc_check -march=$proc $cpuopt=$proc || proc=nocona
1959 if test "$proc" = "nocona"; then
1960 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
1962 if test "$proc" = "pentium4"; then
1963 cc_check -march=$proc $cpuopt=$proc || proc=error
1966 _march="-march=$proc"
1967 _mcpu="$cpuopt=$proc"
1968 if test "$proc" = "error" ; then
1969 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1970 _mcpu=""
1971 _march=""
1973 else # if test "$_runtime_cpudetection" = no
1974 # x86-64 is an undocumented option, an intersection of k8 and nocona.
1975 _march="-march=x86-64"
1976 _mcpu="$cpuopt=generic"
1977 cc_check $_mcpu || _mcpu="x86-64"
1978 cc_check $_mcpu || _mcpu=""
1979 cc_check $_march $_mcpu || _march=""
1982 _optimizing=""
1984 echores "$proc"
1987 sparc|sparc64)
1988 _arch='SPARC'
1989 _target_arch='ARCH_SPARC = yes'
1990 iproc='sparc'
1991 if test "$host_arch" = "sparc64" ; then
1992 _vis='yes'
1993 proc='ultrasparc'
1994 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1995 elif sunos ; then
1996 echocheck "CPU type"
1997 karch=$(uname -m)
1998 case "$(echo $karch)" in
1999 sun4) proc=v7 ;;
2000 sun4c) proc=v7 ;;
2001 sun4d) proc=v8 ;;
2002 sun4m) proc=v8 ;;
2003 sun4u) proc=ultrasparc _vis='yes' ;;
2004 sun4v) proc=v9 ;;
2005 *) proc=v8 ;;
2006 esac
2007 echores "$proc"
2008 else
2009 proc=v8
2011 _mcpu="-mcpu=$proc"
2012 _optimizing="$proc"
2015 arm|armv4l|armv5tel)
2016 _arch='ARM'
2017 _target_arch='ARCH_ARM = yes'
2018 iproc='arm'
2021 avr32)
2022 _arch='AVR32'
2023 _target_arch='ARCH_AVR32 = yes'
2024 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2025 iproc='avr32'
2028 sh|sh4)
2029 _arch='SH4'
2030 _target_arch='ARCH_SH4 = yes'
2031 iproc='sh4'
2034 ppc|ppc64|powerpc|powerpc64)
2035 _arch='PPC'
2036 def_dcbzl='#define HAVE_DCBZL 0'
2037 _target_arch='ARCH_PPC = yes'
2038 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2039 iproc='ppc'
2041 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2042 _arch='PPC PPC64'
2043 _target_subarch='ARCH_PPC64 = yes'
2044 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2046 echocheck "CPU type"
2047 case $system_name in
2048 Linux)
2049 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2050 if test -n "$($_cpuinfo | grep altivec)"; then
2051 test $_altivec = auto && _altivec=yes
2054 Darwin)
2055 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2056 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2057 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2058 test $_altivec = auto && _altivec=yes
2061 NetBSD)
2062 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2063 case $cc_version in
2064 2*|3.0*|3.1*|3.2*|3.3*)
2067 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2068 test $_altivec = auto && _altivec=yes
2071 esac
2073 AIX)
2074 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2076 esac
2077 if test "$_altivec" = yes; then
2078 echores "$proc altivec"
2079 else
2080 _altivec=no
2081 echores "$proc"
2084 echocheck "GCC & CPU optimization abilities"
2086 if test -n "$proc"; then
2087 case "$proc" in
2088 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2089 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2090 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2091 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2092 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2093 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2094 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2095 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2096 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2097 *) ;;
2098 esac
2099 # gcc 3.1(.1) and up supports 7400 and 7450
2100 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2101 case "$proc" in
2102 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2103 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2104 *) ;;
2105 esac
2107 # gcc 3.2 and up supports 970
2108 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2109 case "$proc" in
2110 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2111 def_dcbzl='#define HAVE_DCBZL 1' ;;
2112 *) ;;
2113 esac
2115 # gcc 3.3 and up supports POWER4
2116 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2117 case "$proc" in
2118 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2119 *) ;;
2120 esac
2122 # gcc 3.4 and up supports 440*
2123 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2124 case "$proc" in
2125 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2126 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2127 *) ;;
2128 esac
2130 # gcc 4.0 and up supports POWER5
2131 if test "$_cc_major" -ge "4"; then
2132 case "$proc" in
2133 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2134 *) ;;
2135 esac
2139 if test -n "$_mcpu"; then
2140 _optimizing=$(echo $_mcpu | cut -c 8-)
2141 echores "$_optimizing"
2142 else
2143 echores "none"
2148 alpha*)
2149 _arch='ALPHA'
2150 _target_arch='ARCH_ALPHA = yes'
2151 iproc='alpha'
2152 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2154 echocheck "CPU type"
2155 cat > $TMPC << EOF
2156 int main(void) {
2157 unsigned long ver, mask;
2158 __asm__ ("implver %0" : "=r" (ver));
2159 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2160 printf("%ld-%x\n", ver, ~mask);
2161 return 0;
2164 $_cc -o "$TMPEXE" "$TMPC"
2165 case $("$TMPEXE") in
2167 0-0) proc="ev4"; _mvi="0";;
2168 1-0) proc="ev5"; _mvi="0";;
2169 1-1) proc="ev56"; _mvi="0";;
2170 1-101) proc="pca56"; _mvi="1";;
2171 2-303) proc="ev6"; _mvi="1";;
2172 2-307) proc="ev67"; _mvi="1";;
2173 2-1307) proc="ev68"; _mvi="1";;
2174 esac
2175 echores "$proc"
2177 echocheck "GCC & CPU optimization abilities"
2178 if test "$proc" = "ev68" ; then
2179 cc_check -mcpu=$proc || proc=ev67
2181 if test "$proc" = "ev67" ; then
2182 cc_check -mcpu=$proc || proc=ev6
2184 _mcpu="-mcpu=$proc"
2185 echores "$proc"
2187 _optimizing="$proc"
2190 mips)
2191 _arch='SGI_MIPS'
2192 _target_arch='ARCH_SGI_MIPS = yes'
2193 iproc='sgi-mips'
2195 if irix ; then
2196 echocheck "CPU type"
2197 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2198 case "$(echo $proc)" in
2199 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2200 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2201 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2202 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2203 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2204 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2205 esac
2206 # gcc < 3.x does not support -mtune.
2207 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2208 _mcpu=''
2210 echores "$proc"
2215 hppa)
2216 _arch='PA_RISC'
2217 _target_arch='ARCH_PA_RISC = yes'
2218 iproc='PA-RISC'
2221 s390)
2222 _arch='S390'
2223 _target_arch='ARCH_S390 = yes'
2224 iproc='390'
2227 s390x)
2228 _arch='S390X'
2229 _target_arch='ARCH_S390X = yes'
2230 iproc='390x'
2233 vax)
2234 _arch='VAX'
2235 _target_arch='ARCH_VAX = yes'
2236 iproc='vax'
2239 xtensa)
2240 _arch='XTENSA'
2241 _target_arch='ARCH_XTENSA = yes'
2242 iproc='xtensa'
2245 generic)
2246 _arch='GENERIC'
2247 _target_arch='ARCH_GENERIC = yes'
2251 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2252 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2253 die "unsupported architecture $host_arch"
2255 esac # case "$host_arch" in
2257 if test "$_runtime_cpudetection" = yes ; then
2258 if x86 ; then
2259 test "$_cmov" != no && _cmov=yes
2260 x86_32 && _cmov=no
2261 test "$_mmx" != no && _mmx=yes
2262 test "$_3dnow" != no && _3dnow=yes
2263 test "$_3dnowext" != no && _3dnowext=yes
2264 test "$_mmxext" != no && _mmxext=yes
2265 test "$_sse" != no && _sse=yes
2266 test "$_sse2" != no && _sse2=yes
2267 test "$_ssse3" != no && _ssse3=yes
2268 test "$_mtrr" != no && _mtrr=yes
2270 if ppc; then
2271 _altivec=yes
2276 # endian testing
2277 echocheck "byte order"
2278 if test "$_big_endian" = auto ; then
2279 cat > $TMPC <<EOF
2280 short ascii_name[] = { (('M'<<8)|'P'),(('l'<<8)|'a'),(('y'<<8)|'e'),(('r'<<8)|'B'),
2281 (('i'<<8)|'g'),(('E'<<8)|'n'),(('d'<<8)|'i'),(('a'<<8)|'n'),0};
2282 int main(void) { return (int)ascii_name; }
2284 if cc_check ; then
2285 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2286 _big_endian=yes
2287 else
2288 _big_endian=no
2290 else
2291 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2294 if test "$_big_endian" = yes ; then
2295 _byte_order='big-endian'
2296 def_words_endian='#define WORDS_BIGENDIAN 1'
2297 def_bigendian='#define HAVE_BIGENDIAN 1'
2298 else
2299 _byte_order='little-endian'
2300 def_words_endian='#undef WORDS_BIGENDIAN'
2301 def_bigendian='#define HAVE_BIGENDIAN 0'
2303 echores "$_byte_order"
2306 echocheck "extern symbol prefix"
2307 cat > $TMPC << EOF
2308 int ff_extern;
2310 cc_check -c || die "Symbol mangling check failed."
2311 sym=$($_nm -P -g $TMPEXE)
2312 extern_prefix=${sym%%ff_extern*}
2313 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2314 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2315 echores $extern_prefix
2318 echocheck "assembler support of -pipe option"
2319 cat > $TMPC << EOF
2320 int main(void) { return 0; }
2322 cc_check -pipe && _pipe="-pipe" && echores "yes" || echores "no"
2325 echocheck "compiler support of named assembler arguments"
2326 _named_asm_args=yes
2327 def_named_asm_args="#define NAMED_ASM_ARGS 1"
2328 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2329 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2330 _named_asm_args=no
2331 def_named_asm_args="#undef NAMED_ASM_ARGS"
2333 echores $_named_asm_args
2336 if darwin && test "$cc_vendor" = "gnu" ; then
2337 echocheck "GCC support of -mstackrealign"
2338 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2339 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2340 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2341 # wrong code with this flag, but this can be worked around by adding
2342 # -fno-unit-at-a-time as described in the blog post at
2343 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2344 cat > $TMPC << EOF
2345 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2346 int main(void) { return foo3(1,2,3) == 3 ? 0 : 1; }
2348 cc_check -O2 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2349 test -z "$cflags_stackrealign" && cc_check -O2 -mstackrealign -fno-unit-at-a-time \
2350 && tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2351 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2352 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2355 # Checking for CFLAGS
2356 _install_strip="-s"
2357 if test "$_profile" != "" || test "$_debug" != "" ; then
2358 CFLAGS="-W -Wall -O2 $_march $_mcpu $_pipe $_debug $_profile"
2359 _install_strip=
2360 elif test -z "$CFLAGS" ; then
2361 if test "$cc_vendor" = "intel" ; then
2362 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer -wd167 -wd556 -wd144"
2363 elif test "$cc_vendor" != "gnu" ; then
2364 CFLAGS="-O2 $_march $_mcpu $_pipe"
2365 else
2366 CFLAGS="-Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2367 extra_ldflags="$extra_ldflags -ffast-math"
2369 else
2370 _warn_CFLAGS=yes
2373 cat > $TMPC << EOF
2374 int main(void) { return 0; }
2376 if test "$cc_vendor" = "gnu" ; then
2377 cc_check -std=gnu99 && CFLAGS="-std=gnu99 $CFLAGS"
2378 cc_check -Wno-pointer-sign && CFLAGS="-Wno-pointer-sign $CFLAGS"
2379 cc_check -Wdisabled-optimization && CFLAGS="-Wdisabled-optimization $CFLAGS"
2380 cc_check -Wundef && CFLAGS="-Wundef $CFLAGS"
2381 else
2382 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2385 cc_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2388 if test -n "$LDFLAGS" ; then
2389 extra_ldflags="$extra_ldflags $LDFLAGS"
2390 _warn_CFLAGS=yes
2391 elif test "$cc_vendor" = "intel" ; then
2392 extra_ldflags="$extra_ldflags -i-static"
2394 if test -n "$CPPFLAGS" ; then
2395 extra_cflags="$extra_cflags $CPPFLAGS"
2396 _warn_CFLAGS=yes
2401 if x86_32 ; then
2402 # Checking assembler (_as) compatibility...
2403 # Added workaround for older as that reads from stdin by default - atmos
2404 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2405 echocheck "assembler ($_as $as_version)"
2407 _pref_as_version='2.9.1'
2408 echo 'nop' > $TMPS
2409 if test "$_mmx" = yes ; then
2410 echo 'emms' >> $TMPS
2412 if test "$_3dnow" = yes ; then
2413 _pref_as_version='2.10.1'
2414 echo 'femms' >> $TMPS
2416 if test "$_3dnowext" = yes ; then
2417 _pref_as_version='2.10.1'
2418 echo 'pswapd %mm0, %mm0' >> $TMPS
2420 if test "$_mmxext" = yes ; then
2421 _pref_as_version='2.10.1'
2422 echo 'movntq %mm0, (%eax)' >> $TMPS
2424 if test "$_sse" = yes ; then
2425 _pref_as_version='2.10.1'
2426 echo 'xorps %xmm0, %xmm0' >> $TMPS
2428 #if test "$_sse2" = yes ; then
2429 # _pref_as_version='2.11'
2430 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2432 if test "$_cmov" = yes ; then
2433 _pref_as_version='2.10.1'
2434 echo 'cmovb %eax, %ebx' >> $TMPS
2436 if test "$_ssse3" = yes ; then
2437 _pref_as_version='2.16.92'
2438 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2440 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2442 if test "$as_verc_fail" != yes ; then
2443 echores "ok"
2444 else
2445 _res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2446 echores "failed"
2447 die "obsolete binutils version"
2450 fi #if x86_32
2452 echocheck ".align is a power of two"
2453 if test "$_asmalign_pot" = auto ; then
2454 _asmalign_pot=no
2455 cat > $TMPC << EOF
2456 int main(void) { __asm__ (".align 3"); return 0; }
2458 cc_check && _asmalign_pot=yes
2460 if test "$_asmalign_pot" = "yes" ; then
2461 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2462 else
2463 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2465 echores $_asmalign_pot
2467 if x86 ; then
2468 echocheck "10 assembler operands"
2469 ten_operands=no
2470 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2471 cat > $TMPC << EOF
2472 int main(void) {
2473 int x=0;
2474 __asm__ volatile(
2476 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2478 return 0;
2481 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2482 echores $ten_operands
2484 echocheck "ebx availability"
2485 ebx_available=no
2486 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2487 cat > $TMPC << EOF
2488 int main(void) {
2489 int x;
2490 __asm__ volatile(
2491 "xor %0, %0"
2492 :"=b"(x)
2493 // just adding ebx to clobber list seems unreliable with some
2494 // compilers, e.g. Haiku's gcc 2.95
2496 // and the above check does not work for OSX 64 bit...
2497 __asm__ volatile("":::"%ebx");
2498 return 0;
2501 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2502 echores $ebx_available
2504 echocheck "PIC"
2505 pic=no
2506 cat > $TMPC << EOF
2507 int main(void) {
2508 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2509 #error PIC not enabled
2510 #endif
2511 return 0;
2514 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2515 echores $pic
2517 echocheck "yasm"
2518 if test -z "$YASMFLAGS" ; then
2519 if darwin ; then
2520 x86_64 && objformat="macho64" || objformat="macho"
2521 elif win32 ; then
2522 objformat="win32"
2523 else
2524 objformat="elf"
2526 # currently tested for Linux x86, x86_64
2527 YASMFLAGS="-f $objformat"
2528 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2529 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2530 case "$objformat" in
2531 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2532 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2533 esac
2534 else
2535 _warn_CFLAGS=yes
2538 echo "pabsw xmm0, xmm0" > $TMPS
2539 yasm_check || _yasm=""
2540 if test $_yasm ; then
2541 test "$_mmx" = "yes" && fft_mmx="yes"
2542 def_yasm='#define HAVE_YASM 1'
2543 _have_yasm="yes"
2544 echores "$_yasm"
2545 else
2546 def_yasm='#define HAVE_YASM 0'
2547 fft_mmx="no"
2548 _have_yasm="no"
2549 echores "no"
2552 echocheck "bswap"
2553 def_bswap='#define HAVE_BSWAP 0'
2554 echo 'bswap %eax' > $TMPS
2555 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2556 echores "$bswap"
2557 fi #if x86
2560 #FIXME: This should happen before the check for CFLAGS..
2561 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2562 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2564 # check if AltiVec is supported by the compiler, and how to enable it
2565 echocheck "GCC AltiVec flags"
2566 cat > $TMPC << EOF
2567 int main(void) { return 0; }
2569 if $(cc_check -maltivec -mabi=altivec) ; then
2570 _altivec_gcc_flags="-maltivec -mabi=altivec"
2571 # check if <altivec.h> should be included
2572 cat > $TMPC << EOF
2573 #include <altivec.h>
2574 int main(void) { return 0; }
2576 if $(cc_check $_altivec_gcc_flags) ; then
2577 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2578 inc_altivec_h='#include <altivec.h>'
2579 else
2580 cat > $TMPC << EOF
2581 int main(void) { return 0; }
2583 if $(cc_check -faltivec) ; then
2584 _altivec_gcc_flags="-faltivec"
2585 else
2586 _altivec=no
2587 _altivec_gcc_flags="none, AltiVec disabled"
2591 echores "$_altivec_gcc_flags"
2593 # check if the compiler supports braces for vector declarations
2594 cat > $TMPC << EOF
2595 $inc_altivec_h
2596 int main(void) { (vector int) {1}; return 0; }
2598 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2600 # Disable runtime cpudetection if we cannot generate AltiVec code or
2601 # AltiVec is disabled by the user.
2602 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2603 && _runtime_cpudetection=no
2605 # Show that we are optimizing for AltiVec (if enabled and supported).
2606 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2607 && _optimizing="$_optimizing altivec"
2609 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2610 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2613 if ppc ; then
2614 def_xform_asm='#define HAVE_XFORM_ASM 0'
2615 xform_asm=no
2616 echocheck "XFORM ASM support"
2617 cat > $TMPC << EOF
2618 int main(void) { __asm__ volatile ("lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)); return 0; }
2620 cc_check && xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2621 echores "$xform_asm"
2624 if arm ; then
2625 echocheck "ARM pld instruction"
2626 cat > $TMPC << EOF
2627 int main(void) { __asm__ volatile ("pld [r0]"); return 0; }
2629 pld=no
2630 cc_check && pld=yes
2631 echores "$pld"
2633 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2634 if test $_armv5te = "auto" ; then
2635 cat > $TMPC << EOF
2636 int main(void) { __asm__ volatile ("qadd r0, r0, r0"); return 0; }
2638 _armv5te=no
2639 cc_check && _armv5te=yes
2641 echores "$_armv5te"
2643 echocheck "ARMv6 (SIMD instructions)"
2644 if test $_armv6 = "auto" ; then
2645 cat > $TMPC << EOF
2646 int main(void) { __asm__ volatile ("sadd16 r0, r0, r0"); return 0; }
2648 _armv6=no
2649 cc_check && _armv6=yes
2651 echores "$_armv6"
2653 echocheck "ARMv6t2 (SIMD instructions)"
2654 if test $_armv6t2 = "auto" ; then
2655 cat > $TMPC << EOF
2656 int main(void) { __asm__ volatile ("movt r0, #0"); return 0; }
2658 _armv6t2=no
2659 cc_check && _armv6t2=yes
2661 echores "$_armv6"
2663 echocheck "ARM VFP"
2664 if test $_armvfp = "auto" ; then
2665 cat > $TMPC << EOF
2666 int main(void) { __asm__ volatile ("fadds s0, s0, s0"); return 0; }
2668 _armvfp=no
2669 cc_check && _armvfp=yes
2671 echores "$_armvfp"
2673 echocheck "ARM NEON"
2674 if test $neon = "auto" ; then
2675 cat > $TMPC << EOF
2676 int main(void) { __asm__ volatile ("vadd.i16 q0, q0, q0"); return 0; }
2678 neon=no
2679 cc_check && neon=yes
2681 echores "$neon"
2683 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2684 if test $_iwmmxt = "auto" ; then
2685 cat > $TMPC << EOF
2686 int main(void) { __asm__ volatile ("wunpckelub wr6, wr4"); return 0; }
2688 _iwmmxt=no
2689 cc_check && _iwmmxt=yes
2691 echores "$_iwmmxt"
2694 _cpuexts_all='ALTIVEC MMX MMX2 AMD3DNOW AMD3DNOWEXT SSE SSE2 SSSE3 FAST_CMOV CMOV PLD ARMV5TE ARMV6 ARMV6T2 ARMVFP NEON IWMMXT MMI VIS MVI'
2695 test "$_altivec" = yes && _cpuexts="ALTIVEC $_cpuexts"
2696 test "$_mmx" = yes && _cpuexts="MMX $_cpuexts"
2697 test "$_mmxext" = yes && _cpuexts="MMX2 $_cpuexts"
2698 test "$_3dnow" = yes && _cpuexts="AMD3DNOW $_cpuexts"
2699 test "$_3dnowext" = yes && _cpuexts="AMD3DNOWEXT $_cpuexts"
2700 test "$_sse" = yes && _cpuexts="SSE $_cpuexts"
2701 test "$_sse2" = yes && _cpuexts="SSE2 $_cpuexts"
2702 test "$_ssse3" = yes && _cpuexts="SSSE3 $_cpuexts"
2703 test "$_cmov" = yes && _cpuexts="CMOV $_cpuexts"
2704 test "$_fast_cmov" = yes && _cpuexts="FAST_CMOV $_cpuexts"
2705 test "$pld" = yes && _cpuexts="PLD $_cpuexts"
2706 test "$_armv5te" = yes && _cpuexts="ARMV5TE $_cpuexts"
2707 test "$_armv6" = yes && _cpuexts="ARMV6 $_cpuexts"
2708 test "$_armv6t2" = yes && _cpuexts="ARMV6T2 $_cpuexts"
2709 test "$_armvfp" = yes && _cpuexts="ARMVFP $_cpuexts"
2710 test "$neon" = yes && _cpuexts="NEON $_cpuexts"
2711 test "$_iwmmxt" = yes && _cpuexts="IWMMXT $_cpuexts"
2712 test "$_vis" = yes && _cpuexts="VIS $_cpuexts"
2713 test "$_mvi" = yes && _cpuexts="MVI $_cpuexts"
2715 # Checking kernel version...
2716 if x86_32 && linux ; then
2717 _k_verc_problem=no
2718 kernel_version=$(uname -r 2>&1)
2719 echocheck "$system_name kernel version"
2720 case "$kernel_version" in
2721 '') kernel_version="?.??"; _k_verc_fail=yes;;
2722 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2723 _k_verc_problem=yes;;
2724 esac
2725 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2726 _k_verc_fail=yes
2728 if test "$_k_verc_fail" ; then
2729 echores "$kernel_version, fail"
2730 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2731 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2732 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2733 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2734 echo "2.2.x you must upgrade it to get SSE support!"
2735 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2736 else
2737 echores "$kernel_version, ok"
2741 ######################
2742 # MAIN TESTS GO HERE #
2743 ######################
2746 echocheck "-lposix"
2747 cat > $TMPC <<EOF
2748 int main(void) { return 0; }
2750 if cc_check -lposix ; then
2751 extra_ldflags="$extra_ldflags -lposix"
2752 echores "yes"
2753 else
2754 echores "no"
2757 echocheck "-lm"
2758 cat > $TMPC <<EOF
2759 int main(void) { return 0; }
2761 if cc_check -lm ; then
2762 _ld_lm="-lm"
2763 echores "yes"
2764 else
2765 _ld_lm=""
2766 echores "no"
2770 echocheck "langinfo"
2771 if test "$_langinfo" = auto ; then
2772 cat > $TMPC <<EOF
2773 #include <langinfo.h>
2774 int main(void) { nl_langinfo(CODESET); return 0; }
2776 _langinfo=no
2777 cc_check && _langinfo=yes
2779 if test "$_langinfo" = yes ; then
2780 def_langinfo='#define HAVE_LANGINFO 1'
2781 else
2782 def_langinfo='#undef HAVE_LANGINFO'
2784 echores "$_langinfo"
2787 echocheck "language"
2788 # Set preferred languages, "all" uses English as main language.
2789 test -z "$language" && language=$LINGUAS
2790 test -z "$language_doc" && language_doc=$language
2791 test -z "$language_man" && language_man=$language
2792 test -z "$language_msg" && language_msg=$language
2793 language_doc=$(echo $language_doc | tr , " ")
2794 language_man=$(echo $language_man | tr , " ")
2795 language_msg=$(echo $language_msg | tr , " ")
2797 test "$language_doc" = "all" && language_doc=$doc_lang_all
2798 test "$language_man" = "all" && language_man=$man_lang_all
2799 test "$language_msg" = "all" && language_msg=en
2801 # Prune non-existing translations from language lists.
2802 # Set message translation to the first available language.
2803 # Fall back on English.
2804 for lang in $language_doc ; do
2805 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2806 done
2807 language_doc=$tmp_language_doc
2808 test -z "$language_doc" && language_doc=en
2810 for lang in $language_man ; do
2811 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2812 done
2813 language_man=$tmp_language_man
2814 test -z "$language_man" && language_man=en
2816 for lang in $language_msg ; do
2817 test -f "help/help_mp-${lang}.h" && tmp_language_msg=$lang && break
2818 done
2819 language_msg=$tmp_language_msg
2820 test -z "$language_msg" && language_msg=en
2821 _mp_help="help/help_mp-${language_msg}.h"
2822 echores "messages: $language_msg - man pages: $language_man - documentation: $language_doc"
2825 echocheck "enable sighandler"
2826 if test "$_sighandler" = yes ; then
2827 def_sighandler='#define CONFIG_SIGHANDLER 1'
2828 else
2829 def_sighandler='#undef CONFIG_SIGHANDLER'
2831 echores "$_sighandler"
2833 echocheck "runtime cpudetection"
2834 if test "$_runtime_cpudetection" = yes ; then
2835 _optimizing="Runtime CPU-Detection enabled"
2836 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2837 else
2838 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2840 echores "$_runtime_cpudetection"
2843 echocheck "restrict keyword"
2844 for restrict_keyword in restrict __restrict __restrict__ ; do
2845 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2846 if cc_check; then
2847 def_restrict_keyword=$restrict_keyword
2848 break;
2850 done
2851 if [ -n "$def_restrict_keyword" ]; then
2852 echores "$def_restrict_keyword"
2853 else
2854 echores "none"
2856 # Avoid infinite recursion loop ("#define restrict restrict")
2857 if [ "$def_restrict_keyword" != "restrict" ]; then
2858 def_restrict_keyword="#define restrict $def_restrict_keyword"
2859 else
2860 def_restrict_keyword=""
2864 echocheck "__builtin_expect"
2865 # GCC branch prediction hint
2866 cat > $TMPC << EOF
2867 int foo(int a) {
2868 a = __builtin_expect(a, 10);
2869 return a == 10 ? 0 : 1;
2871 int main(void) { return foo(10) && foo(0); }
2873 _builtin_expect=no
2874 cc_check && _builtin_expect=yes
2875 if test "$_builtin_expect" = yes ; then
2876 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2877 else
2878 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2880 echores "$_builtin_expect"
2883 echocheck "kstat"
2884 cat > $TMPC << EOF
2885 #include <kstat.h>
2886 int main(void) { (void) kstat_open(); (void) kstat_close(0); return 0; }
2888 _kstat=no
2889 cc_check -lkstat && _kstat=yes
2890 if test "$_kstat" = yes ; then
2891 def_kstat="#define HAVE_LIBKSTAT 1"
2892 extra_ldflags="$extra_ldflags -lkstat"
2893 else
2894 def_kstat="#undef HAVE_LIBKSTAT"
2896 echores "$_kstat"
2899 echocheck "posix4"
2900 # required for nanosleep on some systems
2901 cat > $TMPC << EOF
2902 #include <time.h>
2903 int main(void) { (void) nanosleep(0, 0); return 0; }
2905 _posix4=no
2906 cc_check -lposix4 && _posix4=yes
2907 if test "$_posix4" = yes ; then
2908 extra_ldflags="$extra_ldflags -lposix4"
2910 echores "$_posix4"
2912 for func in llrint log2 lrint lrintf round roundf truncf; do
2913 echocheck $func
2914 cat > $TMPC << EOF
2915 #include <math.h>
2916 int main(void) { long (*foo)(float); foo = $func; (void)(*foo)(0.0); return 0; }
2918 eval _$func=no
2919 cc_check -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2920 if eval test "x\$_$func" = "xyes"; then
2921 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2922 echores yes
2923 else
2924 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
2925 echores no
2927 done
2930 echocheck "mkstemp"
2931 cat > $TMPC << EOF
2932 #include <stdlib.h>
2933 int main(void) { char a; mkstemp(&a); return 0; }
2935 _mkstemp=no
2936 cc_check && _mkstemp=yes
2937 if test "$_mkstemp" = yes ; then
2938 def_mkstemp='#define HAVE_MKSTEMP 1'
2939 else
2940 def_mkstemp='#undef HAVE_MKSTEMP'
2942 echores "$_mkstemp"
2945 echocheck "nanosleep"
2946 # also check for nanosleep
2947 cat > $TMPC << EOF
2948 #include <time.h>
2949 int main(void) { (void) nanosleep(0, 0); return 0; }
2951 _nanosleep=no
2952 cc_check && _nanosleep=yes
2953 if test "$_nanosleep" = yes ; then
2954 def_nanosleep='#define HAVE_NANOSLEEP 1'
2955 else
2956 def_nanosleep='#undef HAVE_NANOSLEEP'
2958 echores "$_nanosleep"
2961 echocheck "socklib"
2962 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
2963 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
2964 cat > $TMPC << EOF
2965 #include <netdb.h>
2966 #include <sys/socket.h>
2967 int main(void) { (void) gethostbyname(0); (void) socket(AF_INET, SOCK_STREAM, 0); return 0; }
2969 _socklib=no
2970 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
2971 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
2972 done
2973 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
2974 if test $_winsock2_h = auto ; then
2975 _winsock2_h=no
2976 cat > $TMPC << EOF
2977 #include <winsock2.h>
2978 int main(void) { (void) gethostbyname(0); return 0; }
2980 cc_check -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
2982 test "$_ld_sock" && _res_comment="using $_ld_sock"
2983 echores "$_socklib"
2986 if test $_winsock2_h = yes ; then
2987 _ld_sock="-lws2_32"
2988 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
2989 else
2990 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
2994 echocheck "arpa/inet.h"
2995 arpa_inet_h=no
2996 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
2997 cat > $TMPC << EOF
2998 #include <arpa/inet.h>
2999 int main(void) { return 0; }
3001 cc_check && arpa_inet_h=yes && def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
3002 echores "$arpa_inet_h"
3005 echocheck "inet_pton()"
3006 def_inet_pton='#define HAVE_INET_PTON 0'
3007 inet_pton=no
3008 cat > $TMPC << EOF
3009 #include <sys/types.h>
3010 #include <sys/socket.h>
3011 #include <arpa/inet.h>
3012 int main(void) { (void) inet_pton(0, 0, 0); return 0; }
3014 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3015 cc_check $_ld_tmp && inet_pton=yes && break
3016 done
3017 if test $inet_pton = yes ; then
3018 test $_ld_tmp && _res_comment="using $_ld_tmp"
3019 def_inet_pton='#define HAVE_INET_PTON 1'
3021 echores "$inet_pton"
3024 echocheck "inet_aton()"
3025 def_inet_aton='#define HAVE_INET_ATON 0'
3026 inet_aton=no
3027 cat > $TMPC << EOF
3028 #include <sys/types.h>
3029 #include <sys/socket.h>
3030 #include <arpa/inet.h>
3031 int main(void) { (void) inet_aton(0, 0); return 0; }
3033 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3034 cc_check $_ld_tmp && inet_aton=yes && break
3035 done
3036 if test $inet_aton = yes ; then
3037 test $_ld_tmp && _res_comment="using $_ld_tmp"
3038 def_inet_aton='#define HAVE_INET_ATON 1'
3040 echores "$inet_aton"
3043 echocheck "socklen_t"
3044 _socklen_t=no
3045 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
3046 cat > $TMPC << EOF
3047 #include <$header>
3048 int main(void) { socklen_t v = 0; return v; }
3050 cc_check && _socklen_t=yes && break
3051 done
3052 if test "$_socklen_t" = yes ; then
3053 def_socklen_t='#define HAVE_SOCKLEN_T 1'
3054 else
3055 def_socklen_t='#define HAVE_SOCKLEN_T 0'
3057 echores "$_socklen_t"
3060 echocheck "closesocket()"
3061 _closesocket=no
3062 cat > $TMPC << EOF
3063 #include <winsock2.h>
3064 int main(void) { closesocket(~0); return 0; }
3066 cc_check $_ld_sock && _closesocket=yes
3067 if test "$_closesocket" = yes ; then
3068 def_closesocket='#define HAVE_CLOSESOCKET 1'
3069 else
3070 def_closesocket='#define HAVE_CLOSESOCKET 0'
3072 echores "$_closesocket"
3075 echocheck "network"
3076 test $_winsock2_h = no && test $inet_pton = no &&
3077 test $inet_aton = no && _network=no
3078 if test "$_network" = yes ; then
3079 def_network='#define CONFIG_NETWORK 1'
3080 extra_ldflags="$extra_ldflags $_ld_sock"
3081 _inputmodules="network $_inputmodules"
3082 else
3083 _noinputmodules="network $_noinputmodules"
3084 def_network='#undef CONFIG_NETWORK'
3085 _ftp=no
3087 echores "$_network"
3090 echocheck "inet6"
3091 if test "$_inet6" = auto ; then
3092 cat > $TMPC << EOF
3093 #include <sys/types.h>
3094 #if !defined(_WIN32) || defined(__CYGWIN__)
3095 #include <sys/socket.h>
3096 #include <netinet/in.h>
3097 #else
3098 #include <ws2tcpip.h>
3099 #endif
3100 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3102 _inet6=no
3103 if cc_check $_ld_sock ; then
3104 _inet6=yes
3107 if test "$_inet6" = yes ; then
3108 def_inet6='#define HAVE_AF_INET6 1'
3109 else
3110 def_inet6='#undef HAVE_AF_INET6'
3112 echores "$_inet6"
3115 echocheck "gethostbyname2"
3116 if test "$_gethostbyname2" = auto ; then
3117 cat > $TMPC << EOF
3118 #include <sys/types.h>
3119 #include <sys/socket.h>
3120 #include <netdb.h>
3121 int main(void) { gethostbyname2("", AF_INET); return 0; }
3123 _gethostbyname2=no
3124 if cc_check ; then
3125 _gethostbyname2=yes
3128 if test "$_gethostbyname2" = yes ; then
3129 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3130 else
3131 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3133 echores "$_gethostbyname2"
3136 echocheck "inttypes.h (required)"
3137 cat > $TMPC << EOF
3138 #include <inttypes.h>
3139 int main(void) { return 0; }
3141 _inttypes=no
3142 cc_check && _inttypes=yes
3143 echores "$_inttypes"
3145 if test "$_inttypes" = no ; then
3146 echocheck "bitypes.h (inttypes.h predecessor)"
3147 cat > $TMPC << EOF
3148 #include <sys/bitypes.h>
3149 int main(void) { return 0; }
3151 cc_check && _inttypes=yes
3152 if test "$_inttypes" = yes ; then
3153 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."
3154 else
3155 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3160 echocheck "int_fastXY_t in inttypes.h"
3161 cat > $TMPC << EOF
3162 #include <inttypes.h>
3163 int main(void) {
3164 volatile int_fast16_t v= 0;
3165 return v; }
3167 _fast_inttypes=no
3168 cc_check && _fast_inttypes=yes
3169 if test "$_fast_inttypes" = no ; then
3170 def_fast_inttypes='
3171 typedef signed char int_fast8_t;
3172 typedef signed int int_fast16_t;
3173 typedef signed int int_fast32_t;
3174 typedef signed long long int_fast64_t;
3175 typedef unsigned char uint_fast8_t;
3176 typedef unsigned int uint_fast16_t;
3177 typedef unsigned int uint_fast32_t;
3178 typedef unsigned long long uint_fast64_t;'
3180 echores "$_fast_inttypes"
3183 echocheck "malloc.h"
3184 cat > $TMPC << EOF
3185 #include <malloc.h>
3186 int main(void) { (void) malloc(0); return 0; }
3188 _malloc=no
3189 cc_check && _malloc=yes
3190 if test "$_malloc" = yes ; then
3191 def_malloc_h='#define HAVE_MALLOC_H 1'
3192 else
3193 def_malloc_h='#define HAVE_MALLOC_H 0'
3195 # malloc.h emits a warning in FreeBSD and OpenBSD
3196 freebsd || openbsd || dragonfly && def_malloc_h='#define HAVE_MALLOC_H 0'
3197 echores "$_malloc"
3200 echocheck "memalign()"
3201 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3202 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3203 cat > $TMPC << EOF
3204 #include <malloc.h>
3205 int main(void) { (void) memalign(64, sizeof(char)); return 0; }
3207 _memalign=no
3208 cc_check && _memalign=yes
3209 if test "$_memalign" = yes ; then
3210 def_memalign='#define HAVE_MEMALIGN 1'
3211 else
3212 def_memalign='#define HAVE_MEMALIGN 0'
3213 def_map_memalign='#define memalign(a,b) malloc(b)'
3214 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3216 echores "$_memalign"
3219 echocheck "posix_memalign()"
3220 posix_memalign=no
3221 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3222 cat > $TMPC << EOF
3223 #define _XOPEN_SOURCE 600
3224 #include <stdlib.h>
3225 int main(void) { posix_memalign(NULL, 0, 0); }
3227 cc_check && posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3228 echores "$posix_memalign"
3231 echocheck "alloca.h"
3232 cat > $TMPC << EOF
3233 #include <alloca.h>
3234 int main(void) { (void) alloca(0); return 0; }
3236 _alloca=no
3237 cc_check && _alloca=yes
3238 if cc_check ; then
3239 def_alloca_h='#define HAVE_ALLOCA_H 1'
3240 else
3241 def_alloca_h='#undef HAVE_ALLOCA_H'
3243 echores "$_alloca"
3246 echocheck "fastmemcpy"
3247 if test "$_fastmemcpy" = yes ; then
3248 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3249 else
3250 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3252 echores "$_fastmemcpy"
3255 echocheck "mman.h"
3256 cat > $TMPC << EOF
3257 #include <sys/types.h>
3258 #include <sys/mman.h>
3259 int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; }
3261 _mman=no
3262 cc_check && _mman=yes
3263 if test "$_mman" = yes ; then
3264 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3265 else
3266 def_mman_h='#undef HAVE_SYS_MMAN_H'
3267 os2 && _need_mmap=yes
3269 echores "$_mman"
3271 cat > $TMPC << EOF
3272 #include <sys/types.h>
3273 #include <sys/mman.h>
3274 int main(void) { void *p = MAP_FAILED; return 0; }
3276 _mman_has_map_failed=no
3277 cc_check && _mman_has_map_failed=yes
3278 if test "$_mman_has_map_failed" = yes ; then
3279 def_mman_has_map_failed=''
3280 else
3281 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3284 echocheck "dynamic loader"
3285 cat > $TMPC << EOF
3286 #include <stddef.h>
3287 #include <dlfcn.h>
3288 int main(void) { dlopen("", 0); dlclose(NULL); dlsym(NULL, ""); return 0; }
3290 _dl=no
3291 for _ld_tmp in "" "-ldl" ; do
3292 cc_check $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3293 done
3294 if test "$_dl" = yes ; then
3295 def_dl='#define HAVE_LIBDL 1'
3296 else
3297 def_dl='#undef HAVE_LIBDL'
3299 echores "$_dl"
3302 echocheck "dynamic a/v plugins support"
3303 if test "$_dl" = no ; then
3304 _dynamic_plugins=no
3306 if test "$_dynamic_plugins" = yes ; then
3307 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3308 else
3309 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3311 echores "$_dynamic_plugins"
3314 def_threads='#define HAVE_THREADS 0'
3316 echocheck "pthread"
3317 if linux ; then
3318 THREAD_CFLAGS=-D_REENTRANT
3319 elif freebsd || netbsd || openbsd || bsdos ; then
3320 THREAD_CFLAGS=-D_THREAD_SAFE
3322 if test "$_pthreads" = auto ; then
3323 cat > $TMPC << EOF
3324 #include <pthread.h>
3325 void* func(void *arg) { return arg; }
3326 int main(void) { pthread_t tid; return pthread_create(&tid, 0, func, 0) == 0 ? 0 : 1; }
3328 _pthreads=no
3329 if ! hpux ; then
3330 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3331 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3332 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3333 done
3336 if test "$_pthreads" = yes ; then
3337 test $_ld_pthread && _res_comment="using $_ld_pthread"
3338 def_pthreads='#define HAVE_PTHREADS 1'
3339 def_threads='#define HAVE_THREADS 1'
3340 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3341 else
3342 _res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3343 def_pthreads='#undef HAVE_PTHREADS'
3344 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3345 mingw32 || _win32dll=no
3347 echores "$_pthreads"
3349 if cygwin ; then
3350 if test "$_pthreads" = yes ; then
3351 def_pthread_cache="#define PTHREAD_CACHE 1"
3352 else
3353 _stream_cache=no
3354 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3358 echocheck "w32threads"
3359 if test "$_pthreads" = yes ; then
3360 _res_comment="using pthread instead"
3361 _w32threads=no
3363 if test "$_w32threads" = auto ; then
3364 _w32threads=no
3365 mingw32 && _w32threads=yes
3367 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3368 echores "$_w32threads"
3370 echocheck "rpath"
3371 netbsd &&_rpath=yes
3372 if test "$_rpath" = yes ; then
3373 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3374 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3375 done
3376 extra_ldflags=$tmp
3378 echores "$_rpath"
3380 echocheck "iconv"
3381 if test "$_iconv" = auto ; then
3382 cat > $TMPC << EOF
3383 #include <stdio.h>
3384 #include <unistd.h>
3385 #include <iconv.h>
3386 #define INBUFSIZE 1024
3387 #define OUTBUFSIZE 4096
3389 char inbuffer[INBUFSIZE];
3390 char outbuffer[OUTBUFSIZE];
3392 int main(void) {
3393 size_t numread;
3394 iconv_t icdsc;
3395 char *tocode="UTF-8";
3396 char *fromcode="cp1250";
3397 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3398 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3399 char *iptr=inbuffer;
3400 char *optr=outbuffer;
3401 size_t inleft=numread;
3402 size_t outleft=OUTBUFSIZE;
3403 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft)
3404 != (size_t)(-1)) {
3405 write(1, outbuffer, OUTBUFSIZE - outleft);
3408 if (iconv_close(icdsc) == -1)
3411 return 0;
3414 _iconv=no
3415 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3416 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3417 _iconv=yes && break
3418 done
3420 if test "$_iconv" = yes ; then
3421 def_iconv='#define CONFIG_ICONV 1'
3422 else
3423 def_iconv='#undef CONFIG_ICONV'
3425 echores "$_iconv"
3428 echocheck "soundcard.h"
3429 _soundcard_h=no
3430 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3431 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3432 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3433 cat > $TMPC << EOF
3434 #include <$_soundcard_header>
3435 int main(void) { return 0; }
3437 cc_check && _soundcard_h=yes && _res_comment="$_soundcard_header" && break
3438 done
3440 if test "$_soundcard_h" = yes ; then
3441 if test $_soundcard_header = "sys/soundcard.h"; then
3442 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3443 else
3444 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3447 echores "$_soundcard_h"
3450 echocheck "sys/dvdio.h"
3451 cat > $TMPC << EOF
3452 #include <unistd.h>
3453 #include <sys/dvdio.h>
3454 int main(void) { return 0; }
3456 _dvdio=no
3457 cc_check && _dvdio=yes
3458 if test "$_dvdio" = yes ; then
3459 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3460 else
3461 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3463 echores "$_dvdio"
3466 echocheck "sys/cdio.h"
3467 cat > $TMPC << EOF
3468 #include <unistd.h>
3469 #include <sys/cdio.h>
3470 int main(void) { return 0; }
3472 _cdio=no
3473 cc_check && _cdio=yes
3474 if test "$_cdio" = yes ; then
3475 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3476 else
3477 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3479 echores "$_cdio"
3482 echocheck "linux/cdrom.h"
3483 cat > $TMPC << EOF
3484 #include <sys/types.h>
3485 #include <linux/cdrom.h>
3486 int main(void) { return 0; }
3488 _cdrom=no
3489 cc_check && _cdrom=yes
3490 if test "$_cdrom" = yes ; then
3491 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3492 else
3493 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3495 echores "$_cdrom"
3498 echocheck "dvd.h"
3499 cat > $TMPC << EOF
3500 #include <dvd.h>
3501 int main(void) { return 0; }
3503 _dvd=no
3504 cc_check && _dvd=yes
3505 if test "$_dvd" = yes ; then
3506 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3507 else
3508 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3510 echores "$_dvd"
3513 if bsdos; then
3514 echocheck "BSDI dvd.h"
3515 cat > $TMPC << EOF
3516 #include <dvd.h>
3517 int main(void) { return 0; }
3519 _bsdi_dvd=no
3520 cc_check && _bsdi_dvd=yes
3521 if test "$_bsdi_dvd" = yes ; then
3522 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3523 else
3524 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3526 echores "$_bsdi_dvd"
3527 fi #if bsdos
3530 if hpux; then
3531 # also used by AIX, but AIX does not support VCD and/or libdvdread
3532 echocheck "HP-UX SCSI header"
3533 cat > $TMPC << EOF
3534 #include <sys/scsi.h>
3535 int main(void) { return 0; }
3537 _hpux_scsi_h=no
3538 cc_check && _hpux_scsi_h=yes
3539 if test "$_hpux_scsi_h" = yes ; then
3540 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3541 else
3542 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3544 echores "$_hpux_scsi_h"
3545 fi #if hpux
3548 if sunos; then
3549 echocheck "userspace SCSI headers (Solaris)"
3550 cat > $TMPC << EOF
3551 #include <unistd.h>
3552 #include <stropts.h>
3553 #include <sys/scsi/scsi_types.h>
3554 #include <sys/scsi/impl/uscsi.h>
3555 int main(void) { return 0; }
3557 _sol_scsi_h=no
3558 cc_check && _sol_scsi_h=yes
3559 if test "$_sol_scsi_h" = yes ; then
3560 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3561 else
3562 def_sol_scsi_h='#undef SOLARIS_USCSI'
3564 echores "$_sol_scsi_h"
3565 fi #if sunos
3568 echocheck "termcap"
3569 if test "$_termcap" = auto ; then
3570 cat > $TMPC <<EOF
3571 #include <stddef.h>
3572 #include <term.h>
3573 int main(void) { tgetent(NULL, NULL); return 0; }
3575 _termcap=no
3576 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3577 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
3578 && _termcap=yes && break
3579 done
3581 if test "$_termcap" = yes ; then
3582 def_termcap='#define HAVE_TERMCAP 1'
3583 test $_ld_tmp && _res_comment="using $_ld_tmp"
3584 else
3585 def_termcap='#undef HAVE_TERMCAP'
3587 echores "$_termcap"
3590 echocheck "termios"
3591 def_termios='#undef HAVE_TERMIOS'
3592 def_termios_h='#undef HAVE_TERMIOS_H'
3593 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3594 if test "$_termios" = auto ; then
3595 _termios=no
3596 for _termios_header in "sys/termios.h" "termios.h"; do
3597 cat > $TMPC <<EOF
3598 #include <$_termios_header>
3599 int main(void) { return 0; }
3601 cc_check && _termios=yes && _res_comment="using $_termios_header" && break
3602 done
3605 if test "$_termios" = yes ; then
3606 def_termios='#define HAVE_TERMIOS 1'
3607 if test "$_termios_header" = "termios.h" ; then
3608 def_termios_h='#define HAVE_TERMIOS_H 1'
3609 else
3610 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3613 echores "$_termios"
3616 echocheck "shm"
3617 if test "$_shm" = auto ; then
3618 cat > $TMPC << EOF
3619 #include <sys/types.h>
3620 #include <sys/shm.h>
3621 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3623 _shm=no
3624 cc_check && _shm=yes
3626 if test "$_shm" = yes ; then
3627 def_shm='#define HAVE_SHM 1'
3628 else
3629 def_shm='#undef HAVE_SHM'
3631 echores "$_shm"
3634 echocheck "strsep()"
3635 cat > $TMPC << EOF
3636 #include <string.h>
3637 int main(void) { char *s = "Hello, world!"; (void) strsep(&s, ","); return 0; }
3639 _strsep=no
3640 cc_check && _strsep=yes
3641 if test "$_strsep" = yes ; then
3642 def_strsep='#define HAVE_STRSEP 1'
3643 _need_strsep=no
3644 else
3645 def_strsep='#undef HAVE_STRSEP'
3646 _need_strsep=yes
3648 echores "$_strsep"
3651 echocheck "vsscanf()"
3652 cat > $TMPC << EOF
3653 #define _ISOC99_SOURCE
3654 #include <stdarg.h>
3655 #include <stdio.h>
3656 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3658 _vsscanf=no
3659 cc_check && _vsscanf=yes
3660 if test "$_vsscanf" = yes ; then
3661 def_vsscanf='#define HAVE_VSSCANF 1'
3662 _need_vsscanf=no
3663 else
3664 def_vsscanf='#undef HAVE_VSSCANF'
3665 _need_vsscanf=yes
3667 echores "$_vsscanf"
3670 echocheck "swab()"
3671 cat > $TMPC << EOF
3672 #define _XOPEN_SOURCE 600
3673 #include <unistd.h>
3674 int main(void) { swab(0, 0, 0); return 0; }
3676 _swab=no
3677 cc_check && _swab=yes
3678 if test "$_swab" = yes ; then
3679 def_swab='#define HAVE_SWAB 1'
3680 _need_swab=no
3681 else
3682 def_swab='#undef HAVE_SWAB'
3683 _need_swab=yes
3685 echores "$_swab"
3687 echocheck "POSIX select()"
3688 cat > $TMPC << EOF
3689 #include <stdio.h>
3690 #include <stdlib.h>
3691 #include <sys/types.h>
3692 #include <string.h>
3693 #include <sys/time.h>
3694 #include <unistd.h>
3695 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
3697 _posix_select=no
3698 def_posix_select='#undef HAVE_POSIX_SELECT'
3699 #select() of kLIBC (OS/2) supports socket only
3700 ! os2 && cc_check && _posix_select=yes \
3701 && def_posix_select='#define HAVE_POSIX_SELECT 1'
3702 echores "$_posix_select"
3705 echocheck "audio select()"
3706 if test "$_select" = no ; then
3707 def_select='#undef HAVE_AUDIO_SELECT'
3708 elif test "$_select" = yes ; then
3709 def_select='#define HAVE_AUDIO_SELECT 1'
3711 echores "$_select"
3714 echocheck "gettimeofday()"
3715 cat > $TMPC << EOF
3716 #include <stdio.h>
3717 #include <sys/time.h>
3718 int main(void) {struct timeval tv_start; gettimeofday(&tv_start, NULL); return 0; }
3720 _gettimeofday=no
3721 cc_check && _gettimeofday=yes
3722 if test "$_gettimeofday" = yes ; then
3723 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3724 _need_gettimeofday=no
3725 else
3726 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3727 _need_gettimeofday=yes
3729 echores "$_gettimeofday"
3732 echocheck "glob()"
3733 cat > $TMPC << EOF
3734 #include <stdio.h>
3735 #include <glob.h>
3736 int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
3738 _glob=no
3739 cc_check && _glob=yes
3740 if test "$_glob" = yes ; then
3741 def_glob='#define HAVE_GLOB 1'
3742 _need_glob=no
3743 else
3744 def_glob='#undef HAVE_GLOB'
3745 _need_glob=yes
3747 echores "$_glob"
3750 echocheck "setenv()"
3751 cat > $TMPC << EOF
3752 #include <stdlib.h>
3753 int main(void) { setenv("","",0); return 0; }
3755 _setenv=no
3756 cc_check && _setenv=yes
3757 if test "$_setenv" = yes ; then
3758 def_setenv='#define HAVE_SETENV 1'
3759 _need_setenv=no
3760 else
3761 def_setenv='#undef HAVE_SETENV'
3762 _need_setenv=yes
3764 echores "$_setenv"
3767 if sunos; then
3768 echocheck "sysi86()"
3769 cat > $TMPC << EOF
3770 #include <sys/sysi86.h>
3771 int main(void) { sysi86(0); return 0; }
3773 _sysi86=no
3774 cc_check && _sysi86=yes
3775 if test "$_sysi86" = yes ; then
3776 def_sysi86='#define HAVE_SYSI86 1'
3777 cat > $TMPC << EOF
3778 #include <sys/sysi86.h>
3779 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
3781 cc_check && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3782 else
3783 def_sysi86='#undef HAVE_SYSI86'
3785 echores "$_sysi86"
3786 fi #if sunos
3789 echocheck "sys/sysinfo.h"
3790 cat > $TMPC << EOF
3791 #include <sys/sysinfo.h>
3792 int main(void) {
3793 struct sysinfo s_info;
3794 sysinfo(&s_info);
3795 return 0;
3798 _sys_sysinfo=no
3799 cc_check && _sys_sysinfo=yes
3800 if test "$_sys_sysinfo" = yes ; then
3801 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3802 else
3803 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3805 echores "$_sys_sysinfo"
3808 if darwin; then
3810 echocheck "Mac OS X Finder Support"
3811 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3812 if test "$_macosx_finder" = yes ; then
3813 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3814 extra_ldflags="$extra_ldflags -framework Carbon"
3816 echores "$_macosx_finder"
3818 echocheck "Mac OS X Bundle file locations"
3819 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3820 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3821 if test "$_macosx_bundle" = yes ; then
3822 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3823 extra_ldflags="$extra_ldflags -framework Carbon"
3825 echores "$_macosx_bundle"
3827 echocheck "Apple Remote"
3828 if test "$_apple_remote" = auto ; then
3829 _apple_remote=no
3830 cat > $TMPC <<EOF
3831 #include <stdio.h>
3832 #include <IOKit/IOCFPlugIn.h>
3833 int main(void) {
3834 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3835 CFMutableDictionaryRef hidMatchDictionary;
3836 IOReturn ioReturnValue;
3838 // Set up a matching dictionary to search the I/O Registry by class.
3839 // name for all HID class devices
3840 hidMatchDictionary = IOServiceMatching("AppleIRController");
3842 // Now search I/O Registry for matching devices.
3843 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3844 hidMatchDictionary, &hidObjectIterator);
3846 // If search is unsuccessful, return nonzero.
3847 if (ioReturnValue != kIOReturnSuccess ||
3848 !IOIteratorIsValid(hidObjectIterator)) {
3849 return 1;
3851 return 0;
3854 cc_check -framework IOKit && tmp_run && _apple_remote=yes
3856 if test "$_apple_remote" = yes ; then
3857 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3858 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3859 else
3860 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3862 echores "$_apple_remote"
3864 fi #if darwin
3866 if linux; then
3868 echocheck "Apple IR"
3869 if test "$_apple_ir" = auto ; then
3870 _apple_ir=no
3871 cat > $TMPC <<EOF
3872 #include <linux/types.h>
3873 #include <linux/input.h>
3874 int main(void) {
3875 struct input_event ev;
3876 struct input_id id;
3877 return 0;
3880 cc_check && _apple_ir=yes
3882 if test "$_apple_ir" = yes ; then
3883 def_apple_ir='#define CONFIG_APPLE_IR 1'
3884 else
3885 def_apple_ir='#undef CONFIG_APPLE_IR'
3887 echores "$_apple_ir"
3888 fi #if linux
3890 echocheck "pkg-config"
3891 _pkg_config=pkg-config
3892 if $($_pkg_config --version > /dev/null 2>&1); then
3893 if test "$_ld_static"; then
3894 _pkg_config="$_pkg_config --static"
3896 echores "yes"
3897 else
3898 _pkg_config=false
3899 echores "no"
3903 echocheck "Samba support (libsmbclient)"
3904 if test "$_smb" = yes; then
3905 extra_ldflags="$extra_ldflags -lsmbclient"
3907 if test "$_smb" = auto; then
3908 _smb=no
3909 cat > $TMPC << EOF
3910 #include <libsmbclient.h>
3911 int main(void) { smbc_opendir("smb://"); return 0; }
3913 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3914 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3915 _smb=yes && break
3916 done
3919 if test "$_smb" = yes; then
3920 def_smb="#define CONFIG_LIBSMBCLIENT 1"
3921 _inputmodules="smb $_inputmodules"
3922 else
3923 def_smb="#undef CONFIG_LIBSMBCLIENT"
3924 _noinputmodules="smb $_noinputmodules"
3926 echores "$_smb"
3929 #########
3930 # VIDEO #
3931 #########
3934 echocheck "tdfxfb"
3935 if test "$_tdfxfb" = yes ; then
3936 def_tdfxfb='#define CONFIG_TDFXFB 1'
3937 _vomodules="tdfxfb $_vomodules"
3938 else
3939 def_tdfxfb='#undef CONFIG_TDFXFB'
3940 _novomodules="tdfxfb $_novomodules"
3942 echores "$_tdfxfb"
3944 echocheck "s3fb"
3945 if test "$_s3fb" = yes ; then
3946 def_s3fb='#define CONFIG_S3FB 1'
3947 _vomodules="s3fb $_vomodules"
3948 else
3949 def_s3fb='#undef CONFIG_S3FB'
3950 _novomodules="s3fb $_novomodules"
3952 echores "$_s3fb"
3954 echocheck "wii"
3955 if test "$_wii" = yes ; then
3956 def_wii='#define CONFIG_WII 1'
3957 _vomodules="wii $_vomodules"
3958 else
3959 def_wii='#undef CONFIG_WII'
3960 _novomodules="wii $_novomodules"
3962 echores "$_wii"
3964 echocheck "tdfxvid"
3965 if test "$_tdfxvid" = yes ; then
3966 def_tdfxvid='#define CONFIG_TDFX_VID 1'
3967 _vomodules="tdfx_vid $_vomodules"
3968 else
3969 def_tdfxvid='#undef CONFIG_TDFX_VID'
3970 _novomodules="tdfx_vid $_novomodules"
3972 echores "$_tdfxvid"
3974 echocheck "xvr100"
3975 if test "$_xvr100" = auto ; then
3976 cat > $TMPC << EOF
3977 #include <unistd.h>
3978 #include <sys/fbio.h>
3979 #include <sys/visual_io.h>
3980 int main(void) {
3981 struct vis_identifier ident;
3982 struct fbgattr attr;
3983 ioctl(0, VIS_GETIDENTIFIER, &ident);
3984 ioctl(0, FBIOGATTR, &attr);
3985 return 0;
3988 _xvr100=no
3989 cc_check && _xvr100=yes
3991 if test "$_xvr100" = yes ; then
3992 def_xvr100='#define CONFIG_XVR100 1'
3993 _vomodules="xvr100 $_vomodules"
3994 else
3995 def_tdfxvid='#undef CONFIG_XVR100'
3996 _novomodules="xvr100 $_novomodules"
3998 echores "$_xvr100"
4000 echocheck "tga"
4001 if test "$_tga" = yes ; then
4002 def_tga='#define CONFIG_TGA 1'
4003 _vomodules="tga $_vomodules"
4004 else
4005 def_tga='#undef CONFIG_TGA'
4006 _novomodules="tga $_novomodules"
4008 echores "$_tga"
4011 echocheck "md5sum support"
4012 if test "$_md5sum" = yes; then
4013 def_md5sum="#define CONFIG_MD5SUM 1"
4014 _vomodules="md5sum $_vomodules"
4015 else
4016 def_md5sum="#undef CONFIG_MD5SUM"
4017 _novomodules="md5sum $_novomodules"
4019 echores "$_md5sum"
4022 echocheck "yuv4mpeg support"
4023 if test "$_yuv4mpeg" = yes; then
4024 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
4025 _vomodules="yuv4mpeg $_vomodules"
4026 else
4027 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
4028 _novomodules="yuv4mpeg $_novomodules"
4030 echores "$_yuv4mpeg"
4033 echocheck "bl"
4034 if test "$_bl" = yes ; then
4035 def_bl='#define CONFIG_BL 1'
4036 _vomodules="bl $_vomodules"
4037 else
4038 def_bl='#undef CONFIG_BL'
4039 _novomodules="bl $_novomodules"
4041 echores "$_bl"
4044 echocheck "DirectFB"
4045 if test "$_directfb" = auto ; then
4046 _directfb=no
4047 cat > $TMPC <<EOF
4048 #include <directfb.h>
4049 int main(void) { DirectFBInit(0, 0); return 0; }
4051 for _inc_tmp in "" -I/usr/local/include/directfb \
4052 -I/usr/include/directfb -I/usr/local/include; do
4053 cc_check $_inc_tmp -ldirectfb && _directfb=yes && \
4054 extra_cflags="$extra_cflags $_inc_tmp" && break
4055 done
4058 dfb_version() {
4059 expr $1 \* 65536 + $2 \* 256 + $3
4062 if test "$_directfb" = yes; then
4063 cat > $TMPC << EOF
4064 #include <directfb_version.h>
4066 dfb_ver = DIRECTFB_MAJOR_VERSION.DIRECTFB_MINOR_VERSION.DIRECTFB_MICRO_VERSION
4069 if $_cc -E $TMPC $extra_cflags > "$TMPEXE"; then
4070 _directfb_version=$(sed -n 's/^dfb_ver[^0-9]*\(.*\)/\1/p' "$TMPEXE" | tr -d '()')
4071 _dfb_major=$(echo $_directfb_version | cut -d . -f 1)
4072 _dfb_minor=$(echo $_directfb_version | cut -d . -f 2)
4073 _dfb_micro=$(echo $_directfb_version | cut -d . -f 3)
4074 _dfb_version=$(dfb_version $_dfb_major $_dfb_minor $_dfb_micro)
4075 if test "$_dfb_version" -ge $(dfb_version 0 9 13); then
4076 def_directfb_version="#define DIRECTFBVERSION $_dfb_version"
4077 _res_comment="$_directfb_version"
4078 test "$_dfb_version" -ge $(dfb_version 0 9 15) && _dfbmga=yes
4079 else
4080 def_directfb_version='#undef DIRECTFBVERSION'
4081 _directfb=no
4082 _res_comment="version >=0.9.13 required"
4084 else
4085 _directfb=no
4086 _res_comment="failed to get version"
4089 echores "$_directfb"
4091 if test "$_directfb" = yes ; then
4092 def_directfb='#define CONFIG_DIRECTFB 1'
4093 _vomodules="directfb $_vomodules"
4094 libs_mplayer="$libs_mplayer -ldirectfb"
4095 else
4096 def_directfb='#undef CONFIG_DIRECTFB'
4097 _novomodules="directfb $_novomodules"
4099 if test "$_dfbmga" = yes; then
4100 _vomodules="dfbmga $_vomodules"
4101 def_dfbmga='#define CONFIG_DFBMGA 1'
4102 else
4103 _novomodules="dfbmga $_novomodules"
4104 def_dfbmga='#undef CONFIG_DFBMGA'
4108 echocheck "X11 headers presence"
4109 _x11_headers="no"
4110 _res_comment="check if the dev(el) packages are installed"
4111 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
4112 if test -f "$I/X11/Xlib.h" ; then
4113 _x11_headers="yes"
4114 _res_comment=""
4115 break
4117 done
4118 if test $_cross_compile = no; then
4119 for I in /usr/X11/include /usr/X11R7/include /usr/X11R6/include \
4120 /usr/include/X11R6 /usr/openwin/include ; do
4121 if test -f "$I/X11/Xlib.h" ; then
4122 extra_cflags="$extra_cflags -I$I"
4123 _x11_headers="yes"
4124 _res_comment="using $I"
4125 break
4127 done
4129 echores "$_x11_headers"
4132 echocheck "X11"
4133 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
4134 cat > $TMPC <<EOF
4135 #include <X11/Xlib.h>
4136 #include <X11/Xutil.h>
4137 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; }
4139 for I in "" -L/usr/X11R7/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
4140 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/X11R6/lib64 \
4141 -L/usr/lib ; do
4142 if netbsd; then
4143 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
4144 else
4145 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
4147 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" \
4148 && _x11=yes && break
4149 done
4151 if test "$_x11" = yes ; then
4152 def_x11='#define CONFIG_X11 1'
4153 _vomodules="x11 xover $_vomodules"
4154 else
4155 _x11=no
4156 def_x11='#undef CONFIG_X11'
4157 _novomodules="x11 $_novomodules"
4158 _res_comment="check if the dev(el) packages are installed"
4159 # disable stuff that depends on X
4160 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
4162 echores "$_x11"
4164 echocheck "Xss screensaver extensions"
4165 if test "$_xss" = auto ; then
4166 cat > $TMPC << EOF
4167 #include <X11/Xlib.h>
4168 #include <X11/extensions/scrnsaver.h>
4169 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
4171 _xss=no
4172 cc_check -lXss && _xss=yes
4174 if test "$_xss" = yes ; then
4175 def_xss='#define CONFIG_XSS 1'
4176 libs_mplayer="$libs_mplayer -lXss"
4177 else
4178 def_xss='#undef CONFIG_XSS'
4180 echores "$_xss"
4182 echocheck "DPMS"
4183 _xdpms3=no
4184 _xdpms4=no
4185 if test "$_x11" = yes ; then
4186 cat > $TMPC <<EOF
4187 #include <X11/Xmd.h>
4188 #include <X11/Xlib.h>
4189 #include <X11/Xutil.h>
4190 #include <X11/Xatom.h>
4191 #include <X11/extensions/dpms.h>
4192 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4194 cc_check -lXdpms && _xdpms3=yes
4195 cat > $TMPC <<EOF
4196 #include <X11/Xlib.h>
4197 #include <X11/extensions/dpms.h>
4198 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4200 cc_check -lXext && _xdpms4=yes
4202 if test "$_xdpms4" = yes ; then
4203 def_xdpms='#define CONFIG_XDPMS 1'
4204 _res_comment="using Xdpms 4"
4205 echores "yes"
4206 elif test "$_xdpms3" = yes ; then
4207 def_xdpms='#define CONFIG_XDPMS 1'
4208 libs_mplayer="$libs_mplayer -lXdpms"
4209 _res_comment="using Xdpms 3"
4210 echores "yes"
4211 else
4212 def_xdpms='#undef CONFIG_XDPMS'
4213 echores "no"
4217 echocheck "Xv"
4218 if test "$_xv" = auto ; then
4219 cat > $TMPC <<EOF
4220 #include <X11/Xlib.h>
4221 #include <X11/extensions/Xvlib.h>
4222 int main(void) {
4223 (void) XvGetPortAttribute(0, 0, 0, 0);
4224 (void) XvQueryPortAttributes(0, 0, 0);
4225 return 0; }
4227 _xv=no
4228 cc_check -lXv && _xv=yes
4231 if test "$_xv" = yes ; then
4232 def_xv='#define CONFIG_XV 1'
4233 libs_mplayer="$libs_mplayer -lXv"
4234 _vomodules="xv $_vomodules"
4235 else
4236 def_xv='#undef CONFIG_XV'
4237 _novomodules="xv $_novomodules"
4239 echores "$_xv"
4242 echocheck "XvMC"
4243 if test "$_xv" = yes && test "$_xvmc" != no ; then
4244 _xvmc=no
4245 cat > $TMPC <<EOF
4246 #include <X11/Xlib.h>
4247 #include <X11/extensions/Xvlib.h>
4248 #include <X11/extensions/XvMClib.h>
4249 int main(void) {
4250 (void) XvMCQueryExtension(0,0,0);
4251 (void) XvMCCreateContext(0,0,0,0,0,0,0);
4252 return 0; }
4254 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
4255 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
4256 done
4258 if test "$_xvmc" = yes ; then
4259 def_xvmc='#define CONFIG_XVMC 1'
4260 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
4261 _vomodules="xvmc $_vomodules"
4262 _res_comment="using $_xvmclib"
4263 else
4264 def_xvmc='#define CONFIG_XVMC 0'
4265 _novomodules="xvmc $_novomodules"
4267 echores "$_xvmc"
4270 echocheck "VDPAU"
4271 if test "$_vdpau" = auto ; then
4272 _vdpau=no
4273 if test "$_dl" = yes ; then
4274 cat > $TMPC <<EOF
4275 #include <vdpau/vdpau_x11.h>
4276 int main(void) {return VDP_VIDEO_MIXER_ATTRIBUTE_SKIP_CHROMA_DEINTERLACE;}
4278 cc_check && _vdpau=yes
4281 if test "$_vdpau" = yes ; then
4282 def_vdpau='#define CONFIG_VDPAU 1'
4283 _vomodules="vdpau $_vomodules"
4284 else
4285 def_vdpau='#define CONFIG_VDPAU 0'
4286 _novomodules="vdpau $_novomodules"
4288 echores "$_vdpau"
4291 echocheck "Xinerama"
4292 if test "$_xinerama" = auto ; then
4293 cat > $TMPC <<EOF
4294 #include <X11/Xlib.h>
4295 #include <X11/extensions/Xinerama.h>
4296 int main(void) { (void) XineramaIsActive(0); return 0; }
4298 _xinerama=no
4299 cc_check -lXinerama && _xinerama=yes
4302 if test "$_xinerama" = yes ; then
4303 def_xinerama='#define CONFIG_XINERAMA 1'
4304 libs_mplayer="$libs_mplayer -lXinerama"
4305 else
4306 def_xinerama='#undef CONFIG_XINERAMA'
4308 echores "$_xinerama"
4311 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4312 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4313 # named 'X extensions' or something similar.
4314 # This check may be useful for future mplayer versions (to change resolution)
4315 # If you run into problems, remove '-lXxf86vm'.
4316 echocheck "Xxf86vm"
4317 if test "$_vm" = auto ; then
4318 cat > $TMPC <<EOF
4319 #include <X11/Xlib.h>
4320 #include <X11/extensions/xf86vmode.h>
4321 int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; }
4323 _vm=no
4324 cc_check -lXxf86vm && _vm=yes
4326 if test "$_vm" = yes ; then
4327 def_vm='#define CONFIG_XF86VM 1'
4328 libs_mplayer="$libs_mplayer -lXxf86vm"
4329 else
4330 def_vm='#undef CONFIG_XF86VM'
4332 echores "$_vm"
4334 # Check for the presence of special keycodes, like audio control buttons
4335 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4336 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4337 # have these new keycodes.
4338 echocheck "XF86keysym"
4339 if test "$_xf86keysym" = auto; then
4340 _xf86keysym=no
4341 cat > $TMPC <<EOF
4342 #include <X11/Xlib.h>
4343 #include <X11/XF86keysym.h>
4344 int main(void) { return XF86XK_AudioPause; }
4346 cc_check && _xf86keysym=yes
4348 if test "$_xf86keysym" = yes ; then
4349 def_xf86keysym='#define CONFIG_XF86XK 1'
4350 else
4351 def_xf86keysym='#undef CONFIG_XF86XK'
4353 echores "$_xf86keysym"
4355 echocheck "DGA"
4356 if test "$_dga2" = auto && test "$_x11" = yes ; then
4357 cat > $TMPC << EOF
4358 #include <X11/Xlib.h>
4359 #include <X11/extensions/xf86dga.h>
4360 int main(void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4362 _dga2=no
4363 cc_check -lXxf86dga && _dga2=yes
4365 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4366 cat > $TMPC << EOF
4367 #include <X11/Xlib.h>
4368 #include <X11/extensions/xf86dga.h>
4369 int main(void) { (void) XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4371 _dga1=no
4372 cc_check -lXxf86dga -lXxf86vm && _dga1=yes
4375 _dga=no
4376 def_dga='#undef CONFIG_DGA'
4377 def_dga1='#undef CONFIG_DGA1'
4378 def_dga2='#undef CONFIG_DGA2'
4379 if test "$_dga1" = yes ; then
4380 _dga=yes
4381 def_dga1='#define CONFIG_DGA1 1'
4382 _res_comment="using DGA 1.0"
4383 elif test "$_dga2" = yes ; then
4384 _dga=yes
4385 def_dga2='#define CONFIG_DGA2 1'
4386 _res_comment="using DGA 2.0"
4388 if test "$_dga" = yes ; then
4389 def_dga='#define CONFIG_DGA 1'
4390 libs_mplayer="$libs_mplayer -lXxf86dga"
4391 _vomodules="dga $_vomodules"
4392 else
4393 _novomodules="dga $_novomodules"
4395 echores "$_dga"
4398 echocheck "3dfx"
4399 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4400 def_3dfx='#define CONFIG_3DFX 1'
4401 _vomodules="3dfx $_vomodules"
4402 else
4403 def_3dfx='#undef CONFIG_3DFX'
4404 _novomodules="3dfx $_novomodules"
4406 echores "$_3dfx"
4409 echocheck "VIDIX"
4410 def_vidix='#undef CONFIG_VIDIX'
4411 def_vidix_drv_cyberblade='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4412 _vidix_drv_cyberblade=no
4413 def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4414 _vidix_drv_ivtv=no
4415 def_vidix_drv_mach64='#undef CONFIG_VIDIX_DRV_MACH64'
4416 _vidix_drv_mach64=no
4417 def_vidix_drv_mga='#undef CONFIG_VIDIX_DRV_MGA'
4418 _vidix_drv_mga=no
4419 def_vidix_drv_mga_crtc2='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4420 _vidix_drv_mga_crtc2=no
4421 def_vidix_drv_nvidia='#undef CONFIG_VIDIX_DRV_NVIDIA'
4422 _vidix_drv_nvidia=no
4423 def_vidix_drv_pm2='#undef CONFIG_VIDIX_DRV_PM2'
4424 _vidix_drv_pm2=no
4425 def_vidix_drv_pm3='#undef CONFIG_VIDIX_DRV_PM3'
4426 _vidix_drv_pm3=no
4427 def_vidix_drv_radeon='#undef CONFIG_VIDIX_DRV_RADEON'
4428 _vidix_drv_radeon=no
4429 def_vidix_drv_rage128='#undef CONFIG_VIDIX_DRV_RAGE128'
4430 _vidix_drv_rage128=no
4431 def_vidix_drv_s3='#undef CONFIG_VIDIX_DRV_S3'
4432 _vidix_drv_s3=no
4433 def_vidix_drv_sh_veu='#undef CONFIG_VIDIX_DRV_SH_VEU'
4434 _vidix_drv_sh_veu=no
4435 def_vidix_drv_sis='#undef CONFIG_VIDIX_DRV_SIS'
4436 _vidix_drv_sis=no
4437 def_vidix_drv_unichrome='#undef CONFIG_VIDIX_DRV_UNICHROME'
4438 _vidix_drv_unichrome=no
4439 if test "$_vidix" = auto ; then
4440 _vidix=no
4441 x86 && (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32) \
4442 && _vidix=yes
4443 x86_64 && win32 && _vidix=no
4444 (ppc || alpha) && linux && _vidix=yes
4446 echores "$_vidix"
4448 if test "$_vidix" = yes ; then
4449 def_vidix='#define CONFIG_VIDIX 1'
4450 _vomodules="cvidix $_vomodules"
4451 # FIXME: ivtv driver temporarily disabled until we have a proper test
4452 #test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4453 test "$_vidix_drivers" || _vidix_drivers="cyberblade mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4455 # some vidix drivers are architecture and os specific, discard them elsewhere
4456 x86 || _vidix_drivers=$(echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome// -e s/s3//)
4457 (test $host_arch = "sh" && linux) || _vidix_drivers=$(echo $_vidix_drivers | sed s/sh_veu//)
4459 for driver in $_vidix_drivers ; do
4460 uc_driver=$(echo $driver | tr '[a-z]' '[A-Z]')
4461 eval _vidix_drv_${driver}=yes
4462 eval def_vidix_drv_${driver}=\"\#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4463 done
4465 echocheck "VIDIX PCI device name database"
4466 echores "$_vidix_pcidb"
4467 if test "$_vidix_pcidb" = yes ; then
4468 _vidix_pcidb_val=1
4469 else
4470 _vidix_pcidb_val=0
4473 echocheck "VIDIX dhahelper support"
4474 test "$_dhahelper" = yes && cflags_dhahelper=-DCONFIG_DHAHELPER
4475 echores "$_dhahelper"
4477 echocheck "VIDIX svgalib_helper support"
4478 test "$_svgalib_helper" = yes && cflags_svgalib_helper=-DCONFIG_SVGAHELPER
4479 echores "$_svgalib_helper"
4481 else
4482 _novomodules="cvidix $_novomodules"
4485 if test "$_vidix" = yes && win32; then
4486 winvidix=yes
4487 _vomodules="winvidix $_vomodules"
4488 libs_mplayer="$libs_mplayer -lgdi32"
4489 else
4490 _novomodules="winvidix $_novomodules"
4492 if test "$_vidix" = yes && test "$_x11" = yes; then
4493 xvidix=yes
4494 _vomodules="xvidix $_vomodules"
4495 else
4496 _novomodules="xvidix $_novomodules"
4499 echocheck "GGI"
4500 if test "$_ggi" = auto ; then
4501 cat > $TMPC << EOF
4502 #include <ggi/ggi.h>
4503 int main(void) { ggiInit(); return 0; }
4505 _ggi=no
4506 cc_check -lggi && _ggi=yes
4508 if test "$_ggi" = yes ; then
4509 def_ggi='#define CONFIG_GGI 1'
4510 libs_mplayer="$libs_mplayer -lggi"
4511 _vomodules="ggi $_vomodules"
4512 else
4513 def_ggi='#undef CONFIG_GGI'
4514 _novomodules="ggi $_novomodules"
4516 echores "$_ggi"
4518 echocheck "GGI extension: libggiwmh"
4519 if test "$_ggiwmh" = auto ; then
4520 _ggiwmh=no
4521 cat > $TMPC << EOF
4522 #include <ggi/ggi.h>
4523 #include <ggi/wmh.h>
4524 int main(void) { ggiInit(); ggiWmhInit(); return 0; }
4526 cc_check -lggi -lggiwmh && _ggiwmh=yes
4528 # needed to get right output on obscure combination
4529 # like --disable-ggi --enable-ggiwmh
4530 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4531 def_ggiwmh='#define CONFIG_GGIWMH 1'
4532 libs_mplayer="$libs_mplayer -lggiwmh"
4533 else
4534 _ggiwmh=no
4535 def_ggiwmh='#undef CONFIG_GGIWMH'
4537 echores "$_ggiwmh"
4540 echocheck "AA"
4541 if test "$_aa" = auto ; then
4542 cat > $TMPC << EOF
4543 #include <aalib.h>
4544 extern struct aa_hardware_params aa_defparams;
4545 extern struct aa_renderparams aa_defrenderparams;
4546 int main(void) {
4547 aa_context *c;
4548 aa_renderparams *p;
4549 (void) aa_init(0, 0, 0);
4550 c = aa_autoinit(&aa_defparams);
4551 p = aa_getrenderparams();
4552 aa_autoinitkbd(c,0);
4553 return 0; }
4555 _aa=no
4556 for _ld_tmp in "-laa" ; do
4557 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4558 done
4560 if test "$_aa" = yes ; then
4561 def_aa='#define CONFIG_AA 1'
4562 if cygwin ; then
4563 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4565 _vomodules="aa $_vomodules"
4566 else
4567 def_aa='#undef CONFIG_AA'
4568 _novomodules="aa $_novomodules"
4570 echores "$_aa"
4573 echocheck "CACA"
4574 if test "$_caca" = auto ; then
4575 _caca=no
4576 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4577 cat > $TMPC << EOF
4578 #include <caca.h>
4579 #ifdef CACA_API_VERSION_1
4580 #include <caca0.h>
4581 #endif
4582 int main(void) { (void) caca_init(); return 0; }
4584 cc_check $(caca-config --libs) && _caca=yes
4587 if test "$_caca" = yes ; then
4588 def_caca='#define CONFIG_CACA 1'
4589 extra_cflags="$extra_cflags $(caca-config --cflags)"
4590 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4591 _vomodules="caca $_vomodules"
4592 else
4593 def_caca='#undef CONFIG_CACA'
4594 _novomodules="caca $_novomodules"
4596 echores "$_caca"
4599 echocheck "SVGAlib"
4600 if test "$_svga" = auto ; then
4601 cat > $TMPC << EOF
4602 #include <vga.h>
4603 int main(void) { return 0; }
4605 _svga=no
4606 cc_check -lvga $_ld_lm && _svga=yes
4608 if test "$_svga" = yes ; then
4609 def_svga='#define CONFIG_SVGALIB 1'
4610 libs_mplayer="$libs_mplayer -lvga"
4611 _vomodules="svga $_vomodules"
4612 else
4613 def_svga='#undef CONFIG_SVGALIB'
4614 _novomodules="svga $_novomodules"
4616 echores "$_svga"
4619 echocheck "FBDev"
4620 if test "$_fbdev" = auto ; then
4621 _fbdev=no
4622 linux && _fbdev=yes
4624 if test "$_fbdev" = yes ; then
4625 def_fbdev='#define CONFIG_FBDEV 1'
4626 _vomodules="fbdev $_vomodules"
4627 else
4628 def_fbdev='#undef CONFIG_FBDEV'
4629 _novomodules="fbdev $_novomodules"
4631 echores "$_fbdev"
4635 echocheck "DVB"
4636 if test "$_dvb" = auto ; then
4637 _dvb=no
4638 cat >$TMPC << EOF
4639 #include <poll.h>
4640 #include <sys/ioctl.h>
4641 #include <stdio.h>
4642 #include <time.h>
4643 #include <unistd.h>
4644 #include <ost/dmx.h>
4645 #include <ost/frontend.h>
4646 #include <ost/sec.h>
4647 #include <ost/video.h>
4648 #include <ost/audio.h>
4649 int main(void) {return 0;}
4651 for _inc_tmp in "" "-I/usr/src/DVB/ost/include" ; do
4652 cc_check $_inc_tmp && _dvb=yes && \
4653 extra_cflags="$extra_cflags $_inc_tmp" && break
4654 done
4656 echores "$_dvb"
4657 if test "$_dvb" = yes ; then
4658 def_dvb='#define CONFIG_DVB 1'
4659 def_dvbin='#define CONFIG_DVBIN 1'
4660 _aomodules="mpegpes(dvb) $_aomodules"
4661 _vomodules="mpegpes(dvb) $_vomodules"
4664 echocheck "DVB HEAD"
4665 if test "$_dvbhead" = auto ; then
4666 _dvbhead=no
4668 cat >$TMPC << EOF
4669 #include <poll.h>
4670 #include <sys/ioctl.h>
4671 #include <stdio.h>
4672 #include <time.h>
4673 #include <unistd.h>
4674 #include <linux/dvb/dmx.h>
4675 #include <linux/dvb/frontend.h>
4676 #include <linux/dvb/video.h>
4677 #include <linux/dvb/audio.h>
4678 int main(void) {return 0;}
4680 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4681 cc_check $_inc_tmp && _dvbhead=yes && \
4682 extra_cflags="$extra_cflags $_inc_tmp" && break
4683 done
4685 echores "$_dvbhead"
4686 if test "$_dvbhead" = yes ; then
4687 def_dvb='#define CONFIG_DVB 1'
4688 def_dvb_head='#define CONFIG_DVB_HEAD 1'
4689 def_dvbin='#define CONFIG_DVBIN 1'
4690 _aomodules="mpegpes(dvb) $_aomodules"
4691 _vomodules="mpegpes(dvb) $_vomodules"
4694 if test "$_dvbhead" = no && test "$_dvb" = no ; then
4695 def_dvb='#undef CONFIG_DVB'
4696 def_dvb_head='#undef CONFIG_DVB_HEAD'
4697 def_dvbin='#undef CONFIG_DVBIN '
4698 _aomodules="mpegpes(file) $_aomodules"
4699 _vomodules="mpegpes(file) $_vomodules"
4702 if test "$_dvb" = yes || test "$_dvbhead" = yes ; then
4703 _dvbin=yes
4704 _inputmodules="dvb $_inputmodules"
4705 else
4706 _dvbin=no
4707 _noinputmodules="dvb $_noinputmodules"
4711 if darwin; then
4713 echocheck "QuickTime"
4714 if test "$quicktime" = auto ; then
4715 cat > $TMPC <<EOF
4716 #include <QuickTime/QuickTime.h>
4717 int main(void) {
4718 ImageDescription *desc;
4719 EnterMovies();
4720 ExitMovies();
4721 return 0;
4724 quicktime=no
4725 cc_check -framework QuickTime && quicktime=yes
4727 if test "$quicktime" = yes ; then
4728 extra_ldflags="$extra_ldflags -framework QuickTime"
4729 def_quicktime='#define CONFIG_QUICKTIME 1'
4730 else
4731 def_quicktime='#undef CONFIG_QUICKTIME'
4732 _quartz=no
4734 echores $quicktime
4736 echocheck "Quartz"
4737 if test "$_quartz" = auto ; then
4738 cat > $TMPC <<EOF
4739 #include <Carbon/Carbon.h>
4740 int main(void) {
4741 CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false);
4742 return 0;
4745 _quartz=no
4746 cc_check -framework Carbon && _quartz=yes
4748 if test "$_quartz" = yes ; then
4749 libs_mplayer="$libs_mplayer -framework Carbon"
4750 def_quartz='#define CONFIG_QUARTZ 1'
4751 _vomodules="quartz $_vomodules"
4752 else
4753 def_quartz='#undef CONFIG_QUARTZ'
4754 _novomodules="quartz $_novomodules"
4756 echores $_quartz
4758 echocheck "CoreVideo"
4759 if test "$_corevideo" = auto ; then
4760 cat > $TMPC <<EOF
4761 #include <Carbon/Carbon.h>
4762 #include <CoreServices/CoreServices.h>
4763 #include <OpenGL/OpenGL.h>
4764 #include <QuartzCore/CoreVideo.h>
4765 int main(void) { return 0; }
4767 _corevideo=no
4768 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4770 if test "$_corevideo" = yes ; then
4771 _vomodules="corevideo $_vomodules"
4772 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4773 def_corevideo='#define CONFIG_COREVIDEO 1'
4774 else
4775 _novomodules="corevideo $_novomodules"
4776 def_corevideo='#undef CONFIG_COREVIDEO'
4778 echores "$_corevideo"
4780 fi #if darwin
4783 # make sure this stays below CoreVideo to avoid issues due to namespace
4784 # conflicts between -lGL and -framework OpenGL
4785 echocheck "OpenGL"
4786 #Note: this test is run even with --enable-gl since we autodetect linker flags
4787 if (test "$_x11" = yes || win32) && test "$_gl" != no ; then
4788 cat > $TMPC << EOF
4789 #ifdef GL_WIN32
4790 #include <windows.h>
4791 #include <GL/gl.h>
4792 #else
4793 #include <GL/gl.h>
4794 #include <X11/Xlib.h>
4795 #include <GL/glx.h>
4796 #endif
4797 int main(void) {
4798 #ifdef GL_WIN32
4799 HDC dc;
4800 wglCreateContext(dc);
4801 #else
4802 glXCreateContext(NULL, NULL, NULL, True);
4803 #endif
4804 glFinish();
4805 return 0;
4808 _gl=no
4809 if cc_check -lGL $_ld_lm ; then
4810 _gl=yes
4811 _gl_x11=yes
4812 libs_mplayer="$libs_mplayer -lGL $_ld_dl"
4813 elif cc_check -lGL $_ld_lm $_ld_pthread ; then
4814 _gl=yes
4815 _gl_x11=yes
4816 libs_mplayer="$libs_mplayer -lGL $_ld_pthread $_ld_dl"
4818 if cc_check -DGL_WIN32 -lopengl32 ; then
4819 _gl=yes
4820 _gl_win32=yes
4821 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
4823 else
4824 _gl=no
4826 if test "$_gl" = yes ; then
4827 def_gl='#define CONFIG_GL 1'
4828 _res_comment="backends:"
4829 if test "$_gl_win32" = yes ; then
4830 def_gl_win32='#define CONFIG_GL_WIN32 1'
4831 _res_comment="$_res_comment win32"
4833 if test "$_gl_x11" = yes ; then
4834 def_gl_x11='#define CONFIG_GL_X11 1'
4835 _res_comment="$_res_comment x11"
4837 _vomodules="opengl $_vomodules"
4838 else
4839 def_gl='#undef CONFIG_GL'
4840 def_gl_win32='#undef CONFIG_GL_WIN32'
4841 def_gl_x11='#undef CONFIG_GL_X11'
4842 _novomodules="opengl $_novomodules"
4844 echores "$_gl"
4847 echocheck "MatrixView"
4848 if test "$_gl" = no ; then
4849 matrixview=no
4851 if test "$matrixview" = yes ; then
4852 _vomodules="matrixview $_vomodules"
4853 def_matrixview='#define CONFIG_MATRIXVIEW 1'
4854 else
4855 _novomodules="matrixview $_novomodules"
4856 def_matrixview='#undef CONFIG_MATRIXVIEW'
4858 echores "$matrixview"
4861 echocheck "PNG support"
4862 if test "$_png" = auto ; then
4863 _png=no
4864 if irix ; then
4865 # Don't check for -lpng on irix since it has its own libpng
4866 # incompatible with the GNU libpng
4867 _res_comment="disabled on irix (not GNU libpng)"
4868 else
4869 cat > $TMPC << EOF
4870 #include <png.h>
4871 #include <string.h>
4872 int main(void) {
4873 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4874 printf("libpng: %s\n", png_libpng_ver);
4875 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4878 cc_check -lpng -lz $_ld_lm && _png=yes
4881 echores "$_png"
4882 if test "$_png" = yes ; then
4883 def_png='#define CONFIG_PNG 1'
4884 extra_ldflags="$extra_ldflags -lpng -lz"
4885 else
4886 def_png='#undef CONFIG_PNG'
4889 echocheck "MNG support"
4890 if test "$_mng" = auto ; then
4891 _mng=no
4892 cat > $TMPC << EOF
4893 #include <libmng.h>
4894 int main(void) {
4895 const char * p_ver = mng_version_text();
4896 return !p_ver || p_ver[0] == 0;
4899 if cc_check -lmng -lz $_ld_lm ; then
4900 _mng=yes
4903 echores "$_mng"
4904 if test "$_mng" = yes ; then
4905 def_mng='#define CONFIG_MNG 1'
4906 extra_ldflags="$extra_ldflags -lmng -lz"
4907 else
4908 def_mng='#undef CONFIG_MNG'
4911 echocheck "JPEG support"
4912 if test "$_jpeg" = auto ; then
4913 _jpeg=no
4914 cat > $TMPC << EOF
4915 #include <stdio.h>
4916 #include <stdlib.h>
4917 #include <setjmp.h>
4918 #include <string.h>
4919 #include <jpeglib.h>
4920 int main(void) { return 0; }
4922 cc_check -ljpeg $_ld_lm && _jpeg=yes
4924 echores "$_jpeg"
4926 if test "$_jpeg" = yes ; then
4927 def_jpeg='#define CONFIG_JPEG 1'
4928 _vomodules="jpeg $_vomodules"
4929 extra_ldflags="$extra_ldflags -ljpeg"
4930 else
4931 def_jpeg='#undef CONFIG_JPEG'
4932 _novomodules="jpeg $_novomodules"
4937 echocheck "PNM support"
4938 if test "$_pnm" = yes; then
4939 def_pnm="#define CONFIG_PNM 1"
4940 _vomodules="pnm $_vomodules"
4941 else
4942 def_pnm="#undef CONFIG_PNM"
4943 _novomodules="pnm $_novomodules"
4945 echores "$_pnm"
4949 echocheck "GIF support"
4950 # This is to appease people who want to force gif support.
4951 # If it is forced to yes, then we still do checks to determine
4952 # which gif library to use.
4953 if test "$_gif" = yes ; then
4954 _force_gif=yes
4955 _gif=auto
4958 if test "$_gif" = auto ; then
4959 _gif=no
4960 cat > $TMPC << EOF
4961 #include <gif_lib.h>
4962 int main(void) { return 0; }
4964 for _ld_gif in "-lungif" "-lgif" ; do
4965 cc_check $_ld_gif && _gif=yes && break
4966 done
4969 # If no library was found, and the user wants support forced,
4970 # then we force it on with libgif, as this is the safest
4971 # assumption IMHO. (libungif & libregif both create symbolic
4972 # links to libgif. We also assume that no x11 support is needed,
4973 # because if you are forcing this, then you _should_ know what
4974 # you are doing. [ Besides, package maintainers should never
4975 # have compiled x11 deps into libungif in the first place. ] )
4976 # </rant>
4977 # --Joey
4978 if test "$_force_gif" = yes && test "$_gif" = no ; then
4979 _gif=yes
4980 _ld_gif="-lgif"
4983 if test "$_gif" = yes ; then
4984 def_gif='#define CONFIG_GIF 1'
4985 _codecmodules="gif $_codecmodules"
4986 _vomodules="gif89a $_vomodules"
4987 _res_comment="old version, some encoding functions disabled"
4988 def_gif_4='#undef CONFIG_GIF_4'
4989 extra_ldflags="$extra_ldflags $_ld_gif"
4991 cat > $TMPC << EOF
4992 #include <signal.h>
4993 #include <gif_lib.h>
4994 void catch() { exit(1); }
4995 int main(void) {
4996 signal(SIGSEGV, catch); // catch segfault
4997 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4998 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4999 return 0;
5002 if cc_check "$_ld_gif" ; then
5003 def_gif_4='#define CONFIG_GIF_4 1'
5004 _res_comment=""
5006 else
5007 def_gif='#undef CONFIG_GIF'
5008 def_gif_4='#undef CONFIG_GIF_4'
5009 _novomodules="gif89a $_novomodules"
5010 _nocodecmodules="gif $_nocodecmodules"
5012 echores "$_gif"
5015 case "$_gif" in yes*)
5016 echocheck "broken giflib workaround"
5017 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
5019 cat > $TMPC << EOF
5020 #include <gif_lib.h>
5021 int main(void) {
5022 GifFileType gif;
5023 printf("UserData is at address %p\n", gif.UserData);
5024 return 0;
5027 if cc_check "$_ld_gif" ; then
5028 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
5029 echores "disabled"
5030 else
5031 echores "enabled"
5034 esac
5037 echocheck "VESA support"
5038 if test "$_vesa" = auto ; then
5039 cat > $TMPC << EOF
5040 #include <vbe.h>
5041 int main(void) { vbeVersion(); return 0; }
5043 _vesa=no
5044 cc_check -lvbe -llrmi && _vesa=yes
5046 if test "$_vesa" = yes ; then
5047 def_vesa='#define CONFIG_VESA 1'
5048 libs_mplayer="$libs_mplayer -lvbe -llrmi"
5049 _vomodules="vesa $_vomodules"
5050 else
5051 def_vesa='#undef CONFIG_VESA'
5052 _novomodules="vesa $_novomodules"
5054 echores "$_vesa"
5056 #################
5057 # VIDEO + AUDIO #
5058 #################
5061 echocheck "SDL"
5062 _inc_tmp=""
5063 _ld_tmp=""
5064 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
5065 if test -z "$_sdlconfig" ; then
5066 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
5067 _sdlconfig="sdl-config"
5068 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
5069 _sdlconfig="sdl11-config"
5070 else
5071 _sdlconfig=false
5074 if test "$_sdl" = auto || test "$_sdl" = yes ; then
5075 cat > $TMPC << EOF
5076 #ifdef CONFIG_SDL_SDL_H
5077 #include <SDL/SDL.h>
5078 #else
5079 #include <SDL.h>
5080 #endif
5081 #ifndef __APPLE__
5082 // we allow SDL hacking our main() only on OSX
5083 #undef main
5084 #endif
5085 int main(int argc, char *argv[]) {
5086 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
5087 return 0;
5090 _sdl=no
5091 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" ; do
5092 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
5093 _sdl=yes
5094 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
5095 break
5097 done
5098 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
5099 if cygwin ; then
5100 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
5101 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
5102 elif mingw32 ; then
5103 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
5104 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
5105 else
5106 _inc_tmp="$($_sdlconfig --cflags)"
5107 _ld_tmp="$($_sdlconfig --libs)"
5109 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
5110 _sdlversion=$($_sdlconfig --version | sed 's/[^0-9]//g')
5111 if test "$_sdlversion" -gt 116 ; then
5112 if test "$_sdlversion" -lt 121 ; then
5113 def_sdlbuggy='#define BUGGY_SDL'
5114 else
5115 def_sdlbuggy='#undef BUGGY_SDL'
5117 _sdl=yes
5122 if test "$_sdl" = yes ; then
5123 def_sdl='#define CONFIG_SDL 1'
5124 extra_cflags="$extra_cflags $_inc_tmp"
5125 libs_mplayer="$libs_mplayer $_ld_tmp"
5126 _vomodules="sdl $_vomodules"
5127 _aomodules="sdl $_aomodules"
5128 _res_comment="using $_sdlconfig"
5129 else
5130 def_sdl='#undef CONFIG_SDL'
5131 _novomodules="sdl $_novomodules"
5132 _noaomodules="sdl $_noaomodules"
5134 echores "$_sdl"
5137 if os2 ; then
5138 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
5139 if test "$_kva" = auto; then
5140 cat > $TMPC << EOF
5141 #include <os2.h>
5142 #include <kva.h>
5143 int main( void ) { return 0; }
5145 _kva=no;
5146 cc_check -lkva && _kva=yes
5148 if test "$_kva" = yes ; then
5149 def_kva='#define CONFIG_KVA 1'
5150 libs_mplayer="$libs_mplayer -lkva"
5151 _vomodules="kva $_vomodules"
5152 else
5153 def_kva='#undef CONFIG_KVA'
5154 _novomodules="kva $_novomodules"
5156 echores "$_kva"
5157 fi #if os2
5160 if win32; then
5162 echocheck "Windows waveout"
5163 if test "$_win32waveout" = auto ; then
5164 cat > $TMPC << EOF
5165 #include <windows.h>
5166 #include <mmsystem.h>
5167 int main(void) { return 0; }
5169 _win32waveout=no
5170 cc_check -lwinmm && _win32waveout=yes
5172 if test "$_win32waveout" = yes ; then
5173 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
5174 libs_mplayer="$libs_mplayer -lwinmm"
5175 _aomodules="win32 $_aomodules"
5176 else
5177 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
5178 _noaomodules="win32 $_noaomodules"
5180 echores "$_win32waveout"
5182 echocheck "Direct3D"
5183 if test "$_direct3d" = auto ; then
5184 cat > $TMPC << EOF
5185 #include <windows.h>
5186 #include <d3d9.h>
5187 int main(void) { return 0; }
5189 _direct3d=no
5190 cc_check && _direct3d=yes
5192 if test "$_direct3d" = yes ; then
5193 def_direct3d='#define CONFIG_DIRECT3D 1'
5194 _vomodules="direct3d $_vomodules"
5195 else
5196 def_direct3d='#undef CONFIG_DIRECT3D'
5197 _novomodules="direct3d $_novomodules"
5199 echores "$_direct3d"
5201 echocheck "Directx"
5202 if test "$_directx" = auto ; then
5203 cat > $TMPC << EOF
5204 #include <windows.h>
5205 #include <ddraw.h>
5206 #include <dsound.h>
5207 int main(void) { return 0; }
5209 _directx=no
5210 cc_check -lgdi32 && _directx=yes
5212 if test "$_directx" = yes ; then
5213 def_directx='#define CONFIG_DIRECTX 1'
5214 libs_mplayer="$libs_mplayer -lgdi32"
5215 _vomodules="directx $_vomodules"
5216 _aomodules="dsound $_aomodules"
5217 else
5218 def_directx='#undef CONFIG_DIRECTX'
5219 _novomodules="directx $_novomodules"
5220 _noaomodules="dsound $_noaomodules"
5222 echores "$_directx"
5224 fi #if win32; then
5227 echocheck "DXR2"
5228 if test "$_dxr2" = auto; then
5229 _dxr2=no
5230 cat > $TMPC << EOF
5231 #include <dxr2ioctl.h>
5232 int main(void) { return 0; }
5234 for _inc_tmp in "" -I/usr/local/include/dxr2 -I/usr/include/dxr2; do
5235 cc_check $_inc_tmp && _dxr2=yes && \
5236 extra_cflags="$extra_cflags $_inc_tmp" && break
5237 done
5239 if test "$_dxr2" = yes; then
5240 def_dxr2='#define CONFIG_DXR2 1'
5241 _aomodules="dxr2 $_aomodules"
5242 _vomodules="dxr2 $_vomodules"
5243 else
5244 def_dxr2='#undef CONFIG_DXR2'
5245 _noaomodules="dxr2 $_noaomodules"
5246 _novomodules="dxr2 $_novomodules"
5248 echores "$_dxr2"
5250 echocheck "DXR3/H+"
5251 if test "$_dxr3" = auto ; then
5252 cat > $TMPC << EOF
5253 #include <linux/em8300.h>
5254 int main(void) { return 0; }
5256 _dxr3=no
5257 cc_check && _dxr3=yes
5259 if test "$_dxr3" = yes ; then
5260 def_dxr3='#define CONFIG_DXR3 1'
5261 _vomodules="dxr3 $_vomodules"
5262 else
5263 def_dxr3='#undef CONFIG_DXR3'
5264 _novomodules="dxr3 $_novomodules"
5266 echores "$_dxr3"
5269 echocheck "IVTV TV-Out (pre linux-2.6.24)"
5270 if test "$_ivtv" = auto ; then
5271 cat > $TMPC << EOF
5272 #include <stdlib.h>
5273 #include <inttypes.h>
5274 #include <linux/types.h>
5275 #include <linux/videodev2.h>
5276 #include <linux/ivtv.h>
5277 #include <sys/ioctl.h>
5278 int main(void) {
5279 struct ivtv_cfg_stop_decode sd;
5280 struct ivtv_cfg_start_decode sd1;
5281 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
5282 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
5283 return 0; }
5285 _ivtv=no
5286 cc_check && _ivtv=yes
5288 if test "$_ivtv" = yes ; then
5289 def_ivtv='#define CONFIG_IVTV 1'
5290 _vomodules="ivtv $_vomodules"
5291 _aomodules="ivtv $_aomodules"
5292 else
5293 def_ivtv='#undef CONFIG_IVTV'
5294 _novomodules="ivtv $_novomodules"
5295 _noaomodules="ivtv $_noaomodules"
5297 echores "$_ivtv"
5300 echocheck "V4L2 MPEG Decoder"
5301 if test "$_v4l2" = auto ; then
5302 cat > $TMPC << EOF
5303 #include <stdlib.h>
5304 #include <inttypes.h>
5305 #include <linux/types.h>
5306 #include <linux/videodev2.h>
5307 #include <linux/version.h>
5308 int main(void) {
5309 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
5310 #error kernel headers too old, need 2.6.22
5311 #endif
5312 struct v4l2_ext_controls ctrls;
5313 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
5314 return 0;
5317 _v4l2=no
5318 cc_check && _v4l2=yes
5320 if test "$_v4l2" = yes ; then
5321 def_v4l2='#define CONFIG_V4L2_DECODER 1'
5322 _vomodules="v4l2 $_vomodules"
5323 _aomodules="v4l2 $_aomodules"
5324 else
5325 def_v4l2='#undef CONFIG_V4L2_DECODER'
5326 _novomodules="v4l2 $_novomodules"
5327 _noaomodules="v4l2 $_noaomodules"
5329 echores "$_v4l2"
5333 #########
5334 # AUDIO #
5335 #########
5338 echocheck "OSS Audio"
5339 if test "$_ossaudio" = auto ; then
5340 cat > $TMPC << EOF
5341 #include <sys/ioctl.h>
5342 #include <$_soundcard_header>
5343 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
5345 _ossaudio=no
5346 cc_check && _ossaudio=yes
5348 if test "$_ossaudio" = yes ; then
5349 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
5350 _aomodules="oss $_aomodules"
5351 if test "$_linux_devfs" = yes; then
5352 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound/dsp"'
5353 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/sound/mixer"'
5354 else
5355 cat > $TMPC << EOF
5356 #include <sys/ioctl.h>
5357 #include <$_soundcard_header>
5358 #ifdef OPEN_SOUND_SYSTEM
5359 int main(void) { return 0; }
5360 #else
5361 #error Not the real thing
5362 #endif
5364 _real_ossaudio=no
5365 cc_check && _real_ossaudio=yes
5366 if test "$_real_ossaudio" = yes; then
5367 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5368 # Check for OSS4 headers (override default headers)
5369 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
5370 if test -f /etc/oss.conf; then
5371 . /etc/oss.conf
5372 _ossinc="$OSSLIBDIR/include"
5373 if test -f "$_ossinc/sys/soundcard.h"; then
5374 extra_cflags="-I$_ossinc $extra_cflags"
5377 elif netbsd || openbsd ; then
5378 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
5379 extra_ldflags="$extra_ldflags -lossaudio"
5380 else
5381 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5383 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
5385 else
5386 def_ossaudio='#undef CONFIG_OSS_AUDIO'
5387 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
5388 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
5389 _noaomodules="oss $_noaomodules"
5391 echores "$_ossaudio"
5394 echocheck "aRts"
5395 if test "$_arts" = auto ; then
5396 _arts=no
5397 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
5399 cat > $TMPC << EOF
5400 #include <artsc.h>
5401 int main(void) { return 0; }
5403 cc_check $(artsc-config --libs) $(artsc-config --cflags) && _arts=yes
5408 if test "$_arts" = yes ; then
5409 def_arts='#define CONFIG_ARTS 1'
5410 _aomodules="arts $_aomodules"
5411 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
5412 extra_cflags="$extra_cflags $(artsc-config --cflags)"
5413 else
5414 _noaomodules="arts $_noaomodules"
5416 echores "$_arts"
5419 echocheck "EsounD"
5420 if test "$_esd" = auto ; then
5421 _esd=no
5422 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
5424 cat > $TMPC << EOF
5425 #include <esd.h>
5426 int main(void) { int fd = esd_open_sound("test"); return fd; }
5428 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd=yes
5432 echores "$_esd"
5434 if test "$_esd" = yes ; then
5435 def_esd='#define CONFIG_ESD 1'
5436 _aomodules="esd $_aomodules"
5437 libs_mplayer="$libs_mplayer $(esd-config --libs)"
5438 extra_cflags="$extra_cflags $(esd-config --cflags)"
5440 echocheck "esd_get_latency()"
5441 cat > $TMPC << EOF
5442 #include <esd.h>
5443 int main(void) { return esd_get_latency(0); }
5445 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
5446 echores "$_esd_latency"
5447 else
5448 def_esd='#undef CONFIG_ESD'
5449 def_esd_latency='#undef CONFIG_ESD_LATENCY'
5450 _noaomodules="esd $_noaomodules"
5454 echocheck "NAS"
5455 if test "$_nas" = auto ; then
5456 cat > $TMPC << EOF
5457 #include <audio/audiolib.h>
5458 int main(void) { return 0; }
5460 _nas=no
5461 cc_check $_ld_lm -laudio -lXt && _nas=yes
5463 if test "$_nas" = yes ; then
5464 def_nas='#define CONFIG_NAS 1'
5465 libs_mplayer="$libs_mplayer -laudio -lXt"
5466 _aomodules="nas $_aomodules"
5467 else
5468 _noaomodules="nas $_noaomodules"
5469 def_nas='#undef CONFIG_NAS'
5471 echores "$_nas"
5474 echocheck "pulse"
5475 if test "$_pulse" = auto ; then
5476 _pulse=no
5477 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5479 cat > $TMPC << EOF
5480 #include <pulse/pulseaudio.h>
5481 int main(void) { return 0; }
5483 cc_check $($_pkg_config --libs --cflags libpulse) && _pulse=yes
5487 echores "$_pulse"
5489 if test "$_pulse" = yes ; then
5490 def_pulse='#define CONFIG_PULSE 1'
5491 _aomodules="pulse $_aomodules"
5492 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
5493 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
5494 else
5495 def_pulse='#undef CONFIG_PULSE'
5496 _noaomodules="pulse $_noaomodules"
5500 echocheck "JACK"
5501 if test "$_jack" = auto ; then
5502 _jack=yes
5504 cat > $TMPC << EOF
5505 #include <jack/jack.h>
5506 int main(void) { jack_client_open("test", JackUseExactName, NULL); return 0; }
5508 if cc_check -ljack ; then
5509 libs_mplayer="$libs_mplayer -ljack"
5510 elif cc_check $($_pkg_config --libs --cflags --silence-errors jack) ; then
5511 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
5512 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
5513 else
5514 _jack=no
5518 if test "$_jack" = yes ; then
5519 def_jack='#define CONFIG_JACK 1'
5520 _aomodules="jack $_aomodules"
5521 else
5522 _noaomodules="jack $_noaomodules"
5524 echores "$_jack"
5526 echocheck "OpenAL"
5527 if test "$_openal" = auto ; then
5528 _openal=no
5529 cat > $TMPC << EOF
5530 #ifdef OPENAL_AL_H
5531 #include <OpenAL/al.h>
5532 #else
5533 #include <AL/al.h>
5534 #endif
5535 int main(void) {
5536 alSourceQueueBuffers(0, 0, 0);
5537 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5538 return 0;
5541 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5542 cc_check $I && _openal=yes && break
5543 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5544 done
5545 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
5547 if test "$_openal" = yes ; then
5548 def_openal='#define CONFIG_OPENAL 1'
5549 _aomodules="openal $_aomodules"
5550 else
5551 _noaomodules="openal $_noaomodules"
5553 echores "$_openal"
5555 echocheck "ALSA audio"
5556 if test "$_alloca" != yes ; then
5557 _alsa=no
5558 _res_comment="alloca missing"
5560 if test "$_alsa" != no ; then
5561 _alsa=no
5562 cat > $TMPC << EOF
5563 #include <sys/time.h>
5564 #include <sys/asoundlib.h>
5565 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5566 #error "alsa version != 0.5.x"
5567 #endif
5568 int main(void) { return 0; }
5570 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5572 cat > $TMPC << EOF
5573 #include <sys/time.h>
5574 #include <sys/asoundlib.h>
5575 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5576 #error "alsa version != 0.9.x"
5577 #endif
5578 int main(void) { return 0; }
5580 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5581 cat > $TMPC << EOF
5582 #include <sys/time.h>
5583 #include <alsa/asoundlib.h>
5584 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5585 #error "alsa version != 0.9.x"
5586 #endif
5587 int main(void) { return 0; }
5589 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5591 cat > $TMPC << EOF
5592 #include <sys/time.h>
5593 #include <sys/asoundlib.h>
5594 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5595 #error "alsa version != 1.0.x"
5596 #endif
5597 int main(void) { return 0; }
5599 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5600 cat > $TMPC << EOF
5601 #include <sys/time.h>
5602 #include <alsa/asoundlib.h>
5603 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5604 #error "alsa version != 1.0.x"
5605 #endif
5606 int main(void) { return 0; }
5608 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5610 def_alsa='#undef CONFIG_ALSA'
5611 def_alsa5='#undef CONFIG_ALSA5'
5612 def_alsa9='#undef CONFIG_ALSA9'
5613 def_alsa1x='#undef CONFIG_ALSA1X'
5614 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5615 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5616 if test "$_alsaver" ; then
5617 _alsa=yes
5618 if test "$_alsaver" = '0.5.x' ; then
5619 _alsa5=yes
5620 _aomodules="alsa5 $_aomodules"
5621 def_alsa5='#define CONFIG_ALSA5 1'
5622 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5623 _res_comment="using alsa 0.5.x and sys/asoundlib.h"
5624 elif test "$_alsaver" = '0.9.x-sys' ; then
5625 _alsa9=yes
5626 _aomodules="alsa $_aomodules"
5627 def_alsa='#define CONFIG_ALSA 1'
5628 def_alsa9='#define CONFIG_ALSA9 1'
5629 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5630 _res_comment="using alsa 0.9.x and sys/asoundlib.h"
5631 elif test "$_alsaver" = '0.9.x-alsa' ; then
5632 _alsa9=yes
5633 _aomodules="alsa $_aomodules"
5634 def_alsa='#define CONFIG_ALSA 1'
5635 def_alsa9='#define CONFIG_ALSA9 1'
5636 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5637 _res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5638 elif test "$_alsaver" = '1.0.x-sys' ; then
5639 _alsa1x=yes
5640 _aomodules="alsa $_aomodules"
5641 def_alsa='#define CONFIG_ALSA 1'
5642 def_alsa1x="#define CONFIG_ALSA1X 1"
5643 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5644 _res_comment="using alsa 1.0.x and sys/asoundlib.h"
5645 elif test "$_alsaver" = '1.0.x-alsa' ; then
5646 _alsa1x=yes
5647 _aomodules="alsa $_aomodules"
5648 def_alsa='#define CONFIG_ALSA 1'
5649 def_alsa1x="#define CONFIG_ALSA1X 1"
5650 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5651 _res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5652 else
5653 _alsa=no
5654 _res_comment="unknown version"
5656 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5657 else
5658 _noaomodules="alsa $_noaomodules"
5660 echores "$_alsa"
5663 echocheck "Sun audio"
5664 if test "$_sunaudio" = auto ; then
5665 cat > $TMPC << EOF
5666 #include <sys/types.h>
5667 #include <sys/audioio.h>
5668 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5670 _sunaudio=no
5671 cc_check && _sunaudio=yes
5673 if test "$_sunaudio" = yes ; then
5674 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5675 _aomodules="sun $_aomodules"
5676 else
5677 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5678 _noaomodules="sun $_noaomodules"
5680 echores "$_sunaudio"
5683 def_mlib='#define CONFIG_MLIB 0'
5684 if sunos; then
5685 echocheck "Sun mediaLib"
5686 if test "$_mlib" = auto ; then
5687 _mlib=no
5688 cat > $TMPC << EOF
5689 #include <mlib.h>
5690 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; }
5692 cc_check -lmlib && _mlib=yes && def_mlib='#define CONFIG_MLIB 1'
5694 echores "$_mlib"
5695 fi #if sunos
5698 if darwin; then
5699 echocheck "CoreAudio"
5700 if test "$_coreaudio" = auto ; then
5701 cat > $TMPC <<EOF
5702 #include <CoreAudio/CoreAudio.h>
5703 #include <AudioToolbox/AudioToolbox.h>
5704 #include <AudioUnit/AudioUnit.h>
5705 int main(void) { return 0; }
5707 _coreaudio=no
5708 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5710 if test "$_coreaudio" = yes ; then
5711 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5712 def_coreaudio='#define CONFIG_COREAUDIO 1'
5713 _aomodules="coreaudio $_aomodules"
5714 else
5715 def_coreaudio='#undef CONFIG_COREAUDIO'
5716 _noaomodules="coreaudio $_noaomodules"
5718 echores $_coreaudio
5719 fi #if darwin
5722 if irix; then
5723 echocheck "SGI audio"
5724 if test "$_sgiaudio" = auto ; then
5725 # check for SGI audio
5726 cat > $TMPC << EOF
5727 #include <dmedia/audio.h>
5728 int main(void) { return 0; }
5730 _sgiaudio=no
5731 cc_check && _sgiaudio=yes
5733 if test "$_sgiaudio" = "yes" ; then
5734 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5735 libs_mplayer="$libs_mplayer -laudio"
5736 _aomodules="sgi $_aomodules"
5737 else
5738 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5739 _noaomodules="sgi $_noaomodules"
5741 echores "$_sgiaudio"
5742 fi #if irix
5745 if os2 ; then
5746 echocheck "DART"
5747 if test "$_dart" = auto; then
5748 cat > $TMPC << EOF
5749 #include <os2.h>
5750 #include <dart.h>
5751 int main( void ) { return 0; }
5753 _dart=no;
5754 cc_check -ldart && _dart=yes
5756 if test "$_dart" = yes ; then
5757 def_dart='#define CONFIG_DART 1'
5758 libs_mplayer="$libs_mplayer -ldart"
5759 _aomodules="dart $_aomodules"
5760 else
5761 def_dart='#undef CONFIG_DART'
5762 _noaomodules="dart $_noaomodules"
5764 echores "$_dart"
5765 fi #if os2
5768 # set default CD/DVD devices
5769 if win32 || os2 ; then
5770 default_cdrom_device="D:"
5771 elif darwin ; then
5772 default_cdrom_device="/dev/disk1"
5773 elif dragonfly ; then
5774 default_cdrom_device="/dev/cd0"
5775 elif freebsd ; then
5776 default_cdrom_device="/dev/acd0"
5777 elif openbsd ; then
5778 default_cdrom_device="/dev/rcd0a"
5779 elif sunos ; then
5780 default_cdrom_device="/vol/dev/aliases/cdrom0"
5781 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5782 # file system and the volfs service.
5783 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5784 elif amigaos ; then
5785 default_cdrom_device="a1ide.device:2"
5786 else
5787 default_cdrom_device="/dev/cdrom"
5790 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5791 default_dvd_device=$default_cdrom_device
5792 elif darwin ; then
5793 default_dvd_device="/dev/rdiskN"
5794 else
5795 default_dvd_device="/dev/dvd"
5799 echocheck "VCD support"
5800 if test "$_vcd" = auto; then
5801 _vcd=no
5802 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos; then
5803 _vcd=yes
5804 elif mingw32; then
5805 cat > $TMPC << EOF
5806 #include <ddk/ntddcdrm.h>
5807 int main(void) { return 0; }
5809 cc_check && _vcd=yes
5812 if test "$_vcd" = yes; then
5813 _inputmodules="vcd $_inputmodules"
5814 def_vcd='#define CONFIG_VCD 1'
5815 else
5816 def_vcd='#undef CONFIG_VCD'
5817 _noinputmodules="vcd $_noinputmodules"
5818 _res_comment="not supported on this OS"
5820 echores "$_vcd"
5824 echocheck "dvdread"
5825 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5826 _dvdread_internal=no
5828 if test "$_dvdread_internal" = auto ; then
5829 _dvdread_internal=no
5830 _dvdread=no
5831 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) \
5832 && (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
5833 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) \
5834 || darwin || win32 || os2; then
5835 _dvdread_internal=yes
5836 _dvdread=yes
5837 extra_cflags="-Ilibdvdread4 $extra_cflags"
5839 elif test "$_dvdread" = auto ; then
5840 _dvdread=no
5841 if test "$_dl" = yes; then
5842 cat > $TMPC << EOF
5843 #include <inttypes.h>
5844 #include <dvdread/dvd_reader.h>
5845 #include <dvdread/ifo_types.h>
5846 #include <dvdread/ifo_read.h>
5847 #include <dvdread/nav_read.h>
5848 int main(void) { return 0; }
5850 _dvdreadcflags=$($_dvdreadconfig --cflags)
5851 _dvdreadlibs=$($_dvdreadconfig --libs)
5852 if cc_check -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
5853 $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5854 _dvdread=yes
5855 extra_cflags="$extra_cflags $_dvdreadcflags"
5856 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5857 _res_comment="external"
5862 if test "$_dvdread_internal" = yes; then
5863 def_dvdread='#define CONFIG_DVDREAD 1'
5864 _inputmodules="dvdread(internal) $_inputmodules"
5865 _largefiles=yes
5866 _res_comment="internal"
5867 elif test "$_dvdread" = yes; then
5868 def_dvdread='#define CONFIG_DVDREAD 1'
5869 _largefiles=yes
5870 extra_ldflags="$extra_ldflags -ldvdread"
5871 _inputmodules="dvdread(external) $_inputmodules"
5872 _res_comment="external"
5873 else
5874 def_dvdread='#undef CONFIG_DVDREAD'
5875 _noinputmodules="dvdread $_noinputmodules"
5877 echores "$_dvdread"
5880 echocheck "internal libdvdcss"
5881 if test "$_libdvdcss_internal" = auto ; then
5882 _libdvdcss_internal=no
5883 test "$_dvdread_internal" = yes && _libdvdcss_internal=yes
5884 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5886 if test "$_libdvdcss_internal" = yes ; then
5887 if linux || netbsd || openbsd || bsdos ; then
5888 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5889 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5890 elif freebsd || dragonfly ; then
5891 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5892 elif darwin ; then
5893 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5894 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5895 elif cygwin ; then
5896 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5897 elif beos ; then
5898 cflags_libdvdcss="-DSYS_BEOS"
5899 elif os2 ; then
5900 cflags_libdvdcss="-DSYS_OS2"
5902 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5903 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5904 _inputmodules="libdvdcss(internal) $_inputmodules"
5905 _largefiles=yes
5906 else
5907 _noinputmodules="libdvdcss(internal) $_noinputmodules"
5909 echores "$_libdvdcss_internal"
5912 echocheck "cdparanoia"
5913 if test "$_cdparanoia" = auto ; then
5914 cat > $TMPC <<EOF
5915 #include <cdda_interface.h>
5916 #include <cdda_paranoia.h>
5917 // This need a better test. How ?
5918 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5920 _cdparanoia=no
5921 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5922 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
5923 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5924 done
5926 if test "$_cdparanoia" = yes ; then
5927 _cdda='yes'
5928 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5929 openbsd && extra_ldflags="$extra_ldflags -lutil"
5931 echores "$_cdparanoia"
5934 echocheck "libcdio"
5935 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5936 cat > $TMPC << EOF
5937 #include <stdio.h>
5938 #include <cdio/version.h>
5939 #include <cdio/cdda.h>
5940 #include <cdio/paranoia.h>
5941 int main(void) {
5942 void *test = cdda_verbose_set;
5943 printf("%s\n", CDIO_VERSION);
5944 return test == (void *)1;
5947 _libcdio=no
5948 for _ld_tmp in "" "-lwinmm" ; do
5949 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
5950 cc_check $_ld_tmp $_ld_lm \
5951 && _libcdio=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
5952 done
5953 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
5954 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
5955 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
5956 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes \
5957 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5960 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
5961 _cdda='yes'
5962 def_libcdio='#define CONFIG_LIBCDIO 1'
5963 def_havelibcdio='yes'
5964 else
5965 if test "$_cdparanoia" = yes ; then
5966 _res_comment="using cdparanoia"
5968 def_libcdio='#undef CONFIG_LIBCDIO'
5969 def_havelibcdio='no'
5971 echores "$_libcdio"
5973 if test "$_cdda" = yes ; then
5974 test $_cddb = auto && test $_network = yes && _cddb=yes
5975 def_cdparanoia='#define CONFIG_CDDA 1'
5976 _inputmodules="cdda $_inputmodules"
5977 else
5978 def_cdparanoia='#undef CONFIG_CDDA'
5979 _noinputmodules="cdda $_noinputmodules"
5982 if test "$_cddb" = yes ; then
5983 def_cddb='#define CONFIG_CDDB 1'
5984 _inputmodules="cddb $_inputmodules"
5985 else
5986 _cddb=no
5987 def_cddb='#undef CONFIG_CDDB'
5988 _noinputmodules="cddb $_noinputmodules"
5991 echocheck "bitmap font support"
5992 if test "$_bitmap_font" = yes ; then
5993 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
5994 else
5995 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
5997 echores "$_bitmap_font"
6000 echocheck "freetype >= 2.0.9"
6002 # freetype depends on iconv
6003 if test "$_iconv" = no ; then
6004 _freetype=no
6005 _res_comment="iconv support needed"
6008 if test "$_freetype" = auto ; then
6009 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
6010 cat > $TMPC << EOF
6011 #include <stdio.h>
6012 #include <ft2build.h>
6013 #include FT_FREETYPE_H
6014 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
6015 #error "Need FreeType 2.0.9 or newer"
6016 #endif
6017 int main(void) {
6018 FT_Library library;
6019 FT_Int major=-1,minor=-1,patch=-1;
6020 int err=FT_Init_FreeType(&library);
6021 return 0;
6024 _freetype=no
6025 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
6026 else
6027 _freetype=no
6030 if test "$_freetype" = yes ; then
6031 def_freetype='#define CONFIG_FREETYPE 1'
6032 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
6033 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
6034 else
6035 def_freetype='#undef CONFIG_FREETYPE'
6037 echores "$_freetype"
6039 if test "$_freetype" = no ; then
6040 _fontconfig=no
6041 _res_comment="FreeType support needed"
6043 echocheck "fontconfig"
6044 if test "$_fontconfig" = auto ; then
6045 cat > $TMPC << EOF
6046 #include <stdio.h>
6047 #include <stdlib.h>
6048 #include <fontconfig/fontconfig.h>
6049 int main(void) {
6050 int err = FcInit();
6051 if (err == FcFalse) {
6052 printf("Couldn't initialize fontconfig lib\n");
6053 exit(err);
6055 return 0;
6058 _fontconfig=no
6059 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
6060 _ld_tmp="-lfontconfig $_ld_tmp"
6061 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6062 done
6063 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
6064 _inc_tmp=$($_pkg_config --cflags fontconfig)
6065 _ld_tmp=$($_pkg_config --libs fontconfig)
6066 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes \
6067 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6070 if test "$_fontconfig" = yes ; then
6071 def_fontconfig='#define CONFIG_FONTCONFIG 1'
6072 else
6073 def_fontconfig='#undef CONFIG_FONTCONFIG'
6075 echores "$_fontconfig"
6078 echocheck "SSA/ASS support"
6079 if test "$_ass" = auto -o "$_ass" = yes ; then
6080 if $_pkg_config libass; then
6081 _ass=yes
6082 def_ass='#define CONFIG_ASS 1'
6083 extra_ldflags="$extra_ldflags $($_pkg_config --libs libass)"
6084 extra_cflags="$extra_cflags $($_pkg_config --cflags libass)"
6085 else
6086 _ass=no
6087 def_ass='#undef CONFIG_ASS'
6089 else
6090 def_ass='#undef CONFIG_ASS'
6092 echores "$_ass"
6095 echocheck "fribidi with charsets"
6096 _inc_tmp=""
6097 _ld_tmp=""
6098 if test "$_fribidi" = auto ; then
6099 cat > $TMPC << EOF
6100 #include <stdio.h>
6101 #include <stdlib.h>
6102 /* workaround for fribidi 0.10.4 and below */
6103 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
6104 #include <fribidi/fribidi.h>
6105 int main(void) {
6106 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8) {
6107 printf("Fribidi headers are not consistents with the library!\n");
6108 exit(1);
6110 return 0;
6113 _fribidi=no
6114 _inc_tmp=""
6115 _ld_tmp="-lfribidi"
6116 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6117 if $_fribidiconfig --version > /dev/null 2>&1 &&
6118 test "$_fribidi" = no ; then
6119 _inc_tmp="$($_fribidiconfig --cflags)"
6120 _ld_tmp="$($_fribidiconfig --libs)"
6121 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6124 if test "$_fribidi" = yes ; then
6125 def_fribidi='#define CONFIG_FRIBIDI 1'
6126 extra_cflags="$extra_cflags $_inc_tmp"
6127 extra_ldflags="$extra_ldflags $_ld_tmp"
6128 else
6129 def_fribidi='#undef CONFIG_FRIBIDI'
6131 echores "$_fribidi"
6134 echocheck "ENCA"
6135 if test "$_enca" = auto ; then
6136 cat > $TMPC << EOF
6137 #include <sys/types.h>
6138 #include <enca.h>
6139 int main(void) {
6140 const char **langs;
6141 size_t langcnt;
6142 langs = enca_get_languages(&langcnt);
6143 return 0;
6146 _enca=no
6147 cc_check -lenca $_ld_lm && _enca=yes
6149 if test "$_enca" = yes ; then
6150 def_enca='#define CONFIG_ENCA 1'
6151 extra_ldflags="$extra_ldflags -lenca"
6152 else
6153 def_enca='#undef CONFIG_ENCA'
6155 echores "$_enca"
6158 echocheck "zlib"
6159 cat > $TMPC << EOF
6160 #include <zlib.h>
6161 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; }
6163 _zlib=no
6164 cc_check -lz && _zlib=yes
6165 if test "$_zlib" = yes ; then
6166 def_zlib='#define CONFIG_ZLIB 1'
6167 extra_ldflags="$extra_ldflags -lz"
6168 else
6169 def_zlib='#define CONFIG_ZLIB 0'
6171 echores "$_zlib"
6174 echocheck "bzlib"
6175 bzlib=no
6176 def_bzlib='#define CONFIG_BZLIB 0'
6177 cat > $TMPC << EOF
6178 #include <bzlib.h>
6179 int main(void) { BZ2_bzlibVersion(); return 0; }
6181 cc_check -lbz2 && bzlib=yes
6182 if test "$bzlib" = yes ; then
6183 def_bzlib='#define CONFIG_BZLIB 1'
6184 extra_ldflags="$extra_ldflags -lbz2"
6186 echores "$bzlib"
6189 echocheck "RTC"
6190 if test "$_rtc" = auto ; then
6191 cat > $TMPC << EOF
6192 #include <sys/ioctl.h>
6193 #ifdef __linux__
6194 #include <linux/rtc.h>
6195 #else
6196 #include <rtc.h>
6197 #define RTC_PIE_ON RTCIO_PIE_ON
6198 #endif
6199 int main(void) { return RTC_PIE_ON; }
6201 _rtc=no
6202 cc_check && _rtc=yes
6203 ppc && _rtc=no
6205 if test "$_rtc" = yes ; then
6206 def_rtc='#define HAVE_RTC 1'
6207 else
6208 def_rtc='#undef HAVE_RTC'
6210 echores "$_rtc"
6213 echocheck "liblzo2 support"
6214 if test "$_liblzo" = auto ; then
6215 _liblzo=no
6216 cat > $TMPC << EOF
6217 #include <lzo/lzo1x.h>
6218 int main(void) { lzo_init();return 0; }
6220 cc_check -llzo2 && _liblzo=yes
6222 if test "$_liblzo" = yes ; then
6223 def_liblzo='#define CONFIG_LIBLZO 1'
6224 extra_ldflags="$extra_ldflags -llzo2"
6225 _codecmodules="liblzo $_codecmodules"
6226 else
6227 def_liblzo='#undef CONFIG_LIBLZO'
6228 _nocodecmodules="liblzo $_nocodecmodules"
6230 echores "$_liblzo"
6233 echocheck "mad support"
6234 if test "$_mad" = auto ; then
6235 _mad=no
6236 cat > $TMPC << EOF
6237 #include <mad.h>
6238 int main(void) { return 0; }
6240 cc_check -lmad && _mad=yes
6242 if test "$_mad" = yes ; then
6243 def_mad='#define CONFIG_LIBMAD 1'
6244 extra_ldflags="$extra_ldflags -lmad"
6245 _codecmodules="libmad $_codecmodules"
6246 else
6247 def_mad='#undef CONFIG_LIBMAD'
6248 _nocodecmodules="libmad $_nocodecmodules"
6250 echores "$_mad"
6252 echocheck "Twolame"
6253 if test "$_twolame" = auto ; then
6254 cat > $TMPC <<EOF
6255 #include <twolame.h>
6256 int main(void) { twolame_init(); return 0; }
6258 _twolame=no
6259 cc_check -ltwolame $_ld_lm && _twolame=yes
6261 if test "$_twolame" = yes ; then
6262 def_twolame='#define CONFIG_TWOLAME 1'
6263 libs_mencoder="$libs_mencoder -ltwolame"
6264 _codecmodules="twolame $_codecmodules"
6265 else
6266 def_twolame='#undef CONFIG_TWOLAME'
6267 _nocodecmodules="twolame $_nocodecmodules"
6269 echores "$_twolame"
6271 echocheck "Toolame"
6272 if test "$_toolame" = auto ; then
6273 _toolame=no
6274 if test "$_twolame" = yes ; then
6275 _res_comment="disabled by twolame"
6276 else
6277 cat > $TMPC <<EOF
6278 #include <toolame.h>
6279 int main(void) { toolame_init(); return 0; }
6281 cc_check -ltoolame $_ld_lm && _toolame=yes
6284 if test "$_toolame" = yes ; then
6285 def_toolame='#define CONFIG_TOOLAME 1'
6286 libs_mencoder="$libs_mencoder -ltoolame"
6287 _codecmodules="toolame $_codecmodules"
6288 else
6289 def_toolame='#undef CONFIG_TOOLAME'
6290 _nocodecmodules="toolame $_nocodecmodules"
6292 if test "$_toolamedir" ; then
6293 _res_comment="using $_toolamedir"
6295 echores "$_toolame"
6297 echocheck "OggVorbis support"
6298 if test "$_tremor_internal" = yes; then
6299 _libvorbis=no
6300 elif test "$_tremor" = auto; then
6301 _tremor=no
6302 cat > $TMPC << EOF
6303 #include <tremor/ivorbiscodec.h>
6304 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6306 cc_check -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
6308 if test "$_libvorbis" = auto; then
6309 _libvorbis=no
6310 cat > $TMPC << EOF
6311 #include <vorbis/codec.h>
6312 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6314 cc_check -lvorbis -logg $_ld_lm && _libvorbis=yes
6316 if test "$_tremor_internal" = yes ; then
6317 _vorbis=yes
6318 def_vorbis='#define CONFIG_OGGVORBIS 1'
6319 def_tremor='#define CONFIG_TREMOR 1'
6320 _codecmodules="tremor(internal) $_codecmodules"
6321 _res_comment="internal Tremor"
6322 if test "$_tremor_low" = yes ; then
6323 cflags_tremor_low="-D_LOW_ACCURACY_"
6324 _res_comment="internal low accuracy Tremor"
6326 elif test "$_tremor" = yes ; then
6327 _vorbis=yes
6328 def_vorbis='#define CONFIG_OGGVORBIS 1'
6329 def_tremor='#define CONFIG_TREMOR 1'
6330 _codecmodules="tremor(external) $_codecmodules"
6331 _res_comment="external Tremor"
6332 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
6333 elif test "$_libvorbis" = yes ; then
6334 _vorbis=yes
6335 def_vorbis='#define CONFIG_OGGVORBIS 1'
6336 _codecmodules="libvorbis $_codecmodules"
6337 _res_comment="libvorbis"
6338 extra_ldflags="$extra_ldflags -lvorbis -logg"
6339 else
6340 _vorbis=no
6341 _nocodecmodules="libvorbis $_nocodecmodules"
6343 echores "$_vorbis"
6345 echocheck "libspeex (version >= 1.1 required)"
6346 if test "$_speex" = auto ; then
6347 _speex=no
6348 cat > $TMPC << EOF
6349 #include <speex/speex.h>
6350 int main(void) { SpeexBits bits; void *dec; speex_decode_int(dec, &bits, dec); return 0; }
6352 cc_check -lspeex $_ld_lm && _speex=yes
6354 if test "$_speex" = yes ; then
6355 def_speex='#define CONFIG_SPEEX 1'
6356 extra_ldflags="$extra_ldflags -lspeex"
6357 _codecmodules="speex $_codecmodules"
6358 else
6359 def_speex='#undef CONFIG_SPEEX'
6360 _nocodecmodules="speex $_nocodecmodules"
6362 echores "$_speex"
6364 echocheck "OggTheora support"
6365 if test "$_theora" = auto ; then
6366 _theora=no
6367 cat > $TMPC << EOF
6368 #include <theora/theora.h>
6369 #include <string.h>
6370 int main(void) {
6371 /* Theora is in flux, make sure that all interface routines and datatypes
6372 * exist and work the way we expect it, so we don't break MPlayer. */
6373 ogg_packet op;
6374 theora_comment tc;
6375 theora_info inf;
6376 theora_state st;
6377 yuv_buffer yuv;
6378 int r;
6379 double t;
6381 theora_info_init(&inf);
6382 theora_comment_init(&tc);
6384 return 0;
6386 /* we don't want to execute this kind of nonsense; just for making sure
6387 * that compilation works... */
6388 memset(&op, 0, sizeof(op));
6389 r = theora_decode_header(&inf, &tc, &op);
6390 r = theora_decode_init(&st, &inf);
6391 t = theora_granule_time(&st, op.granulepos);
6392 r = theora_decode_packetin(&st, &op);
6393 r = theora_decode_YUVout(&st, &yuv);
6394 theora_clear(&st);
6396 return 0;
6399 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6400 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6401 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
6402 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6403 if test _theora = no; then
6404 _ld_theora="-ltheora -logg"
6405 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6407 if test "$_theora" = no && test "$_tremor_internal" = yes; then
6408 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6409 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6410 cc_check tremor/bitwise.c $_inc_theora $_ld_theora &&
6411 extra_ldflags="$extra_ldflags $_ld_theora" &&
6412 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6413 if test _theora = no; then
6414 _ld_theora="-ltheora -logg"
6415 cc_check tremor/bitwise.c $_ld_theora &&
6416 extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6420 if test "$_theora" = yes ; then
6421 def_theora='#define CONFIG_OGGTHEORA 1'
6422 _codecmodules="libtheora $_codecmodules"
6423 # when --enable-theora is forced, we'd better provide a probably sane
6424 # $_ld_theora than nothing
6425 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
6426 else
6427 def_theora='#undef CONFIG_OGGTHEORA'
6428 _nocodecmodules="libtheora $_nocodecmodules"
6430 echores "$_theora"
6432 echocheck "internal mp3lib support"
6433 if test "$_mp3lib" = auto ; then
6434 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _mp3lib=no || _mp3lib=yes
6436 if test "$_mp3lib" = yes ; then
6437 def_mp3lib='#define CONFIG_MP3LIB 1'
6438 _codecmodules="mp3lib(internal) $_codecmodules"
6439 else
6440 def_mp3lib='#undef CONFIG_MP3LIB'
6441 _nocodecmodules="mp3lib(internal) $_nocodecmodules"
6443 echores "$_mp3lib"
6445 echocheck "liba52 support"
6446 if test "$_liba52_internal" = auto ; then
6447 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _liba52_internal=no || _liba52_internal=yes
6449 def_liba52='#undef CONFIG_LIBA52'
6450 def_liba52_internal="#undef CONFIG_LIBA52_INTERNAL"
6451 if test "$_liba52_internal" = yes ; then
6452 _liba52=yes
6453 def_liba52_internal="#define CONFIG_LIBA52_INTERNAL 1"
6454 _res_comment="internal"
6455 elif test "$_liba52_internal" = no && test "$_liba52" = auto ; then
6456 _liba52=no
6457 cat > $TMPC << EOF
6458 #include <inttypes.h>
6459 #include <a52dec/a52.h>
6460 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6462 cc_check -la52 && _liba52=yes && _res_comment="external" && extra_ldflags="$extra_ldflags -la52"
6464 if test "$_liba52" = yes ; then
6465 def_liba52='#define CONFIG_LIBA52 1'
6466 _codecmodules="liba52($_res_comment) $_codecmodules"
6467 else
6468 _nocodecmodules="liba52 $_nocodecmodules"
6470 echores "$_liba52"
6472 echocheck "internal libmpeg2 support"
6473 if test "$_libmpeg2" = auto ; then
6474 _libmpeg2=yes
6475 if alpha && test cc_vendor=gnu; then
6476 case $cc_version in
6477 2*|3.0*|3.1*) # cannot compile MVI instructions
6478 _libmpeg2=no
6479 _res_comment="broken gcc"
6481 esac
6484 if test "$_libmpeg2" = yes ; then
6485 def_libmpeg2='#define CONFIG_LIBMPEG2 1'
6486 _codecmodules="libmpeg2(internal) $_codecmodules"
6487 else
6488 def_libmpeg2='#undef CONFIG_LIBMPEG2'
6489 _nocodecmodules="libmpeg2(internal) $_nocodecmodules"
6491 echores "$_libmpeg2"
6493 echocheck "libdca support"
6494 if test "$_libdca" = auto ; then
6495 _libdca=no
6496 cat > $TMPC << EOF
6497 #include <inttypes.h>
6498 #include <dts.h>
6499 int main(void) { dts_init(0); return 0; }
6501 for _ld_dca in -ldts -ldca ; do
6502 cc_check $_ld_dca $_ld_lm && extra_ldflags="$extra_ldflags $_ld_dca" \
6503 && _libdca=yes && break
6504 done
6506 if test "$_libdca" = yes ; then
6507 def_libdca='#define CONFIG_LIBDCA 1'
6508 _codecmodules="libdca $_codecmodules"
6509 else
6510 def_libdca='#undef CONFIG_LIBDCA'
6511 _nocodecmodules="libdca $_nocodecmodules"
6513 echores "$_libdca"
6515 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
6516 if test "$_musepack" = auto ; then
6517 _musepack=no
6518 cat > $TMPC << EOF
6519 #include <stddef.h>
6520 #include <mpcdec/mpcdec.h>
6521 int main(void) {
6522 mpc_streaminfo info;
6523 mpc_decoder decoder;
6524 mpc_decoder_set_streaminfo(&decoder, &info);
6525 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6526 return 0;
6529 cc_check -lmpcdec $_ld_lm && _musepack=yes
6531 if test "$_musepack" = yes ; then
6532 def_musepack='#define CONFIG_MUSEPACK 1'
6533 extra_ldflags="$extra_ldflags -lmpcdec"
6534 _codecmodules="musepack $_codecmodules"
6535 else
6536 def_musepack='#undef CONFIG_MUSEPACK'
6537 _nocodecmodules="musepack $_nocodecmodules"
6539 echores "$_musepack"
6542 echocheck "FAAC support"
6543 if test "$_faac" = auto ; then
6544 cat > $TMPC <<EOF
6545 #include <inttypes.h>
6546 #include <faac.h>
6547 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6549 _faac=no
6550 for _ld_faac in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6551 cc_check -O2 $_ld_faac $_ld_lm && libs_mencoder="$libs_mencoder $_ld_faac" && _faac=yes && break
6552 done
6554 if test "$_faac" = yes ; then
6555 def_faac="#define CONFIG_FAAC 1"
6556 _codecmodules="faac $_codecmodules"
6557 else
6558 def_faac="#undef CONFIG_FAAC"
6559 _nocodecmodules="faac $_nocodecmodules"
6561 echores "$_faac"
6564 echocheck "FAAD2 support"
6565 if test "$_faad_internal" = auto ; then
6566 if x86_32 && test cc_vendor=gnu; then
6567 case $cc_version in
6568 3.1*|3.2) # ICE/insn with these versions
6569 _faad_internal=no
6570 _res_comment="broken gcc"
6573 _faad=yes
6574 _faad_internal=yes
6576 esac
6577 else
6578 _faad=yes
6579 _faad_internal=yes
6582 if test "$_faad" = auto ; then
6583 cat > $TMPC << EOF
6584 #include <faad.h>
6585 #ifndef FAAD_MIN_STREAMSIZE
6586 #error Too old version
6587 #endif
6588 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6589 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6591 cc_check -lfaad $_ld_lm && _faad=yes
6594 def_faad='#undef CONFIG_FAAD'
6595 def_faad_internal="#undef CONFIG_FAAD_INTERNAL"
6596 if test "$_faad_internal" = yes ; then
6597 def_faad_internal="#define CONFIG_FAAD_INTERNAL 1"
6598 _res_comment="internal floating-point"
6599 if test "$_faad_fixed" = yes ; then
6600 # The FIXED_POINT implementation of FAAD2 improves performance
6601 # on some platforms, especially for SBR files.
6602 cflags_faad_fixed="-DFIXED_POINT"
6603 _res_comment="internal fixed-point"
6605 elif test "$_faad" = yes ; then
6606 extra_ldflags="$extra_ldflags -lfaad"
6609 if test "$_faad" = yes ; then
6610 def_faad='#define CONFIG_FAAD 1'
6611 if test "$_faad_internal" = yes ; then
6612 _codecmodules="faad2(internal) $_codecmodules"
6613 else
6614 _codecmodules="faad2 $_codecmodules"
6616 else
6617 _faad=no
6618 _nocodecmodules="faad2 $_nocodecmodules"
6620 echores "$_faad"
6623 echocheck "LADSPA plugin support"
6624 if test "$_ladspa" = auto ; then
6625 cat > $TMPC <<EOF
6626 #include <stdio.h>
6627 #include <ladspa.h>
6628 int main(void) {
6629 const LADSPA_Descriptor *ld = NULL;
6630 return 0;
6633 _ladspa=no
6634 cc_check && _ladspa=yes
6636 if test "$_ladspa" = yes; then
6637 def_ladspa="#define CONFIG_LADSPA 1"
6638 else
6639 def_ladspa="#undef CONFIG_LADSPA"
6641 echores "$_ladspa"
6644 echocheck "libbs2b audio filter support"
6645 if test "$_libbs2b" = auto ; then
6646 cat > $TMPC <<EOF
6647 #include <bs2b.h>
6648 #if BS2B_VERSION_MAJOR < 3
6649 #error Please use libbs2b >= 3.0.0, older versions are not supported.
6650 #endif
6651 int main(void) {
6652 t_bs2bdp filter;
6653 filter=bs2b_open();
6654 bs2b_close(filter);
6655 return 0;
6658 _libbs2b=no
6659 if $_pkg_config --exists libbs2b ; then
6660 _inc_tmp=$($_pkg_config --cflags libbs2b)
6661 _ld_tmp=$($_pkg_config --libs libbs2b)
6662 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
6663 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
6664 else
6665 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
6666 -I/usr/local/include/bs2b ; do
6667 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
6668 extra_ldflags="$extra_ldflags -lbs2b"
6669 extra_cflags="$extra_cflags $_inc_tmp"
6670 _libbs2b=yes
6671 break
6673 done
6676 def_libbs2b="#undef CONFIG_LIBBS2B"
6677 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
6678 echores "$_libbs2b"
6681 if test -z "$_codecsdir" ; then
6682 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
6683 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
6684 if test -d "$dir" ; then
6685 _codecsdir="$dir"
6686 break;
6688 done
6690 # Fall back on default directory.
6691 if test -z "$_codecsdir" ; then
6692 _codecsdir="$_libdir/codecs"
6693 mingw32 && _codecsdir="codecs"
6694 os2 && _codecsdir="codecs"
6698 echocheck "Win32 codecs"
6699 if test "$_win32dll" = auto ; then
6700 _win32dll=no
6701 if x86_32 && ! qnx; then
6702 _win32dll=yes
6705 if test "$_win32dll" = yes ; then
6706 def_win32dll='#define CONFIG_WIN32DLL 1'
6707 test -z "$_win32codecsdir" && _win32codecsdir=$_codecsdir
6708 _res_comment="using $_win32codecsdir"
6709 if ! win32 ; then
6710 def_win32_loader='#define WIN32_LOADER 1'
6711 _win32_emulation=yes
6712 else
6713 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
6714 _res_comment="using native windows"
6716 _codecmodules="win32 $_codecmodules"
6717 else
6718 def_win32dll='#undef CONFIG_WIN32DLL'
6719 def_win32_loader='#undef WIN32_LOADER'
6720 _nocodecmodules="win32 $_nocodecmodules"
6722 echores "$_win32dll"
6725 echocheck "XAnim codecs"
6726 if test "$_xanim" = auto ; then
6727 _xanim=no
6728 _res_comment="dynamic loader support needed"
6729 if test "$_dl" = yes ; then
6730 _xanim=yes
6733 if test "$_xanim" = yes ; then
6734 test -z "$_xanimcodecsdir" && _xanimcodecsdir=$_codecsdir
6735 def_xanim='#define CONFIG_XANIM 1'
6736 def_xanim_path="#define XACODEC_PATH \"$_xanimcodecsdir\""
6737 _codecmodules="xanim $_codecmodules"
6738 _res_comment="using $_xanimcodecsdir"
6739 else
6740 def_xanim='#undef CONFIG_XANIM'
6741 def_xanim_path='#undef XACODEC_PATH'
6742 _nocodecmodules="xanim $_nocodecmodules"
6744 echores "$_xanim"
6747 echocheck "RealPlayer codecs"
6748 if test "$_real" = auto ; then
6749 _real=no
6750 _res_comment="dynamic loader support needed"
6751 if test "$_dl" = yes || test "$_win32dll" = yes &&
6752 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32) ; then
6753 _real=yes
6756 if test "$_real" = yes ; then
6757 test -z "$_realcodecsdir" && _realcodecsdir="$_codecsdir"
6758 def_real='#define CONFIG_REALCODECS 1'
6759 def_real_path="#define REALCODEC_PATH \"$_realcodecsdir\""
6760 _codecmodules="real $_codecmodules"
6761 _res_comment="using $_realcodecsdir"
6762 else
6763 def_real='#undef CONFIG_REALCODECS'
6764 def_real_path="#undef REALCODEC_PATH"
6765 _nocodecmodules="real $_nocodecmodules"
6767 echores "$_real"
6770 echocheck "QuickTime codecs"
6771 _qtx_emulation=no
6772 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
6773 if test "$_qtx" = auto ; then
6774 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
6776 if test "$_qtx" = yes ; then
6777 def_qtx='#define CONFIG_QTX_CODECS 1'
6778 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
6779 _codecmodules="qtx $_codecmodules"
6780 darwin || win32 || _qtx_emulation=yes
6781 else
6782 def_qtx='#undef CONFIG_QTX_CODECS'
6783 _nocodecmodules="qtx $_nocodecmodules"
6785 echores "$_qtx"
6787 echocheck "Nemesi Streaming Media libraries"
6788 if test "$_nemesi" = auto && test "$_network" = yes ; then
6789 _nemesi=no
6790 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
6791 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
6792 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
6793 _nemesi=yes
6796 if test "$_nemesi" = yes; then
6797 _native_rtsp=no
6798 def_nemesi='#define CONFIG_LIBNEMESI 1'
6799 _inputmodules="nemesi $_inputmodules"
6800 else
6801 _native_rtsp="$_network"
6802 _nemesi=no
6803 def_nemesi='#undef CONFIG_LIBNEMESI'
6804 _noinputmodules="nemesi $_noinputmodules"
6806 echores "$_nemesi"
6808 echocheck "LIVE555 Streaming Media libraries"
6809 if test "$_live" = auto && test "$_network" = yes ; then
6810 cat > $TMPCPP << EOF
6811 #include <liveMedia.hh>
6812 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6813 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6814 #endif
6815 int main(void) { return 0; }
6818 _live=no
6819 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
6820 cxx_check $I/liveMedia/include $I/UsageEnvironment/include \
6821 $I/groupsock/include && _livelibdir=$(echo $I| sed s/-I//) && \
6822 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
6823 $_livelibdir/groupsock/libgroupsock.a \
6824 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6825 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6826 $extra_ldflags -lstdc++" \
6827 extra_cxxflags="-I$_livelibdir/liveMedia/include \
6828 -I$_livelibdir/UsageEnvironment/include \
6829 -I$_livelibdir/BasicUsageEnvironment/include \
6830 -I$_livelibdir/groupsock/include" && \
6831 _live=yes && break
6832 done
6833 if test "$_live" != yes ; then
6834 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6835 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
6836 _live_dist=yes
6840 if test "$_live" = yes && test "$_network" = yes; then
6841 test $_livelibdir && _res_comment="using $_livelibdir"
6842 def_live='#define CONFIG_LIVE555 1'
6843 _inputmodules="live555 $_inputmodules"
6844 elif test "$_live_dist" = yes && test "$_network" = yes; then
6845 _res_comment="using distribution version"
6846 _live="yes"
6847 def_live='#define CONFIG_LIVE555 1'
6848 extra_ldflags="$extra_ldflags $ld_tmp"
6849 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
6850 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6851 _inputmodules="live555 $_inputmodules"
6852 else
6853 _live=no
6854 def_live='#undef CONFIG_LIVE555'
6855 _noinputmodules="live555 $_noinputmodules"
6857 echores "$_live"
6860 echocheck "FFmpeg libavutil"
6861 if test "$_libavutil" = auto ; then
6862 _libavutil=no
6863 cat > $TMPC << EOF
6864 #include <libavutil/common.h>
6865 int main(void) { av_gcd(1,1); return 0; }
6867 if $_pkg_config --exists libavutil ; then
6868 _inc_libavutil=$($_pkg_config --cflags libavutil)
6869 _ld_tmp=$($_pkg_config --libs libavutil)
6870 cc_check $_inc_libavutil $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libavutil" \
6871 && _libavutil=yes
6872 elif cc_check -lavutil $_ld_lm ; then
6873 extra_ldflags="$extra_ldflags -lavutil"
6874 _libavutil=yes
6877 def_libavutil='#undef CONFIG_LIBAVUTIL'
6878 test "$_libavutil" = yes && def_libavutil='#define CONFIG_LIBAVUTIL 1'
6879 # libavutil is not available, but it is mandatory ...
6880 if test "$_libavutil" = no ; then
6881 die "You need libavutil, MPlayer will not compile without!"
6883 echores "$_libavutil"
6885 echocheck "FFmpeg libavcodec"
6886 if test "$_libavcodec" = auto ; then
6887 _libavcodec=no
6888 cat > $TMPC << EOF
6889 #include <libavcodec/avcodec.h>
6890 int main(void) { avcodec_find_encoder_by_name(""); return 0; }
6892 if $_pkg_config --exists libavcodec ; then
6893 _inc_libavcodec=$($_pkg_config --cflags libavcodec)
6894 _ld_tmp=$($_pkg_config --libs libavcodec)
6895 cc_check $_inc_libavcodec $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavcodec" \
6896 && _libavcodec=yes
6897 elif cc_check -lavcodec $_ld_lm ; then
6898 extra_ldflags="$extra_ldflags -lavcodec"
6899 _libavcodec=yes
6902 def_libavcodec='#undef CONFIG_LIBAVCODEC'
6903 test "$_libavcodec" = yes && def_libavcodec='#define CONFIG_LIBAVCODEC 1'
6904 if test "$_libavcodec" = yes ; then
6905 _codecmodules="libavcodec $_codecmodules"
6906 else
6907 _nocodecmodules="libavcodec $_nocodecmodules"
6909 echores "$_libavcodec"
6911 echocheck "FFmpeg libavformat"
6912 if test "$_libavformat" = auto ; then
6913 _libavformat=no
6914 cat > $TMPC <<EOF
6915 #include <libavformat/avformat.h>
6916 #include <libavcodec/opt.h>
6917 int main(void) { av_alloc_format_context(); return 0; }
6919 if $_pkg_config --exists libavformat ; then
6920 _inc_libavformat=$($_pkg_config --cflags libavformat)
6921 _ld_tmp=$($_pkg_config --libs libavformat)
6922 cc_check $_inc_libavformat $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavformat" \
6923 && _libavformat=yes
6924 elif cc_check $_ld_lm -lavformat ; then
6925 extra_ldflags="$extra_ldflags -lavformat"
6926 _libavformat=yes
6929 def_libavformat='#undef CONFIG_LIBAVFORMAT'
6930 test "$_libavformat" = yes && def_libavformat='#define CONFIG_LIBAVFORMAT 1'
6931 echores "$_libavformat"
6933 echocheck "FFmpeg libpostproc"
6934 if test "$_libpostproc" = auto ; then
6935 _libpostproc=no
6936 cat > $TMPC << EOF
6937 #include <inttypes.h>
6938 #include <libpostproc/postprocess.h>
6939 int main(void) { pp_get_mode_by_name_and_quality("de", 0); return 0; }
6941 if $_pkg_config --exists libpostproc ; then
6942 _inc_libpostproc=$($_pkg_config --cflags libpostproc)
6943 _ld_tmp=$($_pkg_config --libs libpostproc)
6944 cc_check $_inc_libpostproc $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libpostproc" \
6945 && _libpostproc=yes
6946 elif cc_check -lpostproc $_ld_lm ; then
6947 extra_ldflags="$extra_ldflags -lpostproc"
6948 _libpostproc=yes
6951 def_libpostproc='#undef CONFIG_LIBPOSTPROC'
6952 test "$_libpostproc" = yes && def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
6953 echores "$_libpostproc"
6955 echocheck "FFmpeg libswscale"
6956 if test "$_libswscale" = auto ; then
6957 _libswscale=no
6958 cat > $TMPC << EOF
6959 #include <libswscale/swscale.h>
6960 int main(void) { sws_scale(0, 0, 0, 0, 0, 0, 0); return 0; }
6962 if $_pkg_config --exists libswscale ; then
6963 _inc_libswscale=$($_pkg_config --cflags libswscale)
6964 _ld_tmp=$($_pkg_config --libs libswscale)
6965 cc_check $_inc_libswscale $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libswscale" \
6966 && _libswscale=yes
6967 elif cc_check -lswscale ; then
6968 extra_ldflags="$extra_ldflags -lswscale"
6969 _libswscale=yes
6972 def_libswscale='#undef CONFIG_LIBSWSCALE'
6973 test "$_libswscale" = yes && def_libswscale='#define CONFIG_LIBSWSCALE 1'
6974 echores "$_libswscale"
6976 def_libswscale_internals="#undef CONFIG_LIBSWSCALE_INTERNALS"
6977 if ! test -z "$_ffmpeg_source" ; then
6978 test "$_libswscale" = yes && def_libswscale_internals="#define CONFIG_LIBSWSCALE_INTERNALS 1" && _libswscale_internals=yes
6981 def_libavcodec_internals="#undef CONFIG_LIBAVCODEC_INTERNALS"
6982 if ! test -z "$_ffmpeg_source" ; then
6983 test "$_libavcodec" = yes && def_libavcodec_internals="#define CONFIG_LIBAVCODEC_INTERNALS 1" && _libavcodec_internals=yes
6986 echocheck "libdv-0.9.5+"
6987 if test "$_libdv" = auto ; then
6988 _libdv=no
6989 cat > $TMPC <<EOF
6990 #include <libdv/dv.h>
6991 int main(void) { dv_encoder_t* enc=dv_encoder_new(1,1,1); return 0; }
6993 cc_check -ldv $_ld_pthread $_ld_lm && _libdv=yes
6995 if test "$_libdv" = yes ; then
6996 def_libdv='#define CONFIG_LIBDV095 1'
6997 extra_ldflags="$extra_ldflags -ldv"
6998 _codecmodules="libdv $_codecmodules"
6999 else
7000 def_libdv='#undef CONFIG_LIBDV095'
7001 _nocodecmodules="libdv $_nocodecmodules"
7003 echores "$_libdv"
7006 echocheck "Xvid"
7007 if test "$_xvid" = auto ; then
7008 _xvid=no
7009 cat > $TMPC << EOF
7010 #include <xvid.h>
7011 int main(void) { xvid_global(0, 0, 0, 0); return 0; }
7013 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
7014 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
7015 done
7018 if test "$_xvid" = yes ; then
7019 def_xvid='#define CONFIG_XVID4 1'
7020 _codecmodules="xvid $_codecmodules"
7021 else
7022 def_xvid='#undef CONFIG_XVID4'
7023 _nocodecmodules="xvid $_nocodecmodules"
7025 echores "$_xvid"
7027 echocheck "x264"
7028 if test "$_x264" = auto ; then
7029 cat > $TMPC << EOF
7030 #include <inttypes.h>
7031 #include <x264.h>
7032 #if X264_BUILD < 79
7033 #error We do not support old versions of x264. Get the latest from git.
7034 #endif
7035 int main(void) { x264_encoder_open((void*)0); return 0; }
7037 _x264=no
7038 for _ld_x264 in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
7039 cc_check $_ld_x264 && libs_mencoder="$libs_mencoder $_ld_x264" && _x264=yes && break
7040 done
7043 if test "$_x264" = yes ; then
7044 def_x264='#define CONFIG_X264 1'
7045 _codecmodules="x264 $_codecmodules"
7046 else
7047 def_x264='#undef CONFIG_X264'
7048 _nocodecmodules="x264 $_nocodecmodules"
7050 echores "$_x264"
7052 echocheck "libnut"
7053 if test "$_libnut" = auto ; then
7054 cat > $TMPC << EOF
7055 #include <stdio.h>
7056 #include <stdlib.h>
7057 #include <inttypes.h>
7058 #include <libnut.h>
7059 nut_context_tt * nut;
7060 int main(void) { (void)nut_error(0); return 0; }
7062 _libnut=no
7063 cc_check -lnut && _libnut=yes
7066 if test "$_libnut" = yes ; then
7067 def_libnut='#define CONFIG_LIBNUT 1'
7068 extra_ldflags="$extra_ldflags -lnut"
7069 else
7070 def_libnut='#undef CONFIG_LIBNUT'
7072 echores "$_libnut"
7074 # These VO checks must be done after libavcodec/libswscale one
7075 echocheck "/dev/mga_vid"
7076 if test "$_mga" = auto ; then
7077 _mga=no
7078 test -c /dev/mga_vid && _mga=yes
7080 if test "$_mga" = yes ; then
7081 if test "$_libswscale_internals" = yes ; then
7082 def_mga='#define CONFIG_MGA 1'
7083 _vomodules="mga $_vomodules"
7084 else
7085 _res_comment="libswscale internal headers are required by mga, sorry"
7086 def_mga='#undef CONFIG_MGA'
7087 _novomodules="mga $_novomodules"
7089 else
7090 def_mga='#undef CONFIG_MGA'
7091 _novomodules="mga $_novomodules"
7093 echores "$_mga"
7096 echocheck "xmga"
7097 if test "$_xmga" = auto ; then
7098 _xmga=no
7099 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
7101 if test "$_xmga" = yes ; then
7102 if test "$_libswscale_internals" = yes ; then
7103 def_xmga='#define CONFIG_XMGA 1'
7104 _vomodules="xmga $_vomodules"
7105 else
7106 _res_comment="libswscale internal headers are required by mga, sorry"
7107 def_xmga='#undef CONFIG_XMGA'
7108 _novomodules="xmga $_novomodules"
7110 else
7111 def_xmga='#undef CONFIG_XMGA'
7112 _novomodules="xmga $_novomodules"
7114 echores "$_xmga"
7116 echocheck "zr"
7117 if test "$_zr" = auto ; then
7118 #36067's seem to identify themselves as 36057PQC's, so the line
7119 #below should work for 36067's and 36057's.
7120 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc/pci ; then
7121 _zr=yes
7122 else
7123 _zr=no
7126 if test "$_zr" = yes ; then
7127 if test "$_libavcodec_internals" = yes ; then
7128 def_zr='#define CONFIG_ZR 1'
7129 _vomodules="zr zr2 $_vomodules"
7130 else
7131 _res_comment="libavcodec internal headers are required by zr, sorry"
7132 _novomodules="zr $_novomodules"
7133 def_zr='#undef CONFIG_ZR'
7135 else
7136 def_zr='#undef CONFIG_ZR'
7137 _novomodules="zr zr2 $_novomodules"
7139 echores "$_zr"
7141 echocheck "glamo"
7142 if test "$_glamo" = yes ; then
7143 def_glamo='#define CONFIG_GLAMO 1'
7144 _vomodules="glamo $_vomodules"
7145 else
7146 def_glamo='#undef CONFIG_GLAMO'
7147 _novomodules="glamo $_novomodules"
7149 echores "$_glamo"
7151 # mencoder requires (optional) those libs: libmp3lame
7152 if test "$_mencoder" != no ; then
7154 echocheck "libmp3lame"
7155 def_mp3lame_preset='#undef CONFIG_MP3LAME_PRESET'
7156 def_mp3lame_preset_medium='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
7157 if test "$_mp3lame" = auto ; then
7158 _mp3lame=no
7159 cat > $TMPC <<EOF
7160 #include <lame/lame.h>
7161 int main(void) { lame_version_t lv; (void) lame_init();
7162 get_lame_version_numerical(&lv);
7163 return 0; }
7165 cc_check -lmp3lame $_ld_lm && _mp3lame=yes
7167 if test "$_mp3lame" = yes ; then
7168 def_mp3lame="#define CONFIG_MP3LAME 1"
7169 _ld_mp3lame=-lmp3lame
7170 libs_mencoder="$libs_mencoder $_ld_mp3lame"
7171 cat > $TMPC << EOF
7172 #include <lame/lame.h>
7173 int main(void) { lame_set_preset(NULL, STANDARD_FAST); return 0; }
7175 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset="#define CONFIG_MP3LAME_PRESET 1"
7176 cat > $TMPC << EOF
7177 #include <lame/lame.h>
7178 int main(void) { lame_set_preset(NULL, MEDIUM_FAST); return 0; }
7180 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset_medium="#define CONFIG_MP3LAME_PRESET_MEDIUM 1"
7181 else
7182 def_mp3lame='#undef CONFIG_MP3LAME'
7184 echores "$_mp3lame"
7186 fi # test "$_mencoder" != no
7188 echocheck "mencoder"
7189 if test "$_mencoder" = yes ; then
7190 def_muxers='#define CONFIG_MUXERS 1'
7191 else
7192 def_muxers='#define CONFIG_MUXERS 0'
7194 echores "$_mencoder"
7197 echocheck "UnRAR executable"
7198 if test "$_unrar_exec" = auto ; then
7199 _unrar_exec="yes"
7200 mingw32 && _unrar_exec="no"
7202 if test "$_unrar_exec" = yes ; then
7203 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
7204 else
7205 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
7207 echores "$_unrar_exec"
7209 echocheck "TV interface"
7210 if test "$_tv" = yes ; then
7211 def_tv='#define CONFIG_TV 1'
7212 _inputmodules="tv $_inputmodules"
7213 else
7214 _noinputmodules="tv $_noinputmodules"
7215 def_tv='#undef CONFIG_TV'
7217 echores "$_tv"
7220 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
7221 echocheck "*BSD BT848 bt8xx header"
7222 _ioctl_bt848_h=no
7223 for file in "machine/ioctl_bt848.h" \
7224 "dev/bktr/ioctl_bt848.h" \
7225 "dev/video/bktr/ioctl_bt848.h" \
7226 "dev/ic/bt8xx.h" ; do
7227 cat > $TMPC <<EOF
7228 #include <sys/types.h>
7229 #include <sys/ioctl.h>
7230 #include <$file>
7231 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
7233 if cc_check ; then
7234 _ioctl_bt848_h=yes
7235 _ioctl_bt848_h_name="$file"
7236 break;
7238 done
7239 if test "$_ioctl_bt848_h" = yes ; then
7240 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
7241 _res_comment="using $_ioctl_bt848_h_name"
7242 else
7243 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
7245 echores "$_ioctl_bt848_h"
7247 echocheck "*BSD ioctl_meteor.h"
7248 _ioctl_meteor_h=no
7249 for file in "machine/ioctl_meteor.h" \
7250 "dev/bktr/ioctl_meteor.h" \
7251 "dev/video/bktr/ioctl_meteor.h" ; do
7252 cat > $TMPC <<EOF
7253 #include <sys/types.h>
7254 #include <$file>
7255 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
7257 if cc_check ; then
7258 _ioctl_meteor_h=yes
7259 _ioctl_meteor_h_name="$file"
7260 break;
7262 done
7263 if test "$_ioctl_meteor_h" = yes ; then
7264 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
7265 _res_comment="using $_ioctl_meteor_h_name"
7266 else
7267 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
7269 echores "$_ioctl_meteor_h"
7271 echocheck "*BSD BrookTree 848 TV interface"
7272 if test "$_tv_bsdbt848" = auto ; then
7273 _tv_bsdbt848=no
7274 if test "$_tv" = yes ; then
7275 cat > $TMPC <<EOF
7276 #include <sys/types.h>
7277 $def_ioctl_meteor_h_name
7278 $def_ioctl_bt848_h_name
7279 #ifdef IOCTL_METEOR_H_NAME
7280 #include IOCTL_METEOR_H_NAME
7281 #endif
7282 #ifdef IOCTL_BT848_H_NAME
7283 #include IOCTL_BT848_H_NAME
7284 #endif
7285 int main(void) {
7286 ioctl(0, METEORSINPUT, 0);
7287 ioctl(0, TVTUNER_GETFREQ, 0);
7288 return 0;
7291 cc_check && _tv_bsdbt848=yes
7294 if test "$_tv_bsdbt848" = yes ; then
7295 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
7296 _inputmodules="tv-bsdbt848 $_inputmodules"
7297 else
7298 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
7299 _noinputmodules="tv-bsdbt848 $_noinputmodules"
7301 echores "$_tv_bsdbt848"
7302 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
7305 echocheck "DirectShow TV interface"
7306 if test "$_tv_dshow" = auto ; then
7307 _tv_dshow=no
7308 if test "$_tv" = yes && win32 ; then
7309 cat > $TMPC <<EOF
7310 #include <ole2.h>
7311 int main(void) {
7312 void* p;
7313 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
7314 return 0;
7317 cc_check -lole32 -luuid && _tv_dshow=yes
7320 if test "$_tv_dshow" = yes ; then
7321 _inputmodules="tv-dshow $_inputmodules"
7322 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
7323 extra_ldflags="$extra_ldflags -lole32 -luuid"
7324 else
7325 _noinputmodules="tv-dshow $_noinputmodules"
7326 def_tv_dshow='#undef CONFIG_TV_DSHOW'
7328 echores "$_tv_dshow"
7331 echocheck "Video 4 Linux TV interface"
7332 if test "$_tv_v4l1" = auto ; then
7333 _tv_v4l1=no
7334 if test "$_tv" = yes && linux ; then
7335 cat > $TMPC <<EOF
7336 #include <stdlib.h>
7337 #include <linux/videodev.h>
7338 int main(void) { return 0; }
7340 cc_check && _tv_v4l1=yes
7343 if test "$_tv_v4l1" = yes ; then
7344 _audio_input=yes
7345 _tv_v4l=yes
7346 def_tv_v4l='#define CONFIG_TV_V4L 1'
7347 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
7348 _inputmodules="tv-v4l $_inputmodules"
7349 else
7350 _noinputmodules="tv-v4l1 $_noinputmodules"
7351 def_tv_v4l='#undef CONFIG_TV_V4L'
7353 echores "$_tv_v4l1"
7356 echocheck "Video 4 Linux 2 TV interface"
7357 if test "$_tv_v4l2" = auto ; then
7358 _tv_v4l2=no
7359 if test "$_tv" = yes && linux ; then
7360 cat > $TMPC <<EOF
7361 #include <stdlib.h>
7362 #include <linux/types.h>
7363 #include <linux/videodev2.h>
7364 int main(void) { return 0; }
7366 cc_check && _tv_v4l2=yes
7369 if test "$_tv_v4l2" = yes ; then
7370 _audio_input=yes
7371 _tv_v4l=yes
7372 def_tv_v4l='#define CONFIG_TV_V4L 1'
7373 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
7374 _inputmodules="tv-v4l2 $_inputmodules"
7375 else
7376 _noinputmodules="tv-v4l2 $_noinputmodules"
7377 def_tv_v4l2='#undef CONFIG_TV_V4L2'
7379 echores "$_tv_v4l2"
7382 echocheck "Radio interface"
7383 if test "$_radio" = yes ; then
7384 def_radio='#define CONFIG_RADIO 1'
7385 _inputmodules="radio $_inputmodules"
7386 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
7387 _radio_capture=no
7389 if test "$_radio_capture" = yes ; then
7390 _audio_input=yes
7391 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
7392 else
7393 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7395 else
7396 _noinputmodules="radio $_noinputmodules"
7397 def_radio='#undef CONFIG_RADIO'
7398 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7399 _radio_capture=no
7401 echores "$_radio"
7402 echocheck "Capture for Radio interface"
7403 echores "$_radio_capture"
7405 echocheck "Video 4 Linux 2 Radio interface"
7406 if test "$_radio_v4l2" = auto ; then
7407 _radio_v4l2=no
7408 if test "$_radio" = yes && linux ; then
7409 cat > $TMPC <<EOF
7410 #include <stdlib.h>
7411 #include <linux/types.h>
7412 #include <linux/videodev2.h>
7413 int main(void) { return 0; }
7415 cc_check && _radio_v4l2=yes
7418 if test "$_radio_v4l2" = yes ; then
7419 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
7420 else
7421 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
7423 echores "$_radio_v4l2"
7425 echocheck "Video 4 Linux Radio interface"
7426 if test "$_radio_v4l" = auto ; then
7427 _radio_v4l=no
7428 if test "$_radio" = yes && linux ; then
7429 cat > $TMPC <<EOF
7430 #include <stdlib.h>
7431 #include <linux/videodev.h>
7432 int main(void) { return 0; }
7434 cc_check && _radio_v4l=yes
7437 if test "$_radio_v4l" = yes ; then
7438 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
7439 else
7440 def_radio_v4l='#undef CONFIG_RADIO_V4L'
7442 echores "$_radio_v4l"
7444 if freebsd || netbsd || openbsd || dragonfly || bsdos \
7445 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
7446 echocheck "*BSD BrookTree 848 Radio interface"
7447 _radio_bsdbt848=no
7448 cat > $TMPC <<EOF
7449 #include <sys/types.h>
7450 $def_ioctl_bt848_h_name
7451 #ifdef IOCTL_BT848_H_NAME
7452 #include IOCTL_BT848_H_NAME
7453 #endif
7454 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
7456 cc_check && _radio_bsdbt848=yes
7457 echores "$_radio_bsdbt848"
7458 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
7460 if test "$_radio_bsdbt848" = yes ; then
7461 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
7462 else
7463 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
7466 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no && \
7467 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
7468 die "Radio driver requires BSD BT848, V4L or V4L2!"
7471 echocheck "Video 4 Linux 2 MPEG PVR interface"
7472 if test "$_pvr" = auto ; then
7473 _pvr=no
7474 if test "$_tv_v4l2" = yes && linux ; then
7475 cat > $TMPC <<EOF
7476 #include <stdlib.h>
7477 #include <inttypes.h>
7478 #include <linux/types.h>
7479 #include <linux/videodev2.h>
7480 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
7482 cc_check && _pvr=yes
7485 if test "$_pvr" = yes ; then
7486 def_pvr='#define CONFIG_PVR 1'
7487 _inputmodules="pvr $_inputmodules"
7488 else
7489 _noinputmodules="pvr $_noinputmodules"
7490 def_pvr='#undef CONFIG_PVR'
7492 echores "$_pvr"
7495 echocheck "ftp"
7496 if ! beos && test "$_ftp" = yes ; then
7497 def_ftp='#define CONFIG_FTP 1'
7498 _inputmodules="ftp $_inputmodules"
7499 else
7500 _noinputmodules="ftp $_noinputmodules"
7501 def_ftp='#undef CONFIG_FTP'
7503 echores "$_ftp"
7505 echocheck "vstream client"
7506 if test "$_vstream" = auto ; then
7507 _vstream=no
7508 cat > $TMPC <<EOF
7509 #include <vstream-client.h>
7510 void vstream_error(const char *format, ... ) {}
7511 int main(void) { vstream_start(); return 0; }
7513 cc_check -lvstream-client && _vstream=yes
7515 if test "$_vstream" = yes ; then
7516 def_vstream='#define CONFIG_VSTREAM 1'
7517 _inputmodules="vstream $_inputmodules"
7518 extra_ldflags="$extra_ldflags -lvstream-client"
7519 else
7520 _noinputmodules="vstream $_noinputmodules"
7521 def_vstream='#undef CONFIG_VSTREAM'
7523 echores "$_vstream"
7526 echocheck "OSD menu"
7527 if test "$_menu" = yes ; then
7528 def_menu='#define CONFIG_MENU 1'
7529 test $_dvbin = "yes" && _menu_dvbin=yes
7530 else
7531 def_menu='#undef CONFIG_MENU'
7532 _menu_dvbin=no
7534 echores "$_menu"
7537 echocheck "Subtitles sorting"
7538 if test "$_sortsub" = yes ; then
7539 def_sortsub='#define CONFIG_SORTSUB 1'
7540 else
7541 def_sortsub='#undef CONFIG_SORTSUB'
7543 echores "$_sortsub"
7546 echocheck "XMMS inputplugin support"
7547 if test "$_xmms" = yes ; then
7548 if ( xmms-config --version ) >/dev/null 2>&1 ; then
7549 _xmmsplugindir=$(xmms-config --input-plugin-dir)
7550 _xmmslibdir=$(xmms-config --exec-prefix)/lib
7551 else
7552 _xmmsplugindir=/usr/lib/xmms/Input
7553 _xmmslibdir=/usr/lib
7556 def_xmms='#define CONFIG_XMMS 1'
7557 if darwin ; then
7558 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
7559 else
7560 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
7562 else
7563 def_xmms='#undef CONFIG_XMMS'
7565 echores "$_xmms"
7567 if test "$_charset" != "noconv" ; then
7568 def_charset="#define MSG_CHARSET \"$_charset\""
7569 else
7570 def_charset="#undef MSG_CHARSET"
7571 _charset="UTF-8"
7574 if test -n "$_charset" && test "$_charset" != "UTF-8" ; then
7575 echocheck "iconv program"
7576 iconv -f UTF-8 -t $_charset ${_mp_help} > /dev/null 2>> "$TMPLOG"
7577 if test "$?" -ne 0 ; then
7578 echores "no"
7579 echo "No working iconv program found, use "
7580 echo "--charset=UTF-8 to continue anyway."
7581 echo "If you also have problems with iconv library functions use --charset=noconv."
7582 exit 1
7583 else
7584 echores "yes"
7588 #############################################################################
7590 echocheck "automatic gdb attach"
7591 if test "$_crash_debug" = yes ; then
7592 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
7593 else
7594 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
7595 _crash_debug=no
7597 echores "$_crash_debug"
7599 echocheck "compiler support for noexecstack"
7600 cat > $TMPC <<EOF
7601 int main(void) { return 0; }
7603 if cc_check -Wl,-z,noexecstack ; then
7604 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
7605 echores "yes"
7606 else
7607 echores "no"
7611 # Dynamic linking flags
7612 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
7613 _ld_dl_dynamic=''
7614 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
7615 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
7616 _ld_dl_dynamic='-rdynamic'
7619 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
7620 bsdos && extra_ldflags="$extra_ldflags -ldvd"
7621 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
7623 def_debug='#undef MP_DEBUG'
7624 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
7627 echocheck "joystick"
7628 def_joystick='#undef CONFIG_JOYSTICK'
7629 if test "$_joystick" = yes ; then
7630 if linux ; then
7631 # TODO add some check
7632 def_joystick='#define CONFIG_JOYSTICK 1'
7633 else
7634 _joystick="no"
7635 _res_comment="unsupported under $system_name"
7638 echores "$_joystick"
7640 echocheck "lirc"
7641 if test "$_lirc" = auto ; then
7642 _lirc=no
7643 cat > $TMPC <<EOF
7644 #include <lirc/lirc_client.h>
7645 int main(void) { return 0; }
7647 cc_check -llirc_client && _lirc=yes
7649 if test "$_lirc" = yes ; then
7650 def_lirc='#define CONFIG_LIRC 1'
7651 libs_mplayer="$libs_mplayer -llirc_client"
7652 else
7653 def_lirc='#undef CONFIG_LIRC'
7655 echores "$_lirc"
7657 echocheck "lircc"
7658 if test "$_lircc" = auto ; then
7659 _lircc=no
7660 cat > $TMPC <<EOF
7661 #include <lirc/lircc.h>
7662 int main(void) { return 0; }
7664 cc_check -llircc && _lircc=yes
7666 if test "$_lircc" = yes ; then
7667 def_lircc='#define CONFIG_LIRCC 1'
7668 libs_mplayer="$libs_mplayer -llircc"
7669 else
7670 def_lircc='#undef CONFIG_LIRCC'
7672 echores "$_lircc"
7674 if arm; then
7675 # Detect maemo development platform libraries availability (http://www.maemo.org),
7676 # they are used when run on Nokia 770|8x0
7677 echocheck "maemo (Nokia 770|8x0)"
7678 if test "$_maemo" = auto ; then
7679 _maemo=no
7680 cat > $TMPC << EOF
7681 #include <libosso.h>
7682 int main(void) { (void) osso_initialize("", "", 0, NULL); return 0; }
7684 cc_check $($_pkg_config --cflags --libs libosso 2>/dev/null) && _maemo=yes
7686 if test "$_maemo" = yes ; then
7687 def_maemo='#define CONFIG_MAEMO 1'
7688 extra_cflags="$extra_cflags $($_pkg_config --cflags libosso)"
7689 extra_ldflags="$extra_ldflags $($_pkg_config --libs libosso) -lXsp"
7690 else
7691 def_maemo='#undef CONFIG_MAEMO'
7693 echores "$_maemo"
7696 #############################################################################
7698 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
7699 # the OMF format needs to come after the 'extern symbol prefix' check, which
7700 # uses nm.
7701 if os2 ; then
7702 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
7705 # linker paths should be the same for mencoder and mplayer
7706 _ld_tmp=""
7707 for I in $libs_mplayer ; do
7708 _tmp=$(echo $I | sed -e 's/^-L.*$//')
7709 if test -z "$_tmp" ; then
7710 extra_ldflags="$extra_ldflags $I"
7711 else
7712 _ld_tmp="$_ld_tmp $I"
7714 done
7715 libs_mplayer=$_ld_tmp
7718 #############################################################################
7719 # 64 bit file offsets?
7720 if test "$_largefiles" = yes || freebsd ; then
7721 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
7722 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
7723 # dvdread support requires this (for off64_t)
7724 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
7728 CXXFLAGS=" $CFLAGS -Iffmpeg -D__STDC_LIMIT_MACROS"
7730 # This must be the last test to be performed. Any other tests following it
7731 # could fail due to linker errors. libdvdnavmini is intentionally not linked
7732 # against libdvdread (to permit MPlayer to use its own copy of the library).
7733 # So any compilation using the flags added here but not linking against
7734 # libdvdread can fail.
7735 echocheck "DVD support (libdvdnav)"
7736 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
7737 _dvdnav=no
7739 dvdnav_internal=no
7740 if test "$_dvdnav" = auto ; then
7741 if test "$_dvdread_internal" = yes ; then
7742 _dvdnav=yes
7743 dvdnav_internal=yes
7744 _res_comment="internal"
7745 else
7746 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
7749 if test "$_dvdnav" = auto ; then
7750 cat > $TMPC <<EOF
7751 #include <inttypes.h>
7752 #include <dvdnav/dvdnav.h>
7753 int main(void) { dvdnav_t *dvd=0; return 0; }
7755 _dvdnav=no
7756 _dvdnavdir=$($_dvdnavconfig --cflags)
7757 _dvdnavlibs=$($_dvdnavconfig --libs)
7758 cc_check $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
7760 if test "$_dvdnav" = yes ; then
7761 _largefiles=yes
7762 def_dvdnav='#define CONFIG_DVDNAV 1'
7763 if test "$dvdnav_internal" = yes ; then
7764 cflags_libdvdnav="-Ilibdvdnav"
7765 _inputmodules="dvdnav(internal) $_inputmodules"
7766 else
7767 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
7768 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
7769 _inputmodules="dvdnav $_inputmodules"
7771 else
7772 def_dvdnav='#undef CONFIG_DVDNAV'
7773 _noinputmodules="dvdnav $_noinputmodules"
7775 echores "$_dvdnav"
7777 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
7778 # Read dvdnav comment above.
7780 #############################################################################
7781 echo "Creating config.mak"
7782 cat > config.mak << EOF
7783 # -------- Generated by configure -----------
7785 # Ensure that locale settings do not interfere with shell commands.
7786 export LC_ALL = C
7788 CONFIGURATION = $_configuration
7790 CHARSET = $_charset
7791 DOC_LANGS = $language_doc
7792 DOC_LANG_ALL = $doc_lang_all
7793 MAN_LANGS = $language_man
7794 MAN_LANG_ALL = $man_lang_all
7796 prefix = \$(DESTDIR)$_prefix
7797 BINDIR = \$(DESTDIR)$_bindir
7798 DATADIR = \$(DESTDIR)$_datadir
7799 LIBDIR = \$(DESTDIR)$_libdir
7800 MANDIR = \$(DESTDIR)$_mandir
7801 CONFDIR = \$(DESTDIR)$_confdir
7803 AR = $_ar
7804 AS = $_cc
7805 CC = $_cc
7806 CXX = $_cc
7807 HOST_CC = $_host_cc
7808 YASM = $_yasm
7809 INSTALL = $_install
7810 INSTALLSTRIP = $_install_strip
7811 RANLIB = $_ranlib
7812 WINDRES = $_windres
7814 CFLAGS = $CFLAGS $extra_cflags
7815 CXXFLAGS = $CXXFLAGS $extra_cflags $extra_cxxflags
7816 CFLAGS_DHAHELPER = $cflags_dhahelper
7817 CFLAGS_FAAD_FIXED = $cflags_faad_fixed
7818 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
7819 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
7820 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
7821 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
7822 CFLAGS_STACKREALIGN = $cflags_stackrealign
7823 CFLAGS_SVGALIB_HELPER = $cflags_svgalib_helper
7824 CFLAGS_TREMOR_LOW = $cflags_tremor_low
7825 YASMFLAGS = $YASMFLAGS
7827 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
7828 EXTRALIBS_MPLAYER = $libs_mplayer
7829 EXTRALIBS_MENCODER = $libs_mencoder
7831 MPDEPEND_CMD = \$(CC) -MM \$(CFLAGS) \$(filter-out %.xpm,\$(filter-out %.h,$^)) | sed -e "s,[0-9a-z._-]*: \([a-z0-9/]*/\)[^/]* ,\1&," -e "s,\(.*\)\.o: ,\1.d &,"
7832 MPDEPEND_CMD_CXX = \$(CC) -MM \$(CXXFLAGS) \$(filter-out %.hh,\$(filter-out %.h,$^)) | sed -e "s,[0-9a-z._-]*: \([a-z0-9/]*/\)[^/]* ,\1&," -e "s,\(.*\)\.o: ,\1.d &,"
7834 GETCH = $_getch
7835 HELP_FILE = $_mp_help
7836 TIMER = $_timer
7838 EXESUF = $_exesuf
7839 EXESUFS_ALL = .exe
7841 $_target_arch
7842 $_target_subarch
7843 $(echo $_cpuexts | tr '[a-z] ' '[A-Z]\n' | sed 's/^/HAVE_/;s/$/=yes/')
7845 MENCODER = $_mencoder
7846 MPLAYER = $_mplayer
7848 NEED_GETTIMEOFDAY = $_need_gettimeofday
7849 NEED_GLOB = $_need_glob
7850 NEED_MMAP = $_need_mmap
7851 NEED_SETENV = $_need_setenv
7852 NEED_SHMEM = $_need_shmem
7853 NEED_STRSEP = $_need_strsep
7854 NEED_SWAB = $_need_swab
7855 NEED_VSSCANF = $_need_vsscanf
7857 # features
7858 3DFX = $_3dfx
7859 AA = $_aa
7860 ALSA1X = $_alsa1x
7861 ALSA9 = $_alsa9
7862 ALSA5 = $_alsa5
7863 APPLE_IR = $_apple_ir
7864 APPLE_REMOTE = $_apple_remote
7865 ARTS = $_arts
7866 AUDIO_INPUT = $_audio_input
7867 BITMAP_FONT = $_bitmap_font
7868 BL = $_bl
7869 CACA = $_caca
7870 CDDA = $_cdda
7871 CDDB = $_cddb
7872 COREAUDIO = $_coreaudio
7873 COREVIDEO = $_corevideo
7874 DART = $_dart
7875 DFBMGA = $_dfbmga
7876 DGA = $_dga
7877 DIRECT3D = $_direct3d
7878 DIRECTFB = $_directfb
7879 DIRECTX = $_directx
7880 DVBIN = $_dvbin
7881 DVDNAV = $_dvdnav
7882 DVDNAV_INTERNAL = $dvdnav_internal
7883 DVDREAD = $_dvdread
7884 DVDREAD_INTERNAL = $_dvdread_internal
7885 DXR2 = $_dxr2
7886 DXR3 = $_dxr3
7887 ESD = $_esd
7888 FAAC=$_faac
7889 FAAD = $_faad
7890 FAAD_INTERNAL = $_faad_internal
7891 FASTMEMCPY = $_fastmemcpy
7892 FBDEV = $_fbdev
7893 GLAMO = $_glamo
7894 FREETYPE = $_freetype
7895 FTP = $_ftp
7896 GIF = $_gif
7897 GGI = $_ggi
7898 GL = $_gl
7899 GL_WIN32 = $_gl_win32
7900 GL_X11 = $_gl_x11
7901 MATRIXVIEW = $matrixview
7902 HAVE_POSIX_SELECT = $_posix_select
7903 HAVE_SYS_MMAN_H = $_mman
7904 IVTV = $_ivtv
7905 JACK = $_jack
7906 JOYSTICK = $_joystick
7907 JPEG = $_jpeg
7908 KVA = $_kva
7909 LADSPA = $_ladspa
7910 LIBA52 = $_liba52
7911 LIBA52_INTERNAL = $_liba52_internal
7912 LIBASS = $_ass
7913 LIBBS2B = $_libbs2b
7914 LIBDCA = $_libdca
7915 LIBDV = $_libdv
7916 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
7917 LIBLZO = $_liblzo
7918 LIBMAD = $_mad
7919 LIBMENU = $_menu
7920 LIBMENU_DVBIN = $_menu_dvbin
7921 LIBMPEG2 = $_libmpeg2
7922 LIBNEMESI = $_nemesi
7923 LIBNUT = $_libnut
7924 LIBSMBCLIENT = $_smb
7925 LIBTHEORA = $_theora
7926 LIRC = $_lirc
7927 LIVE555 = $_live
7928 MACOSX_BUNDLE = $_macosx_bundle
7929 MACOSX_FINDER = $_macosx_finder
7930 MD5SUM = $_md5sum
7931 MGA = $_mga
7932 MNG = $_mng
7933 MP3LAME = $_mp3lame
7934 MP3LIB = $_mp3lib
7935 MUSEPACK = $_musepack
7936 NAS = $_nas
7937 NATIVE_RTSP = $_native_rtsp
7938 NETWORK = $_network
7939 OPENAL = $_openal
7940 OSS = $_ossaudio
7941 PE_EXECUTABLE = $_pe_executable
7942 PNG = $_png
7943 PNM = $_pnm
7944 PRIORITY = $_priority
7945 PULSE = $_pulse
7946 PVR = $_pvr
7947 QTX_CODECS = $_qtx
7948 QTX_CODECS_WIN32 = $_qtx_codecs_win32
7949 QTX_EMULATION = $_qtx_emulation
7950 QUARTZ = $_quartz
7951 RADIO=$_radio
7952 RADIO_CAPTURE=$_radio_capture
7953 REAL_CODECS = $_real
7954 S3FB = $_s3fb
7955 SDL = $_sdl
7956 SPEEX = $_speex
7957 STREAM_CACHE = $_stream_cache
7958 SGIAUDIO = $_sgiaudio
7959 SUNAUDIO = $_sunaudio
7960 SVGA = $_svga
7961 TDFXFB = $_tdfxfb
7962 TDFXVID = $_tdfxvid
7963 TGA = $_tga
7964 TOOLAME=$_toolame
7965 TREMOR_INTERNAL = $_tremor_internal
7966 TV = $_tv
7967 TV_BSDBT848 = $_tv_bsdbt848
7968 TV_DSHOW = $_tv_dshow
7969 TV_V4L = $_tv_v4l
7970 TV_V4L1 = $_tv_v4l1
7971 TV_V4L2 = $_tv_v4l2
7972 TWOLAME=$_twolame
7973 UNRAR_EXEC = $_unrar_exec
7974 V4L2 = $_v4l2
7975 VCD = $_vcd
7976 VDPAU = $_vdpau
7977 VESA = $_vesa
7978 VIDIX = $_vidix
7979 VIDIX_PCIDB = $_vidix_pcidb_val
7980 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
7981 VIDIX_IVTV=$_vidix_drv_ivtv
7982 VIDIX_MACH64=$_vidix_drv_mach64
7983 VIDIX_MGA=$_vidix_drv_mga
7984 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
7985 VIDIX_NVIDIA=$_vidix_drv_nvidia
7986 VIDIX_PM2=$_vidix_drv_pm2
7987 VIDIX_PM3=$_vidix_drv_pm3
7988 VIDIX_RADEON=$_vidix_drv_radeon
7989 VIDIX_RAGE128=$_vidix_drv_rage128
7990 VIDIX_S3=$_vidix_drv_s3
7991 VIDIX_SH_VEU=$_vidix_drv_sh_veu
7992 VIDIX_SIS=$_vidix_drv_sis
7993 VIDIX_UNICHROME=$_vidix_drv_unichrome
7994 VORBIS = $_vorbis
7995 VSTREAM = $_vstream
7996 WII = $_wii
7997 WIN32DLL = $_win32dll
7998 WIN32WAVEOUT = $_win32waveout
7999 WIN32_EMULATION = $_win32_emulation
8000 WINVIDIX = $winvidix
8001 X11 = $_x11
8002 X264 = $_x264
8003 XANIM_CODECS = $_xanim
8004 XMGA = $_xmga
8005 XMMS_PLUGINS = $_xmms
8006 XV = $_xv
8007 XVID4 = $_xvid
8008 XVIDIX = $xvidix
8009 XVMC = $_xvmc
8010 XVR100 = $_xvr100
8011 YUV4MPEG = $_yuv4mpeg
8012 ZR = $_zr
8014 # FFmpeg
8015 LIBAVUTIL = $_libavutil
8016 LIBAVCODEC = $_libavcodec
8017 LIBAVFORMAT = $_libavformat
8018 LIBPOSTPROC = $_libpostproc
8019 LIBSWSCALE = $_libswscale
8020 LIBAVCODEC_INTERNALS = $_libavcodec_internals
8021 LIBSWSCALE_INTERNALS = $_libswscale_internals
8022 FFMPEG_SOURCE_PATH = $_ffmpeg_source
8024 # Some FFmpeg codecs depend on these. Enable them unconditionally for now.
8025 CONFIG_AANDCT=yes
8026 CONFIG_FFT=yes
8027 CONFIG_FFT_MMX=$fft_mmx
8028 CONFIG_GOLOMB=yes
8029 CONFIG_LPC=yes
8030 CONFIG_MDCT=yes
8031 CONFIG_RDFT=yes
8033 CONFIG_BZLIB=$bzlib
8034 CONFIG_ENCODERS=yes
8035 CONFIG_GPL=yes
8036 CONFIG_MLIB = $_mlib
8037 CONFIG_MUXERS=$_mencoder
8038 CONFIG_VDPAU=$_vdpau
8039 CONFIG_XVMC=$_xvmc
8040 CONFIG_ZLIB=$_zlib
8042 HAVE_PTHREADS = $_pthreads
8043 HAVE_SHM = $_shm
8044 HAVE_W32THREADS = $_w32threads
8045 HAVE_YASM = $_have_yasm
8049 #############################################################################
8051 ff_config_enable () {
8052 _nprefix=$3;
8053 test -z "$_nprefix" && _nprefix='CONFIG'
8054 for part in $1; do
8055 if $(echo $2 | grep -q -E "(^| )$part($| )"); then
8056 echo "#define ${_nprefix}_$part 1"
8057 else
8058 echo "#define ${_nprefix}_$part 0"
8060 done
8063 echo "Creating config.h"
8064 cat > $TMPH << EOF
8065 /*----------------------------------------------------------------------------
8066 ** This file has been automatically generated by configure any changes in it
8067 ** will be lost when you run configure again.
8068 ** Instead of modifying definitions here, use the --enable/--disable options
8069 ** of the configure script! See ./configure --help for details.
8070 *---------------------------------------------------------------------------*/
8072 #ifndef MPLAYER_CONFIG_H
8073 #define MPLAYER_CONFIG_H
8075 /* Undefine this if you do not want to select mono audio (left or right)
8076 with a stereo MPEG layer 2/3 audio stream. The command line option
8077 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
8078 right-only), with 0 being the default.
8080 #define CONFIG_FAKE_MONO 1
8082 /* set up audio OUTBURST. Do not change this! */
8083 #define OUTBURST 512
8085 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
8086 #undef FAST_OSD
8087 #undef FAST_OSD_TABLE
8089 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
8090 #define MPEG12_POSTPROC 1
8091 #define ATTRIBUTE_ALIGNED_MAX 16
8095 #define CONFIGURATION "$_configuration"
8097 #define MPLAYER_DATADIR "$_datadir"
8098 #define MPLAYER_CONFDIR "$_confdir"
8099 #define MPLAYER_LIBDIR "$_libdir"
8101 /* definitions needed by included libraries */
8102 #define HAVE_INTTYPES_H 1
8103 /* libmpeg2 + FFmpeg */
8104 $def_fast_inttypes
8105 /* libdvdcss */
8106 #define HAVE_ERRNO_H 1
8107 /* libdvdcss + libdvdread */
8108 #define HAVE_LIMITS_H 1
8109 /* libdvdcss + libfaad2 */
8110 #define HAVE_UNISTD_H 1
8111 /* libfaad2 + libdvdread */
8112 #define STDC_HEADERS 1
8113 #define HAVE_MEMCPY 1
8114 /* libfaad2 */
8115 #define HAVE_STRING_H 1
8116 #define HAVE_STRINGS_H 1
8117 #define HAVE_SYS_STAT_H 1
8118 #define HAVE_SYS_TYPES_H 1
8119 /* libdvdnav */
8120 #define READ_CACHE_TRACE 0
8121 /* libdvdread */
8122 #define HAVE_DLFCN_H 1
8123 $def_dvdcss
8126 /* system headers */
8127 $def_alloca_h
8128 $def_alsa_asoundlib_h
8129 $def_altivec_h
8130 $def_malloc_h
8131 $def_mman_h
8132 $def_mman_has_map_failed
8133 $def_soundcard_h
8134 $def_sys_asoundlib_h
8135 $def_sys_soundcard_h
8136 $def_sys_sysinfo_h
8137 $def_termios_h
8138 $def_termios_sys_h
8139 $def_winsock2_h
8142 /* system functions */
8143 $def_gethostbyname2
8144 $def_gettimeofday
8145 $def_glob
8146 $def_langinfo
8147 $def_llrint
8148 $def_log2
8149 $def_lrint
8150 $def_lrintf
8151 $def_map_memalign
8152 $def_memalign
8153 $def_nanosleep
8154 $def_posix_select
8155 $def_round
8156 $def_roundf
8157 $def_select
8158 $def_setenv
8159 $def_shm
8160 $def_strsep
8161 $def_swab
8162 $def_sysi86
8163 $def_sysi86_iv
8164 $def_termcap
8165 $def_termios
8166 $def_truncf
8167 $def_vsscanf
8170 /* system-specific features */
8171 $def_asmalign_pot
8172 $def_builtin_expect
8173 $def_dl
8174 $def_extern_asm
8175 $def_extern_prefix
8176 $def_iconv
8177 $def_kstat
8178 $def_macosx_bundle
8179 $def_macosx_finder
8180 $def_maemo
8181 $def_named_asm_args
8182 $def_priority
8183 $def_quicktime
8184 $def_restrict_keyword
8185 $def_rtc
8186 $def_unrar_exec
8189 /* configurable options */
8190 $def_charset
8191 $def_crash_debug
8192 $def_debug
8193 $def_dynamic_plugins
8194 $def_fastmemcpy
8195 $def_menu
8196 $def_runtime_cpudetection
8197 $def_sighandler
8198 $def_sortsub
8199 $def_stream_cache
8200 $def_pthread_cache
8203 /* CPU stuff */
8204 #define __CPU__ $iproc
8205 $def_words_endian
8206 $def_bigendian
8207 $(ff_config_enable "$_arch_all" "$_arch" "ARCH")
8208 $(ff_config_enable "$_cpuexts_all" "$_cpuexts" "HAVE")
8211 /* DVD/VCD/CD */
8212 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
8213 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
8214 $def_bsdi_dvd
8215 $def_cddb
8216 $def_cdio
8217 $def_cdparanoia
8218 $def_cdrom
8219 $def_dvd
8220 $def_dvd_bsd
8221 $def_dvd_darwin
8222 $def_dvd_linux
8223 $def_dvd_openbsd
8224 $def_dvdio
8225 $def_dvdnav
8226 $def_dvdread
8227 $def_hpux_scsi_h
8228 $def_libcdio
8229 $def_sol_scsi_h
8230 $def_vcd
8233 /* codec libraries */
8234 $def_faac
8235 $def_faad
8236 $def_faad_internal
8237 $def_liba52
8238 $def_liba52_internal
8239 $def_libdca
8240 $def_libdv
8241 $def_liblzo
8242 $def_libmpeg2
8243 $def_mad
8244 $def_mp3lame
8245 $def_mp3lame_preset
8246 $def_mp3lame_preset_medium
8247 $def_mp3lib
8248 $def_musepack
8249 $def_speex
8250 $def_theora
8251 $def_toolame
8252 $def_tremor
8253 $def_twolame
8254 $def_vorbis
8255 $def_x264
8256 $def_xvid
8257 $def_zlib
8259 $def_libnut
8262 /* binary codecs */
8263 $def_qtx
8264 $def_qtx_win32
8265 $def_real
8266 $def_real_path
8267 $def_win32_loader
8268 $def_win32dll
8269 #define WIN32_PATH "$_win32codecsdir"
8270 $def_xanim
8271 $def_xanim_path
8272 $def_xmms
8273 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
8276 /* Audio output drivers */
8277 $def_alsa
8278 $def_alsa1x
8279 $def_alsa5
8280 $def_alsa9
8281 $def_arts
8282 $def_coreaudio
8283 $def_dart
8284 $def_esd
8285 $def_esd_latency
8286 $def_jack
8287 $def_nas
8288 $def_openal
8289 $def_openal_h
8290 $def_ossaudio
8291 $def_ossaudio_devdsp
8292 $def_ossaudio_devmixer
8293 $def_pulse
8294 $def_sgiaudio
8295 $def_sunaudio
8296 $def_win32waveout
8298 $def_ladspa
8299 $def_libbs2b
8302 /* input */
8303 $def_apple_ir
8304 $def_apple_remote
8305 $def_ioctl_bt848_h_name
8306 $def_ioctl_meteor_h_name
8307 $def_joystick
8308 $def_lirc
8309 $def_lircc
8310 $def_pvr
8311 $def_radio
8312 $def_radio_bsdbt848
8313 $def_radio_capture
8314 $def_radio_v4l
8315 $def_radio_v4l2
8316 $def_tv
8317 $def_tv_bsdbt848
8318 $def_tv_dshow
8319 $def_tv_v4l
8320 $def_tv_v4l1
8321 $def_tv_v4l2
8324 /* font stuff */
8325 $def_ass
8326 $def_bitmap_font
8327 $def_enca
8328 $def_fontconfig
8329 $def_freetype
8330 $def_fribidi
8333 /* networking */
8334 $def_closesocket
8335 $def_ftp
8336 $def_inet6
8337 $def_inet_aton
8338 $def_inet_pton
8339 $def_live
8340 $def_nemesi
8341 $def_network
8342 $def_smb
8343 $def_socklen_t
8344 $def_vstream
8347 /* libvo options */
8348 $def_3dfx
8349 $def_aa
8350 $def_bl
8351 $def_caca
8352 $def_corevideo
8353 $def_dfbmga
8354 $def_dga
8355 $def_dga1
8356 $def_dga2
8357 $def_direct3d
8358 $def_directfb
8359 $def_directfb_version
8360 $def_directx
8361 $def_dvb
8362 $def_dvb_head
8363 $def_dvbin
8364 $def_dxr2
8365 $def_dxr3
8366 $def_fbdev
8367 $def_ggi
8368 $def_ggiwmh
8369 $def_gif
8370 $def_gif_4
8371 $def_gif_tvt_hack
8372 $def_gl
8373 $def_gl_win32
8374 $def_glamo
8375 $def_gl_x11
8376 $def_matrixview
8377 $def_ivtv
8378 $def_jpeg
8379 $def_kva
8380 $def_md5sum
8381 $def_mga
8382 $def_mng
8383 $def_png
8384 $def_pnm
8385 $def_quartz
8386 $def_s3fb
8387 $def_sdl
8388 $def_sdl_sdl_h
8389 $def_sdlbuggy
8390 $def_svga
8391 $def_tdfxfb
8392 $def_tdfxvid
8393 $def_tga
8394 $def_v4l2
8395 $def_vdpau
8396 $def_vesa
8397 $def_vidix
8398 $def_vidix_drv_cyberblade
8399 $def_vidix_drv_ivtv
8400 $def_vidix_drv_mach64
8401 $def_vidix_drv_mga
8402 $def_vidix_drv_mga_crtc2
8403 $def_vidix_drv_nvidia
8404 $def_vidix_drv_pm3
8405 $def_vidix_drv_radeon
8406 $def_vidix_drv_rage128
8407 $def_vidix_drv_s3
8408 $def_vidix_drv_sh_veu
8409 $def_vidix_drv_sis
8410 $def_vidix_drv_unichrome
8411 $def_vidix_pfx
8412 $def_vm
8413 $def_wii
8414 $def_x11
8415 $def_xdpms
8416 $def_xf86keysym
8417 $def_xinerama
8418 $def_xmga
8419 $def_xss
8420 $def_xv
8421 $def_xvmc
8422 $def_xvr100
8423 $def_yuv4mpeg
8424 $def_zr
8427 /* FFmpeg */
8428 $def_libavcodec
8429 $def_libavformat
8430 $def_libavutil
8431 $def_libpostproc
8432 $def_libswscale
8433 $def_libavcodec_internals
8434 $def_libswscale_internals
8436 #define CONFIG_DECODERS 1
8437 #define CONFIG_ENCODERS 1
8438 #define CONFIG_DEMUXERS 1
8439 $def_muxers
8441 $def_arpa_inet_h
8442 $def_bswap
8443 $def_bzlib
8444 $def_dcbzl
8445 $def_dos_paths
8446 $def_fast_64bit
8447 $def_fast_unaligned
8448 $def_memalign_hack
8449 $def_mlib
8450 $def_mkstemp
8451 $def_posix_memalign
8452 $def_pthreads
8453 $def_ten_operands
8454 $def_threads
8455 $def_xform_asm
8456 $def_yasm
8458 #define CONFIG_FASTDIV 0
8459 #define CONFIG_FFSERVER 0
8460 #define CONFIG_GPL 1
8461 #define CONFIG_GRAY 0
8462 #define CONFIG_HARDCODED_TABLES 0
8463 #define CONFIG_LIBVORBIS 0
8464 #define CONFIG_POWERPC_PERF 0
8465 #define CONFIG_SMALL 0
8466 #define CONFIG_SWSCALE 1
8467 #define CONFIG_SWSCALE_ALPHA 1
8469 #define HAVE_ATTRIBUTE_PACKED 1
8470 #define HAVE_GETHRTIME 0
8471 #define HAVE_INLINE_ASM 0
8472 #define HAVE_LDBRX 0
8473 #define HAVE_POLL_H 1
8474 #define HAVE_PPC4XX 0
8475 #define HAVE_VIRTUALALLOC 0
8477 /* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */
8478 #define CONFIG_AANDCT 1
8479 #define CONFIG_FFT 1
8480 #define CONFIG_GOLOMB 1
8481 #define CONFIG_LPC 1
8482 #define CONFIG_MDCT 1
8483 #define CONFIG_RDFT 1
8485 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
8486 $def_ebx_available
8487 #ifndef MP_DEBUG
8488 #define HAVE_EBP_AVAILABLE 1
8489 #else
8490 #define HAVE_EBP_AVAILABLE 0
8491 #endif
8493 #define CONFIG_H263_VAAPI_HWACCEL 0
8494 #define CONFIG_MPEG2_VAAPI_HWACCEL 0
8495 #define CONFIG_MPEG4_VAAPI_HWACCEL 0
8496 #define CONFIG_H264_VAAPI_HWACCEL 0
8497 #define CONFIG_VC1_VAAPI_HWACCEL 0
8498 #define CONFIG_WMV3_VAAPI_HWACCEL 0
8500 #endif /* MPLAYER_CONFIG_H */
8503 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
8504 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
8506 #############################################################################
8508 ./version.sh `$_cc -dumpversion`
8510 cat << EOF
8512 Config files successfully generated by ./configure $_configuration !
8514 Install prefix: $_prefix
8515 Data directory: $_datadir
8516 Config direct.: $_confdir
8518 Byte order: $_byte_order
8519 Optimizing for: $_optimizing
8521 Languages:
8522 Messages: $language_msg
8523 Manual pages: $language_man
8524 Documentation: $language_doc
8526 Enabled optional drivers:
8527 Input: $_inputmodules
8528 Codecs: $_codecmodules
8529 Audio output: $_aomodules
8530 Video output: $_vomodules
8532 Disabled optional drivers:
8533 Input: $_noinputmodules
8534 Codecs: $_nocodecmodules
8535 Audio output: $_noaomodules
8536 Video output: $_novomodules
8538 'config.h' and 'config.mak' contain your configuration options.
8539 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
8540 compile *** DO NOT REPORT BUGS if you tweak these files ***
8542 'make' will now compile MPlayer and 'make install' will install it.
8543 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
8548 if test "$_mtrr" = yes ; then
8549 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$doc_lang/video.html#mtrr)"
8550 echo
8553 if ! x86_32; then
8554 cat <<EOF
8555 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
8556 operating system ($system_name). You may encounter a few files that cannot
8557 be played due to missing open source video/audio codec support.
8563 cat <<EOF
8564 Check $TMPLOG if you wonder why an autodetection failed (make sure
8565 development headers/packages are installed).
8567 NOTE: The --enable-* parameters unconditionally force options on, completely
8568 skipping autodetection. This behavior is unlike what you may be used to from
8569 autoconf-based configure scripts that can decide to override you. This greater
8570 level of control comes at a price. You may have to provide the correct compiler
8571 and linker flags yourself.
8572 If you used one of these options (except --enable-menu and similar ones that
8573 turn on internal features) and experience a compilation or linking failure,
8574 make sure you have passed the necessary compiler/linker flags to configure.
8576 If you suspect a bug, please read DOCS/HTML/$doc_lang/bugreports.html.
8580 if test "$_warn_CFLAGS" = yes; then
8581 cat <<EOF
8583 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
8584 but:
8586 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
8588 It is strongly recommended to let MPlayer choose the correct CFLAGS!
8589 To do so, execute 'CFLAGS= ./configure <options>'
8594 # Last move:
8595 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP" "$TMPH"