Merge svn changes up to r30876
[mplayer/kovensky.git] / configure
blob93804a8734d5637edcc93fc9bb6c4c120dbdf883
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 --localedir=DIR directory for locale tree [PREFIX/share/locale]
220 --libdir=DIR directory for object code libraries [PREFIX/lib]
221 --codecsdir=DIR directory for binary codecs [LIBDIR/codecs]
222 --win32codecsdir=DIR directory for Windows DLLs [LIBDIR/codecs]
223 --xanimcodecsdir=DIR directory for XAnim codecs [LIBDIR/codecs]
224 --realcodecsdir=DIR directory for RealPlayer codecs [LIBDIR/codecs]
226 Optional features:
227 --disable-mencoder disable MEncoder (A/V encoder) compilation [enable]
228 --disable-mplayer disable MPlayer compilation [enable]
229 --disable-largefiles disable support for files > 2GB [enable]
230 --enable-linux-devfs set default devices to devfs [disable]
231 --enable-termcap use termcap database for key codes [autodetect]
232 --enable-termios use termios database for key codes [autodetect]
233 --disable-iconv disable iconv for encoding conversion [autodetect]
234 --disable-langinfo do not use langinfo [autodetect]
235 --enable-lirc enable LIRC (remote control) support [autodetect]
236 --enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect]
237 --enable-joystick enable joystick support [disable]
238 --enable-apple-remote enable Apple Remote input (Mac OS X only) [autodetect]
239 --enable-apple-ir enable Apple IR Remote input (Linux only) [autodetect]
240 --disable-vm disable X video mode extensions [autodetect]
241 --disable-xf86keysym disable support for multimedia keys [autodetect]
242 --enable-radio enable radio interface [disable]
243 --enable-radio-capture enable radio capture (through PCI/line-in) [disable]
244 --disable-radio-v4l2 disable Video4Linux2 radio interface [autodetect]
245 --disable-radio-bsdbt848 disable BSD BT848 radio interface [autodetect]
246 --disable-tv disable TV interface (TV/DVB grabbers) [enable]
247 --disable-tv-v4l1 disable Video4Linux TV interface [autodetect]
248 --disable-tv-v4l2 disable Video4Linux2 TV interface [autodetect]
249 --disable-tv-bsdbt848 disable BSD BT848 interface [autodetect]
250 --disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
251 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
252 --disable-network disable networking [enable]
253 --enable-winsock2_h enable winsock2_h [autodetect]
254 --enable-smb enable Samba (SMB) input [autodetect]
255 --enable-live enable LIVE555 Streaming Media [autodetect]
256 --enable-nemesi enable Nemesi Streaming Media [autodetect]
257 --disable-vcd disable VCD support [autodetect]
258 --disable-dvdnav disable libdvdnav [autodetect]
259 --disable-dvdread disable libdvdread [autodetect]
260 --disable-dvdread-internal disable internal libdvdread [autodetect]
261 --disable-libdvdcss-internal disable internal libdvdcss [autodetect]
262 --disable-cdparanoia disable cdparanoia [autodetect]
263 --disable-cddb disable cddb [autodetect]
264 --disable-bitmap-font disable bitmap font support [enable]
265 --disable-freetype disable FreeType 2 font rendering [autodetect]
266 --disable-fontconfig disable fontconfig font lookup [autodetect]
267 --disable-unrarexec disable using of UnRAR executable [enabled]
268 --enable-menu enable OSD menu (not DVD menu) [disabled]
269 --disable-sortsub disable subtitle sorting [enabled]
270 --enable-fribidi enable the FriBiDi libs [autodetect]
271 --disable-enca disable ENCA charset oracle library [autodetect]
272 --disable-maemo disable maemo specific features [autodetect]
273 --enable-macosx-finder enable Mac OS X Finder invocation parameter
274 parsing [disabled]
275 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
276 --disable-inet6 disable IPv6 support [autodetect]
277 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
278 --disable-ftp disable FTP support [enabled]
279 --disable-vstream disable TiVo vstream client support [autodetect]
280 --disable-pthreads disable Posix threads support [autodetect]
281 --disable-w32threads disable Win32 threads support [autodetect]
282 --disable-ass disable internal SSA/ASS subtitle support [autodetect]
283 --enable-rpath enable runtime linker path for extra libs [disabled]
285 Codecs:
286 --enable-gif enable GIF support [autodetect]
287 --enable-png enable PNG input/output support [autodetect]
288 --enable-mng enable MNG input support [autodetect]
289 --enable-jpeg enable JPEG input/output support [autodetect]
290 --enable-libcdio enable libcdio support [autodetect]
291 --enable-liblzo enable liblzo support [autodetect]
292 --disable-win32dll disable Win32 DLL support [autodetect]
293 --disable-qtx disable QuickTime codecs support [enabled]
294 --disable-xanim disable XAnim codecs support [enabled]
295 --disable-real disable RealPlayer codecs support [enabled]
296 --disable-xvid disable Xvid [autodetect]
297 --disable-x264 disable x264 [autodetect]
298 --disable-libnut disable libnut [autodetect]
299 --disable-libavutil disable libavutil [autodetect]
300 --disable-libavcodec disable libavcodec [autodetect]
301 --disable-libavformat disable libavformat [autodetect]
302 --disable-libpostproc disable libpostproc [autodetect]
303 --disable-libswscale disable libswscale [autodetect]
304 --disable-tremor-internal disable internal Tremor [enabled]
305 --enable-tremor-low enable lower accuracy internal Tremor [disabled]
306 --enable-tremor enable external Tremor [autodetect]
307 --disable-libvorbis disable libvorbis support [autodetect]
308 --disable-speex disable Speex support [autodetect]
309 --enable-theora enable OggTheora libraries [autodetect]
310 --enable-faad enable external FAAD2 (AAC) [autodetect]
311 --disable-faad-internal disable internal FAAD2 (AAC) [autodetect]
312 --enable-faad-fixed enable fixed-point mode in internal FAAD2 [disabled]
313 --disable-faac disable support for FAAC (AAC encoder) [autodetect]
314 --disable-ladspa disable LADSPA plugin support [autodetect]
315 --disable-libbs2b disable libbs2b audio filter support [autodetect]
316 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
317 --disable-mad disable libmad (MPEG audio) support [autodetect]
318 --disable-mp3lame disable LAME MP3 encoding support [autodetect]
319 --disable-toolame disable Toolame (MPEG layer 2) encoding [autodetect]
320 --disable-twolame disable Twolame (MPEG layer 2) encoding [autodetect]
321 --enable-xmms enable XMMS input plugin support [disabled]
322 --enable-libdca enable libdca support [autodetect]
323 --disable-mp3lib disable builtin mp3lib [autodetect]
324 --disable-liba52 disable liba52 [autodetect]
325 --enable-liba52-internal enable builtin liba52 [disabled]
326 --disable-libmpeg2 disable builtin libmpeg2 [autodetect]
327 --disable-musepack disable musepack support [autodetect]
329 Video output:
330 --disable-vidix disable VIDIX [for x86 *nix]
331 --with-vidix-drivers[=*] list of VIDIX drivers to be compiled in
332 Available: cyberblade,ivtv,mach64,mga,mga_crtc2,
333 nvidia,pm2,pm3,radeon,rage128,s3,sis,unichrome
334 --disable-vidix-pcidb disable VIDIX PCI device name database
335 --enable-dhahelper enable VIDIX dhahelper support
336 --enable-svgalib_helper enable VIDIX svgalib_helper support
337 --enable-gl enable OpenGL video output [autodetect]
338 --disable-matrixview disable OpenGL MatrixView video output [autodetect]
339 --enable-dga2 enable DGA 2 support [autodetect]
340 --enable-dga1 enable DGA 1 support [autodetect]
341 --enable-vesa enable VESA video output [autodetect]
342 --enable-svga enable SVGAlib video output [autodetect]
343 --enable-sdl enable SDL video output [autodetect]
344 --enable-kva enable KVA video output [autodetect]
345 --enable-aa enable AAlib video output [autodetect]
346 --enable-caca enable CACA video output [autodetect]
347 --enable-ggi enable GGI video output [autodetect]
348 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
349 --enable-direct3d enable Direct3D video output [autodetect]
350 --enable-directx enable DirectX video output [autodetect]
351 --enable-dxr2 enable DXR2 video output [autodetect]
352 --enable-dxr3 enable DXR3/H+ video output [autodetect]
353 --enable-ivtv enable IVTV TV-Out video output [autodetect]
354 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
355 --enable-dvb enable DVB video output [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]
384 Audio output:
385 --disable-alsa disable ALSA audio output [autodetect]
386 --disable-ossaudio disable OSS audio output [autodetect]
387 --disable-arts disable aRts audio output [autodetect]
388 --disable-esd disable esd audio output [autodetect]
389 --disable-pulse disable Pulseaudio audio output [autodetect]
390 --disable-jack disable JACK audio output [autodetect]
391 --enable-openal enable OpenAL audio output [disable]
392 --disable-nas disable NAS audio output [autodetect]
393 --disable-sgiaudio disable SGI audio output [autodetect]
394 --disable-sunaudio disable Sun audio output [autodetect]
395 --disable-kai disable KAI 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 --enable-translation enable support for translated output [disable]
403 --charset=charset convert the console messages to this character set
404 --language-doc=lang language to use for the documentation [en]
405 --language-man=lang language to use for the man pages [en]
406 --language-msg=lang language to use for the messages [en]
407 --language=lang default language to use [en]
408 Specific options override --language. You can pass a list of languages separated
409 by whitespace or commas instead of a single language. Nonexisting translations
410 will be dropped from each list. All documentation and man page translations
411 available in the list will be installed, for the messages the first available
412 translation will be used. The value "all" will activate all translations. The
413 LINGUAS environment variable is honored. In all cases the fallback is English.
414 Available values are: all $msg_lang_all
416 Miscellaneous options:
417 --enable-runtime-cpudetection enable runtime CPU detection [disable]
418 --enable-cross-compile enable cross-compilation [autodetect]
419 --cc=COMPILER C compiler to build MPlayer [gcc]
420 --host-cc=COMPILER C compiler for tools needed while building [gcc]
421 --as=ASSEMBLER assembler to build MPlayer [as]
422 --nm=NM nm tool to build MPlayer [nm]
423 --yasm=YASM Yasm assembler to build MPlayer [yasm]
424 --ar=AR librarian to build MPlayer [ar]
425 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
426 --windres=WINDRES windres to build MPlayer [windres]
427 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
428 --enable-static build a statically linked binary
429 --with-install=PATH path to a custom install program
431 Advanced options:
432 --enable-mmx enable MMX [autodetect]
433 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
434 --enable-3dnow enable 3DNow! [autodetect]
435 --enable-3dnowext enable extended 3DNow! [autodetect]
436 --enable-sse enable SSE [autodetect]
437 --enable-sse2 enable SSE2 [autodetect]
438 --enable-ssse3 enable SSSE3 [autodetect]
439 --enable-shm enable shm [autodetect]
440 --enable-altivec enable AltiVec (PowerPC) [autodetect]
441 --enable-armv5te enable DSP extensions (ARM) [autodetect]
442 --enable-armv6 enable ARMv6 (ARM) [autodetect]
443 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
444 --enable-armvfp enable ARM VFP (ARM) [autodetect]
445 --enable-neon enable NEON (ARM) [autodetect]
446 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
447 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
448 --enable-big-endian force byte order to big-endian [autodetect]
449 --enable-debug[=1-3] compile-in debugging information [disable]
450 --enable-profile compile-in profiling information [disable]
451 --disable-sighandler disable sighandler for crashes [enable]
452 --enable-crash-debug enable automatic gdb attach on crash [disable]
453 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
454 --ffmpeg-source-dir=PATH enable features requiring internal FFmpeg headers
456 Use these options if autodetection fails:
457 --extra-cflags=FLAGS extra CFLAGS
458 --extra-ldflags=FLAGS extra LDFLAGS
459 --extra-libs=FLAGS extra linker flags
460 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
461 --extra-libs-mencoder=FLAGS extra linker flags for MEncoder
462 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
464 --with-freetype-config=PATH path to freetype-config
465 --with-fribidi-config=PATH path to fribidi-config
466 --with-glib-config=PATH path to glib*-config
467 --with-gtk-config=PATH path to gtk*-config
468 --with-sdl-config=PATH path to sdl*-config
469 --with-dvdnav-config=PATH path to dvdnav-config
470 --with-dvdread-config=PATH path to dvdread-config
472 This configure script is NOT autoconf-based, even though its output is similar.
473 It will try to autodetect all configuration options. If you --enable an option
474 it will be forcefully turned on, skipping autodetection. This can break
475 compilation, so you need to know what you are doing.
477 exit 0
478 } #show_help()
480 # GOTCHA: the variables below defines the default behavior for autodetection
481 # and have - unless stated otherwise - at least 2 states : yes no
482 # If autodetection is available then the third state is: auto
483 _mmx=auto
484 _3dnow=auto
485 _3dnowext=auto
486 _mmxext=auto
487 _sse=auto
488 _sse2=auto
489 _ssse3=auto
490 _cmov=auto
491 _fast_cmov=auto
492 _fast_clz=auto
493 _armv5te=auto
494 _armv6=auto
495 _armv6t2=auto
496 _armvfp=auto
497 neon=auto
498 _iwmmxt=auto
499 _mtrr=auto
500 _altivec=auto
501 _install=install
502 _ranlib=ranlib
503 _windres=windres
504 _cc=cc
505 _ar=ar
506 test "$CC" && _cc="$CC"
507 _as=auto
508 _nm=auto
509 _yasm=yasm
510 _runtime_cpudetection=no
511 _cross_compile=auto
512 _prefix="/usr/local"
513 _libavutil=auto
514 _libavcodec=auto
515 _libavformat=auto
516 _libpostproc=auto
517 _libswscale=auto
518 _libavcodec_internals=no
519 _libswscale_internals=no
520 _mencoder=yes
521 _mplayer=yes
522 _x11=auto
523 _xshape=auto
524 _xss=auto
525 _dga1=auto
526 _dga2=auto
527 _xv=auto
528 _xvmc=no #auto when complete
529 _vdpau=auto
530 _sdl=auto
531 _kva=auto
532 _direct3d=auto
533 _directx=auto
534 _win32waveout=auto
535 _nas=auto
536 _png=auto
537 _mng=auto
538 _jpeg=auto
539 _pnm=yes
540 _md5sum=yes
541 _yuv4mpeg=yes
542 _gif=auto
543 _gl=auto
544 matrixview=yes
545 _ggi=auto
546 _ggiwmh=auto
547 _aa=auto
548 _caca=auto
549 _svga=auto
550 _vesa=auto
551 _fbdev=auto
552 _dvb=auto
553 _dxr2=auto
554 _dxr3=auto
555 _ivtv=auto
556 _v4l2=auto
557 _iconv=auto
558 _langinfo=auto
559 _rtc=auto
560 _ossaudio=auto
561 _arts=auto
562 _esd=auto
563 _pulse=auto
564 _jack=auto
565 _kai=auto
566 _dart=auto
567 _openal=no
568 _libcdio=auto
569 _liblzo=auto
570 _mad=auto
571 _mp3lame=auto
572 _toolame=auto
573 _twolame=auto
574 _tremor=auto
575 _tremor_internal=yes
576 _tremor_low=no
577 _libvorbis=auto
578 _speex=auto
579 _theora=auto
580 _mp3lib=auto
581 _liba52=auto
582 _liba52_internal=no
583 _libdca=auto
584 _libmpeg2=auto
585 _faad=auto
586 _faad_internal=auto
587 _faad_fixed=no
588 _faac=auto
589 _ladspa=auto
590 _libbs2b=auto
591 _xmms=no
592 _vcd=auto
593 _dvdnav=auto
594 _dvdnavconfig=dvdnav-config
595 _dvdreadconfig=dvdread-config
596 _dvdread=auto
597 _dvdread_internal=auto
598 _libdvdcss_internal=auto
599 _xanim=auto
600 _real=auto
601 _live=auto
602 _nemesi=auto
603 _native_rtsp=yes
604 _xinerama=auto
605 _mga=auto
606 _xmga=auto
607 _vm=auto
608 _xf86keysym=auto
609 _mlib=no #broken, thus disabled
610 _sgiaudio=auto
611 _sunaudio=auto
612 _alsa=auto
613 _fastmemcpy=yes
614 _unrar_exec=auto
615 _win32dll=auto
616 _select=yes
617 _radio=no
618 _radio_capture=no
619 _radio_v4l=auto
620 _radio_v4l2=auto
621 _radio_bsdbt848=auto
622 _tv=yes
623 _tv_v4l1=auto
624 _tv_v4l2=auto
625 _tv_bsdbt848=auto
626 _tv_dshow=auto
627 _pvr=auto
628 _network=yes
629 _winsock2_h=auto
630 _smb=auto
631 _vidix=auto
632 _vidix_pcidb=yes
633 _dhahelper=no
634 _svgalib_helper=no
635 _joystick=no
636 _xvid=auto
637 _x264=auto
638 _libnut=auto
639 _lirc=auto
640 _lircc=auto
641 _apple_remote=auto
642 _apple_ir=auto
643 _gui=no
644 _gtk1=no
645 _termcap=auto
646 _termios=auto
647 _3dfx=no
648 _s3fb=no
649 _wii=no
650 _tdfxfb=no
651 _tdfxvid=no
652 _xvr100=auto
653 _tga=yes
654 _directfb=auto
655 _zr=auto
656 _bl=no
657 _largefiles=yes
658 #language=en
659 _shm=auto
660 _linux_devfs=no
661 _translation=no
662 _charset="UTF-8"
663 _dynamic_plugins=no
664 _crash_debug=no
665 _sighandler=yes
666 _libdv=auto
667 _cdparanoia=auto
668 _cddb=auto
669 _big_endian=auto
670 _bitmap_font=yes
671 _freetype=auto
672 _fontconfig=auto
673 _menu=no
674 _qtx=auto
675 _maemo=auto
676 _coreaudio=auto
677 _corevideo=auto
678 _quartz=auto
679 quicktime=auto
680 _macosx_finder=no
681 _macosx_bundle=auto
682 _sortsub=yes
683 _freetypeconfig='freetype-config'
684 _fribidi=auto
685 _fribidiconfig='fribidi-config'
686 _enca=auto
687 _inet6=auto
688 _gethostbyname2=auto
689 _ftp=yes
690 _musepack=auto
691 _vstream=auto
692 _pthreads=auto
693 _w32threads=auto
694 _ass=auto
695 _rpath=no
696 _asmalign_pot=auto
697 _stream_cache=yes
698 _priority=no
699 def_dos_paths="#define HAVE_DOS_PATHS 0"
700 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
701 def_priority="#undef CONFIG_PRIORITY"
702 def_pthread_cache="#undef PTHREAD_CACHE"
703 _need_shmem=yes
704 for ac_option do
705 case "$ac_option" in
706 --help|-help|-h)
707 show_help
709 --prefix=*)
710 _prefix=$(echo $ac_option | cut -d '=' -f 2)
712 --bindir=*)
713 _bindir=$(echo $ac_option | cut -d '=' -f 2)
715 --datadir=*)
716 _datadir=$(echo $ac_option | cut -d '=' -f 2)
718 --mandir=*)
719 _mandir=$(echo $ac_option | cut -d '=' -f 2)
721 --confdir=*)
722 _confdir=$(echo $ac_option | cut -d '=' -f 2)
724 --libdir=*)
725 _libdir=$(echo $ac_option | cut -d '=' -f 2)
727 --codecsdir=*)
728 _codecsdir=$(echo $ac_option | cut -d '=' -f 2)
730 --win32codecsdir=*)
731 _win32codecsdir=$(echo $ac_option | cut -d '=' -f 2)
733 --xanimcodecsdir=*)
734 _xanimcodecsdir=$(echo $ac_option | cut -d '=' -f 2)
736 --realcodecsdir=*)
737 _realcodecsdir=$(echo $ac_option | cut -d '=' -f 2)
739 --localedir=*)
740 _localedir=$(echo $ac_option | cut -d '=' -f 2)
743 --with-install=*)
744 _install=$(echo $ac_option | cut -d '=' -f 2 )
746 --with-xvmclib=*)
747 _xvmclib=$(echo $ac_option | cut -d '=' -f 2)
750 --with-sdl-config=*)
751 _sdlconfig=$(echo $ac_option | cut -d '=' -f 2)
753 --with-freetype-config=*)
754 _freetypeconfig=$(echo $ac_option | cut -d '=' -f 2)
756 --with-fribidi-config=*)
757 _fribidiconfig=$(echo $ac_option | cut -d '=' -f 2)
759 --with-gtk-config=*)
760 _gtkconfig=$(echo $ac_option | cut -d '=' -f 2)
762 --with-glib-config=*)
763 _glibconfig=$(echo $ac_option | cut -d '=' -f 2)
765 --with-dvdnav-config=*)
766 _dvdnavconfig=$(echo $ac_option | cut -d '=' -f 2)
768 --with-dvdread-config=*)
769 _dvdreadconfig=$(echo $ac_option | cut -d '=' -f 2)
772 --extra-cflags=*)
773 extra_cflags="$extra_cflags $(echo $ac_option | cut -d '=' -f 2-)"
775 --extra-ldflags=*)
776 extra_ldflags="$extra_ldflags $(echo $ac_option | cut -d '=' -f 2-)"
778 --extra-libs=*)
779 extra_libs=$(echo $ac_option | cut -d '=' -f 2)
781 --extra-libs-mplayer=*)
782 libs_mplayer=$(echo $ac_option | cut -d '=' -f 2)
784 --extra-libs-mencoder=*)
785 libs_mencoder=$(echo $ac_option | cut -d '=' -f 2)
788 --target=*)
789 _target=$(echo $ac_option | cut -d '=' -f 2)
791 --cc=*)
792 _cc=$(echo $ac_option | cut -d '=' -f 2)
794 --host-cc=*)
795 _host_cc=$(echo $ac_option | cut -d '=' -f 2)
797 --as=*)
798 _as=$(echo $ac_option | cut -d '=' -f 2)
800 --nm=*)
801 _nm=$(echo $ac_option | cut -d '=' -f 2)
803 --yasm=*)
804 _yasm=$(echo $ac_option | cut -d '=' -f 2)
806 --ar=*)
807 _ar=$(echo $ac_option | cut -d '=' -f 2)
809 --ranlib=*)
810 _ranlib=$(echo $ac_option | cut -d '=' -f 2)
812 --windres=*)
813 _windres=$(echo $ac_option | cut -d '=' -f 2)
815 --charset=*)
816 _charset=$(echo $ac_option | cut -d '=' -f 2)
818 --language-doc=*)
819 language_doc=$(echo $ac_option | cut -d '=' -f 2)
821 --language-man=*)
822 language_man=$(echo $ac_option | cut -d '=' -f 2)
824 --language-msg=*)
825 language_msg=$(echo $ac_option | cut -d '=' -f 2)
827 --language=*)
828 language=$(echo $ac_option | cut -d '=' -f 2)
831 --enable-static)
832 _ld_static='-static'
834 --disable-static)
835 _ld_static=''
837 --enable-profile)
838 _profile='-p'
840 --disable-profile)
841 _profile=
843 --enable-debug)
844 _debug='-g'
846 --enable-debug=*)
847 _debug=$(echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2)
849 --disable-debug)
850 _debug=
852 --enable-translation) _translation=yes ;;
853 --disable-translation) _translation=no ;;
854 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
855 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
856 --enable-cross-compile) _cross_compile=yes ;;
857 --disable-cross-compile) _cross_compile=no ;;
858 --enable-mencoder) _mencoder=yes ;;
859 --disable-mencoder) _mencoder=no ;;
860 --enable-mplayer) _mplayer=yes ;;
861 --disable-mplayer) _mplayer=no ;;
862 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
863 --disable-dynamic-plugins) _dynamic_plugins=no ;;
864 --enable-x11) _x11=yes ;;
865 --disable-x11) _x11=no ;;
866 --enable-xshape) _xshape=yes ;;
867 --disable-xshape) _xshape=no ;;
868 --enable-xss) _xss=yes ;;
869 --disable-xss) _xss=no ;;
870 --enable-xv) _xv=yes ;;
871 --disable-xv) _xv=no ;;
872 --enable-xvmc) _xvmc=yes ;;
873 --disable-xvmc) _xvmc=no ;;
874 --enable-vdpau) _vdpau=yes ;;
875 --disable-vdpau) _vdpau=no ;;
876 --enable-sdl) _sdl=yes ;;
877 --disable-sdl) _sdl=no ;;
878 --enable-kva) _kva=yes ;;
879 --disable-kva) _kva=no ;;
880 --enable-direct3d) _direct3d=yes ;;
881 --disable-direct3d) _direct3d=no ;;
882 --enable-directx) _directx=yes ;;
883 --disable-directx) _directx=no ;;
884 --enable-win32waveout) _win32waveout=yes ;;
885 --disable-win32waveout) _win32waveout=no ;;
886 --enable-nas) _nas=yes ;;
887 --disable-nas) _nas=no ;;
888 --enable-png) _png=yes ;;
889 --disable-png) _png=no ;;
890 --enable-mng) _mng=yes ;;
891 --disable-mng) _mng=no ;;
892 --enable-jpeg) _jpeg=yes ;;
893 --disable-jpeg) _jpeg=no ;;
894 --enable-pnm) _pnm=yes ;;
895 --disable-pnm) _pnm=no ;;
896 --enable-md5sum) _md5sum=yes ;;
897 --disable-md5sum) _md5sum=no ;;
898 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
899 --disable-yuv4mpeg) _yuv4mpeg=no ;;
900 --enable-gif) _gif=yes ;;
901 --disable-gif) _gif=no ;;
902 --enable-gl) _gl=yes ;;
903 --disable-gl) _gl=no ;;
904 --enable-matrixview) matrixview=yes ;;
905 --disable-matrixview) matrixview=no ;;
906 --enable-ggi) _ggi=yes ;;
907 --disable-ggi) _ggi=no ;;
908 --enable-ggiwmh) _ggiwmh=yes ;;
909 --disable-ggiwmh) _ggiwmh=no ;;
910 --enable-aa) _aa=yes ;;
911 --disable-aa) _aa=no ;;
912 --enable-caca) _caca=yes ;;
913 --disable-caca) _caca=no ;;
914 --enable-svga) _svga=yes ;;
915 --disable-svga) _svga=no ;;
916 --enable-vesa) _vesa=yes ;;
917 --disable-vesa) _vesa=no ;;
918 --enable-fbdev) _fbdev=yes ;;
919 --disable-fbdev) _fbdev=no ;;
920 --enable-dvb) _dvb=yes ;;
921 --disable-dvb) _dvb=no ;;
922 --enable-dxr2) _dxr2=yes ;;
923 --disable-dxr2) _dxr2=no ;;
924 --enable-dxr3) _dxr3=yes ;;
925 --disable-dxr3) _dxr3=no ;;
926 --enable-ivtv) _ivtv=yes ;;
927 --disable-ivtv) _ivtv=no ;;
928 --enable-v4l2) _v4l2=yes ;;
929 --disable-v4l2) _v4l2=no ;;
930 --enable-iconv) _iconv=yes ;;
931 --disable-iconv) _iconv=no ;;
932 --enable-langinfo) _langinfo=yes ;;
933 --disable-langinfo) _langinfo=no ;;
934 --enable-rtc) _rtc=yes ;;
935 --disable-rtc) _rtc=no ;;
936 --enable-libdv) _libdv=yes ;;
937 --disable-libdv) _libdv=no ;;
938 --enable-ossaudio) _ossaudio=yes ;;
939 --disable-ossaudio) _ossaudio=no ;;
940 --enable-arts) _arts=yes ;;
941 --disable-arts) _arts=no ;;
942 --enable-esd) _esd=yes ;;
943 --disable-esd) _esd=no ;;
944 --enable-pulse) _pulse=yes ;;
945 --disable-pulse) _pulse=no ;;
946 --enable-jack) _jack=yes ;;
947 --disable-jack) _jack=no ;;
948 --enable-openal) _openal=yes ;;
949 --disable-openal) _openal=no ;;
950 --enable-kai) _kai=yes ;;
951 --disable-kai) _kai=no ;;
952 --enable-dart) _dart=yes ;;
953 --disable-dart) _dart=no ;;
954 --enable-mad) _mad=yes ;;
955 --disable-mad) _mad=no ;;
956 --enable-mp3lame) _mp3lame=yes ;;
957 --disable-mp3lame) _mp3lame=no ;;
958 --enable-toolame) _toolame=yes ;;
959 --disable-toolame) _toolame=no ;;
960 --enable-twolame) _twolame=yes ;;
961 --disable-twolame) _twolame=no ;;
962 --enable-libcdio) _libcdio=yes ;;
963 --disable-libcdio) _libcdio=no ;;
964 --enable-liblzo) _liblzo=yes ;;
965 --disable-liblzo) _liblzo=no ;;
966 --enable-libvorbis) _libvorbis=yes ;;
967 --disable-libvorbis) _libvorbis=no ;;
968 --enable-speex) _speex=yes ;;
969 --disable-speex) _speex=no ;;
970 --enable-tremor) _tremor=yes ;;
971 --disable-tremor) _tremor=no ;;
972 --enable-tremor-internal) _tremor_internal=yes ;;
973 --disable-tremor-internal) _tremor_internal=no ;;
974 --enable-tremor-low) _tremor_low=yes ;;
975 --disable-tremor-low) _tremor_low=no ;;
976 --enable-theora) _theora=yes ;;
977 --disable-theora) _theora=no ;;
978 --enable-mp3lib) _mp3lib=yes ;;
979 --disable-mp3lib) _mp3lib=no ;;
980 --enable-liba52-internal) _liba52_internal=yes ;;
981 --disable-liba52-internal) _liba52_internal=no ;;
982 --enable-liba52) _liba52=yes ;;
983 --disable-liba52) _liba52=no ;;
984 --enable-libdca) _libdca=yes ;;
985 --disable-libdca) _libdca=no ;;
986 --enable-libmpeg2) _libmpeg2=yes ;;
987 --disable-libmpeg2) _libmpeg2=no ;;
988 --enable-musepack) _musepack=yes ;;
989 --disable-musepack) _musepack=no ;;
990 --enable-faad) _faad=yes ;;
991 --disable-faad) _faad=no ;;
992 --enable-faad-internal) _faad_internal=yes ;;
993 --disable-faad-internal) _faad_internal=no ;;
994 --enable-faad-fixed) _faad_fixed=yes ;;
995 --disable-faad-fixed) _faad_fixed=no ;;
996 --enable-faac) _faac=yes ;;
997 --disable-faac) _faac=no ;;
998 --enable-ladspa) _ladspa=yes ;;
999 --disable-ladspa) _ladspa=no ;;
1000 --enable-libbs2b) _libbs2b=yes ;;
1001 --disable-libbs2b) _libbs2b=no ;;
1002 --enable-xmms) _xmms=yes ;;
1003 --disable-xmms) _xmms=no ;;
1004 --enable-vcd) _vcd=yes ;;
1005 --disable-vcd) _vcd=no ;;
1006 --enable-dvdread) _dvdread=yes ;;
1007 --disable-dvdread) _dvdread=no ;;
1008 --enable-dvdread-internal) _dvdread_internal=yes ;;
1009 --disable-dvdread-internal) _dvdread_internal=no ;;
1010 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
1011 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
1012 --enable-dvdnav) _dvdnav=yes ;;
1013 --disable-dvdnav) _dvdnav=no ;;
1014 --enable-xanim) _xanim=yes ;;
1015 --disable-xanim) _xanim=no ;;
1016 --enable-real) _real=yes ;;
1017 --disable-real) _real=no ;;
1018 --enable-live) _live=yes ;;
1019 --disable-live) _live=no ;;
1020 --enable-nemesi) _nemesi=yes ;;
1021 --disable-nemesi) _nemesi=no ;;
1022 --enable-xinerama) _xinerama=yes ;;
1023 --disable-xinerama) _xinerama=no ;;
1024 --enable-mga) _mga=yes ;;
1025 --disable-mga) _mga=no ;;
1026 --enable-xmga) _xmga=yes ;;
1027 --disable-xmga) _xmga=no ;;
1028 --enable-vm) _vm=yes ;;
1029 --disable-vm) _vm=no ;;
1030 --enable-xf86keysym) _xf86keysym=yes ;;
1031 --disable-xf86keysym) _xf86keysym=no ;;
1032 --enable-mlib) _mlib=yes ;;
1033 --disable-mlib) _mlib=no ;;
1034 --enable-sunaudio) _sunaudio=yes ;;
1035 --disable-sunaudio) _sunaudio=no ;;
1036 --enable-sgiaudio) _sgiaudio=yes ;;
1037 --disable-sgiaudio) _sgiaudio=no ;;
1038 --enable-alsa) _alsa=yes ;;
1039 --disable-alsa) _alsa=no ;;
1040 --enable-tv) _tv=yes ;;
1041 --disable-tv) _tv=no ;;
1042 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1043 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1044 --enable-tv-v4l1) _tv_v4l1=yes ;;
1045 --disable-tv-v4l1) _tv_v4l1=no ;;
1046 --enable-tv-v4l2) _tv_v4l2=yes ;;
1047 --disable-tv-v4l2) _tv_v4l2=no ;;
1048 --enable-tv-dshow) _tv_dshow=yes ;;
1049 --disable-tv-dshow) _tv_dshow=no ;;
1050 --enable-radio) _radio=yes ;;
1051 --enable-radio-capture) _radio_capture=yes ;;
1052 --disable-radio-capture) _radio_capture=no ;;
1053 --disable-radio) _radio=no ;;
1054 --enable-radio-v4l) _radio_v4l=yes ;;
1055 --disable-radio-v4l) _radio_v4l=no ;;
1056 --enable-radio-v4l2) _radio_v4l2=yes ;;
1057 --disable-radio-v4l2) _radio_v4l2=no ;;
1058 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1059 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1060 --enable-pvr) _pvr=yes ;;
1061 --disable-pvr) _pvr=no ;;
1062 --enable-fastmemcpy) _fastmemcpy=yes ;;
1063 --disable-fastmemcpy) _fastmemcpy=no ;;
1064 --enable-network) _network=yes ;;
1065 --disable-network) _network=no ;;
1066 --enable-winsock2_h) _winsock2_h=yes ;;
1067 --disable-winsock2_h) _winsock2_h=no ;;
1068 --enable-smb) _smb=yes ;;
1069 --disable-smb) _smb=no ;;
1070 --enable-vidix) _vidix=yes ;;
1071 --disable-vidix) _vidix=no ;;
1072 --with-vidix-drivers=*)
1073 _vidix_drivers=$(echo $ac_option | cut -d '=' -f 2)
1075 --disable-vidix-pcidb) _vidix_pcidb=no ;;
1076 --enable-dhahelper) _dhahelper=yes ;;
1077 --disable-dhahelper) _dhahelper=no ;;
1078 --enable-svgalib_helper) _svgalib_helper=yes ;;
1079 --disable-svgalib_helper) _svgalib_helper=no ;;
1080 --enable-joystick) _joystick=yes ;;
1081 --disable-joystick) _joystick=no ;;
1082 --enable-xvid) _xvid=yes ;;
1083 --disable-xvid) _xvid=no ;;
1084 --enable-x264) _x264=yes ;;
1085 --disable-x264) _x264=no ;;
1086 --enable-libnut) _libnut=yes ;;
1087 --disable-libnut) _libnut=no ;;
1088 --enable-libavutil) _libavutil=yes ;;
1089 --disable-libavutil) _libavutil=no ;;
1090 --enable-libavcodec) _libavcodec=yes ;;
1091 --disable-libavcodec) _libavcodec=no ;;
1092 --enable-libavformat) _libavformat=yes ;;
1093 --disable-libavformat) _libavformat=no ;;
1094 --enable-libpostproc) _libpostproc=yes ;;
1095 --disable-libpostproc) _libpostproc=no ;;
1096 --enable-libswscale) _libswscale=yes ;;
1097 --disable-libswscale) _libswscale=no ;;
1098 --ffmpeg-source-dir=*)
1099 _ffmpeg_source=$(echo $ac_option | cut -d '=' -f 2 ) ;;
1101 --enable-lirc) _lirc=yes ;;
1102 --disable-lirc) _lirc=no ;;
1103 --enable-lircc) _lircc=yes ;;
1104 --disable-lircc) _lircc=no ;;
1105 --enable-apple-remote) _apple_remote=yes ;;
1106 --disable-apple-remote) _apple_remote=no ;;
1107 --enable-apple-ir) _apple_ir=yes ;;
1108 --disable-apple-ir) _apple_ir=no ;;
1109 --enable-gui) _gui=yes ;;
1110 --disable-gui) _gui=no ;;
1111 --enable-gtk1) _gtk1=yes ;;
1112 --disable-gtk1) _gtk1=no ;;
1113 --enable-termcap) _termcap=yes ;;
1114 --disable-termcap) _termcap=no ;;
1115 --enable-termios) _termios=yes ;;
1116 --disable-termios) _termios=no ;;
1117 --enable-3dfx) _3dfx=yes ;;
1118 --disable-3dfx) _3dfx=no ;;
1119 --enable-s3fb) _s3fb=yes ;;
1120 --disable-s3fb) _s3fb=no ;;
1121 --enable-wii) _wii=yes ;;
1122 --disable-wii) _wii=no ;;
1123 --enable-tdfxfb) _tdfxfb=yes ;;
1124 --disable-tdfxfb) _tdfxfb=no ;;
1125 --disable-tdfxvid) _tdfxvid=no ;;
1126 --enable-tdfxvid) _tdfxvid=yes ;;
1127 --disable-xvr100) _xvr100=no ;;
1128 --enable-xvr100) _xvr100=yes ;;
1129 --disable-tga) _tga=no ;;
1130 --enable-tga) _tga=yes ;;
1131 --enable-directfb) _directfb=yes ;;
1132 --disable-directfb) _directfb=no ;;
1133 --enable-zr) _zr=yes ;;
1134 --disable-zr) _zr=no ;;
1135 --enable-bl) _bl=yes ;;
1136 --disable-bl) _bl=no ;;
1137 --enable-mtrr) _mtrr=yes ;;
1138 --disable-mtrr) _mtrr=no ;;
1139 --enable-largefiles) _largefiles=yes ;;
1140 --disable-largefiles) _largefiles=no ;;
1141 --enable-shm) _shm=yes ;;
1142 --disable-shm) _shm=no ;;
1143 --enable-select) _select=yes ;;
1144 --disable-select) _select=no ;;
1145 --enable-linux-devfs) _linux_devfs=yes ;;
1146 --disable-linux-devfs) _linux_devfs=no ;;
1147 --enable-cdparanoia) _cdparanoia=yes ;;
1148 --disable-cdparanoia) _cdparanoia=no ;;
1149 --enable-cddb) _cddb=yes ;;
1150 --disable-cddb) _cddb=no ;;
1151 --enable-big-endian) _big_endian=yes ;;
1152 --disable-big-endian) _big_endian=no ;;
1153 --enable-bitmap-font) _bitmap_font=yes ;;
1154 --disable-bitmap-font) _bitmap_font=no ;;
1155 --enable-freetype) _freetype=yes ;;
1156 --disable-freetype) _freetype=no ;;
1157 --enable-fontconfig) _fontconfig=yes ;;
1158 --disable-fontconfig) _fontconfig=no ;;
1159 --enable-unrarexec) _unrar_exec=yes ;;
1160 --disable-unrarexec) _unrar_exec=no ;;
1161 --enable-ftp) _ftp=yes ;;
1162 --disable-ftp) _ftp=no ;;
1163 --enable-vstream) _vstream=yes ;;
1164 --disable-vstream) _vstream=no ;;
1165 --enable-pthreads) _pthreads=yes ;;
1166 --disable-pthreads) _pthreads=no ;;
1167 --enable-w32threads) _w32threads=yes ;;
1168 --disable-w32threads) _w32threads=no ;;
1169 --enable-ass) _ass=yes ;;
1170 --disable-ass) _ass=no ;;
1171 --enable-rpath) _rpath=yes ;;
1172 --disable-rpath) _rpath=no ;;
1174 --enable-fribidi) _fribidi=yes ;;
1175 --disable-fribidi) _fribidi=no ;;
1177 --enable-enca) _enca=yes ;;
1178 --disable-enca) _enca=no ;;
1180 --enable-inet6) _inet6=yes ;;
1181 --disable-inet6) _inet6=no ;;
1183 --enable-gethostbyname2) _gethostbyname2=yes ;;
1184 --disable-gethostbyname2) _gethostbyname2=no ;;
1186 --enable-dga1) _dga1=yes ;;
1187 --disable-dga1) _dga1=no ;;
1188 --enable-dga2) _dga2=yes ;;
1189 --disable-dga2) _dga2=no ;;
1191 --enable-menu) _menu=yes ;;
1192 --disable-menu) _menu=no ;;
1194 --enable-qtx) _qtx=yes ;;
1195 --disable-qtx) _qtx=no ;;
1197 --enable-coreaudio) _coreaudio=yes ;;
1198 --disable-coreaudio) _coreaudio=no ;;
1199 --enable-corevideo) _corevideo=yes ;;
1200 --disable-corevideo) _corevideo=no ;;
1201 --enable-quartz) _quartz=yes ;;
1202 --disable-quartz) _quartz=no ;;
1203 --enable-macosx-finder) _macosx_finder=yes ;;
1204 --disable-macosx-finder) _macosx_finder=no ;;
1205 --enable-macosx-bundle) _macosx_bundle=yes ;;
1206 --disable-macosx-bundle) _macosx_bundle=no ;;
1208 --enable-maemo) _maemo=yes ;;
1209 --disable-maemo) _maemo=no ;;
1211 --enable-sortsub) _sortsub=yes ;;
1212 --disable-sortsub) _sortsub=no ;;
1214 --enable-crash-debug) _crash_debug=yes ;;
1215 --disable-crash-debug) _crash_debug=no ;;
1216 --enable-sighandler) _sighandler=yes ;;
1217 --disable-sighandler) _sighandler=no ;;
1218 --enable-win32dll) _win32dll=yes ;;
1219 --disable-win32dll) _win32dll=no ;;
1221 --enable-sse) _sse=yes ;;
1222 --disable-sse) _sse=no ;;
1223 --enable-sse2) _sse2=yes ;;
1224 --disable-sse2) _sse2=no ;;
1225 --enable-ssse3) _ssse3=yes ;;
1226 --disable-ssse3) _ssse3=no ;;
1227 --enable-mmxext) _mmxext=yes ;;
1228 --disable-mmxext) _mmxext=no ;;
1229 --enable-3dnow) _3dnow=yes ;;
1230 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1231 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1232 --disable-3dnowext) _3dnowext=no ;;
1233 --enable-cmov) _cmov=yes ;;
1234 --disable-cmov) _cmov=no ;;
1235 --enable-fast-cmov) _fast_cmov=yes ;;
1236 --disable-fast-cmov) _fast_cmov=no ;;
1237 --enable-fast-clz) _fast_clz=yes ;;
1238 --disable-fast-clz) _fast_clz=no ;;
1239 --enable-altivec) _altivec=yes ;;
1240 --disable-altivec) _altivec=no ;;
1241 --enable-armv5te) _armv5te=yes ;;
1242 --disable-armv5te) _armv5te=no ;;
1243 --enable-armv6) _armv6=yes ;;
1244 --disable-armv6) _armv6=no ;;
1245 --enable-armv6t2) _armv6t2=yes ;;
1246 --disable-armv6t2) _armv6t2=no ;;
1247 --enable-armvfp) _armvfp=yes ;;
1248 --disable-armvfp) _armvfp=no ;;
1249 --enable-neon) neon=yes ;;
1250 --disable-neon) neon=no ;;
1251 --enable-iwmmxt) _iwmmxt=yes ;;
1252 --disable-iwmmxt) _iwmmxt=no ;;
1253 --enable-mmx) _mmx=yes ;;
1254 --disable-mmx) # 3Dnow! and MMX2 require MMX
1255 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1258 echo "Unknown parameter: $ac_option"
1259 exit 1
1262 esac
1263 done
1265 if test "$_gui" = yes ; then
1266 die "Internal GUI was removed from MPlayer. Please use one of many available\n frontends\
1267 (http://www.mplayerhq.hu/design7/projects.html#mplayer_frontends)."
1270 # Atmos: moved this here, to be correct, if --prefix is specified
1271 test -z "$_bindir" && _bindir="$_prefix/bin"
1272 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1273 test -z "$_mandir" && _mandir="$_prefix/share/man"
1274 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1275 test -z "$_libdir" && _libdir="$_prefix/lib"
1276 test -z "$_localedir" && _localedir="$_prefix/share/locale"
1278 # Determine our OS name and CPU architecture
1279 if test -z "$_target" ; then
1280 # OS name
1281 system_name=$(uname -s 2>&1)
1282 case "$system_name" in
1283 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1285 Haiku)
1286 system_name=BeOS
1288 IRIX*)
1289 system_name=IRIX
1291 GNU/kFreeBSD)
1292 system_name=FreeBSD
1294 HP-UX*)
1295 system_name=HP-UX
1297 [cC][yY][gG][wW][iI][nN]*)
1298 system_name=CYGWIN
1300 MINGW32*)
1301 system_name=MINGW32
1303 OS/2*)
1304 system_name=OS/2
1307 system_name="$system_name-UNKNOWN"
1309 esac
1312 # host's CPU/instruction set
1313 host_arch=$(uname -p 2>&1)
1314 case "$host_arch" in
1315 i386|sparc|ppc|alpha|arm|mips|vax)
1317 powerpc) # Darwin returns 'powerpc'
1318 host_arch=ppc
1320 *) # uname -p on Linux returns 'unknown' for the processor type,
1321 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1323 # Maybe uname -m (machine hardware name) returns something we
1324 # recognize.
1326 # x86/x86pc is used by QNX
1327 case "$(uname -m 2>&1)" in
1328 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 ;;
1329 ia64) host_arch=ia64 ;;
1330 macppc|ppc) host_arch=ppc ;;
1331 ppc64) host_arch=ppc64 ;;
1332 alpha) host_arch=alpha ;;
1333 sparc) host_arch=sparc ;;
1334 sparc64) host_arch=sparc64 ;;
1335 parisc*|hppa*|9000*) host_arch=hppa ;;
1336 arm*|zaurus|cats) host_arch=arm ;;
1337 sh3|sh4|sh4a) host_arch=sh ;;
1338 s390) host_arch=s390 ;;
1339 s390x) host_arch=s390x ;;
1340 *mips*) host_arch=mips ;;
1341 vax) host_arch=vax ;;
1342 xtensa*) host_arch=xtensa ;;
1343 *) host_arch=UNKNOWN ;;
1344 esac
1346 esac
1347 else # if test -z "$_target"
1348 system_name=$(echo $_target | cut -d '-' -f 2)
1349 case "$(echo $system_name | tr A-Z a-z)" in
1350 linux) system_name=Linux ;;
1351 freebsd) system_name=FreeBSD ;;
1352 gnu/kfreebsd) system_name=FreeBSD ;;
1353 netbsd) system_name=NetBSD ;;
1354 bsd/os) system_name=BSD/OS ;;
1355 openbsd) system_name=OpenBSD ;;
1356 dragonfly) system_name=DragonFly ;;
1357 sunos) system_name=SunOS ;;
1358 qnx) system_name=QNX ;;
1359 morphos) system_name=MorphOS ;;
1360 amigaos) system_name=AmigaOS ;;
1361 mingw32*) system_name=MINGW32 ;;
1362 esac
1363 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1364 host_arch=$(echo $_target | cut -d '-' -f 1)
1365 if test $(echo $host_arch) != "x86_64" ; then
1366 host_arch=$(echo $host_arch | tr '_' '-')
1370 extra_cflags="-I. $extra_cflags"
1371 _timer=timer-linux.c
1372 _getch=getch2.c
1373 if freebsd ; then
1374 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1375 extra_cflags="$extra_cflags -I/usr/local/include"
1378 if netbsd || dragonfly ; then
1379 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1380 extra_cflags="$extra_cflags -I/usr/pkg/include"
1383 if darwin; then
1384 extra_cflags="-mdynamic-no-pic -falign-loops=16 -shared-libgcc $extra_cflags"
1385 _timer=timer-darwin.c
1388 if aix ; then
1389 extra_ldflags="$extra_ldflags -lC"
1392 if irix ; then
1393 _ranlib='ar -r'
1394 elif linux ; then
1395 _ranlib='true'
1398 if win32 ; then
1399 _exesuf=".exe"
1400 extra_cflags="$extra_cflags -fno-common"
1401 # -lwinmm is always needed for osdep/timer-win2.c
1402 extra_ldflags="$extra_ldflags -lwinmm"
1403 _pe_executable=yes
1404 _timer=timer-win2.c
1405 _priority=yes
1406 def_dos_paths="#define HAVE_DOS_PATHS 1"
1407 def_priority="#define CONFIG_PRIORITY 1"
1410 if mingw32 ; then
1411 _getch=getch2-win.c
1412 _need_shmem=no
1415 if amigaos ; then
1416 _select=no
1417 _sighandler=no
1418 _stream_cache=no
1419 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1420 extra_cflags="-DNEWLIB -D__USE_INLINE__ $extra_cflags"
1423 if qnx ; then
1424 extra_ldflags="$extra_ldflags -lph"
1427 if os2 ; then
1428 _exesuf=".exe"
1429 _getch=getch2-os2.c
1430 _need_shmem=no
1431 _priority=yes
1432 def_dos_paths="#define HAVE_DOS_PATHS 1"
1433 def_priority="#define CONFIG_PRIORITY 1"
1436 for I in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1437 test "$I" && break
1438 done
1441 TMPLOG="configure.log"
1442 TMPC="$I/mplayer-conf-$RANDOM-$$.c"
1443 TMPCPP="$I/mplayer-conf-$RANDOM-$$.cpp"
1444 TMPEXE="$I/mplayer-conf-$RANDOM-$$$_exesuf"
1445 TMPH="$I/mplayer-conf-$RANDOM-$$.h"
1446 TMPS="$I/mplayer-conf-$RANDOM-$$.S"
1448 rm -f "$TMPLOG"
1449 echo configuration: $_configuration > "$TMPLOG"
1450 echo >> "$TMPLOG"
1453 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1454 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1458 # Checking CC version...
1459 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1460 if test "$(basename $_cc)" = "icc" || test "$(basename $_cc)" = "ecc"; then
1461 echocheck "$_cc version"
1462 cc_vendor=intel
1463 cc_name=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 1)
1464 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ',' -f 2 | cut -d ' ' -f 3)
1465 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1466 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1467 # TODO verify older icc/ecc compatibility
1468 case $cc_version in
1470 cc_version="v. ?.??, bad"
1471 cc_fail=yes
1473 10.1|11.0|11.1)
1474 cc_version="$cc_version, ok"
1477 cc_version="$cc_version, bad"
1478 cc_fail=yes
1480 esac
1481 echores "$cc_version"
1482 else
1483 for _cc in "$_cc" gcc cc ; do
1484 cc_name_tmp=$($_cc -v 2>&1 | tail -n 1 | cut -d ' ' -f 1)
1485 if test "$cc_name_tmp" = "gcc"; then
1486 cc_name=$cc_name_tmp
1487 echocheck "$_cc version"
1488 cc_vendor=gnu
1489 cc_version=$($_cc -dumpversion 2>&1)
1490 case $cc_version in
1491 2.96*)
1492 cc_fail=yes
1495 _cc_major=$(echo $cc_version | cut -d '.' -f 1)
1496 _cc_minor=$(echo $cc_version | cut -d '.' -f 2)
1497 _cc_mini=$(echo $cc_version | cut -d '.' -f 3)
1499 esac
1500 echores "$cc_version"
1501 break
1503 cc_name_tmp=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 2,3)
1504 if test "$cc_name_tmp" = "Sun C"; then
1505 echocheck "$_cc version"
1506 cc_vendor=sun
1507 cc_version=$($_cc -V 2>&1 | head -n 1 | cut -d ' ' -f 4)
1508 _res_comment="experimental support only"
1509 echores "Sun C $cc_version"
1510 break
1512 done
1513 fi # icc
1514 test "$cc_fail" = yes && die "unsupported compiler version"
1516 if test -z "$_target" && x86 ; then
1517 cat > $TMPC << EOF
1518 int main(void) {
1519 int test[(int)sizeof(char *)-7];
1520 return 0;
1523 cc_check && host_arch=x86_64 || host_arch=i386
1526 echo "Detected operating system: $system_name"
1527 echo "Detected host architecture: $host_arch"
1529 echocheck "host cc"
1530 test "$_host_cc" || _host_cc=$_cc
1531 echores $_host_cc
1533 echocheck "cross compilation"
1534 if test $_cross_compile = auto ; then
1535 cat > $TMPC << EOF
1536 int main(void) { return 0; }
1538 _cross_compile=yes
1539 cc_check && "$TMPEXE" && _cross_compile=no
1541 echores $_cross_compile
1543 if test $_cross_compile = yes; then
1544 tmp_run() {
1545 return 0
1549 # ---
1551 # now that we know what compiler should be used for compilation, try to find
1552 # out which assembler is used by the $_cc compiler
1553 if test "$_as" = auto ; then
1554 _as=$($_cc -print-prog-name=as)
1555 test -z "$_as" && _as=as
1558 if test "$_nm" = auto ; then
1559 _nm=$($_cc -print-prog-name=nm)
1560 test -z "$_nm" && _nm=nm
1563 # XXX: this should be ok..
1564 _cpuinfo="echo"
1566 if test "$_runtime_cpudetection" = no ; then
1568 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1569 # FIXME: Remove the cygwin check once AMD CPUs are supported
1570 if test -r /proc/cpuinfo && ! cygwin; then
1571 # Linux with /proc mounted, extract CPU information from it
1572 _cpuinfo="cat /proc/cpuinfo"
1573 elif test -r /compat/linux/proc/cpuinfo && ! x86 ; then
1574 # FreeBSD with Linux emulation /proc mounted,
1575 # extract CPU information from it
1576 # Don't use it on x86 though, it never reports 3Dnow
1577 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1578 elif darwin && ! x86 ; then
1579 # use hostinfo on Darwin
1580 _cpuinfo="hostinfo"
1581 elif aix; then
1582 # use 'lsattr' on AIX
1583 _cpuinfo="lsattr -E -l proc0 -a type"
1584 elif x86; then
1585 # all other OSes try to extract CPU information from a small helper
1586 # program cpuinfo instead
1587 $_cc -o cpuinfo$_exesuf cpuinfo.c
1588 _cpuinfo="./cpuinfo$_exesuf"
1591 if x86 ; then
1592 # gather more CPU information
1593 pname=$($_cpuinfo | grep 'model name' | cut -d ':' -f 2 | head -n 1)
1594 pvendor=$($_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1595 pfamily=$($_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1596 pmodel=$($_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1597 pstepping=$($_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | head -n 1)
1599 exts=$($_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | head -n 1)
1601 pparam=$(echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1602 -e s/xmm/sse/ -e s/kni/sse/)
1604 for ext in $pparam ; do
1605 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1606 done
1608 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1609 test $_sse = kernel_check && _mmxext=kernel_check
1611 echocheck "CPU vendor"
1612 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1614 echocheck "CPU type"
1615 echores "$pname"
1618 fi # test "$_runtime_cpudetection" = no
1620 if x86 && test "$_runtime_cpudetection" = no ; then
1621 extcheck() {
1622 if test "$1" = kernel_check ; then
1623 echocheck "kernel support of $2"
1624 cat > $TMPC <<EOF
1625 #include <stdlib.h>
1626 #include <signal.h>
1627 void catch() { exit(1); }
1628 int main(void) {
1629 signal(SIGILL, catch);
1630 __asm__ volatile ("$3":::"memory"); return 0;
1634 if cc_check && tmp_run ; then
1635 eval _$2=yes
1636 echores "yes"
1637 _optimizing="$_optimizing $2"
1638 return 0
1639 else
1640 eval _$2=no
1641 echores "failed"
1642 echo "It seems that your kernel does not correctly support $2."
1643 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1644 return 1
1647 return 0
1650 extcheck $_mmx "mmx" "emms"
1651 extcheck $_mmxext "mmxext" "sfence"
1652 extcheck $_3dnow "3dnow" "femms"
1653 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1654 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1655 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1656 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1657 extcheck $_cmov "cmov" "cmovb %%eax,%%ebx"
1659 echocheck "mtrr support"
1660 if test "$_mtrr" = kernel_check ; then
1661 _mtrr="yes"
1662 _optimizing="$_optimizing mtrr"
1664 echores "$_mtrr"
1666 if test "$_gcc3_ext" != ""; then
1667 # if we had to disable sse/sse2 because the active kernel does not
1668 # support this instruction set extension, we also have to tell
1669 # gcc3 to not generate sse/sse2 instructions for normal C code
1670 cat > $TMPC << EOF
1671 int main(void) { return 0; }
1673 cc_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1679 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1680 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1681 _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'
1682 case "$host_arch" in
1683 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1684 _arch='X86 X86_32'
1685 _target_arch="ARCH_X86 = yes"
1686 _target_subarch="ARCH_X86_32 = yes"
1687 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1688 iproc=486
1689 proc=i486
1692 if test "$_runtime_cpudetection" = no ; then
1693 case "$pvendor" in
1694 AuthenticAMD)
1695 case "$pfamily" in
1696 3) proc=i386 iproc=386 ;;
1697 4) proc=i486 iproc=486 ;;
1698 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1699 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1700 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1701 proc=k6-3
1702 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1703 proc=geode
1704 elif test "$pmodel" -ge 8; then
1705 proc=k6-2
1706 elif test "$pmodel" -ge 6; then
1707 proc=k6
1708 else
1709 proc=i586
1712 6) iproc=686
1713 # It's a bit difficult to determine the correct type of Family 6
1714 # AMD CPUs just from their signature. Instead, we check directly
1715 # whether it supports SSE.
1716 if test "$_sse" = yes; then
1717 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1718 proc=athlon-xp
1719 else
1720 # Again, gcc treats athlon and athlon-tbird similarly.
1721 proc=athlon
1724 15) iproc=686
1725 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1726 # caught and remedied in the optimization tests below.
1727 proc=k8
1730 *) proc=amdfam10 iproc=686
1731 test $_fast_clz = "auto" && _fast_clz=yes
1733 esac
1735 GenuineIntel)
1736 case "$pfamily" in
1737 3) proc=i386 iproc=386 ;;
1738 4) proc=i486 iproc=486 ;;
1739 5) iproc=586
1740 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1741 proc=pentium-mmx # 4 is desktop, 8 is mobile
1742 else
1743 proc=i586
1746 6) iproc=686
1747 if test "$pmodel" -ge 15; then
1748 proc=core2
1749 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1750 proc=pentium-m
1751 elif test "$pmodel" -ge 7; then
1752 proc=pentium3
1753 elif test "$pmodel" -ge 3; then
1754 proc=pentium2
1755 else
1756 proc=i686
1758 test $_fast_clz = "auto" && _fast_clz=yes
1760 15) iproc=686
1761 # A nocona in 32-bit mode has no more capabilities than a prescott.
1762 if test "$pmodel" -ge 3; then
1763 proc=prescott
1764 else
1765 proc=pentium4
1766 test $_fast_clz = "auto" && _fast_clz=yes
1768 test $_fast_cmov = "auto" && _fast_cmov=no
1770 *) proc=prescott iproc=686 ;;
1771 esac
1773 CentaurHauls)
1774 case "$pfamily" in
1775 5) iproc=586
1776 if test "$pmodel" -ge 8; then
1777 proc=winchip2
1778 elif test "$pmodel" -ge 4; then
1779 proc=winchip-c6
1780 else
1781 proc=i586
1784 6) iproc=686
1785 if test "$pmodel" -ge 9; then
1786 proc=c3-2
1787 else
1788 proc=c3
1789 iproc=586
1792 *) proc=i686 iproc=i686 ;;
1793 esac
1795 unknown)
1796 case "$pfamily" in
1797 3) proc=i386 iproc=386 ;;
1798 4) proc=i486 iproc=486 ;;
1799 *) proc=i586 iproc=586 ;;
1800 esac
1803 proc=i586 iproc=586 ;;
1804 esac
1805 test $_fast_clz = "auto" && _fast_clz=no
1806 fi # test "$_runtime_cpudetection" = no
1809 # check that gcc supports our CPU, if not, fall back to earlier ones
1810 # LGB: check -mcpu and -march swithing step by step with enabling
1811 # to fall back till 386.
1813 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1815 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1816 cpuopt=-mtune
1817 else
1818 cpuopt=-mcpu
1821 echocheck "GCC & CPU optimization abilities"
1822 cat > $TMPC << EOF
1823 int main(void) { return 0; }
1825 if test "$_runtime_cpudetection" = no ; then
1826 cc_check -march=native && proc=native
1827 if test "$proc" = "k8"; then
1828 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1830 if test "$proc" = "athlon-xp"; then
1831 cc_check -march=$proc $cpuopt=$proc || proc=athlon
1833 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1834 cc_check -march=$proc $cpuopt=$proc || proc=k6
1836 if test "$proc" = "k6" || test "$proc" = "c3"; then
1837 if ! cc_check -march=$proc $cpuopt=$proc; then
1838 if cc_check -march=i586 $cpuopt=i686; then
1839 proc=i586-i686
1840 else
1841 proc=i586
1845 if test "$proc" = "prescott" ; then
1846 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
1848 if test "$proc" = "core2" ; then
1849 cc_check -march=$proc $cpuopt=$proc || proc=pentium-m
1851 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
1852 cc_check -march=$proc $cpuopt=$proc || proc=i686
1854 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1855 cc_check -march=$proc $cpuopt=$proc || proc=i586
1857 if test "$proc" = "i586"; then
1858 cc_check -march=$proc $cpuopt=$proc || proc=i486
1860 if test "$proc" = "i486" ; then
1861 cc_check -march=$proc $cpuopt=$proc || proc=i386
1863 if test "$proc" = "i386" ; then
1864 cc_check -march=$proc $cpuopt=$proc || proc=error
1866 if test "$proc" = "error" ; then
1867 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1868 _mcpu=""
1869 _march=""
1870 _optimizing=""
1871 elif test "$proc" = "i586-i686"; then
1872 _march="-march=i586"
1873 _mcpu="$cpuopt=i686"
1874 _optimizing="$proc"
1875 else
1876 _march="-march=$proc"
1877 _mcpu="$cpuopt=$proc"
1878 _optimizing="$proc"
1880 else # if test "$_runtime_cpudetection" = no
1881 _mcpu="$cpuopt=generic"
1882 # at least i486 required, for bswap instruction
1883 _march="-march=i486"
1884 cc_check $_mcpu || _mcpu="$cpuopt=i686"
1885 cc_check $_mcpu || _mcpu=""
1886 cc_check $_march $_mcpu || _march=""
1889 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1890 ## autodetected mcpu/march parameters
1891 if test "$_target" ; then
1892 # TODO: it may be a good idea to check GCC and fall back in all cases
1893 if test "$host_arch" = "i586-i686"; then
1894 _march="-march=i586"
1895 _mcpu="$cpuopt=i686"
1896 else
1897 _march="-march=$host_arch"
1898 _mcpu="$cpuopt=$host_arch"
1901 proc="$host_arch"
1903 case "$proc" in
1904 i386) iproc=386 ;;
1905 i486) iproc=486 ;;
1906 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1907 i686|athlon*|pentium*) iproc=686 ;;
1908 *) iproc=586 ;;
1909 esac
1912 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1913 _fast_cmov="yes"
1914 else
1915 _fast_cmov="no"
1917 test $_fast_clz = "auto" && _fast_clz=yes
1919 echores "$proc"
1922 ia64)
1923 _arch='IA64'
1924 _target_arch='ARCH_IA64 = yes'
1925 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1926 iproc='ia64'
1929 x86_64|amd64)
1930 _arch='X86 X86_64'
1931 _target_subarch='ARCH_X86_64 = yes'
1932 _target_arch="ARCH_X86 = yes"
1933 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1934 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1935 iproc='x86_64'
1937 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1938 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1939 cpuopt=-mtune
1940 else
1941 cpuopt=-mcpu
1943 if test "$_runtime_cpudetection" = no ; then
1944 case "$pvendor" in
1945 AuthenticAMD)
1946 case "$pfamily" in
1947 15) proc=k8
1948 test $_fast_clz = "auto" && _fast_clz=no
1950 *) proc=amdfam10;;
1951 esac
1953 GenuineIntel)
1954 case "$pfamily" in
1955 6) proc=core2;;
1957 # 64-bit prescotts exist, but as far as GCC is concerned they
1958 # have the same capabilities as a nocona.
1959 proc=nocona
1960 test $_fast_cmov = "auto" && _fast_cmov=no
1961 test $_fast_clz = "auto" && _fast_clz=no
1963 esac
1966 proc=error;;
1967 esac
1968 fi # test "$_runtime_cpudetection" = no
1970 echocheck "GCC & CPU optimization abilities"
1971 cat > $TMPC << EOF
1972 int main(void) { return 0; }
1974 # This is a stripped-down version of the i386 fallback.
1975 if test "$_runtime_cpudetection" = no ; then
1976 cc_check -march=native && proc=native
1977 # --- AMD processors ---
1978 if test "$proc" = "k8"; then
1979 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1981 # This will fail if gcc version < 3.3, which is ok because earlier
1982 # versions don't really support 64-bit on amd64.
1983 # Is this a valid assumption? -Corey
1984 if test "$proc" = "athlon-xp"; then
1985 cc_check -march=$proc $cpuopt=$proc || proc=error
1987 # --- Intel processors ---
1988 if test "$proc" = "core2"; then
1989 cc_check -march=$proc $cpuopt=$proc || proc=x86-64
1991 if test "$proc" = "x86-64"; then
1992 cc_check -march=$proc $cpuopt=$proc || proc=nocona
1994 if test "$proc" = "nocona"; then
1995 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
1997 if test "$proc" = "pentium4"; then
1998 cc_check -march=$proc $cpuopt=$proc || proc=error
2001 _march="-march=$proc"
2002 _mcpu="$cpuopt=$proc"
2003 if test "$proc" = "error" ; then
2004 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
2005 _mcpu=""
2006 _march=""
2008 else # if test "$_runtime_cpudetection" = no
2009 # x86-64 is an undocumented option, an intersection of k8 and nocona.
2010 _march="-march=x86-64"
2011 _mcpu="$cpuopt=generic"
2012 cc_check $_mcpu || _mcpu="x86-64"
2013 cc_check $_mcpu || _mcpu=""
2014 cc_check $_march $_mcpu || _march=""
2017 _optimizing="$proc"
2018 test $_fast_cmov = "auto" && _fast_cmov=yes
2019 test $_fast_clz = "auto" && _fast_clz=yes
2021 echores "$proc"
2024 sparc|sparc64)
2025 _arch='SPARC'
2026 _target_arch='ARCH_SPARC = yes'
2027 iproc='sparc'
2028 if test "$host_arch" = "sparc64" ; then
2029 _vis='yes'
2030 proc='ultrasparc'
2031 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2032 elif sunos ; then
2033 echocheck "CPU type"
2034 karch=$(uname -m)
2035 case "$(echo $karch)" in
2036 sun4) proc=v7 ;;
2037 sun4c) proc=v7 ;;
2038 sun4d) proc=v8 ;;
2039 sun4m) proc=v8 ;;
2040 sun4u) proc=ultrasparc _vis='yes' ;;
2041 sun4v) proc=v9 ;;
2042 *) proc=v8 ;;
2043 esac
2044 echores "$proc"
2045 else
2046 proc=v8
2048 _mcpu="-mcpu=$proc"
2049 _optimizing="$proc"
2052 arm*)
2053 _arch='ARM'
2054 _target_arch='ARCH_ARM = yes'
2055 iproc='arm'
2058 avr32)
2059 _arch='AVR32'
2060 _target_arch='ARCH_AVR32 = yes'
2061 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2062 iproc='avr32'
2063 test $_fast_clz = "auto" && _fast_clz=yes
2066 sh|sh4)
2067 _arch='SH4'
2068 _target_arch='ARCH_SH4 = yes'
2069 iproc='sh4'
2072 ppc|ppc64|powerpc|powerpc64)
2073 _arch='PPC'
2074 def_dcbzl='#define HAVE_DCBZL 0'
2075 _target_arch='ARCH_PPC = yes'
2076 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2077 iproc='ppc'
2079 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2080 _arch='PPC PPC64'
2081 _target_subarch='ARCH_PPC64 = yes'
2082 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2084 echocheck "CPU type"
2085 case $system_name in
2086 Linux)
2087 proc=$($_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | head -n 1)
2088 if test -n "$($_cpuinfo | grep altivec)"; then
2089 test $_altivec = auto && _altivec=yes
2092 Darwin)
2093 proc=$($_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//')
2094 if [ $(sysctl -n hw.vectorunit) -eq 1 -o \
2095 "$(sysctl -n hw.optional.altivec 2> /dev/null)" = "1" ]; then
2096 test $_altivec = auto && _altivec=yes
2099 NetBSD)
2100 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2101 case $cc_version in
2102 2*|3.0*|3.1*|3.2*|3.3*)
2105 if [ $(sysctl -n machdep.altivec) -eq 1 ]; then
2106 test $_altivec = auto && _altivec=yes
2109 esac
2111 AIX)
2112 proc=$($_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//')
2114 esac
2115 if test "$_altivec" = yes; then
2116 echores "$proc altivec"
2117 else
2118 _altivec=no
2119 echores "$proc"
2122 echocheck "GCC & CPU optimization abilities"
2124 if test -n "$proc"; then
2125 case "$proc" in
2126 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2127 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2128 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2129 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2130 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2131 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2132 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2133 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2134 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2135 *) ;;
2136 esac
2137 # gcc 3.1(.1) and up supports 7400 and 7450
2138 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2139 case "$proc" in
2140 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2141 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2142 *) ;;
2143 esac
2145 # gcc 3.2 and up supports 970
2146 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2147 case "$proc" in
2148 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2149 def_dcbzl='#define HAVE_DCBZL 1' ;;
2150 *) ;;
2151 esac
2153 # gcc 3.3 and up supports POWER4
2154 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2155 case "$proc" in
2156 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2157 *) ;;
2158 esac
2160 # gcc 3.4 and up supports 440*
2161 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2162 case "$proc" in
2163 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2164 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2165 *) ;;
2166 esac
2168 # gcc 4.0 and up supports POWER5
2169 if test "$_cc_major" -ge "4"; then
2170 case "$proc" in
2171 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2172 *) ;;
2173 esac
2177 if test -n "$_mcpu"; then
2178 _optimizing=$(echo $_mcpu | cut -c 8-)
2179 echores "$_optimizing"
2180 else
2181 echores "none"
2184 test $_fast_clz = "auto" && _fast_clz=yes
2188 alpha*)
2189 _arch='ALPHA'
2190 _target_arch='ARCH_ALPHA = yes'
2191 iproc='alpha'
2192 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2194 echocheck "CPU type"
2195 cat > $TMPC << EOF
2196 int main(void) {
2197 unsigned long ver, mask;
2198 __asm__ ("implver %0" : "=r" (ver));
2199 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2200 printf("%ld-%x\n", ver, ~mask);
2201 return 0;
2204 $_cc -o "$TMPEXE" "$TMPC"
2205 case $("$TMPEXE") in
2207 0-0) proc="ev4"; _mvi="0";;
2208 1-0) proc="ev5"; _mvi="0";;
2209 1-1) proc="ev56"; _mvi="0";;
2210 1-101) proc="pca56"; _mvi="1";;
2211 2-303) proc="ev6"; _mvi="1";;
2212 2-307) proc="ev67"; _mvi="1";;
2213 2-1307) proc="ev68"; _mvi="1";;
2214 esac
2215 echores "$proc"
2217 echocheck "GCC & CPU optimization abilities"
2218 if test "$proc" = "ev68" ; then
2219 cc_check -mcpu=$proc || proc=ev67
2221 if test "$proc" = "ev67" ; then
2222 cc_check -mcpu=$proc || proc=ev6
2224 _mcpu="-mcpu=$proc"
2225 echores "$proc"
2227 test $_fast_clz = "auto" && _fast_clz=yes
2229 _optimizing="$proc"
2232 mips)
2233 _arch='SGI_MIPS'
2234 _target_arch='ARCH_SGI_MIPS = yes'
2235 iproc='sgi-mips'
2237 if irix ; then
2238 echocheck "CPU type"
2239 proc=$(hinv -c processor | grep CPU | cut -d " " -f3)
2240 case "$(echo $proc)" in
2241 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2242 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2243 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2244 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2245 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2246 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2247 esac
2248 # gcc < 3.x does not support -mtune.
2249 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2250 _mcpu=''
2252 echores "$proc"
2255 test $_fast_clz = "auto" && _fast_clz=yes
2259 hppa)
2260 _arch='PA_RISC'
2261 _target_arch='ARCH_PA_RISC = yes'
2262 iproc='PA-RISC'
2265 s390)
2266 _arch='S390'
2267 _target_arch='ARCH_S390 = yes'
2268 iproc='390'
2271 s390x)
2272 _arch='S390X'
2273 _target_arch='ARCH_S390X = yes'
2274 iproc='390x'
2277 vax)
2278 _arch='VAX'
2279 _target_arch='ARCH_VAX = yes'
2280 iproc='vax'
2283 xtensa)
2284 _arch='XTENSA'
2285 _target_arch='ARCH_XTENSA = yes'
2286 iproc='xtensa'
2289 generic)
2290 _arch='GENERIC'
2291 _target_arch='ARCH_GENERIC = yes'
2295 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2296 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2297 die "unsupported architecture $host_arch"
2299 esac # case "$host_arch" in
2301 if test "$_runtime_cpudetection" = yes ; then
2302 if x86 ; then
2303 test "$_cmov" != no && _cmov=yes
2304 x86_32 && _cmov=no
2305 test "$_mmx" != no && _mmx=yes
2306 test "$_3dnow" != no && _3dnow=yes
2307 test "$_3dnowext" != no && _3dnowext=yes
2308 test "$_mmxext" != no && _mmxext=yes
2309 test "$_sse" != no && _sse=yes
2310 test "$_sse2" != no && _sse2=yes
2311 test "$_ssse3" != no && _ssse3=yes
2312 test "$_mtrr" != no && _mtrr=yes
2314 if ppc; then
2315 _altivec=yes
2320 # endian testing
2321 echocheck "byte order"
2322 if test "$_big_endian" = auto ; then
2323 cat > $TMPC <<EOF
2324 short ascii_name[] = { (('M'<<8)|'P'),(('l'<<8)|'a'),(('y'<<8)|'e'),(('r'<<8)|'B'),
2325 (('i'<<8)|'g'),(('E'<<8)|'n'),(('d'<<8)|'i'),(('a'<<8)|'n'),0};
2326 int main(void) { return (int)ascii_name; }
2328 if cc_check ; then
2329 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2330 _big_endian=yes
2331 else
2332 _big_endian=no
2334 else
2335 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2338 if test "$_big_endian" = yes ; then
2339 _byte_order='big-endian'
2340 def_words_endian='#define WORDS_BIGENDIAN 1'
2341 def_bigendian='#define HAVE_BIGENDIAN 1'
2342 else
2343 _byte_order='little-endian'
2344 def_words_endian='#undef WORDS_BIGENDIAN'
2345 def_bigendian='#define HAVE_BIGENDIAN 0'
2347 echores "$_byte_order"
2350 echocheck "extern symbol prefix"
2351 cat > $TMPC << EOF
2352 int ff_extern;
2354 cc_check -c || die "Symbol mangling check failed."
2355 sym=$($_nm -P -g $TMPEXE)
2356 extern_prefix=${sym%%ff_extern*}
2357 def_extern_asm="#define EXTERN_ASM $extern_prefix"
2358 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2359 echores $extern_prefix
2362 echocheck "assembler support of -pipe option"
2363 cat > $TMPC << EOF
2364 int main(void) { return 0; }
2366 # -I. helps to detect compilers that just misunderstand -pipe like Sun C
2367 cc_check -pipe -I. && _pipe="-pipe" && echores "yes" || echores "no"
2370 echocheck "compiler support of named assembler arguments"
2371 _named_asm_args=yes
2372 def_named_asm_args="#define NAMED_ASM_ARGS 1"
2373 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2374 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2375 _named_asm_args=no
2376 def_named_asm_args="#undef NAMED_ASM_ARGS"
2378 echores $_named_asm_args
2381 if darwin && test "$cc_vendor" = "gnu" ; then
2382 echocheck "GCC support of -mstackrealign"
2383 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2384 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2385 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2386 # wrong code with this flag, but this can be worked around by adding
2387 # -fno-unit-at-a-time as described in the blog post at
2388 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2389 cat > $TMPC << EOF
2390 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2391 int main(void) { return foo3(1,2,3) == 3 ? 0 : 1; }
2393 cc_check -O2 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2394 test -z "$cflags_stackrealign" && cc_check -O2 -mstackrealign -fno-unit-at-a-time \
2395 && tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2396 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2397 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2400 # Checking for CFLAGS
2401 _install_strip="-s"
2402 if test "$_profile" != "" || test "$_debug" != "" ; then
2403 CFLAGS="-W -Wall -O2 $_march $_mcpu $_pipe $_debug $_profile"
2404 _install_strip=
2405 elif test -z "$CFLAGS" ; then
2406 if test "$cc_vendor" = "intel" ; then
2407 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer -wd167 -wd556 -wd144"
2408 elif test "$cc_vendor" = "sun" ; then
2409 CFLAGS="-O2 $_march $_mcpu $_pipe -xc99 -xregs=frameptr"
2410 elif test "$cc_vendor" != "gnu" ; then
2411 CFLAGS="-O2 $_march $_mcpu $_pipe"
2412 else
2413 CFLAGS="-Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O2 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2414 extra_ldflags="$extra_ldflags -ffast-math"
2416 else
2417 _warn_CFLAGS=yes
2420 cat > $TMPC << EOF
2421 int main(void) { return 0; }
2423 if test "$cc_vendor" = "gnu" ; then
2424 cc_check -std=gnu99 && CFLAGS="-std=gnu99 $CFLAGS"
2425 cc_check -Wno-pointer-sign && CFLAGS="-Wno-pointer-sign $CFLAGS"
2426 cc_check -Wdisabled-optimization && CFLAGS="-Wdisabled-optimization $CFLAGS"
2427 cc_check -Wundef && CFLAGS="-Wundef $CFLAGS"
2428 cc_check -Wmissing-prototypes && CFLAGS="-Wmissing-prototypes $CFLAGS"
2429 else
2430 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
2433 cc_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
2436 if test -n "$LDFLAGS" ; then
2437 extra_ldflags="$extra_ldflags $LDFLAGS"
2438 _warn_CFLAGS=yes
2439 elif test "$cc_vendor" = "intel" ; then
2440 extra_ldflags="$extra_ldflags -i-static"
2442 if test -n "$CPPFLAGS" ; then
2443 extra_cflags="$extra_cflags $CPPFLAGS"
2444 _warn_CFLAGS=yes
2449 if x86_32 ; then
2450 # Checking assembler (_as) compatibility...
2451 # Added workaround for older as that reads from stdin by default - atmos
2452 as_version=$(echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p')
2453 echocheck "assembler ($_as $as_version)"
2455 _pref_as_version='2.9.1'
2456 echo 'nop' > $TMPS
2457 if test "$_mmx" = yes ; then
2458 echo 'emms' >> $TMPS
2460 if test "$_3dnow" = yes ; then
2461 _pref_as_version='2.10.1'
2462 echo 'femms' >> $TMPS
2464 if test "$_3dnowext" = yes ; then
2465 _pref_as_version='2.10.1'
2466 echo 'pswapd %mm0, %mm0' >> $TMPS
2468 if test "$_mmxext" = yes ; then
2469 _pref_as_version='2.10.1'
2470 echo 'movntq %mm0, (%eax)' >> $TMPS
2472 if test "$_sse" = yes ; then
2473 _pref_as_version='2.10.1'
2474 echo 'xorps %xmm0, %xmm0' >> $TMPS
2476 #if test "$_sse2" = yes ; then
2477 # _pref_as_version='2.11'
2478 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2480 if test "$_cmov" = yes ; then
2481 _pref_as_version='2.10.1'
2482 echo 'cmovb %eax, %ebx' >> $TMPS
2484 if test "$_ssse3" = yes ; then
2485 _pref_as_version='2.16.92'
2486 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2488 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2490 if test "$as_verc_fail" != yes ; then
2491 echores "ok"
2492 else
2493 _res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2494 echores "failed"
2495 die "obsolete binutils version"
2498 fi #if x86_32
2500 echocheck ".align is a power of two"
2501 if test "$_asmalign_pot" = auto ; then
2502 _asmalign_pot=no
2503 cat > $TMPC << EOF
2504 int main(void) { __asm__ (".align 3"); return 0; }
2506 cc_check && _asmalign_pot=yes
2508 if test "$_asmalign_pot" = "yes" ; then
2509 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2510 else
2511 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2513 echores $_asmalign_pot
2515 if x86 ; then
2516 echocheck "10 assembler operands"
2517 ten_operands=no
2518 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2519 cat > $TMPC << EOF
2520 int main(void) {
2521 int x=0;
2522 __asm__ volatile(
2524 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2526 return 0;
2529 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2530 echores $ten_operands
2532 echocheck "ebx availability"
2533 ebx_available=no
2534 def_ebx_available='#define HAVE_EBX_AVAILABLE 0'
2535 cat > $TMPC << EOF
2536 int main(void) {
2537 int x;
2538 __asm__ volatile(
2539 "xor %0, %0"
2540 :"=b"(x)
2541 // just adding ebx to clobber list seems unreliable with some
2542 // compilers, e.g. Haiku's gcc 2.95
2544 // and the above check does not work for OSX 64 bit...
2545 __asm__ volatile("":::"%ebx");
2546 return 0;
2549 cc_check && ebx_available=yes && def_ebx_available='#define HAVE_EBX_AVAILABLE 1'
2550 echores $ebx_available
2552 echocheck "PIC"
2553 pic=no
2554 cat > $TMPC << EOF
2555 int main(void) {
2556 #if !(defined(__PIC__) || defined(__pic__) || defined(PIC))
2557 #error PIC not enabled
2558 #endif
2559 return 0;
2562 cc_check && pic=yes && extra_cflags="$extra_cflags -DPIC"
2563 echores $pic
2565 echocheck "yasm"
2566 if test -z "$YASMFLAGS" ; then
2567 if darwin ; then
2568 x86_64 && objformat="macho64" || objformat="macho"
2569 elif win32 ; then
2570 objformat="win32"
2571 else
2572 objformat="elf"
2574 # currently tested for Linux x86, x86_64
2575 YASMFLAGS="-f $objformat"
2576 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2577 test "$pic" = "yes" && YASMFLAGS="$YASMFLAGS -DPIC"
2578 case "$objformat" in
2579 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2580 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2581 esac
2582 else
2583 _warn_CFLAGS=yes
2586 echo "pabsw xmm0, xmm0" > $TMPS
2587 yasm_check || _yasm=""
2588 if test $_yasm ; then
2589 test "$_mmx" = "yes" && fft_mmx="yes"
2590 def_yasm='#define HAVE_YASM 1'
2591 _have_yasm="yes"
2592 echores "$_yasm"
2593 else
2594 def_yasm='#define HAVE_YASM 0'
2595 fft_mmx="no"
2596 _have_yasm="no"
2597 echores "no"
2600 echocheck "bswap"
2601 def_bswap='#define HAVE_BSWAP 0'
2602 echo 'bswap %eax' > $TMPS
2603 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2604 echores "$bswap"
2605 fi #if x86
2608 #FIXME: This should happen before the check for CFLAGS..
2609 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2610 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2612 # check if AltiVec is supported by the compiler, and how to enable it
2613 echocheck "GCC AltiVec flags"
2614 cat > $TMPC << EOF
2615 int main(void) { return 0; }
2617 if $(cc_check -maltivec -mabi=altivec) ; then
2618 _altivec_gcc_flags="-maltivec -mabi=altivec"
2619 # check if <altivec.h> should be included
2620 cat > $TMPC << EOF
2621 #include <altivec.h>
2622 int main(void) { return 0; }
2624 if $(cc_check $_altivec_gcc_flags) ; then
2625 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2626 inc_altivec_h='#include <altivec.h>'
2627 else
2628 cat > $TMPC << EOF
2629 int main(void) { return 0; }
2631 if $(cc_check -faltivec) ; then
2632 _altivec_gcc_flags="-faltivec"
2633 else
2634 _altivec=no
2635 _altivec_gcc_flags="none, AltiVec disabled"
2639 echores "$_altivec_gcc_flags"
2641 # check if the compiler supports braces for vector declarations
2642 cat > $TMPC << EOF
2643 $inc_altivec_h
2644 int main(void) { (vector int) {1}; return 0; }
2646 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2648 # Disable runtime cpudetection if we cannot generate AltiVec code or
2649 # AltiVec is disabled by the user.
2650 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2651 && _runtime_cpudetection=no
2653 # Show that we are optimizing for AltiVec (if enabled and supported).
2654 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2655 && _optimizing="$_optimizing altivec"
2657 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2658 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2661 if ppc ; then
2662 def_xform_asm='#define HAVE_XFORM_ASM 0'
2663 xform_asm=no
2664 echocheck "XFORM ASM support"
2665 cat > $TMPC << EOF
2666 int main(void) { __asm__ volatile ("lwzx %1, %y0" :: "Z"(*(int*)0), "r"(0)); return 0; }
2668 cc_check && xform_asm=yes && def_xform_asm='#define HAVE_XFORM_ASM 1'
2669 echores "$xform_asm"
2672 if arm ; then
2673 echocheck "ARM pld instruction"
2674 cat > $TMPC << EOF
2675 int main(void) { __asm__ volatile ("pld [r0]"); return 0; }
2677 pld=no
2678 cc_check && pld=yes
2679 echores "$pld"
2681 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2682 if test $_armv5te = "auto" ; then
2683 cat > $TMPC << EOF
2684 int main(void) { __asm__ volatile ("qadd r0, r0, r0"); return 0; }
2686 _armv5te=no
2687 cc_check && _armv5te=yes
2689 echores "$_armv5te"
2691 test $_armv5te = "yes" && test $_fast_clz = "auto" && _fast_clz=yes
2693 echocheck "ARMv6 (SIMD instructions)"
2694 if test $_armv6 = "auto" ; then
2695 cat > $TMPC << EOF
2696 int main(void) { __asm__ volatile ("sadd16 r0, r0, r0"); return 0; }
2698 _armv6=no
2699 cc_check && _armv6=yes
2701 echores "$_armv6"
2703 echocheck "ARMv6t2 (SIMD instructions)"
2704 if test $_armv6t2 = "auto" ; then
2705 cat > $TMPC << EOF
2706 int main(void) { __asm__ volatile ("movt r0, #0"); return 0; }
2708 _armv6t2=no
2709 cc_check && _armv6t2=yes
2711 echores "$_armv6"
2713 echocheck "ARM VFP"
2714 if test $_armvfp = "auto" ; then
2715 cat > $TMPC << EOF
2716 int main(void) { __asm__ volatile ("fadds s0, s0, s0"); return 0; }
2718 _armvfp=no
2719 cc_check && _armvfp=yes
2721 echores "$_armvfp"
2723 echocheck "ARM NEON"
2724 if test $neon = "auto" ; then
2725 cat > $TMPC << EOF
2726 int main(void) { __asm__ volatile ("vadd.i16 q0, q0, q0"); return 0; }
2728 neon=no
2729 cc_check && neon=yes
2731 echores "$neon"
2733 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2734 if test $_iwmmxt = "auto" ; then
2735 cat > $TMPC << EOF
2736 int main(void) { __asm__ volatile ("wunpckelub wr6, wr4"); return 0; }
2738 _iwmmxt=no
2739 cc_check && _iwmmxt=yes
2741 echores "$_iwmmxt"
2744 _cpuexts_all='ALTIVEC MMX MMX2 AMD3DNOW AMD3DNOWEXT SSE SSE2 SSSE3 FAST_CMOV CMOV FAST_CLZ PLD ARMV5TE ARMV6 ARMV6T2 ARMVFP NEON IWMMXT MMI VIS MVI'
2745 test "$_altivec" = yes && _cpuexts="ALTIVEC $_cpuexts"
2746 test "$_mmx" = yes && _cpuexts="MMX $_cpuexts"
2747 test "$_mmxext" = yes && _cpuexts="MMX2 $_cpuexts"
2748 test "$_3dnow" = yes && _cpuexts="AMD3DNOW $_cpuexts"
2749 test "$_3dnowext" = yes && _cpuexts="AMD3DNOWEXT $_cpuexts"
2750 test "$_sse" = yes && _cpuexts="SSE $_cpuexts"
2751 test "$_sse2" = yes && _cpuexts="SSE2 $_cpuexts"
2752 test "$_ssse3" = yes && _cpuexts="SSSE3 $_cpuexts"
2753 test "$_cmov" = yes && _cpuexts="CMOV $_cpuexts"
2754 test "$_fast_cmov" = yes && _cpuexts="FAST_CMOV $_cpuexts"
2755 test "$_fast_clz" = yes && _cpuexts="FAST_CLZ $_cpuexts"
2756 test "$pld" = yes && _cpuexts="PLD $_cpuexts"
2757 test "$_armv5te" = yes && _cpuexts="ARMV5TE $_cpuexts"
2758 test "$_armv6" = yes && _cpuexts="ARMV6 $_cpuexts"
2759 test "$_armv6t2" = yes && _cpuexts="ARMV6T2 $_cpuexts"
2760 test "$_armvfp" = yes && _cpuexts="ARMVFP $_cpuexts"
2761 test "$neon" = yes && _cpuexts="NEON $_cpuexts"
2762 test "$_iwmmxt" = yes && _cpuexts="IWMMXT $_cpuexts"
2763 test "$_vis" = yes && _cpuexts="VIS $_cpuexts"
2764 test "$_mvi" = yes && _cpuexts="MVI $_cpuexts"
2766 # Checking kernel version...
2767 if x86_32 && linux ; then
2768 _k_verc_problem=no
2769 kernel_version=$(uname -r 2>&1)
2770 echocheck "$system_name kernel version"
2771 case "$kernel_version" in
2772 '') kernel_version="?.??"; _k_verc_fail=yes;;
2773 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2774 _k_verc_problem=yes;;
2775 esac
2776 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2777 _k_verc_fail=yes
2779 if test "$_k_verc_fail" ; then
2780 echores "$kernel_version, fail"
2781 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2782 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2783 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2784 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2785 echo "2.2.x you must upgrade it to get SSE support!"
2786 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2787 else
2788 echores "$kernel_version, ok"
2792 ######################
2793 # MAIN TESTS GO HERE #
2794 ######################
2797 echocheck "-lposix"
2798 cat > $TMPC <<EOF
2799 int main(void) { return 0; }
2801 if cc_check -lposix ; then
2802 extra_ldflags="$extra_ldflags -lposix"
2803 echores "yes"
2804 else
2805 echores "no"
2808 echocheck "-lm"
2809 cat > $TMPC <<EOF
2810 int main(void) { return 0; }
2812 if cc_check -lm ; then
2813 _ld_lm="-lm"
2814 echores "yes"
2815 else
2816 _ld_lm=""
2817 echores "no"
2821 echocheck "langinfo"
2822 if test "$_langinfo" = auto ; then
2823 cat > $TMPC <<EOF
2824 #include <langinfo.h>
2825 int main(void) { nl_langinfo(CODESET); return 0; }
2827 _langinfo=no
2828 cc_check && _langinfo=yes
2830 if test "$_langinfo" = yes ; then
2831 def_langinfo='#define HAVE_LANGINFO 1'
2832 else
2833 def_langinfo='#undef HAVE_LANGINFO'
2835 echores "$_langinfo"
2838 echocheck "translation support"
2839 if test "$_translation" = yes; then
2840 def_translation="#define CONFIG_TRANSLATION 1"
2841 else
2842 def_translation="#undef CONFIG_TRANSLATION"
2844 echores "$_translation"
2846 echocheck "language"
2847 # Set preferred languages, "all" uses English as main language.
2848 test -z "$language" && language=$LINGUAS
2849 test -z "$language_doc" && language_doc=$language
2850 test -z "$language_man" && language_man=$language
2851 test -z "$language_msg" && language_msg=$language
2852 language_doc=$(echo $language_doc | tr , " ")
2853 language_man=$(echo $language_man | tr , " ")
2854 language_msg=$(echo $language_msg | tr , " ")
2856 test "$language_doc" = "all" && language_doc=$doc_lang_all
2857 test "$language_man" = "all" && language_man=$man_lang_all
2858 test "$language_msg" = "all" && language_msg=en
2860 # Prune non-existing translations from language lists.
2861 # Set message translation to the first available language.
2862 # Fall back on English.
2863 for lang in $language_doc ; do
2864 test -d DOCS/xml/$lang && tmp_language_doc="$tmp_language_doc $lang"
2865 done
2866 language_doc=$tmp_language_doc
2867 test -z "$language_doc" && language_doc=en
2869 for lang in $language_man ; do
2870 test -d DOCS/man/$lang && tmp_language_man="$tmp_language_man $lang"
2871 done
2872 language_man=$tmp_language_man
2873 test -z "$language_man" && language_man=en
2875 for lang in $language_msg ; do
2876 test -f "help/help_mp-${lang}.h" && tmp_language_msg=$lang && break
2877 done
2878 language_msg=$tmp_language_msg
2879 test -z "$language_msg" && language_msg=en
2880 _mp_help="help/help_mp-${language_msg}.h"
2881 echores "messages: $language_msg - man pages: $language_man - documentation: $language_doc"
2884 echocheck "enable sighandler"
2885 if test "$_sighandler" = yes ; then
2886 def_sighandler='#define CONFIG_SIGHANDLER 1'
2887 else
2888 def_sighandler='#undef CONFIG_SIGHANDLER'
2890 echores "$_sighandler"
2892 echocheck "runtime cpudetection"
2893 if test "$_runtime_cpudetection" = yes ; then
2894 _optimizing="Runtime CPU-Detection enabled"
2895 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 1'
2896 else
2897 def_runtime_cpudetection='#define CONFIG_RUNTIME_CPUDETECT 0'
2899 echores "$_runtime_cpudetection"
2902 echocheck "restrict keyword"
2903 for restrict_keyword in restrict __restrict __restrict__ ; do
2904 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2905 if cc_check; then
2906 def_restrict_keyword=$restrict_keyword
2907 break;
2909 done
2910 if [ -n "$def_restrict_keyword" ]; then
2911 echores "$def_restrict_keyword"
2912 else
2913 echores "none"
2915 # Avoid infinite recursion loop ("#define restrict restrict")
2916 if [ "$def_restrict_keyword" != "restrict" ]; then
2917 def_restrict_keyword="#define restrict $def_restrict_keyword"
2918 else
2919 def_restrict_keyword=""
2923 echocheck "__builtin_expect"
2924 # GCC branch prediction hint
2925 cat > $TMPC << EOF
2926 int foo(int a) {
2927 a = __builtin_expect(a, 10);
2928 return a == 10 ? 0 : 1;
2930 int main(void) { return foo(10) && foo(0); }
2932 _builtin_expect=no
2933 cc_check && _builtin_expect=yes
2934 if test "$_builtin_expect" = yes ; then
2935 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2936 else
2937 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2939 echores "$_builtin_expect"
2942 echocheck "kstat"
2943 cat > $TMPC << EOF
2944 #include <kstat.h>
2945 int main(void) { (void) kstat_open(); (void) kstat_close(0); return 0; }
2947 _kstat=no
2948 cc_check -lkstat && _kstat=yes
2949 if test "$_kstat" = yes ; then
2950 def_kstat="#define HAVE_LIBKSTAT 1"
2951 extra_ldflags="$extra_ldflags -lkstat"
2952 else
2953 def_kstat="#undef HAVE_LIBKSTAT"
2955 echores "$_kstat"
2958 echocheck "posix4"
2959 # required for nanosleep on some systems
2960 cat > $TMPC << EOF
2961 #include <time.h>
2962 int main(void) { (void) nanosleep(0, 0); return 0; }
2964 _posix4=no
2965 cc_check -lposix4 && _posix4=yes
2966 if test "$_posix4" = yes ; then
2967 extra_ldflags="$extra_ldflags -lposix4"
2969 echores "$_posix4"
2971 for func in exp2 exp2f llrint log2 log2f lrint lrintf round roundf truncf; do
2972 echocheck $func
2973 cat > $TMPC << EOF
2974 #include <math.h>
2975 int main(void) { long (*foo)(float); foo = $func; (void)(*foo)(0.0); return 0; }
2977 eval _$func=no
2978 cc_check -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2979 if eval test "x\$_$func" = "xyes"; then
2980 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 1\""
2981 echores yes
2982 else
2983 eval def_$func="\"#define HAVE_$(echo $func | tr '[a-z]' '[A-Z]') 0\""
2984 echores no
2986 done
2989 echocheck "mkstemp"
2990 cat > $TMPC << EOF
2991 #include <stdlib.h>
2992 int main(void) { char a; mkstemp(&a); return 0; }
2994 _mkstemp=no
2995 cc_check && _mkstemp=yes
2996 if test "$_mkstemp" = yes ; then
2997 def_mkstemp='#define HAVE_MKSTEMP 1'
2998 else
2999 def_mkstemp='#undef HAVE_MKSTEMP'
3001 echores "$_mkstemp"
3004 echocheck "nanosleep"
3005 # also check for nanosleep
3006 cat > $TMPC << EOF
3007 #include <time.h>
3008 int main(void) { (void) nanosleep(0, 0); return 0; }
3010 _nanosleep=no
3011 cc_check && _nanosleep=yes
3012 if test "$_nanosleep" = yes ; then
3013 def_nanosleep='#define HAVE_NANOSLEEP 1'
3014 else
3015 def_nanosleep='#undef HAVE_NANOSLEEP'
3017 echores "$_nanosleep"
3020 echocheck "socklib"
3021 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
3022 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
3023 cat > $TMPC << EOF
3024 #include <netdb.h>
3025 #include <sys/socket.h>
3026 int main(void) { (void) gethostbyname(0); (void) socket(AF_INET, SOCK_STREAM, 0); return 0; }
3028 _socklib=no
3029 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
3030 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
3031 done
3032 test $_socklib = yes && test $_winsock2_h = auto && _winsock2_h=no
3033 if test $_winsock2_h = auto ; then
3034 _winsock2_h=no
3035 cat > $TMPC << EOF
3036 #include <winsock2.h>
3037 int main(void) { (void) gethostbyname(0); return 0; }
3039 cc_check -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
3041 test "$_ld_sock" && _res_comment="using $_ld_sock"
3042 echores "$_socklib"
3045 if test $_winsock2_h = yes ; then
3046 _ld_sock="-lws2_32"
3047 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
3048 else
3049 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
3053 echocheck "arpa/inet.h"
3054 arpa_inet_h=no
3055 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
3056 cat > $TMPC << EOF
3057 #include <arpa/inet.h>
3058 int main(void) { return 0; }
3060 cc_check && arpa_inet_h=yes && def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
3061 echores "$arpa_inet_h"
3064 echocheck "inet_pton()"
3065 def_inet_pton='#define HAVE_INET_PTON 0'
3066 inet_pton=no
3067 cat > $TMPC << EOF
3068 #include <sys/types.h>
3069 #include <sys/socket.h>
3070 #include <arpa/inet.h>
3071 int main(void) { (void) inet_pton(0, 0, 0); return 0; }
3073 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3074 cc_check $_ld_tmp && inet_pton=yes && break
3075 done
3076 if test $inet_pton = yes ; then
3077 test "$_ld_tmp" && _res_comment="using $_ld_tmp"
3078 def_inet_pton='#define HAVE_INET_PTON 1'
3080 echores "$inet_pton"
3083 echocheck "inet_aton()"
3084 def_inet_aton='#define HAVE_INET_ATON 0'
3085 inet_aton=no
3086 cat > $TMPC << EOF
3087 #include <sys/types.h>
3088 #include <sys/socket.h>
3089 #include <arpa/inet.h>
3090 int main(void) { (void) inet_aton(0, 0); return 0; }
3092 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3093 cc_check $_ld_tmp && inet_aton=yes && break
3094 done
3095 if test $inet_aton = yes ; then
3096 test "$_ld_tmp" && _res_comment="using $_ld_tmp"
3097 def_inet_aton='#define HAVE_INET_ATON 1'
3099 echores "$inet_aton"
3102 echocheck "socklen_t"
3103 _socklen_t=no
3104 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
3105 cat > $TMPC << EOF
3106 #include <$header>
3107 int main(void) { socklen_t v = 0; return v; }
3109 cc_check && _socklen_t=yes && break
3110 done
3111 if test "$_socklen_t" = yes ; then
3112 def_socklen_t='#define HAVE_SOCKLEN_T 1'
3113 else
3114 def_socklen_t='#define HAVE_SOCKLEN_T 0'
3116 echores "$_socklen_t"
3119 echocheck "closesocket()"
3120 _closesocket=no
3121 cat > $TMPC << EOF
3122 #include <winsock2.h>
3123 int main(void) { closesocket(~0); return 0; }
3125 cc_check $_ld_sock && _closesocket=yes
3126 if test "$_closesocket" = yes ; then
3127 def_closesocket='#define HAVE_CLOSESOCKET 1'
3128 else
3129 def_closesocket='#define HAVE_CLOSESOCKET 0'
3131 echores "$_closesocket"
3134 echocheck "network"
3135 test $_winsock2_h = no && test $inet_pton = no &&
3136 test $inet_aton = no && _network=no
3137 if test "$_network" = yes ; then
3138 def_network='#define CONFIG_NETWORK 1'
3139 extra_ldflags="$extra_ldflags $_ld_sock"
3140 _inputmodules="network $_inputmodules"
3141 else
3142 _noinputmodules="network $_noinputmodules"
3143 def_network='#undef CONFIG_NETWORK'
3144 _ftp=no
3146 echores "$_network"
3149 echocheck "inet6"
3150 if test "$_inet6" = auto ; then
3151 cat > $TMPC << EOF
3152 #include <sys/types.h>
3153 #if !defined(_WIN32) || defined(__CYGWIN__)
3154 #include <sys/socket.h>
3155 #include <netinet/in.h>
3156 #else
3157 #include <ws2tcpip.h>
3158 #endif
3159 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3161 _inet6=no
3162 if cc_check $_ld_sock ; then
3163 _inet6=yes
3166 if test "$_inet6" = yes ; then
3167 def_inet6='#define HAVE_AF_INET6 1'
3168 else
3169 def_inet6='#undef HAVE_AF_INET6'
3171 echores "$_inet6"
3174 echocheck "gethostbyname2"
3175 if test "$_gethostbyname2" = auto ; then
3176 cat > $TMPC << EOF
3177 #include <sys/types.h>
3178 #include <sys/socket.h>
3179 #include <netdb.h>
3180 int main(void) { gethostbyname2("", AF_INET); return 0; }
3182 _gethostbyname2=no
3183 if cc_check ; then
3184 _gethostbyname2=yes
3187 if test "$_gethostbyname2" = yes ; then
3188 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3189 else
3190 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3192 echores "$_gethostbyname2"
3195 echocheck "inttypes.h (required)"
3196 cat > $TMPC << EOF
3197 #include <inttypes.h>
3198 int main(void) { return 0; }
3200 _inttypes=no
3201 cc_check && _inttypes=yes
3202 echores "$_inttypes"
3204 if test "$_inttypes" = no ; then
3205 echocheck "bitypes.h (inttypes.h predecessor)"
3206 cat > $TMPC << EOF
3207 #include <sys/bitypes.h>
3208 int main(void) { return 0; }
3210 cc_check && _inttypes=yes
3211 if test "$_inttypes" = yes ; then
3212 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."
3213 else
3214 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3219 echocheck "int_fastXY_t in inttypes.h"
3220 cat > $TMPC << EOF
3221 #include <inttypes.h>
3222 int main(void) {
3223 volatile int_fast16_t v= 0;
3224 return v; }
3226 _fast_inttypes=no
3227 cc_check && _fast_inttypes=yes
3228 if test "$_fast_inttypes" = no ; then
3229 def_fast_inttypes='
3230 typedef signed char int_fast8_t;
3231 typedef signed int int_fast16_t;
3232 typedef signed int int_fast32_t;
3233 typedef signed long long int_fast64_t;
3234 typedef unsigned char uint_fast8_t;
3235 typedef unsigned int uint_fast16_t;
3236 typedef unsigned int uint_fast32_t;
3237 typedef unsigned long long uint_fast64_t;'
3239 echores "$_fast_inttypes"
3242 echocheck "malloc.h"
3243 cat > $TMPC << EOF
3244 #include <malloc.h>
3245 int main(void) { (void) malloc(0); return 0; }
3247 _malloc=no
3248 cc_check && _malloc=yes
3249 if test "$_malloc" = yes ; then
3250 def_malloc_h='#define HAVE_MALLOC_H 1'
3251 else
3252 def_malloc_h='#define HAVE_MALLOC_H 0'
3254 # malloc.h emits a warning in FreeBSD and OpenBSD
3255 freebsd || openbsd || dragonfly && def_malloc_h='#define HAVE_MALLOC_H 0'
3256 echores "$_malloc"
3259 echocheck "memalign()"
3260 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3261 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3262 cat > $TMPC << EOF
3263 #include <malloc.h>
3264 int main(void) { (void) memalign(64, sizeof(char)); return 0; }
3266 _memalign=no
3267 cc_check && _memalign=yes
3268 if test "$_memalign" = yes ; then
3269 def_memalign='#define HAVE_MEMALIGN 1'
3270 else
3271 def_memalign='#define HAVE_MEMALIGN 0'
3272 def_map_memalign='#define memalign(a,b) malloc(b)'
3273 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3275 echores "$_memalign"
3278 echocheck "posix_memalign()"
3279 posix_memalign=no
3280 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3281 cat > $TMPC << EOF
3282 #define _XOPEN_SOURCE 600
3283 #include <stdlib.h>
3284 int main(void) { posix_memalign(NULL, 0, 0); }
3286 cc_check && posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3287 echores "$posix_memalign"
3290 echocheck "alloca.h"
3291 cat > $TMPC << EOF
3292 #include <alloca.h>
3293 int main(void) { (void) alloca(0); return 0; }
3295 _alloca=no
3296 cc_check && _alloca=yes
3297 if cc_check ; then
3298 def_alloca_h='#define HAVE_ALLOCA_H 1'
3299 else
3300 def_alloca_h='#undef HAVE_ALLOCA_H'
3302 echores "$_alloca"
3305 echocheck "fastmemcpy"
3306 if test "$_fastmemcpy" = yes ; then
3307 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3308 else
3309 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3311 echores "$_fastmemcpy"
3314 echocheck "mman.h"
3315 cat > $TMPC << EOF
3316 #include <sys/types.h>
3317 #include <sys/mman.h>
3318 int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; }
3320 _mman=no
3321 cc_check && _mman=yes
3322 if test "$_mman" = yes ; then
3323 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3324 else
3325 def_mman_h='#undef HAVE_SYS_MMAN_H'
3326 os2 && _need_mmap=yes
3328 echores "$_mman"
3330 cat > $TMPC << EOF
3331 #include <sys/types.h>
3332 #include <sys/mman.h>
3333 int main(void) { void *p = MAP_FAILED; return 0; }
3335 _mman_has_map_failed=no
3336 cc_check && _mman_has_map_failed=yes
3337 if test "$_mman_has_map_failed" = yes ; then
3338 def_mman_has_map_failed=''
3339 else
3340 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3343 echocheck "dynamic loader"
3344 cat > $TMPC << EOF
3345 #include <stddef.h>
3346 #include <dlfcn.h>
3347 int main(void) { dlopen("", 0); dlclose(NULL); dlsym(NULL, ""); return 0; }
3349 _dl=no
3350 for _ld_tmp in "" "-ldl" ; do
3351 cc_check $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3352 done
3353 if test "$_dl" = yes ; then
3354 def_dl='#define HAVE_LIBDL 1'
3355 else
3356 def_dl='#undef HAVE_LIBDL'
3358 echores "$_dl"
3361 echocheck "dynamic a/v plugins support"
3362 if test "$_dl" = no ; then
3363 _dynamic_plugins=no
3365 if test "$_dynamic_plugins" = yes ; then
3366 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3367 else
3368 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3370 echores "$_dynamic_plugins"
3373 def_threads='#define HAVE_THREADS 0'
3375 echocheck "pthread"
3376 if linux ; then
3377 THREAD_CFLAGS=-D_REENTRANT
3378 elif freebsd || netbsd || openbsd || bsdos ; then
3379 THREAD_CFLAGS=-D_THREAD_SAFE
3381 if test "$_pthreads" = auto ; then
3382 cat > $TMPC << EOF
3383 #include <pthread.h>
3384 void* func(void *arg) { return arg; }
3385 int main(void) { pthread_t tid; return pthread_create(&tid, 0, func, 0) == 0 ? 0 : 1; }
3387 _pthreads=no
3388 if ! hpux ; then
3389 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3390 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3391 cc_check $THREAD_CFLAGS $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3392 done
3395 if test "$_pthreads" = yes ; then
3396 test $_ld_pthread && _res_comment="using $_ld_pthread"
3397 def_pthreads='#define HAVE_PTHREADS 1'
3398 def_threads='#define HAVE_THREADS 1'
3399 extra_cflags="$extra_cflags $THREAD_CFLAGS"
3400 else
3401 _res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3402 def_pthreads='#undef HAVE_PTHREADS'
3403 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3404 mingw32 || _win32dll=no
3406 echores "$_pthreads"
3408 if cygwin ; then
3409 if test "$_pthreads" = yes ; then
3410 def_pthread_cache="#define PTHREAD_CACHE 1"
3411 else
3412 _stream_cache=no
3413 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3417 echocheck "w32threads"
3418 if test "$_pthreads" = yes ; then
3419 _res_comment="using pthread instead"
3420 _w32threads=no
3422 if test "$_w32threads" = auto ; then
3423 _w32threads=no
3424 mingw32 && _w32threads=yes
3426 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3427 echores "$_w32threads"
3429 echocheck "rpath"
3430 netbsd &&_rpath=yes
3431 if test "$_rpath" = yes ; then
3432 for I in $(echo $extra_ldflags | sed 's/-L//g') ; do
3433 tmp="$tmp $(echo $I | sed 's/.*/ -L& -Wl,-R&/')"
3434 done
3435 extra_ldflags=$tmp
3437 echores "$_rpath"
3439 echocheck "iconv"
3440 if test "$_iconv" = auto ; then
3441 cat > $TMPC << EOF
3442 #include <stdio.h>
3443 #include <unistd.h>
3444 #include <iconv.h>
3445 #define INBUFSIZE 1024
3446 #define OUTBUFSIZE 4096
3448 char inbuffer[INBUFSIZE];
3449 char outbuffer[OUTBUFSIZE];
3451 int main(void) {
3452 size_t numread;
3453 iconv_t icdsc;
3454 char *tocode="UTF-8";
3455 char *fromcode="cp1250";
3456 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3457 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3458 char *iptr=inbuffer;
3459 char *optr=outbuffer;
3460 size_t inleft=numread;
3461 size_t outleft=OUTBUFSIZE;
3462 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft)
3463 != (size_t)(-1)) {
3464 write(1, outbuffer, OUTBUFSIZE - outleft);
3467 if (iconv_close(icdsc) == -1)
3470 return 0;
3473 _iconv=no
3474 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3475 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3476 _iconv=yes && break
3477 done
3479 if test "$_iconv" = yes ; then
3480 def_iconv='#define CONFIG_ICONV 1'
3481 else
3482 def_iconv='#undef CONFIG_ICONV'
3484 echores "$_iconv"
3487 echocheck "soundcard.h"
3488 _soundcard_h=no
3489 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3490 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3491 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3492 cat > $TMPC << EOF
3493 #include <$_soundcard_header>
3494 int main(void) { return 0; }
3496 cc_check && _soundcard_h=yes && _res_comment="$_soundcard_header" && break
3497 done
3499 if test "$_soundcard_h" = yes ; then
3500 if test $_soundcard_header = "sys/soundcard.h"; then
3501 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3502 else
3503 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3506 echores "$_soundcard_h"
3509 echocheck "sys/dvdio.h"
3510 cat > $TMPC << EOF
3511 #include <unistd.h>
3512 #include <sys/dvdio.h>
3513 int main(void) { return 0; }
3515 _dvdio=no
3516 cc_check && _dvdio=yes
3517 if test "$_dvdio" = yes ; then
3518 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3519 else
3520 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3522 echores "$_dvdio"
3525 echocheck "sys/cdio.h"
3526 cat > $TMPC << EOF
3527 #include <unistd.h>
3528 #include <sys/cdio.h>
3529 int main(void) { return 0; }
3531 _cdio=no
3532 cc_check && _cdio=yes
3533 if test "$_cdio" = yes ; then
3534 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3535 else
3536 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3538 echores "$_cdio"
3541 echocheck "linux/cdrom.h"
3542 cat > $TMPC << EOF
3543 #include <sys/types.h>
3544 #include <linux/cdrom.h>
3545 int main(void) { return 0; }
3547 _cdrom=no
3548 cc_check && _cdrom=yes
3549 if test "$_cdrom" = yes ; then
3550 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3551 else
3552 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3554 echores "$_cdrom"
3557 echocheck "dvd.h"
3558 cat > $TMPC << EOF
3559 #include <dvd.h>
3560 int main(void) { return 0; }
3562 _dvd=no
3563 cc_check && _dvd=yes
3564 if test "$_dvd" = yes ; then
3565 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3566 else
3567 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3569 echores "$_dvd"
3572 if bsdos; then
3573 echocheck "BSDI dvd.h"
3574 cat > $TMPC << EOF
3575 #include <dvd.h>
3576 int main(void) { return 0; }
3578 _bsdi_dvd=no
3579 cc_check && _bsdi_dvd=yes
3580 if test "$_bsdi_dvd" = yes ; then
3581 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3582 else
3583 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3585 echores "$_bsdi_dvd"
3586 fi #if bsdos
3589 if hpux; then
3590 # also used by AIX, but AIX does not support VCD and/or libdvdread
3591 echocheck "HP-UX SCSI header"
3592 cat > $TMPC << EOF
3593 #include <sys/scsi.h>
3594 int main(void) { return 0; }
3596 _hpux_scsi_h=no
3597 cc_check && _hpux_scsi_h=yes
3598 if test "$_hpux_scsi_h" = yes ; then
3599 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3600 else
3601 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3603 echores "$_hpux_scsi_h"
3604 fi #if hpux
3607 if sunos; then
3608 echocheck "userspace SCSI headers (Solaris)"
3609 cat > $TMPC << EOF
3610 #include <unistd.h>
3611 #include <stropts.h>
3612 #include <sys/scsi/scsi_types.h>
3613 #include <sys/scsi/impl/uscsi.h>
3614 int main(void) { return 0; }
3616 _sol_scsi_h=no
3617 cc_check && _sol_scsi_h=yes
3618 if test "$_sol_scsi_h" = yes ; then
3619 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3620 else
3621 def_sol_scsi_h='#undef SOLARIS_USCSI'
3623 echores "$_sol_scsi_h"
3624 fi #if sunos
3627 echocheck "termcap"
3628 if test "$_termcap" = auto ; then
3629 cat > $TMPC <<EOF
3630 #include <stddef.h>
3631 #include <term.h>
3632 int main(void) { tgetent(NULL, NULL); return 0; }
3634 _termcap=no
3635 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3636 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
3637 && _termcap=yes && break
3638 done
3640 if test "$_termcap" = yes ; then
3641 def_termcap='#define HAVE_TERMCAP 1'
3642 test $_ld_tmp && _res_comment="using $_ld_tmp"
3643 else
3644 def_termcap='#undef HAVE_TERMCAP'
3646 echores "$_termcap"
3649 echocheck "termios"
3650 def_termios='#undef HAVE_TERMIOS'
3651 def_termios_h='#undef HAVE_TERMIOS_H'
3652 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3653 if test "$_termios" = auto ; then
3654 _termios=no
3655 for _termios_header in "sys/termios.h" "termios.h"; do
3656 cat > $TMPC <<EOF
3657 #include <$_termios_header>
3658 int main(void) { return 0; }
3660 cc_check && _termios=yes && _res_comment="using $_termios_header" && break
3661 done
3664 if test "$_termios" = yes ; then
3665 def_termios='#define HAVE_TERMIOS 1'
3666 if test "$_termios_header" = "termios.h" ; then
3667 def_termios_h='#define HAVE_TERMIOS_H 1'
3668 else
3669 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3672 echores "$_termios"
3675 echocheck "shm"
3676 if test "$_shm" = auto ; then
3677 cat > $TMPC << EOF
3678 #include <sys/types.h>
3679 #include <sys/shm.h>
3680 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3682 _shm=no
3683 cc_check && _shm=yes
3685 if test "$_shm" = yes ; then
3686 def_shm='#define HAVE_SHM 1'
3687 else
3688 def_shm='#undef HAVE_SHM'
3690 echores "$_shm"
3693 echocheck "strsep()"
3694 cat > $TMPC << EOF
3695 #include <string.h>
3696 int main(void) { char *s = "Hello, world!"; (void) strsep(&s, ","); return 0; }
3698 _strsep=no
3699 cc_check && _strsep=yes
3700 if test "$_strsep" = yes ; then
3701 def_strsep='#define HAVE_STRSEP 1'
3702 _need_strsep=no
3703 else
3704 def_strsep='#undef HAVE_STRSEP'
3705 _need_strsep=yes
3707 echores "$_strsep"
3710 echocheck "vsscanf()"
3711 cat > $TMPC << EOF
3712 #define _ISOC99_SOURCE
3713 #include <stdarg.h>
3714 #include <stdio.h>
3715 int main(void) { va_list ap; vsscanf("foo", "bar", ap); return 0; }
3717 _vsscanf=no
3718 cc_check && _vsscanf=yes
3719 if test "$_vsscanf" = yes ; then
3720 def_vsscanf='#define HAVE_VSSCANF 1'
3721 _need_vsscanf=no
3722 else
3723 def_vsscanf='#undef HAVE_VSSCANF'
3724 _need_vsscanf=yes
3726 echores "$_vsscanf"
3729 echocheck "swab()"
3730 cat > $TMPC << EOF
3731 #define _XOPEN_SOURCE 600
3732 #include <unistd.h>
3733 int main(void) { swab(0, 0, 0); return 0; }
3735 _swab=no
3736 cc_check && _swab=yes
3737 if test "$_swab" = yes ; then
3738 def_swab='#define HAVE_SWAB 1'
3739 _need_swab=no
3740 else
3741 def_swab='#undef HAVE_SWAB'
3742 _need_swab=yes
3744 echores "$_swab"
3746 echocheck "POSIX select()"
3747 cat > $TMPC << EOF
3748 #include <stdio.h>
3749 #include <stdlib.h>
3750 #include <sys/types.h>
3751 #include <string.h>
3752 #include <sys/time.h>
3753 #include <unistd.h>
3754 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
3756 _posix_select=no
3757 def_posix_select='#undef HAVE_POSIX_SELECT'
3758 #select() of kLIBC (OS/2) supports socket only
3759 ! os2 && cc_check && _posix_select=yes \
3760 && def_posix_select='#define HAVE_POSIX_SELECT 1'
3761 echores "$_posix_select"
3764 echocheck "audio select()"
3765 if test "$_select" = no ; then
3766 def_select='#undef HAVE_AUDIO_SELECT'
3767 elif test "$_select" = yes ; then
3768 def_select='#define HAVE_AUDIO_SELECT 1'
3770 echores "$_select"
3773 echocheck "gettimeofday()"
3774 cat > $TMPC << EOF
3775 #include <stdio.h>
3776 #include <sys/time.h>
3777 int main(void) {struct timeval tv_start; gettimeofday(&tv_start, NULL); return 0; }
3779 _gettimeofday=no
3780 cc_check && _gettimeofday=yes
3781 if test "$_gettimeofday" = yes ; then
3782 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3783 _need_gettimeofday=no
3784 else
3785 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3786 _need_gettimeofday=yes
3788 echores "$_gettimeofday"
3791 echocheck "glob()"
3792 cat > $TMPC << EOF
3793 #include <stdio.h>
3794 #include <glob.h>
3795 int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
3797 _glob=no
3798 cc_check && _glob=yes
3799 if test "$_glob" = yes ; then
3800 def_glob='#define HAVE_GLOB 1'
3801 _need_glob=no
3802 else
3803 def_glob='#undef HAVE_GLOB'
3804 _need_glob=yes
3806 echores "$_glob"
3809 echocheck "setenv()"
3810 cat > $TMPC << EOF
3811 #include <stdlib.h>
3812 int main(void) { setenv("","",0); return 0; }
3814 _setenv=no
3815 cc_check && _setenv=yes
3816 if test "$_setenv" = yes ; then
3817 def_setenv='#define HAVE_SETENV 1'
3818 _need_setenv=no
3819 else
3820 def_setenv='#undef HAVE_SETENV'
3821 _need_setenv=yes
3823 echores "$_setenv"
3826 echocheck "setmode()"
3827 _setmode=no
3828 def_setmode='#define HAVE_SETMODE 0'
3829 cat > $TMPC << EOF
3830 #include <io.h>
3831 int main(void) { setmode(0, 0); return 0; }
3833 cc_check && _setmode=yes && def_setmode='#define HAVE_SETMODE 1'
3834 echores "$_setmode"
3837 if sunos; then
3838 echocheck "sysi86()"
3839 cat > $TMPC << EOF
3840 #include <sys/sysi86.h>
3841 int main(void) { sysi86(0); return 0; }
3843 _sysi86=no
3844 cc_check && _sysi86=yes
3845 if test "$_sysi86" = yes ; then
3846 def_sysi86='#define HAVE_SYSI86 1'
3847 cat > $TMPC << EOF
3848 #include <sys/sysi86.h>
3849 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
3851 cc_check && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3852 else
3853 def_sysi86='#undef HAVE_SYSI86'
3855 echores "$_sysi86"
3856 fi #if sunos
3859 echocheck "sys/sysinfo.h"
3860 cat > $TMPC << EOF
3861 #include <sys/sysinfo.h>
3862 int main(void) {
3863 struct sysinfo s_info;
3864 sysinfo(&s_info);
3865 return 0;
3868 _sys_sysinfo=no
3869 cc_check && _sys_sysinfo=yes
3870 if test "$_sys_sysinfo" = yes ; then
3871 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3872 else
3873 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3875 echores "$_sys_sysinfo"
3878 if darwin; then
3880 echocheck "Mac OS X Finder Support"
3881 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3882 if test "$_macosx_finder" = yes ; then
3883 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3884 extra_ldflags="$extra_ldflags -framework Carbon"
3886 echores "$_macosx_finder"
3888 echocheck "Mac OS X Bundle file locations"
3889 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3890 test "$_macosx_bundle" = auto && _macosx_bundle=$_macosx_finder
3891 if test "$_macosx_bundle" = yes ; then
3892 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3893 extra_ldflags="$extra_ldflags -framework Carbon"
3895 echores "$_macosx_bundle"
3897 echocheck "Apple Remote"
3898 if test "$_apple_remote" = auto ; then
3899 _apple_remote=no
3900 cat > $TMPC <<EOF
3901 #include <stdio.h>
3902 #include <IOKit/IOCFPlugIn.h>
3903 int main(void) {
3904 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3905 CFMutableDictionaryRef hidMatchDictionary;
3906 IOReturn ioReturnValue;
3908 // Set up a matching dictionary to search the I/O Registry by class.
3909 // name for all HID class devices
3910 hidMatchDictionary = IOServiceMatching("AppleIRController");
3912 // Now search I/O Registry for matching devices.
3913 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3914 hidMatchDictionary, &hidObjectIterator);
3916 // If search is unsuccessful, return nonzero.
3917 if (ioReturnValue != kIOReturnSuccess ||
3918 !IOIteratorIsValid(hidObjectIterator)) {
3919 return 1;
3921 return 0;
3924 cc_check -framework IOKit && tmp_run && _apple_remote=yes
3926 if test "$_apple_remote" = yes ; then
3927 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3928 libs_mplayer="$libs_mplayer -framework IOKit -framework Cocoa"
3929 else
3930 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3932 echores "$_apple_remote"
3934 fi #if darwin
3936 if linux; then
3938 echocheck "Apple IR"
3939 if test "$_apple_ir" = auto ; then
3940 _apple_ir=no
3941 cat > $TMPC <<EOF
3942 #include <linux/types.h>
3943 #include <linux/input.h>
3944 int main(void) {
3945 struct input_event ev;
3946 struct input_id id;
3947 return 0;
3950 cc_check && _apple_ir=yes
3952 if test "$_apple_ir" = yes ; then
3953 def_apple_ir='#define CONFIG_APPLE_IR 1'
3954 else
3955 def_apple_ir='#undef CONFIG_APPLE_IR'
3957 echores "$_apple_ir"
3958 fi #if linux
3960 echocheck "pkg-config"
3961 _pkg_config=pkg-config
3962 if $($_pkg_config --version > /dev/null 2>&1); then
3963 if test "$_ld_static"; then
3964 _pkg_config="$_pkg_config --static"
3966 echores "yes"
3967 else
3968 _pkg_config=false
3969 echores "no"
3973 echocheck "Samba support (libsmbclient)"
3974 if test "$_smb" = yes; then
3975 extra_ldflags="$extra_ldflags -lsmbclient"
3977 if test "$_smb" = auto; then
3978 _smb=no
3979 cat > $TMPC << EOF
3980 #include <libsmbclient.h>
3981 int main(void) { smbc_opendir("smb://"); return 0; }
3983 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3984 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3985 _smb=yes && break
3986 done
3989 if test "$_smb" = yes; then
3990 def_smb="#define CONFIG_LIBSMBCLIENT 1"
3991 _inputmodules="smb $_inputmodules"
3992 else
3993 def_smb="#undef CONFIG_LIBSMBCLIENT"
3994 _noinputmodules="smb $_noinputmodules"
3996 echores "$_smb"
3999 #########
4000 # VIDEO #
4001 #########
4004 echocheck "tdfxfb"
4005 if test "$_tdfxfb" = yes ; then
4006 def_tdfxfb='#define CONFIG_TDFXFB 1'
4007 _vomodules="tdfxfb $_vomodules"
4008 else
4009 def_tdfxfb='#undef CONFIG_TDFXFB'
4010 _novomodules="tdfxfb $_novomodules"
4012 echores "$_tdfxfb"
4014 echocheck "s3fb"
4015 if test "$_s3fb" = yes ; then
4016 def_s3fb='#define CONFIG_S3FB 1'
4017 _vomodules="s3fb $_vomodules"
4018 else
4019 def_s3fb='#undef CONFIG_S3FB'
4020 _novomodules="s3fb $_novomodules"
4022 echores "$_s3fb"
4024 echocheck "wii"
4025 if test "$_wii" = yes ; then
4026 def_wii='#define CONFIG_WII 1'
4027 _vomodules="wii $_vomodules"
4028 else
4029 def_wii='#undef CONFIG_WII'
4030 _novomodules="wii $_novomodules"
4032 echores "$_wii"
4034 echocheck "tdfxvid"
4035 if test "$_tdfxvid" = yes ; then
4036 def_tdfxvid='#define CONFIG_TDFX_VID 1'
4037 _vomodules="tdfx_vid $_vomodules"
4038 else
4039 def_tdfxvid='#undef CONFIG_TDFX_VID'
4040 _novomodules="tdfx_vid $_novomodules"
4042 echores "$_tdfxvid"
4044 echocheck "xvr100"
4045 if test "$_xvr100" = auto ; then
4046 cat > $TMPC << EOF
4047 #include <unistd.h>
4048 #include <sys/fbio.h>
4049 #include <sys/visual_io.h>
4050 int main(void) {
4051 struct vis_identifier ident;
4052 struct fbgattr attr;
4053 ioctl(0, VIS_GETIDENTIFIER, &ident);
4054 ioctl(0, FBIOGATTR, &attr);
4055 return 0;
4058 _xvr100=no
4059 cc_check && _xvr100=yes
4061 if test "$_xvr100" = yes ; then
4062 def_xvr100='#define CONFIG_XVR100 1'
4063 _vomodules="xvr100 $_vomodules"
4064 else
4065 def_tdfxvid='#undef CONFIG_XVR100'
4066 _novomodules="xvr100 $_novomodules"
4068 echores "$_xvr100"
4070 echocheck "tga"
4071 if test "$_tga" = yes ; then
4072 def_tga='#define CONFIG_TGA 1'
4073 _vomodules="tga $_vomodules"
4074 else
4075 def_tga='#undef CONFIG_TGA'
4076 _novomodules="tga $_novomodules"
4078 echores "$_tga"
4081 echocheck "md5sum support"
4082 if test "$_md5sum" = yes; then
4083 def_md5sum="#define CONFIG_MD5SUM 1"
4084 _vomodules="md5sum $_vomodules"
4085 else
4086 def_md5sum="#undef CONFIG_MD5SUM"
4087 _novomodules="md5sum $_novomodules"
4089 echores "$_md5sum"
4092 echocheck "yuv4mpeg support"
4093 if test "$_yuv4mpeg" = yes; then
4094 def_yuv4mpeg="#define CONFIG_YUV4MPEG 1"
4095 _vomodules="yuv4mpeg $_vomodules"
4096 else
4097 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
4098 _novomodules="yuv4mpeg $_novomodules"
4100 echores "$_yuv4mpeg"
4103 echocheck "bl"
4104 if test "$_bl" = yes ; then
4105 def_bl='#define CONFIG_BL 1'
4106 _vomodules="bl $_vomodules"
4107 else
4108 def_bl='#undef CONFIG_BL'
4109 _novomodules="bl $_novomodules"
4111 echores "$_bl"
4114 echocheck "DirectFB"
4115 if test "$_directfb" = auto ; then
4116 _directfb=no
4117 cat > $TMPC <<EOF
4118 #include <directfb.h>
4119 int main(void) { DirectFBInit(0, 0); return 0; }
4121 for _inc_tmp in "" -I/usr/local/include/directfb \
4122 -I/usr/include/directfb -I/usr/local/include; do
4123 cc_check $_inc_tmp -ldirectfb && _directfb=yes && \
4124 extra_cflags="$extra_cflags $_inc_tmp" && break
4125 done
4128 dfb_version() {
4129 expr $1 \* 65536 + $2 \* 256 + $3
4132 if test "$_directfb" = yes; then
4133 cat > $TMPC << EOF
4134 #include <directfb_version.h>
4136 dfb_ver = DIRECTFB_MAJOR_VERSION.DIRECTFB_MINOR_VERSION.DIRECTFB_MICRO_VERSION
4139 if $_cc -E $TMPC $extra_cflags > "$TMPEXE"; then
4140 _directfb_version=$(sed -n 's/^dfb_ver[^0-9]*\(.*\)/\1/p' "$TMPEXE" | tr -d '()')
4141 _dfb_major=$(echo $_directfb_version | cut -d . -f 1)
4142 _dfb_minor=$(echo $_directfb_version | cut -d . -f 2)
4143 _dfb_micro=$(echo $_directfb_version | cut -d . -f 3)
4144 _dfb_version=$(dfb_version $_dfb_major $_dfb_minor $_dfb_micro)
4145 if test "$_dfb_version" -ge $(dfb_version 0 9 13); then
4146 def_directfb_version="#define DIRECTFBVERSION $_dfb_version"
4147 _res_comment="$_directfb_version"
4148 test "$_dfb_version" -ge $(dfb_version 0 9 15) && _dfbmga=yes
4149 else
4150 def_directfb_version='#undef DIRECTFBVERSION'
4151 _directfb=no
4152 _res_comment="version >=0.9.13 required"
4154 else
4155 _directfb=no
4156 _res_comment="failed to get version"
4159 echores "$_directfb"
4161 if test "$_directfb" = yes ; then
4162 def_directfb='#define CONFIG_DIRECTFB 1'
4163 _vomodules="directfb $_vomodules"
4164 libs_mplayer="$libs_mplayer -ldirectfb"
4165 else
4166 def_directfb='#undef CONFIG_DIRECTFB'
4167 _novomodules="directfb $_novomodules"
4169 if test "$_dfbmga" = yes; then
4170 _vomodules="dfbmga $_vomodules"
4171 def_dfbmga='#define CONFIG_DFBMGA 1'
4172 else
4173 _novomodules="dfbmga $_novomodules"
4174 def_dfbmga='#undef CONFIG_DFBMGA'
4178 echocheck "X11 headers presence"
4179 _x11_headers="no"
4180 _res_comment="check if the dev(el) packages are installed"
4181 for I in $(echo $extra_cflags | sed s/-I//g) /usr/include ; do
4182 if test -f "$I/X11/Xlib.h" ; then
4183 _x11_headers="yes"
4184 _res_comment=""
4185 break
4187 done
4188 if test $_cross_compile = no; then
4189 for I in /usr/X11/include /usr/X11R7/include /usr/local/include /usr/X11R6/include \
4190 /usr/include/X11R6 /usr/openwin/include ; do
4191 if test -f "$I/X11/Xlib.h" ; then
4192 extra_cflags="$extra_cflags -I$I"
4193 _x11_headers="yes"
4194 _res_comment="using $I"
4195 break
4197 done
4199 echores "$_x11_headers"
4202 echocheck "X11"
4203 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
4204 cat > $TMPC <<EOF
4205 #include <X11/Xlib.h>
4206 #include <X11/Xutil.h>
4207 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; }
4209 for I in "" -L/usr/X11R7/lib -L/usr/local/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
4210 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/local/lib64 -L/usr/X11R6/lib64 \
4211 -L/usr/lib ; do
4212 if netbsd; then
4213 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R$(echo $I | sed s/^-L//)"
4214 else
4215 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
4217 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" \
4218 && _x11=yes && break
4219 done
4221 if test "$_x11" = yes ; then
4222 def_x11='#define CONFIG_X11 1'
4223 _vomodules="x11 xover $_vomodules"
4224 else
4225 _x11=no
4226 def_x11='#undef CONFIG_X11'
4227 _novomodules="x11 $_novomodules"
4228 _res_comment="check if the dev(el) packages are installed"
4229 # disable stuff that depends on X
4230 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
4232 echores "$_x11"
4234 echocheck "Xss screensaver extensions"
4235 if test "$_xss" = auto ; then
4236 cat > $TMPC << EOF
4237 #include <X11/Xlib.h>
4238 #include <X11/extensions/scrnsaver.h>
4239 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
4241 _xss=no
4242 cc_check -lXss && _xss=yes
4244 if test "$_xss" = yes ; then
4245 def_xss='#define CONFIG_XSS 1'
4246 libs_mplayer="$libs_mplayer -lXss"
4247 else
4248 def_xss='#undef CONFIG_XSS'
4250 echores "$_xss"
4252 echocheck "DPMS"
4253 _xdpms3=no
4254 _xdpms4=no
4255 if test "$_x11" = yes ; then
4256 cat > $TMPC <<EOF
4257 #include <X11/Xmd.h>
4258 #include <X11/Xlib.h>
4259 #include <X11/Xutil.h>
4260 #include <X11/Xatom.h>
4261 #include <X11/extensions/dpms.h>
4262 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4264 cc_check -lXdpms && _xdpms3=yes
4265 cat > $TMPC <<EOF
4266 #include <X11/Xlib.h>
4267 #include <X11/extensions/dpms.h>
4268 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4270 cc_check -lXext && _xdpms4=yes
4272 if test "$_xdpms4" = yes ; then
4273 def_xdpms='#define CONFIG_XDPMS 1'
4274 _res_comment="using Xdpms 4"
4275 echores "yes"
4276 elif test "$_xdpms3" = yes ; then
4277 def_xdpms='#define CONFIG_XDPMS 1'
4278 libs_mplayer="$libs_mplayer -lXdpms"
4279 _res_comment="using Xdpms 3"
4280 echores "yes"
4281 else
4282 def_xdpms='#undef CONFIG_XDPMS'
4283 echores "no"
4287 echocheck "Xv"
4288 if test "$_xv" = auto ; then
4289 cat > $TMPC <<EOF
4290 #include <X11/Xlib.h>
4291 #include <X11/extensions/Xvlib.h>
4292 int main(void) {
4293 (void) XvGetPortAttribute(0, 0, 0, 0);
4294 (void) XvQueryPortAttributes(0, 0, 0);
4295 return 0; }
4297 _xv=no
4298 cc_check -lXv && _xv=yes
4301 if test "$_xv" = yes ; then
4302 def_xv='#define CONFIG_XV 1'
4303 libs_mplayer="$libs_mplayer -lXv"
4304 _vomodules="xv $_vomodules"
4305 else
4306 def_xv='#undef CONFIG_XV'
4307 _novomodules="xv $_novomodules"
4309 echores "$_xv"
4312 echocheck "XvMC"
4313 if test "$_xv" = yes && test "$_xvmc" != no ; then
4314 _xvmc=no
4315 cat > $TMPC <<EOF
4316 #include <X11/Xlib.h>
4317 #include <X11/extensions/Xvlib.h>
4318 #include <X11/extensions/XvMClib.h>
4319 int main(void) {
4320 (void) XvMCQueryExtension(0,0,0);
4321 (void) XvMCCreateContext(0,0,0,0,0,0,0);
4322 return 0; }
4324 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
4325 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
4326 done
4328 if test "$_xvmc" = yes ; then
4329 def_xvmc='#define CONFIG_XVMC 1'
4330 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
4331 _vomodules="xvmc $_vomodules"
4332 _res_comment="using $_xvmclib"
4333 else
4334 def_xvmc='#define CONFIG_XVMC 0'
4335 _novomodules="xvmc $_novomodules"
4337 echores "$_xvmc"
4340 echocheck "VDPAU"
4341 if test "$_vdpau" = auto ; then
4342 _vdpau=no
4343 if test "$_dl" = yes ; then
4344 cat > $TMPC <<EOF
4345 #include <vdpau/vdpau_x11.h>
4346 int main(void) {
4347 (void) vdp_device_create_x11(0, 0, 0, 0);
4348 return VDP_VIDEO_MIXER_ATTRIBUTE_SKIP_CHROMA_DEINTERLACE;}
4350 cc_check -lvdpau && _vdpau=yes
4353 if test "$_vdpau" = yes ; then
4354 def_vdpau='#define CONFIG_VDPAU 1'
4355 libs_mplayer="$libs_mplayer -lvdpau"
4356 _vomodules="vdpau $_vomodules"
4357 else
4358 def_vdpau='#define CONFIG_VDPAU 0'
4359 _novomodules="vdpau $_novomodules"
4361 echores "$_vdpau"
4364 echocheck "Xinerama"
4365 if test "$_xinerama" = auto ; then
4366 cat > $TMPC <<EOF
4367 #include <X11/Xlib.h>
4368 #include <X11/extensions/Xinerama.h>
4369 int main(void) { (void) XineramaIsActive(0); return 0; }
4371 _xinerama=no
4372 cc_check -lXinerama && _xinerama=yes
4375 if test "$_xinerama" = yes ; then
4376 def_xinerama='#define CONFIG_XINERAMA 1'
4377 libs_mplayer="$libs_mplayer -lXinerama"
4378 else
4379 def_xinerama='#undef CONFIG_XINERAMA'
4381 echores "$_xinerama"
4384 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4385 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4386 # named 'X extensions' or something similar.
4387 # This check may be useful for future mplayer versions (to change resolution)
4388 # If you run into problems, remove '-lXxf86vm'.
4389 echocheck "Xxf86vm"
4390 if test "$_vm" = auto ; then
4391 cat > $TMPC <<EOF
4392 #include <X11/Xlib.h>
4393 #include <X11/extensions/xf86vmode.h>
4394 int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; }
4396 _vm=no
4397 cc_check -lXxf86vm && _vm=yes
4399 if test "$_vm" = yes ; then
4400 def_vm='#define CONFIG_XF86VM 1'
4401 libs_mplayer="$libs_mplayer -lXxf86vm"
4402 else
4403 def_vm='#undef CONFIG_XF86VM'
4405 echores "$_vm"
4407 # Check for the presence of special keycodes, like audio control buttons
4408 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4409 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4410 # have these new keycodes.
4411 echocheck "XF86keysym"
4412 if test "$_xf86keysym" = auto; then
4413 _xf86keysym=no
4414 cat > $TMPC <<EOF
4415 #include <X11/Xlib.h>
4416 #include <X11/XF86keysym.h>
4417 int main(void) { return XF86XK_AudioPause; }
4419 cc_check && _xf86keysym=yes
4421 if test "$_xf86keysym" = yes ; then
4422 def_xf86keysym='#define CONFIG_XF86XK 1'
4423 else
4424 def_xf86keysym='#undef CONFIG_XF86XK'
4426 echores "$_xf86keysym"
4428 echocheck "DGA"
4429 if test "$_dga2" = auto && test "$_x11" = yes ; then
4430 cat > $TMPC << EOF
4431 #include <X11/Xlib.h>
4432 #include <X11/extensions/xf86dga.h>
4433 int main(void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4435 _dga2=no
4436 cc_check -lXxf86dga && _dga2=yes
4438 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4439 cat > $TMPC << EOF
4440 #include <X11/Xlib.h>
4441 #include <X11/extensions/xf86dga.h>
4442 int main(void) { (void) XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4444 _dga1=no
4445 cc_check -lXxf86dga -lXxf86vm && _dga1=yes
4448 _dga=no
4449 def_dga='#undef CONFIG_DGA'
4450 def_dga1='#undef CONFIG_DGA1'
4451 def_dga2='#undef CONFIG_DGA2'
4452 if test "$_dga1" = yes ; then
4453 _dga=yes
4454 def_dga1='#define CONFIG_DGA1 1'
4455 _res_comment="using DGA 1.0"
4456 elif test "$_dga2" = yes ; then
4457 _dga=yes
4458 def_dga2='#define CONFIG_DGA2 1'
4459 _res_comment="using DGA 2.0"
4461 if test "$_dga" = yes ; then
4462 def_dga='#define CONFIG_DGA 1'
4463 libs_mplayer="$libs_mplayer -lXxf86dga"
4464 _vomodules="dga $_vomodules"
4465 else
4466 _novomodules="dga $_novomodules"
4468 echores "$_dga"
4471 echocheck "3dfx"
4472 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4473 def_3dfx='#define CONFIG_3DFX 1'
4474 _vomodules="3dfx $_vomodules"
4475 else
4476 def_3dfx='#undef CONFIG_3DFX'
4477 _novomodules="3dfx $_novomodules"
4479 echores "$_3dfx"
4482 echocheck "VIDIX"
4483 def_vidix='#undef CONFIG_VIDIX'
4484 def_vidix_drv_cyberblade='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4485 _vidix_drv_cyberblade=no
4486 def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4487 _vidix_drv_ivtv=no
4488 def_vidix_drv_mach64='#undef CONFIG_VIDIX_DRV_MACH64'
4489 _vidix_drv_mach64=no
4490 def_vidix_drv_mga='#undef CONFIG_VIDIX_DRV_MGA'
4491 _vidix_drv_mga=no
4492 def_vidix_drv_mga_crtc2='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4493 _vidix_drv_mga_crtc2=no
4494 def_vidix_drv_nvidia='#undef CONFIG_VIDIX_DRV_NVIDIA'
4495 _vidix_drv_nvidia=no
4496 def_vidix_drv_pm2='#undef CONFIG_VIDIX_DRV_PM2'
4497 _vidix_drv_pm2=no
4498 def_vidix_drv_pm3='#undef CONFIG_VIDIX_DRV_PM3'
4499 _vidix_drv_pm3=no
4500 def_vidix_drv_radeon='#undef CONFIG_VIDIX_DRV_RADEON'
4501 _vidix_drv_radeon=no
4502 def_vidix_drv_rage128='#undef CONFIG_VIDIX_DRV_RAGE128'
4503 _vidix_drv_rage128=no
4504 def_vidix_drv_s3='#undef CONFIG_VIDIX_DRV_S3'
4505 _vidix_drv_s3=no
4506 def_vidix_drv_sh_veu='#undef CONFIG_VIDIX_DRV_SH_VEU'
4507 _vidix_drv_sh_veu=no
4508 def_vidix_drv_sis='#undef CONFIG_VIDIX_DRV_SIS'
4509 _vidix_drv_sis=no
4510 def_vidix_drv_unichrome='#undef CONFIG_VIDIX_DRV_UNICHROME'
4511 _vidix_drv_unichrome=no
4512 if test "$_vidix" = auto ; then
4513 _vidix=no
4514 x86 && (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32) \
4515 && _vidix=yes
4516 x86_64 && win32 && _vidix=no
4517 (ppc || alpha) && linux && _vidix=yes
4519 echores "$_vidix"
4521 if test "$_vidix" = yes ; then
4522 def_vidix='#define CONFIG_VIDIX 1'
4523 _vomodules="cvidix $_vomodules"
4524 # FIXME: ivtv driver temporarily disabled until we have a proper test
4525 #test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4526 test "$_vidix_drivers" || _vidix_drivers="cyberblade mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4528 # some vidix drivers are architecture and os specific, discard them elsewhere
4529 x86 || _vidix_drivers=$(echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome// -e s/s3//)
4530 (test $host_arch = "sh" && linux) || _vidix_drivers=$(echo $_vidix_drivers | sed s/sh_veu//)
4532 for driver in $_vidix_drivers ; do
4533 uc_driver=$(echo $driver | tr '[a-z]' '[A-Z]')
4534 eval _vidix_drv_${driver}=yes
4535 eval def_vidix_drv_${driver}=\"\#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4536 done
4538 echocheck "VIDIX PCI device name database"
4539 echores "$_vidix_pcidb"
4540 if test "$_vidix_pcidb" = yes ; then
4541 _vidix_pcidb_val=1
4542 else
4543 _vidix_pcidb_val=0
4546 echocheck "VIDIX dhahelper support"
4547 test "$_dhahelper" = yes && cflags_dhahelper=-DCONFIG_DHAHELPER
4548 echores "$_dhahelper"
4550 echocheck "VIDIX svgalib_helper support"
4551 test "$_svgalib_helper" = yes && cflags_svgalib_helper=-DCONFIG_SVGAHELPER
4552 echores "$_svgalib_helper"
4554 else
4555 _novomodules="cvidix $_novomodules"
4558 if test "$_vidix" = yes && win32; then
4559 winvidix=yes
4560 _vomodules="winvidix $_vomodules"
4561 libs_mplayer="$libs_mplayer -lgdi32"
4562 else
4563 _novomodules="winvidix $_novomodules"
4565 if test "$_vidix" = yes && test "$_x11" = yes; then
4566 xvidix=yes
4567 _vomodules="xvidix $_vomodules"
4568 else
4569 _novomodules="xvidix $_novomodules"
4572 echocheck "GGI"
4573 if test "$_ggi" = auto ; then
4574 cat > $TMPC << EOF
4575 #include <ggi/ggi.h>
4576 int main(void) { ggiInit(); return 0; }
4578 _ggi=no
4579 cc_check -lggi && _ggi=yes
4581 if test "$_ggi" = yes ; then
4582 def_ggi='#define CONFIG_GGI 1'
4583 libs_mplayer="$libs_mplayer -lggi"
4584 _vomodules="ggi $_vomodules"
4585 else
4586 def_ggi='#undef CONFIG_GGI'
4587 _novomodules="ggi $_novomodules"
4589 echores "$_ggi"
4591 echocheck "GGI extension: libggiwmh"
4592 if test "$_ggiwmh" = auto ; then
4593 _ggiwmh=no
4594 cat > $TMPC << EOF
4595 #include <ggi/ggi.h>
4596 #include <ggi/wmh.h>
4597 int main(void) { ggiInit(); ggiWmhInit(); return 0; }
4599 cc_check -lggi -lggiwmh && _ggiwmh=yes
4601 # needed to get right output on obscure combination
4602 # like --disable-ggi --enable-ggiwmh
4603 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4604 def_ggiwmh='#define CONFIG_GGIWMH 1'
4605 libs_mplayer="$libs_mplayer -lggiwmh"
4606 else
4607 _ggiwmh=no
4608 def_ggiwmh='#undef CONFIG_GGIWMH'
4610 echores "$_ggiwmh"
4613 echocheck "AA"
4614 if test "$_aa" = auto ; then
4615 cat > $TMPC << EOF
4616 #include <aalib.h>
4617 extern struct aa_hardware_params aa_defparams;
4618 extern struct aa_renderparams aa_defrenderparams;
4619 int main(void) {
4620 aa_context *c;
4621 aa_renderparams *p;
4622 (void) aa_init(0, 0, 0);
4623 c = aa_autoinit(&aa_defparams);
4624 p = aa_getrenderparams();
4625 aa_autoinitkbd(c,0);
4626 return 0; }
4628 _aa=no
4629 for _ld_tmp in "-laa" ; do
4630 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4631 done
4633 if test "$_aa" = yes ; then
4634 def_aa='#define CONFIG_AA 1'
4635 if cygwin ; then
4636 libs_mplayer="$libs_mplayer $(aalib-config --libs | cut -d " " -f 2,5,6)"
4638 _vomodules="aa $_vomodules"
4639 else
4640 def_aa='#undef CONFIG_AA'
4641 _novomodules="aa $_novomodules"
4643 echores "$_aa"
4646 echocheck "CACA"
4647 if test "$_caca" = auto ; then
4648 _caca=no
4649 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4650 cat > $TMPC << EOF
4651 #include <caca.h>
4652 #ifdef CACA_API_VERSION_1
4653 #include <caca0.h>
4654 #endif
4655 int main(void) { (void) caca_init(); return 0; }
4657 cc_check $(caca-config --libs) && _caca=yes
4660 if test "$_caca" = yes ; then
4661 def_caca='#define CONFIG_CACA 1'
4662 extra_cflags="$extra_cflags $(caca-config --cflags)"
4663 libs_mplayer="$libs_mplayer $(caca-config --libs)"
4664 _vomodules="caca $_vomodules"
4665 else
4666 def_caca='#undef CONFIG_CACA'
4667 _novomodules="caca $_novomodules"
4669 echores "$_caca"
4672 echocheck "SVGAlib"
4673 if test "$_svga" = auto ; then
4674 cat > $TMPC << EOF
4675 #include <vga.h>
4676 int main(void) { return 0; }
4678 _svga=no
4679 cc_check -lvga $_ld_lm && _svga=yes
4681 if test "$_svga" = yes ; then
4682 def_svga='#define CONFIG_SVGALIB 1'
4683 libs_mplayer="$libs_mplayer -lvga"
4684 _vomodules="svga $_vomodules"
4685 else
4686 def_svga='#undef CONFIG_SVGALIB'
4687 _novomodules="svga $_novomodules"
4689 echores "$_svga"
4692 echocheck "FBDev"
4693 if test "$_fbdev" = auto ; then
4694 _fbdev=no
4695 linux && _fbdev=yes
4697 if test "$_fbdev" = yes ; then
4698 def_fbdev='#define CONFIG_FBDEV 1'
4699 _vomodules="fbdev $_vomodules"
4700 else
4701 def_fbdev='#undef CONFIG_FBDEV'
4702 _novomodules="fbdev $_novomodules"
4704 echores "$_fbdev"
4708 echocheck "DVB"
4709 if test "$_dvb" = auto ; then
4710 _dvb=no
4711 cat >$TMPC << EOF
4712 #include <poll.h>
4713 #include <sys/ioctl.h>
4714 #include <stdio.h>
4715 #include <time.h>
4716 #include <unistd.h>
4717 #include <linux/dvb/dmx.h>
4718 #include <linux/dvb/frontend.h>
4719 #include <linux/dvb/video.h>
4720 #include <linux/dvb/audio.h>
4721 int main(void) {return 0;}
4723 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4724 cc_check $_inc_tmp && _dvb=yes && \
4725 extra_cflags="$extra_cflags $_inc_tmp" && break
4726 done
4728 echores "$_dvb"
4729 if test "$_dvb" = yes ; then
4730 _dvbin=yes
4731 _inputmodules="dvb $_inputmodules"
4732 def_dvb='#define CONFIG_DVB 1'
4733 def_dvbin='#define CONFIG_DVBIN 1'
4734 _aomodules="mpegpes(dvb) $_aomodules"
4735 _vomodules="mpegpes(dvb) $_vomodules"
4736 else
4737 _dvbin=no
4738 _noinputmodules="dvb $_noinputmodules"
4739 def_dvb='#undef CONFIG_DVB'
4740 def_dvbin='#undef CONFIG_DVBIN '
4741 _aomodules="mpegpes(file) $_aomodules"
4742 _vomodules="mpegpes(file) $_vomodules"
4746 if darwin; then
4748 echocheck "QuickTime"
4749 if test "$quicktime" = auto ; then
4750 cat > $TMPC <<EOF
4751 #include <QuickTime/QuickTime.h>
4752 int main(void) {
4753 ImageDescription *desc;
4754 EnterMovies();
4755 ExitMovies();
4756 return 0;
4759 quicktime=no
4760 cc_check -framework QuickTime && quicktime=yes
4762 if test "$quicktime" = yes ; then
4763 extra_ldflags="$extra_ldflags -framework QuickTime"
4764 def_quicktime='#define CONFIG_QUICKTIME 1'
4765 else
4766 def_quicktime='#undef CONFIG_QUICKTIME'
4767 _quartz=no
4769 echores $quicktime
4771 echocheck "Quartz"
4772 if test "$_quartz" = auto ; then
4773 cat > $TMPC <<EOF
4774 #include <Carbon/Carbon.h>
4775 int main(void) {
4776 CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false);
4777 return 0;
4780 _quartz=no
4781 cc_check -framework Carbon && _quartz=yes
4783 if test "$_quartz" = yes ; then
4784 libs_mplayer="$libs_mplayer -framework Carbon"
4785 def_quartz='#define CONFIG_QUARTZ 1'
4786 _vomodules="quartz $_vomodules"
4787 else
4788 def_quartz='#undef CONFIG_QUARTZ'
4789 _novomodules="quartz $_novomodules"
4791 echores $_quartz
4793 echocheck "CoreVideo"
4794 if test "$_corevideo" = auto ; then
4795 cat > $TMPC <<EOF
4796 #include <Carbon/Carbon.h>
4797 #include <CoreServices/CoreServices.h>
4798 #include <OpenGL/OpenGL.h>
4799 #include <QuartzCore/CoreVideo.h>
4800 int main(void) { return 0; }
4802 _corevideo=no
4803 cc_check -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL && _corevideo=yes
4805 if test "$_corevideo" = yes ; then
4806 _vomodules="corevideo $_vomodules"
4807 libs_mplayer="$libs_mplayer -framework Carbon -framework Cocoa -framework QuartzCore -framework OpenGL"
4808 def_corevideo='#define CONFIG_COREVIDEO 1'
4809 else
4810 _novomodules="corevideo $_novomodules"
4811 def_corevideo='#undef CONFIG_COREVIDEO'
4813 echores "$_corevideo"
4815 fi #if darwin
4818 # make sure this stays below CoreVideo to avoid issues due to namespace
4819 # conflicts between -lGL and -framework OpenGL
4820 echocheck "OpenGL"
4821 #Note: this test is run even with --enable-gl since we autodetect linker flags
4822 if (test "$_x11" = yes || win32) && test "$_gl" != no ; then
4823 cat > $TMPC << EOF
4824 #ifdef GL_WIN32
4825 #include <windows.h>
4826 #include <GL/gl.h>
4827 #else
4828 #include <GL/gl.h>
4829 #include <X11/Xlib.h>
4830 #include <GL/glx.h>
4831 #endif
4832 int main(void) {
4833 #ifdef GL_WIN32
4834 HDC dc;
4835 wglCreateContext(dc);
4836 #else
4837 glXCreateContext(NULL, NULL, NULL, True);
4838 #endif
4839 glFinish();
4840 return 0;
4843 _gl=no
4844 for _ld_tmp in -lGL "-lGL -lXdamage" "-lGL $_ld_pthread" ; do
4845 if cc_check $_ld_tmp $_ld_lm ; then
4846 _gl=yes
4847 _gl_x11=yes
4848 libs_mplayer="$libs_mplayer $_ld_tmp $_ld_dl"
4849 break
4851 done
4852 if cc_check -DGL_WIN32 -lopengl32 ; then
4853 _gl=yes
4854 _gl_win32=yes
4855 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
4857 else
4858 _gl=no
4860 if test "$_gl" = yes ; then
4861 def_gl='#define CONFIG_GL 1'
4862 _res_comment="backends:"
4863 if test "$_gl_win32" = yes ; then
4864 def_gl_win32='#define CONFIG_GL_WIN32 1'
4865 _res_comment="$_res_comment win32"
4867 if test "$_gl_x11" = yes ; then
4868 def_gl_x11='#define CONFIG_GL_X11 1'
4869 _res_comment="$_res_comment x11"
4871 _vomodules="opengl $_vomodules"
4872 else
4873 def_gl='#undef CONFIG_GL'
4874 def_gl_win32='#undef CONFIG_GL_WIN32'
4875 def_gl_x11='#undef CONFIG_GL_X11'
4876 _novomodules="opengl $_novomodules"
4878 echores "$_gl"
4881 echocheck "MatrixView"
4882 if test "$_gl" = no ; then
4883 matrixview=no
4885 if test "$matrixview" = yes ; then
4886 _vomodules="matrixview $_vomodules"
4887 def_matrixview='#define CONFIG_MATRIXVIEW 1'
4888 else
4889 _novomodules="matrixview $_novomodules"
4890 def_matrixview='#undef CONFIG_MATRIXVIEW'
4892 echores "$matrixview"
4895 echocheck "PNG support"
4896 if test "$_png" = auto ; then
4897 _png=no
4898 if irix ; then
4899 # Don't check for -lpng on irix since it has its own libpng
4900 # incompatible with the GNU libpng
4901 _res_comment="disabled on irix (not GNU libpng)"
4902 else
4903 cat > $TMPC << EOF
4904 #include <png.h>
4905 #include <string.h>
4906 int main(void) {
4907 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4908 printf("libpng: %s\n", png_libpng_ver);
4909 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4912 cc_check -lpng -lz $_ld_lm && _png=yes
4915 echores "$_png"
4916 if test "$_png" = yes ; then
4917 def_png='#define CONFIG_PNG 1'
4918 extra_ldflags="$extra_ldflags -lpng -lz"
4919 else
4920 def_png='#undef CONFIG_PNG'
4923 echocheck "MNG support"
4924 if test "$_mng" = auto ; then
4925 _mng=no
4926 cat > $TMPC << EOF
4927 #include <libmng.h>
4928 int main(void) {
4929 const char * p_ver = mng_version_text();
4930 return !p_ver || p_ver[0] == 0;
4933 if cc_check -lmng -lz $_ld_lm ; then
4934 _mng=yes
4937 echores "$_mng"
4938 if test "$_mng" = yes ; then
4939 def_mng='#define CONFIG_MNG 1'
4940 extra_ldflags="$extra_ldflags -lmng -lz"
4941 else
4942 def_mng='#undef CONFIG_MNG'
4945 echocheck "JPEG support"
4946 if test "$_jpeg" = auto ; then
4947 _jpeg=no
4948 cat > $TMPC << EOF
4949 #include <stdio.h>
4950 #include <stdlib.h>
4951 #include <setjmp.h>
4952 #include <string.h>
4953 #include <jpeglib.h>
4954 int main(void) { return 0; }
4956 cc_check -ljpeg $_ld_lm && _jpeg=yes
4958 echores "$_jpeg"
4960 if test "$_jpeg" = yes ; then
4961 def_jpeg='#define CONFIG_JPEG 1'
4962 _vomodules="jpeg $_vomodules"
4963 extra_ldflags="$extra_ldflags -ljpeg"
4964 else
4965 def_jpeg='#undef CONFIG_JPEG'
4966 _novomodules="jpeg $_novomodules"
4971 echocheck "PNM support"
4972 if test "$_pnm" = yes; then
4973 def_pnm="#define CONFIG_PNM 1"
4974 _vomodules="pnm $_vomodules"
4975 else
4976 def_pnm="#undef CONFIG_PNM"
4977 _novomodules="pnm $_novomodules"
4979 echores "$_pnm"
4983 echocheck "GIF support"
4984 # This is to appease people who want to force gif support.
4985 # If it is forced to yes, then we still do checks to determine
4986 # which gif library to use.
4987 if test "$_gif" = yes ; then
4988 _force_gif=yes
4989 _gif=auto
4992 if test "$_gif" = auto ; then
4993 _gif=no
4994 cat > $TMPC << EOF
4995 #include <gif_lib.h>
4996 int main(void) { return 0; }
4998 for _ld_gif in "-lungif" "-lgif" ; do
4999 cc_check $_ld_gif && _gif=yes && break
5000 done
5003 # If no library was found, and the user wants support forced,
5004 # then we force it on with libgif, as this is the safest
5005 # assumption IMHO. (libungif & libregif both create symbolic
5006 # links to libgif. We also assume that no x11 support is needed,
5007 # because if you are forcing this, then you _should_ know what
5008 # you are doing. [ Besides, package maintainers should never
5009 # have compiled x11 deps into libungif in the first place. ] )
5010 # </rant>
5011 # --Joey
5012 if test "$_force_gif" = yes && test "$_gif" = no ; then
5013 _gif=yes
5014 _ld_gif="-lgif"
5017 if test "$_gif" = yes ; then
5018 def_gif='#define CONFIG_GIF 1'
5019 _codecmodules="gif $_codecmodules"
5020 _vomodules="gif89a $_vomodules"
5021 _res_comment="old version, some encoding functions disabled"
5022 def_gif_4='#undef CONFIG_GIF_4'
5023 extra_ldflags="$extra_ldflags $_ld_gif"
5025 cat > $TMPC << EOF
5026 #include <signal.h>
5027 #include <gif_lib.h>
5028 void catch() { exit(1); }
5029 int main(void) {
5030 signal(SIGSEGV, catch); // catch segfault
5031 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
5032 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
5033 return 0;
5036 if cc_check "$_ld_gif" ; then
5037 def_gif_4='#define CONFIG_GIF_4 1'
5038 _res_comment=""
5040 else
5041 def_gif='#undef CONFIG_GIF'
5042 def_gif_4='#undef CONFIG_GIF_4'
5043 _novomodules="gif89a $_novomodules"
5044 _nocodecmodules="gif $_nocodecmodules"
5046 echores "$_gif"
5049 case "$_gif" in yes*)
5050 echocheck "broken giflib workaround"
5051 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
5053 cat > $TMPC << EOF
5054 #include <gif_lib.h>
5055 int main(void) {
5056 GifFileType gif;
5057 printf("UserData is at address %p\n", gif.UserData);
5058 return 0;
5061 if cc_check "$_ld_gif" ; then
5062 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
5063 echores "disabled"
5064 else
5065 echores "enabled"
5068 esac
5071 echocheck "VESA support"
5072 if test "$_vesa" = auto ; then
5073 cat > $TMPC << EOF
5074 #include <vbe.h>
5075 int main(void) { vbeVersion(); return 0; }
5077 _vesa=no
5078 cc_check -lvbe -llrmi && _vesa=yes
5080 if test "$_vesa" = yes ; then
5081 def_vesa='#define CONFIG_VESA 1'
5082 libs_mplayer="$libs_mplayer -lvbe -llrmi"
5083 _vomodules="vesa $_vomodules"
5084 else
5085 def_vesa='#undef CONFIG_VESA'
5086 _novomodules="vesa $_novomodules"
5088 echores "$_vesa"
5090 #################
5091 # VIDEO + AUDIO #
5092 #################
5095 echocheck "SDL"
5096 _inc_tmp=""
5097 _ld_tmp=""
5098 def_sdl_sdl_h="#undef CONFIG_SDL_SDL_H"
5099 if test -z "$_sdlconfig" ; then
5100 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
5101 _sdlconfig="sdl-config"
5102 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
5103 _sdlconfig="sdl11-config"
5104 else
5105 _sdlconfig=false
5108 if test "$_sdl" = auto || test "$_sdl" = yes ; then
5109 cat > $TMPC << EOF
5110 #ifdef CONFIG_SDL_SDL_H
5111 #include <SDL/SDL.h>
5112 #else
5113 #include <SDL.h>
5114 #endif
5115 #ifndef __APPLE__
5116 // we allow SDL hacking our main() only on OSX
5117 #undef main
5118 #endif
5119 int main(int argc, char *argv[]) {
5120 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
5121 return 0;
5124 _sdl=no
5125 for _ld_tmp in "-lSDL" "-lSDL -lpthread" "-lSDL -lwinmm -lgdi32" "-lSDL -lwinmm -lgdi32 -ldxguid" ; do
5126 if cc_check -DCONFIG_SDL_SDL_H $_inc_tmp $_ld_tmp ; then
5127 _sdl=yes
5128 def_sdl_sdl_h="#define CONFIG_SDL_SDL_H 1"
5129 break
5131 done
5132 if test "$_sdl" = no && "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
5133 _res_comment="using $_sdlconfig"
5134 if cygwin ; then
5135 _inc_tmp="$($_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/)"
5136 _ld_tmp="$($_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/)"
5137 elif mingw32 ; then
5138 _inc_tmp=$($_sdlconfig --cflags | sed s/-Dmain=SDL_main//)
5139 _ld_tmp=$($_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//)
5140 else
5141 _inc_tmp="$($_sdlconfig --cflags)"
5142 _ld_tmp="$($_sdlconfig --libs)"
5144 if cc_check $_inc_tmp $_ld_tmp >>"$TMPLOG" 2>&1 ; then
5145 _sdlversion=$($_sdlconfig --version | sed 's/[^0-9]//g')
5146 if test "$_sdlversion" -gt 116 ; then
5147 if test "$_sdlversion" -lt 121 ; then
5148 def_sdlbuggy='#define BUGGY_SDL'
5149 else
5150 def_sdlbuggy='#undef BUGGY_SDL'
5152 _sdl=yes
5157 if test "$_sdl" = yes ; then
5158 def_sdl='#define CONFIG_SDL 1'
5159 extra_cflags="$extra_cflags $_inc_tmp"
5160 libs_mplayer="$libs_mplayer $_ld_tmp"
5161 _vomodules="sdl $_vomodules"
5162 _aomodules="sdl $_aomodules"
5163 else
5164 def_sdl='#undef CONFIG_SDL'
5165 _novomodules="sdl $_novomodules"
5166 _noaomodules="sdl $_noaomodules"
5168 echores "$_sdl"
5171 if os2 ; then
5172 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
5173 if test "$_kva" = auto; then
5174 cat > $TMPC << EOF
5175 #include <os2.h>
5176 #include <kva.h>
5177 int main( void ) { return 0; }
5179 _kva=no;
5180 cc_check -lkva && _kva=yes
5182 if test "$_kva" = yes ; then
5183 def_kva='#define CONFIG_KVA 1'
5184 libs_mplayer="$libs_mplayer -lkva"
5185 _vomodules="kva $_vomodules"
5186 else
5187 def_kva='#undef CONFIG_KVA'
5188 _novomodules="kva $_novomodules"
5190 echores "$_kva"
5191 fi #if os2
5194 if win32; then
5196 echocheck "Windows waveout"
5197 if test "$_win32waveout" = auto ; then
5198 cat > $TMPC << EOF
5199 #include <windows.h>
5200 #include <mmsystem.h>
5201 int main(void) { return 0; }
5203 _win32waveout=no
5204 cc_check -lwinmm && _win32waveout=yes
5206 if test "$_win32waveout" = yes ; then
5207 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
5208 libs_mplayer="$libs_mplayer -lwinmm"
5209 _aomodules="win32 $_aomodules"
5210 else
5211 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
5212 _noaomodules="win32 $_noaomodules"
5214 echores "$_win32waveout"
5216 echocheck "Direct3D"
5217 if test "$_direct3d" = auto ; then
5218 cat > $TMPC << EOF
5219 #include <windows.h>
5220 #include <d3d9.h>
5221 int main(void) { return 0; }
5223 _direct3d=no
5224 cc_check && _direct3d=yes
5226 if test "$_direct3d" = yes ; then
5227 def_direct3d='#define CONFIG_DIRECT3D 1'
5228 _vomodules="direct3d $_vomodules"
5229 else
5230 def_direct3d='#undef CONFIG_DIRECT3D'
5231 _novomodules="direct3d $_novomodules"
5233 echores "$_direct3d"
5235 echocheck "Directx"
5236 if test "$_directx" = auto ; then
5237 cat > $TMPC << EOF
5238 #include <windows.h>
5239 #include <ddraw.h>
5240 #include <dsound.h>
5241 int main(void) { return 0; }
5243 _directx=no
5244 cc_check -lgdi32 && _directx=yes
5246 if test "$_directx" = yes ; then
5247 def_directx='#define CONFIG_DIRECTX 1'
5248 libs_mplayer="$libs_mplayer -lgdi32"
5249 _vomodules="directx $_vomodules"
5250 _aomodules="dsound $_aomodules"
5251 else
5252 def_directx='#undef CONFIG_DIRECTX'
5253 _novomodules="directx $_novomodules"
5254 _noaomodules="dsound $_noaomodules"
5256 echores "$_directx"
5258 fi #if win32; then
5261 echocheck "DXR2"
5262 if test "$_dxr2" = auto; then
5263 _dxr2=no
5264 cat > $TMPC << EOF
5265 #include <dxr2ioctl.h>
5266 int main(void) { return 0; }
5268 for _inc_tmp in "" -I/usr/local/include/dxr2 -I/usr/include/dxr2; do
5269 cc_check $_inc_tmp && _dxr2=yes && \
5270 extra_cflags="$extra_cflags $_inc_tmp" && break
5271 done
5273 if test "$_dxr2" = yes; then
5274 def_dxr2='#define CONFIG_DXR2 1'
5275 _aomodules="dxr2 $_aomodules"
5276 _vomodules="dxr2 $_vomodules"
5277 else
5278 def_dxr2='#undef CONFIG_DXR2'
5279 _noaomodules="dxr2 $_noaomodules"
5280 _novomodules="dxr2 $_novomodules"
5282 echores "$_dxr2"
5284 echocheck "DXR3/H+"
5285 if test "$_dxr3" = auto ; then
5286 cat > $TMPC << EOF
5287 #include <linux/em8300.h>
5288 int main(void) { return 0; }
5290 _dxr3=no
5291 cc_check && _dxr3=yes
5293 if test "$_dxr3" = yes ; then
5294 def_dxr3='#define CONFIG_DXR3 1'
5295 _vomodules="dxr3 $_vomodules"
5296 else
5297 def_dxr3='#undef CONFIG_DXR3'
5298 _novomodules="dxr3 $_novomodules"
5300 echores "$_dxr3"
5303 echocheck "IVTV TV-Out (pre linux-2.6.24)"
5304 if test "$_ivtv" = auto ; then
5305 cat > $TMPC << EOF
5306 #include <stdlib.h>
5307 #include <inttypes.h>
5308 #include <linux/types.h>
5309 #include <linux/videodev2.h>
5310 #include <linux/ivtv.h>
5311 #include <sys/ioctl.h>
5312 int main(void) {
5313 struct ivtv_cfg_stop_decode sd;
5314 struct ivtv_cfg_start_decode sd1;
5315 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
5316 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
5317 return 0; }
5319 _ivtv=no
5320 cc_check && _ivtv=yes
5322 if test "$_ivtv" = yes ; then
5323 def_ivtv='#define CONFIG_IVTV 1'
5324 _vomodules="ivtv $_vomodules"
5325 _aomodules="ivtv $_aomodules"
5326 else
5327 def_ivtv='#undef CONFIG_IVTV'
5328 _novomodules="ivtv $_novomodules"
5329 _noaomodules="ivtv $_noaomodules"
5331 echores "$_ivtv"
5334 echocheck "V4L2 MPEG Decoder"
5335 if test "$_v4l2" = auto ; then
5336 cat > $TMPC << EOF
5337 #include <stdlib.h>
5338 #include <inttypes.h>
5339 #include <linux/types.h>
5340 #include <linux/videodev2.h>
5341 #include <linux/version.h>
5342 int main(void) {
5343 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
5344 #error kernel headers too old, need 2.6.22
5345 #endif
5346 struct v4l2_ext_controls ctrls;
5347 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
5348 return 0;
5351 _v4l2=no
5352 cc_check && _v4l2=yes
5354 if test "$_v4l2" = yes ; then
5355 def_v4l2='#define CONFIG_V4L2_DECODER 1'
5356 _vomodules="v4l2 $_vomodules"
5357 _aomodules="v4l2 $_aomodules"
5358 else
5359 def_v4l2='#undef CONFIG_V4L2_DECODER'
5360 _novomodules="v4l2 $_novomodules"
5361 _noaomodules="v4l2 $_noaomodules"
5363 echores "$_v4l2"
5367 #########
5368 # AUDIO #
5369 #########
5372 echocheck "OSS Audio"
5373 if test "$_ossaudio" = auto ; then
5374 cat > $TMPC << EOF
5375 #include <sys/ioctl.h>
5376 #include <$_soundcard_header>
5377 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
5379 _ossaudio=no
5380 cc_check && _ossaudio=yes
5382 if test "$_ossaudio" = yes ; then
5383 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
5384 _aomodules="oss $_aomodules"
5385 if test "$_linux_devfs" = yes; then
5386 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound/dsp"'
5387 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/sound/mixer"'
5388 else
5389 cat > $TMPC << EOF
5390 #include <sys/ioctl.h>
5391 #include <$_soundcard_header>
5392 #ifdef OPEN_SOUND_SYSTEM
5393 int main(void) { return 0; }
5394 #else
5395 #error Not the real thing
5396 #endif
5398 _real_ossaudio=no
5399 cc_check && _real_ossaudio=yes
5400 if test "$_real_ossaudio" = yes; then
5401 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5402 # Check for OSS4 headers (override default headers)
5403 # Does not apply to systems where OSS4 is native (e.g. FreeBSD)
5404 if test -f /etc/oss.conf; then
5405 . /etc/oss.conf
5406 _ossinc="$OSSLIBDIR/include"
5407 if test -f "$_ossinc/sys/soundcard.h"; then
5408 extra_cflags="-I$_ossinc $extra_cflags"
5411 elif netbsd || openbsd ; then
5412 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
5413 extra_ldflags="$extra_ldflags -lossaudio"
5414 else
5415 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5417 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
5419 else
5420 def_ossaudio='#undef CONFIG_OSS_AUDIO'
5421 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
5422 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
5423 _noaomodules="oss $_noaomodules"
5425 echores "$_ossaudio"
5428 echocheck "aRts"
5429 if test "$_arts" = auto ; then
5430 _arts=no
5431 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
5433 cat > $TMPC << EOF
5434 #include <artsc.h>
5435 int main(void) { return 0; }
5437 cc_check $(artsc-config --libs) $(artsc-config --cflags) && _arts=yes
5442 if test "$_arts" = yes ; then
5443 def_arts='#define CONFIG_ARTS 1'
5444 _aomodules="arts $_aomodules"
5445 libs_mplayer="$libs_mplayer $(artsc-config --libs)"
5446 extra_cflags="$extra_cflags $(artsc-config --cflags)"
5447 else
5448 _noaomodules="arts $_noaomodules"
5450 echores "$_arts"
5453 echocheck "EsounD"
5454 if test "$_esd" = auto ; then
5455 _esd=no
5456 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
5458 cat > $TMPC << EOF
5459 #include <esd.h>
5460 int main(void) { int fd = esd_open_sound("test"); return fd; }
5462 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd=yes
5466 echores "$_esd"
5468 if test "$_esd" = yes ; then
5469 def_esd='#define CONFIG_ESD 1'
5470 _aomodules="esd $_aomodules"
5471 libs_mplayer="$libs_mplayer $(esd-config --libs)"
5472 extra_cflags="$extra_cflags $(esd-config --cflags)"
5474 echocheck "esd_get_latency()"
5475 cat > $TMPC << EOF
5476 #include <esd.h>
5477 int main(void) { return esd_get_latency(0); }
5479 cc_check $(esd-config --libs) $(esd-config --cflags) && _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY 1'
5480 echores "$_esd_latency"
5481 else
5482 def_esd='#undef CONFIG_ESD'
5483 def_esd_latency='#undef CONFIG_ESD_LATENCY'
5484 _noaomodules="esd $_noaomodules"
5488 echocheck "NAS"
5489 if test "$_nas" = auto ; then
5490 cat > $TMPC << EOF
5491 #include <audio/audiolib.h>
5492 int main(void) { return 0; }
5494 _nas=no
5495 cc_check $_ld_lm -laudio -lXt && _nas=yes
5497 if test "$_nas" = yes ; then
5498 def_nas='#define CONFIG_NAS 1'
5499 libs_mplayer="$libs_mplayer -laudio -lXt"
5500 _aomodules="nas $_aomodules"
5501 else
5502 _noaomodules="nas $_noaomodules"
5503 def_nas='#undef CONFIG_NAS'
5505 echores "$_nas"
5508 echocheck "pulse"
5509 if test "$_pulse" = auto ; then
5510 _pulse=no
5511 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5513 cat > $TMPC << EOF
5514 #include <pulse/pulseaudio.h>
5515 int main(void) { return 0; }
5517 cc_check $($_pkg_config --libs --cflags libpulse) && _pulse=yes
5521 echores "$_pulse"
5523 if test "$_pulse" = yes ; then
5524 def_pulse='#define CONFIG_PULSE 1'
5525 _aomodules="pulse $_aomodules"
5526 libs_mplayer="$libs_mplayer $($_pkg_config --libs libpulse)"
5527 extra_cflags="$extra_cflags $($_pkg_config --cflags libpulse)"
5528 else
5529 def_pulse='#undef CONFIG_PULSE'
5530 _noaomodules="pulse $_noaomodules"
5534 echocheck "JACK"
5535 if test "$_jack" = auto ; then
5536 _jack=yes
5538 cat > $TMPC << EOF
5539 #include <jack/jack.h>
5540 int main(void) { jack_client_open("test", JackUseExactName, NULL); return 0; }
5542 if cc_check -ljack ; then
5543 libs_mplayer="$libs_mplayer -ljack"
5544 elif cc_check $($_pkg_config --libs --cflags --silence-errors jack) ; then
5545 libs_mplayer="$libs_mplayer $($_pkg_config --libs jack)"
5546 extra_cflags="$extra_cflags "$($_pkg_config --cflags jack)""
5547 else
5548 _jack=no
5552 if test "$_jack" = yes ; then
5553 def_jack='#define CONFIG_JACK 1'
5554 _aomodules="jack $_aomodules"
5555 else
5556 _noaomodules="jack $_noaomodules"
5558 echores "$_jack"
5560 echocheck "OpenAL"
5561 if test "$_openal" = auto ; then
5562 _openal=no
5563 cat > $TMPC << EOF
5564 #ifdef OPENAL_AL_H
5565 #include <OpenAL/al.h>
5566 #else
5567 #include <AL/al.h>
5568 #endif
5569 int main(void) {
5570 alSourceQueueBuffers(0, 0, 0);
5571 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5572 return 0;
5575 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5576 cc_check $I && _openal=yes && break
5577 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5578 done
5579 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
5581 if test "$_openal" = yes ; then
5582 def_openal='#define CONFIG_OPENAL 1'
5583 _aomodules="openal $_aomodules"
5584 else
5585 _noaomodules="openal $_noaomodules"
5587 echores "$_openal"
5589 echocheck "ALSA audio"
5590 if test "$_alloca" != yes ; then
5591 _alsa=no
5592 _res_comment="alloca missing"
5594 if test "$_alsa" != no ; then
5595 _alsa=no
5596 cat > $TMPC << EOF
5597 #include <sys/time.h>
5598 #include <sys/asoundlib.h>
5599 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5600 #error "alsa version != 0.5.x"
5601 #endif
5602 int main(void) { return 0; }
5604 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5606 cat > $TMPC << EOF
5607 #include <sys/time.h>
5608 #include <sys/asoundlib.h>
5609 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5610 #error "alsa version != 0.9.x"
5611 #endif
5612 int main(void) { return 0; }
5614 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5615 cat > $TMPC << EOF
5616 #include <sys/time.h>
5617 #include <alsa/asoundlib.h>
5618 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5619 #error "alsa version != 0.9.x"
5620 #endif
5621 int main(void) { return 0; }
5623 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5625 cat > $TMPC << EOF
5626 #include <sys/time.h>
5627 #include <sys/asoundlib.h>
5628 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5629 #error "alsa version != 1.0.x"
5630 #endif
5631 int main(void) { return 0; }
5633 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5634 cat > $TMPC << EOF
5635 #include <sys/time.h>
5636 #include <alsa/asoundlib.h>
5637 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5638 #error "alsa version != 1.0.x"
5639 #endif
5640 int main(void) { return 0; }
5642 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5644 def_alsa='#undef CONFIG_ALSA'
5645 def_alsa5='#undef CONFIG_ALSA5'
5646 def_alsa9='#undef CONFIG_ALSA9'
5647 def_alsa1x='#undef CONFIG_ALSA1X'
5648 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5649 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5650 if test "$_alsaver" ; then
5651 _alsa=yes
5652 if test "$_alsaver" = '0.5.x' ; then
5653 _alsa5=yes
5654 _aomodules="alsa5 $_aomodules"
5655 def_alsa5='#define CONFIG_ALSA5 1'
5656 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5657 _res_comment="using alsa 0.5.x and sys/asoundlib.h"
5658 elif test "$_alsaver" = '0.9.x-sys' ; then
5659 _alsa9=yes
5660 _aomodules="alsa $_aomodules"
5661 def_alsa='#define CONFIG_ALSA 1'
5662 def_alsa9='#define CONFIG_ALSA9 1'
5663 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5664 _res_comment="using alsa 0.9.x and sys/asoundlib.h"
5665 elif test "$_alsaver" = '0.9.x-alsa' ; then
5666 _alsa9=yes
5667 _aomodules="alsa $_aomodules"
5668 def_alsa='#define CONFIG_ALSA 1'
5669 def_alsa9='#define CONFIG_ALSA9 1'
5670 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5671 _res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5672 elif test "$_alsaver" = '1.0.x-sys' ; then
5673 _alsa1x=yes
5674 _aomodules="alsa $_aomodules"
5675 def_alsa='#define CONFIG_ALSA 1'
5676 def_alsa1x="#define CONFIG_ALSA1X 1"
5677 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5678 _res_comment="using alsa 1.0.x and sys/asoundlib.h"
5679 elif test "$_alsaver" = '1.0.x-alsa' ; then
5680 _alsa1x=yes
5681 _aomodules="alsa $_aomodules"
5682 def_alsa='#define CONFIG_ALSA 1'
5683 def_alsa1x="#define CONFIG_ALSA1X 1"
5684 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5685 _res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5686 else
5687 _alsa=no
5688 _res_comment="unknown version"
5690 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5691 else
5692 _noaomodules="alsa $_noaomodules"
5694 echores "$_alsa"
5697 echocheck "Sun audio"
5698 if test "$_sunaudio" = auto ; then
5699 cat > $TMPC << EOF
5700 #include <sys/types.h>
5701 #include <sys/audioio.h>
5702 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5704 _sunaudio=no
5705 cc_check && _sunaudio=yes
5707 if test "$_sunaudio" = yes ; then
5708 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5709 _aomodules="sun $_aomodules"
5710 else
5711 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5712 _noaomodules="sun $_noaomodules"
5714 echores "$_sunaudio"
5717 def_mlib='#define CONFIG_MLIB 0'
5718 if sunos; then
5719 echocheck "Sun mediaLib"
5720 if test "$_mlib" = auto ; then
5721 _mlib=no
5722 cat > $TMPC << EOF
5723 #include <mlib.h>
5724 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; }
5726 cc_check -lmlib && _mlib=yes && def_mlib='#define CONFIG_MLIB 1'
5728 echores "$_mlib"
5729 fi #if sunos
5732 if darwin; then
5733 echocheck "CoreAudio"
5734 if test "$_coreaudio" = auto ; then
5735 cat > $TMPC <<EOF
5736 #include <CoreAudio/CoreAudio.h>
5737 #include <AudioToolbox/AudioToolbox.h>
5738 #include <AudioUnit/AudioUnit.h>
5739 int main(void) { return 0; }
5741 _coreaudio=no
5742 cc_check -framework CoreAudio -framework AudioUnit -framework AudioToolbox && _coreaudio=yes
5744 if test "$_coreaudio" = yes ; then
5745 libs_mplayer="$libs_mplayer -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
5746 def_coreaudio='#define CONFIG_COREAUDIO 1'
5747 _aomodules="coreaudio $_aomodules"
5748 else
5749 def_coreaudio='#undef CONFIG_COREAUDIO'
5750 _noaomodules="coreaudio $_noaomodules"
5752 echores $_coreaudio
5753 fi #if darwin
5756 if irix; then
5757 echocheck "SGI audio"
5758 if test "$_sgiaudio" = auto ; then
5759 # check for SGI audio
5760 cat > $TMPC << EOF
5761 #include <dmedia/audio.h>
5762 int main(void) { return 0; }
5764 _sgiaudio=no
5765 cc_check && _sgiaudio=yes
5767 if test "$_sgiaudio" = "yes" ; then
5768 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5769 libs_mplayer="$libs_mplayer -laudio"
5770 _aomodules="sgi $_aomodules"
5771 else
5772 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5773 _noaomodules="sgi $_noaomodules"
5775 echores "$_sgiaudio"
5776 fi #if irix
5779 if os2 ; then
5780 echocheck "KAI (UNIAUD/DART)"
5781 if test "$_kai" = auto; then
5782 cat > $TMPC << EOF
5783 #include <os2.h>
5784 #include <kai.h>
5785 int main(void) { return 0; }
5787 _kai=no;
5788 cc_check -lkai && _kai=yes
5790 if test "$_kai" = yes ; then
5791 def_kai='#define CONFIG_KAI 1'
5792 libs_mplayer="$libs_mplayer -lkai"
5793 _aomodules="kai $_aomodules"
5794 else
5795 def_kai='#undef CONFIG_KAI'
5796 _noaomodules="kai $_noaomodules"
5798 echores "$_kai"
5800 echocheck "DART"
5801 if test "$_dart" = auto; then
5802 cat > $TMPC << EOF
5803 #include <os2.h>
5804 #include <dart.h>
5805 int main( void ) { return 0; }
5807 _dart=no;
5808 cc_check -ldart && _dart=yes
5810 if test "$_dart" = yes ; then
5811 def_dart='#define CONFIG_DART 1'
5812 libs_mplayer="$libs_mplayer -ldart"
5813 _aomodules="dart $_aomodules"
5814 else
5815 def_dart='#undef CONFIG_DART'
5816 _noaomodules="dart $_noaomodules"
5818 echores "$_dart"
5819 fi #if os2
5822 # set default CD/DVD devices
5823 if win32 || os2 ; then
5824 default_cdrom_device="D:"
5825 elif darwin ; then
5826 default_cdrom_device="/dev/disk1"
5827 elif dragonfly ; then
5828 default_cdrom_device="/dev/cd0"
5829 elif freebsd ; then
5830 default_cdrom_device="/dev/acd0"
5831 elif openbsd ; then
5832 default_cdrom_device="/dev/rcd0a"
5833 elif sunos ; then
5834 default_cdrom_device="/vol/dev/aliases/cdrom0"
5835 # Modern Solaris versions use HAL instead of the vold daemon, the volfs
5836 # file system and the volfs service.
5837 test -r "/cdrom/cdrom0" && default_cdrom_device="/cdrom/cdrom0"
5838 elif amigaos ; then
5839 default_cdrom_device="a1ide.device:2"
5840 else
5841 default_cdrom_device="/dev/cdrom"
5844 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5845 default_dvd_device=$default_cdrom_device
5846 elif darwin ; then
5847 default_dvd_device="/dev/rdiskN"
5848 else
5849 default_dvd_device="/dev/dvd"
5853 echocheck "VCD support"
5854 if test "$_vcd" = auto; then
5855 _vcd=no
5856 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos || os2; then
5857 _vcd=yes
5858 elif mingw32; then
5859 cat > $TMPC << EOF
5860 #include <ddk/ntddcdrm.h>
5861 int main(void) { return 0; }
5863 cc_check && _vcd=yes
5866 if test "$_vcd" = yes; then
5867 _inputmodules="vcd $_inputmodules"
5868 def_vcd='#define CONFIG_VCD 1'
5869 else
5870 def_vcd='#undef CONFIG_VCD'
5871 _noinputmodules="vcd $_noinputmodules"
5872 _res_comment="not supported on this OS"
5874 echores "$_vcd"
5878 echocheck "dvdread"
5879 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5880 _dvdread_internal=no
5882 if test "$_dvdread_internal" = auto ; then
5883 _dvdread_internal=no
5884 _dvdread=no
5885 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) \
5886 && (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
5887 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) \
5888 || darwin || win32 || os2; then
5889 _dvdread_internal=yes
5890 _dvdread=yes
5891 extra_cflags="-Ilibdvdread4 $extra_cflags"
5893 elif test "$_dvdread" = auto ; then
5894 _dvdread=no
5895 if test "$_dl" = yes; then
5896 cat > $TMPC << EOF
5897 #include <inttypes.h>
5898 #include <dvdread/dvd_reader.h>
5899 #include <dvdread/ifo_types.h>
5900 #include <dvdread/ifo_read.h>
5901 #include <dvdread/nav_read.h>
5902 int main(void) { return 0; }
5904 _dvdreadcflags=$($_dvdreadconfig --cflags)
5905 _dvdreadlibs=$($_dvdreadconfig --libs)
5906 if cc_check -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
5907 $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5908 _dvdread=yes
5909 extra_cflags="$extra_cflags $_dvdreadcflags"
5910 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5911 _res_comment="external"
5916 if test "$_dvdread_internal" = yes; then
5917 def_dvdread='#define CONFIG_DVDREAD 1'
5918 _inputmodules="dvdread(internal) $_inputmodules"
5919 _largefiles=yes
5920 _res_comment="internal"
5921 elif test "$_dvdread" = yes; then
5922 def_dvdread='#define CONFIG_DVDREAD 1'
5923 _largefiles=yes
5924 extra_ldflags="$extra_ldflags -ldvdread"
5925 _inputmodules="dvdread(external) $_inputmodules"
5926 _res_comment="external"
5927 else
5928 def_dvdread='#undef CONFIG_DVDREAD'
5929 _noinputmodules="dvdread $_noinputmodules"
5931 echores "$_dvdread"
5934 echocheck "internal libdvdcss"
5935 if test "$_libdvdcss_internal" = auto ; then
5936 _libdvdcss_internal=no
5937 test "$_dvdread_internal" = yes && _libdvdcss_internal=yes
5938 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5940 if test "$_libdvdcss_internal" = yes ; then
5941 if linux || netbsd || openbsd || bsdos ; then
5942 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5943 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5944 elif freebsd || dragonfly ; then
5945 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5946 elif darwin ; then
5947 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5948 extra_ldflags="$extra_ldflags -framework IOKit -framework Carbon"
5949 elif cygwin ; then
5950 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5951 elif beos ; then
5952 cflags_libdvdcss="-DSYS_BEOS"
5953 elif os2 ; then
5954 cflags_libdvdcss="-DSYS_OS2"
5956 cflags_libdvdcss_dvdread="-Ilibdvdcss"
5957 def_dvdcss="#define HAVE_DVDCSS_DVDCSS_H 1"
5958 _inputmodules="libdvdcss(internal) $_inputmodules"
5959 _largefiles=yes
5960 else
5961 _noinputmodules="libdvdcss(internal) $_noinputmodules"
5963 echores "$_libdvdcss_internal"
5966 echocheck "cdparanoia"
5967 if test "$_cdparanoia" = auto ; then
5968 cat > $TMPC <<EOF
5969 #include <cdda_interface.h>
5970 #include <cdda_paranoia.h>
5971 // This need a better test. How ?
5972 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5974 _cdparanoia=no
5975 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5976 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
5977 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5978 done
5980 if test "$_cdparanoia" = yes ; then
5981 _cdda='yes'
5982 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5983 openbsd && extra_ldflags="$extra_ldflags -lutil"
5985 echores "$_cdparanoia"
5988 echocheck "libcdio"
5989 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5990 cat > $TMPC << EOF
5991 #include <stdio.h>
5992 #include <cdio/version.h>
5993 #include <cdio/cdda.h>
5994 #include <cdio/paranoia.h>
5995 int main(void) {
5996 void *test = cdda_verbose_set;
5997 printf("%s\n", CDIO_VERSION);
5998 return test == (void *)1;
6001 _libcdio=no
6002 for _ld_tmp in "" "-lwinmm" ; do
6003 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
6004 cc_check $_ld_tmp $_ld_lm \
6005 && _libcdio=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6006 done
6007 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
6008 _inc_tmp=$($_pkg_config --cflags libcdio_paranoia)
6009 _ld_tmp=$($_pkg_config --libs libcdio_paranoia)
6010 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes \
6011 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6014 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
6015 _cdda='yes'
6016 def_libcdio='#define CONFIG_LIBCDIO 1'
6017 def_havelibcdio='yes'
6018 else
6019 if test "$_cdparanoia" = yes ; then
6020 _res_comment="using cdparanoia"
6022 def_libcdio='#undef CONFIG_LIBCDIO'
6023 def_havelibcdio='no'
6025 echores "$_libcdio"
6027 if test "$_cdda" = yes ; then
6028 test $_cddb = auto && test $_network = yes && _cddb=yes
6029 def_cdparanoia='#define CONFIG_CDDA 1'
6030 _inputmodules="cdda $_inputmodules"
6031 else
6032 def_cdparanoia='#undef CONFIG_CDDA'
6033 _noinputmodules="cdda $_noinputmodules"
6036 if test "$_cddb" = yes ; then
6037 def_cddb='#define CONFIG_CDDB 1'
6038 _inputmodules="cddb $_inputmodules"
6039 else
6040 _cddb=no
6041 def_cddb='#undef CONFIG_CDDB'
6042 _noinputmodules="cddb $_noinputmodules"
6045 echocheck "bitmap font support"
6046 if test "$_bitmap_font" = yes ; then
6047 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
6048 else
6049 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
6051 echores "$_bitmap_font"
6054 echocheck "freetype >= 2.0.9"
6056 # freetype depends on iconv
6057 if test "$_iconv" = no ; then
6058 _freetype=no
6059 _res_comment="iconv support needed"
6062 if test "$_freetype" = auto ; then
6063 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
6064 cat > $TMPC << EOF
6065 #include <stdio.h>
6066 #include <ft2build.h>
6067 #include FT_FREETYPE_H
6068 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
6069 #error "Need FreeType 2.0.9 or newer"
6070 #endif
6071 int main(void) {
6072 FT_Library library;
6073 FT_Int major=-1,minor=-1,patch=-1;
6074 int err=FT_Init_FreeType(&library);
6075 return 0;
6078 _freetype=no
6079 cc_check $($_freetypeconfig --cflags) $($_freetypeconfig --libs) && _freetype=yes
6080 else
6081 _freetype=no
6084 if test "$_freetype" = yes ; then
6085 def_freetype='#define CONFIG_FREETYPE 1'
6086 extra_cflags="$extra_cflags $($_freetypeconfig --cflags)"
6087 extra_ldflags="$extra_ldflags $($_freetypeconfig --libs)"
6088 else
6089 def_freetype='#undef CONFIG_FREETYPE'
6091 echores "$_freetype"
6093 if test "$_freetype" = no ; then
6094 _fontconfig=no
6095 _res_comment="FreeType support needed"
6097 echocheck "fontconfig"
6098 if test "$_fontconfig" = auto ; then
6099 cat > $TMPC << EOF
6100 #include <stdio.h>
6101 #include <stdlib.h>
6102 #include <fontconfig/fontconfig.h>
6103 #if FC_VERSION < 20402
6104 #error At least version 2.4.2 of fontconfig required
6105 #endif
6106 int main(void) {
6107 int err = FcInit();
6108 if (err == FcFalse) {
6109 printf("Couldn't initialize fontconfig lib\n");
6110 exit(err);
6112 return 0;
6115 _fontconfig=no
6116 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" "-lexpat -lfreetype -lz -liconv" ; do
6117 _ld_tmp="-lfontconfig $_ld_tmp"
6118 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6119 done
6120 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
6121 _inc_tmp=$($_pkg_config --cflags fontconfig)
6122 _ld_tmp=$($_pkg_config --libs fontconfig)
6123 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes \
6124 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6127 if test "$_fontconfig" = yes ; then
6128 def_fontconfig='#define CONFIG_FONTCONFIG 1'
6129 else
6130 def_fontconfig='#undef CONFIG_FONTCONFIG'
6132 echores "$_fontconfig"
6135 echocheck "SSA/ASS support"
6136 if test "$_ass" = auto -o "$_ass" = yes ; then
6137 if $_pkg_config libass; then
6138 _ass=yes
6139 def_ass='#define CONFIG_ASS 1'
6140 extra_ldflags="$extra_ldflags $($_pkg_config --libs libass)"
6141 extra_cflags="$extra_cflags $($_pkg_config --cflags libass)"
6142 else
6143 _ass=no
6144 def_ass='#undef CONFIG_ASS'
6146 else
6147 def_ass='#undef CONFIG_ASS'
6149 echores "$_ass"
6152 echocheck "fribidi with charsets"
6153 _inc_tmp=""
6154 _ld_tmp=""
6155 if test "$_fribidi" = auto ; then
6156 cat > $TMPC << EOF
6157 #include <stdio.h>
6158 #include <stdlib.h>
6159 /* workaround for fribidi 0.10.4 and below */
6160 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
6161 #include <fribidi/fribidi.h>
6162 int main(void) {
6163 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8) {
6164 printf("Fribidi headers are not consistents with the library!\n");
6165 exit(1);
6167 return 0;
6170 _fribidi=no
6171 _inc_tmp=""
6172 _ld_tmp="-lfribidi"
6173 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6174 if $_fribidiconfig --version > /dev/null 2>&1 &&
6175 test "$_fribidi" = no ; then
6176 _inc_tmp="$($_fribidiconfig --cflags)"
6177 _ld_tmp="$($_fribidiconfig --libs)"
6178 cc_check $_inc_tmp $_ld_tmp && _fribidi=yes
6181 if test "$_fribidi" = yes ; then
6182 def_fribidi='#define CONFIG_FRIBIDI 1'
6183 extra_cflags="$extra_cflags $_inc_tmp"
6184 extra_ldflags="$extra_ldflags $_ld_tmp"
6185 else
6186 def_fribidi='#undef CONFIG_FRIBIDI'
6188 echores "$_fribidi"
6191 echocheck "ENCA"
6192 if test "$_enca" = auto ; then
6193 cat > $TMPC << EOF
6194 #include <sys/types.h>
6195 #include <enca.h>
6196 int main(void) {
6197 const char **langs;
6198 size_t langcnt;
6199 langs = enca_get_languages(&langcnt);
6200 return 0;
6203 _enca=no
6204 cc_check -lenca $_ld_lm && _enca=yes
6206 if test "$_enca" = yes ; then
6207 def_enca='#define CONFIG_ENCA 1'
6208 extra_ldflags="$extra_ldflags -lenca"
6209 else
6210 def_enca='#undef CONFIG_ENCA'
6212 echores "$_enca"
6215 echocheck "zlib"
6216 cat > $TMPC << EOF
6217 #include <zlib.h>
6218 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; }
6220 _zlib=no
6221 cc_check -lz && _zlib=yes
6222 if test "$_zlib" = yes ; then
6223 def_zlib='#define CONFIG_ZLIB 1'
6224 extra_ldflags="$extra_ldflags -lz"
6225 else
6226 def_zlib='#define CONFIG_ZLIB 0'
6228 echores "$_zlib"
6231 echocheck "bzlib"
6232 bzlib=no
6233 def_bzlib='#define CONFIG_BZLIB 0'
6234 cat > $TMPC << EOF
6235 #include <bzlib.h>
6236 int main(void) { BZ2_bzlibVersion(); return 0; }
6238 cc_check -lbz2 && bzlib=yes
6239 if test "$bzlib" = yes ; then
6240 def_bzlib='#define CONFIG_BZLIB 1'
6241 extra_ldflags="$extra_ldflags -lbz2"
6243 echores "$bzlib"
6246 echocheck "RTC"
6247 if test "$_rtc" = auto ; then
6248 cat > $TMPC << EOF
6249 #include <sys/ioctl.h>
6250 #ifdef __linux__
6251 #include <linux/rtc.h>
6252 #else
6253 #include <rtc.h>
6254 #define RTC_PIE_ON RTCIO_PIE_ON
6255 #endif
6256 int main(void) { return RTC_PIE_ON; }
6258 _rtc=no
6259 cc_check && _rtc=yes
6260 ppc && _rtc=no
6262 if test "$_rtc" = yes ; then
6263 def_rtc='#define HAVE_RTC 1'
6264 else
6265 def_rtc='#undef HAVE_RTC'
6267 echores "$_rtc"
6270 echocheck "liblzo2 support"
6271 if test "$_liblzo" = auto ; then
6272 _liblzo=no
6273 cat > $TMPC << EOF
6274 #include <lzo/lzo1x.h>
6275 int main(void) { lzo_init();return 0; }
6277 cc_check -llzo2 && _liblzo=yes
6279 if test "$_liblzo" = yes ; then
6280 def_liblzo='#define CONFIG_LIBLZO 1'
6281 extra_ldflags="$extra_ldflags -llzo2"
6282 _codecmodules="liblzo $_codecmodules"
6283 else
6284 def_liblzo='#undef CONFIG_LIBLZO'
6285 _nocodecmodules="liblzo $_nocodecmodules"
6287 echores "$_liblzo"
6290 echocheck "mad support"
6291 if test "$_mad" = auto ; then
6292 _mad=no
6293 cat > $TMPC << EOF
6294 #include <mad.h>
6295 int main(void) { return 0; }
6297 cc_check -lmad && _mad=yes
6299 if test "$_mad" = yes ; then
6300 def_mad='#define CONFIG_LIBMAD 1'
6301 extra_ldflags="$extra_ldflags -lmad"
6302 _codecmodules="libmad $_codecmodules"
6303 else
6304 def_mad='#undef CONFIG_LIBMAD'
6305 _nocodecmodules="libmad $_nocodecmodules"
6307 echores "$_mad"
6309 echocheck "Twolame"
6310 if test "$_twolame" = auto ; then
6311 cat > $TMPC <<EOF
6312 #include <twolame.h>
6313 int main(void) { twolame_init(); return 0; }
6315 _twolame=no
6316 cc_check -ltwolame $_ld_lm && _twolame=yes
6318 if test "$_twolame" = yes ; then
6319 def_twolame='#define CONFIG_TWOLAME 1'
6320 libs_mencoder="$libs_mencoder -ltwolame"
6321 _codecmodules="twolame $_codecmodules"
6322 else
6323 def_twolame='#undef CONFIG_TWOLAME'
6324 _nocodecmodules="twolame $_nocodecmodules"
6326 echores "$_twolame"
6328 echocheck "Toolame"
6329 if test "$_toolame" = auto ; then
6330 _toolame=no
6331 if test "$_twolame" = yes ; then
6332 _res_comment="disabled by twolame"
6333 else
6334 cat > $TMPC <<EOF
6335 #include <toolame.h>
6336 int main(void) { toolame_init(); return 0; }
6338 cc_check -ltoolame $_ld_lm && _toolame=yes
6341 if test "$_toolame" = yes ; then
6342 def_toolame='#define CONFIG_TOOLAME 1'
6343 libs_mencoder="$libs_mencoder -ltoolame"
6344 _codecmodules="toolame $_codecmodules"
6345 else
6346 def_toolame='#undef CONFIG_TOOLAME'
6347 _nocodecmodules="toolame $_nocodecmodules"
6349 if test "$_toolamedir" ; then
6350 _res_comment="using $_toolamedir"
6352 echores "$_toolame"
6354 echocheck "OggVorbis support"
6355 if test "$_tremor_internal" = yes; then
6356 _libvorbis=no
6357 elif test "$_tremor" = auto; then
6358 _tremor=no
6359 cat > $TMPC << EOF
6360 #include <tremor/ivorbiscodec.h>
6361 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6363 cc_check -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
6365 if test "$_libvorbis" = auto; then
6366 _libvorbis=no
6367 cat > $TMPC << EOF
6368 #include <vorbis/codec.h>
6369 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6371 cc_check -lvorbis -logg $_ld_lm && _libvorbis=yes
6373 if test "$_tremor_internal" = yes ; then
6374 _vorbis=yes
6375 def_vorbis='#define CONFIG_OGGVORBIS 1'
6376 def_tremor='#define CONFIG_TREMOR 1'
6377 _codecmodules="tremor(internal) $_codecmodules"
6378 _res_comment="internal Tremor"
6379 if test "$_tremor_low" = yes ; then
6380 cflags_tremor_low="-D_LOW_ACCURACY_"
6381 _res_comment="internal low accuracy Tremor"
6383 elif test "$_tremor" = yes ; then
6384 _vorbis=yes
6385 def_vorbis='#define CONFIG_OGGVORBIS 1'
6386 def_tremor='#define CONFIG_TREMOR 1'
6387 _codecmodules="tremor(external) $_codecmodules"
6388 _res_comment="external Tremor"
6389 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
6390 elif test "$_libvorbis" = yes ; then
6391 _vorbis=yes
6392 def_vorbis='#define CONFIG_OGGVORBIS 1'
6393 _codecmodules="libvorbis $_codecmodules"
6394 _res_comment="libvorbis"
6395 extra_ldflags="$extra_ldflags -lvorbis -logg"
6396 else
6397 _vorbis=no
6398 _nocodecmodules="libvorbis $_nocodecmodules"
6400 echores "$_vorbis"
6402 echocheck "libspeex (version >= 1.1 required)"
6403 if test "$_speex" = auto ; then
6404 _speex=no
6405 cat > $TMPC << EOF
6406 #include <speex/speex.h>
6407 int main(void) { SpeexBits bits; void *dec; speex_decode_int(dec, &bits, dec); return 0; }
6409 cc_check -lspeex $_ld_lm && _speex=yes
6411 if test "$_speex" = yes ; then
6412 def_speex='#define CONFIG_SPEEX 1'
6413 extra_ldflags="$extra_ldflags -lspeex"
6414 _codecmodules="speex $_codecmodules"
6415 else
6416 def_speex='#undef CONFIG_SPEEX'
6417 _nocodecmodules="speex $_nocodecmodules"
6419 echores "$_speex"
6421 echocheck "OggTheora support"
6422 if test "$_theora" = auto ; then
6423 _theora=no
6424 cat > $TMPC << EOF
6425 #include <theora/theora.h>
6426 #include <string.h>
6427 int main(void) {
6428 /* Theora is in flux, make sure that all interface routines and datatypes
6429 * exist and work the way we expect it, so we don't break MPlayer. */
6430 ogg_packet op;
6431 theora_comment tc;
6432 theora_info inf;
6433 theora_state st;
6434 yuv_buffer yuv;
6435 int r;
6436 double t;
6438 theora_info_init(&inf);
6439 theora_comment_init(&tc);
6441 return 0;
6443 /* we don't want to execute this kind of nonsense; just for making sure
6444 * that compilation works... */
6445 memset(&op, 0, sizeof(op));
6446 r = theora_decode_header(&inf, &tc, &op);
6447 r = theora_decode_init(&st, &inf);
6448 t = theora_granule_time(&st, op.granulepos);
6449 r = theora_decode_packetin(&st, &op);
6450 r = theora_decode_YUVout(&st, &yuv);
6451 theora_clear(&st);
6453 return 0;
6456 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6457 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6458 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
6459 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6460 if test _theora = no; then
6461 _ld_theora="-ltheora -logg"
6462 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6464 if test "$_theora" = no && test "$_tremor_internal" = yes; then
6465 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6466 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6467 cc_check tremor/bitwise.c $_inc_theora $_ld_theora &&
6468 extra_ldflags="$extra_ldflags $_ld_theora" &&
6469 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6470 if test _theora = no; then
6471 _ld_theora="-ltheora -logg"
6472 cc_check tremor/bitwise.c $_ld_theora &&
6473 extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6477 if test "$_theora" = yes ; then
6478 def_theora='#define CONFIG_OGGTHEORA 1'
6479 _codecmodules="libtheora $_codecmodules"
6480 # when --enable-theora is forced, we'd better provide a probably sane
6481 # $_ld_theora than nothing
6482 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
6483 else
6484 def_theora='#undef CONFIG_OGGTHEORA'
6485 _nocodecmodules="libtheora $_nocodecmodules"
6487 echores "$_theora"
6489 echocheck "internal mp3lib support"
6490 if test "$_mp3lib" = auto ; then
6491 test "$cc_vendor" = intel && test "$_cc_major" -le 10 -o "$_cc_major" -eq 11 -a "$_cc_minor" -eq 0 && _mp3lib=no || _mp3lib=yes
6493 if test "$_mp3lib" = yes ; then
6494 def_mp3lib='#define CONFIG_MP3LIB 1'
6495 _codecmodules="mp3lib(internal) $_codecmodules"
6496 else
6497 def_mp3lib='#undef CONFIG_MP3LIB'
6498 _nocodecmodules="mp3lib(internal) $_nocodecmodules"
6500 echores "$_mp3lib"
6502 echocheck "liba52 support"
6503 if test "$_liba52_internal" = auto ; then
6504 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
6506 def_liba52='#undef CONFIG_LIBA52'
6507 def_liba52_internal="#undef CONFIG_LIBA52_INTERNAL"
6508 if test "$_liba52_internal" = yes ; then
6509 _liba52=yes
6510 def_liba52_internal="#define CONFIG_LIBA52_INTERNAL 1"
6511 _res_comment="internal"
6512 elif test "$_liba52_internal" = no && test "$_liba52" = auto ; then
6513 _liba52=no
6514 cat > $TMPC << EOF
6515 #include <inttypes.h>
6516 #include <a52dec/a52.h>
6517 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6519 cc_check -la52 && _liba52=yes && _res_comment="external" && extra_ldflags="$extra_ldflags -la52"
6521 if test "$_liba52" = yes ; then
6522 def_liba52='#define CONFIG_LIBA52 1'
6523 _codecmodules="liba52($_res_comment) $_codecmodules"
6524 else
6525 _nocodecmodules="liba52 $_nocodecmodules"
6527 echores "$_liba52"
6529 echocheck "internal libmpeg2 support"
6530 if test "$_libmpeg2" = auto ; then
6531 _libmpeg2=yes
6532 if alpha && test cc_vendor=gnu; then
6533 case $cc_version in
6534 2*|3.0*|3.1*) # cannot compile MVI instructions
6535 _libmpeg2=no
6536 _res_comment="broken gcc"
6538 esac
6541 if test "$_libmpeg2" = yes ; then
6542 def_libmpeg2='#define CONFIG_LIBMPEG2 1'
6543 _codecmodules="libmpeg2(internal) $_codecmodules"
6544 else
6545 def_libmpeg2='#undef CONFIG_LIBMPEG2'
6546 _nocodecmodules="libmpeg2(internal) $_nocodecmodules"
6548 echores "$_libmpeg2"
6550 echocheck "libdca support"
6551 if test "$_libdca" = auto ; then
6552 _libdca=no
6553 cat > $TMPC << EOF
6554 #include <inttypes.h>
6555 #include <dts.h>
6556 int main(void) { dts_init(0); return 0; }
6558 for _ld_dca in -ldca -ldts ; do
6559 cc_check $_ld_dca $_ld_lm && extra_ldflags="$extra_ldflags $_ld_dca" \
6560 && _libdca=yes && break
6561 done
6563 if test "$_libdca" = yes ; then
6564 def_libdca='#define CONFIG_LIBDCA 1'
6565 _codecmodules="libdca $_codecmodules"
6566 else
6567 def_libdca='#undef CONFIG_LIBDCA'
6568 _nocodecmodules="libdca $_nocodecmodules"
6570 echores "$_libdca"
6572 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
6573 if test "$_musepack" = auto ; then
6574 _musepack=no
6575 cat > $TMPC << EOF
6576 #include <stddef.h>
6577 #include <mpcdec/mpcdec.h>
6578 int main(void) {
6579 mpc_streaminfo info;
6580 mpc_decoder decoder;
6581 mpc_decoder_set_streaminfo(&decoder, &info);
6582 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6583 return 0;
6586 cc_check -lmpcdec $_ld_lm && _musepack=yes
6588 if test "$_musepack" = yes ; then
6589 def_musepack='#define CONFIG_MUSEPACK 1'
6590 extra_ldflags="$extra_ldflags -lmpcdec"
6591 _codecmodules="musepack $_codecmodules"
6592 else
6593 def_musepack='#undef CONFIG_MUSEPACK'
6594 _nocodecmodules="musepack $_nocodecmodules"
6596 echores "$_musepack"
6599 echocheck "FAAC support"
6600 if test "$_faac" = auto ; then
6601 cat > $TMPC <<EOF
6602 #include <inttypes.h>
6603 #include <faac.h>
6604 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6606 _faac=no
6607 for _ld_faac in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6608 cc_check -O2 $_ld_faac $_ld_lm && libs_mencoder="$libs_mencoder $_ld_faac" && _faac=yes && break
6609 done
6611 if test "$_faac" = yes ; then
6612 def_faac="#define CONFIG_FAAC 1"
6613 _codecmodules="faac $_codecmodules"
6614 else
6615 def_faac="#undef CONFIG_FAAC"
6616 _nocodecmodules="faac $_nocodecmodules"
6618 echores "$_faac"
6621 echocheck "FAAD2 support"
6622 if test "$_faad_internal" = auto ; then
6623 if x86_32 && test cc_vendor=gnu; then
6624 case $cc_version in
6625 3.1*|3.2) # ICE/insn with these versions
6626 _faad_internal=no
6627 _res_comment="broken gcc"
6630 _faad=yes
6631 _faad_internal=yes
6633 esac
6634 else
6635 _faad=yes
6636 _faad_internal=yes
6639 if test "$_faad" = auto ; then
6640 cat > $TMPC << EOF
6641 #include <faad.h>
6642 #ifndef FAAD_MIN_STREAMSIZE
6643 #error Too old version
6644 #endif
6645 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6646 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6648 cc_check -lfaad $_ld_lm && _faad=yes
6651 def_faad='#undef CONFIG_FAAD'
6652 def_faad_internal="#undef CONFIG_FAAD_INTERNAL"
6653 if test "$_faad_internal" = yes ; then
6654 def_faad_internal="#define CONFIG_FAAD_INTERNAL 1"
6655 _res_comment="internal floating-point"
6656 if test "$_faad_fixed" = yes ; then
6657 # The FIXED_POINT implementation of FAAD2 improves performance
6658 # on some platforms, especially for SBR files.
6659 cflags_faad_fixed="-DFIXED_POINT"
6660 _res_comment="internal fixed-point"
6662 elif test "$_faad" = yes ; then
6663 extra_ldflags="$extra_ldflags -lfaad"
6666 if test "$_faad" = yes ; then
6667 def_faad='#define CONFIG_FAAD 1'
6668 if test "$_faad_internal" = yes ; then
6669 _codecmodules="faad2(internal) $_codecmodules"
6670 else
6671 _codecmodules="faad2 $_codecmodules"
6673 else
6674 _faad=no
6675 _nocodecmodules="faad2 $_nocodecmodules"
6677 echores "$_faad"
6680 echocheck "LADSPA plugin support"
6681 if test "$_ladspa" = auto ; then
6682 cat > $TMPC <<EOF
6683 #include <stdio.h>
6684 #include <ladspa.h>
6685 int main(void) {
6686 const LADSPA_Descriptor *ld = NULL;
6687 return 0;
6690 _ladspa=no
6691 cc_check && _ladspa=yes
6693 if test "$_ladspa" = yes; then
6694 def_ladspa="#define CONFIG_LADSPA 1"
6695 else
6696 def_ladspa="#undef CONFIG_LADSPA"
6698 echores "$_ladspa"
6701 echocheck "libbs2b audio filter support"
6702 if test "$_libbs2b" = auto ; then
6703 cat > $TMPC <<EOF
6704 #include <bs2b.h>
6705 #if BS2B_VERSION_MAJOR < 3
6706 #error Please use libbs2b >= 3.0.0, older versions are not supported.
6707 #endif
6708 int main(void) {
6709 t_bs2bdp filter;
6710 filter=bs2b_open();
6711 bs2b_close(filter);
6712 return 0;
6715 _libbs2b=no
6716 if $_pkg_config --exists libbs2b ; then
6717 _inc_tmp=$($_pkg_config --cflags libbs2b)
6718 _ld_tmp=$($_pkg_config --libs libbs2b)
6719 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
6720 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
6721 else
6722 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
6723 -I/usr/local/include/bs2b ; do
6724 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
6725 extra_ldflags="$extra_ldflags -lbs2b"
6726 extra_cflags="$extra_cflags $_inc_tmp"
6727 _libbs2b=yes
6728 break
6730 done
6733 def_libbs2b="#undef CONFIG_LIBBS2B"
6734 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B 1"
6735 echores "$_libbs2b"
6738 if test -z "$_codecsdir" ; then
6739 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
6740 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
6741 if test -d "$dir" ; then
6742 _codecsdir="$dir"
6743 break;
6745 done
6747 # Fall back on default directory.
6748 if test -z "$_codecsdir" ; then
6749 _codecsdir="$_libdir/codecs"
6750 mingw32 && _codecsdir="codecs"
6751 os2 && _codecsdir="codecs"
6755 echocheck "Win32 codecs"
6756 if test "$_win32dll" = auto ; then
6757 _win32dll=no
6758 if x86_32 && ! qnx; then
6759 _win32dll=yes
6762 if test "$_win32dll" = yes ; then
6763 def_win32dll='#define CONFIG_WIN32DLL 1'
6764 test -z "$_win32codecsdir" && _win32codecsdir=$_codecsdir
6765 _res_comment="using $_win32codecsdir"
6766 if ! win32 ; then
6767 def_win32_loader='#define WIN32_LOADER 1'
6768 _win32_emulation=yes
6769 else
6770 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
6771 _res_comment="using native windows"
6773 _codecmodules="win32 $_codecmodules"
6774 else
6775 def_win32dll='#undef CONFIG_WIN32DLL'
6776 def_win32_loader='#undef WIN32_LOADER'
6777 _nocodecmodules="win32 $_nocodecmodules"
6779 echores "$_win32dll"
6782 echocheck "XAnim codecs"
6783 if test "$_xanim" = auto ; then
6784 _xanim=no
6785 _res_comment="dynamic loader support needed"
6786 if test "$_dl" = yes ; then
6787 _xanim=yes
6790 if test "$_xanim" = yes ; then
6791 test -z "$_xanimcodecsdir" && _xanimcodecsdir=$_codecsdir
6792 def_xanim='#define CONFIG_XANIM 1'
6793 def_xanim_path="#define XACODEC_PATH \"$_xanimcodecsdir\""
6794 _codecmodules="xanim $_codecmodules"
6795 _res_comment="using $_xanimcodecsdir"
6796 else
6797 def_xanim='#undef CONFIG_XANIM'
6798 def_xanim_path='#undef XACODEC_PATH'
6799 _nocodecmodules="xanim $_nocodecmodules"
6801 echores "$_xanim"
6804 echocheck "RealPlayer codecs"
6805 if test "$_real" = auto ; then
6806 _real=no
6807 _res_comment="dynamic loader support needed"
6808 if test "$_dl" = yes || test "$_win32dll" = yes &&
6809 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2) ; then
6810 _real=yes
6813 if test "$_real" = yes ; then
6814 test -z "$_realcodecsdir" && _realcodecsdir="$_codecsdir"
6815 def_real='#define CONFIG_REALCODECS 1'
6816 def_real_path="#define REALCODEC_PATH \"$_realcodecsdir\""
6817 _codecmodules="real $_codecmodules"
6818 _res_comment="using $_realcodecsdir"
6819 else
6820 def_real='#undef CONFIG_REALCODECS'
6821 def_real_path="#undef REALCODEC_PATH"
6822 _nocodecmodules="real $_nocodecmodules"
6824 echores "$_real"
6827 echocheck "QuickTime codecs"
6828 _qtx_emulation=no
6829 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
6830 if test "$_qtx" = auto ; then
6831 test "$_win32dll" = yes || test "$quicktime" = yes && _qtx=yes
6833 if test "$_qtx" = yes ; then
6834 def_qtx='#define CONFIG_QTX_CODECS 1'
6835 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
6836 _codecmodules="qtx $_codecmodules"
6837 darwin || win32 || _qtx_emulation=yes
6838 else
6839 def_qtx='#undef CONFIG_QTX_CODECS'
6840 _nocodecmodules="qtx $_nocodecmodules"
6842 echores "$_qtx"
6844 echocheck "Nemesi Streaming Media libraries"
6845 if test "$_nemesi" = auto && test "$_network" = yes ; then
6846 _nemesi=no
6847 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
6848 extra_cflags="$extra_cflags $($_pkg_config --cflags libnemesi)"
6849 extra_ldflags="$extra_ldflags $($_pkg_config --libs libnemesi)"
6850 _nemesi=yes
6853 if test "$_nemesi" = yes; then
6854 _native_rtsp=no
6855 def_nemesi='#define CONFIG_LIBNEMESI 1'
6856 _inputmodules="nemesi $_inputmodules"
6857 else
6858 _native_rtsp="$_network"
6859 _nemesi=no
6860 def_nemesi='#undef CONFIG_LIBNEMESI'
6861 _noinputmodules="nemesi $_noinputmodules"
6863 echores "$_nemesi"
6865 echocheck "LIVE555 Streaming Media libraries"
6866 if test "$_live" = auto && test "$_network" = yes ; then
6867 cat > $TMPCPP << EOF
6868 #include <liveMedia.hh>
6869 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6870 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6871 #endif
6872 int main(void) { return 0; }
6875 _live=no
6876 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
6877 cxx_check $I/liveMedia/include $I/UsageEnvironment/include \
6878 $I/groupsock/include && _livelibdir=$(echo $I| sed s/-I//) && \
6879 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
6880 $_livelibdir/groupsock/libgroupsock.a \
6881 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6882 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6883 $extra_ldflags -lstdc++" \
6884 extra_cxxflags="-I$_livelibdir/liveMedia/include \
6885 -I$_livelibdir/UsageEnvironment/include \
6886 -I$_livelibdir/BasicUsageEnvironment/include \
6887 -I$_livelibdir/groupsock/include" && \
6888 _live=yes && break
6889 done
6890 if test "$_live" != yes ; then
6891 ld_tmp="-lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6892 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock $ld_tmp; then
6893 _live_dist=yes
6897 if test "$_live" = yes && test "$_network" = yes; then
6898 test $_livelibdir && _res_comment="using $_livelibdir"
6899 def_live='#define CONFIG_LIVE555 1'
6900 _inputmodules="live555 $_inputmodules"
6901 elif test "$_live_dist" = yes && test "$_network" = yes; then
6902 _res_comment="using distribution version"
6903 _live="yes"
6904 def_live='#define CONFIG_LIVE555 1'
6905 extra_ldflags="$extra_ldflags $ld_tmp"
6906 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
6907 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6908 _inputmodules="live555 $_inputmodules"
6909 else
6910 _live=no
6911 def_live='#undef CONFIG_LIVE555'
6912 _noinputmodules="live555 $_noinputmodules"
6914 echores "$_live"
6917 echocheck "FFmpeg libavutil"
6918 if test "$_libavutil" = auto ; then
6919 _libavutil=no
6920 cat > $TMPC << EOF
6921 #include <libavutil/common.h>
6922 int main(void) { av_clip(1, 1, 1); return 0; }
6924 if $_pkg_config --exists libavutil ; then
6925 _inc_libavutil=$($_pkg_config --cflags libavutil)
6926 _ld_tmp=$($_pkg_config --libs libavutil)
6927 cc_check $_inc_libavutil $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libavutil" \
6928 && _libavutil=yes
6929 elif cc_check -lavutil $_ld_lm ; then
6930 extra_ldflags="$extra_ldflags -lavutil"
6931 _libavutil=yes
6934 def_libavutil='#undef CONFIG_LIBAVUTIL'
6935 test "$_libavutil" = yes && def_libavutil='#define CONFIG_LIBAVUTIL 1'
6936 # libavutil is not available, but it is mandatory ...
6937 if test "$_libavutil" = no ; then
6938 die "You need libavutil, MPlayer will not compile without!"
6940 echores "$_libavutil"
6942 echocheck "FFmpeg libavcodec"
6943 if test "$_libavcodec" = auto ; then
6944 _libavcodec=no
6945 cat > $TMPC << EOF
6946 #include <libavcodec/avcodec.h>
6947 int main(void) { avcodec_find_encoder_by_name(""); return 0; }
6949 if $_pkg_config --exists libavcodec ; then
6950 _inc_libavcodec=$($_pkg_config --cflags libavcodec)
6951 _ld_tmp=$($_pkg_config --libs libavcodec)
6952 cc_check $_inc_libavcodec $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavcodec" \
6953 && _libavcodec=yes
6954 elif cc_check -lavcodec $_ld_lm ; then
6955 extra_ldflags="$extra_ldflags -lavcodec"
6956 _libavcodec=yes
6959 def_libavcodec='#undef CONFIG_LIBAVCODEC'
6960 test "$_libavcodec" = yes && def_libavcodec='#define CONFIG_LIBAVCODEC 1'
6961 if test "$_libavcodec" = yes ; then
6962 _codecmodules="libavcodec $_codecmodules"
6963 else
6964 _nocodecmodules="libavcodec $_nocodecmodules"
6966 echores "$_libavcodec"
6968 echocheck "FFmpeg libavformat"
6969 if test "$_libavformat" = auto ; then
6970 _libavformat=no
6971 cat > $TMPC <<EOF
6972 #include <libavformat/avformat.h>
6973 #include <libavcodec/opt.h>
6974 int main(void) { av_alloc_format_context(); return 0; }
6976 if $_pkg_config --exists libavformat ; then
6977 _inc_libavformat=$($_pkg_config --cflags libavformat)
6978 _ld_tmp=$($_pkg_config --libs libavformat)
6979 cc_check $_inc_libavformat $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libavformat" \
6980 && _libavformat=yes
6981 elif cc_check $_ld_lm -lavformat ; then
6982 extra_ldflags="$extra_ldflags -lavformat"
6983 _libavformat=yes
6986 def_libavformat='#undef CONFIG_LIBAVFORMAT'
6987 test "$_libavformat" = yes && def_libavformat='#define CONFIG_LIBAVFORMAT 1'
6988 echores "$_libavformat"
6990 echocheck "FFmpeg libpostproc"
6991 if test "$_libpostproc" = auto ; then
6992 _libpostproc=no
6993 cat > $TMPC << EOF
6994 #include <inttypes.h>
6995 #include <libpostproc/postprocess.h>
6996 int main(void) { pp_get_mode_by_name_and_quality("de", 0); return 0; }
6998 if $_pkg_config --exists libpostproc ; then
6999 _inc_libpostproc=$($_pkg_config --cflags libpostproc)
7000 _ld_tmp=$($_pkg_config --libs libpostproc)
7001 cc_check $_inc_libpostproc $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_libpostproc" \
7002 && _libpostproc=yes
7003 elif cc_check -lpostproc $_ld_lm ; then
7004 extra_ldflags="$extra_ldflags -lpostproc"
7005 _libpostproc=yes
7008 def_libpostproc='#undef CONFIG_LIBPOSTPROC'
7009 test "$_libpostproc" = yes && def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
7010 echores "$_libpostproc"
7012 echocheck "FFmpeg libswscale"
7013 if test "$_libswscale" = auto ; then
7014 _libswscale=no
7015 cat > $TMPC << EOF
7016 #include <libswscale/swscale.h>
7017 int main(void) { sws_scale(0, 0, 0, 0, 0, 0, 0); return 0; }
7019 if $_pkg_config --exists libswscale ; then
7020 _inc_libswscale=$($_pkg_config --cflags libswscale)
7021 _ld_tmp=$($_pkg_config --libs libswscale)
7022 cc_check $_inc_libswscale $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" extra_cflags="$extra_cflags $_inc_libswscale" \
7023 && _libswscale=yes
7024 elif cc_check -lswscale ; then
7025 extra_ldflags="$extra_ldflags -lswscale"
7026 _libswscale=yes
7029 def_libswscale='#undef CONFIG_LIBSWSCALE'
7030 test "$_libswscale" = yes && def_libswscale='#define CONFIG_LIBSWSCALE 1'
7031 echores "$_libswscale"
7033 def_libswscale_internals="#undef CONFIG_LIBSWSCALE_INTERNALS"
7034 if ! test -z "$_ffmpeg_source" ; then
7035 test "$_libswscale" = yes && def_libswscale_internals="#define CONFIG_LIBSWSCALE_INTERNALS 1" && _libswscale_internals=yes
7038 def_libavcodec_internals="#undef CONFIG_LIBAVCODEC_INTERNALS"
7039 if ! test -z "$_ffmpeg_source" ; then
7040 test "$_libavcodec" = yes && def_libavcodec_internals="#define CONFIG_LIBAVCODEC_INTERNALS 1" && _libavcodec_internals=yes
7043 echocheck "libdv-0.9.5+"
7044 if test "$_libdv" = auto ; then
7045 _libdv=no
7046 cat > $TMPC <<EOF
7047 #include <libdv/dv.h>
7048 int main(void) { dv_encoder_t* enc=dv_encoder_new(1,1,1); return 0; }
7050 cc_check -ldv $_ld_pthread $_ld_lm && _libdv=yes
7052 if test "$_libdv" = yes ; then
7053 def_libdv='#define CONFIG_LIBDV095 1'
7054 extra_ldflags="$extra_ldflags -ldv"
7055 _codecmodules="libdv $_codecmodules"
7056 else
7057 def_libdv='#undef CONFIG_LIBDV095'
7058 _nocodecmodules="libdv $_nocodecmodules"
7060 echores "$_libdv"
7063 echocheck "Xvid"
7064 if test "$_xvid" = auto ; then
7065 _xvid=no
7066 cat > $TMPC << EOF
7067 #include <xvid.h>
7068 int main(void) { xvid_global(0, 0, 0, 0); return 0; }
7070 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
7071 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
7072 done
7075 if test "$_xvid" = yes ; then
7076 def_xvid='#define CONFIG_XVID4 1'
7077 _codecmodules="xvid $_codecmodules"
7078 else
7079 def_xvid='#undef CONFIG_XVID4'
7080 _nocodecmodules="xvid $_nocodecmodules"
7082 echores "$_xvid"
7084 echocheck "x264"
7085 if test "$_x264" = auto ; then
7086 cat > $TMPC << EOF
7087 #include <inttypes.h>
7088 #include <x264.h>
7089 #if X264_BUILD < 79
7090 #error We do not support old versions of x264. Get the latest from git.
7091 #endif
7092 int main(void) { x264_encoder_open((void*)0); return 0; }
7094 _x264=no
7095 for _ld_x264 in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
7096 cc_check $_ld_x264 && libs_mencoder="$libs_mencoder $_ld_x264" && _x264=yes && break
7097 done
7100 if test "$_x264" = yes ; then
7101 def_x264='#define CONFIG_X264 1'
7102 _codecmodules="x264 $_codecmodules"
7103 else
7104 def_x264='#undef CONFIG_X264'
7105 _nocodecmodules="x264 $_nocodecmodules"
7107 echores "$_x264"
7109 echocheck "libnut"
7110 if test "$_libnut" = auto ; then
7111 cat > $TMPC << EOF
7112 #include <stdio.h>
7113 #include <stdlib.h>
7114 #include <inttypes.h>
7115 #include <libnut.h>
7116 nut_context_tt * nut;
7117 int main(void) { (void)nut_error(0); return 0; }
7119 _libnut=no
7120 cc_check -lnut && _libnut=yes
7123 if test "$_libnut" = yes ; then
7124 def_libnut='#define CONFIG_LIBNUT 1'
7125 extra_ldflags="$extra_ldflags -lnut"
7126 else
7127 def_libnut='#undef CONFIG_LIBNUT'
7129 echores "$_libnut"
7131 # These VO checks must be done after libavcodec/libswscale one
7132 echocheck "/dev/mga_vid"
7133 if test "$_mga" = auto ; then
7134 _mga=no
7135 test -c /dev/mga_vid && _mga=yes
7137 if test "$_mga" = yes ; then
7138 if test "$_libswscale_internals" = yes ; then
7139 def_mga='#define CONFIG_MGA 1'
7140 _vomodules="mga $_vomodules"
7141 else
7142 _res_comment="libswscale internal headers are required by mga, sorry"
7143 def_mga='#undef CONFIG_MGA'
7144 _novomodules="mga $_novomodules"
7146 else
7147 def_mga='#undef CONFIG_MGA'
7148 _novomodules="mga $_novomodules"
7150 echores "$_mga"
7153 echocheck "xmga"
7154 if test "$_xmga" = auto ; then
7155 _xmga=no
7156 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
7158 if test "$_xmga" = yes ; then
7159 if test "$_libswscale_internals" = yes ; then
7160 def_xmga='#define CONFIG_XMGA 1'
7161 _vomodules="xmga $_vomodules"
7162 else
7163 _res_comment="libswscale internal headers are required by mga, sorry"
7164 def_xmga='#undef CONFIG_XMGA'
7165 _novomodules="xmga $_novomodules"
7167 else
7168 def_xmga='#undef CONFIG_XMGA'
7169 _novomodules="xmga $_novomodules"
7171 echores "$_xmga"
7173 echocheck "zr"
7174 if test "$_zr" = auto ; then
7175 #36067's seem to identify themselves as 36057PQC's, so the line
7176 #below should work for 36067's and 36057's.
7177 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc/pci ; then
7178 _zr=yes
7179 else
7180 _zr=no
7183 if test "$_zr" = yes ; then
7184 if test "$_libavcodec_internals" = yes ; then
7185 def_zr='#define CONFIG_ZR 1'
7186 _vomodules="zr zr2 $_vomodules"
7187 else
7188 _res_comment="libavcodec internal headers are required by zr, sorry"
7189 _novomodules="zr $_novomodules"
7190 def_zr='#undef CONFIG_ZR'
7192 else
7193 def_zr='#undef CONFIG_ZR'
7194 _novomodules="zr zr2 $_novomodules"
7196 echores "$_zr"
7198 # mencoder requires (optional) those libs: libmp3lame
7199 if test "$_mencoder" != no ; then
7201 echocheck "libmp3lame"
7202 def_mp3lame_preset='#undef CONFIG_MP3LAME_PRESET'
7203 def_mp3lame_preset_medium='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
7204 if test "$_mp3lame" = auto ; then
7205 _mp3lame=no
7206 cat > $TMPC <<EOF
7207 #include <lame/lame.h>
7208 int main(void) { lame_version_t lv; (void) lame_init();
7209 get_lame_version_numerical(&lv);
7210 return 0; }
7212 cc_check -lmp3lame $_ld_lm && _mp3lame=yes
7214 if test "$_mp3lame" = yes ; then
7215 def_mp3lame="#define CONFIG_MP3LAME 1"
7216 _ld_mp3lame=-lmp3lame
7217 libs_mencoder="$libs_mencoder $_ld_mp3lame"
7218 cat > $TMPC << EOF
7219 #include <lame/lame.h>
7220 int main(void) { lame_set_preset(NULL, STANDARD_FAST); return 0; }
7222 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset="#define CONFIG_MP3LAME_PRESET 1"
7223 cat > $TMPC << EOF
7224 #include <lame/lame.h>
7225 int main(void) { lame_set_preset(NULL, MEDIUM_FAST); return 0; }
7227 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset_medium="#define CONFIG_MP3LAME_PRESET_MEDIUM 1"
7228 else
7229 def_mp3lame='#undef CONFIG_MP3LAME'
7231 echores "$_mp3lame"
7233 fi # test "$_mencoder" != no
7235 echocheck "mencoder"
7236 if test "$_mencoder" = yes ; then
7237 def_muxers='#define CONFIG_MUXERS 1'
7238 else
7239 def_muxers='#define CONFIG_MUXERS 0'
7241 echores "$_mencoder"
7244 echocheck "UnRAR executable"
7245 if test "$_unrar_exec" = auto ; then
7246 _unrar_exec="yes"
7247 mingw32 && _unrar_exec="no"
7249 if test "$_unrar_exec" = yes ; then
7250 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
7251 else
7252 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
7254 echores "$_unrar_exec"
7256 echocheck "TV interface"
7257 if test "$_tv" = yes ; then
7258 def_tv='#define CONFIG_TV 1'
7259 _inputmodules="tv $_inputmodules"
7260 else
7261 _noinputmodules="tv $_noinputmodules"
7262 def_tv='#undef CONFIG_TV'
7264 echores "$_tv"
7267 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
7268 echocheck "*BSD BT848 bt8xx header"
7269 _ioctl_bt848_h=no
7270 for file in "machine/ioctl_bt848.h" \
7271 "dev/bktr/ioctl_bt848.h" \
7272 "dev/video/bktr/ioctl_bt848.h" \
7273 "dev/ic/bt8xx.h" ; do
7274 cat > $TMPC <<EOF
7275 #include <sys/types.h>
7276 #include <sys/ioctl.h>
7277 #include <$file>
7278 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
7280 if cc_check ; then
7281 _ioctl_bt848_h=yes
7282 _ioctl_bt848_h_name="$file"
7283 break;
7285 done
7286 if test "$_ioctl_bt848_h" = yes ; then
7287 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
7288 _res_comment="using $_ioctl_bt848_h_name"
7289 else
7290 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
7292 echores "$_ioctl_bt848_h"
7294 echocheck "*BSD ioctl_meteor.h"
7295 _ioctl_meteor_h=no
7296 for file in "machine/ioctl_meteor.h" \
7297 "dev/bktr/ioctl_meteor.h" \
7298 "dev/video/bktr/ioctl_meteor.h" ; do
7299 cat > $TMPC <<EOF
7300 #include <sys/types.h>
7301 #include <$file>
7302 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
7304 if cc_check ; then
7305 _ioctl_meteor_h=yes
7306 _ioctl_meteor_h_name="$file"
7307 break;
7309 done
7310 if test "$_ioctl_meteor_h" = yes ; then
7311 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
7312 _res_comment="using $_ioctl_meteor_h_name"
7313 else
7314 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
7316 echores "$_ioctl_meteor_h"
7318 echocheck "*BSD BrookTree 848 TV interface"
7319 if test "$_tv_bsdbt848" = auto ; then
7320 _tv_bsdbt848=no
7321 if test "$_tv" = yes ; then
7322 cat > $TMPC <<EOF
7323 #include <sys/types.h>
7324 $def_ioctl_meteor_h_name
7325 $def_ioctl_bt848_h_name
7326 #ifdef IOCTL_METEOR_H_NAME
7327 #include IOCTL_METEOR_H_NAME
7328 #endif
7329 #ifdef IOCTL_BT848_H_NAME
7330 #include IOCTL_BT848_H_NAME
7331 #endif
7332 int main(void) {
7333 ioctl(0, METEORSINPUT, 0);
7334 ioctl(0, TVTUNER_GETFREQ, 0);
7335 return 0;
7338 cc_check && _tv_bsdbt848=yes
7341 if test "$_tv_bsdbt848" = yes ; then
7342 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
7343 _inputmodules="tv-bsdbt848 $_inputmodules"
7344 else
7345 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
7346 _noinputmodules="tv-bsdbt848 $_noinputmodules"
7348 echores "$_tv_bsdbt848"
7349 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
7352 echocheck "DirectShow TV interface"
7353 if test "$_tv_dshow" = auto ; then
7354 _tv_dshow=no
7355 if test "$_tv" = yes && win32 ; then
7356 cat > $TMPC <<EOF
7357 #include <ole2.h>
7358 int main(void) {
7359 void* p;
7360 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
7361 return 0;
7364 cc_check -lole32 -luuid && _tv_dshow=yes
7367 if test "$_tv_dshow" = yes ; then
7368 _inputmodules="tv-dshow $_inputmodules"
7369 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
7370 extra_ldflags="$extra_ldflags -lole32 -luuid"
7371 else
7372 _noinputmodules="tv-dshow $_noinputmodules"
7373 def_tv_dshow='#undef CONFIG_TV_DSHOW'
7375 echores "$_tv_dshow"
7378 echocheck "Video 4 Linux TV interface"
7379 if test "$_tv_v4l1" = auto ; then
7380 _tv_v4l1=no
7381 if test "$_tv" = yes && linux ; then
7382 cat > $TMPC <<EOF
7383 #include <stdlib.h>
7384 #include <linux/videodev.h>
7385 int main(void) { return 0; }
7387 cc_check && _tv_v4l1=yes
7390 if test "$_tv_v4l1" = yes ; then
7391 _audio_input=yes
7392 _tv_v4l=yes
7393 def_tv_v4l='#define CONFIG_TV_V4L 1'
7394 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
7395 _inputmodules="tv-v4l $_inputmodules"
7396 else
7397 _noinputmodules="tv-v4l1 $_noinputmodules"
7398 def_tv_v4l='#undef CONFIG_TV_V4L'
7400 echores "$_tv_v4l1"
7403 echocheck "Video 4 Linux 2 TV interface"
7404 if test "$_tv_v4l2" = auto ; then
7405 _tv_v4l2=no
7406 if test "$_tv" = yes && linux ; then
7407 cat > $TMPC <<EOF
7408 #include <stdlib.h>
7409 #include <linux/types.h>
7410 #include <linux/videodev2.h>
7411 int main(void) { return 0; }
7413 cc_check && _tv_v4l2=yes
7416 if test "$_tv_v4l2" = yes ; then
7417 _audio_input=yes
7418 _tv_v4l=yes
7419 def_tv_v4l='#define CONFIG_TV_V4L 1'
7420 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
7421 _inputmodules="tv-v4l2 $_inputmodules"
7422 else
7423 _noinputmodules="tv-v4l2 $_noinputmodules"
7424 def_tv_v4l2='#undef CONFIG_TV_V4L2'
7426 echores "$_tv_v4l2"
7429 echocheck "Radio interface"
7430 if test "$_radio" = yes ; then
7431 def_radio='#define CONFIG_RADIO 1'
7432 _inputmodules="radio $_inputmodules"
7433 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
7434 _radio_capture=no
7436 if test "$_radio_capture" = yes ; then
7437 _audio_input=yes
7438 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
7439 else
7440 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7442 else
7443 _noinputmodules="radio $_noinputmodules"
7444 def_radio='#undef CONFIG_RADIO'
7445 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7446 _radio_capture=no
7448 echores "$_radio"
7449 echocheck "Capture for Radio interface"
7450 echores "$_radio_capture"
7452 echocheck "Video 4 Linux 2 Radio interface"
7453 if test "$_radio_v4l2" = auto ; then
7454 _radio_v4l2=no
7455 if test "$_radio" = yes && linux ; then
7456 cat > $TMPC <<EOF
7457 #include <stdlib.h>
7458 #include <linux/types.h>
7459 #include <linux/videodev2.h>
7460 int main(void) { return 0; }
7462 cc_check && _radio_v4l2=yes
7465 if test "$_radio_v4l2" = yes ; then
7466 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
7467 else
7468 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
7470 echores "$_radio_v4l2"
7472 echocheck "Video 4 Linux Radio interface"
7473 if test "$_radio_v4l" = auto ; then
7474 _radio_v4l=no
7475 if test "$_radio" = yes && linux ; then
7476 cat > $TMPC <<EOF
7477 #include <stdlib.h>
7478 #include <linux/videodev.h>
7479 int main(void) { return 0; }
7481 cc_check && _radio_v4l=yes
7484 if test "$_radio_v4l" = yes ; then
7485 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
7486 else
7487 def_radio_v4l='#undef CONFIG_RADIO_V4L'
7489 echores "$_radio_v4l"
7491 if freebsd || netbsd || openbsd || dragonfly || bsdos \
7492 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
7493 echocheck "*BSD BrookTree 848 Radio interface"
7494 _radio_bsdbt848=no
7495 cat > $TMPC <<EOF
7496 #include <sys/types.h>
7497 $def_ioctl_bt848_h_name
7498 #ifdef IOCTL_BT848_H_NAME
7499 #include IOCTL_BT848_H_NAME
7500 #endif
7501 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
7503 cc_check && _radio_bsdbt848=yes
7504 echores "$_radio_bsdbt848"
7505 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
7507 if test "$_radio_bsdbt848" = yes ; then
7508 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
7509 else
7510 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
7513 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no && \
7514 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
7515 die "Radio driver requires BSD BT848, V4L or V4L2!"
7518 echocheck "Video 4 Linux 2 MPEG PVR interface"
7519 if test "$_pvr" = auto ; then
7520 _pvr=no
7521 if test "$_tv_v4l2" = yes && linux ; then
7522 cat > $TMPC <<EOF
7523 #include <stdlib.h>
7524 #include <inttypes.h>
7525 #include <linux/types.h>
7526 #include <linux/videodev2.h>
7527 int main(void) { struct v4l2_ext_controls ext; return ext.controls->value; }
7529 cc_check && _pvr=yes
7532 if test "$_pvr" = yes ; then
7533 def_pvr='#define CONFIG_PVR 1'
7534 _inputmodules="pvr $_inputmodules"
7535 else
7536 _noinputmodules="pvr $_noinputmodules"
7537 def_pvr='#undef CONFIG_PVR'
7539 echores "$_pvr"
7542 echocheck "ftp"
7543 if ! beos && test "$_ftp" = yes ; then
7544 def_ftp='#define CONFIG_FTP 1'
7545 _inputmodules="ftp $_inputmodules"
7546 else
7547 _noinputmodules="ftp $_noinputmodules"
7548 def_ftp='#undef CONFIG_FTP'
7550 echores "$_ftp"
7552 echocheck "vstream client"
7553 if test "$_vstream" = auto ; then
7554 _vstream=no
7555 cat > $TMPC <<EOF
7556 #include <vstream-client.h>
7557 void vstream_error(const char *format, ... ) {}
7558 int main(void) { vstream_start(); return 0; }
7560 cc_check -lvstream-client && _vstream=yes
7562 if test "$_vstream" = yes ; then
7563 def_vstream='#define CONFIG_VSTREAM 1'
7564 _inputmodules="vstream $_inputmodules"
7565 extra_ldflags="$extra_ldflags -lvstream-client"
7566 else
7567 _noinputmodules="vstream $_noinputmodules"
7568 def_vstream='#undef CONFIG_VSTREAM'
7570 echores "$_vstream"
7573 echocheck "OSD menu"
7574 if test "$_menu" = yes ; then
7575 def_menu='#define CONFIG_MENU 1'
7576 test $_dvbin = "yes" && _menu_dvbin=yes
7577 else
7578 def_menu='#undef CONFIG_MENU'
7579 _menu_dvbin=no
7581 echores "$_menu"
7584 echocheck "Subtitles sorting"
7585 if test "$_sortsub" = yes ; then
7586 def_sortsub='#define CONFIG_SORTSUB 1'
7587 else
7588 def_sortsub='#undef CONFIG_SORTSUB'
7590 echores "$_sortsub"
7593 echocheck "XMMS inputplugin support"
7594 if test "$_xmms" = yes ; then
7595 if ( xmms-config --version ) >/dev/null 2>&1 ; then
7596 _xmmsplugindir=$(xmms-config --input-plugin-dir)
7597 _xmmslibdir=$(xmms-config --exec-prefix)/lib
7598 else
7599 _xmmsplugindir=/usr/lib/xmms/Input
7600 _xmmslibdir=/usr/lib
7603 def_xmms='#define CONFIG_XMMS 1'
7604 if darwin ; then
7605 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
7606 else
7607 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
7609 else
7610 def_xmms='#undef CONFIG_XMMS'
7612 echores "$_xmms"
7614 if test "$_charset" != "noconv" ; then
7615 def_charset="#define MSG_CHARSET \"$_charset\""
7616 else
7617 def_charset="#undef MSG_CHARSET"
7618 _charset="UTF-8"
7621 if test -n "$_charset" && test "$_charset" != "UTF-8" ; then
7622 echocheck "iconv program"
7623 iconv -f UTF-8 -t $_charset ${_mp_help} > /dev/null 2>> "$TMPLOG"
7624 if test "$?" -ne 0 ; then
7625 echores "no"
7626 echo "No working iconv program found, use "
7627 echo "--charset=UTF-8 to continue anyway."
7628 echo "If you also have problems with iconv library functions use --charset=noconv."
7629 exit 1
7630 else
7631 echores "yes"
7635 #############################################################################
7637 echocheck "automatic gdb attach"
7638 if test "$_crash_debug" = yes ; then
7639 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
7640 else
7641 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
7642 _crash_debug=no
7644 echores "$_crash_debug"
7646 echocheck "compiler support for noexecstack"
7647 cat > $TMPC <<EOF
7648 int main(void) { return 0; }
7650 if cc_check -Wl,-z,noexecstack ; then
7651 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
7652 echores "yes"
7653 else
7654 echores "no"
7657 echocheck "linker support for --nxcompat --no-seh --dynamicbase"
7658 if cc_check "-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase" ; then
7659 extra_ldflags="-Wl,--nxcompat -Wl,--no-seh -Wl,--dynamicbase $extra_ldflags"
7660 echores "yes"
7661 else
7662 echores "no"
7666 # Dynamic linking flags
7667 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
7668 _ld_dl_dynamic=''
7669 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
7670 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 && ! sunos; then
7671 _ld_dl_dynamic='-rdynamic'
7674 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
7675 bsdos && extra_ldflags="$extra_ldflags -ldvd"
7676 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
7678 def_debug='#undef MP_DEBUG'
7679 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
7682 echocheck "joystick"
7683 def_joystick='#undef CONFIG_JOYSTICK'
7684 if test "$_joystick" = yes ; then
7685 if linux ; then
7686 # TODO add some check
7687 def_joystick='#define CONFIG_JOYSTICK 1'
7688 else
7689 _joystick="no"
7690 _res_comment="unsupported under $system_name"
7693 echores "$_joystick"
7695 echocheck "lirc"
7696 if test "$_lirc" = auto ; then
7697 _lirc=no
7698 cat > $TMPC <<EOF
7699 #include <lirc/lirc_client.h>
7700 int main(void) { return 0; }
7702 cc_check -llirc_client && _lirc=yes
7704 if test "$_lirc" = yes ; then
7705 def_lirc='#define CONFIG_LIRC 1'
7706 libs_mplayer="$libs_mplayer -llirc_client"
7707 else
7708 def_lirc='#undef CONFIG_LIRC'
7710 echores "$_lirc"
7712 echocheck "lircc"
7713 if test "$_lircc" = auto ; then
7714 _lircc=no
7715 cat > $TMPC <<EOF
7716 #include <lirc/lircc.h>
7717 int main(void) { return 0; }
7719 cc_check -llircc && _lircc=yes
7721 if test "$_lircc" = yes ; then
7722 def_lircc='#define CONFIG_LIRCC 1'
7723 libs_mplayer="$libs_mplayer -llircc"
7724 else
7725 def_lircc='#undef CONFIG_LIRCC'
7727 echores "$_lircc"
7729 if arm; then
7730 # Detect maemo development platform libraries availability (http://www.maemo.org),
7731 # they are used when run on Nokia 770|8x0
7732 echocheck "maemo (Nokia 770|8x0)"
7733 if test "$_maemo" = auto ; then
7734 _maemo=no
7735 cat > $TMPC << EOF
7736 #include <libosso.h>
7737 int main(void) { (void) osso_initialize("", "", 0, NULL); return 0; }
7739 cc_check $($_pkg_config --cflags --libs libosso 2>/dev/null) && _maemo=yes
7741 if test "$_maemo" = yes ; then
7742 def_maemo='#define CONFIG_MAEMO 1'
7743 extra_cflags="$extra_cflags $($_pkg_config --cflags libosso)"
7744 extra_ldflags="$extra_ldflags $($_pkg_config --libs libosso) -lXsp"
7745 else
7746 def_maemo='#undef CONFIG_MAEMO'
7748 echores "$_maemo"
7751 #############################################################################
7753 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
7754 # the OMF format needs to come after the 'extern symbol prefix' check, which
7755 # uses nm.
7756 if os2 ; then
7757 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
7760 # linker paths should be the same for mencoder and mplayer
7761 _ld_tmp=""
7762 for I in $libs_mplayer ; do
7763 _tmp=$(echo $I | sed -e 's/^-L.*$//')
7764 if test -z "$_tmp" ; then
7765 extra_ldflags="$extra_ldflags $I"
7766 else
7767 _ld_tmp="$_ld_tmp $I"
7769 done
7770 libs_mplayer=$_ld_tmp
7773 #############################################################################
7774 # 64 bit file offsets?
7775 if test "$_largefiles" = yes || freebsd ; then
7776 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
7777 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
7778 # dvdread support requires this (for off64_t)
7779 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
7783 CXXFLAGS=" $CFLAGS -Iffmpeg -D__STDC_LIMIT_MACROS"
7785 # This must be the last test to be performed. Any other tests following it
7786 # could fail due to linker errors. libdvdnavmini is intentionally not linked
7787 # against libdvdread (to permit MPlayer to use its own copy of the library).
7788 # So any compilation using the flags added here but not linking against
7789 # libdvdread can fail.
7790 echocheck "DVD support (libdvdnav)"
7791 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
7792 _dvdnav=no
7794 dvdnav_internal=no
7795 if test "$_dvdnav" = auto ; then
7796 if test "$_dvdread_internal" = yes ; then
7797 _dvdnav=yes
7798 dvdnav_internal=yes
7799 _res_comment="internal"
7800 else
7801 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
7804 if test "$_dvdnav" = auto ; then
7805 cat > $TMPC <<EOF
7806 #include <inttypes.h>
7807 #include <dvdnav/dvdnav.h>
7808 int main(void) { dvdnav_t *dvd=0; return 0; }
7810 _dvdnav=no
7811 _dvdnavdir=$($_dvdnavconfig --cflags)
7812 _dvdnavlibs=$($_dvdnavconfig --libs)
7813 cc_check $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
7815 if test "$_dvdnav" = yes ; then
7816 _largefiles=yes
7817 def_dvdnav='#define CONFIG_DVDNAV 1'
7818 if test "$dvdnav_internal" = yes ; then
7819 cflags_libdvdnav="-Ilibdvdnav"
7820 _inputmodules="dvdnav(internal) $_inputmodules"
7821 else
7822 extra_cflags="$extra_cflags $($_dvdnavconfig --cflags)"
7823 extra_ldflags="$extra_ldflags $($_dvdnavconfig --minilibs)"
7824 _inputmodules="dvdnav $_inputmodules"
7826 else
7827 def_dvdnav='#undef CONFIG_DVDNAV'
7828 _noinputmodules="dvdnav $_noinputmodules"
7830 echores "$_dvdnav"
7832 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
7833 # Read dvdnav comment above.
7835 #############################################################################
7836 echo "Creating config.mak"
7837 cat > config.mak << EOF
7838 # -------- Generated by configure -----------
7840 # Ensure that locale settings do not interfere with shell commands.
7841 export LC_ALL = C
7843 CONFIGURATION = $_configuration
7845 CHARSET = $_charset
7846 DOC_LANGS = $language_doc
7847 DOC_LANG_ALL = $doc_lang_all
7848 MAN_LANGS = $language_man
7849 MAN_LANG_ALL = $man_lang_all
7851 prefix = \$(DESTDIR)$_prefix
7852 BINDIR = \$(DESTDIR)$_bindir
7853 DATADIR = \$(DESTDIR)$_datadir
7854 LIBDIR = \$(DESTDIR)$_libdir
7855 MANDIR = \$(DESTDIR)$_mandir
7856 CONFDIR = \$(DESTDIR)$_confdir
7857 LOCALEDIR = \$(DESTDIR)$_localedir
7859 AR = $_ar
7860 AS = $_cc
7861 CC = $_cc
7862 CXX = $_cc
7863 HOST_CC = $_host_cc
7864 YASM = $_yasm
7865 INSTALL = $_install
7866 INSTALLSTRIP = $_install_strip
7867 RANLIB = $_ranlib
7868 WINDRES = $_windres
7870 CFLAGS = $CFLAGS $extra_cflags
7871 CXXFLAGS = $CXXFLAGS $extra_cflags $extra_cxxflags
7872 CFLAGS_DHAHELPER = $cflags_dhahelper
7873 CFLAGS_FAAD_FIXED = $cflags_faad_fixed
7874 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
7875 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
7876 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
7877 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
7878 CFLAGS_STACKREALIGN = $cflags_stackrealign
7879 CFLAGS_SVGALIB_HELPER = $cflags_svgalib_helper
7880 CFLAGS_TREMOR_LOW = $cflags_tremor_low
7881 YASMFLAGS = $YASMFLAGS
7883 EXTRALIBS = $extra_ldflags $_ld_static $_ld_lm $extra_libs
7884 EXTRALIBS_MPLAYER = $libs_mplayer
7885 EXTRALIBS_MENCODER = $libs_mencoder
7887 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 &,"
7888 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 &,"
7890 GETCH = $_getch
7891 HELP_FILE = $_mp_help
7892 TIMER = $_timer
7894 EXESUF = $_exesuf
7895 EXESUFS_ALL = .exe
7897 $_target_arch
7898 $_target_subarch
7899 $(echo $_cpuexts | tr '[a-z] ' '[A-Z]\n' | sed 's/^/HAVE_/;s/$/=yes/')
7901 MENCODER = $_mencoder
7902 MPLAYER = $_mplayer
7904 NEED_GETTIMEOFDAY = $_need_gettimeofday
7905 NEED_GLOB = $_need_glob
7906 NEED_MMAP = $_need_mmap
7907 NEED_SETENV = $_need_setenv
7908 NEED_SHMEM = $_need_shmem
7909 NEED_STRSEP = $_need_strsep
7910 NEED_SWAB = $_need_swab
7911 NEED_VSSCANF = $_need_vsscanf
7913 # features
7914 3DFX = $_3dfx
7915 AA = $_aa
7916 ALSA1X = $_alsa1x
7917 ALSA9 = $_alsa9
7918 ALSA5 = $_alsa5
7919 APPLE_IR = $_apple_ir
7920 APPLE_REMOTE = $_apple_remote
7921 ARTS = $_arts
7922 AUDIO_INPUT = $_audio_input
7923 BITMAP_FONT = $_bitmap_font
7924 BL = $_bl
7925 CACA = $_caca
7926 CDDA = $_cdda
7927 CDDB = $_cddb
7928 COREAUDIO = $_coreaudio
7929 COREVIDEO = $_corevideo
7930 DART = $_dart
7931 DFBMGA = $_dfbmga
7932 DGA = $_dga
7933 DIRECT3D = $_direct3d
7934 DIRECTFB = $_directfb
7935 DIRECTX = $_directx
7936 DVBIN = $_dvbin
7937 DVDNAV = $_dvdnav
7938 DVDNAV_INTERNAL = $dvdnav_internal
7939 DVDREAD = $_dvdread
7940 DVDREAD_INTERNAL = $_dvdread_internal
7941 DXR2 = $_dxr2
7942 DXR3 = $_dxr3
7943 ESD = $_esd
7944 FAAC=$_faac
7945 FAAD = $_faad
7946 FAAD_INTERNAL = $_faad_internal
7947 FASTMEMCPY = $_fastmemcpy
7948 FBDEV = $_fbdev
7949 FREETYPE = $_freetype
7950 FTP = $_ftp
7951 GIF = $_gif
7952 GGI = $_ggi
7953 GL = $_gl
7954 GL_WIN32 = $_gl_win32
7955 GL_X11 = $_gl_x11
7956 MATRIXVIEW = $matrixview
7957 HAVE_POSIX_SELECT = $_posix_select
7958 HAVE_SYS_MMAN_H = $_mman
7959 IVTV = $_ivtv
7960 JACK = $_jack
7961 JOYSTICK = $_joystick
7962 JPEG = $_jpeg
7963 KAI = $_kai
7964 KVA = $_kva
7965 LADSPA = $_ladspa
7966 LIBA52 = $_liba52
7967 LIBA52_INTERNAL = $_liba52_internal
7968 LIBASS = $_ass
7969 LIBBS2B = $_libbs2b
7970 LIBDCA = $_libdca
7971 LIBDV = $_libdv
7972 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
7973 LIBLZO = $_liblzo
7974 LIBMAD = $_mad
7975 LIBMENU = $_menu
7976 LIBMENU_DVBIN = $_menu_dvbin
7977 LIBMPEG2 = $_libmpeg2
7978 LIBNEMESI = $_nemesi
7979 LIBNUT = $_libnut
7980 LIBSMBCLIENT = $_smb
7981 LIBTHEORA = $_theora
7982 LIRC = $_lirc
7983 LIVE555 = $_live
7984 MACOSX_BUNDLE = $_macosx_bundle
7985 MACOSX_FINDER = $_macosx_finder
7986 MD5SUM = $_md5sum
7987 MGA = $_mga
7988 MNG = $_mng
7989 MP3LAME = $_mp3lame
7990 MP3LIB = $_mp3lib
7991 MUSEPACK = $_musepack
7992 NAS = $_nas
7993 NATIVE_RTSP = $_native_rtsp
7994 NETWORK = $_network
7995 OPENAL = $_openal
7996 OSS = $_ossaudio
7997 PE_EXECUTABLE = $_pe_executable
7998 PNG = $_png
7999 PNM = $_pnm
8000 PRIORITY = $_priority
8001 PULSE = $_pulse
8002 PVR = $_pvr
8003 QTX_CODECS = $_qtx
8004 QTX_CODECS_WIN32 = $_qtx_codecs_win32
8005 QTX_EMULATION = $_qtx_emulation
8006 QUARTZ = $_quartz
8007 RADIO=$_radio
8008 RADIO_CAPTURE=$_radio_capture
8009 REAL_CODECS = $_real
8010 S3FB = $_s3fb
8011 SDL = $_sdl
8012 SPEEX = $_speex
8013 STREAM_CACHE = $_stream_cache
8014 SGIAUDIO = $_sgiaudio
8015 SUNAUDIO = $_sunaudio
8016 SVGA = $_svga
8017 TDFXFB = $_tdfxfb
8018 TDFXVID = $_tdfxvid
8019 TGA = $_tga
8020 TOOLAME=$_toolame
8021 TREMOR_INTERNAL = $_tremor_internal
8022 TV = $_tv
8023 TV_BSDBT848 = $_tv_bsdbt848
8024 TV_DSHOW = $_tv_dshow
8025 TV_V4L = $_tv_v4l
8026 TV_V4L1 = $_tv_v4l1
8027 TV_V4L2 = $_tv_v4l2
8028 TWOLAME=$_twolame
8029 UNRAR_EXEC = $_unrar_exec
8030 V4L2 = $_v4l2
8031 VCD = $_vcd
8032 VDPAU = $_vdpau
8033 VESA = $_vesa
8034 VIDIX = $_vidix
8035 VIDIX_PCIDB = $_vidix_pcidb_val
8036 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
8037 VIDIX_IVTV=$_vidix_drv_ivtv
8038 VIDIX_MACH64=$_vidix_drv_mach64
8039 VIDIX_MGA=$_vidix_drv_mga
8040 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
8041 VIDIX_NVIDIA=$_vidix_drv_nvidia
8042 VIDIX_PM2=$_vidix_drv_pm2
8043 VIDIX_PM3=$_vidix_drv_pm3
8044 VIDIX_RADEON=$_vidix_drv_radeon
8045 VIDIX_RAGE128=$_vidix_drv_rage128
8046 VIDIX_S3=$_vidix_drv_s3
8047 VIDIX_SH_VEU=$_vidix_drv_sh_veu
8048 VIDIX_SIS=$_vidix_drv_sis
8049 VIDIX_UNICHROME=$_vidix_drv_unichrome
8050 VORBIS = $_vorbis
8051 VSTREAM = $_vstream
8052 WII = $_wii
8053 WIN32DLL = $_win32dll
8054 WIN32WAVEOUT = $_win32waveout
8055 WIN32_EMULATION = $_win32_emulation
8056 WINVIDIX = $winvidix
8057 X11 = $_x11
8058 X264 = $_x264
8059 XANIM_CODECS = $_xanim
8060 XMGA = $_xmga
8061 XMMS_PLUGINS = $_xmms
8062 XV = $_xv
8063 XVID4 = $_xvid
8064 XVIDIX = $xvidix
8065 XVMC = $_xvmc
8066 XVR100 = $_xvr100
8067 YUV4MPEG = $_yuv4mpeg
8068 ZR = $_zr
8070 # FFmpeg
8071 LIBAVUTIL = $_libavutil
8072 LIBAVCODEC = $_libavcodec
8073 LIBAVFORMAT = $_libavformat
8074 LIBPOSTPROC = $_libpostproc
8075 LIBSWSCALE = $_libswscale
8076 LIBAVCODEC_INTERNALS = $_libavcodec_internals
8077 LIBSWSCALE_INTERNALS = $_libswscale_internals
8078 FFMPEG_SOURCE_PATH = $_ffmpeg_source
8080 # Some FFmpeg codecs depend on these. Enable them unconditionally for now.
8081 CONFIG_AANDCT=yes
8082 CONFIG_FFT=yes
8083 CONFIG_FFT_MMX=$fft_mmx
8084 CONFIG_GOLOMB=yes
8085 CONFIG_LPC=yes
8086 CONFIG_MDCT=yes
8087 CONFIG_RDFT=yes
8089 CONFIG_BZLIB=$bzlib
8090 CONFIG_ENCODERS=yes
8091 CONFIG_GPL=yes
8092 CONFIG_MLIB = $_mlib
8093 CONFIG_MUXERS=$_mencoder
8094 CONFIG_VDPAU=$_vdpau
8095 CONFIG_XVMC=$_xvmc
8096 CONFIG_ZLIB=$_zlib
8098 HAVE_PTHREADS = $_pthreads
8099 HAVE_SHM = $_shm
8100 HAVE_W32THREADS = $_w32threads
8101 HAVE_YASM = $_have_yasm
8105 #############################################################################
8107 ff_config_enable () {
8108 _nprefix=$3;
8109 test -z "$_nprefix" && _nprefix='CONFIG'
8110 for part in $1; do
8111 if $(echo $2 | grep -q -E "(^| )$part($| )"); then
8112 echo "#define ${_nprefix}_$part 1"
8113 else
8114 echo "#define ${_nprefix}_$part 0"
8116 done
8119 echo "Creating config.h"
8120 cat > $TMPH << EOF
8121 /*----------------------------------------------------------------------------
8122 ** This file has been automatically generated by configure any changes in it
8123 ** will be lost when you run configure again.
8124 ** Instead of modifying definitions here, use the --enable/--disable options
8125 ** of the configure script! See ./configure --help for details.
8126 *---------------------------------------------------------------------------*/
8128 #ifndef MPLAYER_CONFIG_H
8129 #define MPLAYER_CONFIG_H
8131 /* Undefine this if you do not want to select mono audio (left or right)
8132 with a stereo MPEG layer 2/3 audio stream. The command line option
8133 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
8134 right-only), with 0 being the default.
8136 #define CONFIG_FAKE_MONO 1
8138 /* set up audio OUTBURST. Do not change this! */
8139 #define OUTBURST 512
8141 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
8142 #undef FAST_OSD
8143 #undef FAST_OSD_TABLE
8145 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
8146 #define MPEG12_POSTPROC 1
8147 #define ATTRIBUTE_ALIGNED_MAX 16
8151 #define CONFIGURATION "$_configuration"
8153 #define MPLAYER_DATADIR "$_datadir"
8154 #define MPLAYER_CONFDIR "$_confdir"
8155 #define MPLAYER_LIBDIR "$_libdir"
8156 #define MPLAYER_LOCALEDIR "$_localedir"
8158 $def_translation
8160 /* definitions needed by included libraries */
8161 #define HAVE_INTTYPES_H 1
8162 /* libmpeg2 + FFmpeg */
8163 $def_fast_inttypes
8164 /* libdvdcss */
8165 #define HAVE_ERRNO_H 1
8166 /* libdvdcss + libdvdread */
8167 #define HAVE_LIMITS_H 1
8168 /* libdvdcss + libfaad2 */
8169 #define HAVE_UNISTD_H 1
8170 /* libfaad2 + libdvdread */
8171 #define STDC_HEADERS 1
8172 #define HAVE_MEMCPY 1
8173 /* libfaad2 */
8174 #define HAVE_STRING_H 1
8175 #define HAVE_STRINGS_H 1
8176 #define HAVE_SYS_STAT_H 1
8177 #define HAVE_SYS_TYPES_H 1
8178 /* libdvdnav */
8179 #define READ_CACHE_TRACE 0
8180 /* libdvdread */
8181 #define HAVE_DLFCN_H 1
8182 $def_dvdcss
8185 /* system headers */
8186 $def_alloca_h
8187 $def_alsa_asoundlib_h
8188 $def_altivec_h
8189 $def_malloc_h
8190 $def_mman_h
8191 $def_mman_has_map_failed
8192 $def_soundcard_h
8193 $def_sys_asoundlib_h
8194 $def_sys_soundcard_h
8195 $def_sys_sysinfo_h
8196 $def_termios_h
8197 $def_termios_sys_h
8198 $def_winsock2_h
8201 /* system functions */
8202 $def_gethostbyname2
8203 $def_gettimeofday
8204 $def_glob
8205 $def_langinfo
8206 $def_lrintf
8207 $def_map_memalign
8208 $def_memalign
8209 $def_nanosleep
8210 $def_posix_select
8211 $def_select
8212 $def_setenv
8213 $def_setmode
8214 $def_shm
8215 $def_strsep
8216 $def_swab
8217 $def_sysi86
8218 $def_sysi86_iv
8219 $def_termcap
8220 $def_termios
8221 $def_vsscanf
8224 /* system-specific features */
8225 $def_asmalign_pot
8226 $def_builtin_expect
8227 $def_dl
8228 $def_dos_paths
8229 $def_extern_asm
8230 $def_extern_prefix
8231 $def_iconv
8232 $def_kstat
8233 $def_macosx_bundle
8234 $def_macosx_finder
8235 $def_maemo
8236 $def_named_asm_args
8237 $def_priority
8238 $def_quicktime
8239 $def_restrict_keyword
8240 $def_rtc
8241 $def_unrar_exec
8244 /* configurable options */
8245 $def_charset
8246 $def_crash_debug
8247 $def_debug
8248 $def_dynamic_plugins
8249 $def_fastmemcpy
8250 $def_menu
8251 $def_runtime_cpudetection
8252 $def_sighandler
8253 $def_sortsub
8254 $def_stream_cache
8255 $def_pthread_cache
8258 /* CPU stuff */
8259 #define __CPU__ $iproc
8260 $def_words_endian
8261 $def_bigendian
8262 $(ff_config_enable "$_arch_all" "$_arch" "ARCH")
8263 $(ff_config_enable "$_cpuexts_all" "$_cpuexts" "HAVE")
8266 /* DVD/VCD/CD */
8267 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
8268 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
8269 $def_bsdi_dvd
8270 $def_cddb
8271 $def_cdio
8272 $def_cdparanoia
8273 $def_cdrom
8274 $def_dvd
8275 $def_dvd_bsd
8276 $def_dvd_darwin
8277 $def_dvd_linux
8278 $def_dvd_openbsd
8279 $def_dvdio
8280 $def_dvdnav
8281 $def_dvdread
8282 $def_hpux_scsi_h
8283 $def_libcdio
8284 $def_sol_scsi_h
8285 $def_vcd
8288 /* codec libraries */
8289 $def_faac
8290 $def_faad
8291 $def_faad_internal
8292 $def_liba52
8293 $def_liba52_internal
8294 $def_libdca
8295 $def_libdv
8296 $def_liblzo
8297 $def_libmpeg2
8298 $def_mad
8299 $def_mp3lame
8300 $def_mp3lame_preset
8301 $def_mp3lame_preset_medium
8302 $def_mp3lib
8303 $def_musepack
8304 $def_speex
8305 $def_theora
8306 $def_toolame
8307 $def_tremor
8308 $def_twolame
8309 $def_vorbis
8310 $def_x264
8311 $def_xvid
8312 $def_zlib
8314 $def_libnut
8317 /* binary codecs */
8318 $def_qtx
8319 $def_qtx_win32
8320 $def_real
8321 $def_real_path
8322 $def_win32_loader
8323 $def_win32dll
8324 #define WIN32_PATH "$_win32codecsdir"
8325 $def_xanim
8326 $def_xanim_path
8327 $def_xmms
8328 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
8331 /* Audio output drivers */
8332 $def_alsa
8333 $def_alsa1x
8334 $def_alsa5
8335 $def_alsa9
8336 $def_arts
8337 $def_coreaudio
8338 $def_dart
8339 $def_esd
8340 $def_esd_latency
8341 $def_jack
8342 $def_kai
8343 $def_nas
8344 $def_openal
8345 $def_openal_h
8346 $def_ossaudio
8347 $def_ossaudio_devdsp
8348 $def_ossaudio_devmixer
8349 $def_pulse
8350 $def_sgiaudio
8351 $def_sunaudio
8352 $def_win32waveout
8354 $def_ladspa
8355 $def_libbs2b
8358 /* input */
8359 $def_apple_ir
8360 $def_apple_remote
8361 $def_ioctl_bt848_h_name
8362 $def_ioctl_meteor_h_name
8363 $def_joystick
8364 $def_lirc
8365 $def_lircc
8366 $def_pvr
8367 $def_radio
8368 $def_radio_bsdbt848
8369 $def_radio_capture
8370 $def_radio_v4l
8371 $def_radio_v4l2
8372 $def_tv
8373 $def_tv_bsdbt848
8374 $def_tv_dshow
8375 $def_tv_v4l
8376 $def_tv_v4l1
8377 $def_tv_v4l2
8380 /* font stuff */
8381 $def_ass
8382 $def_bitmap_font
8383 $def_enca
8384 $def_fontconfig
8385 $def_freetype
8386 $def_fribidi
8389 /* networking */
8390 $def_closesocket
8391 $def_ftp
8392 $def_inet6
8393 $def_inet_aton
8394 $def_inet_pton
8395 $def_live
8396 $def_nemesi
8397 $def_network
8398 $def_smb
8399 $def_socklen_t
8400 $def_vstream
8403 /* libvo options */
8404 $def_3dfx
8405 $def_aa
8406 $def_bl
8407 $def_caca
8408 $def_corevideo
8409 $def_dfbmga
8410 $def_dga
8411 $def_dga1
8412 $def_dga2
8413 $def_direct3d
8414 $def_directfb
8415 $def_directfb_version
8416 $def_directx
8417 $def_dvb
8418 $def_dvbin
8419 $def_dxr2
8420 $def_dxr3
8421 $def_fbdev
8422 $def_ggi
8423 $def_ggiwmh
8424 $def_gif
8425 $def_gif_4
8426 $def_gif_tvt_hack
8427 $def_gl
8428 $def_gl_win32
8429 $def_gl_x11
8430 $def_matrixview
8431 $def_ivtv
8432 $def_jpeg
8433 $def_kva
8434 $def_md5sum
8435 $def_mga
8436 $def_mng
8437 $def_png
8438 $def_pnm
8439 $def_quartz
8440 $def_s3fb
8441 $def_sdl
8442 $def_sdl_sdl_h
8443 $def_sdlbuggy
8444 $def_svga
8445 $def_tdfxfb
8446 $def_tdfxvid
8447 $def_tga
8448 $def_v4l2
8449 $def_vdpau
8450 $def_vesa
8451 $def_vidix
8452 $def_vidix_drv_cyberblade
8453 $def_vidix_drv_ivtv
8454 $def_vidix_drv_mach64
8455 $def_vidix_drv_mga
8456 $def_vidix_drv_mga_crtc2
8457 $def_vidix_drv_nvidia
8458 $def_vidix_drv_pm3
8459 $def_vidix_drv_radeon
8460 $def_vidix_drv_rage128
8461 $def_vidix_drv_s3
8462 $def_vidix_drv_sh_veu
8463 $def_vidix_drv_sis
8464 $def_vidix_drv_unichrome
8465 $def_vidix_pfx
8466 $def_vm
8467 $def_wii
8468 $def_x11
8469 $def_xdpms
8470 $def_xf86keysym
8471 $def_xinerama
8472 $def_xmga
8473 $def_xss
8474 $def_xv
8475 $def_xvmc
8476 $def_xvr100
8477 $def_yuv4mpeg
8478 $def_zr
8481 /* FFmpeg */
8482 $def_libavcodec
8483 $def_libavformat
8484 $def_libavutil
8485 $def_libpostproc
8486 $def_libswscale
8487 $def_libavcodec_internals
8488 $def_libswscale_internals
8490 #define CONFIG_DECODERS 1
8491 #define CONFIG_ENCODERS 1
8492 #define CONFIG_DEMUXERS 1
8493 $def_muxers
8495 $def_arpa_inet_h
8496 $def_bswap
8497 $def_bzlib
8498 $def_dcbzl
8499 $def_exp2
8500 $def_exp2f
8501 $def_fast_64bit
8502 $def_fast_unaligned
8503 $def_llrint
8504 $def_log2
8505 $def_log2f
8506 $def_lrint
8507 $def_memalign_hack
8508 $def_mlib
8509 $def_mkstemp
8510 $def_posix_memalign
8511 $def_pthreads
8512 $def_round
8513 $def_roundf
8514 $def_ten_operands
8515 $def_threads
8516 $def_truncf
8517 $def_xform_asm
8518 $def_yasm
8520 #define CONFIG_FASTDIV 0
8521 #define CONFIG_FFSERVER 0
8522 #define CONFIG_GPL 1
8523 #define CONFIG_GRAY 0
8524 #define CONFIG_HARDCODED_TABLES 0
8525 #define CONFIG_LIBVORBIS 0
8526 #define CONFIG_POWERPC_PERF 0
8527 #define CONFIG_SMALL 0
8528 #define CONFIG_SWSCALE 1
8529 #define CONFIG_SWSCALE_ALPHA 1
8531 #define HAVE_ATTRIBUTE_PACKED 1
8532 #define HAVE_GETHRTIME 0
8533 #define HAVE_INLINE_ASM 1
8534 #define HAVE_LDBRX 0
8535 #define HAVE_POLL_H 1
8536 #define HAVE_PPC4XX 0
8537 #define HAVE_VFP_ARGS 1
8538 #define HAVE_VIRTUALALLOC 0
8540 /* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */
8541 #define CONFIG_AANDCT 1
8542 #define CONFIG_FFT 1
8543 #define CONFIG_GOLOMB 1
8544 #define CONFIG_LPC 1
8545 #define CONFIG_MDCT 1
8546 #define CONFIG_RDFT 1
8548 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
8549 $def_ebx_available
8550 #ifndef MP_DEBUG
8551 #define HAVE_EBP_AVAILABLE 1
8552 #else
8553 #define HAVE_EBP_AVAILABLE 0
8554 #endif
8556 #define CONFIG_H263_VAAPI_HWACCEL 0
8557 #define CONFIG_MPEG2_VAAPI_HWACCEL 0
8558 #define CONFIG_MPEG4_VAAPI_HWACCEL 0
8559 #define CONFIG_H264_VAAPI_HWACCEL 0
8560 #define CONFIG_VC1_VAAPI_HWACCEL 0
8561 #define CONFIG_WMV3_VAAPI_HWACCEL 0
8563 #endif /* MPLAYER_CONFIG_H */
8566 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
8567 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
8569 #############################################################################
8571 ./version.sh `$_cc -dumpversion`
8573 cat << EOF
8575 Config files successfully generated by ./configure $_configuration !
8577 Install prefix: $_prefix
8578 Data directory: $_datadir
8579 Config direct.: $_confdir
8581 Byte order: $_byte_order
8582 Optimizing for: $_optimizing
8584 Languages:
8585 Messages: $language_msg
8586 Manual pages: $language_man
8587 Documentation: $language_doc
8589 Enabled optional drivers:
8590 Input: $_inputmodules
8591 Codecs: $_codecmodules
8592 Audio output: $_aomodules
8593 Video output: $_vomodules
8595 Disabled optional drivers:
8596 Input: $_noinputmodules
8597 Codecs: $_nocodecmodules
8598 Audio output: $_noaomodules
8599 Video output: $_novomodules
8601 'config.h' and 'config.mak' contain your configuration options.
8602 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
8603 compile *** DO NOT REPORT BUGS if you tweak these files ***
8605 'make' will now compile MPlayer and 'make install' will install it.
8606 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
8611 if test "$_mtrr" = yes ; then
8612 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$doc_lang/video.html#mtrr)"
8613 echo
8616 if ! x86_32; then
8617 cat <<EOF
8618 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
8619 operating system ($system_name). You may encounter a few files that cannot
8620 be played due to missing open source video/audio codec support.
8626 cat <<EOF
8627 Check $TMPLOG if you wonder why an autodetection failed (make sure
8628 development headers/packages are installed).
8630 NOTE: The --enable-* parameters unconditionally force options on, completely
8631 skipping autodetection. This behavior is unlike what you may be used to from
8632 autoconf-based configure scripts that can decide to override you. This greater
8633 level of control comes at a price. You may have to provide the correct compiler
8634 and linker flags yourself.
8635 If you used one of these options (except --enable-menu and similar ones that
8636 turn on internal features) and experience a compilation or linking failure,
8637 make sure you have passed the necessary compiler/linker flags to configure.
8639 If you suspect a bug, please read DOCS/HTML/$doc_lang/bugreports.html.
8643 if test "$_warn_CFLAGS" = yes; then
8644 cat <<EOF
8646 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
8647 but:
8649 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
8651 It is strongly recommended to let MPlayer choose the correct CFLAGS!
8652 To do so, execute 'CFLAGS= ./configure <options>'
8657 # Last move:
8658 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP" "$TMPH"