Merge branch 'ordered_chapters'
[mplayer/glamo.git] / configure
blobd7d8e85f9c58163fe71cced96eaff52109392b2f
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 "$_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 # if test "$_feature" = yes ; then
33 # def_feature='#define CONFIG_FEATURE 1'
34 # else
35 # def_feature='#undef CONFIG_FEATURE'
36 # fi
37 # echores "$_feature"
39 # Furthermore you need to add the variable _feature to the list of default
40 # settings and set it to one of yes/no/auto. Also add appropriate
41 # --enable-feature/--disable-feature command line options.
42 # The results of the check should be written to config.h and config.mak
43 # at the end of this script. The variable names used for this should be
44 # uniform, i.e. if the option is named 'feature':
46 # _feature : should have a value of yes/no/auto
47 # def_feature : '#define ... 1' or '#undef ...' for conditional compilation
48 # _ld_feature : '-L/path/dir -lfeature' GCC options
50 #############################################################################
52 # Prevent locale nonsense from breaking basic text processing utils
53 export LC_ALL=C
55 # Store the configure line that was used
56 _configuration="$*"
58 # Prefer these macros to full length text !
59 # These macros only return an error code - NO display is done
60 compile_check() {
61 echo >> "$TMPLOG"
62 cat "$1" >> "$TMPLOG"
63 echo >> "$TMPLOG"
64 echo "$_cc $CFLAGS $extra_cflags $_ld_static $extra_ldflags $libs_mplayer $libs_mencoder -o $TMPEXE $@" >> "$TMPLOG"
65 rm -f "$TMPEXE"
66 $_cc $CFLAGS $extra_cflags $_ld_static $extra_ldflags $libs_mplayer $libs_mencoder -o "$TMPEXE" "$@" >> "$TMPLOG" 2>&1
67 TMPRES="$?"
68 echo >> "$TMPLOG"
69 echo >> "$TMPLOG"
70 return "$TMPRES"
73 cc_check() {
74 compile_check $TMPC $@
77 cxx_check() {
78 compile_check $TMPCPP $@ -lstdc++
81 yasm_check() {
82 echo >> "$TMPLOG"
83 cat "$TMPS" >> "$TMPLOG"
84 echo >> "$TMPLOG"
85 echo "$_yasm $YASMFLAGS -o $TMPEXE $TMPS $@" >> "$TMPLOG"
86 rm -f "$TMPEXE"
87 $_yasm $YASMFLAGS -o "$TMPEXE" "$TMPS" "$@" >> "$TMPLOG" 2>&1
88 TMPRES="$?"
89 echo >> "$TMPLOG"
90 echo >> "$TMPLOG"
91 return "$TMPRES"
94 tmp_run() {
95 "$TMPEXE" >> "$TMPLOG" 2>&1
98 # Display error message, flushes tempfile, exit
99 die () {
100 echo
101 echo "Error: $@" >&2
102 echo >&2
103 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP"
104 echo "Check \"$TMPLOG\" if you do not understand why it failed."
105 exit 1
108 # OS test booleans functions
109 issystem() {
110 test "`echo $system_name | tr A-Z a-z`" = "`echo $1 | tr A-Z a-z`"
112 linux() { issystem "Linux" || issystem "uClinux" ; return "$?" ; }
113 sunos() { issystem "SunOS" ; return "$?" ; }
114 hpux() { issystem "HP-UX" ; return "$?" ; }
115 irix() { issystem "IRIX" ; return "$?" ; }
116 aix() { issystem "AIX" ; return "$?" ; }
117 cygwin() { issystem "CYGWIN" ; return "$?" ; }
118 freebsd() { issystem "FreeBSD" || issystem "GNU/kFreeBSD"; return "$?" ; }
119 netbsd() { issystem "NetBSD" ; return "$?" ; }
120 bsdos() { issystem "BSD/OS" ; return "$?" ; }
121 openbsd() { issystem "OpenBSD" ; return "$?" ; }
122 dragonfly() { issystem "DragonFly" ; return "$?" ; }
123 qnx() { issystem "QNX" ; return "$?" ; }
124 darwin() { issystem "Darwin" ; return "$?" ; }
125 gnu() { issystem "GNU" ; return "$?" ; }
126 mingw32() { issystem "MINGW32" ; return "$?" ; }
127 morphos() { issystem "MorphOS" ; return "$?" ; }
128 amigaos() { issystem "AmigaOS" ; return "$?" ; }
129 win32() { cygwin || mingw32 ; return "$?" ; }
130 beos() { issystem "BEOS" ; return "$?" ; }
131 os2() { issystem "OS/2" ; return "$?" ; }
133 # arch test boolean functions
134 # x86/x86pc is used by QNX
135 x86_32() {
136 case "$host_arch" in
137 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686) return 0 ;;
138 *) return 1 ;;
139 esac
142 x86_64() {
143 case "$host_arch" in
144 x86_64|amd64) return 0 ;;
145 *) return 1 ;;
146 esac
149 x86() {
150 x86_32 || x86_64
153 ppc() {
154 case "$host_arch" in
155 ppc|ppc64|powerpc|powerpc64) return 0;;
156 *) return 1;;
157 esac
160 alpha() {
161 case "$host_arch" in
162 alpha*) return 0;;
163 *) return 1;;
164 esac
167 arm() {
168 case "$host_arch" in
169 arm) return 0;;
170 *) return 1;;
171 esac
174 # Use this before starting a check
175 echocheck() {
176 echo "============ Checking for $@ ============" >> "$TMPLOG"
177 echo ${_echo_n} "Checking for $@ ... ${_echo_c}"
180 # Use this to echo the results of a check
181 echores() {
182 if test "$_res_comment" ; then
183 _res_comment="($_res_comment)"
185 echo "Result is: $@ $_res_comment" >> "$TMPLOG"
186 echo "##########################################" >> "$TMPLOG"
187 echo "" >> "$TMPLOG"
188 echo "$@ $_res_comment"
189 _res_comment=""
191 #############################################################################
193 # Check how echo works in this /bin/sh
194 case `echo -n` in
195 -n) _echo_n= _echo_c='\c' ;; # SysV echo
196 *) _echo_n='-n ' _echo_c= ;; # BSD echo
197 esac
199 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"`
200 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"`
201 doc_lang_all=`echo DOCS/xml/??/ DOCS/xml/??_??/ | sed -e "s:DOCS/xml/\(..\)/:\1:g" -e "s:DOCS/xml/\(.._..\)/:\1:g"`
203 show_help(){
204 cat << EOF
205 Usage: $0 [OPTIONS]...
207 Configuration:
208 -h, --help display this help and exit
210 Installation directories:
211 --prefix=DIR prefix directory for installation [/usr/local]
212 --bindir=DIR directory for installing binaries [PREFIX/bin]
213 --datadir=DIR directory for installing machine independent
214 data files (skins, etc) [PREFIX/share/mplayer]
215 --mandir=DIR directory for installing man pages [PREFIX/share/man]
216 --confdir=DIR directory for installing configuration files
217 [PREFIX/etc/mplayer]
218 --libdir=DIR directory for object code libraries [PREFIX/lib]
219 --codecsdir=DIR directory for binary codecs [LIBDIR/codecs]
220 --win32codecsdir=DIR directory for Windows DLLs [LIBDIR/codecs]
221 --xanimcodecsdir=DIR directory for XAnim codecs [LIBDIR/codecs]
222 --realcodecsdir=DIR directory for RealPlayer codecs [LIBDIR/codecs]
224 Optional features:
225 --disable-mencoder disable MEncoder (A/V encoder) compilation [enable]
226 --disable-mplayer disable MPlayer compilation [enable]
227 --enable-gui enable GMPlayer compilation (GTK+ GUI) [disable]
228 --enable-gtk1 force using GTK 1.2 for the GUI [disable]
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-tv-teletext disable TV teletext interface [autodetect]
251 --disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
252 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
253 --disable-network disable networking [enable]
254 --enable-winsock2_h enable winsock2_h [autodetect]
255 --enable-smb enable Samba (SMB) input [autodetect]
256 --enable-live enable LIVE555 Streaming Media [autodetect]
257 --enable-nemesi enable Nemesi Streaming Media [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-macosx disable Mac OS X specific features [autodetect]
273 --disable-maemo disable maemo specific features [autodetect]
274 --enable-macosx-finder enable Mac OS X Finder invocation parameter
275 parsing [disabled]
276 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
277 --disable-inet6 disable IPv6 support [autodetect]
278 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
279 --disable-ftp disable FTP support [enabled]
280 --disable-vstream disable TiVo vstream client support [autodetect]
281 --disable-pthreads disable Posix threads support [autodetect]
282 --disable-w32threads disable Win32 threads support [autodetect]
283 --disable-ass disable internal SSA/ASS subtitle support [autodetect]
284 --enable-rpath enable runtime linker path for extra libs [disabled]
286 Codecs:
287 --enable-gif enable GIF support [autodetect]
288 --enable-png enable PNG input/output support [autodetect]
289 --enable-mng enable MNG input support [autodetect]
290 --enable-jpeg enable JPEG input/output support [autodetect]
291 --enable-libcdio enable libcdio support [autodetect]
292 --enable-liblzo enable liblzo support [autodetect]
293 --disable-win32dll disable Win32 DLL support [enabled]
294 --disable-qtx disable QuickTime codecs support [enabled]
295 --disable-xanim disable XAnim codecs support [enabled]
296 --disable-real disable RealPlayer codecs support [enabled]
297 --disable-xvid disable Xvid [autodetect]
298 --disable-xvid-lavc disable Xvid in libavcodec [autodetect]
299 --disable-x264 disable x264 [autodetect]
300 --disable-x264-lavc disable x264 in libavcodec [autodetect]
301 --disable-libdirac-lavc disable Dirac in libavcodec [autodetect]
302 --disable-libschroedinger-lavc disable Dirac in libavcodec (Schroedinger
303 decoder) [autodetect]
304 --disable-libnut disable libnut [autodetect]
305 --disable-libavutil_a disable static libavutil [autodetect]
306 --disable-libavcodec_a disable static libavcodec [autodetect]
307 --disable-libavformat_a disable static libavformat [autodetect]
308 --disable-libpostproc_a disable static libpostproc [autodetect]
309 --disable-libswscale_a disable static libswscale [autodetect]
310 --disable-libavutil_so disable shared libavutil [autodetect]
311 --disable-libavcodec_so disable shared libavcodec [autodetect]
312 --disable-libavformat_so disable shared libavformat [autodetect]
313 --disable-libpostproc_so disable shared libpostproc [autodetect]
314 --disable-libswscale_so disable shared libswscale [autodetect]
315 --disable-libavcodec_mpegaudio_hp disable high precision audio decoding
316 in libavcodec [enabled]
317 --disable-tremor-internal disable internal Tremor [enabled]
318 --enable-tremor-low enable lower accuracy internal Tremor [disabled]
319 --enable-tremor enable external Tremor [autodetect]
320 --disable-libvorbis disable libvorbis support [autodetect]
321 --disable-speex disable Speex support [autodetect]
322 --enable-theora enable OggTheora libraries [autodetect]
323 --enable-faad enable external FAAD2 (AAC) [autodetect]
324 --disable-faad-internal disable internal FAAD2 (AAC) [autodetect]
325 --enable-faad-fixed enable fixed-point mode in internal FAAD2 [disabled]
326 --disable-faac disable support for FAAC (AAC encoder) [autodetect]
327 --disable-faac-lavc disable support for FAAC in libavcodec [autodetect]
328 --disable-ladspa disable LADSPA plugin support [autodetect]
329 --disable-libbs2b disable libbs2b audio filter support [autodetect]
330 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
331 --disable-mad disable libmad (MPEG audio) support [autodetect]
332 --disable-mp3lame disable LAME MP3 encoding support [autodetect]
333 --disable-mp3lame-lavc disable LAME in libavcodec [autodetect]
334 --disable-toolame disable Toolame (MPEG layer 2) encoding [autodetect]
335 --disable-twolame disable Twolame (MPEG layer 2) encoding [autodetect]
336 --enable-xmms enable XMMS input plugin support [disabled]
337 --enable-libdca enable libdca support [autodetect]
338 --disable-mp3lib disable builtin mp3lib [autodetect]
339 --disable-liba52 disable liba52 [autodetect]
340 --disable-liba52-internal disable builtin liba52 [autodetect]
341 --disable-libmpeg2 disable builtin libmpeg2 [autodetect]
342 --disable-musepack disable musepack support [autodetect]
343 --disable-libamr_nb disable libamr narrowband [autodetect]
344 --disable-libamr_wb disable libamr wideband [autodetect]
345 --disable-decoder=DECODER disable specified FFmpeg decoder
346 --enable-decoder=DECODER enable specified FFmpeg decoder
347 --disable-encoder=ENCODER disable specified FFmpeg encoder
348 --enable-encoder=ENCODER enable specified FFmpeg encoder
349 --disable-parser=PARSER disable specified FFmpeg parser
350 --enable-parser=PARSER enable specified FFmpeg parser
351 --disable-demuxer=DEMUXER disable specified FFmpeg demuxer
352 --enable-demuxer=DEMUXER enable specified FFmpeg demuxer
353 --disable-muxer=MUXER disable specified FFmpeg muxer
354 --enable-muxer=MUXER enable specified FFmpeg muxer
356 Video output:
357 --disable-vidix disable VIDIX [for x86 *nix]
358 --with-vidix-drivers[=*] list of VIDIX drivers to be compiled in
359 Available: cyberblade,ivtv,mach64,mga,mga_crtc2,
360 nvidia,pm2,pm3,radeon,rage128,s3,sis,unichrome
361 --disable-vidix-pcidb disable VIDIX PCI device name database
362 --enable-dhahelper enable VIDIX dhahelper support
363 --enable-svgalib_helper enable VIDIX svgalib_helper support
364 --enable-gl enable OpenGL video output [autodetect]
365 --enable-dga2 enable DGA 2 support [autodetect]
366 --enable-dga1 enable DGA 1 support [autodetect]
367 --enable-vesa enable VESA video output [autodetect]
368 --enable-svga enable SVGAlib video output [autodetect]
369 --enable-sdl enable SDL video output [autodetect]
370 --enable-kva enable KVA video output [autodetect]
371 --enable-aa enable AAlib video output [autodetect]
372 --enable-caca enable CACA video output [autodetect]
373 --enable-ggi enable GGI video output [autodetect]
374 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
375 --enable-direct3d enable Direct3D video output [autodetect]
376 --enable-directx enable DirectX video output [autodetect]
377 --enable-dxr2 enable DXR2 video output [autodetect]
378 --enable-dxr3 enable DXR3/H+ video output [autodetect]
379 --enable-ivtv enable IVTV TV-Out video output [autodetect]
380 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
381 --enable-dvb enable DVB video output [autodetect]
382 --enable-dvbhead enable DVB video output (HEAD version) [autodetect]
383 --enable-mga enable mga_vid video output [autodetect]
384 --enable-xmga enable mga_vid X11 video output [autodetect]
385 --enable-xv enable Xv video output [autodetect]
386 --enable-xvmc enable XvMC acceleration [disable]
387 --enable-vdpau enable VDPAU acceleration [autodetect]
388 --enable-vm enable XF86VidMode support [autodetect]
389 --enable-xinerama enable Xinerama support [autodetect]
390 --enable-x11 enable X11 video output [autodetect]
391 --enable-xshape enable XShape support [autodetect]
392 --disable-xss disable screensaver support via xss [autodetect]
393 --enable-fbdev enable FBDev video output [autodetect]
394 --enable-mlib enable mediaLib video output (Solaris) [disable]
395 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
396 --enable-tdfxfb enable tdfxfb video output [disable]
397 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
398 --enable-wii enable Nintendo Wii/GameCube video output [disable]
399 --enable-directfb enable DirectFB video output [autodetect]
400 --enable-zr enable ZR360[56]7/ZR36060 video output [autodetect]
401 --enable-bl enable Blinkenlights video output [disable]
402 --enable-tdfxvid enable tdfx_vid video output [disable]
403 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
404 --disable-tga disable Targa video output [enable]
405 --disable-pnm disable PNM video output [enable]
406 --disable-md5sum disable md5sum video output [enable]
407 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
409 Audio output:
410 --disable-alsa disable ALSA audio output [autodetect]
411 --disable-ossaudio disable OSS audio output [autodetect]
412 --disable-arts disable aRts audio output [autodetect]
413 --disable-esd disable esd audio output [autodetect]
414 --disable-pulse disable Pulseaudio audio output [autodetect]
415 --disable-jack disable JACK audio output [autodetect]
416 --disable-openal disable OpenAL audio output [autodetect]
417 --disable-nas disable NAS audio output [autodetect]
418 --disable-sgiaudio disable SGI audio output [autodetect]
419 --disable-sunaudio disable Sun audio output [autodetect]
420 --disable-dart disable DART audio output [autodetect]
421 --disable-win32waveout disable Windows waveout audio output [autodetect]
422 --disable-select disable using select() on the audio device [enable]
424 Miscellaneous options:
425 --enable-runtime-cpudetection enable runtime CPU detection [disable]
426 --enable-cross-compile enable cross-compilation [autodetect]
427 --cc=COMPILER C compiler to build MPlayer [gcc]
428 --host-cc=COMPILER C compiler for tools needed while building [gcc]
429 --as=ASSEMBLER assembler to build MPlayer [as]
430 --nm=NM nm tool to build MPlayer [nm]
431 --yasm=YASM Yasm assembler to build MPlayer [yasm]
432 --ar=AR librarian to build MPlayer [ar]
433 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
434 --windres=WINDRES windres to build MPlayer [windres]
435 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
436 --enable-static build a statically linked binary
437 --charset=charset convert the console messages to this character set
438 --language=list a white space or comma separated list of languages for
439 translated man pages, the first language is used for
440 messages and the GUI (the environment variable
441 \$LINGUAS is also honored) [en]
442 (Available: all $msg_lang_all)
443 --with-install=PATH path to a custom install program
445 Advanced options:
446 --enable-mmx enable MMX [autodetect]
447 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
448 --enable-3dnow enable 3DNow! [autodetect]
449 --enable-3dnowext enable extended 3DNow! [autodetect]
450 --enable-sse enable SSE [autodetect]
451 --enable-sse2 enable SSE2 [autodetect]
452 --enable-ssse3 enable SSSE3 [autodetect]
453 --enable-shm enable shm [autodetect]
454 --enable-altivec enable AltiVec (PowerPC) [autodetect]
455 --enable-armv5te enable DSP extensions (ARM) [autodetect]
456 --enable-armv6 enable ARMv6 (ARM) [autodetect]
457 --enable-armv6t2 enable ARMv6t2 (ARM) [autodetect]
458 --enable-armvfp enable ARM VFP (ARM) [autodetect]
459 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
460 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
461 --enable-big-endian force byte order to big-endian [autodetect]
462 --enable-debug[=1-3] compile-in debugging information [disable]
463 --enable-profile compile-in profiling information [disable]
464 --disable-sighandler disable sighandler for crashes [enable]
465 --enable-crash-debug enable automatic gdb attach on crash [disable]
466 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
468 Use these options if autodetection fails:
469 --extra-cflags=FLAGS extra CFLAGS
470 --extra-ldflags=FLAGS extra LDFLAGS
471 --extra-libs=FLAGS extra linker flags
472 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
473 --extra-libs-mencoder=FLAGS extra linker flags for MEncoder
474 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
476 --with-freetype-config=PATH path to freetype-config
477 --with-fribidi-config=PATH path to fribidi-config
478 --with-glib-config=PATH path to glib*-config
479 --with-gtk-config=PATH path to gtk*-config
480 --with-sdl-config=PATH path to sdl*-config
481 --with-dvdnav-config=PATH path to dvdnav-config
482 --with-dvdread-config=PATH path to dvdread-config
484 This configure script is NOT autoconf-based, even though its output is similar.
485 It will try to autodetect all configuration options. If you --enable an option
486 it will be forcefully turned on, skipping autodetection. This can break
487 compilation, so you need to know what you are doing.
489 exit 0
490 } #show_help()
492 # GOTCHA: the variables below defines the default behavior for autodetection
493 # and have - unless stated otherwise - at least 2 states : yes no
494 # If autodetection is available then the third state is: auto
495 _mmx=auto
496 _3dnow=auto
497 _3dnowext=auto
498 _mmxext=auto
499 _sse=auto
500 _sse2=auto
501 _ssse3=auto
502 _cmov=auto
503 _fast_cmov=auto
504 _armv5te=auto
505 _armv6=auto
506 _armv6t2=auto
507 _armvfp=auto
508 _iwmmxt=auto
509 _mtrr=auto
510 _altivec=auto
511 _install=install
512 _ranlib=ranlib
513 _windres=windres
514 _cc=cc
515 _ar=ar
516 test "$CC" && _cc="$CC"
517 _as=auto
518 _nm=auto
519 _yasm=yasm
520 _runtime_cpudetection=no
521 _cross_compile=auto
522 _prefix="/usr/local"
523 _libavutil_a=auto
524 _libavutil_so=auto
525 _libavcodec_a=auto
526 _libamr_nb=auto
527 _libamr_wb=auto
528 _libavdecoders_all=`sed -n 's/^[^#]*DEC.*(.*, *\(.*\)).*/\1_decoder/p' ffmpeg/libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]'`
529 _libavdecoders=` echo $_libavdecoders_all | sed -e 's/ LIB[A-Z0-9_]*_DECODER//g' -e s/MPEG4AAC_DECODER//`
530 _libavencoders_all=`sed -n 's/^[^#]*ENC.*(.*, *\(.*\)).*/\1_encoder/p' ffmpeg/libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]'`
531 _libavencoders=` echo $_libavencoders_all | sed 's/ LIB[A-Z0-9_]*_ENCODER//g'`
532 _libavparsers_all=`sed -n 's/^[^#]*PARSER.*(.*, *\(.*\)).*/\1_parser/p' ffmpeg/libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]'`
533 _libavparsers=$_libavparsers_all
534 _libavbsfs_all=`sed -n 's/^[^#]*BSF.*(.*, *\(.*\)).*/\1_bsf/p' ffmpeg/libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]'`
535 _libavbsfs=$_libavbsfs_all
536 _libavdemuxers_all=`sed -n 's/^[^#]*DEMUX.*(.*, *\(.*\)).*/\1_demuxer/p' ffmpeg/libavformat/allformats.c | tr '[a-z]' '[A-Z]'`
537 _libavdemuxers=`echo $_libavdemuxers_all | sed -e 's/ LIB[A-Z0-9_]*_DEMUXER//g' -e s/REDIR_DEMUXER// -e s/RTSP_DEMUXER// -e s/SDP_DEMUXER// -e s/AVISYNTH_DEMUXER// `
538 _libavmuxers_all=`sed -n 's/^[^#]*_MUX.*(.*, *\(.*\)).*/\1_muxer/p' ffmpeg/libavformat/allformats.c | tr '[a-z]' '[A-Z]'`
539 _libavmuxers=`echo $_libavmuxers_all | sed -e 's/ LIB[A-Z0-9_]*_MUXER//g' -e s/RTP_MUXER// `
540 _libavprotocols_all=`sed -n 's/^[^#]*PROTOCOL.*(.*, *\(.*\)).*/\1_protocol/p' ffmpeg/libavformat/allformats.c | tr '[a-z]' '[A-Z]'`
541 _libavcodec_so=auto
542 _libavformat_a=auto
543 _libavformat_so=auto
544 _libpostproc_a=auto
545 _libpostproc_so=auto
546 _libswscale_a=auto
547 _libswscale_so=auto
548 _libavcodec_mpegaudio_hp=yes
549 _mencoder=yes
550 _mplayer=yes
551 _x11=auto
552 _xshape=auto
553 _xss=auto
554 _dga1=auto
555 _dga2=auto
556 _xv=auto
557 _xvmc=no #auto when complete
558 _vdpau=auto
559 _sdl=auto
560 _kva=auto
561 _direct3d=auto
562 _directx=auto
563 _win32waveout=auto
564 _nas=auto
565 _png=auto
566 _mng=auto
567 _jpeg=auto
568 _pnm=yes
569 _md5sum=yes
570 _yuv4mpeg=yes
571 _gif=auto
572 _gl=auto
573 _ggi=auto
574 _ggiwmh=auto
575 _aa=auto
576 _caca=auto
577 _svga=auto
578 _vesa=auto
579 _fbdev=auto
580 _dvb=auto
581 _dvbhead=auto
582 _dxr2=auto
583 _dxr3=auto
584 _ivtv=auto
585 _v4l2=auto
586 _iconv=auto
587 _langinfo=auto
588 _rtc=auto
589 _ossaudio=auto
590 _arts=auto
591 _esd=auto
592 _pulse=auto
593 _jack=auto
594 _dart=auto
595 _openal=auto
596 _libcdio=auto
597 _liblzo=auto
598 _mad=auto
599 _mp3lame=auto
600 _mp3lame_lavc=auto
601 _toolame=auto
602 _twolame=auto
603 _tremor=auto
604 _tremor_internal=yes
605 _tremor_low=no
606 _libvorbis=auto
607 _speex=auto
608 _theora=auto
609 _mp3lib=auto
610 _liba52=auto
611 _liba52_internal=auto
612 _libdca=auto
613 _libmpeg2=auto
614 _faad=auto
615 _faad_internal=auto
616 _faad_fixed=no
617 _faac=auto
618 _faac_lavc=auto
619 _ladspa=auto
620 _libbs2b=auto
621 _xmms=no
622 _dvdnav=auto
623 _dvdnavconfig=dvdnav-config
624 _dvdreadconfig=dvdread-config
625 _dvdread=auto
626 _dvdread_internal=auto
627 _libdvdcss_internal=auto
628 _xanim=auto
629 _real=auto
630 _live=auto
631 _nemesi=auto
632 _native_rtsp=yes
633 _xinerama=auto
634 _mga=auto
635 _xmga=auto
636 _vm=auto
637 _xf86keysym=auto
638 _mlib=no #broken, thus disabled
639 _sgiaudio=auto
640 _sunaudio=auto
641 _alsa=auto
642 _fastmemcpy=yes
643 _unrar_exec=auto
644 _win32dll=auto
645 _select=yes
646 _radio=no
647 _radio_capture=no
648 _radio_v4l=auto
649 _radio_v4l2=auto
650 _radio_bsdbt848=auto
651 _tv=yes
652 _tv_v4l1=auto
653 _tv_v4l2=auto
654 _tv_bsdbt848=auto
655 _tv_dshow=auto
656 _tv_teletext=auto
657 _pvr=auto
658 _network=yes
659 _winsock2_h=auto
660 _smb=auto
661 _vidix=auto
662 _vidix_pcidb=yes
663 _dhahelper=no
664 _svgalib_helper=no
665 _joystick=no
666 _xvid=auto
667 _xvid_lavc=auto
668 _x264=auto
669 _x264_lavc=auto
670 _libdirac_lavc=auto
671 _libschroedinger_lavc=auto
672 _libnut=auto
673 _lirc=auto
674 _lircc=auto
675 _apple_remote=auto
676 _apple_ir=auto
677 _gui=no
678 _gtk1=no
679 _termcap=auto
680 _termios=auto
681 _3dfx=no
682 _s3fb=no
683 _wii=no
684 _tdfxfb=no
685 _tdfxvid=no
686 _xvr100=auto
687 _tga=yes
688 _directfb=auto
689 _zr=auto
690 _bl=no
691 _largefiles=yes
692 #_language=en
693 _shm=auto
694 _linux_devfs=no
695 _charset="UTF-8"
696 _dynamic_plugins=no
697 _crash_debug=no
698 _sighandler=yes
699 _libdv=auto
700 _cdparanoia=auto
701 _cddb=auto
702 _big_endian=auto
703 _bitmap_font=yes
704 _freetype=auto
705 _fontconfig=auto
706 _menu=no
707 _qtx=auto
708 _macosx=auto
709 _maemo=auto
710 _macosx_finder=no
711 _macosx_bundle=auto
712 _sortsub=yes
713 _freetypeconfig='freetype-config'
714 _fribidi=auto
715 _fribidiconfig='fribidi-config'
716 _enca=auto
717 _inet6=auto
718 _gethostbyname2=auto
719 _ftp=yes
720 _musepack=auto
721 _vstream=auto
722 _pthreads=auto
723 _w32threads=auto
724 _ass=auto
725 _rpath=no
726 _asmalign_pot=auto
727 _stream_cache=yes
728 _priority=no
729 def_dos_paths="#define HAVE_DOS_PATHS 0"
730 def_stream_cache="#define CONFIG_STREAM_CACHE 1"
731 def_priority="#undef CONFIG_PRIORITY"
732 def_pthread_cache="#undef PTHREAD_CACHE"
733 _need_shmem=yes
734 for ac_option do
735 case "$ac_option" in
736 --help|-help|-h)
737 show_help
739 --prefix=*)
740 _prefix=`echo $ac_option | cut -d '=' -f 2`
742 --bindir=*)
743 _bindir=`echo $ac_option | cut -d '=' -f 2`
745 --datadir=*)
746 _datadir=`echo $ac_option | cut -d '=' -f 2`
748 --mandir=*)
749 _mandir=`echo $ac_option | cut -d '=' -f 2`
751 --confdir=*)
752 _confdir=`echo $ac_option | cut -d '=' -f 2`
754 --libdir=*)
755 _libdir=`echo $ac_option | cut -d '=' -f 2`
757 --codecsdir=*)
758 _codecsdir=`echo $ac_option | cut -d '=' -f 2`
760 --win32codecsdir=*)
761 _win32codecsdir=`echo $ac_option | cut -d '=' -f 2`
763 --xanimcodecsdir=*)
764 _xanimcodecsdir=`echo $ac_option | cut -d '=' -f 2`
766 --realcodecsdir=*)
767 _realcodecsdir=`echo $ac_option | cut -d '=' -f 2`
770 --with-install=*)
771 _install=`echo $ac_option | cut -d '=' -f 2 `
773 --with-xvmclib=*)
774 _xvmclib=`echo $ac_option | cut -d '=' -f 2`
777 --with-sdl-config=*)
778 _sdlconfig=`echo $ac_option | cut -d '=' -f 2`
780 --with-freetype-config=*)
781 _freetypeconfig=`echo $ac_option | cut -d '=' -f 2`
783 --with-fribidi-config=*)
784 _fribidiconfig=`echo $ac_option | cut -d '=' -f 2`
786 --with-gtk-config=*)
787 _gtkconfig=`echo $ac_option | cut -d '=' -f 2`
789 --with-glib-config=*)
790 _glibconfig=`echo $ac_option | cut -d '=' -f 2`
792 --with-dvdnav-config=*)
793 _dvdnavconfig=`echo $ac_option | cut -d '=' -f 2`
795 --with-dvdread-config=*)
796 _dvdreadconfig=`echo $ac_option | cut -d '=' -f 2`
799 --extra-cflags=*)
800 extra_cflags=`echo $ac_option | cut -d '=' -f 2`
802 --extra-ldflags=*)
803 extra_ldflags=`echo $ac_option | cut -d '=' -f 2`
805 --extra-libs=*)
806 extra_libs=`echo $ac_option | cut -d '=' -f 2`
808 --extra-libs-mplayer=*)
809 libs_mplayer=`echo $ac_option | cut -d '=' -f 2`
811 --extra-libs-mencoder=*)
812 libs_mencoder=`echo $ac_option | cut -d '=' -f 2`
815 --target=*)
816 _target=`echo $ac_option | cut -d '=' -f 2`
818 --cc=*)
819 _cc=`echo $ac_option | cut -d '=' -f 2`
821 --host-cc=*)
822 _host_cc=`echo $ac_option | cut -d '=' -f 2`
824 --as=*)
825 _as=`echo $ac_option | cut -d '=' -f 2`
827 --nm=*)
828 _nm=`echo $ac_option | cut -d '=' -f 2`
830 --yasm=*)
831 _yasm=`echo $ac_option | cut -d '=' -f 2`
833 --ar=*)
834 _ar=`echo $ac_option | cut -d '=' -f 2`
836 --ranlib=*)
837 _ranlib=`echo $ac_option | cut -d '=' -f 2`
839 --windres=*)
840 _windres=`echo $ac_option | cut -d '=' -f 2`
842 --charset=*)
843 _charset=`echo $ac_option | cut -d '=' -f 2`
845 --language=*)
846 _language=`echo $ac_option | cut -d '=' -f 2`
849 --enable-static)
850 _ld_static='-static'
852 --disable-static)
853 _ld_static=''
855 --enable-profile)
856 _profile='-p'
858 --disable-profile)
859 _profile=
861 --enable-debug)
862 _debug='-g'
864 --enable-debug=*)
865 _debug=`echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2`
867 --disable-debug)
868 _debug=
870 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
871 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
872 --enable-cross-compile) _cross_compile=yes ;;
873 --disable-cross-compile) _cross_compile=no ;;
874 --enable-mencoder) _mencoder=yes ;;
875 --disable-mencoder) _mencoder=no ;;
876 --enable-mplayer) _mplayer=yes ;;
877 --disable-mplayer) _mplayer=no ;;
878 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
879 --disable-dynamic-plugins) _dynamic_plugins=no ;;
880 --enable-x11) _x11=yes ;;
881 --disable-x11) _x11=no ;;
882 --enable-xshape) _xshape=yes ;;
883 --disable-xshape) _xshape=no ;;
884 --enable-xss) _xss=yes ;;
885 --disable-xss) _xss=no ;;
886 --enable-xv) _xv=yes ;;
887 --disable-xv) _xv=no ;;
888 --enable-xvmc) _xvmc=yes ;;
889 --disable-xvmc) _xvmc=no ;;
890 --enable-vdpau) _vdpau=yes ;;
891 --disable-vdpau) _vdpau=no ;;
892 --enable-sdl) _sdl=yes ;;
893 --disable-sdl) _sdl=no ;;
894 --enable-kva) _kva=yes ;;
895 --disable-kva) _kva=no ;;
896 --enable-direct3d) _direct3d=yes ;;
897 --disable-direct3d) _direct3d=no ;;
898 --enable-directx) _directx=yes ;;
899 --disable-directx) _directx=no ;;
900 --enable-win32waveout) _win32waveout=yes ;;
901 --disable-win32waveout) _win32waveout=no ;;
902 --enable-nas) _nas=yes ;;
903 --disable-nas) _nas=no ;;
904 --enable-png) _png=yes ;;
905 --disable-png) _png=no ;;
906 --enable-mng) _mng=yes ;;
907 --disable-mng) _mng=no ;;
908 --enable-jpeg) _jpeg=yes ;;
909 --disable-jpeg) _jpeg=no ;;
910 --enable-pnm) _pnm=yes ;;
911 --disable-pnm) _pnm=no ;;
912 --enable-md5sum) _md5sum=yes ;;
913 --disable-md5sum) _md5sum=no ;;
914 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
915 --disable-yuv4mpeg) _yuv4mpeg=no ;;
916 --enable-gif) _gif=yes ;;
917 --disable-gif) _gif=no ;;
918 --enable-gl) _gl=yes ;;
919 --disable-gl) _gl=no ;;
920 --enable-ggi) _ggi=yes ;;
921 --disable-ggi) _ggi=no ;;
922 --enable-ggiwmh) _ggiwmh=yes ;;
923 --disable-ggiwmh) _ggiwmh=no ;;
924 --enable-aa) _aa=yes ;;
925 --disable-aa) _aa=no ;;
926 --enable-caca) _caca=yes ;;
927 --disable-caca) _caca=no ;;
928 --enable-svga) _svga=yes ;;
929 --disable-svga) _svga=no ;;
930 --enable-vesa) _vesa=yes ;;
931 --disable-vesa) _vesa=no ;;
932 --enable-fbdev) _fbdev=yes ;;
933 --disable-fbdev) _fbdev=no ;;
934 --enable-dvb) _dvb=yes ;;
935 --disable-dvb) _dvb=no ;;
936 --enable-dvbhead) _dvbhead=yes ;;
937 --disable-dvbhead) _dvbhead=no ;;
938 --enable-dxr2) _dxr2=yes ;;
939 --disable-dxr2) _dxr2=no ;;
940 --enable-dxr3) _dxr3=yes ;;
941 --disable-dxr3) _dxr3=no ;;
942 --enable-ivtv) _ivtv=yes ;;
943 --disable-ivtv) _ivtv=no ;;
944 --enable-v4l2) _v4l2=yes ;;
945 --disable-v4l2) _v4l2=no ;;
946 --enable-iconv) _iconv=yes ;;
947 --disable-iconv) _iconv=no ;;
948 --enable-langinfo) _langinfo=yes ;;
949 --disable-langinfo) _langinfo=no ;;
950 --enable-rtc) _rtc=yes ;;
951 --disable-rtc) _rtc=no ;;
952 --enable-libdv) _libdv=yes ;;
953 --disable-libdv) _libdv=no ;;
954 --enable-ossaudio) _ossaudio=yes ;;
955 --disable-ossaudio) _ossaudio=no ;;
956 --enable-arts) _arts=yes ;;
957 --disable-arts) _arts=no ;;
958 --enable-esd) _esd=yes ;;
959 --disable-esd) _esd=no ;;
960 --enable-pulse) _pulse=yes ;;
961 --disable-pulse) _pulse=no ;;
962 --enable-jack) _jack=yes ;;
963 --disable-jack) _jack=no ;;
964 --enable-openal) _openal=yes ;;
965 --disable-openal) _openal=no ;;
966 --enable-dart) _dart=yes ;;
967 --disable-dart) _dart=no ;;
968 --enable-mad) _mad=yes ;;
969 --disable-mad) _mad=no ;;
970 --enable-mp3lame) _mp3lame=yes ;;
971 --disable-mp3lame) _mp3lame=no ;;
972 --enable-mp3lame-lavc) _mp3lame_lavc=yes ;;
973 --disable-mp3lame-lavc) _mp3lame_lavc=no ;;
974 --enable-toolame) _toolame=yes ;;
975 --disable-toolame) _toolame=no ;;
976 --enable-twolame) _twolame=yes ;;
977 --disable-twolame) _twolame=no ;;
978 --enable-libcdio) _libcdio=yes ;;
979 --disable-libcdio) _libcdio=no ;;
980 --enable-liblzo) _liblzo=yes ;;
981 --disable-liblzo) _liblzo=no ;;
982 --enable-libvorbis) _libvorbis=yes ;;
983 --disable-libvorbis) _libvorbis=no ;;
984 --enable-speex) _speex=yes ;;
985 --disable-speex) _speex=no ;;
986 --enable-tremor) _tremor=yes ;;
987 --disable-tremor) _tremor=no ;;
988 --enable-tremor-internal) _tremor_internal=yes ;;
989 --disable-tremor-internal) _tremor_internal=no ;;
990 --enable-tremor-low) _tremor_low=yes ;;
991 --disable-tremor-low) _tremor_low=no ;;
992 --enable-theora) _theora=yes ;;
993 --disable-theora) _theora=no ;;
994 --enable-mp3lib) _mp3lib=yes ;;
995 --disable-mp3lib) _mp3lib=no ;;
996 --enable-liba52-internal) _liba52_internal=yes ;;
997 --disable-liba52-internal) _liba52_internal=no ;;
998 --enable-liba52) _liba52=yes ;;
999 --disable-liba52) _liba52=no ;;
1000 --enable-libdca) _libdca=yes ;;
1001 --disable-libdca) _libdca=no ;;
1002 --enable-libmpeg2) _libmpeg2=yes ;;
1003 --disable-libmpeg2) _libmpeg2=no ;;
1004 --enable-musepack) _musepack=yes ;;
1005 --disable-musepack) _musepack=no ;;
1006 --enable-faad) _faad=yes ;;
1007 --disable-faad) _faad=no ;;
1008 --enable-faad-internal) _faad_internal=yes ;;
1009 --disable-faad-internal) _faad_internal=no ;;
1010 --enable-faad-fixed) _faad_fixed=yes ;;
1011 --disable-faad-fixed) _faad_fixed=no ;;
1012 --enable-faac) _faac=yes ;;
1013 --disable-faac) _faac=no ;;
1014 --enable-faac-lavc) _faac_lavc=yes ;;
1015 --disable-faac-lavc) _faac_lavc=no ;;
1016 --enable-ladspa) _ladspa=yes ;;
1017 --disable-ladspa) _ladspa=no ;;
1018 --enable-libbs2b) _libbs2b=yes ;;
1019 --disable-libbs2b) _libbs2b=no ;;
1020 --enable-xmms) _xmms=yes ;;
1021 --disable-xmms) _xmms=no ;;
1022 --enable-dvdread) _dvdread=yes ;;
1023 --disable-dvdread) _dvdread=no ;;
1024 --enable-dvdread-internal) _dvdread_internal=yes ;;
1025 --disable-dvdread-internal) _dvdread_internal=no ;;
1026 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
1027 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
1028 --enable-dvdnav) _dvdnav=yes ;;
1029 --disable-dvdnav) _dvdnav=no ;;
1030 --enable-xanim) _xanim=yes ;;
1031 --disable-xanim) _xanim=no ;;
1032 --enable-real) _real=yes ;;
1033 --disable-real) _real=no ;;
1034 --enable-live) _live=yes ;;
1035 --disable-live) _live=no ;;
1036 --enable-nemesi) _nemesi=yes ;;
1037 --disable-nemesi) _nemesi=no ;;
1038 --enable-xinerama) _xinerama=yes ;;
1039 --disable-xinerama) _xinerama=no ;;
1040 --enable-mga) _mga=yes ;;
1041 --disable-mga) _mga=no ;;
1042 --enable-xmga) _xmga=yes ;;
1043 --disable-xmga) _xmga=no ;;
1044 --enable-vm) _vm=yes ;;
1045 --disable-vm) _vm=no ;;
1046 --enable-xf86keysym) _xf86keysym=yes ;;
1047 --disable-xf86keysym) _xf86keysym=no ;;
1048 --enable-mlib) _mlib=yes ;;
1049 --disable-mlib) _mlib=no ;;
1050 --enable-sunaudio) _sunaudio=yes ;;
1051 --disable-sunaudio) _sunaudio=no ;;
1052 --enable-sgiaudio) _sgiaudio=yes ;;
1053 --disable-sgiaudio) _sgiaudio=no ;;
1054 --enable-alsa) _alsa=yes ;;
1055 --disable-alsa) _alsa=no ;;
1056 --enable-tv) _tv=yes ;;
1057 --disable-tv) _tv=no ;;
1058 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1059 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1060 --enable-tv-v4l1) _tv_v4l1=yes ;;
1061 --disable-tv-v4l1) _tv_v4l1=no ;;
1062 --enable-tv-v4l2) _tv_v4l2=yes ;;
1063 --disable-tv-v4l2) _tv_v4l2=no ;;
1064 --enable-tv-dshow) _tv_dshow=yes ;;
1065 --disable-tv-dshow) _tv_dshow=no ;;
1066 --enable-tv-teletext) _tv_teletext=yes ;;
1067 --disable-tv-teletext) _tv_teletext=no ;;
1068 --enable-radio) _radio=yes ;;
1069 --enable-radio-capture) _radio_capture=yes ;;
1070 --disable-radio-capture) _radio_capture=no ;;
1071 --disable-radio) _radio=no ;;
1072 --enable-radio-v4l) _radio_v4l=yes ;;
1073 --disable-radio-v4l) _radio_v4l=no ;;
1074 --enable-radio-v4l2) _radio_v4l2=yes ;;
1075 --disable-radio-v4l2) _radio_v4l2=no ;;
1076 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1077 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1078 --enable-pvr) _pvr=yes ;;
1079 --disable-pvr) _pvr=no ;;
1080 --enable-fastmemcpy) _fastmemcpy=yes ;;
1081 --disable-fastmemcpy) _fastmemcpy=no ;;
1082 --enable-network) _network=yes ;;
1083 --disable-network) _network=no ;;
1084 --enable-winsock2_h) _winsock2_h=yes ;;
1085 --disable-winsock2_h) _winsock2_h=no ;;
1086 --enable-smb) _smb=yes ;;
1087 --disable-smb) _smb=no ;;
1088 --enable-vidix) _vidix=yes ;;
1089 --disable-vidix) _vidix=no ;;
1090 --with-vidix-drivers=*)
1091 _vidix_drivers=`echo $ac_option | cut -d '=' -f 2`
1093 --disable-vidix-pcidb) _vidix_pcidb=no ;;
1094 --enable-dhahelper) _dhahelper=yes ;;
1095 --disable-dhahelper) _dhahelper=no ;;
1096 --enable-svgalib_helper) _svgalib_helper=yes ;;
1097 --disable-svgalib_helper) _svgalib_helper=no ;;
1098 --enable-joystick) _joystick=yes ;;
1099 --disable-joystick) _joystick=no ;;
1100 --enable-xvid) _xvid=yes ;;
1101 --disable-xvid) _xvid=no ;;
1102 --enable-xvid-lavc) _xvid_lavc=yes ;;
1103 --disable-xvid-lavc) _xvid_lavc=no ;;
1104 --enable-x264) _x264=yes ;;
1105 --disable-x264) _x264=no ;;
1106 --enable-x264-lavc) _x264_lavc=yes ;;
1107 --disable-x264-lavc) _x264_lavc=no ;;
1108 --enable-libdirac-lavc) _libdirac_lavc=yes ;;
1109 --disable-libdirac-lavc) _libdirac_lavc=no ;;
1110 --enable-libschroedinger-lavc) _libschroedinger_lavc=yes ;;
1111 --disable-libschroedinger-lavc) _libschroedinger_lavc=no ;;
1112 --enable-libnut) _libnut=yes ;;
1113 --disable-libnut) _libnut=no ;;
1114 --enable-libavutil_a) _libavutil_a=yes ;;
1115 --disable-libavutil_a) _libavutil_a=no ;;
1116 --enable-libavutil_so) _libavutil_so=yes ;;
1117 --disable-libavutil_so) _libavutil_so=no ;;
1118 --enable-libavcodec_a) _libavcodec_a=yes ;;
1119 --disable-libavcodec_a) _libavcodec_a=no ;;
1120 --enable-libavcodec_so) _libavcodec_so=yes ;;
1121 --disable-libavcodec_so) _libavcodec_so=no ;;
1122 --enable-libamr_nb) _libamr_nb=yes ;;
1123 --disable-libamr_nb) _libamr_nb=no ;;
1124 --enable-libamr_wb) _libamr_wb=yes ;;
1125 --disable-libamr_wb) _libamr_wb=no ;;
1126 --enable-decoder=*) _libavdecoders="$_libavdecoders `echo $ac_option | cut -d '=' -f 2`" ;;
1127 --disable-decoder=*) _libavdecoders=`echo $_libavdecoders | sed "s/\`echo $ac_option | cut -d '=' -f 2\`//g"` ;;
1128 --enable-encoder=*) _libavencoders="$_libavencoders `echo $ac_option | cut -d '=' -f 2`" ;;
1129 --disable-encoder=*) _libavencoders=`echo $_libavencoders | sed "s/\`echo $ac_option | cut -d '=' -f 2\`//g"` ;;
1130 --enable-parser=*) _libavparsers="$_libavparsers `echo $ac_option | cut -d '=' -f 2`" ;;
1131 --disable-parser=*) _libavparsers=`echo $_libavparsers | sed "s/\`echo $ac_option | cut -d '=' -f 2\`//g"` ;;
1132 --enable-demuxer=*) _libavdemuxers="$_libavdemuxers `echo $ac_option | cut -d '=' -f 2`" ;;
1133 --disable-demuxer=*) _libavdemuxers=`echo $_libavdemuxers | sed "s/\`echo $ac_option | cut -d '=' -f 2\`//g"` ;;
1134 --enable-muxer=*) _libavmuxers="$_libavmuxers `echo $ac_option | cut -d '=' -f 2`" ;;
1135 --disable-muxer=*) _libavmuxers=`echo $_libavmuxers | sed "s/\`echo $ac_option | cut -d '=' -f 2\`//g"` ;;
1136 --enable-libavformat_a) _libavformat_a=yes ;;
1137 --disable-libavformat_a) _libavformat_a=no ;;
1138 --enable-libavformat_so) _libavformat_so=yes ;;
1139 --disable-libavformat_so) _libavformat_so=no ;;
1140 --enable-libpostproc_a) _libpostproc_a=yes ;;
1141 --disable-libpostproc_a) _libpostproc_a=no ;;
1142 --enable-libpostproc_so) _libpostproc_so=yes ;;
1143 --disable-libpostproc_so) _libpostproc_so=no ;;
1144 --enable-libswscale_a) _libswscale_a=yes ;;
1145 --disable-libswscale_a) _libswscale_a=no ;;
1146 --enable-libswscale_so) _libswscale_so=yes ;;
1147 --disable-libswscale_so) _libswscale_so=no ;;
1148 --enable-libavcodec_mpegaudio_hp) _libavcodec_mpegaudio_hp=yes ;;
1149 --disable-libavcodec_mpegaudio_hp) _libavcodec_mpegaudio_hp=no ;;
1151 --enable-lirc) _lirc=yes ;;
1152 --disable-lirc) _lirc=no ;;
1153 --enable-lircc) _lircc=yes ;;
1154 --disable-lircc) _lircc=no ;;
1155 --enable-apple-remote) _apple_remote=yes ;;
1156 --disable-apple-remote) _apple_remote=no ;;
1157 --enable-apple-ir) _apple_ir=yes ;;
1158 --disable-apple-ir) _apple_ir=no ;;
1159 --enable-gui) _gui=yes ;;
1160 --disable-gui) _gui=no ;;
1161 --enable-gtk1) _gtk1=yes ;;
1162 --disable-gtk1) _gtk1=no ;;
1163 --enable-termcap) _termcap=yes ;;
1164 --disable-termcap) _termcap=no ;;
1165 --enable-termios) _termios=yes ;;
1166 --disable-termios) _termios=no ;;
1167 --enable-3dfx) _3dfx=yes ;;
1168 --disable-3dfx) _3dfx=no ;;
1169 --enable-s3fb) _s3fb=yes ;;
1170 --disable-s3fb) _s3fb=no ;;
1171 --enable-wii) _wii=yes ;;
1172 --disable-wii) _wii=no ;;
1173 --enable-tdfxfb) _tdfxfb=yes ;;
1174 --disable-tdfxfb) _tdfxfb=no ;;
1175 --disable-tdfxvid) _tdfxvid=no ;;
1176 --enable-tdfxvid) _tdfxvid=yes ;;
1177 --disable-xvr100) _xvr100=no ;;
1178 --enable-xvr100) _xvr100=yes ;;
1179 --disable-tga) _tga=no ;;
1180 --enable-tga) _tga=yes ;;
1181 --enable-directfb) _directfb=yes ;;
1182 --disable-directfb) _directfb=no ;;
1183 --enable-zr) _zr=yes ;;
1184 --disable-zr) _zr=no ;;
1185 --enable-bl) _bl=yes ;;
1186 --disable-bl) _bl=no ;;
1187 --enable-mtrr) _mtrr=yes ;;
1188 --disable-mtrr) _mtrr=no ;;
1189 --enable-largefiles) _largefiles=yes ;;
1190 --disable-largefiles) _largefiles=no ;;
1191 --enable-shm) _shm=yes ;;
1192 --disable-shm) _shm=no ;;
1193 --enable-select) _select=yes ;;
1194 --disable-select) _select=no ;;
1195 --enable-linux-devfs) _linux_devfs=yes ;;
1196 --disable-linux-devfs) _linux_devfs=no ;;
1197 --enable-cdparanoia) _cdparanoia=yes ;;
1198 --disable-cdparanoia) _cdparanoia=no ;;
1199 --enable-cddb) _cddb=yes ;;
1200 --disable-cddb) _cddb=no ;;
1201 --enable-big-endian) _big_endian=yes ;;
1202 --disable-big-endian) _big_endian=no ;;
1203 --enable-bitmap-font) _bitmap_font=yes ;;
1204 --disable-bitmap-font) _bitmap_font=no ;;
1205 --enable-freetype) _freetype=yes ;;
1206 --disable-freetype) _freetype=no ;;
1207 --enable-fontconfig) _fontconfig=yes ;;
1208 --disable-fontconfig) _fontconfig=no ;;
1209 --enable-unrarexec) _unrar_exec=yes ;;
1210 --disable-unrarexec) _unrar_exec=no ;;
1211 --enable-ftp) _ftp=yes ;;
1212 --disable-ftp) _ftp=no ;;
1213 --enable-vstream) _vstream=yes ;;
1214 --disable-vstream) _vstream=no ;;
1215 --enable-pthreads) _pthreads=yes ;;
1216 --disable-pthreads) _pthreads=no ;;
1217 --enable-w32threads) _w32threads=yes ;;
1218 --disable-w32threads) _w32threads=no ;;
1219 --enable-ass) _ass=yes ;;
1220 --disable-ass) _ass=no ;;
1221 --enable-rpath) _rpath=yes ;;
1222 --disable-rpath) _rpath=no ;;
1224 --enable-fribidi) _fribidi=yes ;;
1225 --disable-fribidi) _fribidi=no ;;
1227 --enable-enca) _enca=yes ;;
1228 --disable-enca) _enca=no ;;
1230 --enable-inet6) _inet6=yes ;;
1231 --disable-inet6) _inet6=no ;;
1233 --enable-gethostbyname2) _gethostbyname2=yes ;;
1234 --disable-gethostbyname2) _gethostbyname2=no ;;
1236 --enable-dga1) _dga1=yes ;;
1237 --disable-dga1) _dga1=no ;;
1238 --enable-dga2) _dga2=yes ;;
1239 --disable-dga2) _dga2=no ;;
1241 --enable-menu) _menu=yes ;;
1242 --disable-menu) _menu=no ;;
1244 --enable-qtx) _qtx=yes ;;
1245 --disable-qtx) _qtx=no ;;
1247 --enable-macosx) _macosx=yes ;;
1248 --disable-macosx) _macosx=no ;;
1249 --enable-macosx-finder) _macosx_finder=yes ;;
1250 --disable-macosx-finder) _macosx_finder=no ;;
1251 --enable-macosx-bundle) _macosx_bundle=yes;;
1252 --disable-macosx-bundle) _macosx_bundle=no;;
1254 --enable-maemo) _maemo=yes ;;
1255 --disable-maemo) _maemo=no ;;
1257 --enable-sortsub) _sortsub=yes ;;
1258 --disable-sortsub) _sortsub=no ;;
1260 --enable-crash-debug) _crash_debug=yes ;;
1261 --disable-crash-debug) _crash_debug=no ;;
1262 --enable-sighandler) _sighandler=yes ;;
1263 --disable-sighandler) _sighandler=no ;;
1264 --enable-win32dll) _win32dll=yes ;;
1265 --disable-win32dll) _win32dll=no ;;
1267 --enable-sse) _sse=yes ;;
1268 --disable-sse) _sse=no ;;
1269 --enable-sse2) _sse2=yes ;;
1270 --disable-sse2) _sse2=no ;;
1271 --enable-ssse3) _ssse3=yes ;;
1272 --disable-ssse3) _ssse3=no ;;
1273 --enable-mmxext) _mmxext=yes ;;
1274 --disable-mmxext) _mmxext=no ;;
1275 --enable-3dnow) _3dnow=yes ;;
1276 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1277 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1278 --disable-3dnowext) _3dnowext=no ;;
1279 --enable-cmov) _cmov=yes ;;
1280 --disable-cmov) _cmov=no ;;
1281 --enable-fast-cmov) _fast_cmov=yes ;;
1282 --disable-fast-cmov) _fast_cmov=no ;;
1283 --enable-altivec) _altivec=yes ;;
1284 --disable-altivec) _altivec=no ;;
1285 --enable-armv5te) _armv5te=yes ;;
1286 --disable-armv5te) _armv5te=no ;;
1287 --enable-armv6) _armv6=yes ;;
1288 --disable-armv6) _armv6=no ;;
1289 --enable-armv6t2) _armv6t2=yes ;;
1290 --disable-armv6t2) _armv6t2=no ;;
1291 --enable-armvfp) _armvfp=yes ;;
1292 --disable-armvfp) _armvfp=no ;;
1293 --enable-iwmmxt) _iwmmxt=yes ;;
1294 --disable-iwmmxt) _iwmmxt=no ;;
1295 --enable-mmx) _mmx=yes ;;
1296 --disable-mmx) # 3Dnow! and MMX2 require MMX
1297 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1300 echo "Unknown parameter: $ac_option"
1301 exit 1
1304 esac
1305 done
1307 if test "$_gui" = yes ; then
1308 echo "Error: --enable-gui is no longer supported. Use an external frontend if you want a GUI." >&2
1309 exit 1
1312 # Atmos: moved this here, to be correct, if --prefix is specified
1313 test -z "$_bindir" && _bindir="$_prefix/bin"
1314 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1315 test -z "$_mandir" && _mandir="$_prefix/share/man"
1316 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1317 test -z "$_libdir" && _libdir="$_prefix/lib"
1319 # Determine our OS name and CPU architecture
1320 if test -z "$_target" ; then
1321 # OS name
1322 system_name=`uname -s 2>&1`
1323 case "$system_name" in
1324 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1326 IRIX*)
1327 system_name=IRIX
1329 GNU/kFreeBSD)
1330 system_name=FreeBSD
1332 HP-UX*)
1333 system_name=HP-UX
1335 [cC][yY][gG][wW][iI][nN]*)
1336 system_name=CYGWIN
1338 MINGW32*)
1339 system_name=MINGW32
1341 OS/2*)
1342 system_name=OS/2
1345 system_name="$system_name-UNKNOWN"
1347 esac
1350 # host's CPU/instruction set
1351 host_arch=`uname -p 2>&1`
1352 case "$host_arch" in
1353 i386|sparc|ppc|alpha|arm|mips|vax)
1355 powerpc) # Darwin returns 'powerpc'
1356 host_arch=ppc
1358 *) # uname -p on Linux returns 'unknown' for the processor type,
1359 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1361 # Maybe uname -m (machine hardware name) returns something we
1362 # recognize.
1364 # x86/x86pc is used by QNX
1365 case "`uname -m 2>&1`" in
1366 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 ;;
1367 ia64) host_arch=ia64 ;;
1368 x86_64|amd64)
1369 if [ -n "$($_cc -dumpmachine | sed -n '/^x86_64-/p;/^amd64-/p')" -a \
1370 -z "$(echo $CFLAGS $_cc | grep -- -m32)" ]; then
1371 host_arch=x86_64
1372 else
1373 host_arch=i386
1376 macppc|ppc|ppc64) host_arch=ppc ;;
1377 alpha) host_arch=alpha ;;
1378 sparc) host_arch=sparc ;;
1379 sparc64) host_arch=sparc64 ;;
1380 parisc*|hppa*|9000*) host_arch=hppa ;;
1381 arm*|zaurus|cats) host_arch=arm ;;
1382 sh3|sh4|sh4a) host_arch=sh ;;
1383 s390) host_arch=s390 ;;
1384 s390x) host_arch=s390x ;;
1385 mips*) host_arch=mips ;;
1386 vax) host_arch=vax ;;
1387 xtensa*) host_arch=xtensa ;;
1388 *) host_arch=UNKNOWN ;;
1389 esac
1391 esac
1392 else # if test -z "$_target"
1393 system_name=`echo $_target | cut -d '-' -f 2`
1394 case "`echo $system_name | tr A-Z a-z`" in
1395 linux) system_name=Linux ;;
1396 freebsd) system_name=FreeBSD ;;
1397 gnu/kfreebsd) system_name=FreeBSD ;;
1398 netbsd) system_name=NetBSD ;;
1399 bsd/os) system_name=BSD/OS ;;
1400 openbsd) system_name=OpenBSD ;;
1401 dragonfly) system_name=DragonFly ;;
1402 sunos) system_name=SunOS ;;
1403 qnx) system_name=QNX ;;
1404 morphos) system_name=MorphOS ;;
1405 amigaos) system_name=AmigaOS ;;
1406 mingw32msvc) system_name=MINGW32 ;;
1407 esac
1408 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1409 host_arch=`echo $_target | cut -d '-' -f 1`
1410 if test `echo $host_arch` != "x86_64" ; then
1411 host_arch=`echo $host_arch | tr '_' '-'`
1415 echo "Detected operating system: $system_name"
1416 echo "Detected host architecture: $host_arch"
1418 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1419 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1423 extra_cflags="-I. $extra_cflags"
1424 _timer=timer-linux.c
1425 _getch=getch2.c
1426 if freebsd ; then
1427 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1428 extra_cflags="$extra_cflags -I/usr/local/include"
1431 if netbsd || dragonfly ; then
1432 extra_ldflags="$extra_ldflags -L/usr/pkg/lib"
1433 extra_cflags="$extra_cflags -I/usr/pkg/include"
1436 if darwin; then
1437 extra_ldflags="$extra_ldflags -L/usr/local/lib"
1438 extra_cflags="$extra_cflags -I/usr/local/include"
1439 _timer=timer-darwin.c
1442 if aix ; then
1443 extra_ldflags="$extra_ldflags -lC"
1446 if irix ; then
1447 _ranlib='ar -r'
1448 elif linux ; then
1449 _ranlib='true'
1452 if win32 ; then
1453 _exesuf=".exe"
1454 # -lwinmm is always needed for osdep/timer-win2.c
1455 extra_ldflags="$extra_ldflags -lwinmm"
1456 _pe_executable=yes
1457 _timer=timer-win2.c
1458 _priority=yes
1459 def_dos_paths="#define HAVE_DOS_PATHS 1"
1460 def_priority="#define CONFIG_PRIORITY 1"
1463 if mingw32 ; then
1464 _getch=getch2-win.c
1465 _need_shmem=no
1468 if amigaos ; then
1469 _select=no
1470 _sighandler=no
1471 _stream_cache=no
1472 def_stream_cache="#undef CONFIG_STREAM_CACHE"
1475 if qnx ; then
1476 extra_ldflags="$extra_ldflags -lph"
1479 if os2 ; then
1480 _exesuf=".exe"
1481 _getch=getch2-os2.c
1482 _need_shmem=no
1483 _priority=yes
1484 def_dos_paths="#define HAVE_DOS_PATHS 1"
1485 def_priority="#define CONFIG_PRIORITY 1"
1488 for I in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1489 test "$I" && break
1490 done
1493 TMPLOG="configure.log"
1494 TMPC="$I/mplayer-conf-$RANDOM-$$.c"
1495 TMPCPP="$I/mplayer-conf-$RANDOM-$$.cpp"
1496 TMPEXE="$I/mplayer-conf-$RANDOM-$$$_exesuf"
1497 TMPH="$I/mplayer-conf-$RANDOM-$$.h"
1498 TMPS="$I/mplayer-conf-$RANDOM-$$.S"
1500 rm -f "$TMPLOG"
1501 echo configuration: $_configuration > "$TMPLOG"
1502 echo >> "$TMPLOG"
1505 # Check how to call 'head' and 'tail'. Newer versions spit out warnings
1506 # if used as 'head -1' instead of 'head -n 1', but older versions don't
1507 # know about '-n'.
1508 if test "`(echo line1 ; echo line2) | head -1 2>/dev/null`" = "line1" ; then
1509 _head() { head -$1 2>/dev/null ; }
1510 else
1511 _head() { head -n $1 2>/dev/null ; }
1513 if test "`(echo line1 ; echo line2) | tail -1 2>/dev/null`" = "line2" ; then
1514 _tail() { tail -$1 2>/dev/null ; }
1515 else
1516 _tail() { tail -n $1 2>/dev/null ; }
1519 # Checking CC version...
1520 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1521 if test "`basename $_cc`" = "icc" || test "`basename $_cc`" = "ecc"; then
1522 echocheck "$_cc version"
1523 cc_vendor=intel
1524 cc_name=`$_cc -V 2>&1 | _head 1 | cut -d ',' -f 1`
1525 cc_version=`$_cc -V 2>&1 | _head 1 | cut -d ',' -f 2 | cut -d ' ' -f 3`
1526 _cc_major=`echo $cc_version | cut -d '.' -f 1`
1527 _cc_minor=`echo $cc_version | cut -d '.' -f 2`
1528 # TODO verify older icc/ecc compatibility
1529 case $cc_version in
1531 cc_version="v. ?.??, bad"
1532 cc_fail=yes
1534 10.1|11.0|11.1)
1535 cc_version="$cc_version, ok"
1538 cc_version="$cc_version, bad"
1539 cc_fail=yes
1541 esac
1542 echores "$cc_version"
1543 else
1544 for _cc in "$_cc" cc gcc ; do
1545 cc_name_tmp=`$_cc -v 2>&1 | _tail 1 | cut -d ' ' -f 1`
1546 if test "$cc_name_tmp" = "gcc"; then
1547 cc_name=$cc_name_tmp
1548 echocheck "$_cc version"
1549 cc_vendor=gnu
1550 cc_version=`$_cc -dumpversion 2>&1`
1551 case $cc_version in
1552 2.96*)
1553 cc_fail=yes
1556 _cc_major=`echo $cc_version | cut -d '.' -f 1`
1557 _cc_minor=`echo $cc_version | cut -d '.' -f 2`
1558 _cc_mini=`echo $cc_version | cut -d '.' -f 3`
1560 esac
1561 echores "$cc_version"
1562 break
1564 done
1565 fi # icc
1566 test "$cc_fail" = yes && die "unsupported compiler version"
1568 echocheck "host cc"
1569 test "$_host_cc" || _host_cc=$_cc
1570 echores $_host_cc
1572 echocheck "cross compilation"
1573 if test $_cross_compile = auto ; then
1574 cat > $TMPC << EOF
1575 int main(void) { return 0; }
1577 _cross_compile=yes
1578 cc_check && "$TMPEXE" && _cross_compile=no
1580 echores $_cross_compile
1582 if test $_cross_compile = yes; then
1583 tmp_run() {
1584 return 0
1588 # ---
1590 # now that we know what compiler should be used for compilation, try to find
1591 # out which assembler is used by the $_cc compiler
1592 if test "$_as" = auto ; then
1593 _as=`$_cc -print-prog-name=as`
1594 test -z "$_as" && _as=as
1597 if test "$_nm" = auto ; then
1598 _nm=`$_cc -print-prog-name=nm`
1599 test -z "$_nm" && _nm=nm
1602 # XXX: this should be ok..
1603 _cpuinfo="echo"
1605 if test "$_runtime_cpudetection" = no ; then
1607 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1608 # FIXME: Remove the cygwin check once AMD CPUs are supported
1609 if test -r /proc/cpuinfo && ! cygwin; then
1610 # Linux with /proc mounted, extract CPU information from it
1611 _cpuinfo="cat /proc/cpuinfo"
1612 elif test -r /compat/linux/proc/cpuinfo && ! x86_32 ; then
1613 # FreeBSD with Linux emulation /proc mounted,
1614 # extract CPU information from it
1615 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1616 elif darwin && ! x86 ; then
1617 # use hostinfo on Darwin
1618 _cpuinfo="hostinfo"
1619 elif aix; then
1620 # use 'lsattr' on AIX
1621 _cpuinfo="lsattr -E -l proc0 -a type"
1622 elif x86; then
1623 # all other OSes try to extract CPU information from a small helper
1624 # program cpuinfo instead
1625 $_cc -o cpuinfo$_exesuf cpuinfo.c
1626 _cpuinfo="./cpuinfo$_exesuf"
1629 if x86 ; then
1630 # gather more CPU information
1631 pname=`$_cpuinfo | grep 'model name' | cut -d ':' -f 2 | _head 1`
1632 pvendor=`$_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | _head 1`
1633 pfamily=`$_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | _head 1`
1634 pmodel=`$_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | _head 1`
1635 pstepping=`$_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | _head 1`
1637 exts=`$_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | _head 1`
1639 pparam=`echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1640 -e s/xmm/sse/ -e s/kni/sse/`
1642 for ext in $pparam ; do
1643 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1644 done
1646 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1647 test $_sse = kernel_check && _mmxext=kernel_check
1649 echocheck "CPU vendor"
1650 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1652 echocheck "CPU type"
1653 echores "$pname"
1656 fi # test "$_runtime_cpudetection" = no
1658 if x86 && test "$_runtime_cpudetection" = no ; then
1659 extcheck() {
1660 if test "$1" = kernel_check ; then
1661 echocheck "kernel support of $2"
1662 cat > $TMPC <<EOF
1663 #include <stdlib.h>
1664 #include <signal.h>
1665 void catch() { exit(1); }
1666 int main(void) {
1667 signal(SIGILL, catch);
1668 __asm__ volatile ("$3":::"memory"); return 0;
1672 if cc_check && tmp_run ; then
1673 eval _$2=yes
1674 echores "yes"
1675 _optimizing="$_optimizing $2"
1676 return 0
1677 else
1678 eval _$2=no
1679 echores "failed"
1680 echo "It seems that your kernel does not correctly support $2."
1681 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1682 return 1
1685 return 0
1688 extcheck $_mmx "mmx" "emms"
1689 extcheck $_mmxext "mmxext" "sfence"
1690 extcheck $_3dnow "3dnow" "femms"
1691 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1692 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1693 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1694 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1695 extcheck $_cmov "cmov" "cmovb %%eax,%%ebx"
1697 echocheck "mtrr support"
1698 if test "$_mtrr" = kernel_check ; then
1699 _mtrr="yes"
1700 _optimizing="$_optimizing mtrr"
1702 echores "$_mtrr"
1704 if test "$_gcc3_ext" != ""; then
1705 # if we had to disable sse/sse2 because the active kernel does not
1706 # support this instruction set extension, we also have to tell
1707 # gcc3 to not generate sse/sse2 instructions for normal C code
1708 cat > $TMPC << EOF
1709 int main(void) { return 0; }
1711 cc_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1717 def_fast_64bit='#define HAVE_FAST_64BIT 0'
1718 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 0'
1719 _arch_all='X86 X86_32 X86_64 IA64 SPARC ARM AVR32 SH4 PPC ALPHA SGI_MIPS PA_RISC S390 S390X VAX BFIN XTENSA GENERIC'
1720 case "$host_arch" in
1721 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1722 _arch='X86 X86_32'
1723 _target_arch_x86="ARCH_X86 = yes"
1724 _target_arch="ARCH_X86_32 = yes"
1725 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1726 iproc=486
1727 proc=i486
1730 if test "$_runtime_cpudetection" = no ; then
1731 case "$pvendor" in
1732 AuthenticAMD)
1733 case "$pfamily" in
1734 3) proc=i386 iproc=386 ;;
1735 4) proc=i486 iproc=486 ;;
1736 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1737 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1738 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1739 proc=k6-3
1740 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1741 proc=geode
1742 elif test "$pmodel" -ge 8; then
1743 proc=k6-2
1744 elif test "$pmodel" -ge 6; then
1745 proc=k6
1746 else
1747 proc=i586
1750 6) iproc=686
1751 # It's a bit difficult to determine the correct type of Family 6
1752 # AMD CPUs just from their signature. Instead, we check directly
1753 # whether it supports SSE.
1754 if test "$_sse" = yes; then
1755 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1756 proc=athlon-xp
1757 else
1758 # Again, gcc treats athlon and athlon-tbird similarly.
1759 proc=athlon
1762 15) iproc=686
1763 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1764 # caught and remedied in the optimization tests below.
1765 proc=k8
1768 *) proc=k8 iproc=686 ;;
1769 esac
1771 GenuineIntel)
1772 case "$pfamily" in
1773 3) proc=i386 iproc=386 ;;
1774 4) proc=i486 iproc=486 ;;
1775 5) iproc=586
1776 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1777 proc=pentium-mmx # 4 is desktop, 8 is mobile
1778 else
1779 proc=i586
1782 6) iproc=686
1783 if test "$pmodel" -ge 15; then
1784 proc=core2
1785 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1786 proc=pentium-m
1787 elif test "$pmodel" -ge 7; then
1788 proc=pentium3
1789 elif test "$pmodel" -ge 3; then
1790 proc=pentium2
1791 else
1792 proc=i686
1795 15) iproc=686
1796 # A nocona in 32-bit mode has no more capabilities than a prescott.
1797 if test "$pmodel" -ge 3; then
1798 proc=prescott
1799 else
1800 proc=pentium4
1802 test $_fast_cmov = "auto" && _fast_cmov=no
1804 *) proc=prescott iproc=686 ;;
1805 esac
1807 CentaurHauls)
1808 case "$pfamily" in
1809 5) iproc=586
1810 if test "$pmodel" -ge 8; then
1811 proc=winchip2
1812 elif test "$pmodel" -ge 4; then
1813 proc=winchip-c6
1814 else
1815 proc=i586
1818 6) iproc=686
1819 if test "$pmodel" -ge 9; then
1820 proc=c3-2
1821 else
1822 proc=c3
1823 iproc=586
1826 *) proc=i686 iproc=i686 ;;
1827 esac
1829 unknown)
1830 case "$pfamily" in
1831 3) proc=i386 iproc=386 ;;
1832 4) proc=i486 iproc=486 ;;
1833 *) proc=i586 iproc=586 ;;
1834 esac
1837 proc=i586 iproc=586 ;;
1838 esac
1839 fi # test "$_runtime_cpudetection" = no
1842 # check that gcc supports our CPU, if not, fall back to earlier ones
1843 # LGB: check -mcpu and -march swithing step by step with enabling
1844 # to fall back till 386.
1846 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1848 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1849 cpuopt=-mtune
1850 else
1851 cpuopt=-mcpu
1854 echocheck "GCC & CPU optimization abilities"
1855 cat > $TMPC << EOF
1856 int main(void) { return 0; }
1858 if test "$_runtime_cpudetection" = no ; then
1859 cc_check -march=native && proc=native
1860 if test "$proc" = "k8"; then
1861 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1863 if test "$proc" = "athlon-xp"; then
1864 cc_check -march=$proc $cpuopt=$proc || proc=athlon
1866 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1867 cc_check -march=$proc $cpuopt=$proc || proc=k6
1869 if test "$proc" = "k6" || test "$proc" = "c3"; then
1870 if ! cc_check -march=$proc $cpuopt=$proc; then
1871 if cc_check -march=i586 $cpuopt=i686; then
1872 proc=i586-i686
1873 else
1874 proc=i586
1878 if test "$proc" = "prescott" ; then
1879 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
1881 if test "$proc" = "core2" ; then
1882 cc_check -march=$proc $cpuopt=$proc || proc=pentium-m
1884 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
1885 cc_check -march=$proc $cpuopt=$proc || proc=i686
1887 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1888 cc_check -march=$proc $cpuopt=$proc || proc=i586
1890 if test "$proc" = "i586"; then
1891 cc_check -march=$proc $cpuopt=$proc || proc=i486
1893 if test "$proc" = "i486" ; then
1894 cc_check -march=$proc $cpuopt=$proc || proc=i386
1896 if test "$proc" = "i386" ; then
1897 cc_check -march=$proc $cpuopt=$proc || proc=error
1899 if test "$proc" = "error" ; then
1900 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1901 _mcpu=""
1902 _march=""
1903 _optimizing=""
1904 elif test "$proc" = "i586-i686"; then
1905 _march="-march=i586"
1906 _mcpu="$cpuopt=i686"
1907 _optimizing="$proc"
1908 else
1909 _march="-march=$proc"
1910 _mcpu="$cpuopt=$proc"
1911 _optimizing="$proc"
1913 else # if test "$_runtime_cpudetection" = no
1914 _mcpu="$cpuopt=generic"
1915 # at least i486 required, for bswap instruction
1916 _march="-march=i486"
1917 cc_check $_mcpu || _mcpu="$cpuopt=i686"
1918 cc_check $_mcpu || _mcpu=""
1919 cc_check $_march $_mcpu || _march=""
1922 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1923 ## autodetected mcpu/march parameters
1924 if test "$_target" ; then
1925 # TODO: it may be a good idea to check GCC and fall back in all cases
1926 if test "$host_arch" = "i586-i686"; then
1927 _march="-march=i586"
1928 _mcpu="$cpuopt=i686"
1929 else
1930 _march="-march=$host_arch"
1931 _mcpu="$cpuopt=$host_arch"
1934 proc="$host_arch"
1936 case "$proc" in
1937 i386) iproc=386 ;;
1938 i486) iproc=486 ;;
1939 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1940 i686|athlon*|pentium*) iproc=686 ;;
1941 *) iproc=586 ;;
1942 esac
1945 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1946 _fast_cmov="yes"
1947 else
1948 _fast_cmov="no"
1951 echores "$proc"
1954 ia64)
1955 _arch='IA64'
1956 _target_arch='ARCH_IA64 = yes'
1957 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1958 iproc='ia64'
1961 x86_64|amd64)
1962 _arch='X86 X86_64'
1963 _target_arch='ARCH_X86_64 = yes'
1964 _target_arch_x86="ARCH_X86 = yes"
1965 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1966 def_fast_64bit='#define HAVE_FAST_64BIT 1'
1967 iproc='x86_64'
1969 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1970 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1971 cpuopt=-mtune
1972 else
1973 cpuopt=-mcpu
1975 test $_fast_cmov = "auto" && _fast_cmov=yes
1976 if test "$_runtime_cpudetection" = no ; then
1977 case "$pvendor" in
1978 AuthenticAMD)
1979 proc=k8;;
1980 GenuineIntel)
1981 case "$pfamily" in
1982 6) proc=core2;;
1984 # 64-bit prescotts exist, but as far as GCC is concerned they
1985 # have the same capabilities as a nocona.
1986 proc=nocona
1988 esac
1991 proc=error;;
1992 esac
1993 fi # test "$_runtime_cpudetection" = no
1995 echocheck "GCC & CPU optimization abilities"
1996 cat > $TMPC << EOF
1997 int main(void) { return 0; }
1999 # This is a stripped-down version of the i386 fallback.
2000 if test "$_runtime_cpudetection" = no ; then
2001 cc_check -march=native && proc=native
2002 # --- AMD processors ---
2003 if test "$proc" = "k8"; then
2004 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
2006 # This will fail if gcc version < 3.3, which is ok because earlier
2007 # versions don't really support 64-bit on amd64.
2008 # Is this a valid assumption? -Corey
2009 if test "$proc" = "athlon-xp"; then
2010 cc_check -march=$proc $cpuopt=$proc || proc=error
2012 # --- Intel processors ---
2013 if test "$proc" = "core2"; then
2014 cc_check -march=$proc $cpuopt=$proc || proc=nocona
2016 if test "$proc" = "nocona"; then
2017 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
2019 if test "$proc" = "pentium4"; then
2020 cc_check -march=$proc $cpuopt=$proc || proc=error
2023 _march="-march=$proc"
2024 _mcpu="$cpuopt=$proc"
2025 if test "$proc" = "error" ; then
2026 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
2027 _mcpu=""
2028 _march=""
2030 else # if test "$_runtime_cpudetection" = no
2031 # x86-64 is an undocumented option, an intersection of k8 and nocona.
2032 _march="-march=x86-64"
2033 _mcpu="$cpuopt=generic"
2034 cc_check $_mcpu || _mcpu="x86-64"
2035 cc_check $_mcpu || _mcpu=""
2036 cc_check $_march $_mcpu || _march=""
2039 _optimizing=""
2041 echores "$proc"
2044 sparc|sparc64)
2045 _arch='SPARC'
2046 _target_arch='ARCH_SPARC = yes'
2047 iproc='sparc'
2048 if test "$host_arch" = "sparc64" ; then
2049 _vis='yes'
2050 proc='ultrasparc'
2051 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2052 elif sunos ; then
2053 echocheck "CPU type"
2054 karch=`uname -m`
2055 case "`echo $karch`" in
2056 sun4) proc=v7 ;;
2057 sun4c) proc=v7 ;;
2058 sun4d) proc=v8 ;;
2059 sun4m) proc=v8 ;;
2060 sun4u) proc=ultrasparc _vis='yes' ;;
2061 sun4v) proc=v9 ;;
2062 *) proc=v8 ;;
2063 esac
2064 echores "$proc"
2065 else
2066 proc=v8
2068 _mcpu="-mcpu=$proc"
2069 _optimizing="$proc"
2072 arm|armv4l|armv5tel)
2073 _arch='ARM'
2074 _target_arch='ARCH_ARM = yes'
2075 iproc='arm'
2078 avr32)
2079 _arch='AVR32'
2080 _target_arch='ARCH_AVR32 = yes'
2081 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2082 iproc='avr32'
2085 sh|sh4)
2086 _arch='SH4'
2087 _target_arch='ARCH_SH4 = yes'
2088 iproc='sh4'
2091 ppc|ppc64|powerpc|powerpc64)
2092 _arch='PPC'
2093 def_dcbzl='#define HAVE_DCBZL 0'
2094 _target_arch='ARCH_PPC = yes'
2095 def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
2096 iproc='ppc'
2098 if test "$host_arch" = "ppc64" -o "$host_arch" = "powerpc64" ; then
2099 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2101 echocheck "CPU type"
2102 case $system_name in
2103 Linux)
2104 proc=`$_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | _head 1`
2105 if test -n "`$_cpuinfo | grep altivec`"; then
2106 test $_altivec = auto && _altivec=yes
2109 Darwin)
2110 proc=`$_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//'`
2111 if [ `sysctl -n hw.vectorunit` -eq 1 -o \
2112 "`sysctl -n hw.optional.altivec 2> /dev/null`" = "1" ]; then
2113 test $_altivec = auto && _altivec=yes
2116 NetBSD)
2117 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2118 case $cc_version in
2119 2*|3.0*|3.1*|3.2*|3.3*)
2122 if [ `sysctl -n machdep.altivec` -eq 1 ]; then
2123 test $_altivec = auto && _altivec=yes
2126 esac
2128 AIX)
2129 proc=`$_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//'`
2131 esac
2132 if test "$_altivec" = yes; then
2133 echores "$proc altivec"
2134 else
2135 _altivec=no
2136 echores "$proc"
2139 echocheck "GCC & CPU optimization abilities"
2141 if test -n "$proc"; then
2142 case "$proc" in
2143 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2144 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2145 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2146 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2147 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2148 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2149 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2150 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2151 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2152 *) ;;
2153 esac
2154 # gcc 3.1(.1) and up supports 7400 and 7450
2155 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2156 case "$proc" in
2157 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2158 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2159 *) ;;
2160 esac
2162 # gcc 3.2 and up supports 970
2163 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2164 case "$proc" in
2165 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2166 def_dcbzl='#define HAVE_DCBZL 1' ;;
2167 *) ;;
2168 esac
2170 # gcc 3.3 and up supports POWER4
2171 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2172 case "$proc" in
2173 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2174 *) ;;
2175 esac
2177 # gcc 3.4 and up supports 440*
2178 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2179 case "$proc" in
2180 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2181 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2182 *) ;;
2183 esac
2185 # gcc 4.0 and up supports POWER5
2186 if test "$_cc_major" -ge "4"; then
2187 case "$proc" in
2188 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2189 *) ;;
2190 esac
2194 if test -n "$_mcpu"; then
2195 _optimizing=`echo $_mcpu | cut -c 8-`
2196 echores "$_optimizing"
2197 else
2198 echores "none"
2203 alpha*)
2204 _arch='ALPHA'
2205 _target_arch='ARCH_ALPHA = yes'
2206 iproc='alpha'
2207 def_fast_64bit='#define HAVE_FAST_64BIT 1'
2209 echocheck "CPU type"
2210 cat > $TMPC << EOF
2211 int main(void) {
2212 unsigned long ver, mask;
2213 __asm__ ("implver %0" : "=r" (ver));
2214 __asm__ ("amask %1, %0" : "=r" (mask) : "r" (-1));
2215 printf("%ld-%x\n", ver, ~mask);
2216 return 0;
2219 $_cc -o "$TMPEXE" "$TMPC"
2220 case `"$TMPEXE"` in
2222 0-0) proc="ev4"; _mvi="0";;
2223 1-0) proc="ev5"; _mvi="0";;
2224 1-1) proc="ev56"; _mvi="0";;
2225 1-101) proc="pca56"; _mvi="1";;
2226 2-303) proc="ev6"; _mvi="1";;
2227 2-307) proc="ev67"; _mvi="1";;
2228 2-1307) proc="ev68"; _mvi="1";;
2229 esac
2230 echores "$proc"
2232 echocheck "GCC & CPU optimization abilities"
2233 if test "$proc" = "ev68" ; then
2234 cc_check -mcpu=$proc || proc=ev67
2236 if test "$proc" = "ev67" ; then
2237 cc_check -mcpu=$proc || proc=ev6
2239 _mcpu="-mcpu=$proc"
2240 echores "$proc"
2242 _optimizing="$proc"
2245 mips)
2246 _arch='SGI_MIPS'
2247 _target_arch='ARCH_SGI_MIPS = yes'
2248 iproc='sgi-mips'
2250 if irix ; then
2251 echocheck "CPU type"
2252 proc=`hinv -c processor | grep CPU | cut -d " " -f3`
2253 case "`echo $proc`" in
2254 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2255 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2256 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2257 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2258 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2259 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2260 esac
2261 # gcc < 3.x does not support -mtune.
2262 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2263 _mcpu=''
2265 echores "$proc"
2270 hppa)
2271 _arch='PA_RISC'
2272 _target_arch='ARCH_PA_RISC = yes'
2273 iproc='PA-RISC'
2276 s390)
2277 _arch='S390'
2278 _target_arch='ARCH_S390 = yes'
2279 iproc='390'
2282 s390x)
2283 _arch='S390X'
2284 _target_arch='ARCH_S390X = yes'
2285 iproc='390x'
2288 vax)
2289 _arch='VAX'
2290 _target_arch='ARCH_VAX = yes'
2291 iproc='vax'
2294 xtensa)
2295 _arch='XTENSA'
2296 _target_arch='ARCH_XTENSA = yes'
2297 iproc='xtensa'
2300 generic)
2301 _arch='GENERIC'
2302 _target_arch='ARCH_GENERIC = yes'
2306 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2307 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2308 die "unsupported architecture $host_arch"
2310 esac # case "$host_arch" in
2312 if test "$_runtime_cpudetection" = yes ; then
2313 if x86 ; then
2314 test "$_cmov" != no && _cmov=yes
2315 x86_32 && _cmov=no
2316 test "$_mmx" != no && _mmx=yes
2317 test "$_3dnow" != no && _3dnow=yes
2318 test "$_3dnowext" != no && _3dnowext=yes
2319 test "$_mmxext" != no && _mmxext=yes
2320 test "$_sse" != no && _sse=yes
2321 test "$_sse2" != no && _sse2=yes
2322 test "$_ssse3" != no && _ssse3=yes
2323 test "$_mtrr" != no && _mtrr=yes
2325 if ppc; then
2326 _altivec=yes
2331 # endian testing
2332 echocheck "byte order"
2333 if test "$_big_endian" = auto ; then
2334 cat > $TMPC <<EOF
2335 short ascii_name[] = { (('M'<<8)|'P'),(('l'<<8)|'a'),(('y'<<8)|'e'),(('r'<<8)|'B'),
2336 (('i'<<8)|'g'),(('E'<<8)|'n'),(('d'<<8)|'i'),(('a'<<8)|'n'),0};
2337 int main(void) { return (int)ascii_name; }
2339 if cc_check ; then
2340 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
2341 _big_endian=yes
2342 else
2343 _big_endian=no
2345 else
2346 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
2349 if test "$_big_endian" = yes ; then
2350 _byte_order='big-endian'
2351 def_words_endian='#define WORDS_BIGENDIAN 1'
2352 else
2353 _byte_order='little-endian'
2354 def_words_endian='#undef WORDS_BIGENDIAN'
2356 echores "$_byte_order"
2359 echocheck "extern symbol prefix"
2360 cat > $TMPC << EOF
2361 int ff_extern;
2363 cc_check -c || die "Symbol mangling check failed."
2364 sym=$($_nm -P -g $TMPEXE)
2365 extern_prefix=${sym%%ff_extern*}
2366 def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2367 echores $extern_prefix
2370 echocheck "assembler support of -pipe option"
2371 cat > $TMPC << EOF
2372 int main(void) { return 0; }
2374 cc_check -pipe && _pipe="-pipe" && echores "yes" || echores "no"
2377 echocheck "compiler support of named assembler arguments"
2378 _named_asm_args=yes
2379 def_named_asm_args="#define NAMED_ASM_ARGS 1"
2380 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2381 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2382 _named_asm_args=no
2383 def_named_asm_args="#undef NAMED_ASM_ARGS"
2385 echores $_named_asm_args
2388 if darwin && test "$cc_vendor" = "gnu" ; then
2389 echocheck "GCC support of -mstackrealign"
2390 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2391 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2392 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2393 # wrong code with this flag, but this can be worked around by adding
2394 # -fno-unit-at-a-time as described in the blog post at
2395 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2396 cat > $TMPC << EOF
2397 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2398 int main(void) { return foo3(1,2,3) == 3 ? 0 : 1; }
2400 cc_check -O4 -mstackrealign && tmp_run && cflags_stackrealign=-mstackrealign
2401 test -z "$cflags_stackrealign" && cc_check -O4 -mstackrealign -fno-unit-at-a-time \
2402 && tmp_run && cflags_stackrealign="-mstackrealign -fno-unit-at-a-time"
2403 test -n "$cflags_stackrealign" && echores "yes" || echores "no"
2404 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2407 # Checking for CFLAGS
2408 _install_strip="-s"
2409 if test "$_profile" != "" || test "$_debug" != "" ; then
2410 CFLAGS="-W -Wall -O2 $_march $_mcpu $_pipe $_debug $_profile"
2411 _install_strip=
2412 elif test -z "$CFLAGS" ; then
2413 if test "$cc_vendor" = "intel" ; then
2414 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer -wd167 -wd556 -wd144"
2415 elif test "$cc_vendor" != "gnu" ; then
2416 CFLAGS="-O2 $_march $_mcpu $_pipe"
2417 else
2418 CFLAGS="-Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2419 extra_ldflags="$extra_ldflags -ffast-math"
2421 else
2422 _warn_CFLAGS=yes
2424 if test -n "$LDFLAGS" ; then
2425 extra_ldflags="$extra_ldflags $LDFLAGS"
2426 _warn_CFLAGS=yes
2427 elif test "$cc_vendor" = "intel" ; then
2428 extra_ldflags="$extra_ldflags -i-static"
2430 if test -n "$CPPFLAGS" ; then
2431 extra_cflags="$extra_cflags $CPPFLAGS"
2432 _warn_CFLAGS=yes
2437 if x86_32 ; then
2438 # Checking assembler (_as) compatibility...
2439 # Added workaround for older as that reads from stdin by default - atmos
2440 as_version=`echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p'`
2441 echocheck "assembler ($_as $as_version)"
2443 _pref_as_version='2.9.1'
2444 echo 'nop' > $TMPS
2445 if test "$_mmx" = yes ; then
2446 echo 'emms' >> $TMPS
2448 if test "$_3dnow" = yes ; then
2449 _pref_as_version='2.10.1'
2450 echo 'femms' >> $TMPS
2452 if test "$_3dnowext" = yes ; then
2453 _pref_as_version='2.10.1'
2454 echo 'pswapd %mm0, %mm0' >> $TMPS
2456 if test "$_mmxext" = yes ; then
2457 _pref_as_version='2.10.1'
2458 echo 'movntq %mm0, (%eax)' >> $TMPS
2460 if test "$_sse" = yes ; then
2461 _pref_as_version='2.10.1'
2462 echo 'xorps %xmm0, %xmm0' >> $TMPS
2464 #if test "$_sse2" = yes ; then
2465 # _pref_as_version='2.11'
2466 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2468 if test "$_cmov" = yes ; then
2469 _pref_as_version='2.10.1'
2470 echo 'cmovb %eax, %ebx' >> $TMPS
2472 if test "$_ssse3" = yes ; then
2473 _pref_as_version='2.16.92'
2474 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2476 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2478 if test "$as_verc_fail" != yes ; then
2479 echores "ok"
2480 else
2481 _res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2482 echores "failed"
2483 die "obsolete binutils version"
2486 fi #if x86_32
2488 echocheck ".align is a power of two"
2489 if test "$_asmalign_pot" = auto ; then
2490 _asmalign_pot=no
2491 cat > $TMPC << EOF
2492 int main(void) { __asm__ (".align 3"); return 0; }
2494 cc_check && _asmalign_pot=yes
2496 if test "$_asmalign_pot" = "yes" ; then
2497 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2498 else
2499 def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2501 echores $_asmalign_pot
2503 if x86 ; then
2504 echocheck "10 assembler operands"
2505 ten_operands=no
2506 def_ten_operands='#define HAVE_TEN_OPERANDS 0'
2507 cat > $TMPC << EOF
2508 int main(void) {
2509 int x=0;
2510 __asm__ volatile(
2512 :"+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x), "+&rm"(x)
2514 return 0;
2517 cc_check && ten_operands=yes && def_ten_operands='#define HAVE_TEN_OPERANDS 1'
2518 echores $ten_operands
2520 echocheck "yasm"
2521 if test -z "$YASMFLAGS" ; then
2522 if darwin ; then
2523 x86_64 && objformat="macho64" || objformat="macho"
2524 elif win32 ; then
2525 objformat="win32"
2526 else
2527 objformat="elf"
2529 # currently tested for Linux x86, x86_64
2530 YASMFLAGS="-f $objformat"
2531 x86_64 && YASMFLAGS="$YASMFLAGS -DARCH_X86_64 -m amd64"
2532 case "$objformat" in
2533 elf) test $_debug && YASMFLAGS="$YASMFLAGS -g dwarf2" ;;
2534 macho64) YASMFLAGS="$YASMFLAGS -DPIC -DPREFIX" ;;
2535 *) YASMFLAGS="$YASMFLAGS -DPREFIX" ;;
2536 esac
2537 else
2538 _warn_CFLAGS=yes
2541 echo "pabsw xmm0, xmm0" > $TMPS
2542 yasm_check || _yasm=""
2543 if test $_yasm ; then
2544 test "$_mmx" = "yes" && fft_mmx="yes"
2545 def_yasm='#define HAVE_YASM 1'
2546 _have_yasm="yes"
2547 echores "$_yasm"
2548 else
2549 def_yasm='#define HAVE_YASM 0'
2550 fft_mmx="no"
2551 _have_yasm="no"
2552 echores "no"
2555 echocheck "bswap"
2556 def_bswap='#define HAVE_BSWAP 0'
2557 echo 'bswap %eax' > $TMPS
2558 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 && def_bswap='#define HAVE_BSWAP 1' && bswap=yes || bswap=no
2559 echores "$bswap"
2560 fi #if x86
2563 #FIXME: This should happen before the check for CFLAGS..
2564 def_altivec_h='#define HAVE_ALTIVEC_H 0'
2565 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2567 # check if AltiVec is supported by the compiler, and how to enable it
2568 echocheck "GCC AltiVec flags"
2569 cat > $TMPC << EOF
2570 int main(void) { return 0; }
2572 if $(cc_check -maltivec -mabi=altivec) ; then
2573 _altivec_gcc_flags="-maltivec -mabi=altivec"
2574 # check if <altivec.h> should be included
2575 cat > $TMPC << EOF
2576 #include <altivec.h>
2577 int main(void) { return 0; }
2579 if $(cc_check $_altivec_gcc_flags) ; then
2580 def_altivec_h='#define HAVE_ALTIVEC_H 1'
2581 inc_altivec_h='#include <altivec.h>'
2582 else
2583 cat > $TMPC << EOF
2584 int main(void) { return 0; }
2586 if $(cc_check -faltivec) ; then
2587 _altivec_gcc_flags="-faltivec"
2588 else
2589 _altivec=no
2590 _altivec_gcc_flags="none, AltiVec disabled"
2594 echores "$_altivec_gcc_flags"
2596 # check if the compiler supports braces for vector declarations
2597 cat > $TMPC << EOF
2598 $inc_altivec_h
2599 int main(void) { (vector int) {1}; return 0; }
2601 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2603 # Disable runtime cpudetection if we cannot generate AltiVec code or
2604 # AltiVec is disabled by the user.
2605 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2606 && _runtime_cpudetection=no
2608 # Show that we are optimizing for AltiVec (if enabled and supported).
2609 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2610 && _optimizing="$_optimizing altivec"
2612 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2613 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2616 if arm ; then
2617 echocheck "ARM pld instruction"
2618 cat > $TMPC << EOF
2619 int main(void) { __asm__ volatile ("pld [r0]"); return 0; }
2621 pld=no
2622 cc_check && pld=yes
2623 echores "$pld"
2625 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2626 if test $_armv5te = "auto" ; then
2627 cat > $TMPC << EOF
2628 int main(void) { __asm__ volatile ("qadd r0, r0, r0"); return 0; }
2630 _armv5te=no
2631 cc_check && _armv5te=yes
2633 echores "$_armv5te"
2635 echocheck "ARMv6 (SIMD instructions)"
2636 if test $_armv6 = "auto" ; then
2637 cat > $TMPC << EOF
2638 int main(void) { __asm__ volatile ("sadd16 r0, r0, r0"); return 0; }
2640 _armv6=no
2641 cc_check && _armv6=yes
2643 echores "$_armv6"
2645 echocheck "ARMv6t2 (SIMD instructions)"
2646 if test $_armv6t2 = "auto" ; then
2647 cat > $TMPC << EOF
2648 int main(void) { __asm__ volatile ("movt r0, #0"); return 0; }
2650 _armv6t2=no
2651 cc_check && _armv6t2=yes
2653 echores "$_armv6"
2655 echocheck "ARM VFP"
2656 if test $_armvfp = "auto" ; then
2657 cat > $TMPC << EOF
2658 int main(void) { __asm__ volatile ("fadds s0, s0, s0"); return 0; }
2660 _armvfp=no
2661 cc_check && _armvfp=yes
2663 echores "$_armvfp"
2665 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2666 if test $_iwmmxt = "auto" ; then
2667 cat > $TMPC << EOF
2668 int main(void) { __asm__ volatile ("wunpckelub wr6, wr4"); return 0; }
2670 _iwmmxt=no
2671 cc_check && _iwmmxt=yes
2673 echores "$_iwmmxt"
2676 _cpuexts_all='ALTIVEC MMX MMX2 AMD3DNOW AMD3DNOWEXT SSE SSE2 SSSE3 FAST_CMOV CMOV PLD ARMV5TE ARMV6 ARMV6T2 ARMVFP IWMMXT MMI VIS MVI'
2677 test "$_altivec" = yes && _cpuexts="ALTIVEC $_cpuexts"
2678 test "$_mmx" = yes && _cpuexts="MMX $_cpuexts"
2679 test "$_mmxext" = yes && _cpuexts="MMX2 $_cpuexts"
2680 test "$_3dnow" = yes && _cpuexts="AMD3DNOW $_cpuexts"
2681 test "$_3dnowext" = yes && _cpuexts="AMD3DNOWEXT $_cpuexts"
2682 test "$_sse" = yes && _cpuexts="SSE $_cpuexts"
2683 test "$_sse2" = yes && _cpuexts="SSE2 $_cpuexts"
2684 test "$_ssse3" = yes && _cpuexts="SSSE3 $_cpuexts"
2685 test "$_cmov" = yes && _cpuexts="CMOV $_cpuexts"
2686 test "$_fast_cmov" = yes && _cpuexts="FAST_CMOV $_cpuexts"
2687 test "$pld" = yes && _cpuexts="PLD $_cpuexts"
2688 test "$_armv5te" = yes && _cpuexts="ARMV5TE $_cpuexts"
2689 test "$_armv6" = yes && _cpuexts="ARMV6 $_cpuexts"
2690 test "$_armv6t2" = yes && _cpuexts="ARMV6T2 $_cpuexts"
2691 test "$_armvfp" = yes && _cpuexts="ARMVFP $_cpuexts"
2692 test "$_iwmmxt" = yes && _cpuexts="IWMMXT $_cpuexts"
2693 test "$_vis" = yes && _cpuexts="VIS $_cpuexts"
2694 test "$_mvi" = yes && _cpuexts="MVI $_cpuexts"
2696 # Checking kernel version...
2697 if x86_32 && linux ; then
2698 _k_verc_problem=no
2699 kernel_version=`uname -r 2>&1`
2700 echocheck "$system_name kernel version"
2701 case "$kernel_version" in
2702 '') kernel_version="?.??"; _k_verc_fail=yes;;
2703 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2704 _k_verc_problem=yes;;
2705 esac
2706 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2707 _k_verc_fail=yes
2709 if test "$_k_verc_fail" ; then
2710 echores "$kernel_version, fail"
2711 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2712 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2713 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2714 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2715 echo "2.2.x you must upgrade it to get SSE support!"
2716 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2717 else
2718 echores "$kernel_version, ok"
2722 ######################
2723 # MAIN TESTS GO HERE #
2724 ######################
2727 echocheck "-lposix"
2728 cat > $TMPC <<EOF
2729 int main(void) { return 0; }
2731 if cc_check -lposix ; then
2732 extra_ldflags="$extra_ldflags -lposix"
2733 echores "yes"
2734 else
2735 echores "no"
2738 echocheck "-lm"
2739 cat > $TMPC <<EOF
2740 int main(void) { return 0; }
2742 if cc_check -lm ; then
2743 _ld_lm="-lm"
2744 echores "yes"
2745 else
2746 _ld_lm=""
2747 echores "no"
2751 echocheck "langinfo"
2752 if test "$_langinfo" = auto ; then
2753 cat > $TMPC <<EOF
2754 #include <langinfo.h>
2755 int main(void) { nl_langinfo(CODESET); return 0; }
2757 _langinfo=no
2758 cc_check && _langinfo=yes
2760 if test "$_langinfo" = yes ; then
2761 def_langinfo='#define HAVE_LANGINFO 1'
2762 else
2763 def_langinfo='#undef HAVE_LANGINFO'
2765 echores "$_langinfo"
2768 echocheck "language"
2769 test -z "$_language" && _language=$LINGUAS
2770 _language=`echo $_language | tr , " "`
2771 if $(echo $_language | grep -q all) ; then
2772 doc_lang=en ; doc_langs=$doc_lang_all
2773 man_lang=en ; man_langs=$man_lang_all
2774 msg_lang=en
2775 else
2776 for lang in $_language ; do
2777 if test -d DOCS/man/$lang ; then
2778 tmp_man_langs="$tmp_man_langs $lang"
2780 if test -d DOCS/xml/$lang ; then
2781 tmp_doc_langs="$tmp_doc_langs $lang"
2783 done
2784 man_langs=$tmp_man_langs
2785 doc_langs=$tmp_man_langs
2786 for lang in $_language ; do
2787 if test -f "help/help_mp-${lang}.h" ; then
2788 msg_lang=$lang
2789 break
2790 else
2791 echo ${_echo_n} "$lang not found, ${_echo_c}"
2792 _language=`echo $_language | sed "s/$lang *//"`
2794 done
2796 test -z "$doc_langs" && doc_langs=en
2797 test -z "$man_langs" && man_langs=en
2798 test -z "$doc_lang" && doc_lang=$(echo $doc_langs | cut -f1 -d" ")
2799 test -z "$man_lang" && man_lang=$(echo $man_langs | cut -f1 -d" ")
2800 test -z "$msg_lang" && msg_lang=en
2801 _mp_help="help/help_mp-${msg_lang}.h"
2802 echores "messages: $msg_lang - man pages: $man_langs - documentation: $doc_langs"
2805 echocheck "enable sighandler"
2806 if test "$_sighandler" = yes ; then
2807 def_sighandler='#define CONFIG_SIGHANDLER 1'
2808 else
2809 def_sighandler='#undef CONFIG_SIGHANDLER'
2811 echores "$_sighandler"
2813 echocheck "runtime cpudetection"
2814 if test "$_runtime_cpudetection" = yes ; then
2815 _optimizing="Runtime CPU-Detection enabled"
2816 def_runtime_cpudetection='#define RUNTIME_CPUDETECT 1'
2817 else
2818 def_runtime_cpudetection='#undef RUNTIME_CPUDETECT'
2820 echores "$_runtime_cpudetection"
2823 echocheck "restrict keyword"
2824 for restrict_keyword in restrict __restrict __restrict__ ; do
2825 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2826 if cc_check; then
2827 def_restrict_keyword=$restrict_keyword
2828 break;
2830 done
2831 if [ -n "$def_restrict_keyword" ]; then
2832 echores "$def_restrict_keyword"
2833 else
2834 echores "none"
2836 # Avoid infinite recursion loop ("#define restrict restrict")
2837 if [ "$def_restrict_keyword" != "restrict" ]; then
2838 def_restrict_keyword="#define restrict $def_restrict_keyword"
2839 else
2840 def_restrict_keyword=""
2844 echocheck "__builtin_expect"
2845 # GCC branch prediction hint
2846 cat > $TMPC << EOF
2847 int foo(int a) {
2848 a = __builtin_expect(a, 10);
2849 return a == 10 ? 0 : 1;
2851 int main(void) { return foo(10) && foo(0); }
2853 _builtin_expect=no
2854 cc_check && _builtin_expect=yes
2855 if test "$_builtin_expect" = yes ; then
2856 def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2857 else
2858 def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2860 echores "$_builtin_expect"
2863 echocheck "kstat"
2864 cat > $TMPC << EOF
2865 #include <kstat.h>
2866 int main(void) { (void) kstat_open(); (void) kstat_close(0); return 0; }
2868 _kstat=no
2869 cc_check -lkstat && _kstat=yes
2870 if test "$_kstat" = yes ; then
2871 def_kstat="#define HAVE_LIBKSTAT 1"
2872 extra_ldflags="$extra_ldflags -lkstat"
2873 else
2874 def_kstat="#undef HAVE_LIBKSTAT"
2876 echores "$_kstat"
2879 echocheck "posix4"
2880 # required for nanosleep on some systems
2881 cat > $TMPC << EOF
2882 #include <time.h>
2883 int main(void) { (void) nanosleep(0, 0); return 0; }
2885 _posix4=no
2886 cc_check -lposix4 && _posix4=yes
2887 if test "$_posix4" = yes ; then
2888 extra_ldflags="$extra_ldflags -lposix4"
2890 echores "$_posix4"
2892 for func in llrint lrint lrintf round roundf truncf; do
2893 echocheck $func
2894 cat > $TMPC << EOF
2895 #include <math.h>
2896 int main(void) { long (*foo)(float); foo = $func; (void)(*foo)(0.0); return 0; }
2898 eval _$func=no
2899 cc_check -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2900 if eval test "x\$_$func" = "xyes"; then
2901 eval def_$func="\"#define HAVE_`echo $func | tr '[a-z]' '[A-Z]'` 1\""
2902 echores yes
2903 else
2904 eval def_$func="\"#define HAVE_`echo $func | tr '[a-z]' '[A-Z]'` 0\""
2905 echores no
2907 done
2910 echocheck "mkstemp"
2911 cat > $TMPC << EOF
2912 #include <stdlib.h>
2913 int main(void) { char a; mkstemp(&a); return 0; }
2915 _mkstemp=no
2916 cc_check && _mkstemp=yes
2917 if test "$_mkstemp" = yes ; then
2918 def_mkstemp='#define HAVE_MKSTEMP 1'
2919 else
2920 def_mkstemp='#undef HAVE_MKSTEMP'
2922 echores "$_mkstemp"
2925 echocheck "nanosleep"
2926 # also check for nanosleep
2927 cat > $TMPC << EOF
2928 #include <time.h>
2929 int main(void) { (void) nanosleep(0, 0); return 0; }
2931 _nanosleep=no
2932 cc_check && _nanosleep=yes
2933 if test "$_nanosleep" = yes ; then
2934 def_nanosleep='#define HAVE_NANOSLEEP 1'
2935 else
2936 def_nanosleep='#undef HAVE_NANOSLEEP'
2938 echores "$_nanosleep"
2941 echocheck "socklib"
2942 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
2943 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
2944 cat > $TMPC << EOF
2945 #include <netdb.h>
2946 #include <sys/socket.h>
2947 int main(void) { (void) gethostbyname(0); (void) socket(AF_INET, SOCK_STREAM, 0); return 0; }
2949 _socklib=no
2950 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
2951 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
2952 done
2953 if test $_winsock2_h = auto && ! cygwin ; then
2954 _winsock2_h=no
2955 cat > $TMPC << EOF
2956 #include <winsock2.h>
2957 int main(void) { (void) gethostbyname(0); return 0; }
2959 cc_check -lws2_32 && _ld_sock="-lws2_32" && _winsock2_h=yes
2961 test "$_ld_sock" && _res_comment="using $_ld_sock"
2962 echores "$_socklib"
2965 if test $_winsock2_h = yes ; then
2966 _ld_sock="-lws2_32"
2967 def_winsock2_h='#define HAVE_WINSOCK2_H 1'
2968 else
2969 def_winsock2_h='#define HAVE_WINSOCK2_H 0'
2973 echocheck "arpa/inet.h"
2974 arpa_inet_h=no
2975 def_arpa_inet_h='#define HAVE_ARPA_INET_H 0'
2976 cat > $TMPC << EOF
2977 #include <arpa/inet.h>
2978 int main(void) { return 0; }
2980 cc_check && arpa_inet_h=yes && def_arpa_inet_h='#define HAVE_ARPA_INET_H 1'
2981 echores "$arpa_inet_h"
2984 echocheck "inet_pton()"
2985 def_inet_pton='#define HAVE_INET_PTON 0'
2986 inet_pton=no
2987 cat > $TMPC << EOF
2988 #include <sys/types.h>
2989 #include <sys/socket.h>
2990 #include <arpa/inet.h>
2991 int main(void) { (void) inet_pton(0, 0, 0); return 0; }
2993 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
2994 cc_check $_ld_tmp && inet_pton=yes && break
2995 done
2996 if test $inet_pton = yes ; then
2997 test $_ld_tmp && _res_comment="using $_ld_tmp"
2998 def_inet_pton='#define HAVE_INET_PTON 1'
3000 echores "$inet_pton"
3003 echocheck "inet_aton()"
3004 def_inet_aton='#define HAVE_INET_ATON 0'
3005 inet_aton=no
3006 cat > $TMPC << EOF
3007 #include <sys/types.h>
3008 #include <sys/socket.h>
3009 #include <arpa/inet.h>
3010 int main(void) { (void) inet_aton(0, 0); return 0; }
3012 for _ld_tmp in "$_ld_sock" "$_ld_sock -lresolv" ; do
3013 cc_check $_ld_tmp && inet_aton=yes && break
3014 done
3015 if test $inet_aton = yes ; then
3016 test $_ld_tmp && _res_comment="using $_ld_tmp"
3017 def_inet_aton='#define HAVE_INET_ATON 1'
3019 echores "$inet_aton"
3022 echocheck "socklen_t"
3023 _socklen_t=no
3024 for header in "sys/socket.h" "ws2tcpip.h" "sys/types.h" ; do
3025 cat > $TMPC << EOF
3026 #include <$header>
3027 int main(void) { socklen_t v = 0; return v; }
3029 cc_check && _socklen_t=yes && break
3030 done
3031 if test "$_socklen_t" = yes ; then
3032 def_socklen_t='#define HAVE_SOCKLEN_T 1'
3033 else
3034 def_socklen_t='#define HAVE_SOCKLEN_T 0'
3036 echores "$_socklen_t"
3039 echocheck "closesocket()"
3040 _closesocket=no
3041 cat > $TMPC << EOF
3042 #include <winsock2.h>
3043 int main(void) { closesocket(~0); return 0; }
3045 cc_check $_ld_sock && _closesocket=yes
3046 if test "$_closesocket" = yes ; then
3047 def_closesocket='#define HAVE_CLOSESOCKET 1'
3048 else
3049 def_closesocket='#define HAVE_CLOSESOCKET 0'
3051 echores "$_closesocket"
3054 echocheck "network"
3055 test $_winsock2_h = no && test $inet_pton = no &&
3056 test $inet_aton = no && _network=no
3057 if test "$_network" = yes ; then
3058 def_network='#define CONFIG_NETWORK 1'
3059 extra_ldflags="$extra_ldflags $_ld_sock"
3060 _inputmodules="network $_inputmodules"
3061 else
3062 _noinputmodules="network $_noinputmodules"
3063 def_network='#undef CONFIG_NETWORK'
3064 _ftp=no
3066 echores "$_network"
3069 echocheck "inet6"
3070 if test "$_inet6" = auto ; then
3071 cat > $TMPC << EOF
3072 #include <sys/types.h>
3073 #if !defined(_WIN32) || defined(__CYGWIN__)
3074 #include <sys/socket.h>
3075 #include <netinet/in.h>
3076 #else
3077 #include <ws2tcpip.h>
3078 #endif
3079 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
3081 _inet6=no
3082 if cc_check $_ld_sock ; then
3083 _inet6=yes
3086 if test "$_inet6" = yes ; then
3087 def_inet6='#define HAVE_AF_INET6 1'
3088 else
3089 def_inet6='#undef HAVE_AF_INET6'
3091 echores "$_inet6"
3094 echocheck "gethostbyname2"
3095 if test "$_gethostbyname2" = auto ; then
3096 cat > $TMPC << EOF
3097 #include <sys/types.h>
3098 #include <sys/socket.h>
3099 #include <netdb.h>
3100 int main(void) { gethostbyname2("", AF_INET); return 0; }
3102 _gethostbyname2=no
3103 if cc_check ; then
3104 _gethostbyname2=yes
3107 if test "$_gethostbyname2" = yes ; then
3108 def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
3109 else
3110 def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
3112 echores "$_gethostbyname2"
3115 echocheck "inttypes.h (required)"
3116 cat > $TMPC << EOF
3117 #include <inttypes.h>
3118 int main(void) { return 0; }
3120 _inttypes=no
3121 cc_check && _inttypes=yes
3122 echores "$_inttypes"
3124 if test "$_inttypes" = no ; then
3125 echocheck "bitypes.h (inttypes.h predecessor)"
3126 cat > $TMPC << EOF
3127 #include <sys/bitypes.h>
3128 int main(void) { return 0; }
3130 cc_check && _inttypes=yes
3131 if test "$_inttypes" = yes ; then
3132 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."
3133 else
3134 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
3139 echocheck "int_fastXY_t in inttypes.h"
3140 cat > $TMPC << EOF
3141 #include <inttypes.h>
3142 int main(void) {
3143 volatile int_fast16_t v= 0;
3144 return v; }
3146 _fast_inttypes=no
3147 cc_check && _fast_inttypes=yes
3148 if test "$_fast_inttypes" = no ; then
3149 def_fast_inttypes='
3150 typedef signed char int_fast8_t;
3151 typedef signed int int_fast16_t;
3152 typedef signed int int_fast32_t;
3153 typedef signed long long int_fast64_t;
3154 typedef unsigned char uint_fast8_t;
3155 typedef unsigned int uint_fast16_t;
3156 typedef unsigned int uint_fast32_t;
3157 typedef unsigned long long uint_fast64_t;'
3159 echores "$_fast_inttypes"
3162 echocheck "malloc.h"
3163 cat > $TMPC << EOF
3164 #include <malloc.h>
3165 int main(void) { (void) malloc(0); return 0; }
3167 _malloc=no
3168 cc_check && _malloc=yes
3169 if test "$_malloc" = yes ; then
3170 def_malloc_h='#define HAVE_MALLOC_H 1'
3171 else
3172 def_malloc_h='#define HAVE_MALLOC_H 0'
3174 # malloc.h emits a warning in FreeBSD and OpenBSD
3175 freebsd || openbsd || dragonfly && def_malloc_h='#define HAVE_MALLOC_H 0'
3176 echores "$_malloc"
3179 echocheck "memalign()"
3180 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
3181 def_memalign_hack='#define CONFIG_MEMALIGN_HACK 0'
3182 cat > $TMPC << EOF
3183 #include <malloc.h>
3184 int main(void) { (void) memalign(64, sizeof(char)); return 0; }
3186 _memalign=no
3187 cc_check && _memalign=yes
3188 if test "$_memalign" = yes ; then
3189 def_memalign='#define HAVE_MEMALIGN 1'
3190 else
3191 def_memalign='#define HAVE_MEMALIGN 0'
3192 def_map_memalign='#define memalign(a,b) malloc(b)'
3193 darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
3195 echores "$_memalign"
3198 echocheck "posix_memalign()"
3199 posix_memalign=no
3200 def_posix_memalign='#define HAVE_POSIX_MEMALIGN 0'
3201 cat > $TMPC << EOF
3202 #define _XOPEN_SOURCE 600
3203 #include <stdlib.h>
3204 int main(void) { posix_memalign(NULL, 0, 0); }
3206 cc_check && posix_memalign=yes && def_posix_memalign='#define HAVE_POSIX_MEMALIGN 1'
3207 echores "$posix_memalign"
3210 echocheck "alloca.h"
3211 cat > $TMPC << EOF
3212 #include <alloca.h>
3213 int main(void) { (void) alloca(0); return 0; }
3215 _alloca=no
3216 cc_check && _alloca=yes
3217 if cc_check ; then
3218 def_alloca_h='#define HAVE_ALLOCA_H 1'
3219 else
3220 def_alloca_h='#undef HAVE_ALLOCA_H'
3222 echores "$_alloca"
3225 echocheck "fastmemcpy"
3226 if test "$_fastmemcpy" = yes ; then
3227 def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
3228 else
3229 def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
3231 echores "$_fastmemcpy"
3234 echocheck "mman.h"
3235 cat > $TMPC << EOF
3236 #include <sys/types.h>
3237 #include <sys/mman.h>
3238 int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; }
3240 _mman=no
3241 cc_check && _mman=yes
3242 if test "$_mman" = yes ; then
3243 def_mman_h='#define HAVE_SYS_MMAN_H 1'
3244 else
3245 def_mman_h='#undef HAVE_SYS_MMAN_H'
3246 os2 && _need_mmap=yes
3248 echores "$_mman"
3250 cat > $TMPC << EOF
3251 #include <sys/types.h>
3252 #include <sys/mman.h>
3253 int main(void) { void *p = MAP_FAILED; return 0; }
3255 _mman_has_map_failed=no
3256 cc_check && _mman_has_map_failed=yes
3257 if test "$_mman_has_map_failed" = yes ; then
3258 def_mman_has_map_failed=''
3259 else
3260 def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3263 echocheck "dynamic loader"
3264 cat > $TMPC << EOF
3265 #include <stddef.h>
3266 #include <dlfcn.h>
3267 int main(void) { dlopen(NULL, 0); dlclose(NULL); dlsym(NULL, NULL); return 0; }
3269 _dl=no
3270 for _ld_tmp in "" "-ldl" ; do
3271 cc_check $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3272 done
3273 if test "$_dl" = yes ; then
3274 def_dl='#define HAVE_LIBDL 1'
3275 else
3276 def_dl='#undef HAVE_LIBDL'
3278 echores "$_dl"
3281 echocheck "dynamic a/v plugins support"
3282 if test "$_dl" = no ; then
3283 _dynamic_plugins=no
3285 if test "$_dynamic_plugins" = yes ; then
3286 def_dynamic_plugins='#define CONFIG_DYNAMIC_PLUGINS 1'
3287 else
3288 def_dynamic_plugins='#undef CONFIG_DYNAMIC_PLUGINS'
3290 echores "$_dynamic_plugins"
3293 def_threads='#define HAVE_THREADS 0'
3295 echocheck "pthread"
3296 if test "$_pthreads" = auto ; then
3297 cat > $TMPC << EOF
3298 #include <pthread.h>
3299 void* func(void *arg) { return arg; }
3300 int main(void) { pthread_t tid; return pthread_create(&tid, 0, func, 0) == 0 ? 0 : 1; }
3302 _pthreads=no
3303 if ! hpux ; then
3304 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3305 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3306 cc_check $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3307 done
3310 if test "$_pthreads" = yes ; then
3311 test $_ld_pthread && _res_comment="using $_ld_pthread"
3312 def_pthreads='#define HAVE_PTHREADS 1'
3313 def_threads='#define HAVE_THREADS 1'
3314 else
3315 _res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3316 def_pthreads='#undef HAVE_PTHREADS'
3317 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3318 mingw32 || _win32dll=no
3320 echores "$_pthreads"
3322 if cygwin ; then
3323 if test "$_pthreads" = yes ; then
3324 def_pthread_cache="#define PTHREAD_CACHE 1"
3325 else
3326 _stream_cache=no
3327 def_stream_cache="#undef CONFIG_STREAM_CACHE"
3331 echocheck "w32threads"
3332 if test "$_pthreads" = yes ; then
3333 _res_comment="using pthread instead"
3334 _w32threads=no
3336 if test "$_w32threads" = auto ; then
3337 _w32threads=no
3338 mingw32 && _w32threads=yes
3340 test "$_w32threads" = yes && def_threads='#define HAVE_THREADS 1'
3341 echores "$_w32threads"
3343 echocheck "rpath"
3344 netbsd &&_rpath=yes
3345 if test "$_rpath" = yes ; then
3346 for I in `echo $extra_ldflags | sed 's/-L//g'` ; do
3347 tmp="$tmp ` echo $I | sed 's/.*/ -L& -Wl,-R&/'`"
3348 done
3349 extra_ldflags=$tmp
3351 echores "$_rpath"
3353 echocheck "iconv"
3354 if test "$_iconv" = auto ; then
3355 cat > $TMPC << EOF
3356 #include <stdio.h>
3357 #include <unistd.h>
3358 #include <iconv.h>
3359 #define INBUFSIZE 1024
3360 #define OUTBUFSIZE 4096
3362 char inbuffer[INBUFSIZE];
3363 char outbuffer[OUTBUFSIZE];
3365 int main(void) {
3366 size_t numread;
3367 iconv_t icdsc;
3368 char *tocode="UTF-8";
3369 char *fromcode="cp1250";
3370 if ((icdsc = iconv_open(tocode, fromcode)) != (iconv_t)(-1)) {
3371 while ((numread = read(0, inbuffer, INBUFSIZE))) {
3372 char *iptr=inbuffer;
3373 char *optr=outbuffer;
3374 size_t inleft=numread;
3375 size_t outleft=OUTBUFSIZE;
3376 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft)
3377 != (size_t)(-1)) {
3378 write(1, outbuffer, OUTBUFSIZE - outleft);
3381 if (iconv_close(icdsc) == -1)
3384 return 0;
3387 _iconv=no
3388 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3389 cc_check $_ld_lm $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3390 _iconv=yes && break
3391 done
3393 if test "$_iconv" = yes ; then
3394 def_iconv='#define CONFIG_ICONV 1'
3395 else
3396 def_iconv='#undef CONFIG_ICONV'
3398 echores "$_iconv"
3401 echocheck "soundcard.h"
3402 _soundcard_h=no
3403 def_soundcard_h='#undef HAVE_SOUNDCARD_H'
3404 def_sys_soundcard_h='#undef HAVE_SYS_SOUNDCARD_H'
3405 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3406 cat > $TMPC << EOF
3407 #include <$_soundcard_header>
3408 int main(void) { return 0; }
3410 cc_check && _soundcard_h=yes && _res_comment="$_soundcard_header" && break
3411 done
3413 if test "$_soundcard_h" = yes ; then
3414 if test $_soundcard_header = "sys/soundcard.h"; then
3415 def_sys_soundcard_h='#define HAVE_SYS_SOUNDCARD_H 1'
3416 else
3417 def_soundcard_h='#define HAVE_SOUNDCARD_H 1'
3420 echores "$_soundcard_h"
3423 echocheck "sys/dvdio.h"
3424 cat > $TMPC << EOF
3425 #include <unistd.h>
3426 #include <sys/dvdio.h>
3427 int main(void) { return 0; }
3429 _dvdio=no
3430 cc_check && _dvdio=yes
3431 if test "$_dvdio" = yes ; then
3432 def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3433 else
3434 def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3436 echores "$_dvdio"
3439 echocheck "sys/cdio.h"
3440 cat > $TMPC << EOF
3441 #include <unistd.h>
3442 #include <sys/cdio.h>
3443 int main(void) { return 0; }
3445 _cdio=no
3446 cc_check && _cdio=yes
3447 if test "$_cdio" = yes ; then
3448 def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3449 else
3450 def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3452 echores "$_cdio"
3455 echocheck "linux/cdrom.h"
3456 cat > $TMPC << EOF
3457 #include <sys/types.h>
3458 #include <linux/cdrom.h>
3459 int main(void) { return 0; }
3461 _cdrom=no
3462 cc_check && _cdrom=yes
3463 if test "$_cdrom" = yes ; then
3464 def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3465 else
3466 def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3468 echores "$_cdrom"
3471 echocheck "dvd.h"
3472 cat > $TMPC << EOF
3473 #include <dvd.h>
3474 int main(void) { return 0; }
3476 _dvd=no
3477 cc_check && _dvd=yes
3478 if test "$_dvd" = yes ; then
3479 def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3480 else
3481 def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3483 echores "$_dvd"
3486 if bsdos; then
3487 echocheck "BSDI dvd.h"
3488 cat > $TMPC << EOF
3489 #include <dvd.h>
3490 int main(void) { return 0; }
3492 _bsdi_dvd=no
3493 cc_check && _bsdi_dvd=yes
3494 if test "$_bsdi_dvd" = yes ; then
3495 def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3496 else
3497 def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3499 echores "$_bsdi_dvd"
3500 fi #if bsdos
3503 if hpux; then
3504 # also used by AIX, but AIX does not support VCD and/or libdvdread
3505 echocheck "HP-UX SCSI header"
3506 cat > $TMPC << EOF
3507 #include <sys/scsi.h>
3508 int main(void) { return 0; }
3510 _hpux_scsi_h=no
3511 cc_check && _hpux_scsi_h=yes
3512 if test "$_hpux_scsi_h" = yes ; then
3513 def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3514 else
3515 def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3517 echores "$_hpux_scsi_h"
3518 fi #if hpux
3521 if sunos; then
3522 echocheck "userspace SCSI headers (Solaris)"
3523 cat > $TMPC << EOF
3524 #include <unistd.h>
3525 #include <stropts.h>
3526 #include <sys/scsi/scsi_types.h>
3527 #include <sys/scsi/impl/uscsi.h>
3528 int main(void) { return 0; }
3530 _sol_scsi_h=no
3531 cc_check && _sol_scsi_h=yes
3532 if test "$_sol_scsi_h" = yes ; then
3533 def_sol_scsi_h='#define SOLARIS_USCSI 1'
3534 else
3535 def_sol_scsi_h='#undef SOLARIS_USCSI'
3537 echores "$_sol_scsi_h"
3538 fi #if sunos
3541 echocheck "termcap"
3542 if test "$_termcap" = auto ; then
3543 cat > $TMPC <<EOF
3544 #include <stddef.h>
3545 #include <term.h>
3546 int main(void) { tgetent(NULL, NULL); return 0; }
3548 _termcap=no
3549 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3550 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
3551 && _termcap=yes && break
3552 done
3554 if test "$_termcap" = yes ; then
3555 def_termcap='#define HAVE_TERMCAP 1'
3556 test $_ld_tmp && _res_comment="using $_ld_tmp"
3557 else
3558 def_termcap='#undef HAVE_TERMCAP'
3560 echores "$_termcap"
3563 echocheck "termios"
3564 def_termios='#undef HAVE_TERMIOS'
3565 def_termios_h='#undef HAVE_TERMIOS_H'
3566 def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3567 if test "$_termios" = auto ; then
3568 _termios=no
3569 for _termios_header in "sys/termios.h" "termios.h"; do
3570 cat > $TMPC <<EOF
3571 #include <$_termios_header>
3572 int main(void) { return 0; }
3574 cc_check && _termios=yes && _res_comment="using $_termios_header" && break
3575 done
3578 if test "$_termios" = yes ; then
3579 def_termios='#define HAVE_TERMIOS 1'
3580 if test "$_termios_header" = "termios.h" ; then
3581 def_termios_h='#define HAVE_TERMIOS_H 1'
3582 else
3583 def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3586 echores "$_termios"
3589 echocheck "shm"
3590 if test "$_shm" = auto ; then
3591 cat > $TMPC << EOF
3592 #include <sys/types.h>
3593 #include <sys/shm.h>
3594 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3596 _shm=no
3597 cc_check && _shm=yes
3599 if test "$_shm" = yes ; then
3600 def_shm='#define HAVE_SHM 1'
3601 else
3602 def_shm='#undef HAVE_SHM'
3604 echores "$_shm"
3607 echocheck "strsep()"
3608 cat > $TMPC << EOF
3609 #include <string.h>
3610 int main(void) { char *s = "Hello, world!"; (void) strsep(&s, ","); return 0; }
3612 _strsep=no
3613 cc_check && _strsep=yes
3614 if test "$_strsep" = yes ; then
3615 def_strsep='#define HAVE_STRSEP 1'
3616 _need_strsep=no
3617 else
3618 def_strsep='#undef HAVE_STRSEP'
3619 _need_strsep=yes
3621 echores "$_strsep"
3624 echocheck "vsscanf()"
3625 cat > $TMPC << EOF
3626 #define _ISOC99_SOURCE
3627 #include <stdarg.h>
3628 #include <stdio.h>
3629 int main(void) { vsscanf(0, 0, 0); return 0; }
3631 _vsscanf=no
3632 cc_check && _vsscanf=yes
3633 if test "$_vsscanf" = yes ; then
3634 def_vsscanf='#define HAVE_VSSCANF 1'
3635 _need_vsscanf=no
3636 else
3637 def_vsscanf='#undef HAVE_VSSCANF'
3638 _need_vsscanf=yes
3640 echores "$_vsscanf"
3643 echocheck "swab()"
3644 cat > $TMPC << EOF
3645 #define _XOPEN_SOURCE 600
3646 #include <unistd.h>
3647 int main(void) { swab(0, 0, 0); return 0; }
3649 _swab=no
3650 cc_check && _swab=yes
3651 if test "$_swab" = yes ; then
3652 def_swab='#define HAVE_SWAB 1'
3653 _need_swab=no
3654 else
3655 def_swab='#undef HAVE_SWAB'
3656 _need_swab=yes
3658 echores "$_swab"
3660 echocheck "POSIX select()"
3661 cat > $TMPC << EOF
3662 #include <stdio.h>
3663 #include <stdlib.h>
3664 #include <sys/types.h>
3665 #include <string.h>
3666 #include <sys/time.h>
3667 #include <unistd.h>
3668 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
3670 _posix_select=no
3671 def_posix_select='#undef HAVE_POSIX_SELECT'
3672 #select() of kLIBC (OS/2) supports socket only
3673 ! os2 && cc_check && _posix_select=yes \
3674 && def_posix_select='#define HAVE_POSIX_SELECT 1'
3675 echores "$_posix_select"
3678 echocheck "audio select()"
3679 if test "$_select" = no ; then
3680 def_select='#undef HAVE_AUDIO_SELECT'
3681 elif test "$_select" = yes ; then
3682 def_select='#define HAVE_AUDIO_SELECT 1'
3684 echores "$_select"
3687 echocheck "gettimeofday()"
3688 cat > $TMPC << EOF
3689 #include <stdio.h>
3690 #include <sys/time.h>
3691 int main(void) {struct timeval tv_start; gettimeofday(&tv_start, NULL); return 0; }
3693 _gettimeofday=no
3694 cc_check && _gettimeofday=yes
3695 if test "$_gettimeofday" = yes ; then
3696 def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3697 _need_gettimeofday=no
3698 else
3699 def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3700 _need_gettimeofday=yes
3702 echores "$_gettimeofday"
3705 echocheck "glob()"
3706 cat > $TMPC << EOF
3707 #include <stdio.h>
3708 #include <glob.h>
3709 int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
3711 _glob=no
3712 cc_check && _glob=yes
3713 if test "$_glob" = yes ; then
3714 def_glob='#define HAVE_GLOB 1'
3715 _need_glob=no
3716 else
3717 def_glob='#undef HAVE_GLOB'
3718 _need_glob=yes
3720 echores "$_glob"
3723 echocheck "setenv()"
3724 cat > $TMPC << EOF
3725 #include <stdlib.h>
3726 int main(void) { setenv("","",0); return 0; }
3728 _setenv=no
3729 cc_check && _setenv=yes
3730 if test "$_setenv" = yes ; then
3731 def_setenv='#define HAVE_SETENV 1'
3732 _need_setenv=no
3733 else
3734 def_setenv='#undef HAVE_SETENV'
3735 _need_setenv=yes
3737 echores "$_setenv"
3740 if sunos; then
3741 echocheck "sysi86()"
3742 cat > $TMPC << EOF
3743 #include <sys/sysi86.h>
3744 int main(void) { sysi86(0); return 0; }
3746 _sysi86=no
3747 cc_check && _sysi86=yes
3748 if test "$_sysi86" = yes ; then
3749 def_sysi86='#define HAVE_SYSI86 1'
3750 cat > $TMPC << EOF
3751 #include <sys/sysi86.h>
3752 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
3754 cc_check && def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3755 else
3756 def_sysi86='#undef HAVE_SYSI86'
3758 echores "$_sysi86"
3759 fi #if sunos
3762 echocheck "sys/sysinfo.h"
3763 cat > $TMPC << EOF
3764 #include <sys/sysinfo.h>
3765 int main(void) {
3766 struct sysinfo s_info;
3767 sysinfo(&s_info);
3768 return 0;
3771 _sys_sysinfo=no
3772 cc_check && _sys_sysinfo=yes
3773 if test "$_sys_sysinfo" = yes ; then
3774 def_sys_sysinfo_h='#define HAVE_SYS_SYSINFO_H 1'
3775 else
3776 def_sys_sysinfo_h='#undef HAVE_SYS_SYSINFO_H'
3778 echores "$_sys_sysinfo"
3781 if darwin; then
3783 echocheck "Mac OS X APIs"
3784 if test "$_macosx" = auto ; then
3785 productName=`/usr/bin/sw_vers -productName`
3786 if test "$productName" = "Mac OS X" ||
3787 test "$productName" = "Mac OS X Server" ; then
3788 _macosx=yes
3789 else
3790 _macosx=no
3791 _noaomodules="macosx $_noaomodules"
3792 _novomodules="macosx quartz $_novomodules"
3795 if test "$_macosx" = yes ; then
3796 cat > $TMPC <<EOF
3797 #include <CoreAudio/CoreAudio.h>
3798 int main(void) { return 0; }
3800 if cc_check -framework CoreAudio; then
3801 extra_ldflags="$extra_ldflags -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
3802 _coreaudio=yes
3803 def_coreaudio='#define CONFIG_COREAUDIO 1'
3804 _aomodules="macosx $_aomodules"
3805 else
3806 _coreaudio=no
3807 def_coreaudio='#undef CONFIG_COREAUDIO'
3808 _noaomodules="macosx $_noaomodules"
3810 cat > $TMPC <<EOF
3811 #include <Carbon/Carbon.h>
3812 #include <QuickTime/QuickTime.h>
3813 int main(void) {
3814 EnterMovies();
3815 ExitMovies();
3816 CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false);
3817 return 0;
3820 if cc_check -framework Carbon -framework QuickTime; then
3821 extra_ldflags="$extra_ldflags -framework Carbon -framework QuickTime"
3822 _quartz=yes
3823 def_quartz='#define CONFIG_QUARTZ 1'
3824 _vomodules="quartz $_vomodules"
3825 def_quicktime='#define CONFIG_QUICKTIME 1'
3826 else
3827 _quartz=no
3828 def_quartz='#undef CONFIG_QUARTZ'
3829 _novomodules="quartz $_novomodules"
3830 def_quicktime='#undef CONFIG_QUICKTIME'
3832 cat > $TMPC <<EOF
3833 #include <Carbon/Carbon.h>
3834 #include <QuartzCore/CoreVideo.h>
3835 int main(void) { return 0; }
3837 if cc_check -framework Carbon -framework QuartzCore -framework OpenGL; then
3838 _vomodules="macosx $_vomodules"
3839 extra_ldflags="$extra_ldflags -framework Cocoa -framework QuartzCore -framework OpenGL"
3840 def_corevideo='#define CONFIG_COREVIDEO 1'
3841 _corevideo=yes
3842 else
3843 _novomodules="macosx $_novomodules"
3844 def_corevideo='#undef CONFIG_COREVIDEO'
3845 _corevideo=no
3848 echores "$_macosx"
3850 echocheck "Mac OS X Finder Support"
3851 if test "$_macosx_finder" = auto ; then
3852 _macosx_finder=$_macosx
3854 if test "$_macosx_finder" = yes; then
3855 def_macosx_finder='#define CONFIG_MACOSX_FINDER 1'
3856 _macosx_finder=yes
3857 else
3858 def_macosx_finder='#undef CONFIG_MACOSX_FINDER'
3859 _macosx_finder=no
3861 echores "$_macosx_finder"
3863 echocheck "Mac OS X Bundle file locations"
3864 if test "$_macosx_bundle" = auto ; then
3865 _macosx_bundle=$_macosx_finder
3867 if test "$_macosx_bundle" = yes; then
3868 def_macosx_bundle='#define CONFIG_MACOSX_BUNDLE 1'
3869 else
3870 def_macosx_bundle='#undef CONFIG_MACOSX_BUNDLE'
3871 _macosx_bundle=no
3873 echores "$_macosx_bundle"
3875 echocheck "Apple Remote"
3876 if test "$_apple_remote" = auto ; then
3877 _apple_remote=no
3878 cat > $TMPC <<EOF
3879 #include <stdio.h>
3880 #include <IOKit/IOCFPlugIn.h>
3881 int main(void) {
3882 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3883 CFMutableDictionaryRef hidMatchDictionary;
3884 IOReturn ioReturnValue;
3886 // Set up a matching dictionary to search the I/O Registry by class.
3887 // name for all HID class devices
3888 hidMatchDictionary = IOServiceMatching("AppleIRController");
3890 // Now search I/O Registry for matching devices.
3891 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3892 hidMatchDictionary, &hidObjectIterator);
3894 // If search is unsuccessful, return nonzero.
3895 if (ioReturnValue != kIOReturnSuccess ||
3896 !IOIteratorIsValid(hidObjectIterator)) {
3897 return 1;
3899 return 0;
3902 cc_check -framework IOKit && tmp_run && _apple_remote=yes
3904 if test "$_apple_remote" = yes ; then
3905 def_apple_remote='#define CONFIG_APPLE_REMOTE 1'
3906 extra_ldflags="$extra_ldflags -framework IOKit"
3907 else
3908 def_apple_remote='#undef CONFIG_APPLE_REMOTE'
3910 echores "$_apple_remote"
3912 fi #if darwin
3914 if linux; then
3916 echocheck "Apple IR"
3917 if test "$_apple_ir" = auto ; then
3918 _apple_ir=no
3919 cat > $TMPC <<EOF
3920 #include <linux/types.h>
3921 #include <linux/input.h>
3922 int main(void) {
3923 struct input_event ev;
3924 struct input_id id;
3925 return 0;
3928 cc_check && tmp_run && _apple_ir=yes
3930 if test "$_apple_ir" = yes ; then
3931 def_apple_ir='#define CONFIG_APPLE_IR 1'
3932 else
3933 def_apple_ir='#undef CONFIG_APPLE_IR'
3935 echores "$_apple_ir"
3936 fi #if linux
3938 echocheck "pkg-config"
3939 _pkg_config=pkg-config
3940 if `$_pkg_config --version > /dev/null 2>&1`; then
3941 if test "$_ld_static"; then
3942 _pkg_config="$_pkg_config --static"
3944 echores "yes"
3945 else
3946 _pkg_config=false
3947 echores "no"
3951 echocheck "Samba support (libsmbclient)"
3952 if test "$_smb" = yes; then
3953 extra_ldflags="$extra_ldflags -lsmbclient"
3955 if test "$_smb" = auto; then
3956 _smb=no
3957 cat > $TMPC << EOF
3958 #include <libsmbclient.h>
3959 int main(void) { smbc_opendir("smb://"); return 0; }
3961 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3962 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && \
3963 _smb=yes && break
3964 done
3967 if test "$_smb" = yes; then
3968 def_smb="#define CONFIG_LIBSMBCLIENT"
3969 _inputmodules="smb $_inputmodules"
3970 else
3971 def_smb="#undef CONFIG_LIBSMBCLIENT"
3972 _noinputmodules="smb $_noinputmodules"
3974 echores "$_smb"
3977 #########
3978 # VIDEO #
3979 #########
3982 echocheck "tdfxfb"
3983 if test "$_tdfxfb" = yes ; then
3984 def_tdfxfb='#define CONFIG_TDFXFB 1'
3985 _vomodules="tdfxfb $_vomodules"
3986 else
3987 def_tdfxfb='#undef CONFIG_TDFXFB'
3988 _novomodules="tdfxfb $_novomodules"
3990 echores "$_tdfxfb"
3992 echocheck "s3fb"
3993 if test "$_s3fb" = yes ; then
3994 def_s3fb='#define CONFIG_S3FB 1'
3995 _vomodules="s3fb $_vomodules"
3996 else
3997 def_s3fb='#undef CONFIG_S3FB'
3998 _novomodules="s3fb $_novomodules"
4000 echores "$_s3fb"
4002 echocheck "wii"
4003 if test "$_wii" = yes ; then
4004 def_wii='#define CONFIG_WII 1'
4005 _vomodules="wii $_vomodules"
4006 else
4007 def_wii='#undef CONFIG_WII'
4008 _novomodules="wii $_novomodules"
4010 echores "$_wii"
4012 echocheck "tdfxvid"
4013 if test "$_tdfxvid" = yes ; then
4014 def_tdfxvid='#define CONFIG_TDFX_VID 1'
4015 _vomodules="tdfx_vid $_vomodules"
4016 else
4017 def_tdfxvid='#undef CONFIG_TDFX_VID'
4018 _novomodules="tdfx_vid $_novomodules"
4020 echores "$_tdfxvid"
4022 echocheck "xvr100"
4023 if test "$_xvr100" = auto ; then
4024 cat > $TMPC << EOF
4025 #include <unistd.h>
4026 #include <sys/fbio.h>
4027 #include <sys/visual_io.h>
4028 int main(void) {
4029 struct vis_identifier ident;
4030 struct fbgattr attr;
4031 ioctl(0, VIS_GETIDENTIFIER, &ident);
4032 ioctl(0, FBIOGATTR, &attr);
4033 return 0;
4036 _xvr100=no
4037 cc_check && _xvr100=yes
4039 if test "$_xvr100" = yes ; then
4040 def_xvr100='#define CONFIG_XVR100 1'
4041 _vomodules="xvr100 $_vomodules"
4042 else
4043 def_tdfxvid='#undef CONFIG_XVR100'
4044 _novomodules="xvr100 $_novomodules"
4046 echores "$_xvr100"
4048 echocheck "tga"
4049 if test "$_tga" = yes ; then
4050 def_tga='#define CONFIG_TGA 1'
4051 _vomodules="tga $_vomodules"
4052 else
4053 def_tga='#undef CONFIG_TGA'
4054 _novomodules="tga $_novomodules"
4056 echores "$_tga"
4059 echocheck "md5sum support"
4060 if test "$_md5sum" = yes; then
4061 def_md5sum="#define CONFIG_MD5SUM"
4062 _vomodules="md5sum $_vomodules"
4063 else
4064 def_md5sum="#undef CONFIG_MD5SUM"
4065 _novomodules="md5sum $_novomodules"
4067 echores "$_md5sum"
4070 echocheck "yuv4mpeg support"
4071 if test "$_yuv4mpeg" = yes; then
4072 def_yuv4mpeg="#define CONFIG_YUV4MPEG"
4073 _vomodules="yuv4mpeg $_vomodules"
4074 else
4075 def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
4076 _novomodules="yuv4mpeg $_novomodules"
4078 echores "$_yuv4mpeg"
4081 echocheck "bl"
4082 if test "$_bl" = yes ; then
4083 def_bl='#define CONFIG_BL 1'
4084 _vomodules="bl $_vomodules"
4085 else
4086 def_bl='#undef CONFIG_BL'
4087 _novomodules="bl $_novomodules"
4089 echores "$_bl"
4092 echocheck "DirectFB"
4093 if test "$_directfb" = auto ; then
4094 _directfb=no
4095 cat > $TMPC <<EOF
4096 #include <directfb.h>
4097 int main(void) { IDirectFB *foo; DirectFBInit(0,0); return 0; }
4099 for _inc_tmp in "" -I/usr/local/include/directfb \
4100 -I/usr/include/directfb -I/usr/local/include; do
4101 cc_check $_inc_tmp -ldirectfb && _directfb=yes && \
4102 extra_cflags="$extra_cflags $_inc_tmp" && break
4103 done
4106 dfb_version() {
4107 expr $1 \* 65536 + $2 \* 256 + $3
4110 if test "$_directfb" = yes; then
4111 cat > $TMPC << EOF
4112 #include <directfb_version.h>
4114 dfb_ver = DIRECTFB_MAJOR_VERSION.DIRECTFB_MINOR_VERSION.DIRECTFB_MICRO_VERSION
4117 if $_cc -E $TMPC $extra_cflags > "$TMPEXE"; then
4118 _directfb_version=`sed -n 's/^dfb_ver[^0-9]*\(.*\)/\1/p' "$TMPEXE" | tr -d '()'`
4119 _dfb_major=`echo $_directfb_version | cut -d . -f 1`
4120 _dfb_minor=`echo $_directfb_version | cut -d . -f 2`
4121 _dfb_micro=`echo $_directfb_version | cut -d . -f 3`
4122 _dfb_version=`dfb_version $_dfb_major $_dfb_minor $_dfb_micro`
4123 if test "$_dfb_version" -ge `dfb_version 0 9 13`; then
4124 def_directfb_version="#define DIRECTFBVERSION $_dfb_version"
4125 _res_comment="$_directfb_version"
4126 test "$_dfb_version" -ge `dfb_version 0 9 15` && _dfbmga=yes
4127 else
4128 def_directfb_version='#undef DIRECTFBVERSION'
4129 _directfb=no
4130 _res_comment="version >=0.9.13 required"
4132 else
4133 _directfb=no
4134 _res_comment="failed to get version"
4137 echores "$_directfb"
4139 if test "$_directfb" = yes ; then
4140 def_directfb='#define CONFIG_DIRECTFB 1'
4141 _vomodules="directfb $_vomodules"
4142 libs_mplayer="$libs_mplayer -ldirectfb"
4143 else
4144 def_directfb='#undef CONFIG_DIRECTFB'
4145 _novomodules="directfb $_novomodules"
4147 if test "$_dfbmga" = yes; then
4148 _vomodules="dfbmga $_vomodules"
4149 def_dfbmga='#define CONFIG_DFBMGA 1'
4150 else
4151 _novomodules="dfbmga $_novomodules"
4152 def_dfbmga='#undef CONFIG_DFBMGA'
4156 echocheck "X11 headers presence"
4157 _x11_headers="no"
4158 _res_comment="check if the dev(el) packages are installed"
4159 for I in `echo $extra_cflags | sed s/-I//g` /usr/include ; do
4160 if test -f "$I/X11/Xlib.h" ; then
4161 _x11_headers="yes"
4162 _res_comment=""
4163 break
4165 done
4166 if test $_cross_compile = no; then
4167 for I in /usr/X11/include /usr/X11R7/include /usr/X11R6/include \
4168 /usr/include/X11R6 /usr/openwin/include ; do
4169 if test -f "$I/X11/Xlib.h" ; then
4170 extra_cflags="$extra_cflags -I$I"
4171 _x11_headers="yes"
4172 _res_comment="using $I"
4173 break
4175 done
4177 echores "$_x11_headers"
4180 echocheck "X11"
4181 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
4182 cat > $TMPC <<EOF
4183 #include <X11/Xlib.h>
4184 #include <X11/Xutil.h>
4185 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; }
4187 for I in "" -L/usr/X11R7/lib -L/usr/X11R6/lib -L/usr/lib/X11R6 \
4188 -L/usr/X11/lib -L/usr/lib32 -L/usr/openwin/lib -L/usr/X11R6/lib64 \
4189 -L/usr/lib ; do
4190 if netbsd; then
4191 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R`echo $I | sed s/^-L//`"
4192 else
4193 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
4195 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" \
4196 && _x11=yes && break
4197 done
4199 if test "$_x11" = yes ; then
4200 def_x11='#define CONFIG_X11 1'
4201 _vomodules="x11 xover $_vomodules"
4202 else
4203 _x11=no
4204 def_x11='#undef CONFIG_X11'
4205 _novomodules="x11 $_novomodules"
4206 _res_comment="check if the dev(el) packages are installed"
4207 # disable stuff that depends on X
4208 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no ; _vdpau=no
4210 echores "$_x11"
4212 echocheck "Xss screensaver extensions"
4213 if test "$_xss" = auto ; then
4214 cat > $TMPC << EOF
4215 #include <X11/Xlib.h>
4216 #include <X11/extensions/scrnsaver.h>
4217 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
4219 _xss=no
4220 cc_check -lXss && _xss=yes
4222 if test "$_xss" = yes ; then
4223 def_xss='#define CONFIG_XSS 1'
4224 libs_mplayer="$libs_mplayer -lXss"
4225 else
4226 def_xss='#undef CONFIG_XSS'
4228 echores "$_xss"
4230 echocheck "DPMS"
4231 _xdpms3=no
4232 _xdpms4=no
4233 if test "$_x11" = yes ; then
4234 cat > $TMPC <<EOF
4235 #include <X11/Xmd.h>
4236 #include <X11/Xlib.h>
4237 #include <X11/Xutil.h>
4238 #include <X11/Xatom.h>
4239 #include <X11/extensions/dpms.h>
4240 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4242 cc_check -lXdpms && _xdpms3=yes
4243 cat > $TMPC <<EOF
4244 #include <X11/Xlib.h>
4245 #include <X11/extensions/dpms.h>
4246 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4248 cc_check -lXext && _xdpms4=yes
4250 if test "$_xdpms4" = yes ; then
4251 def_xdpms='#define CONFIG_XDPMS 1'
4252 _res_comment="using Xdpms 4"
4253 echores "yes"
4254 elif test "$_xdpms3" = yes ; then
4255 def_xdpms='#define CONFIG_XDPMS 1'
4256 libs_mplayer="$libs_mplayer -lXdpms"
4257 _res_comment="using Xdpms 3"
4258 echores "yes"
4259 else
4260 def_xdpms='#undef CONFIG_XDPMS'
4261 echores "no"
4265 echocheck "Xv"
4266 if test "$_xv" = auto ; then
4267 cat > $TMPC <<EOF
4268 #include <X11/Xlib.h>
4269 #include <X11/extensions/Xvlib.h>
4270 int main(void) {
4271 (void) XvGetPortAttribute(0, 0, 0, 0);
4272 (void) XvQueryPortAttributes(0, 0, 0);
4273 return 0; }
4275 _xv=no
4276 cc_check -lXv && _xv=yes
4279 if test "$_xv" = yes ; then
4280 def_xv='#define CONFIG_XV 1'
4281 libs_mplayer="$libs_mplayer -lXv"
4282 _vomodules="xv $_vomodules"
4283 else
4284 def_xv='#undef CONFIG_XV'
4285 _novomodules="xv $_novomodules"
4287 echores "$_xv"
4290 echocheck "XvMC"
4291 if test "$_xv" = yes && test "$_xvmc" != no ; then
4292 _xvmc=no
4293 cat > $TMPC <<EOF
4294 #include <X11/Xlib.h>
4295 #include <X11/extensions/Xvlib.h>
4296 #include <X11/extensions/XvMClib.h>
4297 int main(void) {
4298 (void) XvMCQueryExtension(0,0,0);
4299 (void) XvMCCreateContext(0,0,0,0,0,0,0);
4300 return 0; }
4302 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
4303 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
4304 done
4306 if test "$_xvmc" = yes ; then
4307 def_xvmc='#define CONFIG_XVMC 1'
4308 libs_mplayer="$libs_mplayer -lXvMC -l$_xvmclib"
4309 _vomodules="xvmc $_vomodules"
4310 _res_comment="using $_xvmclib"
4311 else
4312 def_xvmc='#define CONFIG_XVMC 0'
4313 _novomodules="xvmc $_novomodules"
4314 _libavdecoders=`echo $_libavdecoders | sed -e s/MPEG_XVMC_DECODER// `
4316 echores "$_xvmc"
4319 echocheck "VDPAU"
4320 if test "$_vdpau" = auto ; then
4321 _vdpau=no
4322 if test "$_dl" = yes ; then
4323 cat > $TMPC <<EOF
4324 #include <vdpau/vdpau_x11.h>
4325 int main(void) {return VDP_VIDEO_MIXER_ATTRIBUTE_SKIP_CHROMA_DEINTERLACE;}
4327 cc_check && _vdpau=yes
4330 if test "$_vdpau" = yes ; then
4331 def_vdpau='#define CONFIG_VDPAU 1'
4332 _vomodules="vdpau $_vomodules"
4333 else
4334 def_vdpau='#define CONFIG_VDPAU 0'
4335 _novomodules="vdpau $_novomodules"
4336 _libavdecoders=`echo $_libavdecoders | sed -e s/MPEG_VDPAU_DECODER// -e s/MPEG1_VDPAU_DECODER// -e s/H264_VDPAU_DECODER// -e s/WMV3_VDPAU_DECODER// -e s/VC1_VDPAU_DECODER//`
4338 echores "$_vdpau"
4341 echocheck "Xinerama"
4342 if test "$_xinerama" = auto ; then
4343 cat > $TMPC <<EOF
4344 #include <X11/Xlib.h>
4345 #include <X11/extensions/Xinerama.h>
4346 int main(void) { (void) XineramaIsActive(0); return 0; }
4348 _xinerama=no
4349 cc_check -lXinerama && _xinerama=yes
4352 if test "$_xinerama" = yes ; then
4353 def_xinerama='#define CONFIG_XINERAMA 1'
4354 libs_mplayer="$libs_mplayer -lXinerama"
4355 else
4356 def_xinerama='#undef CONFIG_XINERAMA'
4358 echores "$_xinerama"
4361 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4362 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4363 # named 'X extensions' or something similar.
4364 # This check may be useful for future mplayer versions (to change resolution)
4365 # If you run into problems, remove '-lXxf86vm'.
4366 echocheck "Xxf86vm"
4367 if test "$_vm" = auto ; then
4368 cat > $TMPC <<EOF
4369 #include <X11/Xlib.h>
4370 #include <X11/extensions/xf86vmode.h>
4371 int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; }
4373 _vm=no
4374 cc_check -lXxf86vm && _vm=yes
4376 if test "$_vm" = yes ; then
4377 def_vm='#define CONFIG_XF86VM 1'
4378 libs_mplayer="$libs_mplayer -lXxf86vm"
4379 else
4380 def_vm='#undef CONFIG_XF86VM'
4382 echores "$_vm"
4384 # Check for the presence of special keycodes, like audio control buttons
4385 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4386 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4387 # have these new keycodes.
4388 echocheck "XF86keysym"
4389 if test "$_xf86keysym" = auto; then
4390 _xf86keysym=no
4391 cat > $TMPC <<EOF
4392 #include <X11/Xlib.h>
4393 #include <X11/XF86keysym.h>
4394 int main(void) { return XF86XK_AudioPause; }
4396 cc_check && _xf86keysym=yes
4398 if test "$_xf86keysym" = yes ; then
4399 def_xf86keysym='#define CONFIG_XF86XK 1'
4400 else
4401 def_xf86keysym='#undef CONFIG_XF86XK'
4403 echores "$_xf86keysym"
4405 echocheck "DGA"
4406 if test "$_dga2" = auto && test "$_x11" = yes ; then
4407 cat > $TMPC << EOF
4408 #include <X11/Xlib.h>
4409 #include <X11/extensions/xf86dga.h>
4410 int main(void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4412 _dga2=no
4413 cc_check -lXxf86dga && _dga2=yes
4415 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4416 cat > $TMPC << EOF
4417 #include <X11/Xlib.h>
4418 #include <X11/extensions/xf86dga.h>
4419 int main(void) { (void) XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4421 _dga1=no
4422 cc_check -lXxf86dga -lXxf86vm && _dga1=yes
4425 _dga=no
4426 def_dga='#undef CONFIG_DGA'
4427 def_dga1='#undef CONFIG_DGA1'
4428 def_dga2='#undef CONFIG_DGA2'
4429 if test "$_dga1" = yes ; then
4430 _dga=yes
4431 def_dga1='#define CONFIG_DGA1 1'
4432 _res_comment="using DGA 1.0"
4433 elif test "$_dga2" = yes ; then
4434 _dga=yes
4435 def_dga2='#define CONFIG_DGA2 1'
4436 _res_comment="using DGA 2.0"
4438 if test "$_dga" = yes ; then
4439 def_dga='#define CONFIG_DGA 1'
4440 libs_mplayer="$libs_mplayer -lXxf86dga"
4441 _vomodules="dga $_vomodules"
4442 else
4443 _novomodules="dga $_novomodules"
4445 echores "$_dga"
4448 echocheck "3dfx"
4449 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4450 def_3dfx='#define CONFIG_3DFX 1'
4451 _vomodules="3dfx $_vomodules"
4452 else
4453 def_3dfx='#undef CONFIG_3DFX'
4454 _novomodules="3dfx $_novomodules"
4456 echores "$_3dfx"
4459 echocheck "OpenGL"
4460 #Note: this test is run even with --enable-gl since we autodetect linker flags
4461 if (test "$_x11" = yes || win32) && test "$_gl" != no ; then
4462 cat > $TMPC << EOF
4463 #ifdef GL_WIN32
4464 #include <windows.h>
4465 #include <GL/gl.h>
4466 #else
4467 #include <GL/gl.h>
4468 #include <X11/Xlib.h>
4469 #include <GL/glx.h>
4470 #endif
4471 int main(void) {
4472 #ifdef GL_WIN32
4473 HDC dc;
4474 wglCreateContext(dc);
4475 #else
4476 glXCreateContext(NULL, NULL, NULL, True);
4477 #endif
4478 glFinish();
4479 return 0;
4482 _gl=no
4483 if cc_check -lGL $_ld_lm ; then
4484 _gl=yes
4485 libs_mplayer="$libs_mplayer -lGL $_ld_dl"
4486 elif cc_check -lGL $_ld_lm $_ld_pthread ; then
4487 _gl=yes
4488 libs_mplayer="$libs_mplayer -lGL $_ld_pthread $_ld_dl"
4489 elif cc_check -DGL_WIN32 -lopengl32 ; then
4490 _gl=yes
4491 _gl_win32=yes
4492 libs_mplayer="$libs_mplayer -lopengl32 -lgdi32"
4494 else
4495 _gl=no
4497 if test "$_gl" = yes ; then
4498 def_gl='#define CONFIG_GL 1'
4499 if test "$_gl_win32" = yes ; then
4500 def_gl_win32='#define GL_WIN32 1'
4501 _res_comment="win32 version"
4503 _vomodules="opengl $_vomodules"
4504 else
4505 def_gl='#undef CONFIG_GL'
4506 def_gl_win32='#undef GL_WIN32'
4507 _novomodules="opengl $_novomodules"
4509 echores "$_gl"
4512 echocheck "VIDIX"
4513 def_vidix='#undef CONFIG_VIDIX'
4514 def_vidix_drv_cyberblade='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4515 _vidix_drv_cyberblade=no
4516 def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4517 _vidix_drv_ivtv=no
4518 def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4519 _vidix_drv_ivtv=no
4520 def_vidix_drv_mach64='#undef CONFIG_VIDIX_DRV_MACH64'
4521 _vidix_drv_mach64=no
4522 def_vidix_drv_mga='#undef CONFIG_VIDIX_DRV_MGA'
4523 _vidix_drv_mga=no
4524 def_vidix_drv_mga_crtc2='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4525 _vidix_drv_mga_crtc2=no
4526 def_vidix_drv_nvidia='#undef CONFIG_VIDIX_DRV_NVIDIA'
4527 _vidix_drv_nvidia=no
4528 def_vidix_drv_pm2='#undef CONFIG_VIDIX_DRV_PM2'
4529 _vidix_drv_pm2=no
4530 def_vidix_drv_pm3='#undef CONFIG_VIDIX_DRV_PM3'
4531 _vidix_drv_pm3=no
4532 def_vidix_drv_radeon='#undef CONFIG_VIDIX_DRV_RADEON'
4533 _vidix_drv_radeon=no
4534 def_vidix_drv_rage128='#undef CONFIG_VIDIX_DRV_RAGE128'
4535 _vidix_drv_rage128=no
4536 def_vidix_drv_s3='#undef CONFIG_VIDIX_DRV_S3'
4537 _vidix_drv_s3=no
4538 def_vidix_drv_sh_veu='#undef CONFIG_VIDIX_DRV_SH_VEU'
4539 _vidix_drv_sh_veu=no
4540 def_vidix_drv_sis='#undef CONFIG_VIDIX_DRV_SIS'
4541 _vidix_drv_sis=no
4542 def_vidix_drv_unichrome='#undef CONFIG_VIDIX_DRV_UNICHROME'
4543 _vidix_drv_unichrome=no
4544 if test "$_vidix" = auto ; then
4545 _vidix=no
4546 x86 && (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32) \
4547 && _vidix=yes
4548 (ppc || alpha) && linux && _vidix=yes
4550 echores "$_vidix"
4552 if test "$_vidix" = yes ; then
4553 def_vidix='#define CONFIG_VIDIX 1'
4554 _vomodules="cvidix $_vomodules"
4555 test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sh_veu sis unichrome"
4556 test $_ivtv = "yes" || _vidix_drivers=`echo $_vidix_drivers | sed s/ivtv//`
4558 # some vidix drivers are architecture and os specific, discard them elsewhere
4559 x86 || _vidix_drivers=`echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome// -e s/s3//`
4560 (test $host_arch = "sh" && linux) || _vidix_drivers=`echo $_vidix_drivers | sed s/sh_veu//`
4562 for driver in $_vidix_drivers ; do
4563 uc_driver=`echo $driver | tr '[a-z]' '[A-Z]'`
4564 eval _vidix_drv_${driver}=yes
4565 eval def_vidix_drv_${driver}=\"\#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4566 done
4568 echocheck "VIDIX PCI device name database"
4569 echores "$_vidix_pcidb"
4570 if test "$_vidix_pcidb" = yes ; then
4571 _vidix_pcidb_val=1
4572 else
4573 _vidix_pcidb_val=0
4576 echocheck "VIDIX dhahelper support"
4577 test "$_dhahelper" = yes && cflags_dhahelper=-DCONFIG_DHAHELPER
4578 echores "$_dhahelper"
4580 echocheck "VIDIX svgalib_helper support"
4581 test "$_svgalib_helper" = yes && cflags_svgalib_helper=-DCONFIG_SVGAHELPER
4582 echores "$_svgalib_helper"
4584 else
4585 _novomodules="cvidix $_novomodules"
4588 if test "$_vidix" = yes && win32; then
4589 winvidix=yes
4590 _vomodules="winvidix $_vomodules"
4591 libs_mplayer="$libs_mplayer -lgdi32"
4592 else
4593 _novomodules="winvidix $_novomodules"
4595 if test "$_vidix" = yes && test "$_x11" = yes; then
4596 xvidix=yes
4597 _vomodules="xvidix $_vomodules"
4598 else
4599 _novomodules="xvidix $_novomodules"
4602 echocheck "/dev/mga_vid"
4603 if test "$_mga" = auto ; then
4604 _mga=no
4605 test -c /dev/mga_vid && _mga=yes
4607 if test "$_mga" = yes ; then
4608 def_mga='#define CONFIG_MGA 1'
4609 _vomodules="mga $_vomodules"
4610 else
4611 def_mga='#undef CONFIG_MGA'
4612 _novomodules="mga $_novomodules"
4614 echores "$_mga"
4617 echocheck "xmga"
4618 if test "$_xmga" = auto ; then
4619 _xmga=no
4620 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
4622 if test "$_xmga" = yes ; then
4623 def_xmga='#define CONFIG_XMGA 1'
4624 _vomodules="xmga $_vomodules"
4625 else
4626 def_xmga='#undef CONFIG_XMGA'
4627 _novomodules="xmga $_novomodules"
4629 echores "$_xmga"
4632 echocheck "GGI"
4633 if test "$_ggi" = auto ; then
4634 cat > $TMPC << EOF
4635 #include <ggi/ggi.h>
4636 int main(void) { ggiInit(); return 0; }
4638 _ggi=no
4639 cc_check -lggi && _ggi=yes
4641 if test "$_ggi" = yes ; then
4642 def_ggi='#define CONFIG_GGI 1'
4643 libs_mplayer="$libs_mplayer -lggi"
4644 _vomodules="ggi $_vomodules"
4645 else
4646 def_ggi='#undef CONFIG_GGI'
4647 _novomodules="ggi $_novomodules"
4649 echores "$_ggi"
4651 echocheck "GGI extension: libggiwmh"
4652 if test "$_ggiwmh" = auto ; then
4653 _ggiwmh=no
4654 cat > $TMPC << EOF
4655 #include <ggi/ggi.h>
4656 #include <ggi/wmh.h>
4657 int main(void) { ggiInit(); ggiWmhInit(); return 0; }
4659 cc_check -lggi -lggiwmh && _ggiwmh=yes
4661 # needed to get right output on obscure combination
4662 # like --disable-ggi --enable-ggiwmh
4663 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4664 def_ggiwmh='#define CONFIG_GGIWMH 1'
4665 libs_mplayer="$libs_mplayer -lggiwmh"
4666 else
4667 _ggiwmh=no
4668 def_ggiwmh='#undef CONFIG_GGIWMH'
4670 echores "$_ggiwmh"
4673 echocheck "AA"
4674 if test "$_aa" = auto ; then
4675 cat > $TMPC << EOF
4676 #include <aalib.h>
4677 extern struct aa_hardware_params aa_defparams;
4678 extern struct aa_renderparams aa_defrenderparams;
4679 int main(void) {
4680 aa_context *c;
4681 aa_renderparams *p;
4682 (void) aa_init(0, 0, 0);
4683 c = aa_autoinit(&aa_defparams);
4684 p = aa_getrenderparams();
4685 aa_autoinitkbd(c,0);
4686 return 0; }
4688 _aa=no
4689 for _ld_tmp in "-laa" ; do
4690 cc_check $_ld_tmp && libs_mplayer="$libs_mplayer $_ld_tmp" && _aa=yes && break
4691 done
4693 if test "$_aa" = yes ; then
4694 def_aa='#define CONFIG_AA 1'
4695 if cygwin ; then
4696 libs_mplayer="$libs_mplayer `aalib-config --libs | cut -d " " -f 2,5,6`"
4698 _vomodules="aa $_vomodules"
4699 else
4700 def_aa='#undef CONFIG_AA'
4701 _novomodules="aa $_novomodules"
4703 echores "$_aa"
4706 echocheck "CACA"
4707 if test "$_caca" = auto ; then
4708 _caca=no
4709 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4710 cat > $TMPC << EOF
4711 #include <caca.h>
4712 #ifdef CACA_API_VERSION_1
4713 #include <caca0.h>
4714 #endif
4715 int main(void) { (void) caca_init(); return 0; }
4717 cc_check `caca-config --libs` && _caca=yes
4720 if test "$_caca" = yes ; then
4721 def_caca='#define CONFIG_CACA 1'
4722 extra_cflags="$extra_cflags `caca-config --cflags`"
4723 libs_mplayer="$libs_mplayer `caca-config --libs`"
4724 _vomodules="caca $_vomodules"
4725 else
4726 def_caca='#undef CONFIG_CACA'
4727 _novomodules="caca $_novomodules"
4729 echores "$_caca"
4732 echocheck "SVGAlib"
4733 if test "$_svga" = auto ; then
4734 cat > $TMPC << EOF
4735 #include <vga.h>
4736 int main(void) { return 0; }
4738 _svga=no
4739 cc_check -lvga $_ld_lm && _svga=yes
4741 if test "$_svga" = yes ; then
4742 def_svga='#define CONFIG_SVGALIB 1'
4743 libs_mplayer="$libs_mplayer -lvga"
4744 _vomodules="svga $_vomodules"
4745 else
4746 def_svga='#undef CONFIG_SVGALIB'
4747 _novomodules="svga $_novomodules"
4749 echores "$_svga"
4752 echocheck "FBDev"
4753 if test "$_fbdev" = auto ; then
4754 _fbdev=no
4755 linux && _fbdev=yes
4757 if test "$_fbdev" = yes ; then
4758 def_fbdev='#define CONFIG_FBDEV 1'
4759 _vomodules="fbdev $_vomodules"
4760 else
4761 def_fbdev='#undef CONFIG_FBDEV'
4762 _novomodules="fbdev $_novomodules"
4764 echores "$_fbdev"
4768 echocheck "DVB"
4769 if test "$_dvb" = auto ; then
4770 _dvb=no
4771 cat >$TMPC << EOF
4772 #include <poll.h>
4773 #include <sys/ioctl.h>
4774 #include <stdio.h>
4775 #include <time.h>
4776 #include <unistd.h>
4777 #include <ost/dmx.h>
4778 #include <ost/frontend.h>
4779 #include <ost/sec.h>
4780 #include <ost/video.h>
4781 #include <ost/audio.h>
4782 int main(void) {return 0;}
4784 for _inc_tmp in "" "-I/usr/src/DVB/ost/include" ; do
4785 cc_check $_inc_tmp && _dvb=yes && \
4786 extra_cflags="$extra_cflags $_inc_tmp" && break
4787 done
4789 echores "$_dvb"
4790 if test "$_dvb" = yes ; then
4791 def_dvb='#define CONFIG_DVB 1'
4792 def_dvbin='#define CONFIG_DVBIN 1'
4793 _aomodules="mpegpes(dvb) $_aomodules"
4794 _vomodules="mpegpes(dvb) $_vomodules"
4797 echocheck "DVB HEAD"
4798 if test "$_dvbhead" = auto ; then
4799 _dvbhead=no
4801 cat >$TMPC << EOF
4802 #include <poll.h>
4803 #include <sys/ioctl.h>
4804 #include <stdio.h>
4805 #include <time.h>
4806 #include <unistd.h>
4807 #include <linux/dvb/dmx.h>
4808 #include <linux/dvb/frontend.h>
4809 #include <linux/dvb/video.h>
4810 #include <linux/dvb/audio.h>
4811 int main(void) {return 0;}
4813 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4814 cc_check $_inc_tmp && _dvbhead=yes && \
4815 extra_cflags="$extra_cflags $_inc_tmp" && break
4816 done
4818 echores "$_dvbhead"
4819 if test "$_dvbhead" = yes ; then
4820 def_dvb='#define CONFIG_DVB 1'
4821 def_dvb_head='#define CONFIG_DVB_HEAD 1'
4822 def_dvbin='#define CONFIG_DVBIN 1'
4823 _aomodules="mpegpes(dvb) $_aomodules"
4824 _vomodules="mpegpes(dvb) $_vomodules"
4827 if test "$_dvbhead" = no && test "$_dvb" = no ; then
4828 def_dvb='#undef CONFIG_DVB'
4829 def_dvb_head='#undef CONFIG_DVB_HEAD'
4830 def_dvbin='#undef CONFIG_DVBIN '
4831 _aomodules="mpegpes(file) $_aomodules"
4832 _vomodules="mpegpes(file) $_vomodules"
4835 if test "$_dvb" = yes || test "$_dvbhead" = yes ; then
4836 _dvbin=yes
4837 _inputmodules="dvb $_inputmodules"
4838 else
4839 _dvbin=no
4840 _noinputmodules="dvb $_noinputmodules"
4846 echocheck "PNG support"
4847 if test "$_png" = auto ; then
4848 _png=no
4849 if irix ; then
4850 # Don't check for -lpng on irix since it has its own libpng
4851 # incompatible with the GNU libpng
4852 _res_comment="disabled on irix (not GNU libpng)"
4853 else
4854 cat > $TMPC << EOF
4855 #include <png.h>
4856 #include <string.h>
4857 int main(void) {
4858 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4859 printf("libpng: %s\n", png_libpng_ver);
4860 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4863 if cc_check -lpng -lz $_ld_lm ; then
4864 if tmp_run ; then
4865 _png=yes
4866 else
4867 _res_comment="mismatch of library and header versions"
4872 echores "$_png"
4873 if test "$_png" = yes ; then
4874 def_png='#define CONFIG_PNG 1'
4875 extra_ldflags="$extra_ldflags -lpng -lz"
4876 _vomodules="png $_vomodules"
4877 else
4878 def_png='#undef CONFIG_PNG'
4879 _novomodules="png $_novomodules"
4882 echocheck "MNG support"
4883 if test "$_mng" = auto ; then
4884 _mng=no
4885 cat > $TMPC << EOF
4886 #include <libmng.h>
4887 int main(void) {
4888 const char * p_ver = mng_version_text();
4889 return !p_ver || p_ver[0] == 0;
4892 if cc_check -lmng -lz $_ld_lm ; then
4893 _mng=yes
4896 echores "$_mng"
4897 if test "$_mng" = yes ; then
4898 def_mng='#define CONFIG_MNG 1'
4899 extra_ldflags="$extra_ldflags -lmng -lz"
4900 else
4901 def_mng='#undef CONFIG_MNG'
4904 echocheck "JPEG support"
4905 if test "$_jpeg" = auto ; then
4906 _jpeg=no
4907 cat > $TMPC << EOF
4908 #include <stdio.h>
4909 #include <stdlib.h>
4910 #include <setjmp.h>
4911 #include <string.h>
4912 #include <jpeglib.h>
4913 int main(void) { return 0; }
4915 if cc_check -ljpeg $_ld_lm ; then
4916 if tmp_run ; then
4917 _jpeg=yes
4921 echores "$_jpeg"
4923 if test "$_jpeg" = yes ; then
4924 def_jpeg='#define CONFIG_JPEG 1'
4925 _vomodules="jpeg $_vomodules"
4926 extra_ldflags="$extra_ldflags -ljpeg"
4927 else
4928 def_jpeg='#undef CONFIG_JPEG'
4929 _novomodules="jpeg $_novomodules"
4934 echocheck "PNM support"
4935 if test "$_pnm" = yes; then
4936 def_pnm="#define CONFIG_PNM 1"
4937 _vomodules="pnm $_vomodules"
4938 else
4939 def_pnm="#undef CONFIG_PNM"
4940 _novomodules="pnm $_novomodules"
4942 echores "$_pnm"
4946 echocheck "GIF support"
4947 # This is to appease people who want to force gif support.
4948 # If it is forced to yes, then we still do checks to determine
4949 # which gif library to use.
4950 if test "$_gif" = yes ; then
4951 _force_gif=yes
4952 _gif=auto
4955 if test "$_gif" = auto ; then
4956 _gif=no
4957 cat > $TMPC << EOF
4958 #include <gif_lib.h>
4959 int main(void) { return 0; }
4961 for _ld_gif in "-lungif" "-lgif" ; do
4962 cc_check $_ld_gif && tmp_run && _gif=yes && break
4963 done
4966 # If no library was found, and the user wants support forced,
4967 # then we force it on with libgif, as this is the safest
4968 # assumption IMHO. (libungif & libregif both create symbolic
4969 # links to libgif. We also assume that no x11 support is needed,
4970 # because if you are forcing this, then you _should_ know what
4971 # you are doing. [ Besides, package maintainers should never
4972 # have compiled x11 deps into libungif in the first place. ] )
4973 # </rant>
4974 # --Joey
4975 if test "$_force_gif" = yes && test "$_gif" = no ; then
4976 _gif=yes
4977 _ld_gif="-lgif"
4980 if test "$_gif" = yes ; then
4981 def_gif='#define CONFIG_GIF 1'
4982 _codecmodules="gif $_codecmodules"
4983 _vomodules="gif89a $_vomodules"
4984 _res_comment="old version, some encoding functions disabled"
4985 def_gif_4='#undef CONFIG_GIF_4'
4986 extra_ldflags="$extra_ldflags $_ld_gif"
4988 cat > $TMPC << EOF
4989 #include <signal.h>
4990 #include <gif_lib.h>
4991 void catch() { exit(1); }
4992 int main(void) {
4993 signal(SIGSEGV, catch); // catch segfault
4994 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4995 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4996 return 0;
4999 if cc_check "$_ld_gif" && tmp_run ; then
5000 def_gif_4='#define CONFIG_GIF_4 1'
5001 _res_comment=""
5003 else
5004 def_gif='#undef CONFIG_GIF'
5005 def_gif_4='#undef CONFIG_GIF_4'
5006 _novomodules="gif89a $_novomodules"
5007 _nocodecmodules="gif $_nocodecmodules"
5009 echores "$_gif"
5012 case "$_gif" in yes*)
5013 echocheck "broken giflib workaround"
5014 def_gif_tvt_hack='#define CONFIG_GIF_TVT_HACK 1'
5016 cat > $TMPC << EOF
5017 #include <gif_lib.h>
5018 int main(void) {
5019 GifFileType gif;
5020 printf("UserData is at address %p\n", gif.UserData);
5021 return 0;
5024 if cc_check "$_ld_gif" && tmp_run ; then
5025 def_gif_tvt_hack='#undef CONFIG_GIF_TVT_HACK'
5026 echores "disabled"
5027 else
5028 echores "enabled"
5031 esac
5034 echocheck "VESA support"
5035 if test "$_vesa" = auto ; then
5036 cat > $TMPC << EOF
5037 #include <vbe.h>
5038 int main(void) { vbeVersion(); return 0; }
5040 _vesa=no
5041 cc_check -lvbe -llrmi && _vesa=yes
5043 if test "$_vesa" = yes ; then
5044 def_vesa='#define CONFIG_VESA 1'
5045 libs_mplayer="$libs_mplayer -lvbe -llrmi"
5046 _vomodules="vesa $_vomodules"
5047 else
5048 def_vesa='#undef CONFIG_VESA'
5049 _novomodules="vesa $_novomodules"
5051 echores "$_vesa"
5053 #################
5054 # VIDEO + AUDIO #
5055 #################
5058 echocheck "SDL"
5059 if test -z "$_sdlconfig" ; then
5060 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
5061 _sdlconfig="sdl-config"
5062 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
5063 _sdlconfig="sdl11-config"
5064 else
5065 _sdlconfig=false
5068 if test "$_sdl" = auto || test "$_sdl" = yes ; then
5069 cat > $TMPC << EOF
5070 #include <SDL.h>
5071 int main(void) {
5072 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
5073 return 0;
5076 _sdl=no
5077 if "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
5078 if cc_check `$_sdlconfig --cflags` `$_sdlconfig --libs` >>"$TMPLOG" 2>&1 ; then
5079 _sdlversion=`$_sdlconfig --version | sed 's/[^0-9]//g'`
5080 if test "$_sdlversion" -gt 116 ; then
5081 if test "$_sdlversion" -lt 121 ; then
5082 def_sdlbuggy='#define BUGGY_SDL'
5083 else
5084 def_sdlbuggy='#undef BUGGY_SDL'
5086 _sdl=yes
5091 if test "$_sdl" = yes ; then
5092 def_sdl='#define CONFIG_SDL 1'
5093 if cygwin ; then
5094 libs_mplayer="$libs_mplayer `$_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/`"
5095 extra_cflags="$extra_cflags `$_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/`"
5096 elif mingw32 ; then
5097 libs_mplayer="$libs_mplayer `$_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//`"
5098 extra_cflags="$extra_cflags `$_sdlconfig --cflags | sed s/-Dmain=SDL_main//`"
5099 else
5100 libs_mplayer="$libs_mplayer `$_sdlconfig --libs`"
5101 extra_cflags="$extra_cflags `$_sdlconfig --cflags | sed s/-D_GNU_SOURCE=1//`"
5103 _vomodules="sdl $_vomodules"
5104 _aomodules="sdl $_aomodules"
5105 _res_comment="using $_sdlconfig"
5106 else
5107 def_sdl='#undef CONFIG_SDL'
5108 _novomodules="sdl $_novomodules"
5109 _noaomodules="sdl $_noaomodules"
5111 echores "$_sdl"
5114 if os2 ; then
5115 echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
5116 if test "$_kva" = auto; then
5117 cat > $TMPC << EOF
5118 #include <os2.h>
5119 #include <kva.h>
5120 int main( void ) { return 0; }
5122 _kva=no;
5123 cc_check -lkva && _kva=yes
5125 if test "$_kva" = yes ; then
5126 def_kva='#define CONFIG_KVA 1'
5127 libs_mplayer="$libs_mplayer -lkva"
5128 _vomodules="kva $_vomodules"
5129 else
5130 def_kva='#undef CONFIG_KVA'
5131 _novomodules="kva $_novomodules"
5133 echores "$_kva"
5134 fi #if os2
5137 if win32; then
5139 echocheck "Windows waveout"
5140 if test "$_win32waveout" = auto ; then
5141 cat > $TMPC << EOF
5142 #include <windows.h>
5143 #include <mmsystem.h>
5144 int main(void) { return 0; }
5146 _win32waveout=no
5147 cc_check -lwinmm && _win32waveout=yes
5149 if test "$_win32waveout" = yes ; then
5150 def_win32waveout='#define CONFIG_WIN32WAVEOUT 1'
5151 libs_mplayer="$libs_mplayer -lwinmm"
5152 _aomodules="win32 $_aomodules"
5153 else
5154 def_win32waveout='#undef CONFIG_WIN32WAVEOUT'
5155 _noaomodules="win32 $_noaomodules"
5157 echores "$_win32waveout"
5159 echocheck "Direct3D"
5160 if test "$_direct3d" = auto ; then
5161 cat > $TMPC << EOF
5162 #include <windows.h>
5163 #include <d3d9.h>
5164 int main(void) { return 0; }
5166 _direct3d=no
5167 cc_check -ld3d9 && _direct3d=yes
5169 if test "$_direct3d" = yes ; then
5170 def_direct3d='#define CONFIG_DIRECT3D 1'
5171 libs_mplayer="$libs_mplayer -ld3d9"
5172 _vomodules="direct3d $_vomodules"
5173 else
5174 def_direct3d='#undef CONFIG_DIRECT3D'
5175 _novomodules="direct3d $_novomodules"
5177 echores "$_direct3d"
5179 echocheck "Directx"
5180 if test "$_directx" = auto ; then
5181 cat > $TMPC << EOF
5182 #include <windows.h>
5183 #include <ddraw.h>
5184 #include <dsound.h>
5185 int main(void) { return 0; }
5187 _directx=no
5188 cc_check -lgdi32 && _directx=yes
5190 if test "$_directx" = yes ; then
5191 def_directx='#define CONFIG_DIRECTX 1'
5192 libs_mplayer="$libs_mplayer -lgdi32"
5193 _vomodules="directx $_vomodules"
5194 _aomodules="dsound $_aomodules"
5195 else
5196 def_directx='#undef CONFIG_DIRECTX'
5197 _novomodules="directx $_novomodules"
5198 _noaomodules="dsound $_noaomodules"
5200 echores "$_directx"
5202 fi #if win32; then
5205 echocheck "DXR2"
5206 if test "$_dxr2" = auto; then
5207 _dxr2=no
5208 cat > $TMPC << EOF
5209 #include <dxr2ioctl.h>
5210 int main(void) { return 0; }
5212 for _inc_tmp in "" -I/usr/local/include/dxr2 -I/usr/include/dxr2; do
5213 cc_check $_inc_tmp && _dxr2=yes && \
5214 extra_cflags="$extra_cflags $_inc_tmp" && break
5215 done
5217 if test "$_dxr2" = yes; then
5218 def_dxr2='#define CONFIG_DXR2 1'
5219 _aomodules="dxr2 $_aomodules"
5220 _vomodules="dxr2 $_vomodules"
5221 else
5222 def_dxr2='#undef CONFIG_DXR2'
5223 _noaomodules="dxr2 $_noaomodules"
5224 _novomodules="dxr2 $_novomodules"
5226 echores "$_dxr2"
5228 echocheck "DXR3/H+"
5229 if test "$_dxr3" = auto ; then
5230 cat > $TMPC << EOF
5231 #include <linux/em8300.h>
5232 int main(void) { return 0; }
5234 _dxr3=no
5235 cc_check && _dxr3=yes
5237 if test "$_dxr3" = yes ; then
5238 def_dxr3='#define CONFIG_DXR3 1'
5239 _vomodules="dxr3 $_vomodules"
5240 else
5241 def_dxr3='#undef CONFIG_DXR3'
5242 _novomodules="dxr3 $_novomodules"
5244 echores "$_dxr3"
5247 echocheck "IVTV TV-Out (pre linux-2.6.24)"
5248 if test "$_ivtv" = auto ; then
5249 cat > $TMPC << EOF
5250 #include <stdlib.h>
5251 #include <inttypes.h>
5252 #include <linux/types.h>
5253 #include <linux/videodev2.h>
5254 #include <linux/ivtv.h>
5255 #include <sys/ioctl.h>
5256 int main(void) {
5257 struct ivtv_cfg_stop_decode sd;
5258 struct ivtv_cfg_start_decode sd1;
5259 ioctl(0, IVTV_IOC_START_DECODE, &sd1);
5260 ioctl(0, IVTV_IOC_STOP_DECODE, &sd);
5261 return 0; }
5263 _ivtv=no
5264 cc_check && _ivtv=yes
5266 if test "$_ivtv" = yes ; then
5267 def_ivtv='#define CONFIG_IVTV 1'
5268 _vomodules="ivtv $_vomodules"
5269 _aomodules="ivtv $_aomodules"
5270 else
5271 def_ivtv='#undef CONFIG_IVTV'
5272 _novomodules="ivtv $_novomodules"
5273 _noaomodules="ivtv $_noaomodules"
5275 echores "$_ivtv"
5278 echocheck "V4L2 MPEG Decoder"
5279 if test "$_v4l2" = auto ; then
5280 cat > $TMPC << EOF
5281 #include <stdlib.h>
5282 #include <inttypes.h>
5283 #include <linux/types.h>
5284 #include <linux/videodev2.h>
5285 #include <linux/version.h>
5286 int main(void) {
5287 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
5288 #error kernel headers too old, need 2.6.22
5289 bad_kernel_version();
5290 #endif
5291 struct v4l2_ext_controls ctrls;
5292 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
5293 return 0;
5296 _v4l2=no
5297 cc_check && _v4l2=yes
5299 if test "$_v4l2" = yes ; then
5300 def_v4l2='#define CONFIG_V4L2_DECODER 1'
5301 _vomodules="v4l2 $_vomodules"
5302 _aomodules="v4l2 $_aomodules"
5303 else
5304 def_v4l2='#undef CONFIG_V4L2_DECODER'
5305 _novomodules="v4l2 $_novomodules"
5306 _noaomodules="v4l2 $_noaomodules"
5308 echores "$_v4l2"
5312 #########
5313 # AUDIO #
5314 #########
5317 echocheck "OSS Audio"
5318 if test "$_ossaudio" = auto ; then
5319 cat > $TMPC << EOF
5320 #include <sys/ioctl.h>
5321 #include <$_soundcard_header>
5322 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
5324 _ossaudio=no
5325 cc_check && _ossaudio=yes
5327 if test "$_ossaudio" = yes ; then
5328 def_ossaudio='#define CONFIG_OSS_AUDIO 1'
5329 _aomodules="oss $_aomodules"
5330 if test "$_linux_devfs" = yes; then
5331 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound/dsp"'
5332 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/sound/mixer"'
5333 else
5334 cat > $TMPC << EOF
5335 #include <sys/ioctl.h>
5336 #include <$_soundcard_header>
5337 #ifdef OPEN_SOUND_SYSTEM
5338 int main(void) { return 0; }
5339 #else
5340 #error Not the real thing
5341 #endif
5343 _real_ossaudio=no
5344 cc_check && _real_ossaudio=yes
5345 if test "$_real_ossaudio" = yes; then
5346 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5347 elif netbsd || openbsd ; then
5348 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
5349 extra_ldflags="$extra_ldflags -lossaudio"
5350 else
5351 def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5353 def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
5355 else
5356 def_ossaudio='#undef CONFIG_OSS_AUDIO'
5357 def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
5358 def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
5359 _noaomodules="oss $_noaomodules"
5361 echores "$_ossaudio"
5364 echocheck "aRts"
5365 if test "$_arts" = auto ; then
5366 _arts=no
5367 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
5369 cat > $TMPC << EOF
5370 #include <artsc.h>
5371 int main(void) { return 0; }
5373 cc_check `artsc-config --libs` `artsc-config --cflags` && tmp_run && _arts=yes
5378 if test "$_arts" = yes ; then
5379 def_arts='#define CONFIG_ARTS 1'
5380 _aomodules="arts $_aomodules"
5381 libs_mplayer="$libs_mplayer `artsc-config --libs`"
5382 extra_cflags="$extra_cflags `artsc-config --cflags`"
5383 else
5384 _noaomodules="arts $_noaomodules"
5386 echores "$_arts"
5389 echocheck "EsounD"
5390 if test "$_esd" = auto ; then
5391 _esd=no
5392 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
5394 cat > $TMPC << EOF
5395 #include <esd.h>
5396 int main(void) { int fd = esd_open_sound("test"); return fd; }
5398 cc_check `esd-config --libs` `esd-config --cflags` && _esd=yes
5402 echores "$_esd"
5404 if test "$_esd" = yes ; then
5405 def_esd='#define CONFIG_ESD 1'
5406 _aomodules="esd $_aomodules"
5407 libs_mplayer="$libs_mplayer `esd-config --libs`"
5408 extra_cflags="$extra_cflags `esd-config --cflags`"
5410 echocheck "esd_get_latency()"
5411 cat > $TMPC << EOF
5412 #include <esd.h>
5413 int main(void) { return esd_get_latency(0); }
5415 cc_check `esd-config --libs` `esd-config --cflags` && _esd_latency=yes && def_esd_latency='#define CONFIG_ESD_LATENCY'
5416 echores "$_esd_latency"
5417 else
5418 def_esd='#undef CONFIG_ESD'
5419 def_esd_latency='#undef CONFIG_ESD_LATENCY'
5420 _noaomodules="esd $_noaomodules"
5424 echocheck "NAS"
5425 if test "$_nas" = auto ; then
5426 cat > $TMPC << EOF
5427 #include <audio/audiolib.h>
5428 int main(void) { return 0; }
5430 _nas=no
5431 cc_check $_ld_lm -laudio -lXt && _nas=yes
5433 if test "$_nas" = yes ; then
5434 def_nas='#define CONFIG_NAS 1'
5435 libs_mplayer="$libs_mplayer -laudio -lXt"
5436 _aomodules="nas $_aomodules"
5437 else
5438 _noaomodules="nas $_noaomodules"
5439 def_nas='#undef CONFIG_NAS'
5441 echores "$_nas"
5444 echocheck "pulse"
5445 if test "$_pulse" = auto ; then
5446 _pulse=no
5447 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5449 cat > $TMPC << EOF
5450 #include <pulse/pulseaudio.h>
5451 int main(void) { return 0; }
5453 cc_check `$_pkg_config --libs --cflags libpulse` && tmp_run && _pulse=yes
5457 echores "$_pulse"
5459 if test "$_pulse" = yes ; then
5460 def_pulse='#define CONFIG_PULSE 1'
5461 _aomodules="pulse $_aomodules"
5462 libs_mplayer="$libs_mplayer `$_pkg_config --libs libpulse`"
5463 extra_cflags="$extra_cflags `$_pkg_config --cflags libpulse`"
5464 else
5465 def_pulse='#undef CONFIG_PULSE'
5466 _noaomodules="pulse $_noaomodules"
5470 echocheck "JACK"
5471 if test "$_jack" = auto ; then
5472 _jack=yes
5474 cat > $TMPC << EOF
5475 #include <jack/jack.h>
5476 int main(void) { jack_client_open("test", JackUseExactName, NULL); return 0; }
5478 if cc_check -ljack ; then
5479 libs_mplayer="$libs_mplayer -ljack"
5480 elif cc_check `$_pkg_config --libs --cflags --silence-errors jack` ; then
5481 libs_mplayer="$libs_mplayer `$_pkg_config --libs jack`"
5482 extra_cflags="$extra_cflags "`$_pkg_config --cflags jack`""
5483 else
5484 _jack=no
5488 if test "$_jack" = yes ; then
5489 def_jack='#define CONFIG_JACK 1'
5490 _aomodules="jack $_aomodules"
5491 else
5492 _noaomodules="jack $_noaomodules"
5494 echores "$_jack"
5496 echocheck "OpenAL"
5497 if test "$_openal" = auto ; then
5498 _openal=no
5499 cat > $TMPC << EOF
5500 #ifdef OPENAL_AL_H
5501 #include <OpenAL/al.h>
5502 #else
5503 #include <AL/al.h>
5504 #endif
5505 int main(void) {
5506 alSourceQueueBuffers(0, 0, 0);
5507 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5508 return 0;
5511 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5512 cc_check $I && _openal=yes && break
5513 cc_check -DOPENAL_AL_H=1 $I && def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5514 done
5515 test "$_openal" = yes && libs_mplayer="$libs_mplayer $I"
5517 if test "$_openal" = yes ; then
5518 def_openal='#define CONFIG_OPENAL 1'
5519 _aomodules="openal $_aomodules"
5520 else
5521 _noaomodules="openal $_noaomodules"
5523 echores "$_openal"
5525 echocheck "ALSA audio"
5526 if test "$_alloca" != yes ; then
5527 _alsa=no
5528 _res_comment="alloca missing"
5530 if test "$_alsa" != no ; then
5531 _alsa=no
5532 cat > $TMPC << EOF
5533 #include <sys/time.h>
5534 #include <sys/asoundlib.h>
5535 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5536 #error "alsa version != 0.5.x"
5537 #endif
5538 int main(void) { return 0; }
5540 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5542 cat > $TMPC << EOF
5543 #include <sys/time.h>
5544 #include <sys/asoundlib.h>
5545 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5546 #error "alsa version != 0.9.x"
5547 #endif
5548 int main(void) { return 0; }
5550 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5551 cat > $TMPC << EOF
5552 #include <sys/time.h>
5553 #include <alsa/asoundlib.h>
5554 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5555 #error "alsa version != 0.9.x"
5556 #endif
5557 int main(void) { return 0; }
5559 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5561 cat > $TMPC << EOF
5562 #include <sys/time.h>
5563 #include <sys/asoundlib.h>
5564 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5565 #error "alsa version != 1.0.x"
5566 #endif
5567 int main(void) { return 0; }
5569 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5570 cat > $TMPC << EOF
5571 #include <sys/time.h>
5572 #include <alsa/asoundlib.h>
5573 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5574 #error "alsa version != 1.0.x"
5575 #endif
5576 int main(void) { return 0; }
5578 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5580 def_alsa='#undef CONFIG_ALSA'
5581 def_alsa5='#undef CONFIG_ALSA5'
5582 def_alsa9='#undef CONFIG_ALSA9'
5583 def_alsa1x='#undef CONFIG_ALSA1X'
5584 def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5585 def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5586 if test "$_alsaver" ; then
5587 _alsa=yes
5588 if test "$_alsaver" = '0.5.x' ; then
5589 _alsa5=yes
5590 _aomodules="alsa5 $_aomodules"
5591 def_alsa5='#define CONFIG_ALSA5 1'
5592 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5593 _res_comment="using alsa 0.5.x and sys/asoundlib.h"
5594 elif test "$_alsaver" = '0.9.x-sys' ; then
5595 _alsa9=yes
5596 _aomodules="alsa $_aomodules"
5597 def_alsa='#define CONFIG_ALSA 1'
5598 def_alsa9='#define CONFIG_ALSA9 1'
5599 def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5600 _res_comment="using alsa 0.9.x and sys/asoundlib.h"
5601 elif test "$_alsaver" = '0.9.x-alsa' ; then
5602 _alsa9=yes
5603 _aomodules="alsa $_aomodules"
5604 def_alsa='#define CONFIG_ALSA 1'
5605 def_alsa9='#define CONFIG_ALSA9 1'
5606 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5607 _res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5608 elif test "$_alsaver" = '1.0.x-sys' ; then
5609 _alsa1x=yes
5610 _aomodules="alsa $_aomodules"
5611 def_alsa='#define CONFIG_ALSA 1'
5612 def_alsa1x="#define CONFIG_ALSA1X 1"
5613 def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5614 _res_comment="using alsa 1.0.x and sys/asoundlib.h"
5615 elif test "$_alsaver" = '1.0.x-alsa' ; then
5616 _alsa1x=yes
5617 _aomodules="alsa $_aomodules"
5618 def_alsa='#define CONFIG_ALSA 1'
5619 def_alsa1x="#define CONFIG_ALSA1X 1"
5620 def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5621 _res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5622 else
5623 _alsa=no
5624 _res_comment="unknown version"
5626 extra_ldflags="$extra_ldflags -lasound $_ld_dl $_ld_pthread"
5627 else
5628 _noaomodules="alsa $_noaomodules"
5630 echores "$_alsa"
5633 echocheck "Sun audio"
5634 if test "$_sunaudio" = auto ; then
5635 cat > $TMPC << EOF
5636 #include <sys/types.h>
5637 #include <sys/audioio.h>
5638 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5640 _sunaudio=no
5641 cc_check && _sunaudio=yes
5643 if test "$_sunaudio" = yes ; then
5644 def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5645 _aomodules="sun $_aomodules"
5646 else
5647 def_sunaudio='#undef CONFIG_SUN_AUDIO'
5648 _noaomodules="sun $_noaomodules"
5650 echores "$_sunaudio"
5653 def_mlib='#define CONFIG_MLIB 0'
5654 if sunos; then
5655 echocheck "Sun mediaLib"
5656 if test "$_mlib" = auto ; then
5657 _mlib=no
5658 cat > $TMPC << EOF
5659 #include <mlib.h>
5660 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; }
5662 cc_check -lmlib && _mlib=yes && def_mlib='#define CONFIG_MLIB 1'
5664 echores "$_mlib"
5665 fi #if sunos
5668 if irix; then
5669 echocheck "SGI audio"
5670 if test "$_sgiaudio" = auto ; then
5671 # check for SGI audio
5672 cat > $TMPC << EOF
5673 #include <dmedia/audio.h>
5674 int main(void) { return 0; }
5676 _sgiaudio=no
5677 cc_check && _sgiaudio=yes
5679 if test "$_sgiaudio" = "yes" ; then
5680 def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5681 libs_mplayer="$libs_mplayer -laudio"
5682 _aomodules="sgi $_aomodules"
5683 else
5684 def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5685 _noaomodules="sgi $_noaomodules"
5687 echores "$_sgiaudio"
5688 fi #if irix
5691 if os2 ; then
5692 echocheck "DART"
5693 if test "$_dart" = auto; then
5694 cat > $TMPC << EOF
5695 #include <os2.h>
5696 #include <dart.h>
5697 int main( void ) { return 0; }
5699 _dart=no;
5700 cc_check -ldart && _dart=yes
5702 if test "$_dart" = yes ; then
5703 def_dart='#define CONFIG_DART 1'
5704 libs_mplayer="$libs_mplayer -ldart"
5705 _aomodules="dart $_aomodules"
5706 else
5707 def_dart='#undef CONFIG_DART'
5708 _noaomodules="dart $_noaomodules"
5710 echores "$_dart"
5711 fi #if os2
5714 # set default CD/DVD devices
5715 if win32 || os2 ; then
5716 default_cdrom_device="D:"
5717 elif darwin ; then
5718 default_cdrom_device="/dev/disk1"
5719 elif dragonfly ; then
5720 default_cdrom_device="/dev/cd0"
5721 elif freebsd ; then
5722 default_cdrom_device="/dev/acd0"
5723 elif openbsd ; then
5724 default_cdrom_device="/dev/rcd0a"
5725 elif sunos ; then
5726 default_cdrom_device="/vol/dev/aliases/cdrom0"
5727 elif amigaos ; then
5728 default_cdrom_device="a1ide.device:2"
5729 else
5730 default_cdrom_device="/dev/cdrom"
5733 if win32 || os2 || dragonfly || freebsd || openbsd || sunos || amigaos ; then
5734 default_dvd_device=$default_cdrom_device
5735 elif darwin ; then
5736 default_dvd_device="/dev/rdiskN"
5737 else
5738 default_dvd_device="/dev/dvd"
5742 echocheck "VCD support"
5743 _vcd=no
5744 if linux || freebsd || netbsd || openbsd || dragonfly || bsdos || darwin || sunos; then
5745 _vcd=yes
5746 elif mingw32; then
5747 cat > $TMPC << EOF
5748 #include <ddk/ntddcdrm.h>
5749 int main(void) { return 0; }
5751 cc_check && _vcd=yes
5753 if test "$_vcd" = yes; then
5754 _inputmodules="vcd $_inputmodules"
5755 def_vcd='#define CONFIG_VCD 1'
5756 else
5757 def_vcd='#undef CONFIG_VCD'
5758 _noinputmodules="vcd $_noinputmodules"
5759 _res_comment="not supported on this OS"
5761 echores "$_vcd"
5765 echocheck "dvdread"
5766 if test "$_dvdread_internal" = auto && test ! -f "libdvdread4/dvd_reader.c" ; then
5767 _dvdread_internal=no
5769 if test "$_dvdread_internal" = auto ; then
5770 _dvdread_internal=no
5771 _dvdread=no
5772 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) \
5773 && (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
5774 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) \
5775 || darwin || win32 || os2; then
5776 _dvdread_internal=yes
5777 _dvdread=yes
5778 extra_cflags="$extra_cflags -Ilibdvdread4"
5780 elif test "$_dvdread" = auto ; then
5781 _dvdread=no
5782 if test "$_dl" = yes; then
5783 cat > $TMPC << EOF
5784 #include <inttypes.h>
5785 #include <dvdread/dvd_reader.h>
5786 #include <dvdread/ifo_types.h>
5787 #include <dvdread/ifo_read.h>
5788 #include <dvdread/nav_read.h>
5789 int main(void) { return 0; }
5792 _dvdreadcflags=`$_dvdreadconfig --cflags`
5793 _dvdreadlibs=`$_dvdreadconfig --libs`
5794 if cc_check -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
5795 $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5796 _dvdread=yes
5797 extra_cflags="$extra_cflags $_dvdreadcflags"
5798 extra_ldflags="$extra_ldflags $_dvdreadlibs"
5799 _res_comment="external"
5803 if test "$_dvdread_internal" = yes; then
5804 def_dvdread='#define CONFIG_DVDREAD 1'
5805 _inputmodules="dvdread(internal) $_inputmodules"
5806 _largefiles=yes
5807 _res_comment="internal"
5808 elif test "$_dvdread" = yes; then
5809 def_dvdread='#define CONFIG_DVDREAD 1'
5810 _largefiles=yes
5811 extra_ldflags="$extra_ldflags -ldvdread"
5812 _inputmodules="dvdread(external) $_inputmodules"
5813 _res_comment="external"
5814 else
5815 def_dvdread='#undef CONFIG_DVDREAD'
5816 _noinputmodules="dvdread $_noinputmodules"
5818 echores "$_dvdread"
5821 echocheck "internal libdvdcss"
5822 if test "$_libdvdcss_internal" = auto ; then
5823 _libdvdcss_internal=no
5824 test "$_dvdread_internal" = yes && _libdvdcss_internal=yes
5825 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5827 if test "$_libdvdcss_internal" = yes ; then
5828 if linux || netbsd || openbsd || bsdos ; then
5829 def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5830 openbsd && def_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5831 elif freebsd || dragonfly ; then
5832 def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5833 elif darwin ; then
5834 def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5835 extra_ldflags="$extra_ldflags -framework IOKit"
5836 elif cygwin ; then
5837 cflags_libdvdcss="-DSYS_CYGWIN -DWIN32"
5838 elif beos ; then
5839 cflags_libdvdcss="-DSYS_BEOS"
5840 elif os2 ; then
5841 cflags_libdvdcss="-DSYS_OS2"
5843 cflags_libdvdcss_dvdread="-Ilibdvdcss -DHAVE_DVDCSS_DVDCSS_H"
5844 _inputmodules="libdvdcss(internal) $_inputmodules"
5845 _largefiles=yes
5846 else
5847 _noinputmodules="libdvdcss(internal) $_noinputmodules"
5849 echores "$_libdvdcss_internal"
5852 echocheck "cdparanoia"
5853 if test "$_cdparanoia" = auto ; then
5854 cat > $TMPC <<EOF
5855 #include <cdda_interface.h>
5856 #include <cdda_paranoia.h>
5857 // This need a better test. How ?
5858 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5860 _cdparanoia=no
5861 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5862 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
5863 _cdparanoia=yes && extra_cflags="$extra_cflags $_inc_tmp" && break
5864 done
5866 if test "$_cdparanoia" = yes ; then
5867 _cdda='yes'
5868 extra_ldflags="$extra_ldflags -lcdda_interface -lcdda_paranoia"
5869 openbsd && extra_ldflags="$extra_ldflags -lutil"
5871 echores "$_cdparanoia"
5874 echocheck "libcdio"
5875 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5876 cat > $TMPC << EOF
5877 #include <stdio.h>
5878 #include <cdio/version.h>
5879 #include <cdio/cdda.h>
5880 #include <cdio/paranoia.h>
5881 int main(void) {
5882 void *test = cdda_verbose_set;
5883 printf("%s\n", CDIO_VERSION);
5884 return test == (void *)1;
5887 _libcdio=no
5888 for _ld_tmp in "" "-lwinmm" ; do
5889 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
5890 cc_check $_ld_tmp $_ld_lm \
5891 && _libcdio=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
5892 done
5893 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
5894 _inc_tmp=`$_pkg_config --cflags libcdio_paranoia`
5895 _ld_tmp=`$_pkg_config --libs libcdio_paranoia`
5896 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes \
5897 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
5900 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
5901 _cdda='yes'
5902 def_libcdio='#define CONFIG_LIBCDIO'
5903 def_havelibcdio='yes'
5904 else
5905 if test "$_cdparanoia" = yes ; then
5906 _res_comment="using cdparanoia"
5908 def_libcdio='#undef CONFIG_LIBCDIO'
5909 def_havelibcdio='no'
5911 echores "$_libcdio"
5913 if test "$_cdda" = yes ; then
5914 test $_cddb = auto && test $_network = yes && _cddb=yes
5915 def_cdparanoia='#define CONFIG_CDDA'
5916 _inputmodules="cdda $_inputmodules"
5917 else
5918 def_cdparanoia='#undef CONFIG_CDDA'
5919 _noinputmodules="cdda $_noinputmodules"
5922 if test "$_cddb" = yes ; then
5923 def_cddb='#define CONFIG_CDDB'
5924 _inputmodules="cddb $_inputmodules"
5925 else
5926 _cddb=no
5927 def_cddb='#undef CONFIG_CDDB'
5928 _noinputmodules="cddb $_noinputmodules"
5931 echocheck "bitmap font support"
5932 if test "$_bitmap_font" = yes ; then
5933 def_bitmap_font="#define CONFIG_BITMAP_FONT 1"
5934 else
5935 def_bitmap_font="#undef CONFIG_BITMAP_FONT"
5937 echores "$_bitmap_font"
5940 echocheck "freetype >= 2.0.9"
5942 # freetype depends on iconv
5943 if test "$_iconv" = no ; then
5944 _freetype=no
5945 _res_comment="iconv support needed"
5948 if test "$_freetype" = auto ; then
5949 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
5950 cat > $TMPC << EOF
5951 #include <stdio.h>
5952 #include <ft2build.h>
5953 #include FT_FREETYPE_H
5954 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
5955 #error "Need FreeType 2.0.9 or newer"
5956 #endif
5957 int main(void) {
5958 FT_Library library;
5959 FT_Int major=-1,minor=-1,patch=-1;
5960 int err=FT_Init_FreeType(&library);
5961 if (err) {
5962 printf("Couldn't initialize freetype2 lib, err code: %d\n",err);
5963 exit(err);
5965 FT_Library_Version(library,&major,&minor,&patch); // in v2.1.0+ only :(((
5966 printf("freetype2 header version: %d.%d.%d library version: %d.%d.%d\n",
5967 FREETYPE_MAJOR,FREETYPE_MINOR,FREETYPE_PATCH,
5968 (int)major,(int)minor,(int)patch );
5969 if (major!=FREETYPE_MAJOR || minor!=FREETYPE_MINOR) {
5970 printf("Library and header version mismatch! Fix it in your distribution!\n");
5971 exit(1);
5973 return 0;
5976 _freetype=no
5977 cc_check `$_freetypeconfig --cflags` `$_freetypeconfig --libs` && tmp_run && _freetype=yes
5978 else
5979 _freetype=no
5982 if test "$_freetype" = yes ; then
5983 def_freetype='#define CONFIG_FREETYPE'
5984 extra_cflags="$extra_cflags `$_freetypeconfig --cflags`"
5985 extra_ldflags="$extra_ldflags `$_freetypeconfig --libs`"
5986 else
5987 def_freetype='#undef CONFIG_FREETYPE'
5989 echores "$_freetype"
5991 if test "$_freetype" = no ; then
5992 _fontconfig=no
5993 _res_comment="FreeType support needed"
5995 echocheck "fontconfig"
5996 if test "$_fontconfig" = auto ; then
5997 cat > $TMPC << EOF
5998 #include <stdio.h>
5999 #include <stdlib.h>
6000 #include <fontconfig/fontconfig.h>
6001 int main(void) {
6002 int err = FcInit();
6003 if (err == FcFalse) {
6004 printf("Couldn't initialize fontconfig lib\n");
6005 exit(err);
6007 return 0;
6010 _fontconfig=no
6011 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" ; do
6012 _ld_tmp="-lfontconfig $_ld_tmp"
6013 cc_check $_ld_tmp && _fontconfig=yes && extra_ldflags="$extra_ldflags $_ld_tmp" && break
6014 done
6015 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
6016 _inc_tmp=`$_pkg_config --cflags fontconfig`
6017 _ld_tmp=`$_pkg_config --libs fontconfig`
6018 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes \
6019 && extra_ldflags="$extra_ldflags $_ld_tmp" && extra_cflags="$extra_cflags $_inc_tmp"
6022 if test "$_fontconfig" = yes ; then
6023 def_fontconfig='#define CONFIG_FONTCONFIG'
6024 else
6025 def_fontconfig='#undef CONFIG_FONTCONFIG'
6027 echores "$_fontconfig"
6030 echocheck "SSA/ASS support"
6031 # libass depends on FreeType
6032 if test "$_freetype" = no ; then
6033 _ass=no
6034 _res_comment="FreeType support needed"
6037 if test "$_ass" = auto ; then
6038 cat > $TMPC << EOF
6039 #include <ft2build.h>
6040 #include FT_FREETYPE_H
6041 #if ((FREETYPE_MAJOR < 2) || (FREETYPE_MINOR < 1) || ((FREETYPE_MINOR == 1) && (FREETYPE_PATCH < 8)))
6042 #error "Need FreeType 2.1.8 or newer"
6043 #endif
6044 int main(void) { return 0; }
6046 _ass=no
6047 cc_check `$_freetypeconfig --cflags` `$_freetypeconfig --libs` && tmp_run && _ass=yes
6048 if test "$_ass" = no ; then
6049 _res_comment="FreeType >= 2.1.8 needed"
6052 if test "$_ass" = yes ; then
6053 def_ass='#define CONFIG_ASS'
6054 else
6055 def_ass='#undef CONFIG_ASS'
6057 echores "$_ass"
6060 echocheck "fribidi with charsets"
6061 if test "$_fribidi" = auto ; then
6062 if ( $_fribidiconfig --version ) >/dev/null 2>&1 ; then
6063 cat > $TMPC << EOF
6064 #include <stdio.h>
6065 /* workaround for fribidi 0.10.4 and below */
6066 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
6067 #include <fribidi/fribidi.h>
6068 int main(void) {
6069 if (fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8) {
6070 printf("Fribidi headers are not consistents with the library!\n");
6071 exit(1);
6073 return 0;
6076 _fribidi=no
6077 cc_check `$_fribidiconfig --cflags` `$_fribidiconfig --libs` && tmp_run && _fribidi=yes
6078 else
6079 _fribidi=no
6082 if test "$_fribidi" = yes ; then
6083 def_fribidi='#define CONFIG_FRIBIDI'
6084 extra_cflags="$extra_cflags `$_fribidiconfig --cflags`"
6085 extra_ldflags="$extra_ldflags `$_fribidiconfig --libs`"
6086 else
6087 def_fribidi='#undef CONFIG_FRIBIDI'
6089 echores "$_fribidi"
6092 echocheck "ENCA"
6093 if test "$_enca" = auto ; then
6094 cat > $TMPC << EOF
6095 #include <sys/types.h>
6096 #include <enca.h>
6097 int main(void) {
6098 const char **langs;
6099 size_t langcnt;
6100 langs = enca_get_languages(&langcnt);
6101 return 0;
6104 _enca=no
6105 cc_check -lenca $_ld_lm && _enca=yes
6107 if test "$_enca" = yes ; then
6108 def_enca='#define CONFIG_ENCA 1'
6109 extra_ldflags="$extra_ldflags -lenca"
6110 else
6111 def_enca='#undef CONFIG_ENCA'
6113 echores "$_enca"
6116 echocheck "zlib"
6117 cat > $TMPC << EOF
6118 #include <zlib.h>
6119 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; }
6121 _zlib=no
6122 cc_check -lz && _zlib=yes
6123 if test "$_zlib" = yes ; then
6124 def_zlib='#define CONFIG_ZLIB 1'
6125 extra_ldflags="$extra_ldflags -lz"
6126 else
6127 def_zlib='#define CONFIG_ZLIB 0'
6128 _libavdecoders=`echo $_libavdecoders | sed -e s/FLASHSV_DECODER// -e s/PNG_DECODER// -e s/ZMBV_DECODER// -e s/DXA_DECODER// -e s/TSCC_DECODER// `
6129 _libavencoders=`echo $_libavencoders | sed -e s/FLASHSV_ENCODER// -e s/PNG_ENCODER// -e s/ZMBV_ENCODER// `
6131 echores "$_zlib"
6134 echocheck "bzlib"
6135 bzlib=no
6136 def_bzlib='#define CONFIG_BZLIB 0'
6137 cat > $TMPC << EOF
6138 #include <bzlib.h>
6139 int main(void) { BZ2_bzlibVersion(); return 0; }
6141 cc_check -lbz2 && bzlib=yes
6142 if test "$bzlib" = yes ; then
6143 def_bzlib='#define CONFIG_BZLIB 1'
6144 extra_ldflags="$extra_ldflags -lbz2"
6146 echores "$bzlib"
6149 echocheck "RTC"
6150 if test "$_rtc" = auto ; then
6151 cat > $TMPC << EOF
6152 #include <sys/ioctl.h>
6153 #ifdef __linux__
6154 #include <linux/rtc.h>
6155 #else
6156 #include <rtc.h>
6157 #define RTC_PIE_ON RTCIO_PIE_ON
6158 #endif
6159 int main(void) { return RTC_PIE_ON; }
6161 _rtc=no
6162 cc_check && _rtc=yes
6163 ppc && _rtc=no
6165 if test "$_rtc" = yes ; then
6166 def_rtc='#define HAVE_RTC 1'
6167 else
6168 def_rtc='#undef HAVE_RTC'
6170 echores "$_rtc"
6173 echocheck "liblzo2 support"
6174 if test "$_liblzo" = auto ; then
6175 _liblzo=no
6176 cat > $TMPC << EOF
6177 #include <lzo/lzo1x.h>
6178 int main(void) { lzo_init();return 0; }
6180 cc_check -llzo2 && _liblzo=yes
6182 if test "$_liblzo" = yes ; then
6183 def_liblzo='#define CONFIG_LIBLZO 1'
6184 extra_ldflags="$extra_ldflags -llzo2"
6185 _codecmodules="liblzo $_codecmodules"
6186 else
6187 def_liblzo='#undef CONFIG_LIBLZO'
6188 _nocodecmodules="liblzo $_nocodecmodules"
6190 echores "$_liblzo"
6193 echocheck "mad support"
6194 if test "$_mad" = auto ; then
6195 _mad=no
6196 cat > $TMPC << EOF
6197 #include <mad.h>
6198 int main(void) { return 0; }
6200 cc_check -lmad && _mad=yes
6202 if test "$_mad" = yes ; then
6203 def_mad='#define CONFIG_LIBMAD 1'
6204 extra_ldflags="$extra_ldflags -lmad"
6205 _codecmodules="libmad $_codecmodules"
6206 else
6207 def_mad='#undef CONFIG_LIBMAD'
6208 _nocodecmodules="libmad $_nocodecmodules"
6210 echores "$_mad"
6212 echocheck "Twolame"
6213 if test "$_twolame" = auto ; then
6214 cat > $TMPC <<EOF
6215 #include <twolame.h>
6216 int main(void) { twolame_init(); return 0; }
6218 _twolame=no
6219 cc_check -ltwolame $_ld_lm && _twolame=yes
6221 if test "$_twolame" = yes ; then
6222 def_twolame='#define CONFIG_TWOLAME 1'
6223 libs_mencoder="$libs_mencoder -ltwolame"
6224 _codecmodules="twolame $_codecmodules"
6225 else
6226 def_twolame='#undef CONFIG_TWOLAME'
6227 _nocodecmodules="twolame $_nocodecmodules"
6229 echores "$_twolame"
6231 echocheck "Toolame"
6232 if test "$_toolame" = auto ; then
6233 _toolame=no
6234 if test "$_twolame" = yes ; then
6235 _res_comment="disabled by twolame"
6236 else
6237 cat > $TMPC <<EOF
6238 #include <toolame.h>
6239 int main(void) { toolame_init(); return 0; }
6241 cc_check -ltoolame $_ld_lm && _toolame=yes
6244 if test "$_toolame" = yes ; then
6245 def_toolame='#define CONFIG_TOOLAME 1'
6246 libs_mencoder="$libs_mencoder -ltoolame"
6247 _codecmodules="toolame $_codecmodules"
6248 else
6249 def_toolame='#undef CONFIG_TOOLAME'
6250 _nocodecmodules="toolame $_nocodecmodules"
6252 if test "$_toolamedir" ; then
6253 _res_comment="using $_toolamedir"
6255 echores "$_toolame"
6257 echocheck "OggVorbis support"
6258 if test "$_tremor_internal" = yes; then
6259 _libvorbis=no
6260 elif test "$_tremor" = auto; then
6261 _tremor=no
6262 cat > $TMPC << EOF
6263 #include <tremor/ivorbiscodec.h>
6264 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6266 cc_check -logg -lvorbisidec $_ld_lm && _tremor=yes && _libvorbis=no
6268 if test "$_libvorbis" = auto; then
6269 _libvorbis=no
6270 cat > $TMPC << EOF
6271 #include <vorbis/codec.h>
6272 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
6274 cc_check -lvorbis -logg $_ld_lm && _libvorbis=yes
6276 if test "$_tremor_internal" = yes ; then
6277 _vorbis=yes
6278 def_vorbis='#define CONFIG_OGGVORBIS 1'
6279 def_tremor='#define CONFIG_TREMOR 1'
6280 _codecmodules="tremor(internal) $_codecmodules"
6281 _res_comment="internal Tremor"
6282 if test "$_tremor_low" = yes ; then
6283 cflags_tremor_low="-D_LOW_ACCURACY_"
6284 _res_comment="internal low accuracy Tremor"
6286 elif test "$_tremor" = yes ; then
6287 _vorbis=yes
6288 def_vorbis='#define CONFIG_OGGVORBIS 1'
6289 def_tremor='#define CONFIG_TREMOR 1'
6290 _codecmodules="tremor(external) $_codecmodules"
6291 _res_comment="external Tremor"
6292 extra_ldflags="$extra_ldflags -logg -lvorbisidec"
6293 elif test "$_libvorbis" = yes ; then
6294 _vorbis=yes
6295 def_vorbis='#define CONFIG_OGGVORBIS 1'
6296 _codecmodules="libvorbis $_codecmodules"
6297 _res_comment="libvorbis"
6298 extra_ldflags="$extra_ldflags -lvorbis -logg"
6299 else
6300 _vorbis=no
6301 _nocodecmodules="libvorbis $_nocodecmodules"
6303 echores "$_vorbis"
6305 echocheck "libspeex (version >= 1.1 required)"
6306 if test "$_speex" = auto ; then
6307 _speex=no
6308 cat > $TMPC << EOF
6309 #include <speex/speex.h>
6310 int main(void) { SpeexBits bits; void *dec; speex_decode_int(dec, &bits, dec); return 0; }
6312 cc_check -lspeex $_ld_lm && _speex=yes
6314 if test "$_speex" = yes ; then
6315 def_speex='#define CONFIG_SPEEX 1'
6316 extra_ldflags="$extra_ldflags -lspeex"
6317 _codecmodules="speex $_codecmodules"
6318 else
6319 def_speex='#undef CONFIG_SPEEX'
6320 _nocodecmodules="speex $_nocodecmodules"
6322 echores "$_speex"
6324 echocheck "OggTheora support"
6325 if test "$_theora" = auto ; then
6326 _theora=no
6327 cat > $TMPC << EOF
6328 #include <theora/theora.h>
6329 #include <string.h>
6330 int main(void) {
6331 /* Theora is in flux, make sure that all interface routines and datatypes
6332 * exist and work the way we expect it, so we don't break MPlayer. */
6333 ogg_packet op;
6334 theora_comment tc;
6335 theora_info inf;
6336 theora_state st;
6337 yuv_buffer yuv;
6338 int r;
6339 double t;
6341 theora_info_init(&inf);
6342 theora_comment_init(&tc);
6344 return 0;
6346 /* we don't want to execute this kind of nonsense; just for making sure
6347 * that compilation works... */
6348 memset(&op, 0, sizeof(op));
6349 r = theora_decode_header(&inf, &tc, &op);
6350 r = theora_decode_init(&st, &inf);
6351 t = theora_granule_time(&st, op.granulepos);
6352 r = theora_decode_packetin(&st, &op);
6353 r = theora_decode_YUVout(&st, &yuv);
6354 theora_clear(&st);
6356 return 0;
6359 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6360 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6361 cc_check $_inc_theora $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" &&
6362 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6363 if test _theora = no; then
6364 _ld_theora="-ltheora -logg"
6365 cc_check $_ld_theora && extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6367 if test "$_theora" = no && test "$_tremor_internal" = yes; then
6368 _ld_theora=$($_pkg_config --silence-errors --libs theora)
6369 _inc_theora=$($_pkg_config --silence-errors --cflags theora)
6370 cc_check tremor/bitwise.c $_inc_theora $_ld_theora &&
6371 extra_ldflags="$extra_ldflags $_ld_theora" &&
6372 extra_cflags="$extra_cflags $_inc_theora" && _theora=yes
6373 if test _theora = no; then
6374 _ld_theora="-ltheora -logg"
6375 cc_check tremor/bitwise.c $_ld_theora &&
6376 extra_ldflags="$extra_ldflags $_ld_theora" && _theora=yes
6380 if test "$_theora" = yes ; then
6381 def_theora='#define CONFIG_OGGTHEORA 1'
6382 _codecmodules="libtheora $_codecmodules"
6383 # when --enable-theora is forced, we'd better provide a probably sane
6384 # $_ld_theora than nothing
6385 test -z "$_ld_theora" && extra_ldflags="$extra_ldflags -ltheora -logg"
6386 else
6387 def_theora='#undef CONFIG_OGGTHEORA'
6388 _nocodecmodules="libtheora $_nocodecmodules"
6390 echores "$_theora"
6392 echocheck "internal mp3lib support"
6393 if test "$_mp3lib" = auto ; then
6394 test "$cc_vendor" = intel && _mp3lib=no || _mp3lib=yes
6396 if test "$_mp3lib" = yes ; then
6397 def_mp3lib='#define CONFIG_MP3LIB 1'
6398 _codecmodules="mp3lib(internal) $_codecmodules"
6399 else
6400 def_mp3lib='#undef CONFIG_MP3LIB'
6401 _nocodecmodules="mp3lib(internal) $_nocodecmodules"
6403 echores "$_mp3lib"
6405 echocheck "liba52 support"
6406 if test "$_liba52_internal" = auto ; then
6407 test "$cc_vendor" = intel && _liba52_internal=no || _liba52_internal=yes
6409 def_liba52='#undef CONFIG_LIBA52'
6410 def_liba52_internal="#undef CONFIG_LIBA52_INTERNAL"
6411 if test "$_liba52_internal" = yes ; then
6412 _liba52=yes
6413 def_liba52_internal="#define CONFIG_LIBA52_INTERNAL 1"
6414 _res_comment="internal"
6415 elif test "$_liba52_internal" = no && test "$_liba52" = auto ; then
6416 _liba52=no
6417 cat > $TMPC << EOF
6418 #include <inttypes.h>
6419 #include <a52dec/a52.h>
6420 int main(void) { a52_state_t *testHand; testHand=a52_init(0); return 0; }
6422 cc_check -la52 && _liba52=yes && _res_comment="external" && extra_ldflags="$extra_ldflags -la52"
6424 if test "$_liba52" = yes ; then
6425 def_liba52='#define CONFIG_LIBA52 1'
6426 _codecmodules="liba52($_res_comment) $_codecmodules"
6427 else
6428 _nocodecmodules="liba52 $_nocodecmodules"
6430 echores "$_liba52"
6432 echocheck "internal libmpeg2 support"
6433 if test "$_libmpeg2" = auto ; then
6434 _libmpeg2=yes
6435 if alpha && test cc_vendor=gnu; then
6436 case $cc_version in
6437 2*|3.0*|3.1*) # cannot compile MVI instructions
6438 _libmpeg2=no
6439 _res_comment="broken gcc"
6441 esac
6444 if test "$_libmpeg2" = yes ; then
6445 def_libmpeg2='#define CONFIG_LIBMPEG2 1'
6446 _codecmodules="libmpeg2(internal) $_codecmodules"
6447 else
6448 def_libmpeg2='#undef CONFIG_LIBMPEG2'
6449 _nocodecmodules="libmpeg2(internal) $_nocodecmodules"
6451 echores "$_libmpeg2"
6453 echocheck "libdca support"
6454 if test "$_libdca" = auto ; then
6455 _libdca=no
6456 cat > $TMPC << EOF
6457 #include <inttypes.h>
6458 #include <dts.h>
6459 int main(void) { dts_init(0); return 0; }
6461 for _ld_dca in -ldts -ldca ; do
6462 cc_check $_ld_dca $_ld_lm && extra_ldflags="$extra_ldflags $_ld_dca" \
6463 && _libdca=yes && break
6464 done
6466 if test "$_libdca" = yes ; then
6467 def_libdca='#define CONFIG_LIBDCA 1'
6468 _codecmodules="libdca $_codecmodules"
6469 else
6470 def_libdca='#undef CONFIG_LIBDCA'
6471 _nocodecmodules="libdca $_nocodecmodules"
6473 echores "$_libdca"
6475 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
6476 if test "$_musepack" = auto ; then
6477 _musepack=no
6478 cat > $TMPC << EOF
6479 #include <stddef.h>
6480 #include <mpcdec/mpcdec.h>
6481 int main(void) {
6482 mpc_streaminfo info;
6483 mpc_decoder decoder;
6484 mpc_decoder_set_streaminfo(&decoder, &info);
6485 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6486 return 0;
6489 cc_check -lmpcdec $_ld_lm && _musepack=yes
6491 if test "$_musepack" = yes ; then
6492 def_musepack='#define CONFIG_MUSEPACK 1'
6493 extra_ldflags="$extra_ldflags -lmpcdec"
6494 _codecmodules="musepack $_codecmodules"
6495 else
6496 def_musepack='#undef CONFIG_MUSEPACK'
6497 _nocodecmodules="musepack $_nocodecmodules"
6499 echores "$_musepack"
6502 echocheck "FAAC support"
6503 if test "$_faac" = auto ; then
6504 cat > $TMPC <<EOF
6505 #include <inttypes.h>
6506 #include <faac.h>
6507 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6509 _faac=no
6510 for _ld_faac in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6511 cc_check -O4 $_ld_faac $_ld_lm && libs_mencoder="$libs_mencoder $_ld_faac" && _faac=yes && break
6512 done
6514 if test "$_faac" = yes ; then
6515 def_faac="#define CONFIG_FAAC 1"
6516 test "$_faac_lavc" = auto && _faac_lavc=yes
6517 if test "$_faac_lavc" = yes ; then
6518 def_faac_lavc="#define CONFIG_LIBFAAC 1"
6519 libs_mplayer="$libs_mplayer $_ld_faac"
6520 _libavencoders="$_libavencoders LIBFAAC_ENCODER"
6522 _codecmodules="faac $_codecmodules"
6523 else
6524 _faac_lavc=no
6525 def_faac="#undef CONFIG_FAAC"
6526 def_faac_lavc="#define CONFIG_LIBFAAC 0"
6527 _nocodecmodules="faac $_nocodecmodules"
6529 _res_comment="in libavcodec: $_faac_lavc"
6530 echores "$_faac"
6533 echocheck "FAAD2 support"
6534 if test "$_faad_internal" = auto ; then
6535 if x86_32 && test cc_vendor=gnu; then
6536 case $cc_version in
6537 3.1*|3.2) # ICE/insn with these versions
6538 _faad_internal=no
6539 _res_comment="broken gcc"
6542 _faad=yes
6543 _faad_internal=yes
6545 esac
6546 else
6547 _faad=yes
6548 _faad_internal=yes
6551 if test "$_faad" = auto ; then
6552 cat > $TMPC << EOF
6553 #include <faad.h>
6554 #ifndef FAAD_MIN_STREAMSIZE
6555 #error Too old version
6556 #endif
6557 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6558 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6560 cc_check -lfaad $_ld_lm && _faad=yes
6563 def_faad='#undef CONFIG_FAAD'
6564 def_faad_internal="#undef CONFIG_FAAD_INTERNAL"
6565 if test "$_faad_internal" = yes ; then
6566 def_faad_internal="#define CONFIG_FAAD_INTERNAL 1"
6567 _res_comment="internal floating-point"
6568 if test "$_faad_fixed" = yes ; then
6569 # The FIXED_POINT implementation of FAAD2 improves performance
6570 # on some platforms, especially for SBR files.
6571 cflags_faad_fixed="-DFIXED_POINT"
6572 _res_comment="internal fixed-point"
6574 elif test "$_faad" = yes ; then
6575 extra_ldflags="$extra_ldflags -lfaad"
6578 if test "$_faad" = yes ; then
6579 def_faad='#define CONFIG_FAAD 1'
6580 if test "$_faad_internal" = yes ; then
6581 _codecmodules="faad2(internal) $_codecmodules"
6582 else
6583 _codecmodules="faad2 $_codecmodules"
6585 else
6586 _faad=no
6587 _nocodecmodules="faad2 $_nocodecmodules"
6589 echores "$_faad"
6592 echocheck "LADSPA plugin support"
6593 if test "$_ladspa" = auto ; then
6594 cat > $TMPC <<EOF
6595 #include <stdio.h>
6596 #include <ladspa.h>
6597 int main(void) {
6598 const LADSPA_Descriptor *ld = NULL;
6599 return 0;
6602 _ladspa=no
6603 cc_check && _ladspa=yes
6605 if test "$_ladspa" = yes; then
6606 def_ladspa="#define CONFIG_LADSPA"
6607 else
6608 def_ladspa="#undef CONFIG_LADSPA"
6610 echores "$_ladspa"
6613 echocheck "libbs2b audio filter support"
6614 if test "$_libbs2b" = auto ; then
6615 cat > $TMPC <<EOF
6616 #include <bs2b.h>
6617 #if BS2B_VERSION_MAJOR < 3
6618 #error Please use libbs2b >= 3.0.0, older versions are not supported.
6619 #endif
6620 int main(void) {
6621 t_bs2bdp filter;
6622 filter=bs2b_open();
6623 bs2b_close(filter);
6624 return 0;
6627 _libbs2b=no
6628 if $_pkg_config --exists libbs2b ; then
6629 _inc_tmp=$($_pkg_config --cflags libbs2b)
6630 _ld_tmp=$($_pkg_config --libs libbs2b)
6631 cc_check $_inc_tmp $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" &&
6632 extra_cflags="$extra_cflags $_inc_tmp" && _libbs2b=yes
6633 else
6634 for _inc_tmp in "" -I/usr/include/bs2b -I/usr/local/include \
6635 -I/usr/local/include/bs2b ; do
6636 if cc_check $_inc_tmp $_ld_lm -lbs2b ; then
6637 extra_ldflags="$extra_ldflags -lbs2b"
6638 extra_cflags="$extra_cflags $_inc_tmp"
6639 _libbs2b=yes
6640 break
6642 done
6645 def_libbs2b="#undef CONFIG_LIBBS2B"
6646 test "$_libbs2b" = yes && def_libbs2b="#define CONFIG_LIBBS2B"
6647 echores "$_libbs2b"
6650 if test -z "$_codecsdir" ; then
6651 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
6652 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
6653 if test -d "$dir" ; then
6654 _codecsdir="$dir"
6655 break;
6657 done
6659 # Fall back on default directory.
6660 if test -z "$_codecsdir" ; then
6661 _codecsdir="$_libdir/codecs"
6662 mingw32 && _codecsdir="codecs"
6663 os2 && _codecsdir="codecs"
6667 echocheck "Win32 codecs"
6668 if test "$_win32dll" = auto ; then
6669 _win32dll=no
6670 if x86_32 && ! qnx; then
6671 _win32dll=yes
6674 if test "$_win32dll" = yes ; then
6675 def_win32dll='#define CONFIG_WIN32DLL 1'
6676 test -z "$_win32codecsdir" && _win32codecsdir=$_codecsdir
6677 _res_comment="using $_win32codecsdir"
6678 if ! win32 ; then
6679 def_win32_loader='#define WIN32_LOADER 1'
6680 _win32_emulation=yes
6681 else
6682 extra_ldflags="$extra_ldflags -ladvapi32 -lole32"
6683 _res_comment="using native windows"
6685 _codecmodules="win32 $_codecmodules"
6686 else
6687 def_win32dll='#undef CONFIG_WIN32DLL'
6688 def_win32_loader='#undef WIN32_LOADER'
6689 _nocodecmodules="win32 $_nocodecmodules"
6691 echores "$_win32dll"
6694 echocheck "XAnim codecs"
6695 if test "$_xanim" = auto ; then
6696 _xanim=no
6697 _res_comment="dynamic loader support needed"
6698 if test "$_dl" = yes ; then
6699 _xanim=yes
6702 if test "$_xanim" = yes ; then
6703 test -z "$_xanimcodecsdir" && _xanimcodecsdir=$_codecsdir
6704 def_xanim='#define CONFIG_XANIM 1'
6705 def_xanim_path="#define XACODEC_PATH \"$_xanimcodecsdir\""
6706 _codecmodules="xanim $_codecmodules"
6707 _res_comment="using $_xanimcodecsdir"
6708 else
6709 def_xanim='#undef CONFIG_XANIM'
6710 def_xanim_path='#undef XACODEC_PATH'
6711 _nocodecmodules="xanim $_nocodecmodules"
6713 echores "$_xanim"
6716 echocheck "RealPlayer codecs"
6717 if test "$_real" = auto ; then
6718 _real=no
6719 _res_comment="dynamic loader support needed"
6720 if test "$_dl" = yes || test "$_win32dll" = yes &&
6721 (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32) ; then
6722 _real=yes
6725 if test "$_real" = yes ; then
6726 test -z "$_realcodecsdir" && _realcodecsdir="$_codecsdir"
6727 def_real='#define CONFIG_REALCODECS 1'
6728 def_real_path="#define REALCODEC_PATH \"$_realcodecsdir\""
6729 _codecmodules="real $_codecmodules"
6730 _res_comment="using $_realcodecsdir"
6731 else
6732 def_real='#undef CONFIG_REALCODECS'
6733 def_real_path="#undef REALCODEC_PATH"
6734 _nocodecmodules="real $_nocodecmodules"
6736 echores "$_real"
6739 echocheck "QuickTime codecs"
6740 _qtx_emulation=no
6741 def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
6742 if test "$_qtx" = auto ; then
6743 test "$_win32dll" = yes || darwin && _qtx=yes
6745 if test "$_qtx" = yes ; then
6746 def_qtx='#define CONFIG_QTX_CODECS 1'
6747 win32 && _qtx_codecs_win32=yes && def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
6748 _codecmodules="qtx $_codecmodules"
6749 darwin || win32 || _qtx_emulation=yes
6750 else
6751 def_qtx='#undef CONFIG_QTX_CODECS'
6752 _nocodecmodules="qtx $_nocodecmodules"
6754 echores "$_qtx"
6756 echocheck "Nemesi Streaming Media libraries"
6757 if test "$_nemesi" = auto && test "$_network" = yes ; then
6758 _nemesi=no
6759 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
6760 extra_cflags="$extra_cflags `$_pkg_config --cflags libnemesi`"
6761 extra_ldflags="$extra_ldflags `$_pkg_config --libs libnemesi`"
6762 _nemesi=yes
6765 if test "$_nemesi" = yes; then
6766 _native_rtsp=no
6767 def_nemesi='#define CONFIG_LIBNEMESI 1'
6768 _inputmodules="nemesi $_inputmodules"
6769 else
6770 _native_rtsp="$_network"
6771 _nemesi=no
6772 def_nemesi='#undef CONFIG_LIBNEMESI'
6773 _noinputmodules="nemesi $_noinputmodules"
6775 echores "$_nemesi"
6777 echocheck "LIVE555 Streaming Media libraries"
6778 if test "$_live" = auto && test "$_network" = yes ; then
6779 cat > $TMPCPP << EOF
6780 #include <liveMedia.hh>
6781 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6782 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6783 #endif
6784 int main(void) { return 0; }
6787 _live=no
6788 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
6789 cxx_check $I/liveMedia/include $I/UsageEnvironment/include \
6790 $I/groupsock/include && _livelibdir=`echo $I| sed s/-I//` && \
6791 extra_ldflags="$_livelibdir/liveMedia/libliveMedia.a \
6792 $_livelibdir/groupsock/libgroupsock.a \
6793 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6794 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6795 $extra_ldflags -lstdc++" \
6796 extra_cxxflags="-I$_livelibdir/liveMedia/include \
6797 -I$_livelibdir/UsageEnvironment/include \
6798 -I$_livelibdir/BasicUsageEnvironment/include \
6799 -I$_livelibdir/groupsock/include" && \
6800 _live=yes && break
6801 done
6802 if test "$_live" != yes ; then
6803 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock; then
6804 _live_dist=yes
6808 if test "$_live" = yes && test "$_network" = yes; then
6809 test $_livelibdir && _res_comment="using $_livelibdir"
6810 def_live='#define CONFIG_LIVE555 1'
6811 _inputmodules="live555 $_inputmodules"
6812 elif test "$_live_dist" = yes && test "$_network" = yes; then
6813 _res_comment="using distribution version"
6814 _live="yes"
6815 def_live='#define CONFIG_LIVE555 1'
6816 extra_ldflags="$extra_ldflags -lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6817 extra_cxxflags="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
6818 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6819 _inputmodules="live555 $_inputmodules"
6820 else
6821 _live=no
6822 def_live='#undef CONFIG_LIVE555'
6823 _noinputmodules="live555 $_noinputmodules"
6825 echores "$_live"
6828 echocheck "FFmpeg libavutil"
6829 if test "$_libavutil_a" = auto ; then
6830 if test -d ffmpeg/libavutil ; then
6831 _libavutil_a=yes
6832 _res_comment="static"
6833 else
6834 die "MPlayer will not compile without libavutil in the source tree."
6836 elif test "$_libavutil_so" = auto ; then
6837 _libavutil_so=no
6838 cat > $TMPC << EOF
6839 #include <libavutil/common.h>
6840 int main(void) { av_gcd(1,1); return 0; }
6842 if $_pkg_config --exists libavutil ; then
6843 _inc_libavutil=`$_pkg_config --cflags libavutil`
6844 _ld_tmp=`$_pkg_config --libs libavutil`
6845 cc_check $_inc_libavutil $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
6846 && _libavutil_so=yes
6847 elif cc_check -lavutil $_ld_lm ; then
6848 extra_ldflags="$extra_ldflags -lavutil"
6849 _libavutil_so=yes
6850 _res_comment="using libavutil.so, but static libavutil is recommended"
6853 _libavutil=no
6854 def_libavutil='#undef CONFIG_LIBAVUTIL'
6855 def_libavutil_a='#undef CONFIG_LIBAVUTIL_A'
6856 def_libavutil_so='#undef CONFIG_LIBAVUTIL_SO'
6857 test "$_libavutil_a" = yes || test "$_libavutil_so" = yes && _libavutil=yes
6858 test "$_libavutil" = yes && def_libavutil='#define CONFIG_LIBAVUTIL 1'
6859 test "$_libavutil_a" = yes && def_libavutil_a='#define CONFIG_LIBAVUTIL_A 1'
6860 test "$_libavutil_so" = yes && def_libavutil_so='#define CONFIG_LIBAVUTIL_SO 1'
6861 # neither static nor shared libavutil is available, but it is mandatory ...
6862 if test "$_libavutil" = no ; then
6863 die "You need static or shared libavutil, MPlayer will not compile without!"
6865 echores "$_libavutil"
6867 echocheck "FFmpeg libavcodec"
6868 if test "$_libavcodec_a" = auto ; then
6869 _libavcodec_a=no
6870 if test -d ffmpeg/libavcodec && test -f ffmpeg/libavcodec/utils.c ; then
6871 _libavcodec_a="yes"
6872 _res_comment="static"
6874 elif test "$_libavcodec_so" = auto ; then
6875 _libavcodec_so=no
6876 _res_comment="libavcodec.so is discouraged over static libavcodec"
6877 cat > $TMPC << EOF
6878 #include <libavcodec/avcodec.h>
6879 int main(void) { avcodec_find_encoder_by_name(""); return 0; }
6881 if $_pkg_config --exists libavcodec ; then
6882 _inc_libavcodec=`$_pkg_config --cflags libavcodec`
6883 _ld_tmp=`$_pkg_config --libs libavcodec`
6884 cc_check $_inc_libavcodec $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
6885 && _libavcodec_so=yes
6886 elif cc_check -lavcodec $_ld_lm ; then
6887 extra_ldflags="$extra_ldflags -lavcodec"
6888 _libavcodec_so=yes
6889 _res_comment="using libavcodec.so, but static libavcodec is recommended"
6892 _libavcodec=no
6893 def_libavcodec='#undef CONFIG_LIBAVCODEC'
6894 def_libavcodec_a='#undef CONFIG_LIBAVCODEC_A'
6895 def_libavcodec_so='#undef CONFIG_LIBAVCODEC_SO'
6896 test "$_libavcodec_a" = yes || test "$_libavcodec_so" = yes && _libavcodec=yes
6897 test "$_libavcodec" = yes && def_libavcodec='#define CONFIG_LIBAVCODEC 1'
6898 test "$_libavcodec_a" = yes && def_libavcodec_a='#define CONFIG_LIBAVCODEC_A 1'
6899 test "$_libavcodec_so" = yes && def_libavcodec_so='#define CONFIG_LIBAVCODEC_SO 1'
6900 test "$_libavcodec_mpegaudio_hp" = yes \
6901 && def_libavcodec_mpegaudio_hp='#define CONFIG_MPEGAUDIO_HP 1'
6902 if test "$_libavcodec_a" = yes ; then
6903 _codecmodules="libavcodec(internal) $_codecmodules"
6904 elif test "$_libavcodec_so" = yes ; then
6905 _codecmodules="libavcodec.so $_codecmodules"
6906 else
6907 _nocodecmodules="libavcodec $_nocodecmodules"
6909 echores "$_libavcodec"
6911 echocheck "FFmpeg libavformat"
6912 if test "$_libavformat_a" = auto ; then
6913 _libavformat_a=no
6914 if test -d ffmpeg/libavformat && test -f ffmpeg/libavformat/utils.c ; then
6915 _libavformat_a=yes
6916 _res_comment="static"
6918 elif test "$_libavformat_so" = auto ; then
6919 _libavformat_so=no
6920 cat > $TMPC <<EOF
6921 #include <libavformat/avformat.h>
6922 #include <libavcodec/opt.h>
6923 int main(void) { av_alloc_format_context(); return 0; }
6925 if $_pkg_config --exists libavformat ; then
6926 _inc_libavformat=`$_pkg_config --cflags libavformat`
6927 _ld_tmp=`$_pkg_config --libs libavformat`
6928 cc_check $_inc_libavformat $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
6929 && _libavformat_so=yes
6930 elif cc_check $_ld_lm -lavformat ; then
6931 extra_ldflags="$extra_ldflags -lavformat"
6932 _libavformat_so=yes
6933 _res_comment="using libavformat.so, but static libavformat is recommended"
6936 _libavformat=no
6937 def_libavformat='#undef CONFIG_LIBAVFORMAT'
6938 def_libavformat_a='#undef CONFIG_LIBAVFORMAT_A'
6939 def_libavformat_so='#undef CONFIG_LIBAVFORMAT_SO'
6940 test "$_libavformat_a" = yes || test "$_libavformat_so" = yes && _libavformat=yes
6941 test "$_libavformat" = yes && def_libavformat='#define CONFIG_LIBAVFORMAT 1'
6942 test "$_libavformat_a" = yes && def_libavformat_a='#define CONFIG_LIBAVFORMAT_A 1'
6943 test "$_libavformat_so" = yes \
6944 && def_libavformat_so='#define CONFIG_LIBAVFORMAT_SO 1'
6945 echores "$_libavformat"
6947 echocheck "FFmpeg libpostproc"
6948 if test "$_libpostproc_a" = auto ; then
6949 _libpostproc_a=no
6950 if test -d ffmpeg/libpostproc && test -f ffmpeg/libpostproc/postprocess.h ; then
6951 _libpostproc_a='yes'
6952 _res_comment="static"
6954 elif test "$_libpostproc_so" = auto ; then
6955 _libpostproc_so=no
6956 cat > $TMPC << EOF
6957 #include <inttypes.h>
6958 #include <libpostproc/postprocess.h>
6959 int main(void) { pp_get_mode_by_name_and_quality("de", 0); return 0; }
6961 if cc_check -lpostproc $_ld_lm ; then
6962 extra_ldflags="$extra_ldflags -lpostproc"
6963 _libpostproc_so=yes
6964 _res_comment="using libpostproc.so, but static libpostproc is recommended"
6967 _libpostproc=no
6968 def_libpostproc='#undef CONFIG_LIBPOSTPROC'
6969 def_libpostproc_a='#undef CONFIG_LIBPOSTPROC_A'
6970 def_libpostproc_so='#undef CONFIG_LIBPOSTPROC_SO'
6971 test "$_libpostproc_a" = yes || test "$_libpostproc_so" = yes && _libpostproc=yes
6972 test "$_libpostproc" = yes && def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
6973 test "$_libpostproc_a" = yes && def_libpostproc_a='#define CONFIG_LIBPOSTPROC_A 1'
6974 test "$_libpostproc_so" = yes \
6975 && def_libpostproc_so='#define CONFIG_LIBPOSTPROC_SO 1'
6976 echores "$_libpostproc"
6978 echocheck "FFmpeg libswscale"
6979 if test "$_libswscale_a" = auto ; then
6980 _libswscale_a=no
6981 if test -d libswscale && test -f libswscale/swscale.h ; then
6982 _libswscale_a='yes'
6983 _res_comment="static"
6985 elif test "$_libswscale_so" = auto ; then
6986 _libswscale_so=no
6987 _res_comment="using libswscale.so, but static libswscale is recommended"
6988 cat > $TMPC << EOF
6989 #include <libswscale/swscale.h>
6990 int main(void) { sws_scale(0, 0, 0, 0, 0, 0, 0); return 0; }
6992 if $_pkg_config --exists libswscale ; then
6993 _inc_libswscale=`$_pkg_config --cflags libswscale`
6994 _ld_tmp=`$_pkg_config --libs libswscale`
6995 cc_check $_inc_libswscale $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" \
6996 && _libswscale_so=yes
6997 elif cc_check -lswscale ; then
6998 extra_ldflags="$extra_ldflags -lswscale"
6999 _libswscale_so=yes
7002 _libswscale=no
7003 def_libswscale='#undef CONFIG_LIBSWSCALE'
7004 def_libswscale_a='#undef CONFIG_LIBSWSCALE_A'
7005 def_libswscale_so='#undef CONFIG_LIBSWSCALE_SO'
7006 test "$_libswscale_a" = yes || test "$_libswscale_so" = yes && _libswscale=yes
7007 test "$_libswscale" = yes && def_libswscale='#define CONFIG_LIBSWSCALE 1'
7008 test "$_libswscale_a" = yes && def_libswscale_a='#define CONFIG_LIBSWSCALE_A 1'
7009 test "$_libswscale_so" = yes \
7010 && def_libswscale_so='#define CONFIG_LIBSWSCALE_SO 1'
7011 echores "$_libswscale"
7013 echocheck "libamr narrowband"
7014 if test "$_libamr_nb" = auto ; then
7015 _libamr_nb=no
7016 cat > $TMPC << EOF
7017 #include <amrnb/sp_dec.h>
7018 int main(void) { Speech_Decode_Frame_init(); return 0; }
7020 cc_check -lamrnb && _libamr_nb=yes
7021 if test "$_libavcodec_a" != yes ; then
7022 _libamr_nb=no
7023 _res_comment="libavcodec (static) is required by libamr_nb, sorry"
7026 if test "$_libamr_nb" = yes ; then
7027 _libamr=yes
7028 extra_ldflags="$extra_ldflags -lamrnb"
7029 def_libamr='#define CONFIG_LIBAMR 1'
7030 def_libamr_nb='#define CONFIG_LIBAMR_NB 1'
7031 _libavdecoders="$_libavdecoders LIBAMR_NB_DECODER"
7032 _libavencoders="$_libavencoders LIBAMR_NB_ENCODER"
7033 _codecmodules="libamr_nb $_codecmodules"
7034 else
7035 def_libamr_nb='#define CONFIG_LIBAMR_NB 0'
7036 _nocodecmodules="libamr_nb $_nocodecmodules"
7038 echores "$_libamr_nb"
7041 echocheck "libamr wideband"
7042 if test "$_libamr_wb" = auto ; then
7043 _libamr_wb=no
7044 cat > $TMPC << EOF
7045 #include <amrwb/dec_if.h>
7046 int main(void) { D_IF_init(); return 0; }
7048 cc_check -lamrwb && _libamr_wb=yes
7049 if test "$_libavcodec_a" != yes ; then
7050 _libamr_wb=no
7051 _res_comment="libavcodec (static) is required by libamr_wb, sorry"
7054 if test "$_libamr_wb" = yes ; then
7055 _libamr=yes
7056 extra_ldflags="$extra_ldflags -lamrwb"
7057 def_libamr='#define CONFIG_LIBAMR 1'
7058 def_libamr_wb='#define CONFIG_LIBAMR_WB 1'
7059 _libavdecoders="$_libavdecoders LIBAMR_WB_DECODER"
7060 _libavencoders="$_libavencoders LIBAMR_WB_ENCODER"
7061 _codecmodules="libamr_wb $_codecmodules"
7062 else
7063 def_libamr_wb='#define CONFIG_LIBAMR_WB 0'
7064 _nocodecmodules="libamr_wb $_nocodecmodules"
7066 echores "$_libamr_wb"
7068 echocheck "libdv-0.9.5+"
7069 if test "$_libdv" = auto ; then
7070 _libdv=no
7071 cat > $TMPC <<EOF
7072 #include <libdv/dv.h>
7073 int main(void) { dv_encoder_t* enc=dv_encoder_new(1,1,1); return 0; }
7075 cc_check -ldv $_ld_pthread $_ld_lm && _libdv=yes
7077 if test "$_libdv" = yes ; then
7078 def_libdv='#define CONFIG_LIBDV095 1'
7079 extra_ldflags="$extra_ldflags -ldv"
7080 _codecmodules="libdv $_codecmodules"
7081 else
7082 def_libdv='#undef CONFIG_LIBDV095'
7083 _nocodecmodules="libdv $_nocodecmodules"
7085 echores "$_libdv"
7088 echocheck "Xvid"
7089 if test "$_xvid" = auto ; then
7090 _xvid=no
7091 cat > $TMPC << EOF
7092 #include <xvid.h>
7093 int main(void) { xvid_global(0, 0, 0, 0); return 0; }
7095 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
7096 cc_check $_ld_tmp && extra_ldflags="$extra_ldflags $_ld_tmp" && _xvid=yes && break
7097 done
7100 if test "$_xvid" = yes ; then
7101 def_xvid='#define CONFIG_XVID4 1'
7102 _codecmodules="xvid $_codecmodules"
7103 else
7104 def_xvid='#undef CONFIG_XVID4'
7105 _nocodecmodules="xvid $_nocodecmodules"
7107 echores "$_xvid"
7109 echocheck "Xvid two pass plugin"
7110 if test "$_xvid" = yes && test "$_xvid_lavc" = auto ; then
7111 cat > $TMPC << EOF
7112 #include <xvid.h>
7113 int main(void) { xvid_plugin_2pass2_t s; s.vbv_size=0; return 0; }
7115 cc_check && _xvid_lavc=yes
7117 if test "$_xvid_lavc" = yes ; then
7118 def_xvid_lavc='#define CONFIG_LIBXVID 1'
7119 _libavencoders="$_libavencoders LIBXVID_ENCODER"
7120 else
7121 _xvid_lavc=no
7122 def_xvid_lavc='#define CONFIG_LIBXVID 0'
7124 echores "$_xvid_lavc"
7127 echocheck "x264"
7128 if test "$_x264" = auto ; then
7129 cat > $TMPC << EOF
7130 #include <inttypes.h>
7131 #include <x264.h>
7132 #if X264_BUILD < 65
7133 #error We do not support old versions of x264. Get the latest from SVN.
7134 #endif
7135 int main(void) { x264_encoder_open((void*)0); return 0; }
7137 _x264=no
7138 for _ld_x264 in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
7139 cc_check $_ld_x264 && libs_mencoder="$libs_mencoder $_ld_x264" && _x264=yes && break
7140 done
7143 if test "$_x264" = yes ; then
7144 def_x264='#define CONFIG_X264 1'
7145 _codecmodules="x264 $_codecmodules"
7146 test "$_x264_lavc" = auto && _x264_lavc=yes
7147 if test "$_x264_lavc" = yes ; then
7148 def_x264_lavc='#define CONFIG_LIBX264 1'
7149 libs_mplayer="$libs_mplayer $_ld_x264"
7150 _libavencoders="$_libavencoders LIBX264_ENCODER"
7152 else
7153 _x264_lavc=no
7154 def_x264='#undef CONFIG_X264'
7155 def_x264_lavc='#define CONFIG_LIBX264 0'
7156 _nocodecmodules="x264 $_nocodecmodules"
7158 _res_comment="in libavcodec: $_x264_lavc"
7159 echores "$_x264"
7162 echocheck "libdirac"
7163 if test "$_libdirac_lavc" = auto; then
7164 _libdirac_lavc=no
7165 if test "$_libavcodec_a" != yes; then
7166 _res_comment="libavcodec (static) is required by libdirac, sorry"
7167 else
7168 cat > $TMPC << EOF
7169 #include <libdirac_encoder/dirac_encoder.h>
7170 #include <libdirac_decoder/dirac_parser.h>
7171 int main(void)
7173 dirac_encoder_context_t enc_ctx;
7174 dirac_decoder_t *dec_handle;
7175 dirac_encoder_context_init(&enc_ctx, VIDEO_FORMAT_SD_576I50);
7176 dec_handle = dirac_decoder_init(0);
7177 if (dec_handle)
7178 dirac_decoder_close(dec_handle);
7179 return 0;
7182 if $_pkg_config --exists dirac ; then
7183 _inc_dirac=`$_pkg_config --silence-errors --cflags dirac`
7184 _ld_dirac=`$_pkg_config --silence-errors --libs dirac`
7185 cc_check $_inc_dirac $_ld_dirac &&
7186 _libdirac_lavc=yes &&
7187 extra_cflags="$extra_cflags $_inc_dirac" &&
7188 extra_ldflags="$extra_ldflags $_ld_dirac"
7192 if test "$_libdirac_lavc" = yes ; then
7193 def_libdirac_lavc='#define CONFIG_LIBDIRAC 1'
7194 _libavencoders="$_libavencoders LIBDIRAC_ENCODER"
7195 _libavdecoders="$_libavdecoders LIBDIRAC_DECODER"
7196 _codecmodules="libdirac $_codecmodules"
7197 else
7198 def_libdirac_lavc='#define CONFIG_LIBDIRAC 0'
7199 _nocodecmodules="libdirac $_nocodecmodules"
7201 echores "$_libdirac_lavc"
7204 echocheck "libschroedinger"
7205 if test "$_libschroedinger_lavc" = auto ; then
7206 _libschroedinger_lavc=no
7207 if test "$_libavcodec_a" != yes; then
7208 _res_comment="libavcodec (static) is required by libschroedinger, sorry"
7209 else
7210 cat > $TMPC << EOF
7211 #include <schroedinger/schro.h>
7212 int main(void) { schro_init(); return 0; }
7214 if $_pkg_config --exists schroedinger-1.0 ; then
7215 _inc_schroedinger=`$_pkg_config --silence-errors --cflags schroedinger-1.0`
7216 _ld_schroedinger=`$_pkg_config --silence-errors --libs schroedinger-1.0`
7217 cc_check $_inc_schroedinger $_ld_schroedinger &&
7218 _libschroedinger_lavc=yes &&
7219 extra_cflags="$extra_cflags $_inc_schroedinger" &&
7220 extra_ldflags="$extra_ldflags $_ld_schroedinger"
7224 if test "$_libschroedinger_lavc" = yes ; then
7225 def_libschroedinger_lavc='#define CONFIG_LIBSCHROEDINGER 1'
7226 _libavencoders="$_libavencoders LIBSCHROEDINGER_ENCODER"
7227 _libavdecoders="$_libavdecoders LIBSCHROEDINGER_DECODER"
7228 _codecmodules="libschroedinger $_codecmodules"
7229 else
7230 def_libschroedinger_lavc='#define CONFIG_LIBSCHROEDINGER 0'
7231 _nocodecmodules="libschroedinger $_nocodecmodules"
7233 echores "$_libschroedinger_lavc"
7235 echocheck "libnut"
7236 if test "$_libnut" = auto ; then
7237 cat > $TMPC << EOF
7238 #include <stdio.h>
7239 #include <stdlib.h>
7240 #include <inttypes.h>
7241 #include <libnut.h>
7242 int main(void) { (void)nut_error(0); return 0; }
7244 _libnut=no
7245 cc_check -lnut && _libnut=yes
7248 if test "$_libnut" = yes ; then
7249 def_libnut='#define CONFIG_LIBNUT 1'
7250 extra_ldflags="$extra_ldflags -lnut"
7251 else
7252 def_libnut='#undef CONFIG_LIBNUT'
7254 echores "$_libnut"
7256 #check must be done after libavcodec one
7257 echocheck "zr"
7258 if test "$_zr" = auto ; then
7259 #36067's seem to identify themselves as 36057PQC's, so the line
7260 #below should work for 36067's and 36057's.
7261 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc/pci ; then
7262 _zr=yes
7263 else
7264 _zr=no
7267 if test "$_zr" = yes ; then
7268 if test "$_libavcodec_a" = yes ; then
7269 def_zr='#define CONFIG_ZR 1'
7270 _vomodules="zr zr2 $_vomodules"
7271 else
7272 _res_comment="libavcodec (static) is required by zr, sorry"
7273 _novomodules="zr $_novomodules"
7274 def_zr='#undef CONFIG_ZR'
7276 else
7277 def_zr='#undef CONFIG_ZR'
7278 _novomodules="zr zr2 $_novomodules"
7280 echores "$_zr"
7282 # mencoder requires (optional) those libs: libmp3lame
7283 if test "$_mencoder" != no ; then
7285 echocheck "libmp3lame"
7286 def_mp3lame_preset='#undef CONFIG_MP3LAME_PRESET'
7287 def_mp3lame_preset_medium='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
7288 if test "$_mp3lame" = auto ; then
7289 _mp3lame=no
7290 cat > $TMPC <<EOF
7291 #include <lame/lame.h>
7292 int main(void) { lame_version_t lv; (void) lame_init();
7293 get_lame_version_numerical(&lv); printf("%d%d\n",lv.major,lv.minor);
7294 return 0; }
7296 cc_check -lmp3lame $_ld_lm && tmp_run && _mp3lame=yes
7298 if test "$_mp3lame" = yes ; then
7299 def_mp3lame="#define CONFIG_MP3LAME"
7300 _ld_mp3lame=-lmp3lame
7301 libs_mencoder="$libs_mencoder $_ld_mp3lame"
7302 cat > $TMPC << EOF
7303 #include <lame/lame.h>
7304 int main(void) { lame_set_preset(NULL, STANDARD_FAST); return 0; }
7306 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset="#define CONFIG_MP3LAME_PRESET"
7307 cat > $TMPC << EOF
7308 #include <lame/lame.h>
7309 int main(void) { lame_set_preset(NULL, MEDIUM_FAST); return 0; }
7311 cc_check $_ld_mp3lame $_ld_lm && def_mp3lame_preset_medium="#define CONFIG_MP3LAME_PRESET_MEDIUM"
7312 test "$_mp3lame_lavc" = auto && _mp3lame_lavc=yes
7313 if test "$_mp3lame_lavc" = yes ; then
7314 def_mp3lame_lavc="#define CONFIG_LIBMP3LAME 1"
7315 _libavencoders="$_libavencoders LIBMP3LAME_ENCODER"
7316 libs_mplayer="$libs_mplayer $_ld_mp3lame"
7318 else
7319 _mp3lame_lavc=no
7320 def_mp3lame='#undef CONFIG_MP3LAME'
7321 def_mp3lame_lavc="#define CONFIG_LIBMP3LAME 0"
7323 _res_comment="in libavcodec: $_mp3lame_lavc"
7324 echores "$_mp3lame"
7326 fi # test "$_mencoder" != no
7328 echocheck "mencoder"
7329 if test "$_mencoder" = yes ; then
7330 def_muxers='#define CONFIG_MUXERS 1'
7331 else
7332 # mpeg1video for vf_lavc, snow for vf_uspp and vf_mcdeint, png for vf_screenshot
7333 _libavencoders="MPEG1VIDEO_ENCODER SNOW_ENCODER"
7334 test "$_zlib" = yes && _libavencoders="$_libavencoders PNG_ENCODER"
7335 _libavmuxers=""
7337 echores "$_mencoder"
7340 echocheck "UnRAR executable"
7341 if test "$_unrar_exec" = auto ; then
7342 _unrar_exec="yes"
7343 mingw32 && _unrar_exec="no"
7345 if test "$_unrar_exec" = yes ; then
7346 def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
7347 else
7348 def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
7350 echores "$_unrar_exec"
7352 echocheck "TV interface"
7353 if test "$_tv" = yes ; then
7354 def_tv='#define CONFIG_TV 1'
7355 _inputmodules="tv $_inputmodules"
7356 else
7357 _noinputmodules="tv $_noinputmodules"
7358 def_tv='#undef CONFIG_TV'
7360 echores "$_tv"
7363 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
7364 echocheck "*BSD BT848 bt8xx header"
7365 _ioctl_bt848_h=no
7366 for file in "machine/ioctl_bt848.h" \
7367 "dev/bktr/ioctl_bt848.h" \
7368 "dev/video/bktr/ioctl_bt848.h" \
7369 "dev/ic/bt8xx.h" ; do
7370 cat > $TMPC <<EOF
7371 #include <sys/types.h>
7372 #include <sys/ioctl.h>
7373 #include <$file>
7374 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
7376 if cc_check ; then
7377 _ioctl_bt848_h=yes
7378 _ioctl_bt848_h_name="$file"
7379 break;
7381 done
7382 if test "$_ioctl_bt848_h" = yes ; then
7383 def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
7384 _res_comment="using $_ioctl_bt848_h_name"
7385 else
7386 def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
7388 echores "$_ioctl_bt848_h"
7390 echocheck "*BSD ioctl_meteor.h"
7391 _ioctl_meteor_h=no
7392 for file in "machine/ioctl_meteor.h" \
7393 "dev/bktr/ioctl_meteor.h" \
7394 "dev/video/bktr/ioctl_meteor.h" ; do
7395 cat > $TMPC <<EOF
7396 #include <sys/types.h>
7397 #include <$file>
7398 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
7400 if cc_check ; then
7401 _ioctl_meteor_h=yes
7402 _ioctl_meteor_h_name="$file"
7403 break;
7405 done
7406 if test "$_ioctl_meteor_h" = yes ; then
7407 def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
7408 _res_comment="using $_ioctl_meteor_h_name"
7409 else
7410 def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
7412 echores "$_ioctl_meteor_h"
7414 echocheck "*BSD BrookTree 848 TV interface"
7415 if test "$_tv_bsdbt848" = auto ; then
7416 _tv_bsdbt848=no
7417 if test "$_tv" = yes ; then
7418 cat > $TMPC <<EOF
7419 #include <sys/types.h>
7420 $def_ioctl_meteor_h_name
7421 $def_ioctl_bt848_h_name
7422 #ifdef IOCTL_METEOR_H_NAME
7423 #include IOCTL_METEOR_H_NAME
7424 #endif
7425 #ifdef IOCTL_BT848_H_NAME
7426 #include IOCTL_BT848_H_NAME
7427 #endif
7428 int main(void) {
7429 ioctl(0, METEORSINPUT, 0);
7430 ioctl(0, TVTUNER_GETFREQ, 0);
7431 return 0;
7434 cc_check && _tv_bsdbt848=yes
7437 if test "$_tv_bsdbt848" = yes ; then
7438 def_tv_bsdbt848='#define CONFIG_TV_BSDBT848 1'
7439 _inputmodules="tv-bsdbt848 $_inputmodules"
7440 else
7441 def_tv_bsdbt848='#undef CONFIG_TV_BSDBT848'
7442 _noinputmodules="tv-bsdbt848 $_noinputmodules"
7444 echores "$_tv_bsdbt848"
7445 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
7448 echocheck "DirectShow TV interface"
7449 if test "$_tv_dshow" = auto ; then
7450 _tv_dshow=no
7451 if test "$_tv" = yes && win32 ; then
7452 cat > $TMPC <<EOF
7453 #include <ole2.h>
7454 int main(void) {
7455 void* p;
7456 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
7457 return 0;
7460 cc_check -lole32 -luuid && _tv_dshow=yes
7463 if test "$_tv_dshow" = yes ; then
7464 _inputmodules="tv-dshow $_inputmodules"
7465 def_tv_dshow='#define CONFIG_TV_DSHOW 1'
7466 extra_ldflags="$extra_ldflags -lole32 -luuid"
7467 else
7468 _noinputmodules="tv-dshow $_noinputmodules"
7469 def_tv_dshow='#undef CONFIG_TV_DSHOW'
7471 echores "$_tv_dshow"
7474 echocheck "Video 4 Linux TV interface"
7475 if test "$_tv_v4l1" = auto ; then
7476 _tv_v4l1=no
7477 if test "$_tv" = yes && linux ; then
7478 cat > $TMPC <<EOF
7479 #include <stdlib.h>
7480 #include <linux/videodev.h>
7481 int main(void) { return 0; }
7483 cc_check && _tv_v4l1=yes
7486 if test "$_tv_v4l1" = yes ; then
7487 _audio_input=yes
7488 _tv_v4l=yes
7489 def_tv_v4l='#define CONFIG_TV_V4L 1'
7490 def_tv_v4l1='#define CONFIG_TV_V4L1 1'
7491 _inputmodules="tv-v4l $_inputmodules"
7492 else
7493 _noinputmodules="tv-v4l1 $_noinputmodules"
7494 def_tv_v4l='#undef CONFIG_TV_V4L'
7496 echores "$_tv_v4l1"
7499 echocheck "Video 4 Linux 2 TV interface"
7500 if test "$_tv_v4l2" = auto ; then
7501 _tv_v4l2=no
7502 if test "$_tv" = yes && linux ; then
7503 cat > $TMPC <<EOF
7504 #include <stdlib.h>
7505 #include <linux/types.h>
7506 #include <linux/videodev2.h>
7507 int main(void) { return 0; }
7509 cc_check && _tv_v4l2=yes
7512 if test "$_tv_v4l2" = yes ; then
7513 _audio_input=yes
7514 _tv_v4l=yes
7515 def_tv_v4l='#define CONFIG_TV_V4L 1'
7516 def_tv_v4l2='#define CONFIG_TV_V4L2 1'
7517 _inputmodules="tv-v4l2 $_inputmodules"
7518 else
7519 _noinputmodules="tv-v4l2 $_noinputmodules"
7520 def_tv_v4l2='#undef CONFIG_TV_V4L2'
7522 echores "$_tv_v4l2"
7525 echocheck "TV teletext interface"
7526 if test "$_tv_teletext" = auto ; then
7527 _tv_teletext=no
7528 if test "$_freetype" = yes && test "$_pthreads" = yes; then
7529 if test "$_tv_v4l2" = yes || test "$_v4l" = yes || test "$_tv_dshow" = yes; then
7530 _tv_teletext=yes
7534 if test "$_tv_teletext" = yes ; then
7535 def_tv_teletext='#define CONFIG_TV_TELETEXT 1'
7536 _inputmodules="tv-teletext $_inputmodules"
7537 else
7538 _noinputmodules="tv-teletext $_noinputmodules"
7539 def_tv_teletext='#undef CONFIG_TV_TELETEXT'
7541 echores "$_tv_teletext"
7544 echocheck "Radio interface"
7545 if test "$_radio" = yes ; then
7546 def_radio='#define CONFIG_RADIO 1'
7547 _inputmodules="radio $_inputmodules"
7548 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
7549 _radio_capture=no
7551 if test "$_radio_capture" = yes ; then
7552 _audio_input=yes
7553 def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
7554 else
7555 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7557 else
7558 _noinputmodules="radio $_noinputmodules"
7559 def_radio='#undef CONFIG_RADIO'
7560 def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7561 _radio_capture=no
7563 echores "$_radio"
7564 echocheck "Capture for Radio interface"
7565 echores "$_radio_capture"
7567 echocheck "Video 4 Linux 2 Radio interface"
7568 if test "$_radio_v4l2" = auto ; then
7569 _radio_v4l2=no
7570 if test "$_radio" = yes && linux ; then
7571 cat > $TMPC <<EOF
7572 #include <stdlib.h>
7573 #include <linux/types.h>
7574 #include <linux/videodev2.h>
7575 int main(void) { return 0; }
7577 cc_check && _radio_v4l2=yes
7580 if test "$_radio_v4l2" = yes ; then
7581 def_radio_v4l2='#define CONFIG_RADIO_V4L2 1'
7582 else
7583 def_radio_v4l2='#undef CONFIG_RADIO_V4L2'
7585 echores "$_radio_v4l2"
7587 echocheck "Video 4 Linux Radio interface"
7588 if test "$_radio_v4l" = auto ; then
7589 _radio_v4l=no
7590 if test "$_radio" = yes && linux ; then
7591 cat > $TMPC <<EOF
7592 #include <stdlib.h>
7593 #include <linux/videodev.h>
7594 int main(void) { return 0; }
7596 cc_check && _radio_v4l=yes
7599 if test "$_radio_v4l" = yes ; then
7600 def_radio_v4l='#define CONFIG_RADIO_V4L 1'
7601 else
7602 def_radio_v4l='#undef CONFIG_RADIO_V4L'
7604 echores "$_radio_v4l"
7606 if freebsd || netbsd || openbsd || dragonfly || bsdos \
7607 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
7608 echocheck "*BSD BrookTree 848 Radio interface"
7609 _radio_bsdbt848=no
7610 cat > $TMPC <<EOF
7611 #include <sys/types.h>
7612 $def_ioctl_bt848_h_name
7613 #ifdef IOCTL_BT848_H_NAME
7614 #include IOCTL_BT848_H_NAME
7615 #endif
7616 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
7618 cc_check && _radio_bsdbt848=yes
7619 echores "$_radio_bsdbt848"
7620 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
7622 if test "$_radio_bsdbt848" = yes ; then
7623 def_radio_bsdbt848='#define CONFIG_RADIO_BSDBT848 1'
7624 else
7625 def_radio_bsdbt848='#undef CONFIG_RADIO_BSDBT848'
7628 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no && \
7629 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
7630 die "Radio driver requires BSD BT848, V4L or V4L2!"
7633 echocheck "Video 4 Linux 2 MPEG PVR interface"
7634 if test "$_pvr" = auto ; then
7635 _pvr=no
7636 if test "$_tv_v4l2" = yes && linux ; then
7637 cat > $TMPC <<EOF
7638 #include <stdlib.h>
7639 #include <inttypes.h>
7640 #include <linux/types.h>
7641 #include <linux/videodev2.h>
7642 int main(void) { struct v4l2_ext_controls ext; return 0; }
7644 cc_check && _pvr=yes
7647 if test "$_pvr" = yes ; then
7648 def_pvr='#define CONFIG_PVR 1'
7649 _inputmodules="pvr $_inputmodules"
7650 else
7651 _noinputmodules="pvr $_noinputmodules"
7652 def_pvr='#undef CONFIG_PVR'
7654 echores "$_pvr"
7657 echocheck "ftp"
7658 if ! beos && test "$_ftp" = yes ; then
7659 def_ftp='#define CONFIG_FTP 1'
7660 _inputmodules="ftp $_inputmodules"
7661 else
7662 _noinputmodules="ftp $_noinputmodules"
7663 def_ftp='#undef CONFIG_FTP'
7665 echores "$_ftp"
7667 echocheck "vstream client"
7668 if test "$_vstream" = auto ; then
7669 _vstream=no
7670 cat > $TMPC <<EOF
7671 #include <vstream-client.h>
7672 void vstream_error(const char *format, ... ) {}
7673 int main(void) { vstream_start(); return 0; }
7675 cc_check -lvstream-client && _vstream=yes
7677 if test "$_vstream" = yes ; then
7678 def_vstream='#define CONFIG_VSTREAM 1'
7679 _inputmodules="vstream $_inputmodules"
7680 extra_ldflags="$extra_ldflags -lvstream-client"
7681 else
7682 _noinputmodules="vstream $_noinputmodules"
7683 def_vstream='#undef CONFIG_VSTREAM'
7685 echores "$_vstream"
7688 echocheck "OSD menu"
7689 if test "$_menu" = yes ; then
7690 def_menu='#define CONFIG_MENU 1'
7691 test $_dvbin = "yes" && _menu_dvbin=yes
7692 else
7693 def_menu='#undef CONFIG_MENU'
7694 _menu_dvbin=no
7696 echores "$_menu"
7699 echocheck "Subtitles sorting"
7700 if test "$_sortsub" = yes ; then
7701 def_sortsub='#define CONFIG_SORTSUB 1'
7702 else
7703 def_sortsub='#undef CONFIG_SORTSUB'
7705 echores "$_sortsub"
7708 echocheck "XMMS inputplugin support"
7709 if test "$_xmms" = yes ; then
7710 if ( xmms-config --version ) >/dev/null 2>&1 ; then
7711 _xmmsplugindir=`xmms-config --input-plugin-dir`
7712 _xmmslibdir=`xmms-config --exec-prefix`/lib
7713 else
7714 _xmmsplugindir=/usr/lib/xmms/Input
7715 _xmmslibdir=/usr/lib
7718 def_xmms='#define CONFIG_XMMS 1'
7719 if darwin ; then
7720 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.dylib"
7721 else
7722 extra_ldflags="$extra_ldflags ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
7724 else
7725 def_xmms='#undef CONFIG_XMMS'
7727 echores "$_xmms"
7730 # --------------- GUI specific tests begin -------------------
7731 echocheck "GUI"
7732 echo "$_gui"
7733 if test "$_gui" = yes ; then
7735 # Required libraries
7736 if test "$_libavcodec" != yes ||
7737 ! echo $_libavdecoders | grep -q PNG_DECODER ; then
7738 die "The GUI requires libavcodec with PNG support (needs zlib)."
7740 test "$_freetype" = no && test "$_bitmap_font" = no && \
7741 die "The GUI requires either FreeType or bitmap font support."
7742 if ! win32 ; then
7743 _gui_gtk=yes
7744 test "$_x11" != yes && die "X11 support required for GUI compilation."
7746 echocheck "XShape extension"
7747 if test "$_xshape" = auto ; then
7748 _xshape=no
7749 cat > $TMPC << EOF
7750 #include <X11/Xlib.h>
7751 #include <X11/Xproto.h>
7752 #include <X11/Xutil.h>
7753 #include <X11/extensions/shape.h>
7754 #include <stdlib.h>
7755 int main(void) {
7756 char *name = ":0.0";
7757 Display *wsDisplay;
7758 int exitvar = 0;
7759 int eventbase, errorbase;
7760 if (getenv("DISPLAY"))
7761 name=getenv("DISPLAY");
7762 wsDisplay=XOpenDisplay(name);
7763 if (!XShapeQueryExtension(wsDisplay,&eventbase,&errorbase))
7764 exitvar=1;
7765 XCloseDisplay(wsDisplay);
7766 return exitvar;
7769 cc_check -lXext && _xshape=yes
7771 if test "$_xshape" = yes ; then
7772 def_xshape='#define CONFIG_XSHAPE 1'
7773 else
7774 die "The GUI requires the X11 extension XShape (which was not found)."
7776 echores "$_xshape"
7778 #Check for GTK
7779 if test "$_gtk1" = no ; then
7780 #Check for GTK2 :
7781 echocheck "GTK+ version"
7783 if $_pkg_config gtk+-2.0 --exists ; then
7784 _gtk=`$_pkg_config gtk+-2.0 --modversion 2>/dev/null`
7785 extra_cflags="$extra_cflags `$_pkg_config gtk+-2.0 --cflags 2>/dev/null`"
7786 libs_mplayer="$libs_mplayer `$_pkg_config gtk+-2.0 --libs 2>/dev/null`"
7787 echores "$_gtk"
7789 # Check for GLIB2
7790 if $_pkg_config glib-2.0 --exists ; then
7791 echocheck "glib version"
7792 _glib=`$_pkg_config glib-2.0 --modversion 2>/dev/null`
7793 libs_mplayer="$libs_mplayer `$_pkg_config glib-2.0 --libs 2>/dev/null`"
7794 echores "$_glib"
7796 def_gui='#define CONFIG_GUI 1'
7797 def_gtk2='#define CONFIG_GTK2 1'
7798 else
7799 _gtk1=yes
7800 echo "GLIB-2 devel packages were not found, trying GTK 1.2"
7802 else
7803 echo "GTK-2 devel packages were not found, trying GTK 1.2"
7804 _gtk1=yes
7808 if test "$_gtk1" = yes ; then
7809 # Check for old GTK (1.2.x)
7810 echocheck "GTK version"
7811 if test -z "$_gtkconfig" ; then
7812 if ( gtk-config --version ) >/dev/null 2>&1 ; then
7813 _gtkconfig="gtk-config"
7814 elif ( gtk12-config --version ) >/dev/null 2>&1 ; then
7815 _gtkconfig="gtk12-config"
7816 else
7817 die "The GUI requires GTK devel packages (which were not found)."
7820 _gtk=`$_gtkconfig --version 2>&1`
7821 extra_cflags="$extra_cflags `$_gtkconfig --cflags 2>&1`"
7822 libs_mplayer="$libs_mplayer `$_gtkconfig --libs 2>&1`"
7823 echores "$_gtk (using $_gtkconfig)"
7825 # Check for GLIB
7826 echocheck "glib version"
7827 if test -z "$_glibconfig" ; then
7828 if ( glib-config --version ) >/dev/null 2>&1 ; then
7829 _glibconfig="glib-config"
7830 elif ( glib12-config --version ) >/dev/null 2>&1 ; then
7831 _glibconfig="glib12-config"
7832 else
7833 die "The GUI requires GLIB devel packages (which were not found)"
7836 _glib=`$_glibconfig --version 2>&1`
7837 libs_mplayer="$libs_mplayer `$_glibconfig --libs 2>&1`"
7838 echores "$_glib (using $_glibconfig)"
7840 def_gui='#define CONFIG_GUI 1'
7841 def_gtk2='#undef CONFIG_GTK2'
7844 else #if ! win32
7845 _gui_win32=yes
7846 libs_mplayer="$libs_mplayer -lcomdlg32 -lcomctl32 -lshell32 -lkernel32"
7847 def_gui='#define CONFIG_GUI 1'
7848 def_gtk2='#undef CONFIG_GTK2'
7849 fi #if ! win32
7851 else #if test "$_gui"
7852 def_gui='#undef CONFIG_GUI'
7853 def_gtk2='#undef CONFIG_GTK2'
7854 fi #if test "$_gui"
7855 # --------------- GUI specific tests end -------------------
7858 if test "$_charset" != "noconv" ; then
7859 def_charset="#define MSG_CHARSET \"$_charset\""
7860 else
7861 def_charset="#undef MSG_CHARSET"
7862 _charset="UTF-8"
7865 if test -n "$_charset" && test "$_charset" != "UTF-8" ; then
7866 echocheck "iconv program"
7867 iconv -f UTF-8 -t $_charset ${_mp_help} > /dev/null 2>> "$TMPLOG"
7868 if test "$?" -ne 0 ; then
7869 echores "no"
7870 echo "No working iconv program found, use "
7871 echo "--charset=UTF-8 to continue anyway."
7872 echo "If you also have problems with iconv library functions use --charset=noconv."
7873 echo "Messages in the GTK-2 interface will be broken then."
7874 exit 1
7875 else
7876 echores "yes"
7880 #############################################################################
7882 echocheck "automatic gdb attach"
7883 if test "$_crash_debug" = yes ; then
7884 def_crash_debug='#define CONFIG_CRASH_DEBUG 1'
7885 else
7886 def_crash_debug='#undef CONFIG_CRASH_DEBUG'
7887 _crash_debug=no
7889 echores "$_crash_debug"
7891 echocheck "compiler support for noexecstack"
7892 cat > $TMPC <<EOF
7893 int main(void) { return 0; }
7895 if cc_check -Wl,-z,noexecstack ; then
7896 extra_ldflags="-Wl,-z,noexecstack $extra_ldflags"
7897 echores "yes"
7898 else
7899 echores "no"
7903 # Dynamic linking flags
7904 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
7905 _ld_dl_dynamic=''
7906 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
7907 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 ; then
7908 _ld_dl_dynamic='-rdynamic'
7911 extra_ldflags="$extra_ldflags $_ld_pthread $_ld_dl $_ld_dl_dynamic"
7912 bsdos && extra_ldflags="$extra_ldflags -ldvd"
7913 (netbsd || openbsd) && x86_32 && extra_ldflags="$extra_ldflags -li386"
7915 def_debug='#undef MP_DEBUG'
7916 test "$_debug" != "" && def_debug='#define MP_DEBUG 1'
7919 echocheck "joystick"
7920 def_joystick='#undef CONFIG_JOYSTICK'
7921 if test "$_joystick" = yes ; then
7922 if linux ; then
7923 # TODO add some check
7924 def_joystick='#define CONFIG_JOYSTICK 1'
7925 else
7926 _joystick="no"
7927 _res_comment="unsupported under $system_name"
7930 echores "$_joystick"
7932 echocheck "lirc"
7933 if test "$_lirc" = auto ; then
7934 _lirc=no
7935 cat > $TMPC <<EOF
7936 #include <lirc/lirc_client.h>
7937 int main(void) { return 0; }
7939 cc_check -llirc_client && _lirc=yes
7941 if test "$_lirc" = yes ; then
7942 def_lirc='#define CONFIG_LIRC 1'
7943 extra_ldflags="$extra_ldflags -llirc_client"
7944 else
7945 def_lirc='#undef CONFIG_LIRC'
7947 echores "$_lirc"
7949 echocheck "lircc"
7950 if test "$_lircc" = auto ; then
7951 _lircc=no
7952 cat > $TMPC <<EOF
7953 #include <lirc/lircc.h>
7954 int main(void) { return 0; }
7956 cc_check -llircc && _lircc=yes
7958 if test "$_lircc" = yes ; then
7959 def_lircc='#define CONFIG_LIRCC 1'
7960 extra_ldflags="$extra_ldflags -llircc"
7961 else
7962 def_lircc='#undef CONFIG_LIRCC'
7964 echores "$_lircc"
7966 if arm; then
7967 # Detect maemo development platform libraries availability (http://www.maemo.org),
7968 # they are used when run on Nokia 770|8x0
7969 echocheck "maemo (Nokia 770|8x0)"
7970 if test "$_maemo" = auto ; then
7971 _maemo=no
7972 cat > $TMPC << EOF
7973 #include <libosso.h>
7974 int main(void) { (void) osso_initialize("", "", 0, NULL); return 0; }
7976 cc_check `$_pkg_config --cflags --libs libosso 2>/dev/null` && _maemo=yes
7978 if test "$_maemo" = yes ; then
7979 def_maemo='#define CONFIG_MAEMO 1'
7980 extra_cflags="$extra_cflags `$_pkg_config --cflags libosso`"
7981 extra_ldflags="$extra_ldflags `$_pkg_config --libs libosso` -lXsp"
7982 else
7983 def_maemo='#undef CONFIG_MAEMO'
7985 echores "$_maemo"
7988 #############################################################################
7990 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
7991 # the OMF format needs to come after the 'extern symbol prefix' check, which
7992 # uses nm.
7993 if os2 ; then
7994 extra_ldflags="$extra_ldflags -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
7997 # linker paths should be the same for mencoder and mplayer
7998 _ld_tmp=""
7999 for I in $libs_mplayer ; do
8000 _tmp=`echo $I | sed -e 's/^-L.*$//'`
8001 if test -z "$_tmp" ; then
8002 extra_ldflags="$extra_ldflags $I"
8003 else
8004 _ld_tmp="$_ld_tmp $I"
8006 done
8007 libs_mplayer=$_ld_tmp
8010 #############################################################################
8011 if darwin ; then
8012 CFLAGS="$CFLAGS -mdynamic-no-pic -falign-loops=16 -shared-libgcc"
8013 if [ "$_cc_major" = 3 ] && [ "$_cc_minor" -lt 1 ]; then
8014 CFLAGS="$CFLAGS -no-cpp-precomp"
8017 if amigaos ; then
8018 CFLAGS="$CFLAGS -DNEWLIB -D__USE_INLINE__"
8020 # Thread support
8021 if linux ; then
8022 CFLAGS="$CFLAGS -D_REENTRANT"
8023 elif freebsd || netbsd || openbsd || bsdos ; then
8024 # FIXME bsd needs this so maybe other OS'es
8025 CFLAGS="$CFLAGS -D_THREAD_SAFE"
8027 # 64 bit file offsets?
8028 if test "$_largefiles" = yes || freebsd ; then
8029 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
8030 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
8031 # dvdread support requires this (for off64_t)
8032 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
8036 CXXFLAGS=" $CFLAGS -Iffmpeg -D__STDC_LIMIT_MACROS"
8038 cat > $TMPC << EOF
8039 int main(void) { return 0; }
8041 if test "$cc_vendor" = "gnu" ; then
8042 cc_check -std=gnu99 && CFLAGS="-std=gnu99 $CFLAGS"
8043 cc_check -Wno-pointer-sign && CFLAGS="-Wno-pointer-sign $CFLAGS"
8044 cc_check -Wdisabled-optimization && CFLAGS="-Wdisabled-optimization $CFLAGS"
8045 cc_check -Wundef && CFLAGS="-Wundef $CFLAGS"
8046 else
8047 CFLAGS="-D_ISOC99_SOURCE -D_BSD_SOURCE $CFLAGS"
8050 cc_check -mno-omit-leaf-frame-pointer && cflags_no_omit_leaf_frame_pointer="-mno-omit-leaf-frame-pointer"
8052 # This must be the last test to be performed. Any other tests following it
8053 # could fail due to linker errors. libdvdnavmini is intentionally not linked
8054 # against libdvdread (to permit MPlayer to use its own copy of the library).
8055 # So any compilation using the flags added here but not linking against
8056 # libdvdread can fail.
8057 echocheck "DVD support (libdvdnav)"
8058 if test "$_dvdread_internal" = yes && test ! -f "libdvdnav/dvdnav.c" ; then
8059 _dvdnav=no
8061 dvdnav_internal=no
8062 if test "$_dvdnav" = auto ; then
8063 if test "$_dvdread_internal" = yes ; then
8064 _dvdnav=yes
8065 dvdnav_internal=yes
8066 _res_comment="internal"
8067 else
8068 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
8071 if test "$_dvdnav" = auto ; then
8072 cat > $TMPC <<EOF
8073 #include <inttypes.h>
8074 #include <dvdnav/dvdnav.h>
8075 int main(void) { dvdnav_t *dvd=0; return 0; }
8077 _dvdnav=no
8078 _dvdnavdir=`$_dvdnavconfig --cflags`
8079 _dvdnavlibs=`$_dvdnavconfig --libs`
8080 cc_check $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
8082 if test "$_dvdnav" = yes ; then
8083 _largefiles=yes
8084 def_dvdnav='#define CONFIG_DVDNAV 1'
8085 if test "$dvdnav_internal" = yes ; then
8086 cflags_libdvdnav="-Ilibdvdnav"
8087 _inputmodules="dvdnav(internal) $_inputmodules"
8088 else
8089 extra_cflags="$extra_cflags `$_dvdnavconfig --cflags`"
8090 extra_ldflags="$extra_ldflags `$_dvdnavconfig --minilibs`"
8091 _inputmodules="dvdnav $_inputmodules"
8093 else
8094 def_dvdnav='#undef CONFIG_DVDNAV'
8095 _noinputmodules="dvdnav $_noinputmodules"
8097 echores "$_dvdnav"
8099 # DO NOT ADD ANY TESTS THAT USE LINKER FLAGS HERE (like cc_check).
8100 # Read dvdnav comment above.
8102 CFLAGS_FFMPEG="-I../.. $CFLAGS"
8103 CFLAGS="-Iffmpeg $CFLAGS"
8105 #############################################################################
8106 echo "Creating config.mak"
8107 cat > config.mak << EOF
8108 # -------- Generated by configure -----------
8110 # Ensure that locale settings do not interfere with shell commands.
8111 export LC_ALL = C
8113 CHARSET = $_charset
8114 DOC_LANG = $doc_lang
8115 DOC_LANGS = $doc_langs
8116 DOC_LANG_ALL = $doc_lang_all
8117 MAN_LANG = $man_lang
8118 MAN_LANGS = $man_langs
8119 MAN_LANG_ALL = $man_lang_all
8121 prefix = \$(DESTDIR)$_prefix
8122 BINDIR = \$(DESTDIR)$_bindir
8123 DATADIR = \$(DESTDIR)$_datadir
8124 LIBDIR = \$(DESTDIR)$_libdir
8125 MANDIR = \$(DESTDIR)$_mandir
8126 CONFDIR = \$(DESTDIR)$_confdir
8128 AR = $_ar
8129 CC = $_cc
8130 CXX = $_cc
8131 HOST_CC = $_host_cc
8132 YASM = $_yasm
8133 INSTALL = $_install
8134 INSTALLSTRIP = $_install_strip
8135 RANLIB = $_ranlib
8136 WINDRES = $_windres
8138 CFLAGS = $CFLAGS $extra_cflags
8139 OPTFLAGS = $CFLAGS $extra_cflags
8140 FFMPEG_OFLAGS = $CFLAGS_FFMPEG $extra_cflags
8141 CXXFLAGS = $CXXFLAGS $extra_cflags $extra_cxxflags
8142 CFLAGS_DHAHELPER = $cflags_dhahelper
8143 CFLAGS_FAAD_FIXED = $cflags_faad_fixed
8144 CFLAGS_LIBDVDCSS = $cflags_libdvdcss
8145 CFLAGS_LIBDVDCSS_DVDREAD = $cflags_libdvdcss_dvdread
8146 CFLAGS_LIBDVDNAV = $cflags_libdvdnav
8147 CFLAGS_NO_OMIT_LEAF_FRAME_POINTER = $cflags_no_omit_leaf_frame_pointer
8148 CFLAGS_STACKREALIGN = $cflags_stackrealign
8149 CFLAGS_SVGALIB_HELPER = $cflags_svgalib_helper
8150 CFLAGS_TREMOR_LOW = $cflags_tremor_low
8151 YASMFLAGS = $YASMFLAGS
8153 EXTRALIBS = $extra_libs
8154 EXTRA_LIB = $extra_ldflags $_ld_static $_ld_lm
8155 EXTRALIBS_MPLAYER = $libs_mplayer
8156 EXTRALIBS_MENCODER = $libs_mencoder
8158 DEPEND_CMD = \$(CC) -MM \$(CFLAGS) \$(filter-out %.h,\$^) | sed "s,[0-9a-z._-]*: \(\$(SRC_DIR)/\)*\([a-z0-9]*/\)[^/]* ,\\2&,"
8160 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 &,"
8161 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 &,"
8163 GETCH = $_getch
8164 HELP_FILE = $_mp_help
8165 TIMER = $_timer
8167 EXESUF = $_exesuf
8168 EXESUFS_ALL = .exe
8170 $_target_arch
8171 $_target_arch_x86
8172 `echo $_cpuexts | tr '[a-z] ' '[A-Z]\n' | sed 's/^/HAVE_/;s/$/=yes/'`
8174 MENCODER = $_mencoder
8175 MPLAYER = $_mplayer
8177 NEED_GETTIMEOFDAY = $_need_gettimeofday
8178 NEED_GLOB = $_need_glob
8179 NEED_MMAP = $_need_mmap
8180 NEED_SETENV = $_need_setenv
8181 NEED_SHMEM = $_need_shmem
8182 NEED_STRSEP = $_need_strsep
8183 NEED_SWAB = $_need_swab
8184 NEED_VSSCANF = $_need_vsscanf
8186 # features
8187 3DFX = $_3dfx
8188 AA = $_aa
8189 ALSA1X = $_alsa1x
8190 ALSA9 = $_alsa9
8191 ALSA5 = $_alsa5
8192 APPLE_IR = $_apple_ir
8193 APPLE_REMOTE = $_apple_remote
8194 ARTS = $_arts
8195 AUDIO_INPUT = $_audio_input
8196 BITMAP_FONT = $_bitmap_font
8197 BL = $_bl
8198 CACA = $_caca
8199 CDDA = $_cdda
8200 CDDB = $_cddb
8201 COREAUDIO = $_coreaudio
8202 COREVIDEO = $_corevideo
8203 DART = $_dart
8204 DFBMGA = $_dfbmga
8205 DGA = $_dga
8206 DIRECT3D = $_direct3d
8207 DIRECTFB = $_directfb
8208 DIRECTX = $_directx
8209 DVBIN = $_dvbin
8210 DVDNAV = $_dvdnav
8211 DVDNAV_INTERNAL = $dvdnav_internal
8212 DVDREAD = $_dvdread
8213 DVDREAD_INTERNAL = $_dvdread_internal
8214 DXR2 = $_dxr2
8215 DXR3 = $_dxr3
8216 ESD = $_esd
8217 FAAC=$_faac
8218 FAAD = $_faad
8219 FAAD_INTERNAL = $_faad_internal
8220 FASTMEMCPY = $_fastmemcpy
8221 FBDEV = $_fbdev
8222 FREETYPE = $_freetype
8223 FTP = $_ftp
8224 GIF = $_gif
8225 GGI = $_ggi
8226 GL = $_gl
8227 GL_WIN32 = $_gl_win32
8228 GUI = $_gui
8229 GUI_GTK = $_gui_gtk
8230 GUI_WIN32 = $_gui_win32
8231 HAVE_POSIX_SELECT = $_posix_select
8232 HAVE_SYS_MMAN_H = $_mman
8233 IVTV = $_ivtv
8234 JACK = $_jack
8235 JOYSTICK = $_joystick
8236 JPEG = $_jpeg
8237 KVA = $_kva
8238 LADSPA = $_ladspa
8239 LIBA52 = $_liba52
8240 LIBA52_INTERNAL = $_liba52_internal
8241 LIBASS = $_ass
8242 LIBBS2B = $_libbs2b
8243 LIBDCA = $_libdca
8244 LIBDV = $_libdv
8245 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
8246 LIBLZO = $_liblzo
8247 LIBMAD = $_mad
8248 LIBMENU = $_menu
8249 LIBMENU_DVBIN = $_menu_dvbin
8250 LIBMPEG2 = $_libmpeg2
8251 LIBNEMESI = $_nemesi
8252 LIBNUT = $_libnut
8253 LIBSMBCLIENT = $_smb
8254 LIBTHEORA = $_theora
8255 LIBVORBIS = $_vorbis
8256 LIRC = $_lirc
8257 LIVE555 = $_live
8258 MACOSX_BUNDLE = $_macosx_bundle
8259 MACOSX_FINDER = $_macosx_finder
8260 MD5SUM = $_md5sum
8261 MGA = $_mga
8262 MNG = $_mng
8263 MP3LAME = $_mp3lame
8264 MP3LIB = $_mp3lib
8265 MUSEPACK = $_musepack
8266 NAS = $_nas
8267 NATIVE_RTSP = $_native_rtsp
8268 NETWORK = $_network
8269 OPENAL = $_openal
8270 OSS = $_ossaudio
8271 PE_EXECUTABLE = $_pe_executable
8272 PNG = $_png
8273 PNM = $_pnm
8274 PRIORITY = $_priority
8275 PULSE = $_pulse
8276 PVR = $_pvr
8277 QTX_CODECS = $_qtx
8278 QTX_CODECS_WIN32 = $_qtx_codecs_win32
8279 QTX_EMULATION = $_qtx_emulation
8280 QUARTZ = $_quartz
8281 RADIO=$_radio
8282 RADIO_CAPTURE=$_radio_capture
8283 REAL_CODECS = $_real
8284 S3FB = $_s3fb
8285 SDL = $_sdl
8286 SPEEX = $_speex
8287 STREAM_CACHE = $_stream_cache
8288 SGIAUDIO = $_sgiaudio
8289 SUNAUDIO = $_sunaudio
8290 SVGA = $_svga
8291 TDFXFB = $_tdfxfb
8292 TDFXVID = $_tdfxvid
8293 TGA = $_tga
8294 TOOLAME=$_toolame
8295 TREMOR_INTERNAL = $_tremor_internal
8296 TV = $_tv
8297 TV_BSDBT848 = $_tv_bsdbt848
8298 TV_DSHOW = $_tv_dshow
8299 TV_TELETEXT = $_tv_teletext
8300 TV_V4L = $_tv_v4l
8301 TV_V4L1 = $_tv_v4l1
8302 TV_V4L2 = $_tv_v4l2
8303 TWOLAME=$_twolame
8304 UNRAR_EXEC = $_unrar_exec
8305 V4L2 = $_v4l2
8306 VCD = $_vcd
8307 VDPAU = $_vdpau
8308 VESA = $_vesa
8309 VIDIX = $_vidix
8310 VIDIX_PCIDB = $_vidix_pcidb_val
8311 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
8312 VIDIX_IVTV=$_vidix_drv_ivtv
8313 VIDIX_MACH64=$_vidix_drv_mach64
8314 VIDIX_MGA=$_vidix_drv_mga
8315 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
8316 VIDIX_NVIDIA=$_vidix_drv_nvidia
8317 VIDIX_PM2=$_vidix_drv_pm2
8318 VIDIX_PM3=$_vidix_drv_pm3
8319 VIDIX_RADEON=$_vidix_drv_radeon
8320 VIDIX_RAGE128=$_vidix_drv_rage128
8321 VIDIX_S3=$_vidix_drv_s3
8322 VIDIX_SH_VEU=$_vidix_drv_sh_veu
8323 VIDIX_SIS=$_vidix_drv_sis
8324 VIDIX_UNICHROME=$_vidix_drv_unichrome
8325 VSTREAM = $_vstream
8326 WII = $_wii
8327 WIN32DLL = $_win32dll
8328 WIN32WAVEOUT = $_win32waveout
8329 WIN32_EMULATION = $_win32_emulation
8330 WINVIDIX = $winvidix
8331 X11 = $_x11
8332 X264 = $_x264
8333 XANIM_CODECS = $_xanim
8334 XMGA = $_xmga
8335 XMMS_PLUGINS = $_xmms
8336 XV = $_xv
8337 XVID4 = $_xvid
8338 XVIDIX = $xvidix
8339 XVMC = $_xvmc
8340 YUV4MPEG = $_yuv4mpeg
8341 ZR = $_zr
8343 # FFmpeg
8344 LIBAVUTIL = $_libavutil
8345 LIBAVUTIL_A = $_libavutil_a
8346 LIBAVUTIL_SO = $_libavutil_so
8347 LIBAVCODEC = $_libavcodec
8348 LIBAVCODEC_A = $_libavcodec_a
8349 LIBAVCODEC_SO = $_libavcodec_so
8350 LIBAVFORMAT = $_libavformat
8351 LIBAVFORMAT_A = $_libavformat_a
8352 LIBAVFORMAT_SO = $_libavformat_so
8353 LIBPOSTPROC = $_libpostproc
8354 LIBPOSTPROC_A = $_libpostproc_a
8355 LIBPOSTPROC_SO = $_libpostproc_so
8356 LIBSWSCALE = $_libswscale
8357 LIBSWSCALE_A = $_libswscale_a
8358 LIBSWSCALE_SO = $_libswscale_so
8360 BUILD_STATIC=yes
8361 SRC_PATH=..
8362 BUILD_ROOT=..
8363 LIBPREF=lib
8364 LIBSUF=.a
8365 LIBNAME=\$(LIBPREF)\$(NAME)\$(LIBSUF)
8367 # Some FFmpeg codecs depend on these. Enable them unconditionally for now.
8368 CONFIG_AANDCT=yes
8369 CONFIG_FFT=yes
8370 CONFIG_FFT_MMX=$fft_mmx
8371 CONFIG_GOLOMB=yes
8372 CONFIG_MDCT=yes
8373 CONFIG_RDFT=yes
8375 CONFIG_BZLIB=$bzlib
8376 CONFIG_ENCODERS=yes
8377 CONFIG_GPL=yes
8378 CONFIG_LIBAMR=$_libamr
8379 CONFIG_LIBAMR_NB=$_libamr_nb
8380 CONFIG_LIBAMR_WB=$_libamr_wb
8381 CONFIG_LIBDIRAC=$_libdirac_lavc
8382 CONFIG_LIBFAAC=$_faac_lavc
8383 CONFIG_LIBMP3LAME=$_mp3lame_lavc
8384 CONFIG_LIBSCHROEDINGER=$_libschroedinger_lavc
8385 CONFIG_LIBVORBIS=$_libvorbis
8386 CONFIG_LIBX264=$_x264_lavc
8387 CONFIG_LIBXVID=$_xvid_lavc
8388 CONFIG_MLIB = $_mlib
8389 CONFIG_MUXERS=$_mencoder
8390 CONFIG_POSTPROC = yes
8391 # Prevent building libavcodec/imgresample.c with conflicting symbols
8392 CONFIG_SWSCALE=yes
8393 CONFIG_VDPAU=$_vdpau
8394 CONFIG_XVMC=$_xvmc
8395 CONFIG_ZLIB=$_zlib
8397 HAVE_PTHREADS = $_pthreads
8398 HAVE_W32THREADS = $_w32threads
8399 HAVE_YASM = $_have_yasm
8401 `echo $_libavdecoders | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
8402 `echo $_libavencoders | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
8403 `echo $_libavparsers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
8404 `echo $_libavdemuxers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
8405 `echo $_libavmuxers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
8406 `echo $_libavbsfs | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
8409 #############################################################################
8411 ff_config_enable () {
8412 _nprefix=$3;
8413 test -z "$_nprefix" && _nprefix='CONFIG'
8414 for part in $1; do
8415 if ` echo $2 | grep -q -E "(^| )$part($| )" `; then
8416 echo "#define ${_nprefix}_$part 1"
8417 else
8418 echo "#define ${_nprefix}_$part 0"
8420 done
8423 echo "Creating config.h"
8424 cat > $TMPH << EOF
8425 /*----------------------------------------------------------------------------
8426 ** This file has been automatically generated by configure any changes in it
8427 ** will be lost when you run configure again.
8428 ** Instead of modifying definitions here, use the --enable/--disable options
8429 ** of the configure script! See ./configure --help for details.
8430 *---------------------------------------------------------------------------*/
8432 #ifndef MPLAYER_CONFIG_H
8433 #define MPLAYER_CONFIG_H
8435 /* Undefine this if you do not want to select mono audio (left or right)
8436 with a stereo MPEG layer 2/3 audio stream. The command line option
8437 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
8438 right-only), with 0 being the default.
8440 #define CONFIG_FAKE_MONO 1
8442 /* set up max. outburst. use 65536 for ALSA 0.5, for others 16384 is enough */
8443 #define MAX_OUTBURST 65536
8445 /* set up audio OUTBURST. Do not change this! */
8446 #define OUTBURST 512
8448 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
8449 #undef FAST_OSD
8450 #undef FAST_OSD_TABLE
8452 /* Define this to enable MPEG-1/2 image postprocessing in libmpeg2 */
8453 #define MPEG12_POSTPROC 1
8454 #define ATTRIBUTE_ALIGNED_MAX 16
8458 #define CONFIGURATION "$_configuration"
8460 #define MPLAYER_DATADIR "$_datadir"
8461 #define MPLAYER_CONFDIR "$_confdir"
8462 #define MPLAYER_LIBDIR "$_libdir"
8464 /* definitions needed by included libraries */
8465 #define HAVE_INTTYPES_H 1
8466 /* libmpeg2 + FFmpeg */
8467 $def_fast_inttypes
8468 /* libdvdcss */
8469 #define HAVE_ERRNO_H 1
8470 /* libdvdcss + libdvdread */
8471 #define HAVE_LIMITS_H 1
8472 /* libdvdcss + libfaad2 */
8473 #define HAVE_UNISTD_H 1
8474 /* libfaad2 + libdvdread */
8475 #define STDC_HEADERS 1
8476 #define HAVE_MEMCPY 1
8477 /* libfaad2 */
8478 #define HAVE_STRING_H 1
8479 #define HAVE_STRINGS_H 1
8480 #define HAVE_SYS_STAT_H 1
8481 #define HAVE_SYS_TYPES_H 1
8482 /* libdvdnav */
8483 #define READ_CACHE_TRACE 0
8484 /* libdvdread */
8485 #define HAVE_DLFCN_H 1
8488 /* system headers */
8489 $def_alloca_h
8490 $def_alsa_asoundlib_h
8491 $def_altivec_h
8492 $def_malloc_h
8493 $def_mman_h
8494 $def_mman_has_map_failed
8495 $def_soundcard_h
8496 $def_sys_asoundlib_h
8497 $def_sys_soundcard_h
8498 $def_sys_sysinfo_h
8499 $def_termios_h
8500 $def_termios_sys_h
8501 $def_winsock2_h
8504 /* system functions */
8505 $def_gethostbyname2
8506 $def_gettimeofday
8507 $def_glob
8508 $def_langinfo
8509 $def_llrint
8510 $def_lrint
8511 $def_lrintf
8512 $def_map_memalign
8513 $def_memalign
8514 $def_nanosleep
8515 $def_posix_select
8516 $def_round
8517 $def_roundf
8518 $def_select
8519 $def_setenv
8520 $def_shm
8521 $def_strsep
8522 $def_swab
8523 $def_sysi86
8524 $def_sysi86_iv
8525 $def_termcap
8526 $def_termios
8527 $def_truncf
8528 $def_vsscanf
8531 /* system-specific features */
8532 $def_asmalign_pot
8533 $def_builtin_expect
8534 $def_dl
8535 $def_extern_prefix
8536 $def_iconv
8537 $def_kstat
8538 $def_macosx_bundle
8539 $def_macosx_finder
8540 $def_maemo
8541 $def_named_asm_args
8542 $def_priority
8543 $def_quicktime
8544 $def_restrict_keyword
8545 $def_rtc
8546 $def_unrar_exec
8549 /* configurable options */
8550 $def_charset
8551 $def_crash_debug
8552 $def_debug
8553 $def_dynamic_plugins
8554 $def_fastmemcpy
8555 $def_menu
8556 $def_runtime_cpudetection
8557 $def_sighandler
8558 $def_sortsub
8559 $def_stream_cache
8560 $def_pthread_cache
8563 /* CPU stuff */
8564 #define __CPU__ $iproc
8565 $def_words_endian
8566 `ff_config_enable "$_arch_all" "$_arch" "ARCH"`
8567 `ff_config_enable "$_cpuexts_all" "$_cpuexts" "HAVE"`
8570 /* DVD/VCD/CD */
8571 #define DEFAULT_CDROM_DEVICE "$default_cdrom_device"
8572 #define DEFAULT_DVD_DEVICE "$default_dvd_device"
8573 $def_bsdi_dvd
8574 $def_cddb
8575 $def_cdio
8576 $def_cdparanoia
8577 $def_cdrom
8578 $def_dvd
8579 $def_dvd_bsd
8580 $def_dvd_darwin
8581 $def_dvd_linux
8582 $def_dvd_openbsd
8583 $def_dvdio
8584 $def_dvdnav
8585 $def_dvdread
8586 $def_hpux_scsi_h
8587 $def_libcdio
8588 $def_sol_scsi_h
8589 $def_vcd
8592 /* codec libraries */
8593 $def_faac
8594 $def_faad
8595 $def_faad_internal
8596 $def_liba52
8597 $def_liba52_internal
8598 $def_libdca
8599 $def_libdv
8600 $def_liblzo
8601 $def_libmpeg2
8602 $def_mad
8603 $def_mp3lame
8604 $def_mp3lame_preset
8605 $def_mp3lame_preset_medium
8606 $def_mp3lib
8607 $def_musepack
8608 $def_speex
8609 $def_theora
8610 $def_toolame
8611 $def_tremor
8612 $def_twolame
8613 $def_vorbis
8614 $def_x264
8615 $def_xvid
8616 $def_zlib
8618 $def_libnut
8621 /* binary codecs */
8622 $def_qtx
8623 $def_qtx_win32
8624 $def_real
8625 $def_real_path
8626 $def_win32_loader
8627 $def_win32dll
8628 #define WIN32_PATH "$_win32codecsdir"
8629 $def_xanim
8630 $def_xanim_path
8631 $def_xmms
8632 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
8635 /* GUI */
8636 $def_gtk2
8637 $def_gui
8638 $def_xshape
8641 /* Audio output drivers */
8642 $def_alsa
8643 $def_alsa1x
8644 $def_alsa5
8645 $def_alsa9
8646 $def_arts
8647 $def_coreaudio
8648 $def_dart
8649 $def_esd
8650 $def_esd_latency
8651 $def_jack
8652 $def_nas
8653 $def_openal
8654 $def_openal_h
8655 $def_ossaudio
8656 $def_ossaudio_devdsp
8657 $def_ossaudio_devmixer
8658 $def_pulse
8659 $def_sgiaudio
8660 $def_sunaudio
8661 $def_win32waveout
8663 $def_ladspa
8664 $def_libbs2b
8667 /* input */
8668 $def_apple_ir
8669 $def_apple_remote
8670 $def_ioctl_bt848_h_name
8671 $def_ioctl_meteor_h_name
8672 $def_joystick
8673 $def_lirc
8674 $def_lircc
8675 $def_pvr
8676 $def_radio
8677 $def_radio_bsdbt848
8678 $def_radio_capture
8679 $def_radio_v4l
8680 $def_radio_v4l2
8681 $def_tv
8682 $def_tv_bsdbt848
8683 $def_tv_dshow
8684 $def_tv_teletext
8685 $def_tv_v4l
8686 $def_tv_v4l1
8687 $def_tv_v4l2
8690 /* font stuff */
8691 $def_ass
8692 $def_bitmap_font
8693 $def_enca
8694 $def_fontconfig
8695 $def_freetype
8696 $def_fribidi
8699 /* networking */
8700 $def_closesocket
8701 $def_ftp
8702 $def_inet6
8703 $def_inet_aton
8704 $def_inet_pton
8705 $def_live
8706 $def_nemesi
8707 $def_network
8708 $def_smb
8709 $def_socklen_t
8710 $def_vstream
8713 /* libvo options */
8714 $def_3dfx
8715 $def_aa
8716 $def_bl
8717 $def_caca
8718 $def_corevideo
8719 $def_dfbmga
8720 $def_dga
8721 $def_dga1
8722 $def_dga2
8723 $def_direct3d
8724 $def_directfb
8725 $def_directfb_version
8726 $def_directx
8727 $def_dvb
8728 $def_dvb_head
8729 $def_dvbin
8730 $def_dxr2
8731 $def_dxr3
8732 $def_fbdev
8733 $def_ggi
8734 $def_ggiwmh
8735 $def_gif
8736 $def_gif_4
8737 $def_gif_tvt_hack
8738 $def_gl
8739 $def_gl_win32
8740 $def_ivtv
8741 $def_jpeg
8742 $def_kva
8743 $def_md5sum
8744 $def_mga
8745 $def_mng
8746 $def_png
8747 $def_pnm
8748 $def_quartz
8749 $def_s3fb
8750 $def_sdl
8751 $def_sdlbuggy
8752 $def_svga
8753 $def_tdfxfb
8754 $def_tdfxvid
8755 $def_tga
8756 $def_v4l2
8757 $def_vdpau
8758 $def_vesa
8759 $def_vidix
8760 $def_vidix_drv_cyberblade
8761 $def_vidix_drv_ivtv
8762 $def_vidix_drv_mach64
8763 $def_vidix_drv_mga
8764 $def_vidix_drv_mga_crtc2
8765 $def_vidix_drv_nvidia
8766 $def_vidix_drv_pm3
8767 $def_vidix_drv_radeon
8768 $def_vidix_drv_rage128
8769 $def_vidix_drv_s3
8770 $def_vidix_drv_sh_veu
8771 $def_vidix_drv_sis
8772 $def_vidix_drv_unichrome
8773 $def_vidix_pfx
8774 $def_vm
8775 $def_wii
8776 $def_x11
8777 $def_xdpms
8778 $def_xf86keysym
8779 $def_xinerama
8780 $def_xmga
8781 $def_xss
8782 $def_xv
8783 $def_xvmc
8784 $def_xvr100
8785 $def_yuv4mpeg
8786 $def_zr
8789 /* FFmpeg */
8790 $def_libavcodec
8791 $def_libavcodec_a
8792 $def_libavcodec_so
8793 $def_libavformat
8794 $def_libavformat_a
8795 $def_libavformat_so
8796 $def_libavutil
8797 $def_libavutil_a
8798 $def_libavutil_so
8799 $def_libpostproc
8800 $def_libpostproc_a
8801 $def_libpostproc_so
8802 $def_libswscale
8803 $def_libswscale_a
8804 $def_libswscale_so
8806 #define CONFIG_DECODERS 1
8807 #define CONFIG_ENCODERS 1
8808 #define CONFIG_DEMUXERS 1
8809 $def_muxers
8811 $def_arpa_inet_h
8812 $def_bswap
8813 $def_bzlib
8814 $def_dcbzl
8815 $def_dos_paths
8816 $def_fast_64bit
8817 $def_fast_unaligned
8818 $def_libavcodec_mpegaudio_hp
8819 $def_memalign_hack
8820 $def_mlib
8821 $def_mkstemp
8822 $def_posix_memalign
8823 $def_pthreads
8824 $def_ten_operands
8825 $def_threads
8826 $def_yasm
8828 #define CONFIG_FASTDIV 0
8829 #define CONFIG_FFSERVER 0
8830 #define CONFIG_GPL 1
8831 #define CONFIG_GRAY 0
8832 #define CONFIG_HARDCODED_TABLES 0
8833 #define CONFIG_LIBAMR_NB_FIXED 0
8834 #define CONFIG_LIBVORBIS 0
8835 #define CONFIG_POWERPC_PERF 0
8836 #define CONFIG_SMALL 0
8837 #define CONFIG_SWSCALE 1
8838 #define CONFIG_SWSCALE_ALPHA 1
8840 #define HAVE_GETHRTIME 0
8841 #define HAVE_INLINE_ASM 0
8842 #define HAVE_POLL_H 1
8843 #define HAVE_PPC4XX 0
8844 #define HAVE_VIRTUALALLOC 0
8846 /* Some FFmpeg codecs depend on these. Enable them unconditionally for now. */
8847 #define CONFIG_AANDCT 1
8848 #define CONFIG_FFT 1
8849 #define CONFIG_GOLOMB 1
8850 #define CONFIG_MDCT 1
8851 #define CONFIG_RDFT 1
8853 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
8854 #define HAVE_EBX_AVAILABLE 1
8855 #ifndef MP_DEBUG
8856 #define HAVE_EBP_AVAILABLE 1
8857 #else
8858 #define HAVE_EBP_AVAILABLE 0
8859 #endif
8861 /* External libraries used through libavcodec. */
8862 $def_faac_lavc
8863 $def_libamr
8864 $def_libamr_nb
8865 $def_libamr_wb
8866 $def_libdirac_lavc
8867 $def_libschroedinger_lavc
8868 $def_mp3lame_lavc
8869 $def_x264_lavc
8870 $def_xvid_lavc
8872 `ff_config_enable "$_libavdecoders_all" "$_libavdecoders"`
8873 `ff_config_enable "$_libavencoders_all" "$_libavencoders"`
8874 `ff_config_enable "$_libavparsers_all" "$_libavparsers"`
8875 `ff_config_enable "$_libavdemuxers_all" "$_libavdemuxers"`
8876 `ff_config_enable "$_libavmuxers_all" "$_libavmuxers"`
8877 `ff_config_enable "$_libavprotocols_all" "$_libavprotocols"`
8878 `ff_config_enable "$_libavbsfs_all" "$_libavbsfs"`
8880 #define CONFIG_H263_VAAPI_HWACCEL 0
8881 #define CONFIG_MPEG2_VAAPI_HWACCEL 0
8882 #define CONFIG_MPEG4_VAAPI_HWACCEL 0
8883 #define CONFIG_H264_VAAPI_HWACCEL 0
8884 #define CONFIG_VC1_VAAPI_HWACCEL 0
8885 #define CONFIG_WMV3_VAAPI_HWACCEL 0
8887 #endif /* MPLAYER_CONFIG_H */
8890 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
8891 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
8893 cp -p config.h ffmpeg/config.h
8894 sed -e 's/OPTFLAGS/MPLAYER_OPTFLAGS/' -e 's/FFMPEG_OFLAGS/OPTFLAGS/' config.mak >ffmpeg/config.mak
8896 #############################################################################
8898 cat << EOF
8900 Config files successfully generated by ./configure $_configuration !
8902 Install prefix: $_prefix
8903 Data directory: $_datadir
8904 Config direct.: $_confdir
8906 Byte order: $_byte_order
8907 Optimizing for: $_optimizing
8909 Languages:
8910 Messages/GUI: $msg_lang
8911 Manual pages: $man_langs
8913 Enabled optional drivers:
8914 Input: $_inputmodules
8915 Codecs: $_codecmodules
8916 Audio output: $_aomodules
8917 Video output: $_vomodules
8919 Disabled optional drivers:
8920 Input: $_noinputmodules
8921 Codecs: $_nocodecmodules
8922 Audio output: $_noaomodules
8923 Video output: $_novomodules
8925 'config.h' and 'config.mak' contain your configuration options.
8926 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
8927 compile *** DO NOT REPORT BUGS if you tweak these files ***
8929 'make' will now compile MPlayer and 'make install' will install it.
8930 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
8935 if test "$_mtrr" = yes ; then
8936 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$doc_lang/video.html#mtrr)"
8937 echo
8940 if ! x86_32; then
8941 cat <<EOF
8942 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
8943 operating system ($system_name). You may encounter a few files that cannot
8944 be played due to missing open source video/audio codec support.
8950 cat <<EOF
8951 Check $TMPLOG if you wonder why an autodetection failed (make sure
8952 development headers/packages are installed).
8954 NOTE: The --enable-* parameters unconditionally force options on, completely
8955 skipping autodetection. This behavior is unlike what you may be used to from
8956 autoconf-based configure scripts that can decide to override you. This greater
8957 level of control comes at a price. You may have to provide the correct compiler
8958 and linker flags yourself.
8959 If you used one of these options (except --enable-gui and similar ones that
8960 turn on internal features) and experience a compilation or linking failure,
8961 make sure you have passed the necessary compiler/linker flags to configure.
8963 If you suspect a bug, please read DOCS/HTML/$doc_lang/bugreports.html.
8967 if test "$_warn_CFLAGS" = yes; then
8968 cat <<EOF
8970 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS/YASMFLAGS set by you,
8971 but:
8973 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
8975 It is strongly recommended to let MPlayer choose the correct CFLAGS!
8976 To do so, execute 'CFLAGS= ./configure <options>'
8981 # Last move:
8982 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP" "$TMPH"