Merge svn changes up to r27399
[mplayer.git] / configure
blobc711a9519ed2617c9089afe4cd230d5124ab1fbc
1 #! /bin/sh
3 # Original version (C) 2000 Pontscho/fresh!mindworkz
4 # pontscho@makacs.poliod.hu
6 # History / Contributors: check the cvs 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 HAVE_FEATURE 1'
34 # else
35 # _def_feature='#undef HAVE_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 LC_ALL=C
54 export LC_ALL
56 # Store the configure line that was used
57 _configuration="$*"
59 # Prefer these macros to full length text !
60 # These macros only return an error code - NO display is done
61 compile_check() {
62 echo >> "$TMPLOG"
63 cat "$1" >> "$TMPLOG"
64 echo >> "$TMPLOG"
65 echo "$_cc $CFLAGS $_inc_extra $_ld_static $_ld_extra $_libs_mplayer $_libs_mencoder -o $TMPEXE $@" >> "$TMPLOG"
66 rm -f "$TMPEXE"
67 $_cc $CFLAGS $_inc_extra $_ld_static $_ld_extra $_libs_mplayer $_libs_mencoder -o "$TMPEXE" "$@" >> "$TMPLOG" 2>&1
68 TMP="$?"
69 echo >> "$TMPLOG"
70 echo >> "$TMPLOG"
71 return "$TMP"
74 cc_check() {
75 compile_check $TMPC $@
78 cxx_check() {
79 compile_check $TMPCPP $@ -lstdc++
82 tmp_run() {
83 "$TMPEXE" >> "$TMPLOG" 2>&1
86 # Display error message, flushes tempfile, exit
87 die () {
88 echo
89 echo "Error: $@" >&2
90 echo >&2
91 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP"
92 echo "Check \"$TMPLOG\" if you do not understand why it failed."
93 exit 1
96 # OS test booleans functions
97 issystem() {
98 test "`echo $system_name | tr A-Z a-z`" = "`echo $1 | tr A-Z a-z`"
100 linux() { issystem "Linux" || issystem "uClinux" ; return "$?" ; }
101 sunos() { issystem "SunOS" ; return "$?" ; }
102 hpux() { issystem "HP-UX" ; return "$?" ; }
103 irix() { issystem "IRIX" ; return "$?" ; }
104 aix() { issystem "AIX" ; return "$?" ; }
105 cygwin() { issystem "CYGWIN" ; return "$?" ; }
106 freebsd() { issystem "FreeBSD" || issystem "GNU/kFreeBSD"; return "$?" ; }
107 netbsd() { issystem "NetBSD" ; return "$?" ; }
108 bsdos() { issystem "BSD/OS" ; return "$?" ; }
109 openbsd() { issystem "OpenBSD" ; return "$?" ; }
110 dragonfly() { issystem "DragonFly" ; return "$?" ; }
111 qnx() { issystem "QNX" ; return "$?" ; }
112 darwin() { issystem "Darwin" ; return "$?" ; }
113 gnu() { issystem "GNU" ; return "$?" ; }
114 mingw32() { issystem "MINGW32" ; return "$?" ; }
115 morphos() { issystem "MorphOS" ; return "$?" ; }
116 amigaos() { issystem "AmigaOS" ; return "$?" ; }
117 win32() { cygwin || mingw32 ; return "$?" ; }
118 beos() { issystem "BEOS" ; return "$?" ; }
119 os2() { issystem "OS/2" ; return "$?" ; }
121 # arch test boolean functions
122 # x86/x86pc is used by QNX
123 x86_32() {
124 case "$host_arch" in
125 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686) return 0 ;;
126 *) return 1 ;;
127 esac
130 x86_64() {
131 case "$host_arch" in
132 x86_64|amd64) return 0 ;;
133 *) return 1 ;;
134 esac
137 x86() {
138 x86_32 || x86_64
141 ppc() {
142 case "$host_arch" in
143 ppc|powerpc) return 0;;
144 *) return 1;;
145 esac
148 alpha() {
149 case "$host_arch" in
150 alpha) return 0;;
151 *) return 1;;
152 esac
155 arm() {
156 case "$host_arch" in
157 arm) return 0;;
158 *) return 1;;
159 esac
162 sh3() {
163 case "$host_arch" in
164 sh3) return 0;;
165 *) return 1;;
166 esac
169 # Use this before starting a check
170 echocheck() {
171 echo "============ Checking for $@ ============" >> "$TMPLOG"
172 echo ${_echo_n} "Checking for $@ ... ${_echo_c}"
175 # Use this to echo the results of a check
176 echores() {
177 if test "$_res_comment" ; then
178 _res_comment="($_res_comment)"
180 echo "Result is: $@ $_res_comment" >> "$TMPLOG"
181 echo "##########################################" >> "$TMPLOG"
182 echo "" >> "$TMPLOG"
183 echo "$@ $_res_comment"
184 _res_comment=""
186 #############################################################################
188 # Check how echo works in this /bin/sh
189 case `echo -n` in
190 -n) _echo_n= _echo_c='\c' ;; # SysV echo
191 *) _echo_n='-n ' _echo_c= ;; # BSD echo
192 esac
194 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"`
195 man_lang_all=`echo DOCS/man/??/mplayer.1 | sed -e "s:DOCS/man/\(..\)/mplayer.1:\1:g"`
196 doc_lang_all=`echo DOCS/xml/??/ DOCS/xml/??_??/ | sed -e "s:DOCS/xml/\(..\)/:\1:g" -e "s:DOCS/xml/\(.._..\)/:\1:g"`
198 show_help(){
199 cat << EOF
200 Usage: $0 [OPTIONS]...
202 Configuration:
203 -h, --help display this help and exit
205 Installation directories:
206 --prefix=DIR prefix directory for installation [/usr/local]
207 --bindir=DIR directory for installing binaries [PREFIX/bin]
208 --datadir=DIR directory for installing machine independent
209 data files (skins, etc) [PREFIX/share/mplayer]
210 --mandir=DIR directory for installing man pages [PREFIX/share/man]
211 --confdir=DIR directory for installing configuration files
212 [PREFIX/etc/mplayer]
213 --libdir=DIR directory for object code libraries [PREFIX/lib]
214 --codecsdir=DIR directory for binary codecs [LIBDIR/codecs]
215 --win32codecsdir=DIR directory for Windows DLLs [LIBDIR/codecs]
216 --xanimcodecsdir=DIR directory for XAnim codecs [LIBDIR/codecs]
217 --realcodecsdir=DIR directory for RealPlayer codecs [LIBDIR/codecs]
219 Optional features:
220 --disable-mencoder disable MEncoder (A/V encoder) compilation [enable]
221 --disable-mplayer disable MPlayer compilation [enable]
222 --enable-gui enable GMPlayer compilation (GTK+ GUI) [disable]
223 --enable-gtk1 force using GTK 1.2 for the GUI [disable]
224 --disable-largefiles disable support for files > 2GB [enable]
225 --enable-linux-devfs set default devices to devfs [disable]
226 --enable-termcap use termcap database for key codes [autodetect]
227 --enable-termios use termios database for key codes [autodetect]
228 --disable-iconv disable iconv for encoding conversion [autodetect]
229 --disable-langinfo do not use langinfo [autodetect]
230 --enable-lirc enable LIRC (remote control) support [autodetect]
231 --enable-lircc enable LIRCCD (LIRC client daemon) input [autodetect]
232 --enable-joystick enable joystick support [disable]
233 --enable-apple-remote enable Apple Remote input (Mac OS X only) [autodetect]
234 --enable-apple-ir enable Apple IR Remote input (Linux only) [autodetect]
235 --disable-vm disable X video mode extensions [autodetect]
236 --disable-xf86keysym disable support for multimedia keys [autodetect]
237 --enable-radio enable radio interface [disable]
238 --enable-radio-capture enable radio capture (through PCI/line-in) [disable]
239 --disable-radio-v4l2 disable Video4Linux2 radio interface [autodetect]
240 --disable-radio-bsdbt848 disable BSD BT848 radio interface [autodetect]
241 --disable-tv disable TV interface (TV/DVB grabbers) [enable]
242 --disable-tv-v4l1 disable Video4Linux TV interface [autodetect]
243 --disable-tv-v4l2 disable Video4Linux2 TV interface [autodetect]
244 --disable-tv-bsdbt848 disable BSD BT848 interface [autodetect]
245 --disable-tv-teletext disable TV teletext interface [autodetect]
246 --disable-pvr disable Video4Linux2 MPEG PVR [autodetect]
247 --disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
248 --disable-network disable networking [enable]
249 --enable-winsock2 enable winsock2 [autodetect]
250 --enable-smb enable Samba (SMB) input [autodetect]
251 --enable-live enable LIVE555 Streaming Media [autodetect]
252 --enable-nemesi enable Nemesi Streaming Media [autodetect]
253 --disable-dvdnav disable libdvdnav [autodetect]
254 --disable-dvdread disable libdvdread [autodetect]
255 --disable-dvdread-internal disable internal libdvdread [autodetect]
256 --disable-libdvdcss-internal disable internal libdvdcss [autodetect]
257 --disable-cdparanoia disable cdparanoia [autodetect]
258 --disable-cddb disable cddb [autodetect]
259 --disable-bitmap-font disable bitmap font support [enable]
260 --disable-freetype disable FreeType 2 font rendering [autodetect]
261 --disable-fontconfig disable fontconfig font lookup [autodetect]
262 --disable-unrarexec disable using of UnRAR executable [enabled]
263 --enable-menu enable OSD menu (not DVD menu) [disabled]
264 --disable-sortsub disable subtitle sorting [enabled]
265 --enable-fribidi enable the FriBiDi libs [autodetect]
266 --disable-enca disable ENCA charset oracle library [autodetect]
267 --disable-macosx disable Mac OS X specific features [autodetect]
268 --disable-maemo disable maemo specific features [autodetect]
269 --enable-macosx-finder-support enable Mac OS X Finder invocation
270 parameter parsing [disabled]
271 --enable-macosx-bundle enable Mac OS X bundle file locations [autodetect]
272 --disable-inet6 disable IPv6 support [autodetect]
273 --disable-gethostbyname2 gethostbyname2 part of the C library [autodetect]
274 --disable-ftp disable FTP support [enabled]
275 --disable-vstream disable TiVo vstream client support [autodetect]
276 --disable-pthreads disable Posix threads support [autodetect]
277 --disable-w32threads disable Win32 threads support [autodetect]
278 --disable-ass disable internal SSA/ASS subtitle support [autodetect]
279 --enable-rpath enable runtime linker path for extra libs [disabled]
281 Codecs:
282 --enable-gif enable GIF support [autodetect]
283 --enable-png enable PNG input/output support [autodetect]
284 --enable-jpeg enable JPEG input/output support [autodetect]
285 --enable-libcdio enable external libcdio [autodetect]
286 --enable-liblzo enable external liblzo [autodetect]
287 --disable-win32dll disable Win32 DLL support [enabled]
288 --disable-qtx disable QuickTime codecs support [enabled]
289 --disable-xanim disable XAnim codecs support [enabled]
290 --disable-real disable RealPlayer codecs support [enabled]
291 --disable-xvid disable Xvid [autodetect]
292 --disable-xvid-lavc disable Xvid in libavcodec [autodetect]
293 --disable-x264 disable x264 [autodetect]
294 --disable-x264-lavc disable x264 in libavcodec [autodetect]
295 --disable-libdirac-lavc disable Dirac in libavcodec [autodetect]
296 --disable-libschroedinger-lavc disable Dirac in libavcodec (Schroedinger
297 decoder) [autodetect]
298 --disable-libnut disable libnut [autodetect]
299 --disable-libavutil_a disable static libavutil [autodetect]
300 --disable-libavcodec_a disable static libavcodec [autodetect]
301 --disable-libavformat_a disable static libavformat [autodetect]
302 --disable-libpostproc_a disable static libpostproc [autodetect]
303 --disable-libavutil_so disable shared libavutil [autodetect]
304 --disable-libavcodec_so disable shared libavcodec [autodetect]
305 --disable-libavformat_so disable shared libavformat [autodetect]
306 --disable-libpostproc_so disable shared libpostproc [autodetect]
307 --disable-libavcodec_mpegaudio_hp disable high precision audio decoding
308 in libavcodec [enabled]
309 --disable-tremor-internal disable internal Tremor [enabled]
310 --enable-tremor-low enable lower accuracy internal Tremor [disabled]
311 --enable-tremor-external enable external Tremor [autodetect]
312 --disable-libvorbis disable libvorbis support [autodetect]
313 --disable-speex disable Speex support [autodetect]
314 --enable-theora enable OggTheora libraries [autodetect]
315 --enable-faad-external enable external FAAD2 (AAC) [autodetect]
316 --disable-faad-internal disable internal FAAD2 (AAC) [autodetect]
317 --enable-faad-fixed enable fixed-point mode in internal FAAD2 [disabled]
318 --disable-faac disable support for FAAC (AAC encoder) [autodetect]
319 --disable-faac-lavc disable support for FAAC in libavcodec [autodetect]
320 --disable-ladspa disable LADSPA plugin support [autodetect]
321 --disable-libdv disable libdv 0.9.5 en/decoding support [autodetect]
322 --disable-mad disable libmad (MPEG audio) support [autodetect]
323 --disable-mp3lame disable LAME MP3 encoding support [autodetect]
324 --disable-mp3lame-lavc disable LAME in libavcodec [autodetect]
325 --disable-toolame disable Toolame (MPEG layer 2) encoding [autodetect]
326 --disable-twolame disable Twolame (MPEG layer 2) encoding [autodetect]
327 --enable-xmms enable XMMS input plugin support [disabled]
328 --enable-libdca enable libdca support [autodetect]
329 --disable-mp3lib disable builtin mp3lib [enabled]
330 --disable-liba52 disable builtin liba52 [enabled]
331 --disable-libmpeg2 disable builtin libmpeg2 [autodetect]
332 --disable-musepack disable musepack support [autodetect]
333 --disable-libamr_nb disable libamr narrowband [autodetect]
334 --disable-libamr_wb disable libamr wideband [autodetect]
335 --disable-decoder=DECODER disable specified FFmpeg decoder
336 --enable-decoder=DECODER enable specified FFmpeg decoder
337 --disable-encoder=ENCODER disable specified FFmpeg encoder
338 --enable-encoder=ENCODER enable specified FFmpeg encoder
339 --disable-parser=PARSER disable specified FFmpeg parser
340 --enable-parser=PARSER enable specified FFmpeg parser
341 --disable-demuxer=DEMUXER disable specified FFmpeg demuxer
342 --enable-demuxer=DEMUXER enable specified FFmpeg demuxer
343 --disable-muxer=MUXER disable specified FFmpeg muxer
344 --enable-muxer=MUXER enable specified FFmpeg muxer
346 Video output:
347 --disable-vidix disable VIDIX [for x86 *nix]
348 --with-vidix-drivers[=*] list of VIDIX drivers to be compiled in
349 Available: cyberblade,ivtv,mach64,mga,mga_crtc2,
350 nvidia,pm2,pm3,radeon,rage128,s3,sis,unichrome
351 --disable-vidix-pcidb disable VIDIX PCI device name database
352 --enable-dhahelper enable VIDIX dhahelper support
353 --enable-svgalib_helper enable VIDIX svgalib_helper support
354 --enable-gl enable OpenGL video output [autodetect]
355 --enable-dga2 enable DGA 2 support [autodetect]
356 --enable-dga1 enable DGA 1 support [autodetect]
357 --enable-vesa enable VESA video output [autodetect]
358 --enable-svga enable SVGAlib video output [autodetect]
359 --enable-sdl enable SDL video output [autodetect]
360 --enable-aa enable AAlib video output [autodetect]
361 --enable-caca enable CACA video output [autodetect]
362 --enable-ggi enable GGI video output [autodetect]
363 --enable-ggiwmh enable GGI libggiwmh extension [autodetect]
364 --enable-directx enable DirectX video output [autodetect]
365 --enable-dxr2 enable DXR2 video output [autodetect]
366 --enable-dxr3 enable DXR3/H+ video output [autodetect]
367 --enable-ivtv enable IVTV TV-Out video output [autodetect]
368 --enable-v4l2 enable V4L2 Decoder audio/video output [autodetect]
369 --enable-dvb enable DVB video output [autodetect]
370 --enable-dvbhead enable DVB video output (HEAD version) [autodetect]
371 --enable-mga enable mga_vid video output [autodetect]
372 --enable-xmga enable mga_vid X11 video output [autodetect]
373 --enable-xv enable Xv video output [autodetect]
374 --enable-xvmc enable XvMC acceleration [disable]
375 --enable-vm enable XF86VidMode support [autodetect]
376 --enable-xinerama enable Xinerama support [autodetect]
377 --enable-x11 enable X11 video output [autodetect]
378 --enable-xshape enable XShape support [autodetect]
379 --disable-xss disable screensaver support via xss [autodetect]
380 --enable-fbdev enable FBDev video output [autodetect]
381 --enable-mlib enable mediaLib video output (Solaris) [disable]
382 --enable-3dfx enable obsolete /dev/3dfx video output [disable]
383 --enable-tdfxfb enable tdfxfb video output [disable]
384 --enable-s3fb enable s3fb (S3 ViRGE) video output [disable]
385 --enable-directfb enable DirectFB video output [autodetect]
386 --enable-zr enable ZR360[56]7/ZR36060 video output [autodetect]
387 --enable-bl enable Blinkenlights video output [disable]
388 --enable-tdfxvid enable tdfx_vid video output [disable]
389 --enable-xvr100 enable SUN XVR-100 video output [autodetect]
390 --disable-tga disable Targa video output [enable]
391 --disable-pnm disable PNM video output [enable]
392 --disable-md5sum disable md5sum video output [enable]
393 --disable-yuv4mpeg disable yuv4mpeg video output [enable]
395 Audio output:
396 --disable-alsa disable ALSA audio output [autodetect]
397 --disable-ossaudio disable OSS audio output [autodetect]
398 --disable-arts disable aRts audio output [autodetect]
399 --disable-esd disable esd audio output [autodetect]
400 --disable-pulse disable Pulseaudio audio output [autodetect]
401 --disable-jack disable JACK audio output [autodetect]
402 --disable-openal disable OpenAL audio output [autodetect]
403 --disable-nas disable NAS audio output [autodetect]
404 --disable-sgiaudio disable SGI audio output [autodetect]
405 --disable-sunaudio disable Sun audio output [autodetect]
406 --disable-win32waveout disable Windows waveout audio output [autodetect]
407 --disable-select disable using select() on the audio device [enable]
409 Miscellaneous options:
410 --enable-runtime-cpudetection enable runtime CPU detection [disable]
411 --enable-cross-compile enable cross-compilation [autodetect]
412 --cc=COMPILER C compiler to build MPlayer [gcc]
413 --host-cc=COMPILER C compiler for tools needed while building [gcc]
414 --as=ASSEMBLER assembler to build MPlayer [as]
415 --ar=AR librarian to build MPlayer [ar]
416 --ranlib=RANLIB ranlib to build MPlayer [ranlib]
417 --windres=WINDRES windres to build MPlayer [windres]
418 --target=PLATFORM target platform (i386-linux, arm-linux, etc)
419 --enable-static build a statically linked binary
420 --charset=charset convert the console messages to this character set
421 --language=list a white space or comma separated list of languages for
422 translated man pages, the first language is used for
423 messages and the GUI (the environment variable
424 \$LINGUAS is also honored) [en]
425 (Available: all $msg_lang_all)
426 --with-install=PATH path to a custom install program
428 Advanced options:
429 --enable-mmx enable MMX [autodetect]
430 --enable-mmxext enable MMX2 (Pentium III, Athlon) [autodetect]
431 --enable-3dnow enable 3DNow! [autodetect]
432 --enable-3dnowext enable extended 3DNow! [autodetect]
433 --enable-sse enable SSE [autodetect]
434 --enable-sse2 enable SSE2 [autodetect]
435 --enable-ssse3 enable SSSE3 [autodetect]
436 --enable-shm enable shm [autodetect]
437 --enable-altivec enable AltiVec (PowerPC) [autodetect]
438 --enable-armv5te enable DSP extensions (ARM) [autodetect]
439 --enable-armv6 enable ARMv6 (ARM) [autodetect]
440 --enable-iwmmxt enable iWMMXt (ARM) [autodetect]
441 --disable-fastmemcpy disable 3DNow!/SSE/MMX optimized memcpy [enable]
442 --enable-big-endian force byte order to big-endian [autodetect]
443 --enable-debug[=1-3] compile-in debugging information [disable]
444 --enable-profile compile-in profiling information [disable]
445 --disable-sighandler disable sighandler for crashes [enable]
446 --enable-crash-debug enable automatic gdb attach on crash [disable]
447 --enable-dynamic-plugins enable dynamic A/V plugins [disable]
449 Use these options if autodetection fails (Options marked with (*) accept
450 multiple paths separated by ':'):
451 --extra-libs=FLAGS extra linker flags
452 --extra-libs-mplayer=FLAGS extra linker flags for MPlayer
453 --extra-libs-mencoder=FLAGS extra linker flags for MEncoder
454 --with-extraincdir=DIR extra header search paths in DIR (*)
455 --with-extralibdir=DIR extra linker search paths in DIR (*)
456 --with-xvmclib=NAME adapter-specific library name (e.g. XvMCNVIDIA)
458 --with-freetype-config=PATH path to freetype-config
459 --with-fribidi-config=PATH path to fribidi-config
460 --with-glib-config=PATH path to glib*-config
461 --with-gtk-config=PATH path to gtk*-config
462 --with-sdl-config=PATH path to sdl*-config
463 --with-dvdnav-config=PATH path to dvdnav-config
464 --with-dvdread-config=PATH path to dvdread-config
466 This configure script is NOT autoconf-based, even though its output is similar.
467 It will try to autodetect all configuration options. If you --enable an option
468 it will be forcefully turned on, skipping autodetection. This can break
469 compilation, so you need to know what you are doing.
471 exit 0
472 } #show_help()
474 # GOTCHA: the variables below defines the default behavior for autodetection
475 # and have - unless stated otherwise - at least 2 states : yes no
476 # If autodetection is available then the third state is: auto
477 _mmx=auto
478 _3dnow=auto
479 _3dnowext=auto
480 _mmxext=auto
481 _sse=auto
482 _sse2=auto
483 _ssse3=auto
484 _cmov=auto
485 _fast_cmov=auto
486 _armv5te=auto
487 _armv6=auto
488 _iwmmxt=auto
489 _mtrr=auto
490 _altivec=auto
491 _install=install
492 _ranlib=ranlib
493 _windres=windres
494 _cc=cc
495 _ar=ar
496 test "$CC" && _cc="$CC"
497 _as=auto
498 _runtime_cpudetection=no
499 _cross_compile=auto
500 _prefix="/usr/local"
501 _libavutil_a=auto
502 _libavutil_so=auto
503 _libavcodec_a=auto
504 _libamr_nb=auto
505 _libamr_wb=auto
506 _libavdecoders_all=`sed -n 's/^[^#]*DEC.*(.*, *\(.*\)).*/\1_decoder/p' ffmpeg/libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]'`
507 _libavdecoders=` echo $_libavdecoders_all | sed -e 's/ LIB[A-Z0-9_]*_DECODER//g' -e s/MPEG4AAC_DECODER// `
508 _libavencoders_all=`sed -n 's/^[^#]*ENC.*(.*, *\(.*\)).*/\1_encoder/p' ffmpeg/libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]'`
509 _libavencoders=` echo $_libavencoders_all | sed 's/ LIB[A-Z0-9_]*_ENCODER//g'`
510 _libavparsers_all=`sed -n 's/^[^#]*PARSER.*(.*, *\(.*\)).*/\1_parser/p' ffmpeg/libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]'`
511 _libavparsers=$_libavparsers_all
512 _libavbsfs_all=`sed -n 's/^[^#]*BSF.*(.*, *\(.*\)).*/\1_bsf/p' ffmpeg/libavcodec/allcodecs.c | tr '[a-z]' '[A-Z]'`
513 _libavbsfs=$_libavbsfs_all
514 _libavdemuxers_all=`sed -n 's/^[^#]*DEMUX.*(.*, *\(.*\)).*/\1_demuxer/p' ffmpeg/libavformat/allformats.c | tr '[a-z]' '[A-Z]'`
515 _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// `
516 _libavmuxers_all=`sed -n 's/^[^#]*_MUX.*(.*, *\(.*\)).*/\1_muxer/p' ffmpeg/libavformat/allformats.c | tr '[a-z]' '[A-Z]'`
517 _libavmuxers=`echo $_libavmuxers_all | sed -e 's/ LIB[A-Z0-9_]*_MUXER//g' -e s/RTP_MUXER// `
518 _libavprotocols_all=`sed -n 's/^[^#]*PROTOCOL.*(.*, *\(.*\)).*/\1_protocol/p' ffmpeg/libavformat/allformats.c | tr '[a-z]' '[A-Z]'`
519 _libavcodec_so=auto
520 _libavformat_a=auto
521 _libavformat_so=auto
522 _libpostproc_a=auto
523 _libpostproc_so=auto
524 _libavcodec_mpegaudio_hp=yes
525 _mencoder=yes
526 _mplayer=yes
527 _x11=auto
528 _xshape=auto
529 _xss=auto
530 _dga1=auto
531 _dga2=auto
532 _xv=auto
533 _xvmc=no #auto when complete
534 _sdl=auto
535 _directx=auto
536 _win32waveout=auto
537 _nas=auto
538 _png=auto
539 _jpeg=auto
540 _pnm=yes
541 _md5sum=yes
542 _yuv4mpeg=yes
543 _gif=auto
544 _gl=auto
545 _ggi=auto
546 _ggiwmh=auto
547 _aa=auto
548 _caca=auto
549 _svga=auto
550 _vesa=auto
551 _fbdev=auto
552 _dvb=auto
553 _dvbhead=auto
554 _dxr2=auto
555 _dxr3=auto
556 _ivtv=auto
557 _v4l2=auto
558 _iconv=auto
559 _langinfo=auto
560 _rtc=auto
561 _ossaudio=auto
562 _arts=auto
563 _esd=auto
564 _pulse=auto
565 _jack=auto
566 _openal=auto
567 _libcdio=auto
568 _liblzo=auto
569 _mad=auto
570 _mp3lame=auto
571 _mp3lame_lavc=auto
572 _toolame=auto
573 _twolame=auto
574 _tremor_internal=yes
575 _tremor_low=no
576 _tremor_external=auto
577 _libvorbis=auto
578 _speex=auto
579 _theora=auto
580 _mp3lib=yes
581 _liba52=yes
582 _libdca=auto
583 _libmpeg2=auto
584 _faad_internal=auto
585 _faad_external=auto
586 _faad_fixed=no
587 _faac=auto
588 _faac_lavc=auto
589 _ladspa=auto
590 _xmms=no
591 _dvdnav=auto
592 _dvdnavconfig=dvdnav-config
593 _dvdreadconfig=dvdread-config
594 _dvdread=auto
595 _dvdread_internal=auto
596 _libdvdcss_internal=auto
597 _xanim=auto
598 _real=auto
599 _live=auto
600 _nemesi=auto
601 _native_rtsp=yes
602 _xinerama=auto
603 _mga=auto
604 _xmga=auto
605 _vm=auto
606 _xf86keysym=auto
607 _mlib=no #broken, thus disabled
608 _sgiaudio=auto
609 _sunaudio=auto
610 _alsa=auto
611 _fastmemcpy=yes
612 _unrar_exec=auto
613 _win32dll=auto
614 _select=yes
615 _radio=no
616 _radio_capture=no
617 _radio_v4l=auto
618 _radio_v4l2=auto
619 _radio_bsdbt848=auto
620 _tv=yes
621 _tv_v4l1=auto
622 _tv_v4l2=auto
623 _tv_bsdbt848=auto
624 _tv_dshow=auto
625 _tv_teletext=auto
626 _pvr=auto
627 _network=yes
628 _winsock2=auto
629 _smbsupport=auto
630 _vidix=auto
631 _vidix_pcidb=yes
632 _dhahelper=no
633 _svgalib_helper=no
634 _joystick=no
635 _xvid=auto
636 _xvid_lavc=auto
637 _x264=auto
638 _x264_lavc=auto
639 _libdirac_lavc=auto
640 _libschroedinger_lavc=auto
641 _libnut=auto
642 _lirc=auto
643 _lircc=auto
644 _apple_remote=auto
645 _apple_ir=auto
646 _gui=no
647 _gtk1=no
648 _termcap=auto
649 _termios=auto
650 _3dfx=no
651 _s3fb=no
652 _tdfxfb=no
653 _tdfxvid=no
654 _xvr100=auto
655 _tga=yes
656 _directfb=auto
657 _zr=auto
658 _bl=no
659 _largefiles=yes
660 #_language=en
661 _shm=auto
662 _linux_devfs=no
663 _charset="UTF-8"
664 _dynamic_plugins=no
665 _crash_debug=no
666 _sighandler=yes
667 _libdv=auto
668 _cdparanoia=auto
669 _cddb=auto
670 _big_endian=auto
671 _bitmap_font=yes
672 _freetype=auto
673 _fontconfig=auto
674 _menu=no
675 _qtx=auto
676 _macosx=auto
677 _maemo=auto
678 _macosx_finder_support=no
679 _macosx_bundle=auto
680 _sortsub=yes
681 _freetypeconfig='freetype-config'
682 _fribidi=auto
683 _fribidiconfig='fribidi-config'
684 _enca=auto
685 _inet6=auto
686 _gethostbyname2=auto
687 _ftp=yes
688 _musepack=auto
689 _vstream=auto
690 _pthreads=auto
691 _w32threads=auto
692 _ass=auto
693 _rpath=no
694 _asmalign_pot=auto
695 _stream_cache=yes
696 _def_stream_cache="#define CONFIG_STREAM_CACHE 1"
697 _need_shmem=yes
698 for ac_option do
699 case "$ac_option" in
700 --help|-help|-h)
701 show_help
703 --prefix=*)
704 _prefix=`echo $ac_option | cut -d '=' -f 2`
706 --bindir=*)
707 _bindir=`echo $ac_option | cut -d '=' -f 2`
709 --datadir=*)
710 _datadir=`echo $ac_option | cut -d '=' -f 2`
712 --mandir=*)
713 _mandir=`echo $ac_option | cut -d '=' -f 2`
715 --confdir=*)
716 _confdir=`echo $ac_option | cut -d '=' -f 2`
718 --libdir=*)
719 _libdir=`echo $ac_option | cut -d '=' -f 2`
721 --codecsdir=*)
722 _codecsdir=`echo $ac_option | cut -d '=' -f 2`
724 --win32codecsdir=*)
725 _win32codecsdir=`echo $ac_option | cut -d '=' -f 2`
727 --xanimcodecsdir=*)
728 _xanimcodecsdir=`echo $ac_option | cut -d '=' -f 2`
730 --realcodecsdir=*)
731 _realcodecsdir=`echo $ac_option | cut -d '=' -f 2`
733 --with-extraincdir=*)
734 _inc_extra=-I`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -I,g'`
736 --with-extralibdir=*)
737 _ld_extra=-L`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -L,g'`
740 --with-install=*)
741 _install=`echo $ac_option | cut -d '=' -f 2 `
743 --with-xvmclib=*)
744 _xvmclib=`echo $ac_option | cut -d '=' -f 2`
747 --with-sdl-config=*)
748 _sdlconfig=`echo $ac_option | cut -d '=' -f 2`
750 --with-freetype-config=*)
751 _freetypeconfig=`echo $ac_option | cut -d '=' -f 2`
753 --with-fribidi-config=*)
754 _fribidiconfig=`echo $ac_option | cut -d '=' -f 2`
756 --with-gtk-config=*)
757 _gtkconfig=`echo $ac_option | cut -d '=' -f 2`
759 --with-glib-config=*)
760 _glibconfig=`echo $ac_option | cut -d '=' -f 2`
762 --with-dvdnav-config=*)
763 _dvdnavconfig=`echo $ac_option | cut -d '=' -f 2`
765 --with-dvdread-config=*)
766 _dvdreadconfig=`echo $ac_option | cut -d '=' -f 2`
769 --extra-libs=*)
770 _extra_libs=`echo $ac_option | cut -d '=' -f 2`
772 --extra-libs-mplayer=*)
773 _libs_mplayer=`echo $ac_option | cut -d '=' -f 2`
775 --extra-libs-mencoder=*)
776 _libs_mencoder=`echo $ac_option | cut -d '=' -f 2`
779 --target=*)
780 _target=`echo $ac_option | cut -d '=' -f 2`
782 --cc=*)
783 _cc=`echo $ac_option | cut -d '=' -f 2`
785 --host-cc=*)
786 _host_cc=`echo $ac_option | cut -d '=' -f 2`
788 --as=*)
789 _as=`echo $ac_option | cut -d '=' -f 2`
791 --ar=*)
792 _ar=`echo $ac_option | cut -d '=' -f 2`
794 --ranlib=*)
795 _ranlib=`echo $ac_option | cut -d '=' -f 2`
797 --windres=*)
798 _windres=`echo $ac_option | cut -d '=' -f 2`
800 --charset=*)
801 _charset=`echo $ac_option | cut -d '=' -f 2`
803 --language=*)
804 _language=`echo $ac_option | cut -d '=' -f 2`
807 --enable-static)
808 _ld_static='-static'
810 --disable-static)
811 _ld_static=''
813 --enable-profile)
814 _profile='-p'
816 --disable-profile)
817 _profile=
819 --enable-debug)
820 _debug='-g'
822 --enable-debug=*)
823 _debug=`echo $_echo_n '-g'$_echo_c; echo $ac_option | cut -d '=' -f 2`
825 --disable-debug)
826 _debug=
828 --enable-runtime-cpudetection) _runtime_cpudetection=yes ;;
829 --disable-runtime-cpudetection) _runtime_cpudetection=no ;;
830 --enable-cross-compile) _cross_compile=yes ;;
831 --disable-cross-compile) _cross_compile=no ;;
832 --enable-mencoder) _mencoder=yes ;;
833 --disable-mencoder) _mencoder=no ;;
834 --enable-mplayer) _mplayer=yes ;;
835 --disable-mplayer) _mplayer=no ;;
836 --enable-dynamic-plugins) _dynamic_plugins=yes ;;
837 --disable-dynamic-plugins) _dynamic_plugins=no ;;
838 --enable-x11) _x11=yes ;;
839 --disable-x11) _x11=no ;;
840 --enable-xshape) _xshape=yes ;;
841 --disable-xshape) _xshape=no ;;
842 --enable-xss) _xss=yes ;;
843 --disable-xss) _xss=no ;;
844 --enable-xv) _xv=yes ;;
845 --disable-xv) _xv=no ;;
846 --enable-xvmc) _xvmc=yes ;;
847 --disable-xvmc) _xvmc=no ;;
848 --enable-sdl) _sdl=yes ;;
849 --disable-sdl) _sdl=no ;;
850 --enable-directx) _directx=yes ;;
851 --disable-directx) _directx=no ;;
852 --enable-win32waveout) _win32waveout=yes ;;
853 --disable-win32waveout) _win32waveout=no ;;
854 --enable-nas) _nas=yes ;;
855 --disable-nas) _nas=no ;;
856 --enable-png) _png=yes ;;
857 --disable-png) _png=no ;;
858 --enable-jpeg) _jpeg=yes ;;
859 --disable-jpeg) _jpeg=no ;;
860 --enable-pnm) _pnm=yes ;;
861 --disable-pnm) _pnm=no ;;
862 --enable-md5sum) _md5sum=yes ;;
863 --disable-md5sum) _md5sum=no ;;
864 --enable-yuv4mpeg) _yuv4mpeg=yes ;;
865 --disable-yuv4mpeg) _yuv4mpeg=no ;;
866 --enable-gif) _gif=yes ;;
867 --disable-gif) _gif=no ;;
868 --enable-gl) _gl=yes ;;
869 --disable-gl) _gl=no ;;
870 --enable-ggi) _ggi=yes ;;
871 --disable-ggi) _ggi=no ;;
872 --enable-ggiwmh) _ggiwmh=yes ;;
873 --disable-ggiwmh) _ggiwmh=no ;;
874 --enable-aa) _aa=yes ;;
875 --disable-aa) _aa=no ;;
876 --enable-caca) _caca=yes ;;
877 --disable-caca) _caca=no ;;
878 --enable-svga) _svga=yes ;;
879 --disable-svga) _svga=no ;;
880 --enable-vesa) _vesa=yes ;;
881 --disable-vesa) _vesa=no ;;
882 --enable-fbdev) _fbdev=yes ;;
883 --disable-fbdev) _fbdev=no ;;
884 --enable-dvb) _dvb=yes ;;
885 --disable-dvb) _dvb=no ;;
886 --enable-dvbhead) _dvbhead=yes ;;
887 --disable-dvbhead) _dvbhead=no ;;
888 --enable-dxr2) _dxr2=yes ;;
889 --disable-dxr2) _dxr2=no ;;
890 --enable-dxr3) _dxr3=yes ;;
891 --disable-dxr3) _dxr3=no ;;
892 --enable-ivtv) _ivtv=yes ;;
893 --disable-ivtv) _ivtv=no ;;
894 --enable-v4l2) _v4l2=yes ;;
895 --disable-v4l2) _v4l2=no ;;
896 --enable-iconv) _iconv=yes ;;
897 --disable-iconv) _iconv=no ;;
898 --enable-langinfo) _langinfo=yes ;;
899 --disable-langinfo) _langinfo=no ;;
900 --enable-rtc) _rtc=yes ;;
901 --disable-rtc) _rtc=no ;;
902 --enable-libdv) _libdv=yes ;;
903 --disable-libdv) _libdv=no ;;
904 --enable-ossaudio) _ossaudio=yes ;;
905 --disable-ossaudio) _ossaudio=no ;;
906 --enable-arts) _arts=yes ;;
907 --disable-arts) _arts=no ;;
908 --enable-esd) _esd=yes ;;
909 --disable-esd) _esd=no ;;
910 --enable-pulse) _pulse=yes ;;
911 --disable-pulse) _pulse=no ;;
912 --enable-jack) _jack=yes ;;
913 --disable-jack) _jack=no ;;
914 --enable-openal) _openal=yes ;;
915 --disable-openal) _openal=no ;;
916 --enable-mad) _mad=yes ;;
917 --disable-mad) _mad=no ;;
918 --enable-mp3lame) _mp3lame=yes ;;
919 --disable-mp3lame) _mp3lame=no ;;
920 --enable-mp3lame-lavc) _mp3lame_lavc=yes ;;
921 --disable-mp3lame-lavc) _mp3lame_lavc=no ;;
922 --enable-toolame) _toolame=yes ;;
923 --disable-toolame) _toolame=no ;;
924 --enable-twolame) _twolame=yes ;;
925 --disable-twolame) _twolame=no ;;
926 --enable-libcdio) _libcdio=yes ;;
927 --disable-libcdio) _libcdio=no ;;
928 --enable-liblzo) _liblzo=yes ;;
929 --disable-liblzo) _liblzo=no ;;
930 --enable-libvorbis) _libvorbis=yes ;;
931 --disable-libvorbis) _libvorbis=no ;;
932 --enable-speex) _speex=yes ;;
933 --disable-speex) _speex=no ;;
934 --enable-tremor-internal) _tremor_internal=yes ;;
935 --disable-tremor-internal) _tremor_internal=no ;;
936 --enable-tremor-low) _tremor_low=yes ;;
937 --disable-tremor-low) _tremor_low=no ;;
938 --enable-tremor-external) _tremor_external=yes ;;
939 --disable-tremor-external) _tremor_external=no ;;
940 --enable-theora) _theora=yes ;;
941 --disable-theora) _theora=no ;;
942 --enable-mp3lib) _mp3lib=yes ;;
943 --disable-mp3lib) _mp3lib=no ;;
944 --enable-liba52) _liba52=yes ;;
945 --disable-liba52) _liba52=no ;;
946 --enable-libdca) _libdca=yes ;;
947 --disable-libdca) _libdca=no ;;
948 --enable-libmpeg2) _libmpeg2=yes ;;
949 --disable-libmpeg2) _libmpeg2=no ;;
950 --enable-musepack) _musepack=yes ;;
951 --disable-musepack) _musepack=no ;;
952 --enable-faad-internal) _faad_internal=yes ;;
953 --disable-faad-internal) _faad_internal=no ;;
954 --enable-faad-external) _faad_external=yes ;;
955 --disable-faad-external) _faad_external=no ;;
956 --enable-faad-fixed) _faad_fixed=yes ;;
957 --disable-faad-fixed) _faad_fixed=no ;;
958 --enable-faac) _faac=yes ;;
959 --disable-faac) _faac=no ;;
960 --enable-faac-lavc) _faac_lavc=yes ;;
961 --disable-faac-lavc) _faac_lavc=no ;;
962 --enable-ladspa) _ladspa=yes ;;
963 --disable-ladspa) _ladspa=no ;;
964 --enable-xmms) _xmms=yes ;;
965 --disable-xmms) _xmms=no ;;
966 --enable-dvdread) _dvdread=yes ;;
967 --disable-dvdread) _dvdread=no ;;
968 --enable-dvdread-internal) _dvdread_internal=yes ;;
969 --disable-dvdread-internal) _dvdread_internal=no ;;
970 --enable-libdvdcss-internal) _libdvdcss_internal=yes ;;
971 --disable-libdvdcss-internal) _libdvdcss_internal=no ;;
972 --enable-dvdnav) _dvdnav=yes ;;
973 --disable-dvdnav) _dvdnav=no ;;
974 --enable-xanim) _xanim=yes ;;
975 --disable-xanim) _xanim=no ;;
976 --enable-real) _real=yes ;;
977 --disable-real) _real=no ;;
978 --enable-live) _live=yes ;;
979 --disable-live) _live=no ;;
980 --enable-nemesi) _nemesi=yes ;;
981 --disable-nemesi) _nemesi=no ;;
982 --enable-xinerama) _xinerama=yes ;;
983 --disable-xinerama) _xinerama=no ;;
984 --enable-mga) _mga=yes ;;
985 --disable-mga) _mga=no ;;
986 --enable-xmga) _xmga=yes ;;
987 --disable-xmga) _xmga=no ;;
988 --enable-vm) _vm=yes ;;
989 --disable-vm) _vm=no ;;
990 --enable-xf86keysym) _xf86keysym=yes ;;
991 --disable-xf86keysym) _xf86keysym=no ;;
992 --enable-mlib) _mlib=yes ;;
993 --disable-mlib) _mlib=no ;;
994 --enable-sunaudio) _sunaudio=yes ;;
995 --disable-sunaudio) _sunaudio=no ;;
996 --enable-sgiaudio) _sgiaudio=yes ;;
997 --disable-sgiaudio) _sgiaudio=no ;;
998 --enable-alsa) _alsa=yes ;;
999 --disable-alsa) _alsa=no ;;
1000 --enable-tv) _tv=yes ;;
1001 --disable-tv) _tv=no ;;
1002 --enable-tv-bsdbt848) _tv_bsdbt848=yes ;;
1003 --disable-tv-bsdbt848) _tv_bsdbt848=no ;;
1004 --enable-tv-v4l1) _tv_v4l1=yes ;;
1005 --disable-tv-v4l1) _tv_v4l1=no ;;
1006 --enable-tv-v4l2) _tv_v4l2=yes ;;
1007 --disable-tv-v4l2) _tv_v4l2=no ;;
1008 --enable-tv-dshow) _tv_dshow=yes ;;
1009 --disable-tv-dshow) _tv_dshow=no ;;
1010 --enable-tv-teletext) _tv_teletext=yes ;;
1011 --disable-tv-teletext) _tv_teletext=no ;;
1012 --enable-radio) _radio=yes ;;
1013 --enable-radio-capture) _radio_capture=yes ;;
1014 --disable-radio-capture) _radio_capture=no ;;
1015 --disable-radio) _radio=no ;;
1016 --enable-radio-v4l) _radio_v4l=yes ;;
1017 --disable-radio-v4l) _radio_v4l=no ;;
1018 --enable-radio-v4l2) _radio_v4l2=yes ;;
1019 --disable-radio-v4l2) _radio_v4l2=no ;;
1020 --enable-radio-bsdbt848) _radio_bsdbt848=yes ;;
1021 --disable-radio-bsdbt848) _radio_bsdbt848=no ;;
1022 --enable-pvr) _pvr=yes ;;
1023 --disable-pvr) _pvr=no ;;
1024 --enable-fastmemcpy) _fastmemcpy=yes ;;
1025 --disable-fastmemcpy) _fastmemcpy=no ;;
1026 --enable-network) _network=yes ;;
1027 --disable-network) _network=no ;;
1028 --enable-winsock2) _winsock2=yes ;;
1029 --disable-winsock2) _winsock2=no ;;
1030 --enable-smb) _smbsupport=yes ;;
1031 --disable-smb) _smbsupport=no ;;
1032 --enable-vidix) _vidix=yes ;;
1033 --disable-vidix) _vidix=no ;;
1034 --with-vidix-drivers=*)
1035 _vidix_drivers=`echo $ac_option | cut -d '=' -f 2`
1037 --disable-vidix-pcidb) _vidix_pcidb=no ;;
1038 --enable-dhahelper) _dhahelper=yes ;;
1039 --disable-dhahelper) _dhahelper=no ;;
1040 --enable-svgalib_helper) _svgalib_helper=yes ;;
1041 --disable-svgalib_helper) _svgalib_helper=no ;;
1042 --enable-joystick) _joystick=yes ;;
1043 --disable-joystick) _joystick=no ;;
1044 --enable-xvid) _xvid=yes ;;
1045 --disable-xvid) _xvid=no ;;
1046 --enable-xvid-lavc) _xvid_lavc=yes ;;
1047 --disable-xvid-lavc) _xvid_lavc=no ;;
1048 --enable-x264) _x264=yes ;;
1049 --disable-x264) _x264=no ;;
1050 --enable-x264-lavc) _x264_lavc=yes ;;
1051 --disable-x264-lavc) _x264_lavc=no ;;
1052 --enable-libdirac-lavc) _libdirac_lavc=yes ;;
1053 --disable-libdirac-lavc) _libdirac_lavc=no ;;
1054 --enable-libschroedinger-lavc) _libschroedinger_lavc=yes ;;
1055 --disable-libschroedinger-lavc) _libschroedinger_lavc=no ;;
1056 --enable-libnut) _libnut=yes ;;
1057 --disable-libnut) _libnut=no ;;
1058 --enable-libavutil_a) _libavutil_a=yes ;;
1059 --disable-libavutil_a) _libavutil_a=no ;;
1060 --enable-libavutil_so) _libavutil_so=yes ;;
1061 --disable-libavutil_so) _libavutil_so=no ;;
1062 --enable-libavcodec_a) _libavcodec_a=yes ;;
1063 --disable-libavcodec_a) _libavcodec_a=no ;;
1064 --enable-libavcodec_so) _libavcodec_so=yes ;;
1065 --disable-libavcodec_so) _libavcodec_so=no ;;
1066 --enable-libamr_nb) _libamr_nb=yes ;;
1067 --disable-libamr_nb) _libamr_nb=no ;;
1068 --enable-libamr_wb) _libamr_wb=yes ;;
1069 --disable-libamr_wb) _libamr_wb=no ;;
1070 --enable-decoder=*) _libavdecoders="$_libavdecoders `echo $ac_option | cut -d '=' -f 2`" ;;
1071 --disable-decoder=*) _libavdecoders=`echo $_libavdecoders | sed "s/\`echo $ac_option | cut -d '=' -f 2\`//g"` ;;
1072 --enable-encoder=*) _libavencoders="$_libavencoders `echo $ac_option | cut -d '=' -f 2`" ;;
1073 --disable-encoder=*) _libavencoders=`echo $_libavencoders | sed "s/\`echo $ac_option | cut -d '=' -f 2\`//g"` ;;
1074 --enable-parser=*) _libavparsers="$_libavparsers `echo $ac_option | cut -d '=' -f 2`" ;;
1075 --disable-parser=*) _libavparsers=`echo $_libavparsers | sed "s/\`echo $ac_option | cut -d '=' -f 2\`//g"` ;;
1076 --enable-demuxer=*) _libavdemuxers="$_libavdemuxers `echo $ac_option | cut -d '=' -f 2`" ;;
1077 --disable-demuxer=*) _libavdemuxers=`echo $_libavdemuxers | sed "s/\`echo $ac_option | cut -d '=' -f 2\`//g"` ;;
1078 --enable-muxer=*) _libavmuxers="$_libavmuxers `echo $ac_option | cut -d '=' -f 2`" ;;
1079 --disable-muxer=*) _libavmuxers=`echo $_libavmuxers | sed "s/\`echo $ac_option | cut -d '=' -f 2\`//g"` ;;
1080 --enable-libavformat_a) _libavformat_a=yes ;;
1081 --disable-libavformat_a) _libavformat_a=no ;;
1082 --enable-libavformat_so) _libavformat_so=yes ;;
1083 --disable-libavformat_so) _libavformat_so=no ;;
1084 --enable-libpostproc_a) _libpostproc_a=yes ;;
1085 --disable-libpostproc_a) _libpostproc_a=no ;;
1086 --enable-libpostproc_so) _libpostproc_so=yes ;;
1087 --disable-libpostproc_so) _libpostproc_so=no ;;
1088 --enable-libavcodec_mpegaudio_hp) _libavcodec_mpegaudio_hp=yes ;;
1089 --disable-libavcodec_mpegaudio_hp) _libavcodec_mpegaudio_hp=no ;;
1091 --enable-lirc) _lirc=yes ;;
1092 --disable-lirc) _lirc=no ;;
1093 --enable-lircc) _lircc=yes ;;
1094 --disable-lircc) _lircc=no ;;
1095 --enable-apple-remote) _apple_remote=yes ;;
1096 --disable-apple-remote) _apple_remote=no ;;
1097 --enable-apple-ir) _apple_ir=yes ;;
1098 --disable-apple-ir) _apple_ir=no ;;
1099 --enable-gui) _gui=yes ;;
1100 --disable-gui) _gui=no ;;
1101 --enable-gtk1) _gtk1=yes ;;
1102 --disable-gtk1) _gtk1=no ;;
1103 --enable-termcap) _termcap=yes ;;
1104 --disable-termcap) _termcap=no ;;
1105 --enable-termios) _termios=yes ;;
1106 --disable-termios) _termios=no ;;
1107 --enable-3dfx) _3dfx=yes ;;
1108 --disable-3dfx) _3dfx=no ;;
1109 --enable-s3fb) _s3fb=yes ;;
1110 --disable-s3fb) _s3fb=no ;;
1111 --enable-tdfxfb) _tdfxfb=yes ;;
1112 --disable-tdfxfb) _tdfxfb=no ;;
1113 --disable-tdfxvid) _tdfxvid=no ;;
1114 --enable-tdfxvid) _tdfxvid=yes ;;
1115 --disable-xvr100) _xvr100=no ;;
1116 --enable-xvr100) _xvr100=yes ;;
1117 --disable-tga) _tga=no ;;
1118 --enable-tga) _tga=yes ;;
1119 --enable-directfb) _directfb=yes ;;
1120 --disable-directfb) _directfb=no ;;
1121 --enable-zr) _zr=yes ;;
1122 --disable-zr) _zr=no ;;
1123 --enable-bl) _bl=yes ;;
1124 --disable-bl) _bl=no ;;
1125 --enable-mtrr) _mtrr=yes ;;
1126 --disable-mtrr) _mtrr=no ;;
1127 --enable-largefiles) _largefiles=yes ;;
1128 --disable-largefiles) _largefiles=no ;;
1129 --enable-shm) _shm=yes ;;
1130 --disable-shm) _shm=no ;;
1131 --enable-select) _select=yes ;;
1132 --disable-select) _select=no ;;
1133 --enable-linux-devfs) _linux_devfs=yes ;;
1134 --disable-linux-devfs) _linux_devfs=no ;;
1135 --enable-cdparanoia) _cdparanoia=yes ;;
1136 --disable-cdparanoia) _cdparanoia=no ;;
1137 --enable-cddb) _cddb=yes ;;
1138 --disable-cddb) _cddb=no ;;
1139 --enable-big-endian) _big_endian=yes ;;
1140 --disable-big-endian) _big_endian=no ;;
1141 --enable-bitmap-font) _bitmap_font=yes ;;
1142 --disable-bitmap-font) _bitmap_font=no ;;
1143 --enable-freetype) _freetype=yes ;;
1144 --disable-freetype) _freetype=no ;;
1145 --enable-fontconfig) _fontconfig=yes ;;
1146 --disable-fontconfig) _fontconfig=no ;;
1147 --enable-unrarexec) _unrar_exec=yes ;;
1148 --disable-unrarexec) _unrar_exec=no ;;
1149 --enable-ftp) _ftp=yes ;;
1150 --disable-ftp) _ftp=no ;;
1151 --enable-vstream) _vstream=yes ;;
1152 --disable-vstream) _vstream=no ;;
1153 --enable-pthreads) _pthreads=yes ;;
1154 --disable-pthreads) _pthreads=no ;;
1155 --enable-w32threads) _w32threads=yes ;;
1156 --disable-w32threads) _w32threads=no ;;
1157 --enable-ass) _ass=yes ;;
1158 --disable-ass) _ass=no ;;
1159 --enable-rpath) _rpath=yes ;;
1160 --disable-rpath) _rpath=no ;;
1162 --enable-fribidi) _fribidi=yes ;;
1163 --disable-fribidi) _fribidi=no ;;
1165 --enable-enca) _enca=yes ;;
1166 --disable-enca) _enca=no ;;
1168 --enable-inet6) _inet6=yes ;;
1169 --disable-inet6) _inet6=no ;;
1171 --enable-gethostbyname2) _gethostbyname2=yes ;;
1172 --disable-gethostbyname2) _gethostbyname2=no ;;
1174 --enable-dga1) _dga1=yes ;;
1175 --disable-dga1) _dga1=no ;;
1176 --enable-dga2) _dga2=yes ;;
1177 --disable-dga2) _dga2=no ;;
1179 --enable-menu) _menu=yes ;;
1180 --disable-menu) _menu=no ;;
1182 --enable-qtx) _qtx=yes ;;
1183 --disable-qtx) _qtx=no ;;
1185 --enable-macosx) _macosx=yes ;;
1186 --disable-macosx) _macosx=no ;;
1187 --enable-macosx-finder-support) _macosx_finder_support=yes ;;
1188 --disable-macosx-finder-support) _macosx_finder_support=no ;;
1189 --enable-macosx-bundle) _macosx_bundle=yes;;
1190 --disable-macosx-bundle) _macosx_bundle=no;;
1192 --enable-maemo) _maemo=yes ;;
1193 --disable-maemo) _maemo=no ;;
1195 --enable-sortsub) _sortsub=yes ;;
1196 --disable-sortsub) _sortsub=no ;;
1198 --enable-crash-debug) _crash_debug=yes ;;
1199 --disable-crash-debug) _crash_debug=no ;;
1200 --enable-sighandler) _sighandler=yes ;;
1201 --disable-sighandler) _sighandler=no ;;
1202 --enable-win32dll) _win32dll=yes ;;
1203 --disable-win32dll) _win32dll=no ;;
1205 --enable-sse) _sse=yes ;;
1206 --disable-sse) _sse=no ;;
1207 --enable-sse2) _sse2=yes ;;
1208 --disable-sse2) _sse2=no ;;
1209 --enable-ssse3) _ssse3=yes ;;
1210 --disable-ssse3) _ssse3=no ;;
1211 --enable-mmxext) _mmxext=yes ;;
1212 --disable-mmxext) _mmxext=no ;;
1213 --enable-3dnow) _3dnow=yes ;;
1214 --disable-3dnow) _3dnow=no _3dnowext=no ;;
1215 --enable-3dnowext) _3dnow=yes _3dnowext=yes ;;
1216 --disable-3dnowext) _3dnowext=no ;;
1217 --enable-cmov) _cmov=yes ;;
1218 --disable-cmov) _cmov=no ;;
1219 --enable-fast-cmov) _fast_cmov=yes ;;
1220 --disable-fast-cmov) _fast_cmov=no ;;
1221 --enable-altivec) _altivec=yes ;;
1222 --disable-altivec) _altivec=no ;;
1223 --enable-armv5te) _armv5te=yes ;;
1224 --disable-armv5te) _armv5te=no ;;
1225 --enable-armv6) _armv6=yes ;;
1226 --disable-armv6) _armv6=no ;;
1227 --enable-iwmmxt) _iwmmxt=yes ;;
1228 --disable-iwmmxt) _iwmmxt=no ;;
1229 --enable-mmx) _mmx=yes ;;
1230 --disable-mmx) # 3Dnow! and MMX2 require MMX
1231 _3dnow=no _3dnowext=no _mmx=no _mmxext=no ;;
1234 echo "Unknown parameter: $ac_option"
1235 exit 1
1238 esac
1239 done
1241 # Atmos: moved this here, to be correct, if --prefix is specified
1242 test -z "$_bindir" && _bindir="$_prefix/bin"
1243 test -z "$_datadir" && _datadir="$_prefix/share/mplayer"
1244 test -z "$_mandir" && _mandir="$_prefix/share/man"
1245 test -z "$_confdir" && _confdir="$_prefix/etc/mplayer"
1246 test -z "$_libdir" && _libdir="$_prefix/lib"
1248 # Determine our OS name and CPU architecture
1249 if test -z "$_target" ; then
1250 # OS name
1251 system_name=`uname -s 2>&1`
1252 case "$system_name" in
1253 Linux|FreeBSD|NetBSD|OpenBSD|DragonFly|BSD/OS|Darwin|SunOS|QNX|GNU|BeOS|MorphOS|AIX|AmigaOS)
1255 IRIX*)
1256 system_name=IRIX
1258 GNU/kFreeBSD)
1259 system_name=FreeBSD
1261 HP-UX*)
1262 system_name=HP-UX
1264 [cC][yY][gG][wW][iI][nN]*)
1265 system_name=CYGWIN
1267 MINGW32*)
1268 system_name=MINGW32
1270 OS/2*)
1271 system_name=OS/2
1274 system_name="$system_name-UNKNOWN"
1276 esac
1279 # host's CPU/instruction set
1280 host_arch=`uname -p 2>&1`
1281 case "$host_arch" in
1282 i386|sparc|ppc|alpha|arm|sh3|mips|vax)
1284 powerpc) # Darwin returns 'powerpc'
1285 host_arch=ppc
1287 *) # uname -p on Linux returns 'unknown' for the processor type,
1288 # OpenBSD returns 'Intel Pentium/MMX ("Genuine Intel" 586-class)'
1290 # Maybe uname -m (machine hardware name) returns something we
1291 # recognize.
1293 # x86/x86pc is used by QNX
1294 case "`uname -m 2>&1`" in
1295 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 ;;
1296 ia64) host_arch=ia64 ;;
1297 x86_64|amd64)
1298 if [ -n "`$_cc -dumpmachine | sed -n '/^x86_64-/p;/^amd64-/p'`" -a \
1299 -z "`echo $CFLAGS | grep -- -m32`" ]; then
1300 host_arch=x86_64
1301 else
1302 host_arch=i386
1305 macppc|ppc|ppc64) host_arch=ppc ;;
1306 alpha) host_arch=alpha ;;
1307 sparc) host_arch=sparc ;;
1308 sparc64) host_arch=sparc64 ;;
1309 parisc*|hppa*|9000*) host_arch=hppa ;;
1310 arm*|zaurus|cats) host_arch=arm ;;
1311 sh3) host_arch=sh3 ;;
1312 s390) host_arch=s390 ;;
1313 s390x) host_arch=s390x ;;
1314 mips*) host_arch=mips ;;
1315 vax) host_arch=vax ;;
1316 xtensa*) host_arch=xtensa ;;
1317 *) host_arch=UNKNOWN ;;
1318 esac
1320 esac
1321 else # if test -z "$_target"
1322 system_name=`echo $_target | cut -d '-' -f 2`
1323 case "`echo $system_name | tr A-Z a-z`" in
1324 linux) system_name=Linux ;;
1325 freebsd) system_name=FreeBSD ;;
1326 gnu/kfreebsd) system_name=FreeBSD ;;
1327 netbsd) system_name=NetBSD ;;
1328 bsd/os) system_name=BSD/OS ;;
1329 openbsd) system_name=OpenBSD ;;
1330 dragonfly) system_name=DragonFly ;;
1331 sunos) system_name=SunOS ;;
1332 qnx) system_name=QNX ;;
1333 morphos) system_name=MorphOS ;;
1334 amigaos) system_name=AmigaOS ;;
1335 mingw32msvc) system_name=MINGW32 ;;
1336 esac
1337 # We need to convert underscores so that values like k6-2 and pentium-mmx can be passed
1338 host_arch=`echo $_target | cut -d '-' -f 1`
1339 if test `echo $host_arch` != "x86_64" ; then
1340 host_arch=`echo $host_arch | tr '_' '-'`
1344 echo "Detected operating system: $system_name"
1345 echo "Detected host architecture: $host_arch"
1347 if test "$_runtime_cpudetection" = yes && ! x86 && ! ppc; then
1348 die "Runtime CPU detection only works for x86, x86-64 and PPC!"
1352 _timer=timer-linux.c
1353 _getch=getch2.c
1354 if freebsd ; then
1355 _ld_extra="$_ld_extra -L/usr/local/lib"
1356 _inc_extra="$_inc_extra -I/usr/local/include"
1359 if netbsd || dragonfly ; then
1360 _ld_extra="$_ld_extra -L/usr/pkg/lib"
1361 _inc_extra="$_inc_extra -I/usr/pkg/include"
1364 if darwin; then
1365 _ld_extra="$_ld_extra -L/usr/local/lib"
1366 _inc_extra="$_inc_extra -I/usr/local/include"
1367 _timer=timer-darwin.c
1370 if aix ; then
1371 _ld_extra="$_ld_extra -lC"
1374 if irix ; then
1375 _ranlib='ar -r'
1376 elif linux ; then
1377 _ranlib='true'
1380 if win32 ; then
1381 _exesuf=".exe"
1382 # -lwinmm is always needed for osdep/timer-win2.c
1383 _ld_extra="$_ld_extra -lwinmm"
1384 _pe_executable=yes
1385 _timer=timer-win2.c
1388 if mingw32 ; then
1389 _getch=getch2-win.c
1390 _need_shmem=no
1393 if cygwin ; then
1394 _def_confwin32='#define WIN32'
1397 if amigaos ; then
1398 _select=no
1399 _sighandler=no
1400 _stream_cache=no
1401 _def_stream_cache="#undef CONFIG_STREAM_CACHE"
1404 if qnx ; then
1405 _ld_extra="$_ld_extra -lph"
1408 if os2 ; then
1409 _exesuf=".exe"
1410 _getch=getch2-os2.c
1411 _need_shmem=no
1414 for I in "$TMPDIR" "$TEMPDIR" "/tmp" ; do
1415 test "$I" && break
1416 done
1419 TMPLOG="configure.log"
1420 TMPC="$I/mplayer-conf-$RANDOM-$$.c"
1421 TMPCPP="$I/mplayer-conf-$RANDOM-$$.cpp"
1422 TMPEXE="$I/mplayer-conf-$RANDOM-$$$_exesuf"
1423 TMPH="$I/mplayer-conf-$RANDOM-$$.h"
1424 TMPS="$I/mplayer-conf-$RANDOM-$$.S"
1426 rm -f "$TMPLOG"
1427 echo configuration: $_configuration > "$TMPLOG"
1428 echo >> "$TMPLOG"
1431 # Check how to call 'head' and 'tail'. Newer versions spit out warnings
1432 # if used as 'head -1' instead of 'head -n 1', but older versions don't
1433 # know about '-n'.
1434 if test "`(echo line1 ; echo line2) | head -1 2>/dev/null`" = "line1" ; then
1435 _head() { head -$1 2>/dev/null ; }
1436 else
1437 _head() { head -n $1 2>/dev/null ; }
1439 if test "`(echo line1 ; echo line2) | tail -1 2>/dev/null`" = "line2" ; then
1440 _tail() { tail -$1 2>/dev/null ; }
1441 else
1442 _tail() { tail -n $1 2>/dev/null ; }
1445 # Checking CC version...
1446 # Intel C++ Compilers (no autoselect, use CC=/some/binary ./configure)
1447 if test "`basename $_cc`" = "icc" || test "`basename $_cc`" = "ecc"; then
1448 echocheck "$_cc version"
1449 cc_vendor=intel
1450 cc_name=`$_cc -V 2>&1 | _head 1 | cut -d ',' -f 1`
1451 cc_version=`$_cc -V 2>&1 | _head 1 | cut -d ',' -f 2 | cut -d ' ' -f 3`
1452 _cc_major=`echo $cc_version | cut -d '.' -f 1`
1453 _cc_minor=`echo $cc_version | cut -d '.' -f 2`
1454 # TODO verify older icc/ecc compatibility
1455 case $cc_version in
1457 cc_version="v. ?.??, bad"
1458 cc_fail=yes
1460 10.1)
1461 cc_version="$cc_version, ok"
1464 cc_version="$cc_version, bad"
1465 cc_fail=yes
1467 esac
1468 echores "$cc_version"
1469 else
1470 for _cc in "$_cc" cc gcc ; do
1471 cc_name_tmp=`$_cc -v 2>&1 | _tail 1 | cut -d ' ' -f 1`
1472 if test "$cc_name_tmp" = "gcc"; then
1473 cc_name=$cc_name_tmp
1474 echocheck "$_cc version"
1475 cc_vendor=gnu
1476 cc_version=`$_cc -dumpversion 2>&1`
1477 case $cc_version in
1478 2.96*)
1479 cc_fail=yes
1482 _cc_major=`echo $cc_version | cut -d '.' -f 1`
1483 _cc_minor=`echo $cc_version | cut -d '.' -f 2`
1484 _cc_mini=`echo $cc_version | cut -d '.' -f 3`
1486 esac
1487 echores "$cc_version"
1488 break
1490 done
1491 fi # icc
1492 test "$cc_fail" = yes && die "unsupported compiler version"
1494 echocheck "host cc"
1495 test "$_host_cc" || _host_cc=$_cc
1496 echores $_host_cc
1498 echocheck "cross compilation"
1499 if test $_cross_compile = auto ; then
1500 cat > $TMPC << EOF
1501 int main(void) { return 0; }
1503 _cross_compile=yes
1504 cc_check && "$TMPEXE" && _cross_compile=no
1506 echores $_cross_compile
1508 if test $_cross_compile = yes; then
1509 tmp_run() {
1510 return 0
1514 # ---
1516 # now that we know what compiler should be used for compilation, try to find
1517 # out which assembler is used by the $_cc compiler
1518 if test "$_as" = auto ; then
1519 _as=`$_cc -print-prog-name=as`
1520 test -z "$_as" && _as=as
1523 # XXX: this should be ok..
1524 _cpuinfo="echo"
1526 if test "$_runtime_cpudetection" = no ; then
1528 # Cygwin has /proc/cpuinfo, but only supports Intel CPUs
1529 # FIXME: Remove the cygwin check once AMD CPUs are supported
1530 if test -r /proc/cpuinfo && ! cygwin; then
1531 # Linux with /proc mounted, extract CPU information from it
1532 _cpuinfo="cat /proc/cpuinfo"
1533 elif test -r /compat/linux/proc/cpuinfo && ! x86_32 ; then
1534 # FreeBSD with Linux emulation /proc mounted,
1535 # extract CPU information from it
1536 _cpuinfo="cat /compat/linux/proc/cpuinfo"
1537 elif darwin && ! x86_32 ; then
1538 # use hostinfo on Darwin
1539 _cpuinfo="hostinfo"
1540 elif aix; then
1541 # use 'lsattr' on AIX
1542 _cpuinfo="lsattr -E -l proc0 -a type"
1543 elif x86; then
1544 # all other OSes try to extract CPU information from a small helper
1545 # program cpuinfo instead
1546 $_cc -o cpuinfo$_exesuf cpuinfo.c
1547 _cpuinfo="./cpuinfo$_exesuf"
1550 if x86 ; then
1551 # gather more CPU information
1552 pname=`$_cpuinfo | grep 'model name' | cut -d ':' -f 2 | _head 1`
1553 pvendor=`$_cpuinfo | grep 'vendor_id' | cut -d ':' -f 2 | cut -d ' ' -f 2 | _head 1`
1554 pfamily=`$_cpuinfo | grep 'cpu family' | cut -d ':' -f 2 | cut -d ' ' -f 2 | _head 1`
1555 pmodel=`$_cpuinfo | grep -v 'model name' | grep 'model' | cut -d ':' -f 2 | cut -d ' ' -f 2 | _head 1`
1556 pstepping=`$_cpuinfo | grep 'stepping' | cut -d ':' -f 2 | cut -d ' ' -f 2 | _head 1`
1558 exts=`$_cpuinfo | egrep 'features|flags' | cut -d ':' -f 2 | _head 1`
1560 pparam=`echo $exts | sed -e s/k6_mtrr/mtrr/ -e s/cyrix_arr/mtrr/ -e s/centaur_mcr/mtrr/ \
1561 -e s/xmm/sse/ -e s/kni/sse/`
1563 for ext in $pparam ; do
1564 eval test \"\$_$ext\" = auto 2>/dev/null && eval _$ext=kernel_check
1565 done
1567 # SSE implies MMX2, but not all SSE processors report the mmxext CPU flag.
1568 test $_sse = kernel_check && _mmxext=kernel_check
1570 echocheck "CPU vendor"
1571 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
1573 echocheck "CPU type"
1574 echores "$pname"
1577 fi # test "$_runtime_cpudetection" = no
1579 if x86 && test "$_runtime_cpudetection" = no ; then
1580 extcheck() {
1581 if test "$1" = kernel_check ; then
1582 echocheck "kernel support of $2"
1583 cat > $TMPC <<EOF
1584 #include <stdlib.h>
1585 #include <signal.h>
1586 void catch() { exit(1); }
1587 int main(void) {
1588 signal(SIGILL, catch);
1589 __asm__ __volatile__ ("$3":::"memory"); return 0;
1593 if cc_check && tmp_run ; then
1594 eval _$2=yes
1595 echores "yes"
1596 _optimizing="$_optimizing $2"
1597 return 0
1598 else
1599 eval _$2=no
1600 echores "failed"
1601 echo "It seems that your kernel does not correctly support $2."
1602 echo "To use $2 extensions in MPlayer, you have to upgrade/recompile your kernel!"
1603 return 1
1606 return 0
1609 extcheck $_mmx "mmx" "emms"
1610 extcheck $_mmxext "mmxext" "sfence"
1611 extcheck $_3dnow "3dnow" "femms"
1612 extcheck $_3dnowext "3dnowext" "pswapd %%mm0, %%mm0"
1613 extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse"
1614 extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _gcc3_ext="$_gcc3_ext -mno-sse2"
1615 extcheck $_ssse3 "ssse3" "pabsd %%xmm0, %%xmm0"
1616 extcheck $_cmov "cmov" "cmovb %%eax,%%ebx"
1618 echocheck "mtrr support"
1619 if test "$_mtrr" = kernel_check ; then
1620 _mtrr="yes"
1621 _optimizing="$_optimizing mtrr"
1623 echores "$_mtrr"
1625 if test "$_gcc3_ext" != ""; then
1626 # if we had to disable sse/sse2 because the active kernel does not
1627 # support this instruction set extension, we also have to tell
1628 # gcc3 to not generate sse/sse2 instructions for normal C code
1629 cat > $TMPC << EOF
1630 int main(void) { return 0; }
1632 cc_check $_march $_gcc3_ext && _march="$_march $_gcc3_ext"
1638 _arch_all='X86 X86_32 X86_64 IA64 SPARC ARM ARMV4L SH3 POWERPC PPC ALPHA SGI_MIPS PA_RISC S390 S390X VAX BFIN XTENSA GENERIC'
1639 case "$host_arch" in
1640 i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
1641 _arch='X86 X86_32'
1642 _target_arch_x86="ARCH_X86 = yes"
1643 _target_arch="ARCH_X86_32 = yes"
1644 _def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1645 iproc=486
1646 proc=i486
1649 if test "$_runtime_cpudetection" = no ; then
1650 case "$pvendor" in
1651 AuthenticAMD)
1652 case "$pfamily" in
1653 3) proc=i386 iproc=386 ;;
1654 4) proc=i486 iproc=486 ;;
1655 5) iproc=586 # LGB: models are: K5/SSA5 K5 K5 K5 ? ? K6 K6 K6-2 K6-3
1656 # K6 model 13 are the K6-2+ and K6-III+, only differing in cache size.
1657 if test "$pmodel" -eq 9 -o "$pmodel" -eq 13; then
1658 proc=k6-3
1659 elif test "$pmodel" -eq 5 -o "$pmodel" -eq 10; then
1660 proc=geode
1661 elif test "$pmodel" -ge 8; then
1662 proc=k6-2
1663 elif test "$pmodel" -ge 6; then
1664 proc=k6
1665 else
1666 proc=i586
1669 6) iproc=686
1670 # It's a bit difficult to determine the correct type of Family 6
1671 # AMD CPUs just from their signature. Instead, we check directly
1672 # whether it supports SSE.
1673 if test "$_sse" = yes; then
1674 # gcc treats athlon-xp, athlon-4 and athlon-mp similarly.
1675 proc=athlon-xp
1676 else
1677 # Again, gcc treats athlon and athlon-tbird similarly.
1678 proc=athlon
1681 15) iproc=686
1682 # k8 cpu-type only supported in gcc >= 3.4.0, but that will be
1683 # caught and remedied in the optimization tests below.
1684 proc=k8
1687 *) proc=k8 iproc=686 ;;
1688 esac
1690 GenuineIntel)
1691 case "$pfamily" in
1692 3) proc=i386 iproc=386 ;;
1693 4) proc=i486 iproc=486 ;;
1694 5) iproc=586
1695 if test "$pmodel" -eq 4 || test "$pmodel" -eq 8; then
1696 proc=pentium-mmx # 4 is desktop, 8 is mobile
1697 else
1698 proc=i586
1701 6) iproc=686
1702 if test "$pmodel" -ge 15; then
1703 proc=core2
1704 elif test "$pmodel" -eq 9 -o "$pmodel" -ge 13; then
1705 proc=pentium-m
1706 elif test "$pmodel" -ge 7; then
1707 proc=pentium3
1708 elif test "$pmodel" -ge 3; then
1709 proc=pentium2
1710 else
1711 proc=i686
1714 15) iproc=686
1715 # A nocona in 32-bit mode has no more capabilities than a prescott.
1716 if test "$pmodel" -ge 3; then
1717 proc=prescott
1718 else
1719 proc=pentium4
1721 test $_fast_cmov = "auto" && _fast_cmov=no
1723 *) proc=prescott iproc=686 ;;
1724 esac
1726 CentaurHauls)
1727 case "$pfamily" in
1728 5) iproc=586
1729 if test "$pmodel" -ge 8; then
1730 proc=winchip2
1731 elif test "$pmodel" -ge 4; then
1732 proc=winchip-c6
1733 else
1734 proc=i586
1737 6) iproc=686
1738 if test "$pmodel" -ge 9; then
1739 proc=c3-2
1740 else
1741 proc=c3
1742 iproc=586
1745 *) proc=i686 iproc=i686 ;;
1746 esac
1748 unknown)
1749 case "$pfamily" in
1750 3) proc=i386 iproc=386 ;;
1751 4) proc=i486 iproc=486 ;;
1752 *) proc=i586 iproc=586 ;;
1753 esac
1756 proc=i586 iproc=586 ;;
1757 esac
1758 fi # test "$_runtime_cpudetection" = no
1761 # check that gcc supports our CPU, if not, fall back to earlier ones
1762 # LGB: check -mcpu and -march swithing step by step with enabling
1763 # to fall back till 386.
1765 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1767 if [ "$cc_vendor" = "gnu" ] && ([ "$_cc_major" -gt 3 ] || ( [ "$_cc_major" = 3 ] && [ "$_cc_minor" -ge 4 ])) ; then
1768 cpuopt=-mtune
1769 else
1770 cpuopt=-mcpu
1773 echocheck "GCC & CPU optimization abilities"
1774 cat > $TMPC << EOF
1775 int main(void) { return 0; }
1777 if test "$_runtime_cpudetection" = no ; then
1778 cc_check -march=native && proc=native
1779 if test "$proc" = "k8"; then
1780 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1782 if test "$proc" = "athlon-xp"; then
1783 cc_check -march=$proc $cpuopt=$proc || proc=athlon
1785 if test "$proc" = "k6-3" || test "$proc" = "k6-2"; then
1786 cc_check -march=$proc $cpuopt=$proc || proc=k6
1788 if test "$proc" = "k6" || test "$proc" = "c3"; then
1789 if ! cc_check -march=$proc $cpuopt=$proc; then
1790 if cc_check -march=i586 $cpuopt=i686; then
1791 proc=i586-i686
1792 else
1793 proc=i586
1797 if test "$proc" = "prescott" ; then
1798 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
1800 if test "$proc" = "core2" ; then
1801 cc_check -march=$proc $cpuopt=$proc || proc=pentium-m
1803 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
1804 cc_check -march=$proc $cpuopt=$proc || proc=i686
1806 if test "$proc" = "i686" || test "$proc" = "pentium-mmx" || test "$proc" = "winchip-c6" || test "$proc" = "winchip2"; then
1807 cc_check -march=$proc $cpuopt=$proc || proc=i586
1809 if test "$proc" = "i586"; then
1810 cc_check -march=$proc $cpuopt=$proc || proc=i486
1812 if test "$proc" = "i486" ; then
1813 cc_check -march=$proc $cpuopt=$proc || proc=i386
1815 if test "$proc" = "i386" ; then
1816 cc_check -march=$proc $cpuopt=$proc || proc=error
1818 if test "$proc" = "error" ; then
1819 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1820 _mcpu=""
1821 _march=""
1822 _optimizing=""
1823 elif test "$proc" = "i586-i686"; then
1824 _march="-march=i586"
1825 _mcpu="$cpuopt=i686"
1826 _optimizing="$proc"
1827 else
1828 _march="-march=$proc"
1829 _mcpu="$cpuopt=$proc"
1830 _optimizing="$proc"
1832 else # if test "$_runtime_cpudetection" = no
1833 _mcpu="$cpuopt=generic"
1834 # at least i486 required, for bswap instruction
1835 _march="-march=i486"
1836 cc_check $_mcpu || _mcpu="$cpuopt=i686"
1837 cc_check $_mcpu || _mcpu=""
1838 cc_check $_march $_mcpu || _march=""
1841 ## Gabucino : --target takes effect here (hopefully...) by overwriting
1842 ## autodetected mcpu/march parameters
1843 if test "$_target" ; then
1844 # TODO: it may be a good idea to check GCC and fall back in all cases
1845 if test "$host_arch" = "i586-i686"; then
1846 _march="-march=i586"
1847 _mcpu="$cpuopt=i686"
1848 else
1849 _march="-march=$host_arch"
1850 _mcpu="$cpuopt=$host_arch"
1853 proc="$host_arch"
1855 case "$proc" in
1856 i386) iproc=386 ;;
1857 i486) iproc=486 ;;
1858 i586|k5|k6|k6-2|k6-3|pentium|pentium-mmx) iproc=586 ;;
1859 i686|athlon*|pentium*) iproc=686 ;;
1860 *) iproc=586 ;;
1861 esac
1864 if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
1865 _fast_cmov="yes"
1866 else
1867 _fast_cmov="no"
1870 echores "$proc"
1873 ia64)
1874 _arch='IA64'
1875 _target_arch='ARCH_IA64 = yes'
1876 iproc='ia64'
1877 proc=''
1878 _march=''
1879 _mcpu=''
1880 _optimizing=''
1883 x86_64|amd64)
1884 _arch='X86 X86_64'
1885 _target_arch='ARCH_X86_64 = yes'
1886 _target_arch_x86="ARCH_X86 = yes"
1887 _def_fast_unaligned='#define HAVE_FAST_UNALIGNED 1'
1888 iproc='x86_64'
1890 # gcc >= 3.4.0 doesn't support -mcpu, we have to use -mtune instead
1891 if test "$cc_vendor" = "gnu" && test "$_cc_major" -gt 3 -o "$_cc_major" -eq 3 -a "$_cc_minor" -ge 4 ; then
1892 cpuopt=-mtune
1893 else
1894 cpuopt=-mcpu
1896 if test "$_runtime_cpudetection" = no ; then
1897 case "$pvendor" in
1898 AuthenticAMD)
1899 proc=k8;;
1900 GenuineIntel)
1901 case "$pfamily" in
1902 6) proc=core2;;
1904 # 64-bit prescotts exist, but as far as GCC is concerned they
1905 # have the same capabilities as a nocona.
1906 proc=nocona
1907 test $_fast_cmov = "auto" && _fast_cmov=no
1909 esac
1912 proc=error;;
1913 esac
1914 fi # test "$_runtime_cpudetection" = no
1916 echocheck "GCC & CPU optimization abilities"
1917 cat > $TMPC << EOF
1918 int main(void) { return 0; }
1920 # This is a stripped-down version of the i386 fallback.
1921 if test "$_runtime_cpudetection" = no ; then
1922 cc_check -march=native && proc=native
1923 # --- AMD processors ---
1924 if test "$proc" = "k8"; then
1925 cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
1927 # This will fail if gcc version < 3.3, which is ok because earlier
1928 # versions don't really support 64-bit on amd64.
1929 # Is this a valid assumption? -Corey
1930 if test "$proc" = "athlon-xp"; then
1931 cc_check -march=$proc $cpuopt=$proc || proc=error
1933 # --- Intel processors ---
1934 if test "$proc" = "core2"; then
1935 cc_check -march=$proc $cpuopt=$proc || proc=nocona
1937 if test "$proc" = "nocona"; then
1938 cc_check -march=$proc $cpuopt=$proc || proc=pentium4
1940 if test "$proc" = "pentium4"; then
1941 cc_check -march=$proc $cpuopt=$proc || proc=error
1944 _march="-march=$proc"
1945 _mcpu="$cpuopt=$proc"
1946 if test "$proc" = "error" ; then
1947 echores "CPU optimization disabled. CPU not recognized or your compiler is too old."
1948 _mcpu=""
1949 _march=""
1951 else # if test "$_runtime_cpudetection" = no
1952 # x86-64 is an undocumented option, an intersection of k8 and nocona.
1953 _march="-march=x86-64"
1954 _mcpu="$cpuopt=generic"
1955 cc_check $_mcpu || _mcpu="x86-64"
1956 cc_check $_mcpu || _mcpu=""
1957 cc_check $_march $_mcpu || _march=""
1960 _optimizing=""
1962 echores "$proc"
1965 sparc)
1966 _arch='SPARC'
1967 _target_arch='ARCH_SPARC = yes'
1968 iproc='sparc'
1969 if sunos ; then
1970 echocheck "CPU type"
1971 karch=`uname -m`
1972 case "`echo $karch`" in
1973 sun4) proc=v7 ;;
1974 sun4c) proc=v7 ;;
1975 sun4d) proc=v8 ;;
1976 sun4m) proc=v8 ;;
1977 sun4u) proc=ultrasparc _vis='yes' ;;
1978 sun4v) proc=v9 ;;
1979 *) proc=v8 ;;
1980 esac
1981 echores "$proc"
1982 else
1983 proc=v8
1985 _march=''
1986 _mcpu="-mcpu=$proc"
1987 _optimizing="$proc"
1990 sparc64)
1991 _arch='SPARC'
1992 _target_arch='ARCH_SPARC = yes'
1993 _vis='yes'
1994 iproc='sparc'
1995 proc='ultrasparc'
1996 _march=''
1997 _mcpu="-mcpu=$proc"
1998 _optimizing="$proc"
2001 arm|armv4l|armv5tel)
2002 _arch='ARM ARMV4L'
2003 _target_arch='ARCH_ARMV4L = yes'
2004 iproc='arm'
2005 proc=''
2006 _march=''
2007 _mcpu=''
2008 _optimizing=''
2011 sh3)
2012 _arch='SH3'
2013 _target_arch='ARCH_SH3 = yes'
2014 iproc='sh3'
2015 proc=''
2016 _march='-m3'
2017 _mcpu='-ml'
2018 _optimizing=''
2021 ppc|powerpc)
2022 _arch='POWERPC PPC'
2023 _def_dcbzl='#undef HAVE_DCBZL'
2024 _target_arch='ARCH_POWERPC = yes'
2025 iproc='ppc'
2026 proc=''
2027 _march=''
2028 _mcpu=''
2029 _optimizing=''
2031 echocheck "CPU type"
2032 case $system_name in
2033 Linux)
2034 proc=`$_cpuinfo | grep 'cpu' | cut -d ':' -f 2 | cut -d ',' -f 1 | cut -b 2- | _head 1`
2035 if test -n "`$_cpuinfo | grep altivec`"; then
2036 test $_altivec = auto && _altivec=yes
2039 Darwin)
2040 proc=`$_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//'`
2041 if [ `sysctl -n hw.vectorunit` -eq 1 -o \
2042 "`sysctl -n hw.optional.altivec 2> /dev/null`" = "1" ]; then
2043 test $_altivec = auto && _altivec=yes
2046 NetBSD)
2047 # only gcc 3.4 works reliably with AltiVec code under NetBSD
2048 case $cc_version in
2049 2*|3.0*|3.1*|3.2*|3.3*)
2052 if [ `sysctl -n machdep.altivec` -eq 1 ]; then
2053 test $_altivec = auto && _altivec=yes
2056 esac
2058 AIX)
2059 proc=`$_cpuinfo | grep 'type' | cut -f 2 -d ' ' | sed 's/PowerPC_//'`
2061 esac
2062 if test "$_altivec" = yes; then
2063 echores "$proc altivec"
2064 else
2065 _altivec=no
2066 echores "$proc"
2069 echocheck "GCC & CPU optimization abilities"
2071 if test -n "$proc"; then
2072 case "$proc" in
2073 601) _march='-mcpu=601' _mcpu='-mtune=601' ;;
2074 603) _march='-mcpu=603' _mcpu='-mtune=603' ;;
2075 603e|603ev) _march='-mcpu=603e' _mcpu='-mtune=603e' ;;
2076 604|604e|604r|604ev) _march='-mcpu=604' _mcpu='-mtune=604' ;;
2077 740|740/750|745/755) _march='-mcpu=740' _mcpu='-mtune=740' ;;
2078 750|750CX) _march='-mcpu=750' _mcpu='-mtune=750' ;;
2079 POWER) _march='-mcpu=power' _mcpu='-mtune=power' ;;
2080 POWER2) _march='-mcpu=power2' _mcpu='-mtune=power2' ;;
2081 POWER3) _march='-mcpu=power3' _mcpu='-mtune=power3' ;;
2082 *) ;;
2083 esac
2084 # gcc 3.1(.1) and up supports 7400 and 7450
2085 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "1" || test "$_cc_major" -ge "4"; then
2086 case "$proc" in
2087 7400*|7410*) _march='-mcpu=7400' _mcpu='-mtune=7400' ;;
2088 7447*|7450*|7455*) _march='-mcpu=7450' _mcpu='-mtune=7450' ;;
2089 *) ;;
2090 esac
2092 # gcc 3.2 and up supports 970
2093 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2094 case "$proc" in
2095 970*|PPC970*) _march='-mcpu=970' _mcpu='-mtune=970'
2096 _def_dcbzl='#define HAVE_DCBZL 1' ;;
2097 *) ;;
2098 esac
2100 # gcc 3.3 and up supports POWER4
2101 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "3" || test "$_cc_major" -ge "4"; then
2102 case "$proc" in
2103 POWER4) _march='-mcpu=power4' _mcpu='-mtune=power4' ;;
2104 *) ;;
2105 esac
2107 # gcc 3.4 and up supports 440*
2108 if test "$_cc_major" -ge "3" && test "$_cc_minor" -ge "4" || test "$_cc_major" -ge "4"; then
2109 case "$proc" in
2110 440EP*) _march='-mcpu=440fp' _mcpu='-mtune=440fp' ;;
2111 440G* ) _march='-mcpu=440' _mcpu='-mtune=440' ;;
2112 *) ;;
2113 esac
2115 # gcc 4.0 and up supports POWER5
2116 if test "$_cc_major" -ge "4"; then
2117 case "$proc" in
2118 POWER5*) _march='-mcpu=power5' _mcpu='-mtune=power5' ;;
2119 *) ;;
2120 esac
2124 if test -n "$_mcpu"; then
2125 _optimizing=`echo $_mcpu | cut -c 8-`
2126 echores "$_optimizing"
2127 else
2128 echores "none"
2133 alpha)
2134 _arch='ALPHA'
2135 _target_arch='ARCH_ALPHA = yes'
2136 iproc='alpha'
2137 _march=''
2139 echocheck "CPU type"
2140 cat > $TMPC << EOF
2141 int main(void) {
2142 unsigned long ver, mask;
2143 asm ("implver %0" : "=r" (ver));
2144 asm ("amask %1, %0" : "=r" (mask) : "r" (-1));
2145 printf("%ld-%x\n", ver, ~mask);
2146 return 0;
2149 $_cc -o "$TMPEXE" "$TMPC"
2150 case `"$TMPEXE"` in
2152 0-0) proc="ev4"; _mvi="0";;
2153 1-0) proc="ev5"; _mvi="0";;
2154 1-1) proc="ev56"; _mvi="0";;
2155 1-101) proc="pca56"; _mvi="1";;
2156 2-303) proc="ev6"; _mvi="1";;
2157 2-307) proc="ev67"; _mvi="1";;
2158 2-1307) proc="ev68"; _mvi="1";;
2159 esac
2160 echores "$proc"
2162 echocheck "GCC & CPU optimization abilities"
2163 if test "$proc" = "ev68" ; then
2164 cc_check -mcpu=$proc || proc=ev67
2166 if test "$proc" = "ev67" ; then
2167 cc_check -mcpu=$proc || proc=ev6
2169 _mcpu="-mcpu=$proc"
2170 echores "$proc"
2172 _optimizing="$proc"
2175 mips)
2176 _arch='SGI_MIPS'
2177 _target_arch='ARCH_SGI_MIPS = yes'
2178 iproc='sgi-mips'
2179 proc=''
2180 _march=''
2181 _mcpu=''
2182 _optimizing=''
2184 if irix ; then
2185 echocheck "CPU type"
2186 proc=`hinv -c processor | grep CPU | cut -d " " -f3`
2187 case "`echo $proc`" in
2188 R3000) _march='-mips1' _mcpu='-mtune=r2000' ;;
2189 R4000) _march='-mips3' _mcpu='-mtune=r4000' ;;
2190 R4400) _march='-mips3' _mcpu='-mtune=r4400' ;;
2191 R4600) _march='-mips3' _mcpu='-mtune=r4600' ;;
2192 R5000) _march='-mips4' _mcpu='-mtune=r5000' ;;
2193 R8000|R10000|R12000|R14000|R16000) _march='-mips4' _mcpu='-mtune=r8000' ;;
2194 esac
2195 # gcc < 3.x does not support -mtune.
2196 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 ; then
2197 _mcpu=''
2199 echores "$proc"
2204 hppa)
2205 _arch='PA_RISC'
2206 _target_arch='ARCH_PA_RISC = yes'
2207 iproc='PA-RISC'
2208 proc=''
2209 _march=''
2210 _mcpu=''
2211 _optimizing=''
2214 s390)
2215 _arch='S390'
2216 _target_arch='ARCH_S390 = yes'
2217 iproc='390'
2218 proc=''
2219 _march=''
2220 _mcpu=''
2221 _optimizing=''
2224 s390x)
2225 _arch='S390X'
2226 _target_arch='ARCH_S390X = yes'
2227 iproc='390x'
2228 proc=''
2229 _march=''
2230 _mcpu=''
2231 _optimizing=''
2234 vax)
2235 _arch='VAX'
2236 _target_arch='ARCH_VAX = yes'
2237 iproc='vax'
2238 proc=''
2239 _march=''
2240 _mcpu=''
2241 _optimizing=''
2244 xtensa)
2245 _arch='XTENSA'
2246 _target_arch='ARCH_XTENSA = yes'
2247 iproc='xtensa'
2248 proc=''
2249 _march=''
2250 _mcpu=''
2251 _optimizing=''
2254 generic)
2255 _arch='GENERIC'
2256 _target_arch='ARCH_GENERIC = yes'
2257 iproc=''
2258 proc=''
2259 _march=''
2260 _mcpu=''
2261 _optimizing=''
2265 echo "The architecture of your CPU ($host_arch) is not supported by this configure script"
2266 echo "It seems nobody has ported MPlayer to your OS or CPU type yet."
2267 die "unsupported architecture $host_arch"
2269 esac # case "$host_arch" in
2271 if test "$_runtime_cpudetection" = yes ; then
2272 if x86 ; then
2273 test "$_cmov" != no && _cmov=yes
2274 x86_32 && _cmov=no
2275 test "$_mmx" != no && _mmx=yes
2276 test "$_3dnow" != no && _3dnow=yes
2277 test "$_3dnowext" != no && _3dnowext=yes
2278 test "$_mmxext" != no && _mmxext=yes
2279 test "$_sse" != no && _sse=yes
2280 test "$_sse2" != no && _sse2=yes
2281 test "$_ssse3" != no && _ssse3=yes
2282 test "$_mtrr" != no && _mtrr=yes
2284 if ppc; then
2285 _altivec=yes
2290 echocheck "extern symbol prefix"
2291 cat > $TMPC << EOF
2292 int ff_extern;
2294 cc_check -c || die "Symbol mangling check failed."
2295 sym=$(nm -P -g $TMPEXE)
2296 extern_prefix=${sym%%ff_extern*}
2297 _def_extern_prefix="#define EXTERN_PREFIX \"$extern_prefix\""
2298 echores $extern_prefix
2301 echocheck "assembler support of -pipe option"
2302 cat > $TMPC << EOF
2303 int main(void) { return 0; }
2305 cc_check -pipe && _pipe="-pipe" && echores "yes" || echores "no"
2308 echocheck "compiler support of named assembler arguments"
2309 _named_asm_args=yes
2310 _def_named_asm_args="#define NAMED_ASM_ARGS 1"
2311 if test "$cc_vendor" = "gnu" && test "$_cc_major" -lt 3 \
2312 -o "$_cc_major" -eq 3 -a "$_cc_minor" = 0 ; then
2313 _named_asm_args=no
2314 _def_named_asm_args="#undef NAMED_ASM_ARGS"
2316 echores $_named_asm_args
2319 if darwin && test "$cc_vendor" = "gnu" ; then
2320 echocheck "GCC support of -mstackrealign"
2321 # GCC 4.2 and some earlier Apple versions support this flag on x86. Since
2322 # Mac OS X/Intel has an ABI different from Windows this is needed to avoid
2323 # crashes when loading Win32 DLLs. Unfortunately some gcc versions create
2324 # wrong code with this flag, but this can be worked around by adding
2325 # -fno-unit-at-a-time as described in the blog post at
2326 # http://www.dribin.org/dave/blog/archives/2006/12/05/missing_third_param/
2327 cat > $TMPC << EOF
2328 __attribute__((noinline)) static int foo3(int i1, int i2, int i3) { return i3; }
2329 int main(void) { return foo3(1,2,3) == 3 ? 0 : 1; }
2331 cc_check -O4 -mstackrealign && tmp_run && _stackrealign=-mstackrealign
2332 test -z "$_stackrealign" && cc_check -O4 -mstackrealign -fno-unit-at-a-time \
2333 && tmp_run && _stackrealign="-mstackrealign -fno-unit-at-a-time"
2334 test -n "$_stackrealign" && echores "yes" || echores "no"
2335 fi # if darwin && test "$cc_vendor" = "gnu" ; then
2338 # Checking for CFLAGS
2339 _install_strip="-s"
2340 if test "$_profile" != "" || test "$_debug" != "" ; then
2341 CFLAGS="-W -Wall -O2 $_march $_mcpu $_pipe $_debug $_profile"
2342 _install_strip=
2343 elif test -z "$CFLAGS" ; then
2344 if test "$cc_vendor" = "intel" ; then
2345 CFLAGS="-O2 $_march $_mcpu $_pipe -fomit-frame-pointer -wd167 -wd556 -wd144"
2346 elif test "$cc_vendor" != "gnu" ; then
2347 CFLAGS="-O2 $_march $_mcpu $_pipe"
2348 else
2349 CFLAGS="-Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4 $_march $_mcpu $_pipe -ffast-math -fomit-frame-pointer"
2351 else
2352 _warn_CFLAGS=yes
2354 if test -n "$LDFLAGS" ; then
2355 _ld_extra="$_ld_extra $LDFLAGS"
2356 _warn_CFLAGS=yes
2357 elif test "$cc_vendor" = "intel" ; then
2358 _ld_extra="$_ld_extra -i-static"
2360 if test -n "$CPPFLAGS" ; then
2361 _inc_extra="$_inc_extra $CPPFLAGS"
2362 _warn_CFLAGS=yes
2367 if x86_32 ; then
2368 # Checking assembler (_as) compatibility...
2369 # Added workaround for older as that reads from stdin by default - atmos
2370 as_version=`echo '' | $_as -version 2>&1 | sed -n 's/^.*assembler \(version \)*\([0-9.]*\).*$/\2/p'`
2371 echocheck "assembler ($_as $as_version)"
2373 _pref_as_version='2.9.1'
2374 echo 'nop' > $TMPS
2375 if test "$_mmx" = yes ; then
2376 echo 'emms' >> $TMPS
2378 if test "$_3dnow" = yes ; then
2379 _pref_as_version='2.10.1'
2380 echo 'femms' >> $TMPS
2382 if test "$_3dnowext" = yes ; then
2383 _pref_as_version='2.10.1'
2384 echo 'pswapd %mm0, %mm0' >> $TMPS
2386 if test "$_mmxext" = yes ; then
2387 _pref_as_version='2.10.1'
2388 echo 'movntq %mm0, (%eax)' >> $TMPS
2390 if test "$_sse" = yes ; then
2391 _pref_as_version='2.10.1'
2392 echo 'xorps %xmm0, %xmm0' >> $TMPS
2394 #if test "$_sse2" = yes ; then
2395 # _pref_as_version='2.11'
2396 # echo 'xorpd %xmm0, %xmm0' >> $TMPS
2398 if test "$_cmov" = yes ; then
2399 _pref_as_version='2.10.1'
2400 echo 'cmovb %eax, %ebx' >> $TMPS
2402 if test "$_ssse3" = yes ; then
2403 _pref_as_version='2.16.92'
2404 echo 'pabsd %xmm0, %xmm1' >> $TMPS
2406 $_as $TMPS -o $TMPEXE > /dev/null 2>&1 || as_verc_fail=yes
2408 if test "$as_verc_fail" != yes ; then
2409 echores "ok"
2410 else
2411 _res_comment="Upgrade binutils to ${_pref_as_version} or use --disable-ssse3 etc."
2412 echores "failed"
2413 die "obsolete binutils version"
2416 fi #if x86_32
2418 echocheck ".align is a power of two"
2419 if test "$_asmalign_pot" = auto ; then
2420 _asmalign_pot=no
2421 cat > $TMPC << EOF
2422 int main(void) { asm (".align 3"); return 0; }
2424 cc_check && _asmalign_pot=yes
2426 if test "$_asmalign_pot" = "yes" ; then
2427 _def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t"'
2428 else
2429 _def_asmalign_pot='#define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t"'
2431 echores $_asmalign_pot
2434 #FIXME: This should happen before the check for CFLAGS..
2435 if ppc && ( test "$_altivec" = yes || test "$_runtime_cpudetection" = yes ) ; then
2437 # check if AltiVec is supported by the compiler, and how to enable it
2438 echocheck "GCC AltiVec flags"
2439 cat > $TMPC << EOF
2440 int main(void) { return 0; }
2442 if $(cc_check -maltivec -mabi=altivec) ; then
2443 _altivec_gcc_flags="-maltivec -mabi=altivec"
2444 # check if <altivec.h> should be included
2445 _def_altivec_h='#undef HAVE_ALTIVEC_H'
2446 cat > $TMPC << EOF
2447 #include <altivec.h>
2448 int main(void) { return 0; }
2450 if $(cc_check $_altivec_gcc_flags) ; then
2451 _def_altivec_h='#define HAVE_ALTIVEC_H 1'
2452 inc_altivec_h='#include <altivec.h>'
2453 else
2454 cat > $TMPC << EOF
2455 int main(void) { return 0; }
2457 if $(cc_check -faltivec) ; then
2458 _altivec_gcc_flags="-faltivec"
2459 else
2460 _altivec=no
2461 _altivec_gcc_flags="none, AltiVec disabled"
2465 echores "$_altivec_gcc_flags"
2467 # check if the compiler supports braces for vector declarations
2468 cat > $TMPC << EOF
2469 $inc_altivec_h
2470 int main(void) { (vector int) {1}; return 0; }
2472 cc_check $_altivec_gcc_flags || die "You need a compiler that supports {} in AltiVec vector declarations."
2474 # Disable runtime cpudetection if we cannot generate AltiVec code or
2475 # AltiVec is disabled by the user.
2476 test "$_runtime_cpudetection" = yes && test "$_altivec" = no \
2477 && _runtime_cpudetection=no
2479 # Show that we are optimizing for AltiVec (if enabled and supported).
2480 test "$_runtime_cpudetection" = no && test "$_altivec" = yes \
2481 && _optimizing="$_optimizing altivec"
2483 # If AltiVec is enabled, make sure the correct flags turn up in CFLAGS.
2484 test "$_altivec" = yes && CFLAGS="$CFLAGS $_altivec_gcc_flags"
2487 if arm ; then
2488 echocheck "ARMv5TE (Enhanced DSP Extensions)"
2489 if test $_armv5te = "auto" ; then
2490 cat > $TMPC << EOF
2491 int main(void) { __asm__ __volatile__ ("qadd r0, r0, r0"); return 0; }
2493 _armv5te=no
2494 cc_check && _armv5te=yes
2496 echores "$_armv5te"
2498 echocheck "ARMv6 (SIMD instructions)"
2499 if test $_armv6 = "auto" ; then
2500 cat > $TMPC << EOF
2501 int main(void) { __asm__ __volatile__ ("sadd16 r0, r0, r0"); return 0; }
2503 _armv6=no
2504 cc_check && _armv6=yes
2506 echores "$_armv6"
2508 echocheck "iWMMXt (Intel XScale SIMD instructions)"
2509 if test $_iwmmxt = "auto" ; then
2510 cat > $TMPC << EOF
2511 int main(void) { __asm__ __volatile__ ("wunpckelub wr6, wr4"); return 0; }
2513 _iwmmxt=no
2514 cc_check && _iwmmxt=yes
2516 echores "$_iwmmxt"
2519 _cpuexts_all='ALTIVEC MMX MMX2 3DNOW 3DNOWEX SSE SSE2 SSSE3 FAST_CMOV CMOV ARMV5TE ARMV6 IWMMXT MLIB MMI SH4 VIS MVI'
2520 test "$_altivec" = yes && _cpuexts="ALTIVEC $_cpuexts"
2521 test "$_mmx" = yes && _cpuexts="MMX $_cpuexts"
2522 test "$_mmxext" = yes && _cpuexts="MMX2 $_cpuexts"
2523 test "$_3dnow" = yes && _cpuexts="3DNOW $_cpuexts"
2524 test "$_3dnowext" = yes && _cpuexts="3DNOWEX $_cpuexts"
2525 test "$_sse" = yes && _cpuexts="SSE $_cpuexts"
2526 test "$_sse2" = yes && _cpuexts="SSE2 $_cpuexts"
2527 test "$_ssse3" = yes && _cpuexts="SSSE3 $_cpuexts"
2528 test "$_cmov" = yes && _cpuexts="CMOV $_cpuexts"
2529 test "$_fast_cmov" = yes && _cpuexts="FAST_CMOV $_cpuexts"
2530 test "$_armv5te" = yes && _cpuexts="ARMV5TE $_cpuexts"
2531 test "$_armv6" = yes && _cpuexts="ARMV6 $_cpuexts"
2532 test "$_iwmmxt" = yes && _cpuexts="IWMMXT $_cpuexts"
2533 test "$_vis" = yes && _cpuexts="VIS $_cpuexts"
2534 test "$_mvi" = yes && _cpuexts="MVI $_cpuexts"
2536 # Checking kernel version...
2537 if x86_32 && linux ; then
2538 _k_verc_problem=no
2539 kernel_version=`uname -r 2>&1`
2540 echocheck "$system_name kernel version"
2541 case "$kernel_version" in
2542 '') kernel_version="?.??"; _k_verc_fail=yes;;
2543 [0-1].[0-9].[0-9]*|2.[0-3].[0-9]*)
2544 _k_verc_problem=yes;;
2545 esac
2546 if test "$_k_verc_problem" = yes && test "$_sse" = yes ; then
2547 _k_verc_fail=yes
2549 if test "$_k_verc_fail" ; then
2550 echores "$kernel_version, fail"
2551 echo "WARNING! If you want to run MPlayer on this system, get prepared for problems!"
2552 echo "2.2.x has limited SSE support. Upgrade the kernel or use --disable-sse if you"
2553 echo "experience crashes. MPlayer tries to autodetect if your kernel correctly"
2554 echo "supports SSE, but you have been warned! If you are using a kernel older than"
2555 echo "2.2.x you must upgrade it to get SSE support!"
2556 # die "Your kernel is too old for this CPU." # works fine on some 2.2.x so don't die (later check will test)
2557 else
2558 echores "$kernel_version, ok"
2562 ######################
2563 # MAIN TESTS GO HERE #
2564 ######################
2567 echocheck "-lposix"
2568 cat > $TMPC <<EOF
2569 int main(void) { return 0; }
2571 if cc_check -lposix ; then
2572 _ld_extra="$_ld_extra -lposix"
2573 echores "yes"
2574 else
2575 echores "no"
2578 echocheck "-lm"
2579 cat > $TMPC <<EOF
2580 int main(void) { return 0; }
2582 if cc_check -lm ; then
2583 _ld_lm="-lm"
2584 echores "yes"
2585 else
2586 _ld_lm=""
2587 echores "no"
2591 echocheck "langinfo"
2592 if test "$_langinfo" = auto ; then
2593 cat > $TMPC <<EOF
2594 #include <langinfo.h>
2595 int main(void) { nl_langinfo(CODESET); return 0; }
2597 _langinfo=no
2598 cc_check && _langinfo=yes
2600 if test "$_langinfo" = yes ; then
2601 _def_langinfo='#define HAVE_LANGINFO 1'
2602 else
2603 _def_langinfo='#undef HAVE_LANGINFO'
2605 echores "$_langinfo"
2608 echocheck "language"
2609 test -z "$_language" && _language=$LINGUAS
2610 _language=`echo $_language | tr , " "`
2611 if $(echo $_language | grep -q all) ; then
2612 doc_lang=en ; doc_langs=$doc_lang_all
2613 man_lang=en ; man_langs=$man_lang_all
2614 msg_lang=en
2615 else
2616 for lang in $_language ; do
2617 if test -d DOCS/man/$lang ; then
2618 tmp_man_langs="$tmp_man_langs $lang"
2620 if test -d DOCS/xml/$lang ; then
2621 tmp_doc_langs="$tmp_doc_langs $lang"
2623 done
2624 man_langs=$tmp_man_langs
2625 doc_langs=$tmp_man_langs
2626 for lang in $_language ; do
2627 if test -f "help/help_mp-${lang}.h" ; then
2628 msg_lang=$lang
2629 break
2630 else
2631 echo ${_echo_n} "$lang not found, ${_echo_c}"
2632 _language=`echo $_language | sed "s/$lang *//"`
2634 done
2636 test -z "$doc_langs" && doc_langs=en
2637 test -z "$man_langs" && man_langs=en
2638 test -z "$doc_lang" && doc_lang=$(echo $doc_langs | cut -f1 -d" ")
2639 test -z "$man_lang" && man_lang=$(echo $man_langs | cut -f1 -d" ")
2640 test -z "$msg_lang" && msg_lang=en
2641 _mp_help="help/help_mp-${msg_lang}.h"
2642 echores "messages: $msg_lang - man pages: $man_langs - documentation: $doc_langs"
2645 echocheck "enable sighandler"
2646 if test "$_sighandler" = yes ; then
2647 _def_sighandler='#define ENABLE_SIGHANDLER 1'
2648 else
2649 _def_sighandler='#undef ENABLE_SIGHANDLER'
2651 echores "$_sighandler"
2653 echocheck "runtime cpudetection"
2654 if test "$_runtime_cpudetection" = yes ; then
2655 _optimizing="Runtime CPU-Detection enabled"
2656 _def_runtime_cpudetection='#define RUNTIME_CPUDETECT 1'
2657 else
2658 _def_runtime_cpudetection='#undef RUNTIME_CPUDETECT'
2660 echores "$_runtime_cpudetection"
2663 echocheck "restrict keyword"
2664 for restrict_keyword in restrict __restrict __restrict__ ; do
2665 echo "void foo(char * $restrict_keyword p); int main(void) { return 0; }" > $TMPC
2666 if cc_check; then
2667 _def_restrict_keyword=$restrict_keyword
2668 break;
2670 done
2671 if [ -n "$_def_restrict_keyword" ]; then
2672 echores "$_def_restrict_keyword"
2673 else
2674 echores "none"
2676 # Avoid infinite recursion loop ("#define restrict restrict")
2677 if [ "$_def_restrict_keyword" != "restrict" ]; then
2678 _def_restrict_keyword="#define restrict $_def_restrict_keyword"
2679 else
2680 _def_restrict_keyword=""
2684 echocheck "__builtin_expect"
2685 # GCC branch prediction hint
2686 cat > $TMPC << EOF
2687 int foo (int a) {
2688 a = __builtin_expect (a, 10);
2689 return a == 10 ? 0 : 1;
2691 int main(void) { return foo(10) && foo(0); }
2693 _builtin_expect=no
2694 cc_check && _builtin_expect=yes
2695 if test "$_builtin_expect" = yes ; then
2696 _def_builtin_expect='#define HAVE_BUILTIN_EXPECT 1'
2697 else
2698 _def_builtin_expect='#undef HAVE_BUILTIN_EXPECT'
2700 echores "$_builtin_expect"
2703 echocheck "kstat"
2704 cat > $TMPC << EOF
2705 #include <kstat.h>
2706 int main(void) { (void) kstat_open(); (void) kstat_close(0); return 0; }
2708 _kstat=no
2709 cc_check -lkstat && _kstat=yes
2710 if test "$_kstat" = yes ; then
2711 _def_kstat="#define HAVE_LIBKSTAT 1"
2712 _ld_extra="$_ld_extra -lkstat"
2713 else
2714 _def_kstat="#undef HAVE_LIBKSTAT"
2716 echores "$_kstat"
2719 echocheck "posix4"
2720 # required for nanosleep on some systems
2721 cat > $TMPC << EOF
2722 #include <time.h>
2723 int main(void) { (void) nanosleep(0, 0); return 0; }
2725 _posix4=no
2726 cc_check -lposix4 && _posix4=yes
2727 if test "$_posix4" = yes ; then
2728 _ld_extra="$_ld_extra -lposix4"
2730 echores "$_posix4"
2732 for func in llrint lrint lrintf round roundf; do
2733 echocheck $func
2734 cat > $TMPC << EOF
2735 #include <math.h>
2736 int main(void) { long (*foo)(float); foo = $func; (void)(*foo)(0.0); return 0; }
2738 eval _$func=no
2739 cc_check -D_ISOC99_SOURCE $_ld_lm && eval _$func=yes
2740 if eval test "x\$_$func" = "xyes"; then
2741 eval _def_$func="\"#define HAVE_`echo $func | tr '[a-z]' '[A-Z]'` 1\""
2742 echores yes
2743 else
2744 eval _def_$func="\"#undef HAVE_`echo $func | tr '[a-z]' '[A-Z]'`\""
2745 echores no
2747 done
2750 echocheck "mkstemp"
2751 cat > $TMPC << EOF
2752 #include <stdlib.h>
2753 int main(void) { char a; mkstemp(&a); return 0; }
2755 _mkstemp=no
2756 cc_check && _mkstemp=yes
2757 if test "$_mkstemp" = yes ; then
2758 _def_mkstemp='#define HAVE_MKSTEMP 1'
2759 else
2760 _def_mkstemp='#undef HAVE_MKSTEMP'
2762 echores "$_mkstemp"
2765 echocheck "nanosleep"
2766 # also check for nanosleep
2767 cat > $TMPC << EOF
2768 #include <time.h>
2769 int main(void) { (void) nanosleep(0, 0); return 0; }
2771 _nanosleep=no
2772 cc_check && _nanosleep=yes
2773 if test "$_nanosleep" = yes ; then
2774 _def_nanosleep='#define HAVE_NANOSLEEP 1'
2775 else
2776 _def_nanosleep='#undef HAVE_NANOSLEEP'
2778 echores "$_nanosleep"
2781 echocheck "socklib"
2782 # for Solaris (socket stuff is in -lsocket, gethostbyname and friends in -lnsl):
2783 # for BeOS (socket stuff is in -lsocket, gethostbyname and friends in -lbind):
2784 cat > $TMPC << EOF
2785 #include <netdb.h>
2786 #include <sys/socket.h>
2787 int main(void) { (void) gethostbyname(0); (void) socket(AF_INET, SOCK_STREAM, 0); return 0; }
2789 _socklib=no
2790 for _ld_tmp in "" "-lsocket -lbind" "-lsocket -ldnet" "-lsocket -lnsl" "-lnsl" "-lsocket" ; do
2791 cc_check $_ld_tmp && _ld_sock="$_ld_tmp" && _socklib=yes && break
2792 done
2793 if test $_winsock2 = auto && ! cygwin ; then
2794 _winsock2=no
2795 cat > $TMPC << EOF
2796 #include <winsock2.h>
2797 int main(void) { (void) gethostbyname(0); return 0; }
2799 cc_check -lws2_32 && _ld_sock="-lws2_32" && _winsock2=yes
2801 test "$_ld_sock" && _res_comment="using $_ld_sock"
2802 echores "$_socklib"
2805 if test $_winsock2 = yes ; then
2806 _ld_sock="-lws2_32"
2807 _def_winsock2='#define HAVE_WINSOCK2 1'
2808 else
2809 _def_winsock2='#undef HAVE_WINSOCK2'
2813 _use_aton=no
2814 echocheck "inet_pton()"
2815 cat > $TMPC << EOF
2816 #include <sys/types.h>
2817 #include <sys/socket.h>
2818 #include <arpa/inet.h>
2819 int main(void) { (void) inet_pton(0, 0, 0); return 0; }
2821 if test "$_winsock2" = yes ; then
2822 _res_comment="using winsock2 functions instead"
2823 echores "no"
2824 elif cc_check $_ld_sock ; then
2825 # NOTE: Linux has libresolv but does not need it
2827 _res_comment="using $_ld_sock"
2828 echores "yes"
2829 elif cc_check $_ld_sock -lresolv ; then
2830 # NOTE: needed for SunOS at least
2831 _ld_sock="$_ld_sock -lresolv"
2832 _res_comment="using $_ld_sock"
2833 echores "yes"
2834 else
2835 _res_comment="trying inet_aton next"
2836 echores "no"
2838 echocheck "inet_aton()"
2839 cat > $TMPC << EOF
2840 #include <sys/types.h>
2841 #include <sys/socket.h>
2842 #include <arpa/inet.h>
2843 int main(void) { (void) inet_aton(0, 0); return 0; }
2845 _use_aton=yes
2846 if cc_check $_ld_sock ; then
2847 # NOTE: Linux has libresolv but does not need it
2849 _res_comment="using $_ld_sock"
2850 elif cc_check $_ld_sock -lresolv ; then
2851 # NOTE: needed for SunOS at least
2852 _ld_sock="$_ld_sock -lresolv"
2853 _res_comment="using $_ld_sock"
2854 else
2855 _use_aton=no
2856 _network=no
2857 _res_comment="network support disabled"
2859 echores "$_use_aton"
2862 _def_use_aton='#undef HAVE_ATON'
2863 if test "$_use_aton" = yes; then
2864 _def_use_aton='#define HAVE_ATON 1'
2868 echocheck "socklen_t"
2869 _socklen_t=no
2870 for header in "sys/socket.h" "ws2tcpip.h" ; do
2871 cat > $TMPC << EOF
2872 #include <$header>
2873 int main(void) { socklen_t v = 0; return v; }
2875 cc_check && _socklen_t=yes && break
2876 done
2877 if test "$_socklen_t" = yes ; then
2878 _def_socklen_t='#define HAVE_SOCKLEN_T 1'
2879 else
2880 _def_socklen_t='#undef HAVE_SOCKLEN_T'
2882 echores "$_socklen_t"
2885 echocheck "network"
2886 # FIXME network check
2887 if test "$_network" = yes ; then
2888 _def_network='#define MPLAYER_NETWORK 1'
2889 _ld_extra="$_ld_extra $_ld_sock"
2890 _inputmodules="network $_inputmodules"
2891 else
2892 _noinputmodules="network $_noinputmodules"
2893 _def_network='#undef MPLAYER_NETWORK'
2894 _ftp=no
2896 echores "$_network"
2898 echocheck "inttypes.h (required)"
2899 cat > $TMPC << EOF
2900 #include <inttypes.h>
2901 int main(void) { return 0; }
2903 _inttypes=no
2904 cc_check && _inttypes=yes
2905 echores "$_inttypes"
2907 if test "$_inttypes" = no ; then
2908 echocheck "bitypes.h (inttypes.h predecessor)"
2909 cat > $TMPC << EOF
2910 #include <sys/bitypes.h>
2911 int main(void) { return 0; }
2913 cc_check && _inttypes=yes
2914 if test "$_inttypes" = yes ; then
2915 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."
2916 else
2917 die "Cannot find header either inttypes.h or bitypes.h. There is no chance for compilation to succeed."
2922 echocheck "int_fastXY_t in inttypes.h"
2923 cat > $TMPC << EOF
2924 #include <inttypes.h>
2925 int main(void) {
2926 volatile int_fast16_t v= 0;
2927 return v; }
2929 _fast_inttypes=no
2930 cc_check && _fast_inttypes=yes
2931 if test "$_fast_inttypes" = no ; then
2932 _def_fast_inttypes='
2933 typedef signed char int_fast8_t;
2934 typedef signed int int_fast16_t;
2935 typedef signed int int_fast32_t;
2936 typedef signed long long int_fast64_t;
2937 typedef unsigned char uint_fast8_t;
2938 typedef unsigned int uint_fast16_t;
2939 typedef unsigned int uint_fast32_t;
2940 typedef unsigned long long uint_fast64_t;'
2942 echores "$_fast_inttypes"
2945 echocheck "word size"
2946 _mp_wordsize="#undef MP_WORDSIZE"
2947 cat > $TMPC << EOF
2948 #include <stdio.h>
2949 #include <sys/types.h>
2950 int main(void) { printf("%d\n", sizeof(size_t)*8); return 0; }
2952 cc_check && _wordsize=`$TMPEXE` && _mp_wordsize="#define MP_WORDSIZE $_wordsize"
2953 echores "$_wordsize"
2956 echocheck "malloc.h"
2957 cat > $TMPC << EOF
2958 #include <malloc.h>
2959 int main(void) { (void) malloc(0); return 0; }
2961 _malloc=no
2962 cc_check && _malloc=yes
2963 if test "$_malloc" = yes ; then
2964 _def_malloc='#define HAVE_MALLOC_H 1'
2965 else
2966 _def_malloc='#undef HAVE_MALLOC_H'
2968 # malloc.h emits a warning in FreeBSD and OpenBSD
2969 freebsd || openbsd || dragonfly && _def_malloc='#undef HAVE_MALLOC_H'
2970 echores "$_malloc"
2973 echocheck "memalign()"
2974 # XXX restrict to x86 ? extend to other CPUs/cacheline sizes ?
2975 cat > $TMPC << EOF
2976 #include <malloc.h>
2977 int main(void) { (void) memalign(64, sizeof(char)); return 0; }
2979 _memalign=no
2980 cc_check && _memalign=yes
2981 if test "$_memalign" = yes ; then
2982 _def_memalign='#define HAVE_MEMALIGN 1'
2983 else
2984 _def_memalign='#undef HAVE_MEMALIGN'
2985 _def_map_memalign='#define memalign(a,b) malloc(b)'
2986 darwin || _def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
2988 echores "$_memalign"
2991 echocheck "alloca.h"
2992 cat > $TMPC << EOF
2993 #include <alloca.h>
2994 int main(void) { (void) alloca(0); return 0; }
2996 _alloca=no
2997 cc_check && _alloca=yes
2998 if cc_check ; then
2999 _def_alloca='#define HAVE_ALLOCA_H 1'
3000 else
3001 _def_alloca='#undef HAVE_ALLOCA_H'
3003 echores "$_alloca"
3006 echocheck "byteswap.h"
3007 cat > $TMPC << EOF
3008 #include <byteswap.h>
3009 int main(void) { bswap_16(0); return 0; }
3011 _byteswap_h=no
3012 cc_check && _byteswap_h=yes
3013 if cc_check ; then
3014 _def_byteswap_h='#define HAVE_BYTESWAP_H 1'
3015 else
3016 _def_byteswap_h='#undef HAVE_BYTESWAP_H'
3018 echores "$_byteswap_h"
3021 echocheck "mman.h"
3022 cat > $TMPC << EOF
3023 #include <sys/types.h>
3024 #include <sys/mman.h>
3025 int main(void) { (void) mmap(0, 0, 0, 0, 0, 0); return 0; }
3027 _mman=no
3028 cc_check && _mman=yes
3029 if test "$_mman" = yes ; then
3030 _def_mman='#define HAVE_SYS_MMAN_H 1'
3031 else
3032 _def_mman='#undef HAVE_SYS_MMAN_H'
3033 os2 && _need_mmap=yes
3035 echores "$_mman"
3037 cat > $TMPC << EOF
3038 #include <sys/types.h>
3039 #include <sys/mman.h>
3040 int main(void) { void *p = MAP_FAILED; return 0; }
3042 _mman_has_map_failed=no
3043 cc_check && _mman_has_map_failed=yes
3044 if test "$_mman_has_map_failed" = yes ; then
3045 _def_mman_has_map_failed=''
3046 else
3047 _def_mman_has_map_failed='#define MAP_FAILED ((void *) -1)'
3050 echocheck "dynamic loader"
3051 cat > $TMPC << EOF
3052 #include <stddef.h>
3053 #include <dlfcn.h>
3054 int main(void) { dlopen(NULL, 0); dlclose(NULL); dlsym(NULL, NULL); return 0; }
3056 _dl=no
3057 for _ld_tmp in "" "-ldl" ; do
3058 cc_check $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
3059 done
3060 if test "$_dl" = yes ; then
3061 _def_dl='#define HAVE_LIBDL 1'
3062 else
3063 _def_dl='#undef HAVE_LIBDL'
3065 echores "$_dl"
3068 echocheck "dynamic a/v plugins support"
3069 if test "$_dl" = no ; then
3070 _dynamic_plugins=no
3072 if test "$_dynamic_plugins" = yes ; then
3073 _def_dynamic_plugins='#define DYNAMIC_PLUGINS 1'
3074 else
3075 _def_dynamic_plugins='#undef DYNAMIC_PLUGINS'
3077 echores "$_dynamic_plugins"
3080 _def_threads='#undef HAVE_THREADS'
3082 echocheck "pthread"
3083 if test "$_pthreads" = auto ; then
3084 cat > $TMPC << EOF
3085 #include <pthread.h>
3086 void* func(void *arg) { return arg; }
3087 int main(void) { pthread_t tid; return pthread_create (&tid, 0, func, 0) == 0 ? 0 : 1; }
3089 _pthreads=no
3090 if ! hpux ; then
3091 for _ld_tmp in "-lpthreadGC2" "" "-lpthread" "-pthread" ; do
3092 # for crosscompilation, we cannot execute the program, be happy if we can link statically
3093 cc_check $_ld_tmp && (tmp_run || test "$_ld_static") && _ld_pthread="$_ld_tmp" && _pthreads=yes && break
3094 done
3097 if test "$_pthreads" = yes ; then
3098 _res_comment="using $_ld_pthread"
3099 _def_pthreads='#define HAVE_PTHREADS 1'
3100 _def_threads='#define HAVE_THREADS 1'
3101 else
3102 _res_comment="v4l, v4l2, ao_nas, win32 loader disabled"
3103 _def_pthreads='#undef HAVE_PTHREADS'
3104 _nas=no ; _tv_v4l1=no ; _tv_v4l2=no
3105 mingw32 || _win32dll=no
3107 echores "$_pthreads"
3109 echocheck "w32threads"
3110 if test "$_pthreads" = yes ; then
3111 _res_comment="using pthread instead"
3112 _w32threads=no
3114 if test "$_w32threads" = auto ; then
3115 _w32threads=no
3116 mingw32 && _w32threads=yes
3118 test "$_w32threads" = yes && _def_threads='#define HAVE_THREADS 1'
3119 echores "$_w32threads"
3121 echocheck "rpath"
3122 netbsd &&_rpath=yes
3123 if test "$_rpath" = yes ; then
3124 for I in `echo $_ld_extra | sed 's/-L//g'` ; do
3125 tmp="$tmp ` echo $I | sed 's/.*/ -L& -Wl,-R&/'`"
3126 done
3127 _ld_extra=$tmp
3129 echores "$_rpath"
3131 echocheck "iconv"
3132 if test "$_iconv" = auto ; then
3133 cat > $TMPC << EOF
3134 #include <stdio.h>
3135 #include <unistd.h>
3136 #include <iconv.h>
3137 #define INBUFSIZE 1024
3138 #define OUTBUFSIZE 4096
3140 char inbuffer[INBUFSIZE];
3141 char outbuffer[OUTBUFSIZE];
3143 int main(void) {
3144 size_t numread;
3145 iconv_t icdsc;
3146 char *tocode="UTF-8";
3147 char *fromcode="cp1250";
3148 if ((icdsc = iconv_open (tocode, fromcode)) != (iconv_t)(-1)) {
3149 while ((numread = read (0, inbuffer, INBUFSIZE))) {
3150 char *iptr=inbuffer;
3151 char *optr=outbuffer;
3152 size_t inleft=numread;
3153 size_t outleft=OUTBUFSIZE;
3154 if (iconv(icdsc, (const char **)&iptr, &inleft, &optr, &outleft)
3155 != (size_t)(-1)) {
3156 write (1, outbuffer, OUTBUFSIZE - outleft);
3159 if (iconv_close(icdsc) == -1)
3162 return 0;
3165 _iconv=no
3166 for _ld_tmp in "" "-liconv" "-liconv $_ld_dl" ; do
3167 cc_check $_ld_lm $_ld_tmp && _ld_extra="$_ld_extra $_ld_tmp" && \
3168 _iconv=yes && break
3169 done
3171 if test "$_iconv" = yes ; then
3172 _def_iconv='#define HAVE_ICONV 1'
3173 else
3174 _def_iconv='#undef HAVE_ICONV'
3176 echores "$_iconv"
3179 echocheck "soundcard.h"
3180 _soundcard_h=no
3181 _def_soundcard='#undef HAVE_SOUNDCARD_H'
3182 _def_sys_soundcard='#undef HAVE_SYS_SOUNDCARD_H'
3183 for _soundcard_header in "sys/soundcard.h" "soundcard.h"; do
3184 cat > $TMPC << EOF
3185 #include <$_soundcard_header>
3186 int main(void) { return 0; }
3188 cc_check && _soundcard_h=yes && _res_comment="$_soundcard_header" && break
3189 done
3191 if test "$_soundcard_h" = yes ; then
3192 if test $_soundcard_header = "sys/soundcard.h"; then
3193 _def_sys_soundcard='#define HAVE_SYS_SOUNDCARD_H 1'
3194 else
3195 _def_soundcard='#define HAVE_SOUNDCARD_H 1'
3198 echores "$_soundcard_h"
3201 echocheck "sys/dvdio.h"
3202 cat > $TMPC << EOF
3203 #include <unistd.h>
3204 #include <sys/dvdio.h>
3205 int main(void) { return 0; }
3207 _dvdio=no
3208 cc_check && _dvdio=yes
3209 if test "$_dvdio" = yes ; then
3210 _def_dvdio='#define DVD_STRUCT_IN_SYS_DVDIO_H 1'
3211 else
3212 _def_dvdio='#undef DVD_STRUCT_IN_SYS_DVDIO_H'
3214 echores "$_dvdio"
3217 echocheck "sys/cdio.h"
3218 cat > $TMPC << EOF
3219 #include <unistd.h>
3220 #include <sys/cdio.h>
3221 int main(void) { return 0; }
3223 _cdio=no
3224 cc_check && _cdio=yes
3225 if test "$_cdio" = yes ; then
3226 _def_cdio='#define DVD_STRUCT_IN_SYS_CDIO_H 1'
3227 else
3228 _def_cdio='#undef DVD_STRUCT_IN_SYS_CDIO_H'
3230 echores "$_cdio"
3233 echocheck "linux/cdrom.h"
3234 cat > $TMPC << EOF
3235 #include <sys/types.h>
3236 #include <linux/cdrom.h>
3237 int main(void) { return 0; }
3239 _cdrom=no
3240 cc_check && _cdrom=yes
3241 if test "$_cdrom" = yes ; then
3242 _def_cdrom='#define DVD_STRUCT_IN_LINUX_CDROM_H 1'
3243 else
3244 _def_cdrom='#undef DVD_STRUCT_IN_LINUX_CDROM_H'
3246 echores "$_cdrom"
3249 echocheck "dvd.h"
3250 cat > $TMPC << EOF
3251 #include <dvd.h>
3252 int main(void) { return 0; }
3254 _dvd=no
3255 cc_check && _dvd=yes
3256 if test "$_dvd" = yes ; then
3257 _def_dvd='#define DVD_STRUCT_IN_DVD_H 1'
3258 else
3259 _def_dvd='#undef DVD_STRUCT_IN_DVD_H'
3261 echores "$_dvd"
3264 if bsdos; then
3265 echocheck "BSDI dvd.h"
3266 cat > $TMPC << EOF
3267 #include <dvd.h>
3268 int main(void) { return 0; }
3270 _bsdi_dvd=no
3271 cc_check && _bsdi_dvd=yes
3272 if test "$_bsdi_dvd" = yes ; then
3273 _def_bsdi_dvd='#define DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H 1'
3274 else
3275 _def_bsdi_dvd='#undef DVD_STRUCT_IN_BSDI_DVDIOCTL_DVD_H'
3277 echores "$_bsdi_dvd"
3278 fi #if bsdos
3281 if hpux; then
3282 # also used by AIX, but AIX does not support VCD and/or libdvdread
3283 echocheck "HP-UX SCSI header"
3284 cat > $TMPC << EOF
3285 #include <sys/scsi.h>
3286 int main(void) { return 0; }
3288 _hpux_scsi_h=no
3289 cc_check && _hpux_scsi_h=yes
3290 if test "$_hpux_scsi_h" = yes ; then
3291 _def_hpux_scsi_h='#define HPUX_SCTL_IO 1'
3292 else
3293 _def_hpux_scsi_h='#undef HPUX_SCTL_IO'
3295 echores "$_hpux_scsi_h"
3296 fi #if hpux
3299 if sunos; then
3300 echocheck "userspace SCSI headers (Solaris)"
3301 cat > $TMPC << EOF
3302 #include <unistd.h>
3303 #include <stropts.h>
3304 #include <sys/scsi/scsi_types.h>
3305 #include <sys/scsi/impl/uscsi.h>
3306 int main(void) { return 0; }
3308 _sol_scsi_h=no
3309 cc_check && _sol_scsi_h=yes
3310 if test "$_sol_scsi_h" = yes ; then
3311 _def_sol_scsi_h='#define SOLARIS_USCSI 1'
3312 else
3313 _def_sol_scsi_h='#undef SOLARIS_USCSI'
3315 echores "$_sol_scsi_h"
3316 fi #if sunos
3319 echocheck "termcap"
3320 if test "$_termcap" = auto ; then
3321 cat > $TMPC <<EOF
3322 #include <stddef.h>
3323 #include <term.h>
3324 int main(void) { tgetent(NULL, NULL); return 0; }
3326 _termcap=no
3327 for _ld_tmp in "-lncurses" "-ltinfo" "-ltermcap"; do
3328 cc_check $_ld_tmp && _ld_extra="$_ld_extra $_ld_tmp" \
3329 && _termcap=yes && break
3330 done
3332 if test "$_termcap" = yes ; then
3333 _def_termcap='#define HAVE_TERMCAP 1'
3334 _res_comment="using $_ld_tmp"
3335 else
3336 _def_termcap='#undef HAVE_TERMCAP'
3338 echores "$_termcap"
3341 echocheck "termios"
3342 _def_termios='#undef HAVE_TERMIOS'
3343 _def_termios_h='#undef HAVE_TERMIOS_H'
3344 _def_termios_sys_h='#undef HAVE_SYS_TERMIOS_H'
3345 if test "$_termios" = auto ; then
3346 _termios=no
3347 for _termios_header in "sys/termios.h" "termios.h"; do
3348 cat > $TMPC <<EOF
3349 #include <$_termios_header>
3350 int main(void) { return 0; }
3352 cc_check && _termios=yes && _res_comment="$_termios_header" && break
3353 done
3356 if test "$_termios" = yes ; then
3357 _def_termios='#define HAVE_TERMIOS 1'
3358 if test "$_termios_header" = "termios.h" ; then
3359 _def_termios_h='#define HAVE_TERMIOS_H 1'
3360 else
3361 _def_termios_sys_h='#define HAVE_SYS_TERMIOS_H 1'
3364 echores "$_termios"
3367 echocheck "shm"
3368 if test "$_shm" = auto ; then
3369 cat > $TMPC << EOF
3370 #include <sys/types.h>
3371 #include <sys/shm.h>
3372 int main(void) { shmget(0, 0, 0); shmat(0, 0, 0); shmctl(0, 0, 0); return 0; }
3374 _shm=no
3375 cc_check && _shm=yes
3377 if test "$_shm" = yes ; then
3378 _def_shm='#define HAVE_SHM 1'
3379 else
3380 _def_shm='#undef HAVE_SHM'
3382 echores "$_shm"
3385 echocheck "strsep()"
3386 cat > $TMPC << EOF
3387 #include <string.h>
3388 int main(void) { char *s = "Hello, world!"; (void) strsep(&s, ","); return 0; }
3390 _strsep=no
3391 cc_check && _strsep=yes
3392 if test "$_strsep" = yes ; then
3393 _def_strsep='#define HAVE_STRSEP 1'
3394 _need_strsep=no
3395 else
3396 _def_strsep='#undef HAVE_STRSEP'
3397 _need_strsep=yes
3399 echores "$_strsep"
3402 echocheck "vsscanf()"
3403 cat > $TMPC << EOF
3404 #include <stdarg.h>
3405 int main(void) { vsscanf(0, 0, 0); return 0; }
3407 _vsscanf=no
3408 cc_check && _vsscanf=yes
3409 if test "$_vsscanf" = yes ; then
3410 _def_vsscanf='#define HAVE_VSSCANF 1'
3411 _need_vsscanf=no
3412 else
3413 _def_vsscanf='#undef HAVE_VSSCANF'
3414 _need_vsscanf=yes
3416 echores "$_vsscanf"
3419 echocheck "swab()"
3420 cat > $TMPC << EOF
3421 #include <unistd.h>
3422 int main(void) { swab(0, 0, 0); return 0; }
3424 _swab=no
3425 cc_check && _swab=yes
3426 if test "$_swab" = yes ; then
3427 _def_swab='#define HAVE_SWAB 1'
3428 _need_swab=no
3429 else
3430 _def_swab='#undef HAVE_SWAB'
3431 _need_swab=yes
3433 echores "$_swab"
3435 echocheck "POSIX select()"
3436 cat > $TMPC << EOF
3437 #include <stdio.h>
3438 #include <stdlib.h>
3439 #include <sys/types.h>
3440 #include <string.h>
3441 #include <sys/time.h>
3442 #include <unistd.h>
3443 int main(void) {int nfds = 1; fd_set readfds; struct timeval timeout; select(nfds,&readfds,NULL,NULL,&timeout); return 0; }
3445 _posix_select=no
3446 _def_posix_select='#undef HAVE_POSIX_SELECT'
3447 #select() of kLIBC (OS/2) supports socket only
3448 ! os2 && cc_check && _posix_select=yes \
3449 && _def_posix_select='#define HAVE_POSIX_SELECT 1'
3450 echores "$_posix_select"
3453 echocheck "gettimeofday()"
3454 cat > $TMPC << EOF
3455 #include <stdio.h>
3456 #include <sys/time.h>
3457 int main(void) {struct timeval tv_start; gettimeofday(&tv_start, NULL); return 0; }
3459 _gettimeofday=no
3460 cc_check && _gettimeofday=yes
3461 if test "$_gettimeofday" = yes ; then
3462 _def_gettimeofday='#define HAVE_GETTIMEOFDAY 1'
3463 _need_gettimeofday=no
3464 else
3465 _def_gettimeofday='#undef HAVE_GETTIMEOFDAY'
3466 _need_gettimeofday=yes
3468 echores "$_gettimeofday"
3471 echocheck "glob()"
3472 cat > $TMPC << EOF
3473 #include <stdio.h>
3474 #include <glob.h>
3475 int main(void) { glob_t gg; glob("filename",0,NULL,&gg); return 0; }
3477 _glob=no
3478 cc_check && _glob=yes
3479 if test "$_glob" = yes ; then
3480 _def_glob='#define HAVE_GLOB 1'
3481 _need_glob=no
3482 else
3483 _def_glob='#undef HAVE_GLOB'
3484 _need_glob=yes
3486 echores "$_glob"
3489 echocheck "setenv()"
3490 cat > $TMPC << EOF
3491 #include <stdlib.h>
3492 int main(void) { setenv("","",0); return 0; }
3494 _setenv=no
3495 cc_check && _setenv=yes
3496 if test "$_setenv" = yes ; then
3497 _def_setenv='#define HAVE_SETENV 1'
3498 _need_setenv=no
3499 else
3500 _def_setenv='#undef HAVE_SETENV'
3501 _need_setenv=yes
3503 echores "$_setenv"
3506 if sunos; then
3507 echocheck "sysi86()"
3508 cat > $TMPC << EOF
3509 #include <sys/sysi86.h>
3510 int main(void) { sysi86(0); return 0; }
3512 _sysi86=no
3513 cc_check && _sysi86=yes
3514 if test "$_sysi86" = yes ; then
3515 _def_sysi86='#define HAVE_SYSI86 1'
3516 cat > $TMPC << EOF
3517 #include <sys/sysi86.h>
3518 int main(void) { int sysi86(int, void*); sysi86(0); return 0; }
3520 cc_check && _def_sysi86_iv='#define HAVE_SYSI86_iv 1'
3521 else
3522 _def_sysi86='#undef HAVE_SYSI86'
3524 echores "$_sysi86"
3525 fi #if sunos
3528 echocheck "sys/sysinfo.h"
3529 cat > $TMPC << EOF
3530 #include <sys/sysinfo.h>
3531 int main(void) {
3532 struct sysinfo s_info;
3533 sysinfo(&s_info);
3534 return 0;
3537 _sys_sysinfo=no
3538 cc_check && _sys_sysinfo=yes
3539 if test "$_sys_sysinfo" = yes ; then
3540 _def_sys_sysinfo='#define HAVE_SYS_SYSINFO_H 1'
3541 else
3542 _def_sys_sysinfo='#undef HAVE_SYS_SYSINFO_H'
3544 echores "$_sys_sysinfo"
3547 if darwin; then
3549 echocheck "Mac OS X APIs"
3550 if test "$_macosx" = auto ; then
3551 productName=`/usr/bin/sw_vers -productName`
3552 if test "$productName" = "Mac OS X" ||
3553 test "$productName" = "Mac OS X Server" ; then
3554 _macosx=yes
3555 else
3556 _macosx=no
3557 _noaomodules="macosx $_noaomodules"
3558 _novomodules="quartz $_novomodules"
3561 if test "$_macosx" = yes ; then
3562 cat > $TMPC <<EOF
3563 #include <Carbon/Carbon.h>
3564 #include <QuickTime/QuickTime.h>
3565 #include <CoreAudio/CoreAudio.h>
3566 int main(void) {
3567 EnterMovies();
3568 ExitMovies();
3569 CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false);
3570 return 0;
3573 if cc_check -framework Carbon -framework QuickTime -framework CoreAudio; then
3574 _ld_extra="$_ld_extra -framework Carbon -framework QuickTime -framework CoreAudio -framework AudioUnit -framework AudioToolbox"
3575 _coreaudio=yes
3576 _def_coreaudio='#define HAVE_COREAUDIO 1'
3577 _aosrc="$_aosrc ao_macosx.c"
3578 _aomodules="macosx $_aomodules"
3579 _def_quartz='#define HAVE_QUARTZ 1'
3580 _vosrc="$_vosrc vo_quartz.c"
3581 _vomodules="quartz $_vomodules"
3582 _def_quicktime='#define HAVE_QUICKTIME 1'
3583 else
3584 _macosx=no
3585 _coreaudio=no
3586 _def_coreaudio='#undef HAVE_COREAUDIO'
3587 _noaomodules="macosx $_noaomodules"
3588 _def_quartz='#undef HAVE_QUARTZ'
3589 _novomodules="quartz $_novomodules"
3590 _def_quicktime='#undef HAVE_QUICKTIME'
3592 cat > $TMPC <<EOF
3593 #include <Carbon/Carbon.h>
3594 #include <QuartzCore/CoreVideo.h>
3595 int main(void) { return 0; }
3597 if cc_check -framework Carbon -framework QuartzCore -framework OpenGL; then
3598 _vosrc="$_vosrc vo_macosx.m"
3599 _vomodules="macosx $_vomodules"
3600 _ld_extra="$_ld_extra -framework Cocoa -framework QuartzCore -framework OpenGL"
3601 _def_corevideo='#define HAVE_COREVIDEO 1'
3602 _corevideo=yes
3603 else
3604 _novomodules="macosx $_novomodules"
3605 _def_corevideo='#undef HAVE_COREVIDEO'
3606 _corevideo=no
3609 echores "$_macosx"
3611 echocheck "Mac OS X Finder Support"
3612 if test "$_macosx_finder_support" = auto ; then
3613 _macosx_finder_support=$_macosx
3615 if test "$_macosx_finder_support" = yes; then
3616 _def_macosx_finder_support='#define MACOSX_FINDER_SUPPORT 1'
3617 _macosx_finder_support=yes
3618 else
3619 _def_macosx_finder_support='#undef MACOSX_FINDER_SUPPORT'
3620 _macosx_finder_support=no
3622 echores "$_macosx_finder_support"
3624 echocheck "Mac OS X Bundle file locations"
3625 if test "$_macosx_bundle" = auto ; then
3626 _macosx_bundle=$_macosx_finder_support
3628 if test "$_macosx_bundle" = yes; then
3629 _def_macosx_bundle='#define MACOSX_BUNDLE 1'
3630 else
3631 _def_macosx_bundle='#undef MACOSX_BUNDLE'
3632 _macosx_bundle=no
3634 echores "$_macosx_bundle"
3636 echocheck "Apple Remote"
3637 if test "$_apple_remote" = auto ; then
3638 _apple_remote=no
3639 cat > $TMPC <<EOF
3640 #include <stdio.h>
3641 #include <IOKit/IOCFPlugIn.h>
3642 int main(void) {
3643 io_iterator_t hidObjectIterator = (io_iterator_t)NULL;
3644 CFMutableDictionaryRef hidMatchDictionary;
3645 IOReturn ioReturnValue;
3647 // Set up a matching dictionary to search the I/O Registry by class.
3648 // name for all HID class devices
3649 hidMatchDictionary = IOServiceMatching("AppleIRController");
3651 // Now search I/O Registry for matching devices.
3652 ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault,
3653 hidMatchDictionary, &hidObjectIterator);
3655 // If search is unsuccessful, return nonzero.
3656 if (ioReturnValue != kIOReturnSuccess ||
3657 !IOIteratorIsValid(hidObjectIterator)) {
3658 return 1;
3660 return 0;
3663 cc_check -framework IOKit && tmp_run && _apple_remote=yes
3665 if test "$_apple_remote" = yes ; then
3666 _def_apple_remote='#define HAVE_APPLE_REMOTE 1'
3667 _ld_extra="$_ld_extra -framework IOKit"
3668 else
3669 _def_apple_remote='#undef HAVE_APPLE_REMOTE'
3671 echores "$_apple_remote"
3673 fi #if darwin
3675 if linux; then
3677 echocheck "Apple IR"
3678 if test "$_apple_ir" = auto ; then
3679 _apple_ir=no
3680 cat > $TMPC <<EOF
3681 #include <linux/types.h>
3682 #include <linux/input.h>
3683 int main(void) {
3684 struct input_event ev;
3685 struct input_id id;
3686 return 0;
3689 cc_check && tmp_run && _apple_ir=yes
3691 if test "$_apple_ir" = yes ; then
3692 _def_apple_ir='#define HAVE_APPLE_IR 1'
3693 else
3694 _def_apple_ir='#undef HAVE_APPLE_IR'
3696 echores "$_apple_ir"
3697 fi #if linux
3699 echocheck "pkg-config"
3700 _pkg_config=pkg-config
3701 if `$_pkg_config --version > /dev/null 2>&1`; then
3702 if test "$_ld_static"; then
3703 _pkg_config="$_pkg_config --static"
3705 echores "yes"
3706 else
3707 _pkg_config=false
3708 echores "no"
3712 echocheck "Samba support (libsmbclient)"
3713 if test "$_smbsupport" = yes; then
3714 _ld_extra="$_ld_extra -lsmbclient"
3716 if test "$_smbsupport" = auto; then
3717 _smbsupport=no
3718 cat > $TMPC << EOF
3719 #include <libsmbclient.h>
3720 int main(void) { smbc_opendir("smb://"); return 0; }
3722 for _ld_tmp in "-lsmbclient" "-lsmbclient $_ld_dl" "-lsmbclient $_ld_dl -lnsl" "-lsmbclient $_ld_dl -lssl -lnsl" ; do
3723 cc_check $_ld_tmp && _ld_extra="$_ld_extra $_ld_tmp" && \
3724 _smbsupport=yes && break
3725 done
3728 if test "$_smbsupport" = yes; then
3729 _def_smbsupport="#define LIBSMBCLIENT"
3730 _inputmodules="smb $_inputmodules"
3731 else
3732 _def_smbsupport="#undef LIBSMBCLIENT"
3733 _noinputmodules="smb $_noinputmodules"
3735 echores "$_smbsupport"
3738 #########
3739 # VIDEO #
3740 #########
3743 echocheck "tdfxfb"
3744 if test "$_tdfxfb" = yes ; then
3745 _def_tdfxfb='#define CONFIG_TDFXFB 1'
3746 _vosrc="$_vosrc vo_tdfxfb.c"
3747 _vomodules="tdfxfb $_vomodules"
3748 else
3749 _def_tdfxfb='#undef CONFIG_TDFXFB'
3750 _novomodules="tdfxfb $_novomodules"
3752 echores "$_tdfxfb"
3754 echocheck "s3fb"
3755 if test "$_s3fb" = yes ; then
3756 _def_s3fb='#define CONFIG_S3FB 1'
3757 _vosrc="$_vosrc vo_s3fb.c"
3758 _vomodules="s3fb $_vomodules"
3759 else
3760 _def_s3fb='#undef CONFIG_S3FB'
3761 _novomodules="s3fb $_novomodules"
3763 echores "$_s3fb"
3765 echocheck "tdfxvid"
3766 if test "$_tdfxvid" = yes ; then
3767 _def_tdfxvid='#define CONFIG_TDFX_VID 1'
3768 _vosrc="$_vosrc vo_tdfx_vid.c"
3769 _vomodules="tdfx_vid $_vomodules"
3770 else
3771 _def_tdfxvid='#undef CONFIG_TDFX_VID'
3772 _novomodules="tdfx_vid $_novomodules"
3774 echores "$_tdfxvid"
3776 echocheck "xvr100"
3777 if test "$_xvr100" = auto ; then
3778 cat > $TMPC << EOF
3779 #include <unistd.h>
3780 #include <sys/fbio.h>
3781 #include <sys/visual_io.h>
3782 int main(void) {
3783 struct vis_identifier ident;
3784 struct fbgattr attr;
3785 ioctl(0, VIS_GETIDENTIFIER, &ident);
3786 ioctl(0, FBIOGATTR, &attr);
3787 return 0;
3790 _xvr100=no
3791 cc_check && _xvr100=yes
3793 if test "$_xvr100" = yes ; then
3794 _def_xvr100='#define CONFIG_XVR100 1'
3795 _vosrc="$_vosrc vo_xvr100.c"
3796 _vomodules="xvr100 $_vomodules"
3797 else
3798 _def_tdfxvid='#undef CONFIG_XVR100'
3799 _novomodules="xvr100 $_novomodules"
3801 echores "$_xvr100"
3803 echocheck "tga"
3804 if test "$_tga" = yes ; then
3805 _def_tga='#define CONFIG_TGA 1'
3806 _vosrc="$_vosrc vo_tga.c"
3807 _vomodules="tga $_vomodules"
3808 else
3809 _def_tga='#undef CONFIG_TGA'
3810 _novomodules="tga $_novomodules"
3812 echores "$_tga"
3815 echocheck "md5sum support"
3816 if test "$_md5sum" = yes; then
3817 _def_md5sum="#define CONFIG_MD5SUM"
3818 _vosrc="$_vosrc vo_md5sum.c"
3819 _vomodules="md5sum $_vomodules"
3820 else
3821 _def_md5sum="#undef CONFIG_MD5SUM"
3822 _novomodules="md5sum $_novomodules"
3824 echores "$_md5sum"
3827 echocheck "yuv4mpeg support"
3828 if test "$_yuv4mpeg" = yes; then
3829 _def_yuv4mpeg="#define CONFIG_YUV4MPEG"
3830 _vosrc="$_vosrc vo_yuv4mpeg.c"
3831 _vomodules="yuv4mpeg $_vomodules"
3832 else
3833 _def_yuv4mpeg="#undef CONFIG_YUV4MPEG"
3834 _novomodules="yuv4mpeg $_novomodules"
3836 echores "$_yuv4mpeg"
3839 echocheck "bl"
3840 if test "$_bl" = yes ; then
3841 _def_bl='#define CONFIG_BL 1'
3842 _vosrc="$_vosrc vo_bl.c"
3843 _vomodules="bl $_vomodules"
3844 else
3845 _def_bl='#undef CONFIG_BL'
3846 _novomodules="bl $_novomodules"
3848 echores "$_bl"
3851 echocheck "DirectFB"
3852 if test "$_directfb" = auto ; then
3853 _directfb=no
3854 cat > $TMPC <<EOF
3855 #include <directfb.h>
3856 int main(void) { IDirectFB *foo; DirectFBInit(0,0); return 0; }
3858 for _inc_tmp in "" -I/usr/local/include/directfb \
3859 -I/usr/include/directfb -I/usr/local/include; do
3860 cc_check $_inc_tmp -ldirectfb && _directfb=yes && \
3861 _inc_extra="$_inc_extra $_inc_tmp" && break
3862 done
3865 dfb_version() {
3866 expr $1 \* 65536 + $2 \* 256 + $3
3869 if test "$_directfb" = yes; then
3870 cat > $TMPC << EOF
3871 #include <directfb_version.h>
3873 dfb_ver = DIRECTFB_MAJOR_VERSION.DIRECTFB_MINOR_VERSION.DIRECTFB_MICRO_VERSION
3876 if $_cc -E $TMPC $_inc_extra > "$TMPEXE"; then
3877 _directfb_version=`sed -n 's/^dfb_ver[^0-9]*\(.*\)/\1/p' "$TMPEXE" | tr -d '()'`
3878 _dfb_major=`echo $_directfb_version | cut -d . -f 1`
3879 _dfb_minor=`echo $_directfb_version | cut -d . -f 2`
3880 _dfb_micro=`echo $_directfb_version | cut -d . -f 3`
3881 _dfb_version=`dfb_version $_dfb_major $_dfb_minor $_dfb_micro`
3882 if test "$_dfb_version" -ge `dfb_version 0 9 13`; then
3883 _def_directfb_version="#define DIRECTFBVERSION $_dfb_version"
3884 _res_comment="$_directfb_version"
3885 test "$_dfb_version" -ge `dfb_version 0 9 15` && _dfbmga=yes
3886 else
3887 _def_directfb_version='#undef DIRECTFBVERSION'
3888 _directfb=no
3889 _res_comment="version >=0.9.13 required"
3891 else
3892 _directfb=no
3893 _res_comment="failed to get version"
3896 echores "$_directfb"
3898 if test "$_directfb" = yes ; then
3899 _def_directfb='#define CONFIG_DIRECTFB 1'
3900 _vosrc="$_vosrc vo_directfb2.c"
3901 _vomodules="directfb $_vomodules"
3902 _libs_mplayer="$_libs_mplayer -ldirectfb"
3903 else
3904 _def_directfb='#undef CONFIG_DIRECTFB'
3905 _novomodules="directfb $_novomodules"
3907 if test "$_dfbmga" = yes; then
3908 _vosrc="$_vosrc vo_dfbmga.c"
3909 _vomodules="dfbmga $_vomodules"
3910 _def_dfbmga='#define CONFIG_DFBMGA 1'
3911 else
3912 _novomodules="dfbmga $_novomodules"
3913 _def_dfbmga='#undef CONFIG_DFBMGA'
3917 echocheck "X11 headers presence"
3918 _x11_headers="no"
3919 _res_comment="check if the dev(el) packages are installed"
3920 for I in `echo $_inc_extra | sed s/-I//g` /usr/include ; do
3921 if test -f "$I/X11/Xlib.h" ; then
3922 _x11_headers="yes"
3923 _res_comment=""
3924 break
3926 done
3927 if test $_cross_compile = no; then
3928 for I in /usr/X11/include /usr/X11R6/include /usr/include/X11R6 /usr/openwin/include ; do
3929 if test -f "$I/X11/Xlib.h" ; then
3930 _inc_extra="$_inc_extra -I$I"
3931 _x11_headers="yes"
3932 _res_comment="using $I"
3933 break
3935 done
3937 echores "$_x11_headers"
3940 echocheck "X11"
3941 if test "$_x11" = auto && test "$_x11_headers" = yes ; then
3942 cat > $TMPC <<EOF
3943 #include <X11/Xlib.h>
3944 #include <X11/Xutil.h>
3945 int main(void) { (void) XCreateWindow(0,0,0,0,0,0,0,0,0,0,0,0); return 0; }
3947 for I in "" -L/usr/X11R6/lib -L/usr/lib/X11R6 -L/usr/X11/lib \
3948 -L/usr/lib32 -L/usr/openwin/lib -L/usr/X11R6/lib64 -L/usr/lib ; do
3949 if netbsd; then
3950 _ld_tmp="$I -lXext -lX11 $_ld_pthread -Wl,-R`echo $I | sed s/^-L//`"
3951 else
3952 _ld_tmp="$I -lXext -lX11 $_ld_pthread"
3954 cc_check $_ld_tmp && _libs_mplayer="$_libs_mplayer $_ld_tmp" \
3955 && _x11=yes && break
3956 done
3958 if test "$_x11" = yes ; then
3959 _def_x11='#define HAVE_X11 1'
3960 _vosrc="$_vosrc x11_common.c vo_x11.c vo_xover.c"
3961 _vomodules="x11 xover $_vomodules"
3962 else
3963 _x11=no
3964 _def_x11='#undef HAVE_X11'
3965 _novomodules="x11 $_novomodules"
3966 _res_comment="check if the dev(el) packages are installed"
3967 # disable stuff that depends on X
3968 _xv=no ; _xvmc=no ; _xinerama=no ; _vm=no ; _xf86keysym=no
3970 echores "$_x11"
3972 echocheck "Xss screensaver extensions"
3973 if test "$_xss" = auto ; then
3974 cat > $TMPC << EOF
3975 #include <X11/Xlib.h>
3976 #include <X11/extensions/scrnsaver.h>
3977 int main(void) { XScreenSaverSuspend(NULL, True); return 0; }
3979 _xss=no
3980 cc_check -lXss && _xss=yes
3982 if test "$_xss" = yes ; then
3983 _def_xss='#define HAVE_XSS 1'
3984 _libs_mplayer="$_libs_mplayer -lXss"
3985 else
3986 _def_xss='#undef HAVE_XSS'
3988 echores "$_xss"
3990 echocheck "DPMS"
3991 _xdpms3=no
3992 _xdpms4=no
3993 if test "$_x11" = yes ; then
3994 cat > $TMPC <<EOF
3995 #include <X11/Xmd.h>
3996 #include <X11/Xlib.h>
3997 #include <X11/Xutil.h>
3998 #include <X11/Xatom.h>
3999 #include <X11/extensions/dpms.h>
4000 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4002 cc_check -lXdpms && _xdpms3=yes
4003 cat > $TMPC <<EOF
4004 #include <X11/Xlib.h>
4005 #include <X11/extensions/dpms.h>
4006 int main(void) { (void) DPMSQueryExtension(0, 0, 0); return 0; }
4008 cc_check -lXext && _xdpms4=yes
4010 if test "$_xdpms4" = yes ; then
4011 _def_xdpms='#define HAVE_XDPMS 1'
4012 _res_comment="using Xdpms 4"
4013 echores "yes"
4014 elif test "$_xdpms3" = yes ; then
4015 _def_xdpms='#define HAVE_XDPMS 1'
4016 _libs_mplayer="$_libs_mplayer -lXdpms"
4017 _res_comment="using Xdpms 3"
4018 echores "yes"
4019 else
4020 _def_xdpms='#undef HAVE_XDPMS'
4021 echores "no"
4025 echocheck "Xv"
4026 if test "$_xv" = auto ; then
4027 cat > $TMPC <<EOF
4028 #include <X11/Xlib.h>
4029 #include <X11/extensions/Xvlib.h>
4030 int main(void) {
4031 (void) XvGetPortAttribute(0, 0, 0, 0);
4032 (void) XvQueryPortAttributes(0, 0, 0);
4033 return 0; }
4035 _xv=no
4036 cc_check -lXv && _xv=yes
4039 if test "$_xv" = yes ; then
4040 _def_xv='#define HAVE_XV 1'
4041 _libs_mplayer="$_libs_mplayer -lXv"
4042 _vosrc="$_vosrc vo_xv.c"
4043 _vomodules="xv $_vomodules"
4044 else
4045 _def_xv='#undef HAVE_XV'
4046 _novomodules="xv $_novomodules"
4048 echores "$_xv"
4051 echocheck "XvMC"
4052 if test "$_xv" = yes && test "$_xvmc" != no ; then
4053 _xvmc=no
4054 cat > $TMPC <<EOF
4055 #include <X11/Xlib.h>
4056 #include <X11/extensions/Xvlib.h>
4057 #include <X11/extensions/XvMClib.h>
4058 int main(void) {
4059 (void) XvMCQueryExtension(0,0,0);
4060 (void) XvMCCreateContext(0,0,0,0,0,0,0);
4061 return 0; }
4063 for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do
4064 cc_check -lXvMC -l$_ld_tmp && _xvmc=yes && _xvmclib="$_ld_tmp" && break
4065 done
4067 if test "$_xvmc" = yes ; then
4068 _def_xvmc='#define HAVE_XVMC 1'
4069 _libs_mplayer="$_libs_mplayer -lXvMC -l$_xvmclib"
4070 _vosrc="$_vosrc vo_xvmc.c"
4071 _vomodules="xvmc $_vomodules"
4072 _res_comment="using $_xvmclib"
4073 else
4074 _def_xvmc='#undef HAVE_XVMC'
4075 _novomodules="xvmc $_novomodules"
4076 _libavdecoders=`echo $_libavdecoders | sed -e s/MPEG_XVMC_DECODER// `
4078 echores "$_xvmc"
4081 echocheck "Xinerama"
4082 if test "$_xinerama" = auto ; then
4083 cat > $TMPC <<EOF
4084 #include <X11/Xlib.h>
4085 #include <X11/extensions/Xinerama.h>
4086 int main(void) { (void) XineramaIsActive(0); return 0; }
4088 _xinerama=no
4089 cc_check -lXinerama && _xinerama=yes
4092 if test "$_xinerama" = yes ; then
4093 _def_xinerama='#define HAVE_XINERAMA 1'
4094 _libs_mplayer="$_libs_mplayer -lXinerama"
4095 else
4096 _def_xinerama='#undef HAVE_XINERAMA'
4098 echores "$_xinerama"
4101 # Note: the -lXxf86vm library is the VideoMode extension and though it's not
4102 # needed for DGA, AFAIK every distribution packages together with DGA stuffs
4103 # named 'X extensions' or something similar.
4104 # This check may be useful for future mplayer versions (to change resolution)
4105 # If you run into problems, remove '-lXxf86vm'.
4106 echocheck "Xxf86vm"
4107 if test "$_vm" = auto ; then
4108 cat > $TMPC <<EOF
4109 #include <X11/Xlib.h>
4110 #include <X11/extensions/xf86vmode.h>
4111 int main(void) { (void) XF86VidModeQueryExtension(0, 0, 0); return 0; }
4113 _vm=no
4114 cc_check -lXxf86vm && _vm=yes
4116 if test "$_vm" = yes ; then
4117 _def_vm='#define HAVE_XF86VM 1'
4118 _libs_mplayer="$_libs_mplayer -lXxf86vm"
4119 else
4120 _def_vm='#undef HAVE_XF86VM'
4122 echores "$_vm"
4124 # Check for the presence of special keycodes, like audio control buttons
4125 # that XFree86 might have. Used to be bundled with the xf86vm check, but
4126 # has nothing to do with xf86vm and XFree 3.x has xf86vm but does NOT
4127 # have these new keycodes.
4128 echocheck "XF86keysym"
4129 if test "$_xf86keysym" = auto; then
4130 _xf86keysym=no
4131 cat > $TMPC <<EOF
4132 #include <X11/Xlib.h>
4133 #include <X11/XF86keysym.h>
4134 int main(void) { return XF86XK_AudioPause; }
4136 cc_check && _xf86keysym=yes
4138 if test "$_xf86keysym" = yes ; then
4139 _def_xf86keysym='#define HAVE_XF86XK 1'
4140 else
4141 _def_xf86keysym='#undef HAVE_XF86XK'
4143 echores "$_xf86keysym"
4145 echocheck "DGA"
4146 if test "$_dga2" = auto && test "$_x11" = yes ; then
4147 cat > $TMPC << EOF
4148 #include <X11/Xlib.h>
4149 #include <X11/extensions/xf86dga.h>
4150 int main(void) { (void) XDGASetViewport(0, 0, 0, 0, 0); return 0; }
4152 _dga2=no
4153 cc_check -lXxf86dga && _dga2=yes
4155 if test "$_dga1" = auto && test "$_dga2" = no && test "$_vm" = yes ; then
4156 cat > $TMPC << EOF
4157 #include <X11/Xlib.h>
4158 #include <X11/extensions/xf86dga.h>
4159 int main(void) { (void) XF86DGASetViewPort(0, 0, 0, 0); return 0; }
4161 _dga1=no
4162 cc_check -lXxf86dga -lXxf86vm && _dga1=yes
4165 _dga=no
4166 _def_dga='#undef HAVE_DGA'
4167 _def_dga1='#undef HAVE_DGA1'
4168 _def_dga2='#undef HAVE_DGA2'
4169 if test "$_dga1" = yes ; then
4170 _dga=yes
4171 _def_dga1='#define HAVE_DGA1 1'
4172 _res_comment="using DGA 1.0"
4173 elif test "$_dga2" = yes ; then
4174 _dga=yes
4175 _def_dga2='#define HAVE_DGA2 1'
4176 _res_comment="using DGA 2.0"
4178 if test "$_dga" = yes ; then
4179 _def_dga='#define HAVE_DGA 1'
4180 _libs_mplayer="$_libs_mplayer -lXxf86dga"
4181 _vosrc="$_vosrc vo_dga.c"
4182 _vomodules="dga $_vomodules"
4183 else
4184 _novomodules="dga $_novomodules"
4186 echores "$_dga"
4189 echocheck "3dfx"
4190 if test "$_3dfx" = yes && test "$_dga" = yes ; then
4191 _def_3dfx='#define CONFIG_3DFX 1'
4192 _vosrc="$_vosrc vo_3dfx.c"
4193 _vomodules="3dfx $_vomodules"
4194 else
4195 _def_3dfx='#undef CONFIG_3DFX'
4196 _novomodules="3dfx $_novomodules"
4198 echores "$_3dfx"
4201 echocheck "OpenGL"
4202 #Note: this test is run even with --enable-gl since we autodetect linker flags
4203 if (test "$_x11" = yes || win32) && test "$_gl" != no ; then
4204 cat > $TMPC << EOF
4205 #include <GL/gl.h>
4206 #ifdef GL_WIN32
4207 #include <windows.h>
4208 #include <GL/glext.h>
4209 #else
4210 #include <X11/Xlib.h>
4211 #include <GL/glx.h>
4212 #endif
4213 int main(void) {
4214 #ifdef GL_WIN32
4215 HDC dc;
4216 wglCreateContext(dc);
4217 #else
4218 glXCreateContext(NULL, NULL, NULL, True);
4219 #endif
4220 glFinish();
4221 return 0;
4224 _gl=no
4225 if cc_check -lGL $_ld_lm ; then
4226 _gl=yes
4227 _libs_mplayer="$_libs_mplayer -lGL $_ld_dl"
4228 elif cc_check -lGL $_ld_lm $_ld_pthread ; then
4229 _gl=yes
4230 _libs_mplayer="$_libs_mplayer -lGL $_ld_pthread $_ld_dl"
4231 elif cc_check -DGL_WIN32 -lopengl32 ; then
4232 _gl=yes
4233 _gl_win32=yes
4234 _libs_mplayer="$_libs_mplayer -lopengl32 -lgdi32"
4236 else
4237 _gl=no
4239 if test "$_gl" = yes ; then
4240 _def_gl='#define CONFIG_GL 1'
4241 _vosrc="$_vosrc vo_gl.c vo_gl2.c gl_common.c"
4242 if test "$_gl_win32" = yes ; then
4243 _def_gl_win32='#define GL_WIN32 1'
4244 _vosrc="$_vosrc w32_common.c"
4245 _res_comment="win32 version"
4247 _vomodules="opengl $_vomodules"
4248 else
4249 _def_gl='#undef CONFIG_GL'
4250 _def_gl_win32='#undef GL_WIN32'
4251 _novomodules="opengl $_novomodules"
4253 echores "$_gl"
4256 echocheck "VIDIX"
4257 _def_vidix='#undef CONFIG_VIDIX'
4258 _def_vidix_drv_cyberblade='#undef CONFIG_VIDIX_DRV_CYBERBLADE'
4259 _vidix_drv_cyberblade=no
4260 _def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4261 _vidix_drv_ivtv=no
4262 _def_vidix_drv_ivtv='#undef CONFIG_VIDIX_DRV_IVTV'
4263 _vidix_drv_ivtv=no
4264 _def_vidix_drv_mach64='#undef CONFIG_VIDIX_DRV_MACH64'
4265 _vidix_drv_mach64=no
4266 _def_vidix_drv_mga='#undef CONFIG_VIDIX_DRV_MGA'
4267 _vidix_drv_mga=no
4268 _def_vidix_drv_mga_crtc2='#undef CONFIG_VIDIX_DRV_MGA_CRTC2'
4269 _vidix_drv_mga_crtc2=no
4270 _def_vidix_drv_nvidia='#undef CONFIG_VIDIX_DRV_NVIDIA'
4271 _vidix_drv_nvidia=no
4272 _def_vidix_drv_pm2='#undef CONFIG_VIDIX_DRV_PM2'
4273 _vidix_drv_pm2=no
4274 _def_vidix_drv_pm3='#undef CONFIG_VIDIX_DRV_PM3'
4275 _vidix_drv_pm3=no
4276 _def_vidix_drv_radeon='#undef CONFIG_VIDIX_DRV_RADEON'
4277 _vidix_drv_radeon=no
4278 _def_vidix_drv_rage128='#undef CONFIG_VIDIX_DRV_RAGE128'
4279 _vidix_drv_rage128=no
4280 _def_vidix_drv_s3='#undef CONFIG_VIDIX_DRV_S3'
4281 _vidix_drv_s3=no
4282 _def_vidix_drv_sis='#undef CONFIG_VIDIX_DRV_SIS'
4283 _vidix_drv_sis=no
4284 _def_vidix_drv_unichrome='#undef CONFIG_VIDIX_DRV_UNICHROME'
4285 _vidix_drv_unichrome=no
4286 if test "$_vidix" = auto ; then
4287 _vidix=no
4288 x86 && (linux || freebsd || netbsd || openbsd || dragonfly || sunos || win32) \
4289 && _vidix=yes
4290 (ppc || alpha) && linux && _vidix=yes
4292 echores "$_vidix"
4294 if test "$_vidix" = yes ; then
4295 _def_vidix='#define CONFIG_VIDIX 1'
4296 _vosrc="$_vosrc vo_cvidix.c"
4297 _vomodules="cvidix $_vomodules"
4298 test "$_vidix_drivers" || _vidix_drivers="cyberblade ivtv mach64 mga mga_crtc2 nvidia pm2 pm3 radeon rage128 s3 sis unichrome"
4299 test $_ivtv = "yes" || _vidix_drivers=`echo $_vidix_drivers | sed s/ivtv//`
4301 # some vidix drivers are meant to work on x86 only, discard them elsewhere
4302 x86 || _vidix_drivers=`echo $_vidix_drivers | sed -e s/cyberblade// -e s/sis// -e s/unichrome// -e s/s3//`
4304 for driver in $_vidix_drivers ; do
4305 uc_driver=`echo $driver | tr '[a-z]' '[A-Z]'`
4306 eval _vidix_drv_${driver}=yes
4307 eval _def_vidix_drv_${driver}=\"\#define CONFIG_VIDIX_DRV_${uc_driver} 1\"
4308 done
4310 echocheck "VIDIX PCI device name database"
4311 echores "$_vidix_pcidb"
4312 if test "$_vidix_pcidb" = yes ; then
4313 _vidix_pcidb_val=1
4314 else
4315 _vidix_pcidb_val=0
4318 echocheck "VIDIX dhahelper support"
4319 test "$_dhahelper" = yes && cflag_dhahelper=-DCONFIG_DHAHELPER
4320 echores "$_dhahelper"
4322 echocheck "VIDIX svgalib_helper support"
4323 test "$_svgalib_helper" = yes && cflag_svgalib_helper=-DCONFIG_SVGAHELPER
4324 echores "$_svgalib_helper"
4326 else
4327 _novomodules="cvidix $_novomodules"
4330 if test "$_vidix" = yes && win32; then
4331 _vosrc="$_vosrc vo_winvidix.c"
4332 _vomodules="winvidix $_vomodules"
4333 _libs_mplayer="$_libs_mplayer -lgdi32"
4334 else
4335 _novomodules="winvidix $_novomodules"
4337 if test "$_vidix" = yes && test "$_x11" = yes; then
4338 _vosrc="$_vosrc vo_xvidix.c"
4339 _vomodules="xvidix $_vomodules"
4340 else
4341 _novomodules="xvidix $_novomodules"
4344 echocheck "/dev/mga_vid"
4345 if test "$_mga" = auto ; then
4346 _mga=no
4347 test -c /dev/mga_vid && _mga=yes
4349 if test "$_mga" = yes ; then
4350 _def_mga='#define CONFIG_MGA 1'
4351 _vosrc="$_vosrc vo_mga.c"
4352 _vomodules="mga $_vomodules"
4353 else
4354 _def_mga='#undef CONFIG_MGA'
4355 _novomodules="mga $_novomodules"
4357 echores "$_mga"
4360 echocheck "xmga"
4361 if test "$_xmga" = auto ; then
4362 _xmga=no
4363 test "$_x11" = yes && test "$_mga" = yes && _xmga=yes
4365 if test "$_xmga" = yes ; then
4366 _def_xmga='#define CONFIG_XMGA 1'
4367 _vosrc="$_vosrc vo_xmga.c"
4368 _vomodules="xmga $_vomodules"
4369 else
4370 _def_xmga='#undef CONFIG_XMGA'
4371 _novomodules="xmga $_novomodules"
4373 echores "$_xmga"
4376 echocheck "GGI"
4377 if test "$_ggi" = auto ; then
4378 cat > $TMPC << EOF
4379 #include <ggi/ggi.h>
4380 int main(void) { ggiInit(); return 0; }
4382 _ggi=no
4383 cc_check -lggi && _ggi=yes
4385 if test "$_ggi" = yes ; then
4386 _def_ggi='#define CONFIG_GGI 1'
4387 _libs_mplayer="$_libs_mplayer -lggi"
4388 _vosrc="$_vosrc vo_ggi.c"
4389 _vomodules="ggi $_vomodules"
4390 else
4391 _def_ggi='#undef CONFIG_GGI'
4392 _novomodules="ggi $_novomodules"
4394 echores "$_ggi"
4396 echocheck "GGI extension: libggiwmh"
4397 if test "$_ggiwmh" = auto ; then
4398 _ggiwmh=no
4399 cat > $TMPC << EOF
4400 #include <ggi/ggi.h>
4401 #include <ggi/wmh.h>
4402 int main(void) { ggiInit(); ggiWmhInit(); return 0; }
4404 cc_check -lggi -lggiwmh && _ggiwmh=yes
4406 # needed to get right output on obscure combination
4407 # like --disable-ggi --enable-ggiwmh
4408 if test "$_ggi" = yes && test "$_ggiwmh" = yes ; then
4409 _def_ggiwmh='#define CONFIG_GGIWMH 1'
4410 _libs_mplayer="$_libs_mplayer -lggiwmh"
4411 else
4412 _ggiwmh=no
4413 _def_ggiwmh='#undef CONFIG_GGIWMH'
4415 echores "$_ggiwmh"
4418 echocheck "AA"
4419 if test "$_aa" = auto ; then
4420 cat > $TMPC << EOF
4421 #include <aalib.h>
4422 extern struct aa_hardware_params aa_defparams;
4423 extern struct aa_renderparams aa_defrenderparams;
4424 int main(void) {
4425 aa_context *c;
4426 aa_renderparams *p;
4427 (void) aa_init(0, 0, 0);
4428 c = aa_autoinit(&aa_defparams);
4429 p = aa_getrenderparams();
4430 aa_autoinitkbd(c,0);
4431 return 0; }
4433 _aa=no
4434 for _ld_tmp in "-laa" ; do
4435 cc_check $_ld_tmp && _libs_mplayer="$_libs_mplayer $_ld_tmp" && _aa=yes && break
4436 done
4438 if test "$_aa" = yes ; then
4439 _def_aa='#define CONFIG_AA 1'
4440 if cygwin ; then
4441 _libs_mplayer="$_libs_mplayer `aalib-config --libs | cut -d " " -f 2,5,6`"
4443 _vosrc="$_vosrc vo_aa.c"
4444 _vomodules="aa $_vomodules"
4445 else
4446 _def_aa='#undef CONFIG_AA'
4447 _novomodules="aa $_novomodules"
4449 echores "$_aa"
4452 echocheck "CACA"
4453 if test "$_caca" = auto ; then
4454 _caca=no
4455 if ( caca-config --version ) >> "$TMPLOG" 2>&1 ; then
4456 cat > $TMPC << EOF
4457 #include <caca.h>
4458 #ifdef CACA_API_VERSION_1
4459 #include <caca0.h>
4460 #endif
4461 int main(void) { (void) caca_init(); return 0; }
4463 cc_check `caca-config --libs` && _caca=yes
4466 if test "$_caca" = yes ; then
4467 _def_caca='#define CONFIG_CACA 1'
4468 _inc_extra="$_inc_extra `caca-config --cflags`"
4469 _libs_mplayer="$_libs_mplayer `caca-config --libs`"
4470 _vosrc="$_vosrc vo_caca.c"
4471 _vomodules="caca $_vomodules"
4472 else
4473 _def_caca='#undef CONFIG_CACA'
4474 _novomodules="caca $_novomodules"
4476 echores "$_caca"
4479 echocheck "SVGAlib"
4480 if test "$_svga" = auto ; then
4481 cat > $TMPC << EOF
4482 #include <vga.h>
4483 int main(void) { return 0; }
4485 _svga=no
4486 cc_check -lvga $_ld_lm && _svga=yes
4488 if test "$_svga" = yes ; then
4489 _def_svga='#define CONFIG_SVGALIB 1'
4490 _libs_mplayer="$_libs_mplayer -lvga"
4491 _vosrc="$_vosrc vo_svga.c"
4492 _vomodules="svga $_vomodules"
4493 else
4494 _def_svga='#undef CONFIG_SVGALIB'
4495 _novomodules="svga $_novomodules"
4497 echores "$_svga"
4500 echocheck "FBDev"
4501 if test "$_fbdev" = auto ; then
4502 _fbdev=no
4503 linux && _fbdev=yes
4505 if test "$_fbdev" = yes ; then
4506 _def_fbdev='#define CONFIG_FBDEV 1'
4507 _vosrc="$_vosrc vo_fbdev.c vo_fbdev2.c"
4508 _vomodules="fbdev $_vomodules"
4509 else
4510 _def_fbdev='#undef CONFIG_FBDEV'
4511 _novomodules="fbdev $_novomodules"
4513 echores "$_fbdev"
4517 echocheck "DVB"
4518 if test "$_dvb" = auto ; then
4519 _dvb=no
4520 cat >$TMPC << EOF
4521 #include <sys/poll.h>
4522 #include <sys/ioctl.h>
4523 #include <stdio.h>
4524 #include <time.h>
4525 #include <unistd.h>
4526 #include <ost/dmx.h>
4527 #include <ost/frontend.h>
4528 #include <ost/sec.h>
4529 #include <ost/video.h>
4530 #include <ost/audio.h>
4531 int main(void) {return 0;}
4533 for _inc_tmp in "" "-I/usr/src/DVB/ost/include" ; do
4534 cc_check $_inc_tmp && _dvb=yes && \
4535 _inc_extra="$_inc_extra $_inc_tmp" && break
4536 done
4538 echores "$_dvb"
4539 if test "$_dvb" = yes ; then
4540 _def_dvb='#define HAVE_DVB 1'
4541 _def_dvb_in='#define HAS_DVBIN_SUPPORT 1'
4542 _aomodules="mpegpes(dvb) $_aomodules"
4543 _vomodules="mpegpes(dvb) $_vomodules"
4546 echocheck "DVB HEAD"
4547 if test "$_dvbhead" = auto ; then
4548 _dvbhead=no
4550 cat >$TMPC << EOF
4551 #include <sys/poll.h>
4552 #include <sys/ioctl.h>
4553 #include <stdio.h>
4554 #include <time.h>
4555 #include <unistd.h>
4556 #include <linux/dvb/dmx.h>
4557 #include <linux/dvb/frontend.h>
4558 #include <linux/dvb/video.h>
4559 #include <linux/dvb/audio.h>
4560 int main(void) {return 0;}
4562 for _inc_tmp in "" "-I/usr/src/DVB/include" ; do
4563 cc_check $_inc_tmp && _dvbhead=yes && \
4564 _inc_extra="$_inc_extra $_inc_tmp" && break
4565 done
4567 echores "$_dvbhead"
4568 if test "$_dvbhead" = yes ; then
4569 _def_dvb='#define HAVE_DVB_HEAD 1'
4570 _def_dvb_in='#define HAS_DVBIN_SUPPORT 1'
4571 _aomodules="mpegpes(dvb) $_aomodules"
4572 _vomodules="mpegpes(dvb) $_vomodules"
4575 if test "$_dvbhead" = no && test "$_dvb" = no ; then
4576 _def_dvb='#undef HAVE_DVB'
4577 _def_dvb_in='#undef HAS_DVBIN_SUPPORT '
4578 _aomodules="mpegpes(file) $_aomodules"
4579 _vomodules="mpegpes(file) $_vomodules"
4582 if test "$_dvb" = yes || test "$_dvbhead" = yes ; then
4583 _dvbin=yes
4584 _inputmodules="dvb $_inputmodules"
4585 else
4586 _dvbin=no
4587 _noinputmodules="dvb $_noinputmodules"
4593 echocheck "PNG support"
4594 if test "$_png" = auto ; then
4595 _png=no
4596 if irix ; then
4597 # Don't check for -lpng on irix since it has its own libpng
4598 # incompatible with the GNU libpng
4599 _res_comment="disabled on irix (not GNU libpng)"
4600 else
4601 cat > $TMPC << EOF
4602 #include <png.h>
4603 #include <string.h>
4604 int main(void) {
4605 printf("png.h : %s\n", PNG_LIBPNG_VER_STRING);
4606 printf("libpng: %s\n", png_libpng_ver);
4607 return strcmp(PNG_LIBPNG_VER_STRING, png_libpng_ver);
4610 if cc_check -lpng -lz $_ld_lm ; then
4611 if tmp_run ; then
4612 _png=yes
4613 else
4614 _res_comment="mismatch of library and header versions"
4619 echores "$_png"
4620 if test "$_png" = yes ; then
4621 _def_png='#define HAVE_PNG 1'
4622 _ld_extra="$_ld_extra -lpng -lz"
4623 _vosrc="$_vosrc vo_png.c"
4624 _vomodules="png $_vomodules"
4625 else
4626 _def_png='#undef HAVE_PNG'
4627 _novomodules="png $_novomodules"
4630 echocheck "JPEG support"
4631 if test "$_jpeg" = auto ; then
4632 _jpeg=no
4633 cat > $TMPC << EOF
4634 #include <stdio.h>
4635 #include <stdlib.h>
4636 #include <setjmp.h>
4637 #include <string.h>
4638 #include <jpeglib.h>
4639 int main(void) { return 0; }
4641 if cc_check -ljpeg $_ld_lm ; then
4642 if tmp_run ; then
4643 _jpeg=yes
4647 echores "$_jpeg"
4649 if test "$_jpeg" = yes ; then
4650 _def_jpeg='#define HAVE_JPEG 1'
4651 _vosrc="$_vosrc vo_jpeg.c"
4652 _vomodules="jpeg $_vomodules"
4653 _ld_extra="$_ld_extra -ljpeg"
4654 else
4655 _def_jpeg='#undef HAVE_JPEG'
4656 _novomodules="jpeg $_novomodules"
4661 echocheck "PNM support"
4662 if test "$_pnm" = yes; then
4663 _def_pnm="#define HAVE_PNM"
4664 _vosrc="$_vosrc vo_pnm.c"
4665 _vomodules="pnm $_vomodules"
4666 else
4667 _def_pnm="#undef HAVE_PNM"
4668 _novomodules="pnm $_novomodules"
4670 echores "$_pnm"
4674 echocheck "GIF support"
4675 # This is to appease people who want to force gif support.
4676 # If it is forced to yes, then we still do checks to determine
4677 # which gif library to use.
4678 if test "$_gif" = yes ; then
4679 _force_gif=yes
4680 _gif=auto
4683 if test "$_gif" = auto ; then
4684 _gif=no
4685 cat > $TMPC << EOF
4686 #include <gif_lib.h>
4687 int main(void) { return 0; }
4689 for _ld_gif in "-lungif" "-lgif" ; do
4690 cc_check $_ld_gif && tmp_run && _gif=yes && break
4691 done
4694 # If no library was found, and the user wants support forced,
4695 # then we force it on with libgif, as this is the safest
4696 # assumption IMHO. (libungif & libregif both create symbolic
4697 # links to libgif. We also assume that no x11 support is needed,
4698 # because if you are forcing this, then you _should_ know what
4699 # you are doing. [ Besides, package maintainers should never
4700 # have compiled x11 deps into libungif in the first place. ] )
4701 # </rant>
4702 # --Joey
4703 if test "$_force_gif" = yes && test "$_gif" = no ; then
4704 _gif=yes
4705 _ld_gif="-lgif"
4708 if test "$_gif" = yes ; then
4709 _def_gif='#define HAVE_GIF 1'
4710 _vosrc="$_vosrc vo_gif89a.c"
4711 _codecmodules="gif $_codecmodules"
4712 _vomodules="gif89a $_vomodules"
4713 _res_comment="old version, some encoding functions disabled"
4714 _def_gif_4='#undef HAVE_GIF_4'
4715 _ld_extra="$_ld_extra $_ld_gif"
4717 cat > $TMPC << EOF
4718 #include <signal.h>
4719 #include <gif_lib.h>
4720 void catch() { exit(1); }
4721 int main(void) {
4722 signal(SIGSEGV, catch); // catch segfault
4723 printf("EGifPutExtensionFirst is at address %p\n", EGifPutExtensionFirst);
4724 EGifSetGifVersion("89a"); // this will segfault a buggy gif lib.
4725 return 0;
4728 if cc_check "$_ld_gif" && tmp_run ; then
4729 _def_gif_4='#define HAVE_GIF_4 1'
4730 _res_comment=""
4732 else
4733 _def_gif='#undef HAVE_GIF'
4734 _def_gif_4='#undef HAVE_GIF_4'
4735 _novomodules="gif89a $_novomodules"
4736 _nocodecmodules="gif $_nocodecmodules"
4738 echores "$_gif"
4741 case "$_gif" in yes*)
4742 echocheck "broken giflib workaround"
4743 _def_gif_tvt_hack='#define HAVE_GIF_TVT_HACK 1'
4745 cat > $TMPC << EOF
4746 #include <gif_lib.h>
4747 int main(void) {
4748 GifFileType gif;
4749 printf("UserData is at address %p\n", gif.UserData);
4750 return 0;
4753 if cc_check "$_ld_gif" && tmp_run ; then
4754 _def_gif_tvt_hack='#undef HAVE_GIF_TVT_HACK'
4755 echores "disabled"
4756 else
4757 echores "enabled"
4760 esac
4763 echocheck "VESA support"
4764 if test "$_vesa" = auto ; then
4765 cat > $TMPC << EOF
4766 #include <vbe.h>
4767 int main(void) { vbeVersion(); return 0; }
4769 _vesa=no
4770 cc_check -lvbe -llrmi && _vesa=yes
4772 if test "$_vesa" = yes ; then
4773 _def_vesa='#define CONFIG_VESA 1'
4774 _libs_mplayer="$_libs_mplayer -lvbe -llrmi"
4775 _vosrc="$_vosrc vo_vesa.c vesa_lvo.c gtf.c"
4776 _vomodules="vesa $_vomodules"
4777 else
4778 _def_vesa='#undef CONFIG_VESA'
4779 _novomodules="vesa $_novomodules"
4781 echores "$_vesa"
4783 #################
4784 # VIDEO + AUDIO #
4785 #################
4788 echocheck "SDL"
4789 if test -z "$_sdlconfig" ; then
4790 if ( sdl-config --version ) >>"$TMPLOG" 2>&1 ; then
4791 _sdlconfig="sdl-config"
4792 elif ( sdl11-config --version ) >>"$TMPLOG" 2>&1 ; then
4793 _sdlconfig="sdl11-config"
4794 else
4795 _sdlconfig=false
4798 if test "$_sdl" = auto || test "$_sdl" = yes ; then
4799 cat > $TMPC << EOF
4800 #include <SDL.h>
4801 int main(void) {
4802 SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);
4803 return 0;
4806 _sdl=no
4807 if "$_sdlconfig" --version >>"$TMPLOG" 2>&1 ; then
4808 if cc_check `$_sdlconfig --cflags` `$_sdlconfig --libs` >>"$TMPLOG" 2>&1 ; then
4809 _sdlversion=`$_sdlconfig --version | sed 's/[^0-9]//g'`
4810 if test "$_sdlversion" -gt 116 ; then
4811 if test "$_sdlversion" -lt 121 ; then
4812 _def_sdlbuggy='#define BUGGY_SDL'
4813 else
4814 _def_sdlbuggy='#undef BUGGY_SDL'
4816 _sdl=yes
4821 if test "$_sdl" = yes ; then
4822 _def_sdl='#define HAVE_SDL 1'
4823 if cygwin ; then
4824 _libs_mplayer="$_libs_mplayer `$_sdlconfig --libs | cut -d " " -f 1,4,6 | sed s/no-cygwin/cygwin/`"
4825 _inc_extra="$_inc_extra `$_sdlconfig --cflags | cut -d " " -f 1,5,6 | sed s/no-cygwin/cygwin/`"
4826 elif mingw32 ; then
4827 _libs_mplayer="$_libs_mplayer `$_sdlconfig --libs | sed -e s/-mwindows// -e s/-lmingw32//`"
4828 _inc_extra="$_inc_extra `$_sdlconfig --cflags | sed s/-Dmain=SDL_main//`"
4829 else
4830 _libs_mplayer="$_libs_mplayer `$_sdlconfig --libs`"
4831 _inc_extra="$_inc_extra `$_sdlconfig --cflags | sed s/-D_GNU_SOURCE=1//`"
4833 _vosrc="$_vosrc vo_sdl.c"
4834 _vomodules="sdl $_vomodules"
4835 _aosrc="$_aosrc ao_sdl.c"
4836 _aomodules="sdl $_aomodules"
4837 _res_comment="using $_sdlconfig"
4838 else
4839 _def_sdl='#undef HAVE_SDL'
4840 _novomodules="sdl $_novomodules"
4841 _noaomodules="sdl $_noaomodules"
4843 echores "$_sdl"
4846 if win32; then
4848 echocheck "Windows waveout"
4849 if test "$_win32waveout" = auto ; then
4850 cat > $TMPC << EOF
4851 #include <windows.h>
4852 #include <mmsystem.h>
4853 int main(void) { return 0; }
4855 _win32waveout=no
4856 cc_check -lwinmm && _win32waveout=yes
4858 if test "$_win32waveout" = yes ; then
4859 _def_win32waveout='#define HAVE_WIN32WAVEOUT 1'
4860 _libs_mplayer="$_libs_mplayer -lwinmm"
4861 _aosrc="$_aosrc ao_win32.c"
4862 _aomodules="win32 $_aomodules"
4863 else
4864 _def_win32waveout='#undef HAVE_WIN32WAVEOUT'
4865 _noaomodules="win32 $_noaomodules"
4867 echores "$_win32waveout"
4869 echocheck "Directx"
4870 if test "$_directx" = auto ; then
4871 cat > $TMPC << EOF
4872 #include <windows.h>
4873 #include <ddraw.h>
4874 #include <dsound.h>
4875 int main(void) { return 0; }
4877 _directx=no
4878 cc_check -lgdi32 && _directx=yes
4880 if test "$_directx" = yes ; then
4881 _def_directx='#define HAVE_DIRECTX 1'
4882 _libs_mplayer="$_libs_mplayer -lgdi32"
4883 _vosrc="$_vosrc vo_directx.c"
4884 _vomodules="directx $_vomodules"
4885 _aosrc="$_aosrc ao_dsound.c"
4886 _aomodules="dsound $_aomodules"
4887 else
4888 _def_directx='#undef HAVE_DIRECTX'
4889 _novomodules="directx $_novomodules"
4890 _noaomodules="dsound $_noaomodules"
4892 echores "$_directx"
4894 fi #if win32; then
4897 echocheck "NAS"
4898 if test "$_nas" = auto ; then
4899 cat > $TMPC << EOF
4900 #include <audio/audiolib.h>
4901 int main(void) { return 0; }
4903 _nas=no
4904 cc_check $_ld_lm -laudio -lXt && _nas=yes
4906 if test "$_nas" = yes ; then
4907 _def_nas='#define HAVE_NAS 1'
4908 _libs_mplayer="$_libs_mplayer -laudio -lXt"
4909 _aosrc="$_aosrc ao_nas.c"
4910 _aomodules="nas $_aomodules"
4911 else
4912 _noaomodules="nas $_noaomodules"
4913 _def_nas='#undef HAVE_NAS'
4915 echores "$_nas"
4917 echocheck "DXR2"
4918 if test "$_dxr2" = auto; then
4919 _dxr2=no
4920 cat > $TMPC << EOF
4921 #include <dxr2ioctl.h>
4922 int main(void) { return 0; }
4924 for _inc_tmp in "" -I/usr/local/include/dxr2 -I/usr/include/dxr2; do
4925 cc_check $_inc_tmp && _dxr2=yes && \
4926 _inc_extra="$_inc_extra $_inc_tmp" && break
4927 done
4929 if test "$_dxr2" = yes; then
4930 _def_dxr2='#define HAVE_DXR2 1'
4931 _vosrc="$_vosrc vo_dxr2.c"
4932 _aosrc="$_aosrc ao_dxr2.c"
4933 _aomodules="dxr2 $_aomodules"
4934 _vomodules="dxr2 $_vomodules"
4935 else
4936 _def_dxr2='#undef HAVE_DXR2'
4937 _noaomodules="dxr2 $_noaomodules"
4938 _novomodules="dxr2 $_novomodules"
4940 echores "$_dxr2"
4942 echocheck "DXR3/H+"
4943 if test "$_dxr3" = auto ; then
4944 cat > $TMPC << EOF
4945 #include <linux/em8300.h>
4946 int main(void) { return 0; }
4948 _dxr3=no
4949 cc_check && _dxr3=yes
4951 if test "$_dxr3" = yes ; then
4952 _def_dxr3='#define HAVE_DXR3 1'
4953 _vosrc="$_vosrc vo_dxr3.c"
4954 _vomodules="dxr3 $_vomodules"
4955 else
4956 _def_dxr3='#undef HAVE_DXR3'
4957 _novomodules="dxr3 $_novomodules"
4959 echores "$_dxr3"
4962 echocheck "IVTV TV-Out (pre linux-2.6.24)"
4963 if test "$_ivtv" = auto ; then
4964 cat > $TMPC << EOF
4965 #include <stdlib.h>
4966 #include <inttypes.h>
4967 #include <linux/types.h>
4968 #include <linux/videodev2.h>
4969 #include <linux/ivtv.h>
4970 #include <sys/ioctl.h>
4971 int main(void) {
4972 struct ivtv_cfg_stop_decode sd;
4973 struct ivtv_cfg_start_decode sd1;
4974 ioctl (0, IVTV_IOC_START_DECODE, &sd1);
4975 ioctl (0, IVTV_IOC_STOP_DECODE, &sd);
4976 return 0; }
4978 _ivtv=no
4979 cc_check && _ivtv=yes
4981 if test "$_ivtv" = yes ; then
4982 _def_ivtv='#define HAVE_IVTV 1'
4983 _vosrc="$_vosrc vo_ivtv.c"
4984 _vomodules="ivtv $_vomodules"
4985 _aosrc="$_aosrc ao_ivtv.c"
4986 _aomodules="ivtv $_aomodules"
4987 else
4988 _def_ivtv='#undef HAVE_IVTV'
4989 _novomodules="ivtv $_novomodules"
4990 _noaomodules="ivtv $_noaomodules"
4992 echores "$_ivtv"
4995 echocheck "V4L2 MPEG Decoder"
4996 if test "$_v4l2" = auto ; then
4997 cat > $TMPC << EOF
4998 #include <stdlib.h>
4999 #include <inttypes.h>
5000 #include <linux/types.h>
5001 #include <linux/videodev2.h>
5002 #include <linux/version.h>
5003 int main(void) {
5004 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
5005 #error kernel headers too old, need 2.6.22
5006 bad_kernel_version();
5007 #endif
5008 struct v4l2_ext_controls ctrls;
5009 ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG;
5010 return 0;
5013 _v4l2=no
5014 cc_check && _v4l2=yes
5016 if test "$_v4l2" = yes ; then
5017 _def_v4l2='#define HAVE_V4L2_DECODER 1'
5018 _vosrc="$_vosrc vo_v4l2.c"
5019 _vomodules="v4l2 $_vomodules"
5020 _aosrc="$_aosrc ao_v4l2.c"
5021 _aomodules="v4l2 $_aomodules"
5022 else
5023 _def_v4l2='#undef HAVE_V4L2_DECODER'
5024 _novomodules="v4l2 $_novomodules"
5025 _noaomodules="v4l2 $_noaomodules"
5027 echores "$_v4l2"
5031 #########
5032 # AUDIO #
5033 #########
5036 echocheck "OSS Audio"
5037 if test "$_ossaudio" = auto ; then
5038 cat > $TMPC << EOF
5039 #include <sys/ioctl.h>
5040 #include <$_soundcard_header>
5041 int main(void) { int arg = SNDCTL_DSP_SETFRAGMENT; return 0; }
5043 _ossaudio=no
5044 cc_check && _ossaudio=yes
5046 if test "$_ossaudio" = yes ; then
5047 _def_ossaudio='#define CONFIG_OSS_AUDIO 1'
5048 _aosrc="$_aosrc ao_oss.c"
5049 _aomodules="oss $_aomodules"
5050 if test "$_linux_devfs" = yes; then
5051 _def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound/dsp"'
5052 _def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/sound/mixer"'
5053 else
5054 cat > $TMPC << EOF
5055 #include <sys/ioctl.h>
5056 #include <$_soundcard_header>
5057 #ifdef OPEN_SOUND_SYSTEM
5058 int main(void) { return 0; }
5059 #else
5060 #error Not the real thing
5061 #endif
5063 _real_ossaudio=no
5064 cc_check && _real_ossaudio=yes
5065 if test "$_real_ossaudio" = yes; then
5066 _def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5067 elif netbsd || openbsd ; then
5068 _def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/sound"'
5069 _ld_extra="$_ld_extra -lossaudio"
5070 else
5071 _def_ossaudio_devdsp='#define PATH_DEV_DSP "/dev/dsp"'
5073 _def_ossaudio_devmixer='#define PATH_DEV_MIXER "/dev/mixer"'
5075 else
5076 _def_ossaudio='#undef CONFIG_OSS_AUDIO'
5077 _def_ossaudio_devdsp='#define PATH_DEV_DSP ""'
5078 _def_ossaudio_devmixer='#define PATH_DEV_MIXER ""'
5079 _noaomodules="oss $_noaomodules"
5081 echores "$_ossaudio"
5084 echocheck "aRts"
5085 if test "$_arts" = auto ; then
5086 _arts=no
5087 if ( artsc-config --version ) >> "$TMPLOG" 2>&1 ; then
5089 cat > $TMPC << EOF
5090 #include <artsc.h>
5091 int main(void) { return 0; }
5093 cc_check `artsc-config --libs` `artsc-config --cflags` && tmp_run && _arts=yes
5098 if test "$_arts" = yes ; then
5099 _def_arts='#define CONFIG_ARTS 1'
5100 _aosrc="$_aosrc ao_arts.c"
5101 _aomodules="arts $_aomodules"
5102 _libs_mplayer="$_libs_mplayer `artsc-config --libs`"
5103 _inc_extra="$_inc_extra `artsc-config --cflags`"
5104 else
5105 _noaomodules="arts $_noaomodules"
5107 echores "$_arts"
5110 echocheck "EsounD"
5111 if test "$_esd" = auto ; then
5112 _esd=no
5113 if ( esd-config --version ) >> "$TMPLOG" 2>&1 ; then
5115 cat > $TMPC << EOF
5116 #include <esd.h>
5117 int main(void) { int fd = esd_open_sound("test"); return fd; }
5119 cc_check `esd-config --libs` `esd-config --cflags` && _esd=yes
5123 echores "$_esd"
5125 if test "$_esd" = yes ; then
5126 _def_esd='#define CONFIG_ESD 1'
5127 _aosrc="$_aosrc ao_esd.c"
5128 _aomodules="esd $_aomodules"
5129 _libs_mplayer="$_libs_mplayer `esd-config --libs`"
5130 _inc_extra="$_inc_extra `esd-config --cflags`"
5132 echocheck "esd_get_latency()"
5133 cat > $TMPC << EOF
5134 #include <esd.h>
5135 int main(void) { return esd_get_latency(0); }
5137 cc_check `esd-config --libs` `esd-config --cflags` && _esd_latency=yes && _def_esd_latency='#define HAVE_ESD_LATENCY'
5138 echores "$_esd_latency"
5139 else
5140 _def_esd='#undef CONFIG_ESD'
5141 _def_esd_latency='#undef HAVE_ESD_LATENCY'
5142 _noaomodules="esd $_noaomodules"
5145 echocheck "pulse"
5146 if test "$_pulse" = auto ; then
5147 _pulse=no
5148 if $_pkg_config --exists 'libpulse >= 0.9' ; then
5150 cat > $TMPC << EOF
5151 #include <pulse/pulseaudio.h>
5152 int main(void) { return 0; }
5154 cc_check `$_pkg_config --libs --cflags libpulse` && tmp_run && _pulse=yes
5158 echores "$_pulse"
5160 if test "$_pulse" = yes ; then
5161 _def_pulse='#define CONFIG_PULSE 1'
5162 _aosrc="$_aosrc ao_pulse.c"
5163 _aomodules="pulse $_aomodules"
5164 _libs_mplayer="$_libs_mplayer `$_pkg_config --libs libpulse`"
5165 _inc_extra="$_inc_extra `$_pkg_config --cflags libpulse`"
5166 else
5167 _def_pulse='#undef CONFIG_PULSE'
5168 _noaomodules="pulse $_noaomodules"
5172 echocheck "JACK"
5173 if test "$_jack" = auto ; then
5174 _jack=yes
5176 cat > $TMPC << EOF
5177 #include <jack/jack.h>
5178 int main(void) { jack_client_new("test"); return 0; }
5180 if cc_check -ljack ; then
5181 _libs_mplayer="$_libs_mplayer -ljack"
5182 elif cc_check `$_pkg_config --libs --cflags --silence-errors jack` ; then
5183 _libs_mplayer="$_libs_mplayer `$_pkg_config --libs jack`"
5184 _inc_extra="$_inc_extra "`$_pkg_config --cflags jack`""
5185 else
5186 _jack=no
5190 if test "$_jack" = yes ; then
5191 _def_jack='#define CONFIG_JACK 1'
5192 _aosrc="$_aosrc ao_jack.c"
5193 _aomodules="jack $_aomodules"
5194 else
5195 _noaomodules="jack $_noaomodules"
5197 echores "$_jack"
5199 echocheck "OpenAL"
5200 if test "$_openal" = auto ; then
5201 _openal=no
5202 cat > $TMPC << EOF
5203 #ifdef OPENAL_AL_H
5204 #include <OpenAL/al.h>
5205 #else
5206 #include <AL/al.h>
5207 #endif
5208 int main(void) {
5209 alSourceQueueBuffers(0, 0, 0);
5210 // alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
5211 return 0;
5214 for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
5215 cc_check $I && _openal=yes && break
5216 cc_check -DOPENAL_AL_H=1 $I && _def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
5217 done
5218 test "$_openal" = yes && _libs_mplayer="$_libs_mplayer $I"
5220 if test "$_openal" = yes ; then
5221 _def_openal='#define CONFIG_OPENAL 1'
5222 _aosrc="$_aosrc ao_openal.c"
5223 _aomodules="openal $_aomodules"
5224 else
5225 _noaomodules="openal $_noaomodules"
5227 echores "$_openal"
5229 echocheck "ALSA audio"
5230 if test "$_alloca" != yes ; then
5231 _alsa=no
5232 _res_comment="alloca missing"
5234 if test "$_alsa" != no ; then
5235 _alsa=no
5236 cat > $TMPC << EOF
5237 #include <sys/time.h>
5238 #include <sys/asoundlib.h>
5239 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 5))
5240 #error "alsa version != 0.5.x"
5241 #endif
5242 int main(void) { return 0; }
5244 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.5.x'
5246 cat > $TMPC << EOF
5247 #include <sys/time.h>
5248 #include <sys/asoundlib.h>
5249 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5250 #error "alsa version != 0.9.x"
5251 #endif
5252 int main(void) { return 0; }
5254 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-sys'
5255 cat > $TMPC << EOF
5256 #include <sys/time.h>
5257 #include <alsa/asoundlib.h>
5258 #if !((SND_LIB_MAJOR == 0) && (SND_LIB_MINOR == 9))
5259 #error "alsa version != 0.9.x"
5260 #endif
5261 int main(void) { return 0; }
5263 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='0.9.x-alsa'
5265 cat > $TMPC << EOF
5266 #include <sys/time.h>
5267 #include <sys/asoundlib.h>
5268 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5269 #error "alsa version != 1.0.x"
5270 #endif
5271 int main(void) { return 0; }
5273 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-sys'
5274 cat > $TMPC << EOF
5275 #include <sys/time.h>
5276 #include <alsa/asoundlib.h>
5277 #if !((SND_LIB_MAJOR == 1) && (SND_LIB_MINOR == 0))
5278 #error "alsa version != 1.0.x"
5279 #endif
5280 int main(void) { return 0; }
5282 cc_check -lasound $_ld_dl $_ld_pthread && _alsaver='1.0.x-alsa'
5284 _def_alsa5='#undef HAVE_ALSA5'
5285 _def_alsa9='#undef HAVE_ALSA9'
5286 _def_alsa1x='#undef HAVE_ALSA1X'
5287 _def_sys_asoundlib_h='#undef HAVE_SYS_ASOUNDLIB_H'
5288 _def_alsa_asoundlib_h='#undef HAVE_ALSA_ASOUNDLIB_H'
5289 if test "$_alsaver" ; then
5290 _alsa=yes
5291 if test "$_alsaver" = '0.5.x' ; then
5292 _alsa5=yes
5293 _aosrc="$_aosrc ao_alsa5.c"
5294 _aomodules="alsa5 $_aomodules"
5295 _def_alsa5='#define HAVE_ALSA5 1'
5296 _def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5297 _res_comment="using alsa 0.5.x and sys/asoundlib.h"
5298 elif test "$_alsaver" = '0.9.x-sys' ; then
5299 _alsa9=yes
5300 _aosrc="$_aosrc ao_alsa.c"
5301 _aomodules="alsa $_aomodules"
5302 _def_alsa9='#define HAVE_ALSA9 1'
5303 _def_sys_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5304 _res_comment="using alsa 0.9.x and sys/asoundlib.h"
5305 elif test "$_alsaver" = '0.9.x-alsa' ; then
5306 _alsa9=yes
5307 _aosrc="$_aosrc ao_alsa.c"
5308 _aomodules="alsa $_aomodules"
5309 _def_alsa9='#define HAVE_ALSA9 1'
5310 _def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5311 _res_comment="using alsa 0.9.x and alsa/asoundlib.h"
5312 elif test "$_alsaver" = '1.0.x-sys' ; then
5313 _alsa1x=yes
5314 _aosrc="$_aosrc ao_alsa.c"
5315 _aomodules="alsa $_aomodules"
5316 _def_alsa1x="#define HAVE_ALSA1X 1"
5317 _def_alsa_asoundlib_h='#define HAVE_SYS_ASOUNDLIB_H 1'
5318 _res_comment="using alsa 1.0.x and sys/asoundlib.h"
5319 elif test "$_alsaver" = '1.0.x-alsa' ; then
5320 _alsa1x=yes
5321 _aosrc="$_aosrc ao_alsa.c"
5322 _aomodules="alsa $_aomodules"
5323 _def_alsa1x="#define HAVE_ALSA1X 1"
5324 _def_alsa_asoundlib_h='#define HAVE_ALSA_ASOUNDLIB_H 1'
5325 _res_comment="using alsa 1.0.x and alsa/asoundlib.h"
5326 else
5327 _alsa=no
5328 _res_comment="unknown version"
5330 _ld_extra="$_ld_extra -lasound $_ld_dl $_ld_pthread"
5331 else
5332 _noaomodules="alsa $_noaomodules"
5334 echores "$_alsa"
5337 echocheck "Sun audio"
5338 if test "$_sunaudio" = auto ; then
5339 cat > $TMPC << EOF
5340 #include <sys/types.h>
5341 #include <sys/audioio.h>
5342 int main(void) { audio_info_t info; AUDIO_INITINFO(&info); return 0; }
5344 _sunaudio=no
5345 cc_check && _sunaudio=yes
5347 if test "$_sunaudio" = yes ; then
5348 _def_sunaudio='#define CONFIG_SUN_AUDIO 1'
5349 _aosrc="$_aosrc ao_sun.c"
5350 _aomodules="sun $_aomodules"
5351 else
5352 _def_sunaudio='#undef CONFIG_SUN_AUDIO'
5353 _noaomodules="sun $_noaomodules"
5355 echores "$_sunaudio"
5358 if sunos; then
5359 echocheck "Sun mediaLib"
5360 if test "$_mlib" = auto ; then
5361 _mlib=no
5362 cat > $TMPC << EOF
5363 #include <mlib.h>
5364 int main(void) { mlib_VideoColorYUV2ABGR420(0,0,0,0,0,0,0,0,0); return 0; }
5366 cc_check -lmlib && _mlib=yes
5368 test "$_mlib" = yes && _cpuexts="MLIB $_cpuexts"
5369 echores "$_mlib"
5370 fi #if sunos
5373 if irix; then
5374 echocheck "SGI audio"
5375 if test "$_sgiaudio" = auto ; then
5376 # check for SGI audio
5377 cat > $TMPC << EOF
5378 #include <dmedia/audio.h>
5379 int main(void) { return 0; }
5381 _sgiaudio=no
5382 cc_check && _sgiaudio=yes
5384 if test "$_sgiaudio" = "yes" ; then
5385 _def_sgiaudio='#define CONFIG_SGI_AUDIO 1'
5386 _libs_mplayer="$_libs_mplayer -laudio"
5387 _aosrc="$_aosrc ao_sgi.c"
5388 _aomodules="sgi $_aomodules"
5389 else
5390 _def_sgiaudio='#undef CONFIG_SGI_AUDIO'
5391 _noaomodules="sgi $_noaomodules"
5393 echores "$_sgiaudio"
5394 fi #if irix
5397 echocheck "VCD support"
5398 if linux || freebsd || netbsd || dragonfly || bsdos || darwin || sunos || mingw32; then
5399 _inputmodules="vcd $_inputmodules"
5400 _def_vcd='#define HAVE_VCD 1'
5401 _vcd="yes"
5402 else
5403 _def_vcd='#undef HAVE_VCD'
5404 _noinputmodules="vcd $_noinputmodules"
5405 _res_comment="not supported on this OS"
5406 _vcd="no"
5408 echores "$_vcd"
5412 echocheck "dvdread"
5413 if test "$_dvdread_internal" = auto ; then
5414 _dvdread_internal=no
5415 _dvdread=no
5416 if (linux || freebsd || netbsd || openbsd || dragonfly || sunos || hpux) \
5417 && (test "$_dvd" = yes || test "$_cdrom" = yes || test "$_cdio" = yes || \
5418 test "$_dvdio" = yes || test "$_bsdi_dvd" = yes) \
5419 || darwin || win32; then
5420 _dvdread_internal=yes
5421 _dvdread=yes
5423 elif test "$_dvdread" = auto ; then
5424 _dvdread=no
5425 if test "$_dl" = yes; then
5426 cat > $TMPC << EOF
5427 #include <inttypes.h>
5428 #include <libdvdread/dvd_reader.h>
5429 #include <libdvdread/ifo_types.h>
5430 #include <libdvdread/ifo_read.h>
5431 #include <libdvdread/nav_read.h>
5432 int main(void) { return 0; }
5435 _dvdreadcflags=`$_dvdreadconfig --cflags`
5436 _dvdreadlibs=`$_dvdreadconfig --libs`
5437 if cc_check -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE \
5438 $_dvdreadcflags $_dvdreadlibs $_ld_dl ; then
5439 _dvdread=yes
5440 _inc_extra="$_inc_extra $_dvdreadcflags"
5441 _ld_extra="$_ld_extra $_dvdreadlibs"
5442 _res_comment="external"
5446 if test "$_dvdread_internal" = yes; then
5447 _def_dvdread_internal="#define CONFIG_DVDREAD_INTERNAL 1"
5448 _def_dvdread='#define CONFIG_DVDREAD 1'
5449 _inputmodules="dvdread(internal) $_inputmodules"
5450 _largefiles=yes
5451 _res_comment="internal"
5452 elif test "$_dvdread" = yes; then
5453 _def_dvdread='#define CONFIG_DVDREAD 1'
5454 _largefiles=yes
5455 _ld_extra="$_ld_extra -ldvdread"
5456 _inputmodules="dvdread(external) $_inputmodules"
5457 _res_comment="external"
5458 else
5459 _def_dvdread_internal="#undef CONFIG_DVDREAD_INTERNAL"
5460 _def_dvdread='#undef CONFIG_DVDREAD'
5461 _noinputmodules="dvdread $_noinputmodules"
5463 echores "$_dvdread"
5466 echocheck "internal libdvdcss"
5467 if test "$_libdvdcss_internal" = auto ; then
5468 _libdvdcss_internal=no
5469 test "$_dvdread_internal" = yes && _libdvdcss_internal=yes
5470 hpux && test "$_hpux_scsi_h" = no && _libdvdcss_internal=no
5472 if test "$_libdvdcss_internal" = yes ; then
5473 if linux || netbsd || openbsd || bsdos ; then
5474 _def_dvd_linux='#define HAVE_LINUX_DVD_STRUCT 1'
5475 openbsd && _dev_dvd_openbsd='#define HAVE_OPENBSD_DVD_STRUCT 1'
5476 elif freebsd || dragonfly ; then
5477 _def_dvd_bsd='#define HAVE_BSD_DVD_STRUCT 1'
5478 elif darwin ; then
5479 _def_dvd_darwin='#define DARWIN_DVD_IOCTL'
5480 _ld_extra="$_ld_extra -framework IOKit"
5481 elif cygwin ; then
5482 CFLAGS="$CFLAGS -DSYS_CYGWIN"
5483 elif beos ; then
5484 CFLAGS="$CFLAGS -DSYS_BEOS"
5485 elif os2 ; then
5486 CFLAGS="$CFLAGS -DSYS_OS2"
5488 _libdvdcss_dvdread_flags="-Ilibdvdcss -DHAVE_DVDCSS_DVDCSS_H"
5489 _inputmodules="libdvdcss(internal) $_inputmodules"
5490 _largefiles=yes
5491 else
5492 _noinputmodules="libdvdcss(internal) $_noinputmodules"
5494 echores "$_libdvdcss_internal"
5497 echocheck "cdparanoia"
5498 if test "$_cdparanoia" = auto ; then
5499 cat > $TMPC <<EOF
5500 #include <cdda_interface.h>
5501 #include <cdda_paranoia.h>
5502 // This need a better test. How ?
5503 int main(void) { void *test = cdda_verbose_set; return test == (void *)1; }
5505 _cdparanoia=no
5506 for _inc_tmp in "" "-I/usr/include/cdda" "-I/usr/local/include/cdda" ; do
5507 cc_check $_inc_tmp -lcdda_interface -lcdda_paranoia $_ld_lm && \
5508 _cdparanoia=yes && _inc_extra="$_inc_extra $_inc_tmp" && break
5509 done
5511 if test "$_cdparanoia" = yes ; then
5512 _cdda='yes'
5513 _ld_extra="$_ld_extra -lcdda_interface -lcdda_paranoia"
5514 openbsd && _ld_extra="$_ld_extra -lutil"
5516 echores "$_cdparanoia"
5519 echocheck "libcdio"
5520 if test "$_libcdio" = auto && test "$_cdparanoia" = no ; then
5521 cat > $TMPC << EOF
5522 #include <stdio.h>
5523 #include <cdio/version.h>
5524 #include <cdio/cdda.h>
5525 #include <cdio/paranoia.h>
5526 int main(void) {
5527 void *test = cdda_verbose_set;
5528 printf("%s\n", CDIO_VERSION);
5529 return test == (void *)1;
5532 _libcdio=no
5533 for _ld_tmp in "" "-lwinmm" ; do
5534 _ld_tmp="-lcdio_cdda -lcdio -lcdio_paranoia $_ld_tmp"
5535 cc_check $_ld_tmp $_ld_lm \
5536 && _libcdio=yes && _ld_extra="$_ld_extra $_ld_tmp" && break
5537 done
5538 if test "$_libcdio" = no && $_pkg_config --exists libcdio_paranoia ; then
5539 _inc_tmp=`$_pkg_config --cflags libcdio_paranoia`
5540 _ld_tmp=`$_pkg_config --libs libcdio_paranoia`
5541 cc_check $_inc_tmp $_ld_tmp $_ld_lm && _libcdio=yes \
5542 && _ld_extra="$_ld_extra $_ld_tmp" && _inc_extra="$_inc_extra $_inc_tmp"
5545 if test "$_libcdio" = yes && test "$_cdparanoia" = no ; then
5546 _cdda='yes'
5547 _def_libcdio='#define HAVE_LIBCDIO'
5548 _def_havelibcdio='yes'
5549 else
5550 if test "$_cdparanoia" = yes ; then
5551 _res_comment="using cdparanoia"
5553 _def_libcdio='#undef HAVE_LIBCDIO'
5554 _def_havelibcdio='no'
5556 echores "$_libcdio"
5558 if test "$_cdda" = yes ; then
5559 test $_cddb = auto && test $_network = yes && _cddb=yes
5560 _def_cdparanoia='#define HAVE_CDDA'
5561 _inputmodules="cdda $_inputmodules"
5562 else
5563 _def_cdparanoia='#undef HAVE_CDDA'
5564 _noinputmodules="cdda $_noinputmodules"
5567 if test "$_cddb" = yes ; then
5568 _def_cddb='#define HAVE_CDDB'
5569 _inputmodules="cddb $_inputmodules"
5570 else
5571 _cddb=no
5572 _def_cddb='#undef HAVE_CDDB'
5573 _noinputmodules="cddb $_noinputmodules"
5576 echocheck "bitmap font support"
5577 if test "$_bitmap_font" = yes ; then
5578 _def_bitmap_font="#define HAVE_BITMAP_FONT 1"
5579 else
5580 _def_bitmap_font="#undef HAVE_BITMAP_FONT"
5582 echores "$_bitmap_font"
5585 echocheck "freetype >= 2.0.9"
5587 # freetype depends on iconv
5588 if test "$_iconv" = no ; then
5589 _freetype=no
5590 _res_comment="iconv support needed"
5593 if test "$_freetype" = auto ; then
5594 if ( $_freetypeconfig --version ) >/dev/null 2>&1 ; then
5595 cat > $TMPC << EOF
5596 #include <stdio.h>
5597 #include <ft2build.h>
5598 #include FT_FREETYPE_H
5599 #if ((FREETYPE_MAJOR < 2) || ((FREETYPE_MINOR == 0) && (FREETYPE_PATCH < 9)))
5600 #error "Need FreeType 2.0.9 or newer"
5601 #endif
5602 int main(void) {
5603 FT_Library library;
5604 FT_Int major=-1,minor=-1,patch=-1;
5605 int err=FT_Init_FreeType(&library);
5606 if(err){
5607 printf("Couldn't initialize freetype2 lib, err code: %d\n",err);
5608 exit(err);
5610 FT_Library_Version(library,&major,&minor,&patch); // in v2.1.0+ only :(((
5611 printf("freetype2 header version: %d.%d.%d library version: %d.%d.%d\n",
5612 FREETYPE_MAJOR,FREETYPE_MINOR,FREETYPE_PATCH,
5613 (int)major,(int)minor,(int)patch );
5614 if(major!=FREETYPE_MAJOR || minor!=FREETYPE_MINOR){
5615 printf("Library and header version mismatch! Fix it in your distribution!\n");
5616 exit(1);
5618 return 0;
5621 _freetype=no
5622 cc_check `$_freetypeconfig --cflags` `$_freetypeconfig --libs` && tmp_run && _freetype=yes
5623 else
5624 _freetype=no
5627 if test "$_freetype" = yes ; then
5628 _def_freetype='#define HAVE_FREETYPE'
5629 _inc_extra="$_inc_extra `$_freetypeconfig --cflags`"
5630 _ld_extra="$_ld_extra `$_freetypeconfig --libs`"
5631 else
5632 _def_freetype='#undef HAVE_FREETYPE'
5634 echores "$_freetype"
5636 if test "$_freetype" = no ; then
5637 _fontconfig=no
5638 _res_comment="freetype support needed"
5640 echocheck "fontconfig"
5641 if test "$_fontconfig" = auto ; then
5642 cat > $TMPC << EOF
5643 #include <stdio.h>
5644 #include <stdlib.h>
5645 #include <fontconfig/fontconfig.h>
5646 int main(void) {
5647 int err = FcInit();
5648 if(err == FcFalse){
5649 printf("Couldn't initialize fontconfig lib\n");
5650 exit(err);
5652 return 0;
5655 _fontconfig=no
5656 for _ld_tmp in "" "-lexpat -lfreetype" "-lexpat -lfreetype -lz" ; do
5657 _ld_tmp="-lfontconfig $_ld_tmp"
5658 cc_check $_ld_tmp && _fontconfig=yes && _ld_extra="$_ld_extra $_ld_tmp" && break
5659 done
5660 if test "$_fontconfig" = no && $_pkg_config --exists fontconfig ; then
5661 _inc_tmp=`$_pkg_config --cflags fontconfig`
5662 _ld_tmp=`$_pkg_config --libs fontconfig`
5663 cc_check $_inc_tmp $_ld_tmp && _fontconfig=yes \
5664 && _ld_extra="$_ld_extra $_ld_tmp" && _inc_extra="$_inc_extra $_inc_tmp"
5667 if test "$_fontconfig" = yes ; then
5668 _def_fontconfig='#define HAVE_FONTCONFIG'
5669 else
5670 _def_fontconfig='#undef HAVE_FONTCONFIG'
5672 echores "$_fontconfig"
5675 echocheck "SSA/ASS support"
5676 # libass depends on FreeType
5677 if test "$_freetype" = no ; then
5678 _ass=no
5679 _res_comment="FreeType support needed"
5682 if test "$_ass" = auto ; then
5683 cat > $TMPC << EOF
5684 #include <ft2build.h>
5685 #include FT_FREETYPE_H
5686 #if ((FREETYPE_MAJOR < 2) || (FREETYPE_MINOR < 1) || ((FREETYPE_MINOR == 1) && (FREETYPE_PATCH < 8)))
5687 #error "Need FreeType 2.1.8 or newer"
5688 #endif
5689 int main(void) { return 0; }
5691 _ass=no
5692 cc_check `$_freetypeconfig --cflags` `$_freetypeconfig --libs` && tmp_run && _ass=yes
5693 if test "$_ass" = no ; then
5694 _res_comment="FreeType >= 2.1.8 needed"
5697 if test "$_ass" = yes ; then
5698 _def_ass='#define CONFIG_ASS'
5699 else
5700 _def_ass='#undef CONFIG_ASS'
5702 echores "$_ass"
5705 echocheck "fribidi with charsets"
5706 if test "$_fribidi" = auto ; then
5707 if ( $_fribidiconfig --version ) >/dev/null 2>&1 ; then
5708 cat > $TMPC << EOF
5709 #include <stdio.h>
5710 /* workaround for fribidi 0.10.4 and below */
5711 #define FRIBIDI_CHARSET_UTF8 FRIBIDI_CHAR_SET_UTF8
5712 #include <fribidi/fribidi.h>
5713 int main(void) {
5714 if(fribidi_parse_charset("UTF-8") != FRIBIDI_CHAR_SET_UTF8) {
5715 printf("Fribidi headers are not consistents with the library!\n");
5716 exit(1);
5718 return 0;
5721 _fribidi=no
5722 cc_check `$_fribidiconfig --cflags` `$_fribidiconfig --libs` && tmp_run && _fribidi=yes
5723 else
5724 _fribidi=no
5727 if test "$_fribidi" = yes ; then
5728 _def_fribidi='#define HAVE_FRIBIDI'
5729 _inc_extra="$_inc_extra `$_fribidiconfig --cflags`"
5730 _ld_extra="$_ld_extra `$_fribidiconfig --libs`"
5731 else
5732 _def_fribidi='#undef HAVE_FRIBIDI'
5734 echores "$_fribidi"
5737 echocheck "ENCA"
5738 if test "$_enca" = auto ; then
5739 cat > $TMPC << EOF
5740 #include <sys/types.h>
5741 #include <enca.h>
5742 int main(void) {
5743 const char **langs;
5744 size_t langcnt;
5745 langs = enca_get_languages(&langcnt);
5746 return 0;
5749 _enca=no
5750 cc_check -lenca $_ld_lm && _enca=yes
5752 if test "$_enca" = yes ; then
5753 _def_enca='#define HAVE_ENCA 1'
5754 _ld_extra="$_ld_extra -lenca"
5755 else
5756 _def_enca='#undef HAVE_ENCA'
5758 echores "$_enca"
5761 echocheck "zlib"
5762 cat > $TMPC << EOF
5763 #include <zlib.h>
5764 int main(void) { (void) inflate(0, Z_NO_FLUSH); return 0; }
5766 _zlib=no
5767 cc_check -lz && _zlib=yes
5768 if test "$_zlib" = yes ; then
5769 _def_zlib='#define CONFIG_ZLIB 1'
5770 _ld_extra="$_ld_extra -lz"
5771 else
5772 _def_zlib='#undef CONFIG_ZLIB'
5773 _libavdecoders=`echo $_libavdecoders | sed -e s/FLASHSV_DECODER// -e s/PNG_DECODER// -e s/ZMBV_DECODER// -e s/DXA_DECODER// `
5774 _libavencoders=`echo $_libavencoders | sed -e s/FLASHSV_ENCODER// -e s/PNG_ENCODER// -e s/ZMBV_ENCODER// `
5776 echores "$_zlib"
5779 echocheck "RTC"
5780 if test "$_rtc" = auto ; then
5781 cat > $TMPC << EOF
5782 #include <sys/ioctl.h>
5783 #ifdef __linux__
5784 #include <linux/rtc.h>
5785 #else
5786 #include <rtc.h>
5787 #define RTC_PIE_ON RTCIO_PIE_ON
5788 #endif
5789 int main(void) { return RTC_PIE_ON; }
5791 _rtc=no
5792 cc_check && _rtc=yes
5793 ppc && _rtc=no
5795 if test "$_rtc" = yes ; then
5796 _def_rtc='#define HAVE_RTC 1'
5797 else
5798 _def_rtc='#undef HAVE_RTC'
5800 echores "$_rtc"
5803 echocheck "liblzo2 support"
5804 if test "$_liblzo" = auto ; then
5805 _liblzo=no
5806 cat > $TMPC << EOF
5807 #include <lzo/lzo1x.h>
5808 int main(void) { lzo_init();return 0; }
5810 cc_check -llzo2 && _liblzo=yes
5812 if test "$_liblzo" = yes ; then
5813 _def_liblzo='#define CONFIG_LIBLZO 1'
5814 _ld_extra="$_ld_extra -llzo2"
5815 _codecmodules="liblzo $_codecmodules"
5816 else
5817 _def_liblzo='#undef CONFIG_LIBLZO'
5818 _nocodecmodules="liblzo $_nocodecmodules"
5820 echores "$_liblzo"
5823 echocheck "mad support"
5824 if test "$_mad" = auto ; then
5825 _mad=no
5826 cat > $TMPC << EOF
5827 #include <mad.h>
5828 int main(void) { return 0; }
5830 cc_check -lmad && _mad=yes
5832 if test "$_mad" = yes ; then
5833 _def_mad='#define CONFIG_LIBMAD 1'
5834 _ld_extra="$_ld_extra -lmad"
5835 _codecmodules="libmad $_codecmodules"
5836 else
5837 _def_mad='#undef CONFIG_LIBMAD'
5838 _nocodecmodules="libmad $_nocodecmodules"
5840 echores "$_mad"
5842 echocheck "Twolame"
5843 if test "$_twolame" = auto ; then
5844 cat > $TMPC <<EOF
5845 #include <twolame.h>
5846 int main(void) { twolame_init(); return 0; }
5848 _twolame=no
5849 cc_check -ltwolame $_ld_lm && _twolame=yes
5851 if test "$_twolame" = yes ; then
5852 _def_twolame='#define CONFIG_TWOLAME 1'
5853 _libs_mencoder="$_libs_mencoder -ltwolame"
5854 _codecmodules="twolame $_codecmodules"
5855 else
5856 _def_twolame='#undef CONFIG_TWOLAME'
5857 _nocodecmodules="twolame $_nocodecmodules"
5859 echores "$_twolame"
5861 echocheck "Toolame"
5862 if test "$_toolame" = auto ; then
5863 _toolame=no
5864 if test "$_twolame" = yes ; then
5865 _res_comment="disabled by twolame"
5866 else
5867 cat > $TMPC <<EOF
5868 #include <toolame.h>
5869 int main(void) { toolame_init(); return 0; }
5871 cc_check -ltoolame $_ld_lm && _toolame=yes
5874 if test "$_toolame" = yes ; then
5875 _def_toolame='#define CONFIG_TOOLAME 1'
5876 _libs_mencoder="$_libs_mencoder -ltoolame"
5877 _codecmodules="toolame $_codecmodules"
5878 else
5879 _def_toolame='#undef CONFIG_TOOLAME'
5880 _nocodecmodules="toolame $_nocodecmodules"
5882 if test "$_toolamedir" ; then
5883 _res_comment="using $_toolamedir"
5885 echores "$_toolame"
5887 echocheck "OggVorbis support"
5888 if test "$_tremor_internal" = yes; then
5889 _libvorbis=no
5890 elif test "$_tremor_external" = auto; then
5891 _tremor_external=no
5892 cat > $TMPC << EOF
5893 #include <tremor/ivorbiscodec.h>
5894 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
5896 cc_check -logg -lvorbisidec $_ld_lm && _tremor_external=yes && _libvorbis=no
5898 if test "$_libvorbis" = auto; then
5899 _libvorbis=no
5900 cat > $TMPC << EOF
5901 #include <vorbis/codec.h>
5902 int main(void) { vorbis_packet_blocksize(0,0); return 0; }
5904 cc_check -lvorbis -logg $_ld_lm && _libvorbis=yes
5906 if test "$_tremor_internal" = yes ; then
5907 _vorbis=yes
5908 _def_vorbis='#define CONFIG_OGGVORBIS 1'
5909 _def_tremor='#define TREMOR 1'
5910 _codecmodules="tremor(internal) $_codecmodules"
5911 _res_comment="internal Tremor"
5912 if test "$_tremor_low" = yes ; then
5913 CFLAGS="$CFLAGS -D_LOW_ACCURACY_"
5914 _res_comment="internal low accuracy Tremor"
5916 elif test "$_tremor_external" = yes ; then
5917 _vorbis=yes
5918 _def_vorbis='#define CONFIG_OGGVORBIS 1'
5919 _def_tremor='#define TREMOR 1'
5920 _codecmodules="tremor(external) $_codecmodules"
5921 _res_comment="external Tremor"
5922 _ld_extra="$_ld_extra -logg -lvorbisidec"
5923 elif test "$_libvorbis" = yes ; then
5924 _vorbis=yes
5925 _def_vorbis='#define CONFIG_OGGVORBIS 1'
5926 _codecmodules="libvorbis $_codecmodules"
5927 _res_comment="libvorbis"
5928 _ld_extra="$_ld_extra -lvorbis -logg"
5929 else
5930 _vorbis=no
5931 _nocodecmodules="libvorbis $_nocodecmodules"
5933 echores "$_vorbis"
5935 echocheck "libspeex (version >= 1.1 required)"
5936 if test "$_speex" = auto ; then
5937 _speex=no
5938 cat > $TMPC << EOF
5939 #include <speex/speex.h>
5940 int main(void) { SpeexBits bits; void *dec; speex_decode_int(dec, &bits, dec); return 0; }
5942 cc_check -lspeex $_ld_lm && _speex=yes
5944 if test "$_speex" = yes ; then
5945 _def_speex='#define CONFIG_SPEEX 1'
5946 _ld_extra="$_ld_extra -lspeex"
5947 _codecmodules="speex $_codecmodules"
5948 else
5949 _def_speex='#undef CONFIG_SPEEX'
5950 _nocodecmodules="speex $_nocodecmodules"
5952 echores "$_speex"
5954 echocheck "OggTheora support"
5955 if test "$_theora" = auto ; then
5956 _theora=no
5957 cat > $TMPC << EOF
5958 #include <theora/theora.h>
5959 #include <string.h>
5960 int main(void) {
5961 /* theora is in flux, make sure that all interface routines and
5962 * datatypes exist and work the way we expect it, so we don't break
5963 * mplayer */
5964 ogg_packet op;
5965 theora_comment tc;
5966 theora_info inf;
5967 theora_state st;
5968 yuv_buffer yuv;
5969 int r;
5970 double t;
5972 theora_info_init (&inf);
5973 theora_comment_init (&tc);
5975 return 0;
5977 /* we don't want to execute this kind of nonsense; just for making sure
5978 * that compilation works... */
5979 memset(&op, 0, sizeof(op));
5980 r = theora_decode_header (&inf, &tc, &op);
5981 r = theora_decode_init (&st, &inf);
5982 t = theora_granule_time (&st, op.granulepos);
5983 r = theora_decode_packetin (&st, &op);
5984 r = theora_decode_YUVout (&st, &yuv);
5985 theora_clear (&st);
5987 return 0;
5990 for _ld_theora in "`$_pkg_config --silence-errors --libs --cflags theora`" "-ltheora -logg"; do
5991 cc_check $_ld_theora && _ld_extra="$_ld_extra $_ld_theora" \
5992 && _theora=yes && break
5993 done
5994 if test "$_theora" = no && test "$_tremor_internal" = yes; then
5995 for _ld_theora in "`$_pkg_config --silence-errors --libs --cflags theora`" "-ltheora -logg"; do
5996 cc_check -I. tremor/bitwise.c $_ld_theora \
5997 && _ld_extra="$_ld_extra $_ld_theora" && theora=yes && break
5998 done
6001 if test "$_theora" = yes ; then
6002 _def_theora='#define CONFIG_OGGTHEORA 1'
6003 _codecmodules="libtheora $_codecmodules"
6004 # when --enable-theora is forced, we'd better provide a probably sane
6005 # $_ld_theora than nothing
6006 test -z "$_ld_theora" && _ld_extra="$_ld_extra -ltheora -logg"
6007 else
6008 _def_theora='#undef CONFIG_OGGTHEORA'
6009 _nocodecmodules="libtheora $_nocodecmodules"
6011 echores "$_theora"
6013 echocheck "internal mp3lib support"
6014 if test "$_mp3lib" = yes ; then
6015 _def_mp3lib='#define CONFIG_MP3LIB 1'
6016 _codecmodules="mp3lib $_codecmodules"
6017 else
6018 _def_mp3lib='#undef CONFIG_MP3LIB'
6019 _nocodecmodules="mp3lib $_nocodecmodules"
6021 echores "$_mp3lib"
6023 echocheck "internal liba52 support"
6024 if test "$_liba52" = yes ; then
6025 _def_liba52='#define CONFIG_LIBA52 1'
6026 _codecmodules="liba52 $_codecmodules"
6027 else
6028 _def_liba52='#undef CONFIG_LIBA52'
6029 _nocodecmodules="liba52 $_nocodecmodules"
6031 echores "$_liba52"
6033 echocheck "internal libmpeg2 support"
6034 if test "$_libmpeg2" = auto ; then
6035 _libmpeg2=yes
6036 if alpha && test cc_vendor=gnu; then
6037 case $cc_version in
6038 2*|3.0*|3.1*) # cannot compile MVI instructions
6039 _libmpeg2=no
6040 _res_comment="broken gcc"
6042 esac
6045 if test "$_libmpeg2" = yes ; then
6046 _def_libmpeg2='#define CONFIG_LIBMPEG2 1'
6047 _codecmodules="libmpeg2 $_codecmodules"
6048 else
6049 _def_libmpeg2='#undef CONFIG_LIBMPEG2'
6050 _nocodecmodules="libmpeg2 $_nocodecmodules"
6052 echores "$_libmpeg2"
6054 echocheck "libdca support"
6055 if test "$_libdca" = auto ; then
6056 _libdca=no
6057 cat > $TMPC << EOF
6058 #include <inttypes.h>
6059 #include <dts.h>
6060 int main(void) { dts_init (0); return 0; }
6062 for _ld_dca in -ldts -ldca ; do
6063 cc_check $_ld_dca $_ld_lm && _ld_extra="$_ld_extra $_ld_dca" \
6064 && _libdca=yes && break
6065 done
6067 if test "$_libdca" = yes ; then
6068 _def_libdca='#define CONFIG_LIBDCA 1'
6069 _codecmodules="libdca $_codecmodules"
6070 else
6071 _def_libdca='#undef CONFIG_LIBDCA'
6072 _nocodecmodules="libdca $_nocodecmodules"
6074 echores "$_libdca"
6076 echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
6077 if test "$_musepack" = auto ; then
6078 _musepack=no
6079 cat > $TMPC << EOF
6080 #include <stddef.h>
6081 #include <mpcdec/mpcdec.h>
6082 int main(void) {
6083 mpc_streaminfo info;
6084 mpc_decoder decoder;
6085 mpc_decoder_set_streaminfo(&decoder, &info);
6086 mpc_decoder_decode_frame(&decoder, NULL, 0, NULL);
6087 return 0;
6090 cc_check -lmpcdec $_ld_lm && _musepack=yes
6092 if test "$_musepack" = yes ; then
6093 _def_musepack='#define CONFIG_MUSEPACK 1'
6094 _ld_extra="$_ld_extra -lmpcdec"
6095 _codecmodules="musepack $_codecmodules"
6096 else
6097 _def_musepack='#undef CONFIG_MUSEPACK'
6098 _nocodecmodules="musepack $_nocodecmodules"
6100 echores "$_musepack"
6103 echocheck "FAAC (AAC encoder) support"
6104 if test "$_faac" = auto ; then
6105 cat > $TMPC <<EOF
6106 #include <inttypes.h>
6107 #include <faac.h>
6108 int main(void) { unsigned long x, y; faacEncOpen(48000, 2, &x, &y); return 0; }
6110 _faac=no
6111 for _ld_faac in "-lfaac" "-lfaac -lmp4v2 -lstdc++" ; do
6112 cc_check -O4 $_ld_faac $_ld_lm && _libs_mencoder="$_libs_mencoder $_ld_faac" && _faac=yes && break
6113 done
6115 if test "$_faac" = yes ; then
6116 _def_faac="#define CONFIG_FAAC 1"
6117 test "$_faac_lavc" = auto && _faac_lavc=yes
6118 if test "$_faac_lavc" = yes ; then
6119 _def_faac_lavc="#define CONFIG_LIBFAAC 1"
6120 _libs_mplayer="$_libs_mplayer $_ld_faac"
6121 _libavencoders="$_libavencoders LIBFAAC_ENCODER"
6123 _codecmodules="faac $_codecmodules"
6124 else
6125 _faac_lavc=no
6126 _def_faac="#undef CONFIG_FAAC"
6127 _def_faac_lavc="#undef CONFIG_LIBFAAC"
6128 _nocodecmodules="faac $_nocodecmodules"
6130 _res_comment="in libavcodec: $_faac_lavc"
6131 echores "$_faac"
6134 echocheck "FAAD2 (AAC) support"
6135 if test "$_faad_internal" = auto ; then
6136 if x86_32 && test cc_vendor=gnu; then
6137 case $cc_version in
6138 3.1*|3.2) # ICE/insn with these versions
6139 _faad_internal=no
6140 _res_comment="broken gcc"
6143 _faad_internal=yes
6145 esac
6146 else
6147 _faad_internal=yes
6149 elif test "$_faad_internal" = no && test "$_faad_external" = auto ; then
6150 _faad_external=no
6151 cat > $TMPC << EOF
6152 #include <faad.h>
6153 #ifndef FAAD_MIN_STREAMSIZE
6154 #error Too old version
6155 #endif
6156 int main(void) { faacDecHandle testhand; faacDecFrameInfo testinfo;
6157 testhand = faacDecOpen(); faacDecInit(0, 0, 0, 0, 0); return 0; }
6159 cc_check -lfaad $_ld_lm && _faad_external=yes
6162 if test "$_faad_internal" = yes ; then
6163 _def_faad_internal="#define CONFIG_FAAD_INTERNAL 1"
6164 _faad=yes
6165 _res_comment="internal floating-point"
6166 if test "$_faad_fixed" = yes ; then
6167 # The FIXED_POINT implementation of FAAD2 improves performance
6168 # on some platforms, especially for SBR files.
6169 CFLAGS="$CFLAGS -DFIXED_POINT"
6170 _res_comment="internal fixed-point"
6172 elif test "$_faad_external" = yes ; then
6173 _faad=yes
6174 _ld_extra="$_ld_extra -lfaad"
6175 else
6176 _def_faad_internal="#undef CONFIG_FAAD_INTERNAL"
6177 _faad=no
6180 if test "$_faad" = yes ; then
6181 _def_faad='#define CONFIG_FAAD 1'
6182 _codecmodules="faad2 $_codecmodules"
6183 else
6184 _def_faad='#undef CONFIG_FAAD'
6185 _nocodecmodules="faad2 $_nocodecmodules"
6187 echores "$_faad"
6190 echocheck "LADSPA plugin support"
6191 if test "$_ladspa" = auto ; then
6192 cat > $TMPC <<EOF
6193 #include <stdio.h>
6194 #include <ladspa.h>
6195 int main(void) {
6196 const LADSPA_Descriptor *ld = NULL;
6197 return 0;
6200 _ladspa=no
6201 cc_check && _ladspa=yes
6203 if test "$_ladspa" = yes; then
6204 _def_ladspa="#define HAVE_LADSPA"
6205 else
6206 _def_ladspa="#undef HAVE_LADSPA"
6208 echores "$_ladspa"
6211 if test -z "$_codecsdir" ; then
6212 for dir in "$_libdir/codecs" "$_libdir/win32" /usr/local/lib/codecs \
6213 /usr/lib/codecs /usr/local/lib/win32 /usr/lib/win32 ; do
6214 if test -d "$dir" ; then
6215 _codecsdir="$dir"
6216 break;
6218 done
6220 # Fall back on default directory.
6221 if test -z "$_codecsdir" ; then
6222 _codecsdir="$_libdir/codecs"
6223 mingw32 && _codecsdir="codecs"
6224 os2 && _codecsdir="codecs"
6228 echocheck "Win32 codecs"
6229 if test "$_win32dll" = auto ; then
6230 _win32dll=no
6231 if x86_32 && ! qnx; then
6232 _win32dll=yes
6235 if test "$_win32dll" = yes ; then
6236 _def_win32dll='#define CONFIG_WIN32DLL 1'
6237 test -z "$_win32codecsdir" && _win32codecsdir=$_codecsdir
6238 _res_comment="using $_win32codecsdir"
6239 if ! win32 ; then
6240 _def_win32_loader='#define WIN32_LOADER 1'
6241 _win32_emulation=yes
6242 else
6243 _ld_extra="$_ld_extra -ladvapi32 -lole32"
6244 _res_comment="using native windows"
6246 _codecmodules="win32 $_codecmodules"
6247 else
6248 _def_win32dll='#undef CONFIG_WIN32DLL'
6249 _def_win32_loader='#undef WIN32_LOADER'
6250 _nocodecmodules="win32 $_nocodecmodules"
6252 echores "$_win32dll"
6255 echocheck "XAnim codecs"
6256 if test "$_xanim" = auto ; then
6257 _xanim=no
6258 _res_comment="dynamic loader support needed"
6259 if test "$_dl" = yes ; then
6260 _xanim=yes
6263 if test "$_xanim" = yes ; then
6264 test -z "$_xanimcodecsdir" && _xanimcodecsdir=$_codecsdir
6265 _def_xanim='#define CONFIG_XANIM 1'
6266 _def_xanim_path="#define XACODEC_PATH \"$_xanimcodecsdir\""
6267 _codecmodules="xanim $_codecmodules"
6268 _res_comment="using $_xanimcodecsdir"
6269 else
6270 _def_xanim='#undef CONFIG_XANIM'
6271 _def_xanim_path='#undef XACODEC_PATH'
6272 _nocodecmodules="xanim $_nocodecmodules"
6274 echores "$_xanim"
6277 echocheck "RealPlayer codecs"
6278 if test "$_real" = auto ; then
6279 _real=no
6280 _res_comment="dynamic loader support needed"
6281 if test "$_dl" = yes || test "$_win32dll" = yes &&
6282 (linux || freebsd || netbsd || dragonfly || darwin || win32) ; then
6283 _real=yes
6286 if test "$_real" = yes ; then
6287 test -z "$_realcodecsdir" && _realcodecsdir="$_codecsdir"
6288 _def_real='#define CONFIG_REALCODECS 1'
6289 _def_real_path="#define REALCODEC_PATH \"$_realcodecsdir\""
6290 _codecmodules="real $_codecmodules"
6291 _res_comment="using $_realcodecsdir"
6292 else
6293 _def_real='#undef CONFIG_REALCODECS'
6294 _def_real_path="#undef REALCODEC_PATH"
6295 _nocodecmodules="real $_nocodecmodules"
6297 echores "$_real"
6300 echocheck "QuickTime codecs"
6301 _qtx_emulation=no
6302 _def_qtx_win32='#undef CONFIG_QTX_CODECS_WIN32'
6303 if test "$_qtx" = auto ; then
6304 test "$_win32dll" = yes || darwin && _qtx=yes
6306 if test "$_qtx" = yes ; then
6307 _def_qtx='#define CONFIG_QTX_CODECS 1'
6308 win32 && _qtx_codecs_win32=yes && _def_qtx_win32='#define CONFIG_QTX_CODECS_WIN32 1'
6309 _codecmodules="qtx $_codecmodules"
6310 darwin || win32 || _qtx_emulation=yes
6311 else
6312 _def_qtx='#undef CONFIG_QTX_CODECS'
6313 _nocodecmodules="qtx $_nocodecmodules"
6315 echores "$_qtx"
6317 echocheck "Nemesi Streaming Media libraries"
6318 if test "$_nemesi" = auto && test "$_network" = yes ; then
6319 _nemesi=no
6320 if $_pkg_config libnemesi --atleast-version=0.6.3 ; then
6321 _inc_extra="$_inc_extra `$_pkg_config --cflags libnemesi`"
6322 _ld_extra="$_ld_extra `$_pkg_config --libs libnemesi`"
6323 _nemesi=yes
6326 if test "$_nemesi" = yes; then
6327 _native_rtsp=no
6328 _def_nemesi='#define LIBNEMESI 1'
6329 _inputmodules="nemesi $_inputmodules"
6330 else
6331 _native_rtsp="$_network"
6332 _nemesi=no
6333 _def_nemesi='#undef LIBNEMESI'
6334 _noinputmodules="nemesi $_noinputmodules"
6336 echores "$_nemesi"
6338 echocheck "LIVE555 Streaming Media libraries"
6339 if test "$_live" = auto && test "$_network" = yes ; then
6340 cat > $TMPCPP << EOF
6341 #include <liveMedia.hh>
6342 #if (LIVEMEDIA_LIBRARY_VERSION_INT < 1141257600)
6343 #error Please upgrade to version 2006.03.03 or later of the "LIVE555 Streaming Media" libraries - available from <www.live555.com/liveMedia/>
6344 #endif
6345 int main(void) { return 0; }
6348 _live=no
6349 for I in $_inc_extra "-I$_libdir/live" "-I/usr/lib/live" "-I/usr/local/live" "-I/usr/local/lib/live" ; do
6350 cxx_check $I/liveMedia/include $I/UsageEnvironment/include \
6351 $I/groupsock/include && _livelibdir=`echo $I| sed s/-I//` && \
6352 _ld_extra="$_livelibdir/liveMedia/libliveMedia.a \
6353 $_livelibdir/groupsock/libgroupsock.a \
6354 $_livelibdir/UsageEnvironment/libUsageEnvironment.a \
6355 $_livelibdir/BasicUsageEnvironment/libBasicUsageEnvironment.a \
6356 $_ld_extra -lstdc++" \
6357 _inc_extraxx="-I$_livelibdir/liveMedia/include \
6358 -I$_livelibdir/UsageEnvironment/include \
6359 -I$_livelibdir/BasicUsageEnvironment/include \
6360 -I$_livelibdir/groupsock/include" && \
6361 _live=yes && break
6362 done
6363 if test "$_live" != yes ; then
6364 if cxx_check -I/usr/include/liveMedia -I/usr/include/UsageEnvironment -I/usr/include/groupsock; then
6365 _live_dist=yes
6369 if test "$_live" = yes && test "$_network" = yes; then
6370 _res_comment="using $_livelibdir"
6371 _def_live='#define STREAMING_LIVE555 1'
6372 _inputmodules="live555 $_inputmodules"
6373 elif test "$_live_dist" = yes && test "$_network" = yes; then
6374 _res_comment="using distribution version"
6375 _live="yes"
6376 _def_live='#define STREAMING_LIVE555 1'
6377 _ld_extra="$_ld_extra -lliveMedia -lgroupsock -lUsageEnvironment -lBasicUsageEnvironment -lstdc++"
6378 _inc_extraxx="-I/usr/include/liveMedia -I/usr/include/UsageEnvironment \
6379 -I/usr/include/BasicUsageEnvironment -I/usr/include/groupsock"
6380 _inputmodules="live555 $_inputmodules"
6381 else
6382 _live=no
6383 _def_live='#undef STREAMING_LIVE555'
6384 _noinputmodules="live555 $_noinputmodules"
6386 echores "$_live"
6389 echocheck "FFmpeg libavutil"
6390 if test "$_libavutil_a" = auto ; then
6391 if test -d ffmpeg/libavutil ; then
6392 _libavutil_a=yes
6393 _res_comment="static"
6394 else
6395 die "MPlayer will not compile without libavutil in the source tree."
6397 elif test "$_libavutil_so" = auto ; then
6398 _libavutil_so=no
6399 cat > $TMPC << EOF
6400 #include <libavutil/common.h>
6401 int main(void) { ff_gcd(1,1); return 0; }
6403 if $_pkg_config --exists libavutil ; then
6404 _inc_libavutil=`$_pkg_config --cflags libavutil`
6405 _ld_tmp=`$_pkg_config --libs libavutil`
6406 cc_check $_inc_libavutil $_ld_tmp && _ld_extra="$_ld_extra $_ld_tmp" \
6407 && _libavutil_so=yes
6408 elif cc_check -lavutil $_ld_lm ; then
6409 _ld_extra="$_ld_extra -lavutil"
6410 _libavutil_so=yes
6411 _res_comment="using libavutil.so, but static libavutil is recommended"
6414 _libavutil=no
6415 _def_libavutil='#undef CONFIG_LIBAVUTIL'
6416 _def_libavutil_a='#undef CONFIG_LIBAVUTIL_A'
6417 _def_libavutil_so='#undef CONFIG_LIBAVUTIL_SO'
6418 test "$_libavutil_a" = yes || test "$_libavutil_so" = yes && _libavutil=yes
6419 test "$_libavutil" = yes && _def_libavutil='#define CONFIG_LIBAVUTIL 1'
6420 test "$_libavutil_a" = yes && _def_libavutil_a='#define CONFIG_LIBAVUTIL_A 1'
6421 test "$_libavutil_so" = yes && _def_libavutil_so='#define CONFIG_LIBAVUTIL_SO 1'
6422 # neither static nor shared libavutil is available, but it is mandatory ...
6423 if test "$_libavutil" = no ; then
6424 die "You need static or shared libavutil, MPlayer will not compile without!"
6426 echores "$_libavutil"
6428 echocheck "FFmpeg libavcodec"
6429 if test "$_libavcodec_a" = auto ; then
6430 _libavcodec_a=no
6431 if test -d ffmpeg/libavcodec && test -f ffmpeg/libavcodec/utils.c ; then
6432 _libavcodec_a="yes"
6433 _res_comment="static"
6435 elif test "$_libavcodec_so" = auto ; then
6436 _libavcodec_so=no
6437 _res_comment="libavcodec.so is discouraged over static libavcodec"
6438 cat > $TMPC << EOF
6439 #include <libavcodec/avcodec.h>
6440 int main(void) { avcodec_find_encoder_by_name(""); return 0; }
6442 if $_pkg_config --exists libavcodec ; then
6443 _inc_libavcodec=`$_pkg_config --cflags libavcodec`
6444 _ld_tmp=`$_pkg_config --libs libavcodec`
6445 cc_check $_inc_libavcodec $_ld_tmp && _ld_extra="$_ld_extra $_ld_tmp" \
6446 && _libavcodec_so=yes
6447 elif cc_check -lavcodec $_ld_lm ; then
6448 _ld_extra="$_ld_extra -lavcodec"
6449 _libavcodec_so=yes
6450 _res_comment="using libavcodec.so, but static libavcodec is recommended"
6453 _libavcodec=no
6454 _def_libavcodec='#undef CONFIG_LIBAVCODEC'
6455 _def_libavcodec_a='#undef CONFIG_LIBAVCODEC_A'
6456 _def_libavcodec_so='#undef CONFIG_LIBAVCODEC_SO'
6457 test "$_libavcodec_a" = yes || test "$_libavcodec_so" = yes && _libavcodec=yes
6458 test "$_libavcodec" = yes && _def_libavcodec='#define CONFIG_LIBAVCODEC 1'
6459 test "$_libavcodec_a" = yes && _def_libavcodec_a='#define CONFIG_LIBAVCODEC_A 1'
6460 test "$_libavcodec_so" = yes && _def_libavcodec_so='#define CONFIG_LIBAVCODEC_SO 1'
6461 test "$_libavcodec_mpegaudio_hp" = yes \
6462 && _def_libavcodec_mpegaudio_hp='#define CONFIG_MPEGAUDIO_HP 1'
6463 if test "$_libavcodec_a" = yes ; then
6464 _codecmodules="libavcodec $_codecmodules"
6465 elif test "$_libavcodec_so" = yes ; then
6466 _codecmodules="libavcodec.so $_codecmodules"
6467 else
6468 _nocodecmodules="libavcodec $_nocodecmodules"
6470 echores "$_libavcodec"
6472 echocheck "FFmpeg libavformat"
6473 if test "$_libavformat_a" = auto ; then
6474 _libavformat_a=no
6475 if test -d ffmpeg/libavformat && test -f ffmpeg/libavformat/utils.c ; then
6476 _libavformat_a=yes
6477 _res_comment="static"
6479 elif test "$_libavformat_so" = auto ; then
6480 _libavformat_so=no
6481 cat > $TMPC <<EOF
6482 #include <libavformat/avformat.h>
6483 #include <libavcodec/opt.h>
6484 int main(void) { av_alloc_format_context(); return 0; }
6486 if $_pkg_config --exists libavformat ; then
6487 _inc_libavformat=`$_pkg_config --cflags libavformat`
6488 _ld_tmp=`$_pkg_config --libs libavformat`
6489 cc_check $_inc_libavformat $_ld_tmp && _ld_extra="$_ld_extra $_ld_tmp" \
6490 && _libavformat_so=yes
6491 elif cc_check $_ld_lm -lavformat ; then
6492 _ld_extra="$_ld_extra -lavformat"
6493 _libavformat_so=yes
6494 _res_comment="using libavformat.so, but static libavformat is recommended"
6497 _libavformat=no
6498 _def_libavformat='#undef CONFIG_LIBAVFORMAT'
6499 _def_libavformat_a='#undef CONFIG_LIBAVFORMAT_A'
6500 _def_libavformat_so='#undef CONFIG_LIBAVFORMAT_SO'
6501 test "$_libavformat_a" = yes || test "$_libavformat_so" = yes && _libavformat=yes
6502 test "$_libavformat" = yes && _def_libavformat='#define CONFIG_LIBAVFORMAT 1'
6503 test "$_libavformat_a" = yes && _def_libavformat_a='#define CONFIG_LIBAVFORMAT_A 1'
6504 test "$_libavformat_so" = yes \
6505 && _def_libavformat_so='#define CONFIG_LIBAVFORMAT_SO 1'
6506 echores "$_libavformat"
6508 echocheck "FFmpeg libpostproc"
6509 if test "$_libpostproc_a" = auto ; then
6510 _libpostproc_a=no
6511 if test -d ffmpeg/libpostproc && test -f ffmpeg/libpostproc/postprocess.h ; then
6512 _libpostproc_a='yes'
6513 _res_comment="static"
6515 elif test "$_libpostproc_so" = auto ; then
6516 _libpostproc_so=no
6517 cat > $TMPC << EOF
6518 #define CONFIG_LIBPOSTPROC 1
6519 #include <inttypes.h>
6520 #include <libpostproc/postprocess.h>
6521 int main(void) { pp_get_mode_by_name_and_quality("de", 0); return 0; }
6523 if cc_check -lpostproc $_ld_lm ; then
6524 _ld_extra="$_ld_extra -lpostproc"
6525 _libpostproc_so=yes
6526 _res_comment="using libpostproc.so, but static libpostproc is recommended"
6529 _libpostproc=no
6530 _def_libpostproc='#undef CONFIG_LIBPOSTPROC'
6531 _def_libpostproc_a='#undef CONFIG_LIBPOSTPROC_A'
6532 _def_libpostproc_so='#undef CONFIG_LIBPOSTPROC_SO'
6533 test "$_libpostproc_a" = yes || test "$_libpostproc_so" = yes && _libpostproc=yes
6534 test "$_libpostproc" = yes && _def_libpostproc='#define CONFIG_LIBPOSTPROC 1'
6535 test "$_libpostproc_a" = yes && _def_libpostproc_a='#define CONFIG_LIBPOSTPROC_A 1'
6536 test "$_libpostproc_so" = yes \
6537 && _def_libpostproc_so='#define CONFIG_LIBPOSTPROC_SO 1'
6538 echores "$_libpostproc"
6541 echocheck "libamr narrowband"
6542 if test "$_libamr_nb" = auto ; then
6543 _libamr_nb=no
6544 cat > $TMPC << EOF
6545 #include <amrnb/sp_dec.h>
6546 int main(void) { Speech_Decode_Frame_init(); return 0; }
6548 cc_check -lamrnb && _libamr_nb=yes
6549 if test "$_libavcodec_a" != yes ; then
6550 _libamr_nb=no
6551 _res_comment="libavcodec (static) is required by libamr_nb, sorry"
6554 if test "$_libamr_nb" = yes ; then
6555 _libamr=yes
6556 _ld_extra="$_ld_extra -lamrnb"
6557 _def_libamr='#define CONFIG_LIBAMR 1'
6558 _def_libamr_nb='#define CONFIG_LIBAMR_NB 1'
6559 _libavdecoders="$_libavdecoders LIBAMR_NB_DECODER"
6560 _libavencoders="$_libavencoders LIBAMR_NB_ENCODER"
6561 _codecmodules="libamr_nb $_codecmodules"
6562 else
6563 _def_libamr_nb='#undef CONFIG_LIBAMR_NB'
6564 _nocodecmodules="libamr_nb $_nocodecmodules"
6566 echores "$_libamr_nb"
6569 echocheck "libamr wideband"
6570 if test "$_libamr_wb" = auto ; then
6571 _libamr_wb=no
6572 cat > $TMPC << EOF
6573 #include <amrwb/dec_if.h>
6574 int main(void) { D_IF_init(); return 0; }
6576 cc_check -lamrwb && _libamr_wb=yes
6577 if test "$_libavcodec_a" != yes ; then
6578 _libamr_wb=no
6579 _res_comment="libavcodec (static) is required by libamr_wb, sorry"
6582 if test "$_libamr_wb" = yes ; then
6583 _libamr=yes
6584 _ld_extra="$_ld_extra -lamrwb"
6585 _def_libamr='#define CONFIG_LIBAMR 1'
6586 _def_libamr_wb='#define CONFIG_LIBAMR_WB 1'
6587 _libavdecoders="$_libavdecoders LIBAMR_WB_DECODER"
6588 _libavencoders="$_libavencoders LIBAMR_WB_ENCODER"
6589 _codecmodules="libamr_wb $_codecmodules"
6590 else
6591 _def_libamr_wb='#undef CONFIG_LIBAMR_WB'
6592 _nocodecmodules="libamr_wb $_nocodecmodules"
6594 echores "$_libamr_wb"
6596 echocheck "libdv-0.9.5+"
6597 if test "$_libdv" = auto ; then
6598 _libdv=no
6599 cat > $TMPC <<EOF
6600 #include <libdv/dv.h>
6601 int main(void) { dv_encoder_t* enc=dv_encoder_new(1,1,1); return 0; }
6603 cc_check -ldv $_ld_pthread $_ld_lm && _libdv=yes
6605 if test "$_libdv" = yes ; then
6606 _def_libdv='#define CONFIG_LIBDV095 1'
6607 _ld_extra="$_ld_extra -ldv"
6608 _codecmodules="libdv $_codecmodules"
6609 else
6610 _def_libdv='#undef CONFIG_LIBDV095'
6611 _nocodecmodules="libdv $_nocodecmodules"
6613 echores "$_libdv"
6616 echocheck "Xvid"
6617 if test "$_xvid" = auto ; then
6618 _xvid=no
6619 cat > $TMPC << EOF
6620 #include <xvid.h>
6621 int main(void) { xvid_global(0, 0, 0, 0); return 0; }
6623 for _ld_tmp in "-lxvidcore $_ld_lm" "-lxvidcore $_ld_lm $_ld_pthread" ; do
6624 cc_check $_ld_tmp && _ld_extra="$_ld_extra $_ld_tmp" && _xvid=yes && break
6625 done
6628 if test "$_xvid" = yes ; then
6629 _def_xvid='#define CONFIG_XVID4 1'
6630 _codecmodules="xvid $_codecmodules"
6631 else
6632 _def_xvid='#undef CONFIG_XVID4'
6633 _nocodecmodules="xvid $_nocodecmodules"
6635 echores "$_xvid"
6637 echocheck "Xvid two pass plugin"
6638 if test "$_xvid" = yes && test "$_xvid_lavc" = auto ; then
6639 cat > $TMPC << EOF
6640 #include <xvid.h>
6641 int main(void) { xvid_plugin_2pass2_t s; s.vbv_size=0; return 0; }
6643 cc_check && _xvid_lavc=yes
6645 if test "$_xvid_lavc" = yes ; then
6646 _def_xvid_lavc='#define CONFIG_LIBXVID 1'
6647 _libavencoders="$_libavencoders LIBXVID_ENCODER"
6648 else
6649 _xvid_lavc=no
6650 _def_xvid_lavc='#undef CONFIG_LIBXVID'
6652 echores "$_xvid_lavc"
6655 echocheck "x264"
6656 if test "$_x264" = auto ; then
6657 cat > $TMPC << EOF
6658 #include <inttypes.h>
6659 #include <x264.h>
6660 #if X264_BUILD < 59
6661 #error We do not support old versions of x264. Get the latest from SVN.
6662 #endif
6663 int main(void) { x264_encoder_open((void*)0); return 0; }
6665 _x264=no
6666 for _ld_x264 in "-lx264 $_ld_pthread" "-lx264 $_ld_pthread $_ld_lm" ; do
6667 cc_check $_ld_x264 && _libs_mencoder="$_libs_mencoder $_ld_x264" && _x264=yes && break
6668 done
6671 if test "$_x264" = yes ; then
6672 _def_x264='#define CONFIG_X264 1'
6673 _codecmodules="x264 $_codecmodules"
6674 test "$_x264_lavc" = auto && _x264_lavc=yes
6675 if test "$_x264_lavc" = yes ; then
6676 _def_x264_lavc='#define CONFIG_LIBX264 1'
6677 _libs_mplayer="$_libs_mplayer $_ld_x264"
6678 _libavencoders="$_libavencoders LIBX264_ENCODER"
6680 else
6681 _x264_lavc=no
6682 _def_x264='#undef CONFIG_X264'
6683 _def_x264_lavc='#undef CONFIG_LIBX264'
6684 _nocodecmodules="x264 $_nocodecmodules"
6686 _res_comment="in libavcodec: $_x264_lavc"
6687 echores "$_x264"
6690 echocheck "libdirac"
6691 if test "$_libdirac_lavc" = auto; then
6692 _libdirac_lavc=no
6693 if test "$_libavcodec_a" != yes; then
6694 _res_comment="libavcodec (static) is required by libdirac, sorry"
6695 else
6696 cat > $TMPC << EOF
6697 #include <libdirac_encoder/dirac_encoder.h>
6698 #include <libdirac_decoder/dirac_parser.h>
6699 int main(void)
6701 dirac_encoder_context_t enc_ctx;
6702 dirac_decoder_t *dec_handle;
6703 dirac_encoder_context_init(&enc_ctx, VIDEO_FORMAT_SD_576I50);
6704 dec_handle = dirac_decoder_init(0);
6705 if (dec_handle)
6706 dirac_decoder_close(dec_handle);
6707 return 0;
6710 if $_pkg_config --exists dirac ; then
6711 _inc_dirac=`$_pkg_config --silence-errors --cflags dirac`
6712 _ld_dirac=`$_pkg_config --silence-errors --libs dirac`
6713 cc_check $_inc_dirac $_ld_dirac &&
6714 _libdirac_lavc=yes &&
6715 _inc_extra="$_inc_extra $_inc_dirac" &&
6716 _ld_extra="$_ld_extra $_ld_dirac"
6720 if test "$_libdirac_lavc" = yes ; then
6721 _def_libdirac_lavc='#define CONFIG_LIBDIRAC 1'
6722 _libavencoders="$_libavencoders LIBDIRAC_ENCODER"
6723 _libavdecoders="$_libavdecoders LIBDIRAC_DECODER"
6724 _codecmodules="libdirac $_codecmodules"
6725 else
6726 _def_libdirac_lavc='#undef CONFIG_LIBDIRAC'
6727 _nocodecmodules="libdirac $_nocodecmodules"
6729 echores "$_libdirac_lavc"
6732 echocheck "libschroedinger"
6733 if test "$_libschroedinger_lavc" = auto ; then
6734 _libschroedinger_lavc=no
6735 if test "$_libavcodec_a" != yes; then
6736 _res_comment="libavcodec (static) is required by libschroedinger, sorry"
6737 else
6738 cat > $TMPC << EOF
6739 #include <schroedinger/schro.h>
6740 int main(void) { schro_init(); return 0; }
6742 if $_pkg_config --exists schroedinger-1.0 ; then
6743 _inc_schroedinger=`$_pkg_config --silence-errors --cflags schroedinger-1.0`
6744 _ld_schroedinger=`$_pkg_config --silence-errors --libs schroedinger-1.0`
6745 cc_check $_inc_schroedinger $_ld_schroedinger &&
6746 _libschroedinger_lavc=yes &&
6747 _inc_extra="$_inc_extra $_inc_schroedinger" &&
6748 _ld_extra="$_ld_extra $_ld_schroedinger"
6752 if test "$_libschroedinger_lavc" = yes ; then
6753 _def_libschroedinger_lavc='#define CONFIG_LIBSCHROEDINGER 1'
6754 _libavencoders="$_libavencoders LIBSCHROEDINGER_ENCODER"
6755 _libavdecoders="$_libavdecoders LIBSCHROEDINGER_DECODER"
6756 _codecmodules="libschroedinger $_codecmodules"
6757 else
6758 _def_libschroedinger_lavc='#undef CONFIG_LIBSCHROEDINGER'
6759 _nocodecmodules="libschroedinger $_nocodecmodules"
6761 echores "$_libschroedinger_lavc"
6763 echocheck "libnut"
6764 if test "$_libnut" = auto ; then
6765 cat > $TMPC << EOF
6766 #include <stdio.h>
6767 #include <stdlib.h>
6768 #include <inttypes.h>
6769 #include <libnut.h>
6770 int main(void) { (void)nut_error(0); return 0; }
6772 _libnut=no
6773 cc_check -lnut && _libnut=yes
6776 if test "$_libnut" = yes ; then
6777 _def_libnut='#define CONFIG_LIBNUT 1'
6778 _ld_extra="$_ld_extra -lnut"
6779 else
6780 _def_libnut='#undef CONFIG_LIBNUT'
6782 echores "$_libnut"
6784 #check must be done after libavcodec one
6785 echocheck "zr"
6786 if test "$_zr" = auto ; then
6787 #36067's seem to identify themselves as 36057PQC's, so the line
6788 #below should work for 36067's and 36057's.
6789 if grep -q -s -e "Multimedia video controller: Zoran Corporation ZR36057" /proc/pci ; then
6790 _zr=yes
6791 else
6792 _zr=no
6795 if test "$_zr" = yes ; then
6796 if test "$_libavcodec_a" = yes ; then
6797 _def_zr='#define HAVE_ZR 1'
6798 _vosrc="$_vosrc vo_zr2.c vo_zr.c jpeg_enc.c"
6799 _vomodules="zr zr2 $_vomodules"
6800 else
6801 _res_comment="libavcodec (static) is required by zr, sorry"
6802 _novomodules="zr $_novomodules"
6803 _def_zr='#undef HAVE_ZR'
6805 else
6806 _def_zr='#undef HAVE_ZR'
6807 _novomodules="zr zr2 $_novomodules"
6809 echores "$_zr"
6811 # mencoder requires (optional) those libs: libmp3lame
6812 if test "$_mencoder" != no ; then
6814 echocheck "libmp3lame (for mencoder)"
6815 _def_mp3lame_preset='#undef CONFIG_MP3LAME_PRESET'
6816 _def_mp3lame_preset_medium='#undef CONFIG_MP3LAME_PRESET_MEDIUM'
6817 if test "$_mp3lame" = auto ; then
6818 _mp3lame=no
6819 cat > $TMPC <<EOF
6820 #include <lame/lame.h>
6821 int main(void) { lame_version_t lv; (void) lame_init();
6822 get_lame_version_numerical(&lv); printf("%d%d\n",lv.major,lv.minor);
6823 return 0; }
6825 cc_check -lmp3lame $_ld_lm && tmp_run && _mp3lame=yes
6827 if test "$_mp3lame" = yes ; then
6828 _def_mp3lame="#define CONFIG_MP3LAME"
6829 _ld_mp3lame=-lmp3lame
6830 _libs_mencoder="$_libs_mencoder $_ld_mp3lame"
6831 cat > $TMPC << EOF
6832 #include <lame/lame.h>
6833 int main(void) { lame_set_preset(NULL, STANDARD_FAST); return 0; }
6835 cc_check $_ld_mp3lame $_ld_lm && _def_mp3lame_preset="#define CONFIG_MP3LAME_PRESET"
6836 cat > $TMPC << EOF
6837 #include <lame/lame.h>
6838 int main(void) { lame_set_preset(NULL, MEDIUM_FAST); return 0; }
6840 cc_check $_ld_mp3lame $_ld_lm && _def_mp3lame_preset_medium="#define CONFIG_MP3LAME_PRESET_MEDIUM"
6841 test "$_mp3lame_lavc" = auto && _mp3lame_lavc=yes
6842 if test "$_mp3lame_lavc" = yes ; then
6843 _def_mp3lame_lavc="#define CONFIG_LIBMP3LAME 1"
6844 _libavencoders="$_libavencoders LIBMP3LAME_ENCODER"
6845 _libs_mplayer="$_libs_mplayer $_ld_mp3lame"
6847 else
6848 _mp3lame_lavc=no
6849 _def_mp3lame='#undef CONFIG_MP3LAME'
6850 _def_mp3lame_lavc="#undef CONFIG_LIBMP3LAME"
6852 _res_comment="in libavcodec: $_mp3lame_lavc"
6853 echores "$_mp3lame"
6857 echocheck "mencoder"
6858 if test "$_mencoder" = yes ; then
6859 _def_muxers='#define CONFIG_MUXERS 1'
6860 else
6861 # mpeg1video for vf_lavc, snow for vf_uspp and vf_mcdeint
6862 _libavencoders="MPEG1VIDEO_ENCODER SNOW_ENCODER"
6863 _libavmuxers=""
6865 echores "$_mencoder"
6867 echocheck "fastmemcpy"
6868 # fastmemcpy check is done earlier with tests of CPU & binutils features
6869 if test "$_fastmemcpy" = yes ; then
6870 _def_fastmemcpy='#define CONFIG_FASTMEMCPY 1'
6871 else
6872 _def_fastmemcpy='#undef CONFIG_FASTMEMCPY'
6874 echores "$_fastmemcpy"
6877 echocheck "UnRAR executable"
6878 if test "$_unrar_exec" = auto ; then
6879 _unrar_exec="yes"
6880 mingw32 && _unrar_exec="no"
6882 if test "$_unrar_exec" = yes ; then
6883 _def_unrar_exec='#define CONFIG_UNRAR_EXEC 1'
6884 else
6885 _def_unrar_exec='#undef CONFIG_UNRAR_EXEC'
6887 echores "$_unrar_exec"
6889 echocheck "TV interface"
6890 if test "$_tv" = yes ; then
6891 _def_tv='#define CONFIG_TV 1'
6892 _inputmodules="tv $_inputmodules"
6893 else
6894 _noinputmodules="tv $_noinputmodules"
6895 _def_tv='#undef CONFIG_TV'
6897 echores "$_tv"
6900 if freebsd || netbsd || openbsd || dragonfly || bsdos ; then
6901 echocheck "*BSD BT848 bt8xx header"
6902 _ioctl_bt848_h=no
6903 for file in "machine/ioctl_bt848.h" \
6904 "dev/bktr/ioctl_bt848.h" \
6905 "dev/video/bktr/ioctl_bt848.h" \
6906 "dev/ic/bt8xx.h" ; do
6907 cat > $TMPC <<EOF
6908 #include <sys/types.h>
6909 #include <sys/ioctl.h>
6910 #include <$file>
6911 int main(void) { ioctl(0, TVTUNER_GETFREQ, 0); return 0; }
6913 if cc_check ; then
6914 _ioctl_bt848_h=yes
6915 _ioctl_bt848_h_name="$file"
6916 break;
6918 done
6919 if test "$_ioctl_bt848_h" = yes ; then
6920 _def_ioctl_bt848_h_name="#define IOCTL_BT848_H_NAME <$_ioctl_bt848_h_name>"
6921 _res_comment="using $_ioctl_bt848_h_name"
6922 else
6923 _def_ioctl_bt848_h_name="#undef IOCTL_BT848_H_NAME"
6925 echores "$_ioctl_bt848_h"
6927 echocheck "*BSD ioctl_meteor.h"
6928 _ioctl_meteor_h=no
6929 for file in "machine/ioctl_meteor.h" \
6930 "dev/bktr/ioctl_meteor.h" \
6931 "dev/video/bktr/ioctl_meteor.h" ; do
6932 cat > $TMPC <<EOF
6933 #include <sys/types.h>
6934 #include <$file>
6935 int main(void) { ioctl(0, METEORSINPUT, 0); return 0; }
6937 if cc_check ; then
6938 _ioctl_meteor_h=yes
6939 _ioctl_meteor_h_name="$file"
6940 break;
6942 done
6943 if test "$_ioctl_meteor_h" = yes ; then
6944 _def_ioctl_meteor_h_name="#define IOCTL_METEOR_H_NAME <$_ioctl_meteor_h_name>"
6945 _res_comment="using $_ioctl_meteor_h_name"
6946 else
6947 _def_ioctl_meteor_h_name="#undef IOCTL_METEOR_H_NAME"
6949 echores "$_ioctl_meteor_h"
6951 echocheck "*BSD BrookTree 848 TV interface"
6952 if test "$_tv_bsdbt848" = auto ; then
6953 _tv_bsdbt848=no
6954 if test "$_tv" = yes ; then
6955 cat > $TMPC <<EOF
6956 #include <sys/types.h>
6957 $_def_ioctl_meteor_h_name
6958 $_def_ioctl_bt848_h_name
6959 #ifdef IOCTL_METEOR_H_NAME
6960 #include IOCTL_METEOR_H_NAME
6961 #endif
6962 #ifdef IOCTL_BT848_H_NAME
6963 #include IOCTL_BT848_H_NAME
6964 #endif
6965 int main(void) {
6966 ioctl(0, METEORSINPUT, 0);
6967 ioctl(0, TVTUNER_GETFREQ, 0);
6968 return 0;
6971 cc_check && _tv_bsdbt848=yes
6974 if test "$_tv_bsdbt848" = yes ; then
6975 _def_tv_bsdbt848='#define HAVE_TV_BSDBT848 1'
6976 _inputmodules="tv-bsdbt848 $_inputmodules"
6977 else
6978 _def_tv_bsdbt848='#undef HAVE_TV_BSDBT848'
6979 _noinputmodules="tv-bsdbt848 $_noinputmodules"
6981 echores "$_tv_bsdbt848"
6982 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos
6985 echocheck "DirectShow TV interface"
6986 if test "$_tv_dshow" = auto ; then
6987 _tv_dshow=no
6988 if test "$_tv" = yes && win32 ; then
6989 cat > $TMPC <<EOF
6990 #include <ole2.h>
6991 int main(void) {
6992 void* p;
6993 CoCreateInstance((GUID*)&GUID_NULL, NULL, CLSCTX_INPROC_SERVER, &GUID_NULL, &p);
6994 return 0;
6997 cc_check -lole32 -luuid && _tv_dshow=yes
7000 if test "$_tv_dshow" = yes ; then
7001 _inputmodules="tv-dshow $_inputmodules"
7002 _def_tv_dshow='#define HAVE_TV_DSHOW 1'
7003 _ld_extra="$_ld_extra -lole32 -luuid"
7004 else
7005 _noinputmodules="tv-dshow $_noinputmodules"
7006 _def_tv_dshow='#undef HAVE_TV_DSHOW'
7008 echores "$_tv_dshow"
7011 echocheck "Video 4 Linux TV interface"
7012 if test "$_tv_v4l1" = auto ; then
7013 _tv_v4l1=no
7014 if test "$_tv" = yes && linux ; then
7015 cat > $TMPC <<EOF
7016 #include <stdlib.h>
7017 #include <linux/videodev.h>
7018 int main(void) { return 0; }
7020 cc_check && _tv_v4l1=yes
7023 if test "$_tv_v4l1" = yes ; then
7024 _audio_input=yes
7025 _tv_v4l=yes
7026 _def_tv_v4l='#define HAVE_TV_V4L 1'
7027 _def_tv_v4l1='#define HAVE_TV_V4L1 1'
7028 _inputmodules="tv-v4l $_inputmodules"
7029 else
7030 _noinputmodules="tv-v4l1 $_noinputmodules"
7031 _def_tv_v4l='#undef HAVE_TV_V4L'
7033 echores "$_tv_v4l1"
7036 echocheck "Video 4 Linux 2 TV interface"
7037 if test "$_tv_v4l2" = auto ; then
7038 _tv_v4l2=no
7039 if test "$_tv" = yes && linux ; then
7040 cat > $TMPC <<EOF
7041 #include <stdlib.h>
7042 #include <linux/types.h>
7043 #include <linux/videodev2.h>
7044 int main(void) { return 0; }
7046 cc_check && _tv_v4l2=yes
7049 if test "$_tv_v4l2" = yes ; then
7050 _audio_input=yes
7051 _tv_v4l=yes
7052 _def_tv_v4l='#define HAVE_TV_V4L 1'
7053 _def_tv_v4l2='#define HAVE_TV_V4L2 1'
7054 _inputmodules="tv-v4l2 $_inputmodules"
7055 else
7056 _noinputmodules="tv-v4l2 $_noinputmodules"
7057 _def_tv_v4l2='#undef HAVE_TV_V4L2'
7059 echores "$_tv_v4l2"
7062 echocheck "TV teletext interface"
7063 if test "$_tv_teletext" = auto ; then
7064 _tv_teletext=no
7065 if test "$_freetype" = yes && test "$_pthreads" = yes; then
7066 if test "$_tv_v4l2" = yes || test "$_v4l" = yes || test "$_tv_dshow" = yes; then
7067 _tv_teletext=yes
7071 if test "$_tv_teletext" = yes ; then
7072 _def_tv_teletext='#define HAVE_TV_TELETEXT 1'
7073 _inputmodules="tv-teletext $_inputmodules"
7074 else
7075 _noinputmodules="tv-teletext $_noinputmodules"
7076 _def_tv_teletext='#undef HAVE_TV_TELETEXT'
7078 echores "$_tv_teletext"
7081 echocheck "Radio interface"
7082 if test "$_radio" = yes ; then
7083 _def_radio='#define CONFIG_RADIO 1'
7084 _inputmodules="radio $_inputmodules"
7085 if test "$_alsa9" != yes -a "$_alsa1x" != yes -a "$_ossaudio" != yes ; then
7086 _radio_capture=no
7088 if test "$_radio_capture" = yes ; then
7089 _audio_input=yes
7090 _def_radio_capture="#define CONFIG_RADIO_CAPTURE 1"
7091 else
7092 _def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7094 else
7095 _noinputmodules="radio $_noinputmodules"
7096 _def_radio='#undef CONFIG_RADIO'
7097 _def_radio_capture="#undef CONFIG_RADIO_CAPTURE"
7098 _radio_capture=no
7100 echores "$_radio"
7101 echocheck "Capture for Radio interface"
7102 echores "$_radio_capture"
7104 echocheck "Video 4 Linux 2 Radio interface"
7105 if test "$_radio_v4l2" = auto ; then
7106 _radio_v4l2=no
7107 if test "$_radio" = yes && linux ; then
7108 cat > $TMPC <<EOF
7109 #include <stdlib.h>
7110 #include <linux/types.h>
7111 #include <linux/videodev2.h>
7112 int main(void) { return 0; }
7114 cc_check && _radio_v4l2=yes
7117 if test "$_radio_v4l2" = yes ; then
7118 _def_radio_v4l2='#define HAVE_RADIO_V4L2 1'
7119 else
7120 _def_radio_v4l2='#undef HAVE_RADIO_V4L2'
7122 echores "$_radio_v4l2"
7124 echocheck "Video 4 Linux Radio interface"
7125 if test "$_radio_v4l" = auto ; then
7126 _radio_v4l=no
7127 if test "$_radio" = yes && linux ; then
7128 cat > $TMPC <<EOF
7129 #include <stdlib.h>
7130 #include <linux/videodev.h>
7131 int main(void) { return 0; }
7133 cc_check && _radio_v4l=yes
7136 if test "$_radio_v4l" = yes ; then
7137 _def_radio_v4l='#define HAVE_RADIO_V4L 1'
7138 else
7139 _def_radio_v4l='#undef HAVE_RADIO_V4L'
7141 echores "$_radio_v4l"
7143 if freebsd || netbsd || openbsd || dragonfly || bsdos \
7144 && test "$_radio" = yes && test "$_radio_bsdbt848" = auto ; then
7145 echocheck "*BSD BrookTree 848 Radio interface"
7146 _radio_bsdbt848=no
7147 cat > $TMPC <<EOF
7148 #include <sys/types.h>
7149 $_def_ioctl_bt848_h_name
7150 #ifdef IOCTL_BT848_H_NAME
7151 #include IOCTL_BT848_H_NAME
7152 #endif
7153 int main(void) { ioctl(0, RADIO_GETFREQ, 0); return 0; }
7155 cc_check && _radio_bsdbt848=yes
7156 echores "$_radio_bsdbt848"
7157 fi #if freebsd || netbsd || openbsd || dragonfly || bsdos && _radio && _radio_bsdbt848
7159 if test "$_radio_bsdbt848" = yes ; then
7160 _def_radio_bsdbt848='#define HAVE_RADIO_BSDBT848 1'
7161 else
7162 _def_radio_bsdbt848='#undef HAVE_RADIO_BSDBT848'
7165 if test "$_radio_v4l" = no && test "$_radio_v4l2" = no && \
7166 test "$_radio_bsdbt848" = no && test "$_radio" = yes ; then
7167 die "Radio driver requires BSD BT848, V4L or V4L2!"
7170 echocheck "Video 4 Linux 2 MPEG PVR interface"
7171 if test "$_pvr" = auto ; then
7172 _pvr=no
7173 if test "$_tv_v4l2" = yes && linux ; then
7174 cat > $TMPC <<EOF
7175 #include <stdlib.h>
7176 #include <inttypes.h>
7177 #include <linux/types.h>
7178 #include <linux/videodev2.h>
7179 int main(void) { struct v4l2_ext_controls ext; return 0; }
7181 cc_check && _pvr=yes
7184 if test "$_pvr" = yes ; then
7185 _def_pvr='#define HAVE_PVR 1'
7186 _inputmodules="pvr $_inputmodules"
7187 else
7188 _noinputmodules="pvr $_noinputmodules"
7189 _def_pvr='#undef HAVE_PVR'
7191 echores "$_pvr"
7194 echocheck "audio select()"
7195 if test "$_select" = no ; then
7196 _def_select='#undef HAVE_AUDIO_SELECT'
7197 elif test "$_select" = yes ; then
7198 _def_select='#define HAVE_AUDIO_SELECT 1'
7200 echores "$_select"
7203 echocheck "ftp"
7204 if ! beos && test "$_ftp" = yes ; then
7205 _def_ftp='#define HAVE_FTP 1'
7206 _inputmodules="ftp $_inputmodules"
7207 else
7208 _noinputmodules="ftp $_noinputmodules"
7209 _def_ftp='#undef HAVE_FTP'
7211 echores "$_ftp"
7213 echocheck "vstream client"
7214 if test "$_vstream" = auto ; then
7215 _vstream=no
7216 cat > $TMPC <<EOF
7217 #include <vstream-client.h>
7218 void vstream_error(const char *format, ... ) {}
7219 int main(void) { vstream_start(); return 0; }
7221 cc_check -lvstream-client && _vstream=yes
7223 if test "$_vstream" = yes ; then
7224 _def_vstream='#define HAVE_VSTREAM 1'
7225 _inputmodules="vstream $_inputmodules"
7226 _ld_extra="$_ld_extra -lvstream-client"
7227 else
7228 _noinputmodules="vstream $_noinputmodules"
7229 _def_vstream='#undef HAVE_VSTREAM'
7231 echores "$_vstream"
7233 # endian testing
7234 echocheck "byte order"
7235 if test "$_big_endian" = auto ; then
7236 cat > $TMPC <<EOF
7237 short ascii_name[] = { (('M'<<8)|'P'),(('l'<<8)|'a'),(('y'<<8)|'e'),(('r'<<8)|'B'),
7238 (('i'<<8)|'g'),(('E'<<8)|'n'),(('d'<<8)|'i'),(('a'<<8)|'n'),0};
7239 int main(void) { return (int)ascii_name; }
7241 if cc_check ; then
7242 if strings $TMPEXE | grep -q -l MPlayerBigEndian ; then
7243 _big_endian=yes
7244 else
7245 _big_endian=no
7247 else
7248 echo ${_echo_n} "failed to autodetect byte order, defaulting to ${_echo_c}"
7251 if test "$_big_endian" = yes ; then
7252 _byte_order='big-endian'
7253 _def_words_endian='#define WORDS_BIGENDIAN 1'
7254 else
7255 _byte_order='little-endian'
7256 _def_words_endian='#undef WORDS_BIGENDIAN'
7258 echores "$_byte_order"
7260 echocheck "OSD menu"
7261 if test "$_menu" = yes ; then
7262 _def_menu='#define CONFIG_MENU 1'
7263 test $_dvbin = "yes" && _menu_dvbin=yes
7264 else
7265 _def_menu='#undef CONFIG_MENU'
7266 _menu_dvbin=no
7268 echores "$_menu"
7271 echocheck "Subtitles sorting"
7272 if test "$_sortsub" = yes ; then
7273 _def_sortsub='#define CONFIG_SORTSUB 1'
7274 else
7275 _def_sortsub='#undef CONFIG_SORTSUB'
7277 echores "$_sortsub"
7280 echocheck "XMMS inputplugin support"
7281 if test "$_xmms" = yes ; then
7282 if ( xmms-config --version ) >/dev/null 2>&1 ; then
7283 _xmmsplugindir=`xmms-config --input-plugin-dir`
7284 _xmmslibdir=`xmms-config --exec-prefix`/lib
7285 else
7286 _xmmsplugindir=/usr/lib/xmms/Input
7287 _xmmslibdir=/usr/lib
7290 _def_xmms='#define HAVE_XMMS 1'
7291 if darwin ; then
7292 _ld_extra="$_ld_extra ${_xmmslibdir}/libxmms.dylib"
7293 else
7294 _ld_extra="$_ld_extra ${_xmmslibdir}/libxmms.so.1 -export-dynamic"
7296 else
7297 _def_xmms='#undef HAVE_XMMS'
7299 echores "$_xmms"
7301 echocheck "inet6"
7302 if test "$_inet6" = auto ; then
7303 cat > $TMPC << EOF
7304 #include <sys/types.h>
7305 #if !defined(_WIN32) || defined(__CYGWIN__)
7306 #include <sys/socket.h>
7307 #include <netinet/in.h>
7308 #else
7309 #include <ws2tcpip.h>
7310 #endif
7311 int main(void) { struct sockaddr_in6 six; socket(AF_INET6, SOCK_STREAM, AF_INET6); return 0; }
7313 _inet6=no
7314 if cc_check $_ld_sock ; then
7315 _inet6=yes
7318 if test "$_inet6" = yes ; then
7319 _def_inet6='#define HAVE_AF_INET6 1'
7320 else
7321 _def_inet6='#undef HAVE_AF_INET6'
7323 echores "$_inet6"
7326 echocheck "gethostbyname2"
7327 if test "$_gethostbyname2" = auto ; then
7328 cat > $TMPC << EOF
7329 #include <sys/types.h>
7330 #include <sys/socket.h>
7331 #include <netdb.h>
7332 int main(void) { gethostbyname2("", AF_INET); return 0; }
7334 _gethostbyname2=no
7335 if cc_check ; then
7336 _gethostbyname2=yes
7340 if test "$_gethostbyname2" = yes ; then
7341 _def_gethostbyname2='#define HAVE_GETHOSTBYNAME2 1'
7342 else
7343 _def_gethostbyname2='#undef HAVE_GETHOSTBYNAME2'
7345 echores "$_gethostbyname2"
7348 # --------------- GUI specific tests begin -------------------
7349 echocheck "GUI"
7350 echo "$_gui"
7351 if test "$_gui" = yes ; then
7353 # Required libraries
7354 if test "$_libavcodec" != yes ||
7355 ! echo $_libavdecoders | grep -q PNG_DECODER ; then
7356 die "The GUI requires libavcodec with PNG support (needs zlib)."
7358 test "$_freetype" = no && test "$_bitmap_font" = no && \
7359 die "The GUI requires either FreeType or bitmap font support."
7360 if ! win32 ; then
7361 _gui_gtk=yes
7362 test "$_x11" != yes && die "X11 support required for GUI compilation."
7364 echocheck "XShape extension"
7365 if test "$_xshape" = auto ; then
7366 _xshape=no
7367 cat > $TMPC << EOF
7368 #include <X11/Xlib.h>
7369 #include <X11/Xproto.h>
7370 #include <X11/Xutil.h>
7371 #include <X11/extensions/shape.h>
7372 #include <stdlib.h>
7373 int main(void) {
7374 char *name = ":0.0";
7375 Display *wsDisplay;
7376 int exitvar = 0;
7377 int eventbase, errorbase;
7378 if (getenv("DISPLAY"))
7379 name=getenv("DISPLAY");
7380 wsDisplay=XOpenDisplay(name);
7381 if (!XShapeQueryExtension(wsDisplay,&eventbase,&errorbase))
7382 exitvar=1;
7383 XCloseDisplay(wsDisplay);
7384 return exitvar;
7387 cc_check -lXext && _xshape=yes
7389 if test "$_xshape" = yes ; then
7390 _def_xshape='#define HAVE_XSHAPE 1'
7391 else
7392 die "The GUI requires the X11 extension XShape (which was not found)."
7394 echores "$_xshape"
7396 #Check for GTK
7397 if test "$_gtk1" = no ; then
7398 #Check for GTK2 :
7399 echocheck "GTK+ version"
7401 if $_pkg_config gtk+-2.0 --exists ; then
7402 _gtk=`$_pkg_config gtk+-2.0 --modversion 2>/dev/null`
7403 _inc_extra="$_inc_extra `$_pkg_config gtk+-2.0 --cflags 2>/dev/null`"
7404 _libs_mplayer="$_libs_mplayer `$_pkg_config gtk+-2.0 --libs 2>/dev/null`"
7405 echores "$_gtk"
7407 # Check for GLIB2
7408 if $_pkg_config glib-2.0 --exists ; then
7409 echocheck "glib version"
7410 _glib=`$_pkg_config glib-2.0 --modversion 2>/dev/null`
7411 _libs_mplayer="$_libs_mplayer `$_pkg_config glib-2.0 --libs 2>/dev/null`"
7412 echores "$_glib"
7414 _def_gui='#define CONFIG_GUI 1'
7415 _def_gtk2='#define CONFIG_GTK2 1'
7416 else
7417 _gtk1=yes
7418 echo "GLIB-2 devel packages were not found, trying GTK 1.2"
7420 else
7421 echo "GTK-2 devel packages were not found, trying GTK 1.2"
7422 _gtk1=yes
7426 if test "$_gtk1" = yes ; then
7427 # Check for old GTK (1.2.x)
7428 echocheck "GTK version"
7429 if test -z "$_gtkconfig" ; then
7430 if ( gtk-config --version ) >/dev/null 2>&1 ; then
7431 _gtkconfig="gtk-config"
7432 elif ( gtk12-config --version ) >/dev/null 2>&1 ; then
7433 _gtkconfig="gtk12-config"
7434 else
7435 die "The GUI requires GTK devel packages (which were not found)."
7438 _gtk=`$_gtkconfig --version 2>&1`
7439 _inc_extra="$_inc_extra `$_gtkconfig --cflags 2>&1`"
7440 _libs_mplayer="$_libs_mplayer `$_gtkconfig --libs 2>&1`"
7441 echores "$_gtk (using $_gtkconfig)"
7443 # Check for GLIB
7444 echocheck "glib version"
7445 if test -z "$_glibconfig" ; then
7446 if ( glib-config --version ) >/dev/null 2>&1 ; then
7447 _glibconfig="glib-config"
7448 elif ( glib12-config --version ) >/dev/null 2>&1 ; then
7449 _glibconfig="glib12-config"
7450 else
7451 die "The GUI requires GLIB devel packages (which were not found)"
7454 _glib=`$_glibconfig --version 2>&1`
7455 _libs_mplayer="$_libs_mplayer `$_glibconfig --libs 2>&1`"
7456 echores "$_glib (using $_glibconfig)"
7458 _def_gui='#define CONFIG_GUI 1'
7459 _def_gtk2='#undef CONFIG_GTK2'
7462 else #if ! win32
7463 _gui_win32=yes
7464 _libs_mplayer="$_libs_mplayer -lcomdlg32 -lcomctl32 -lshell32 -lkernel32"
7465 _def_gui='#define CONFIG_GUI 1'
7466 _def_gtk2='#undef CONFIG_GTK2'
7467 fi #if ! win32
7469 else #if test "$_gui"
7470 _def_gui='#undef CONFIG_GUI'
7471 _def_gtk2='#undef CONFIG_GTK2'
7472 fi #if test "$_gui"
7473 # --------------- GUI specific tests end -------------------
7476 if test "$_charset" = "noconv" ; then
7477 _charset=""
7479 if test "$_charset" ; then
7480 _def_charset="#define MSG_CHARSET \"$_charset\""
7481 else
7482 _def_charset="#undef MSG_CHARSET"
7485 if test -n "$_charset" && test "$_charset" != "UTF-8" ; then
7486 echocheck "iconv program"
7487 iconv -f UTF-8 -t $_charset ${_mp_help} > /dev/null 2>> "$TMPLOG"
7488 if test "$?" -ne 0 ; then
7489 echores "no"
7490 echo "No working iconv program found, use "
7491 echo "--charset=UTF-8 to continue anyway."
7492 echo "If you also have problems with iconv library functions use --charset=noconv."
7493 echo "Messages in the GTK-2 interface will be broken then."
7494 exit 1
7495 else
7496 echores "yes"
7500 #############################################################################
7502 echocheck "automatic gdb attach"
7503 if test "$_crash_debug" = yes ; then
7504 _def_crash_debug='#define CRASH_DEBUG 1'
7505 else
7506 _def_crash_debug='#undef CRASH_DEBUG'
7507 _crash_debug=no
7509 echores "$_crash_debug"
7511 echocheck "compiler support for noexecstack"
7512 cat > $TMPC <<EOF
7513 int main(void) { return 0; }
7515 if cc_check -Wl,-z,noexecstack ; then
7516 _ld_extra="-Wl,-z,noexecstack $_ld_extra"
7517 echores "yes"
7518 else
7519 echores "no"
7523 # Dynamic linking flags
7524 # (FIXME: 'echocheck "dynamic linking"' above and modify here accordingly)
7525 _ld_dl_dynamic=''
7526 freebsd || netbsd || openbsd || dragonfly || bsdos && _ld_dl_dynamic='-rdynamic'
7527 if test "$_real" = yes || test "$_xanim" = yes && ! win32 && ! qnx && ! darwin && ! os2 ; then
7528 _ld_dl_dynamic='-rdynamic'
7531 _ld_extra="$_ld_extra $_ld_pthread $_ld_dl $_ld_dl_dynamic"
7532 bsdos && _ld_extra="$_ld_extra -ldvd"
7533 netbsd && x86_32 && _ld_extra="$_ld_extra -li386"
7534 openbsd && x86_32 && _ld_extra="$_ld_extra -li386"
7536 _def_debug='#undef MP_DEBUG'
7537 test "$_debug" != "" && _def_debug='#define MP_DEBUG 1'
7540 echocheck "joystick"
7541 _def_joystick='#undef HAVE_JOYSTICK'
7542 if test "$_joystick" = yes ; then
7543 if linux ; then
7544 # TODO add some check
7545 _def_joystick='#define HAVE_JOYSTICK 1'
7546 else
7547 _joystick="no"
7548 _res_comment="unsupported under $system_name"
7551 echores "$_joystick"
7553 echocheck "lirc"
7554 if test "$_lirc" = auto ; then
7555 _lirc=no
7556 cat > $TMPC <<EOF
7557 #include <lirc/lirc_client.h>
7558 int main(void) { return 0; }
7560 cc_check -llirc_client && _lirc=yes
7562 if test "$_lirc" = yes ; then
7563 _def_lirc='#define HAVE_LIRC 1'
7564 _ld_extra="$_ld_extra -llirc_client"
7565 else
7566 _def_lirc='#undef HAVE_LIRC'
7568 echores "$_lirc"
7570 echocheck "lircc"
7571 if test "$_lircc" = auto ; then
7572 _lircc=no
7573 cat > $TMPC <<EOF
7574 #include <lirc/lircc.h>
7575 int main(void) { return 0; }
7577 cc_check -llircc && _lircc=yes
7579 if test "$_lircc" = yes ; then
7580 _def_lircc='#define HAVE_LIRCC 1'
7581 _ld_extra="$_ld_extra -llircc"
7582 else
7583 _def_lircc='#undef HAVE_LIRCC'
7585 echores "$_lircc"
7587 if arm; then
7588 # Detect maemo development platform libraries availability (http://www.maemo.org),
7589 # they are used when run on Nokia 770|8x0
7590 echocheck "maemo (Nokia 770|8x0)"
7591 if test "$_maemo" = auto ; then
7592 _maemo=no
7593 cat > $TMPC << EOF
7594 #include <libosso.h>
7595 int main(void) { (void) osso_initialize("", "", 0, NULL); return 0; }
7597 cc_check `$_pkg_config --cflags --libs libosso 2>/dev/null` && _maemo=yes
7599 if test "$_maemo" = yes ; then
7600 _def_maemo='#define HAVE_MAEMO 1'
7601 _inc_extra="$_inc_extra `$_pkg_config --cflags libosso`"
7602 _ld_extra="$_ld_extra `$_pkg_config --libs libosso` -lXsp"
7603 else
7604 _def_maemo='#undef HAVE_MAEMO'
7606 echores "$_maemo"
7609 #this must be the last test to be performed or the ones following it will likely fail
7610 #because libdvdnavmini is intentionally not linked against libdvdread (to permit mplayer
7611 # to use its own copy of the library)
7612 echocheck "DVD support (libdvdnav)"
7613 if test "$_dvdnav" = auto ; then
7614 if test "$_dvdread_internal" = yes ; then
7615 _dvdnav=no
7616 _res_comment="Disabled in favor of the internal copy of dvdread. Append --disable-dvdread-internal."
7617 else
7618 $_dvdnavconfig --version --minilibs >> $TMPLOG 2>&1 || _dvdnav=no
7621 if test "$_dvdnav" = auto ; then
7622 cat > $TMPC <<EOF
7623 #include <inttypes.h>
7624 #include <dvdnav/dvdnav.h>
7625 int main(void) { dvdnav_t *dvd=0; return 0; }
7627 _dvdnav=no
7628 _dvdnavdir=`$_dvdnavconfig --cflags`
7629 _dvdnavlibs=`$_dvdnavconfig --libs`
7630 cc_check $_dvdnavdir $_dvdnavlibs $_ld_dl $_ld_pthread && _dvdnav=yes
7632 if test "$_dvdnav" = yes ; then
7633 _largefiles=yes
7634 _def_dvdnav='#define CONFIG_DVDNAV 1'
7635 _inc_extra="$_inc_extra `$_dvdnavconfig --cflags`"
7636 _ld_extra="$_ld_extra `$_dvdnavconfig --minilibs`"
7637 _inputmodules="dvdnav $_inputmodules"
7638 else
7639 _def_dvdnav='#undef CONFIG_DVDNAV'
7640 _noinputmodules="dvdnav $_noinputmodules"
7642 echores "$_dvdnav"
7645 #############################################################################
7647 # On OS/2 nm supports only a.out. So the -Zomf compiler option to generate
7648 # the OMF format needs to come after the 'extern symbol prefix' check, which
7649 # uses nm.
7650 if os2 ; then
7651 _ld_extra="$_ld_extra -Zomf -Zstack 16384 -Zbin-files -Zargs-wild"
7654 # linker paths should be the same for mencoder and mplayer
7655 _ld_tmp=""
7656 for I in $_libs_mplayer ; do
7657 _tmp=`echo $I | sed -e 's/^-L.*$//'`
7658 if test -z "$_tmp" ; then
7659 _ld_extra="$I $_ld_extra"
7660 else
7661 _ld_tmp="$_ld_tmp $I"
7663 done
7664 _libs_mplayer=$_ld_tmp
7667 #############################################################################
7668 if darwin ; then
7669 CFLAGS="$CFLAGS -mdynamic-no-pic -falign-loops=16 -shared-libgcc"
7670 if [ "$_cc_major" = 3 ] && [ "$_cc_minor" -lt 1 ]; then
7671 CFLAGS="$CFLAGS -no-cpp-precomp"
7674 if amigaos ; then
7675 CFLAGS="$CFLAGS -DNEWLIB -D__USE_INLINE__"
7677 # Thread support
7678 if linux ; then
7679 CFLAGS="$CFLAGS -D_REENTRANT"
7680 elif freebsd || netbsd || openbsd || bsdos ; then
7681 # FIXME bsd needs this so maybe other OS'es
7682 CFLAGS="$CFLAGS -D_THREAD_SAFE"
7684 # 64 bit file offsets?
7685 if test "$_largefiles" = yes || freebsd ; then
7686 CFLAGS="$CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
7687 if test "$_dvdread" = yes || test "$_libdvdcss_internal" = yes ; then
7688 # dvdread support requires this (for off64_t)
7689 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
7693 cat > $TMPC << EOF
7694 int main(void) { return 0; }
7696 if test "$cc_vendor" = "gnu" ; then
7697 cc_check -std=gnu99 && CFLAGS="-std=gnu99 $CFLAGS"
7698 cc_check -Wno-pointer-sign && CFLAGS="-Wno-pointer-sign $CFLAGS"
7699 cc_check -Wdisabled-optimization && CFLAGS="-Wdisabled-optimization $CFLAGS"
7702 CFLAGS_FFMPEG="-I../.. $CFLAGS"
7703 CFLAGS="-I. -Iffmpeg $CFLAGS"
7704 CXXFLAGS=" $CFLAGS -D__STDC_LIMIT_MACROS"
7706 cc_check -mno-omit-leaf-frame-pointer && CFLAG_NO_OMIT_LEAF_FRAME_POINTER="-mno-omit-leaf-frame-pointer"
7708 #############################################################################
7709 echo "Creating config.mak"
7710 cat > config.mak << EOF
7711 # -------- Generated by configure -----------
7713 # Ensure that locale settings do not interfere with shell commands.
7714 export LC_ALL = C
7716 DOC_LANG = $doc_lang
7717 DOC_LANGS = $doc_langs
7718 DOC_LANG_ALL = $doc_lang_all
7719 MAN_LANG = $man_lang
7720 MAN_LANGS = $man_langs
7721 MAN_LANG_ALL = $man_lang_all
7723 DESTDIR =
7724 prefix = \$(DESTDIR)$_prefix
7725 BINDIR = \$(DESTDIR)$_bindir
7726 DATADIR = \$(DESTDIR)$_datadir
7727 MANDIR = \$(DESTDIR)$_mandir
7728 CONFDIR = \$(DESTDIR)$_confdir
7729 LIBDIR = \$(DESTDIR)$_libdir
7731 AR = $_ar
7732 CC = $_cc
7733 CXX = $_cc
7734 HOST_CC = $_host_cc
7735 RANLIB = $_ranlib
7736 WINDRES = $_windres
7737 INSTALL = $_install
7738 INSTALLSTRIP = $_install_strip
7740 EXTRA_INC = $_inc_extra
7741 EXTRAXX_INC = $_inc_extra $_inc_extraxx
7742 CFLAGS = $CFLAGS \$(EXTRA_INC)
7743 OPTFLAGS = $CFLAGS \$(EXTRA_INC)
7744 FFMPEG_OFLAGS = $CFLAGS_FFMPEG \$(EXTRA_INC)
7745 CFLAG_NO_OMIT_LEAF_FRAME_POINTER = $CFLAG_NO_OMIT_LEAF_FRAME_POINTER
7746 CXXFLAGS = $CXXFLAGS \$(EXTRAXX_INC)
7747 CFLAG_STACKREALIGN = $_stackrealign
7748 LIBDVDCSS_DVDREAD_FLAGS = $_libdvdcss_dvdread_flags
7749 CFLAG_DHAHELPER = $cflag_dhahelper
7750 CFLAG_SVGALIB_HELPER = $cflag_svgalib_helper
7752 EXTRALIBS = $_extra_libs
7753 EXTRA_LIB = $_ld_extra $_ld_static $_ld_lm
7754 EXTRALIBS_MPLAYER = $_libs_mplayer
7755 EXTRALIBS_MENCODER = $_libs_mencoder
7757 CHARSET = $_charset
7758 HELP_FILE = $_mp_help
7760 EXESUF = $_exesuf
7762 $_target_arch
7763 $_target_arch_x86
7764 `echo $_cpuexts | tr '[a-z] ' '[A-Z]\n' | sed 's/^/HAVE_/;s/$/=yes/'`
7766 GETCH = $_getch
7767 TIMER = $_timer
7769 AO_SRCS = $_aosrc
7770 VO_SRCS = $_vosrc
7772 MENCODER = $_mencoder
7773 MPLAYER = $_mplayer
7775 #internal libraries
7776 LIBA52 = $_liba52
7777 LIBMPEG2 = $_libmpeg2
7778 MP3LIB = $_mp3lib
7779 TREMOR_INTERNAL = $_tremor_internal
7780 TREMOR_LOW = $_tremor_low
7782 HAVE_SYS_MMAN_H = $_mman
7783 HAVE_POSIX_SELECT = $_posix_select
7785 NEED_GETTIMEOFDAY = $_need_gettimeofday
7786 NEED_GLOB = $_need_glob
7787 NEED_MMAP = $_need_mmap
7788 NEED_SETENV = $_need_setenv
7789 NEED_SHMEM = $_need_shmem
7790 NEED_STRSEP = $_need_strsep
7791 NEED_SWAB = $_need_swab
7792 NEED_VSSCANF = $_need_vsscanf
7794 # audio output
7795 OSS = $_ossaudio
7796 ALSA9 = $_alsa9
7797 ALSA1X = $_alsa1x
7799 # features
7800 APPLE_IR = $_apple_ir
7801 APPLE_REMOTE = $_apple_remote
7802 AUDIO_INPUT = $_audio_input
7803 BITMAP_FONT = $_bitmap_font
7804 CDDA = $_cdda
7805 CDDB = $_cddb
7806 COREAUDIO = $_coreaudio
7807 COREVIDEO = $_corevideo
7808 DVBIN = $_dvbin
7809 DVDNAV = $_dvdnav
7810 DVDREAD = $_dvdread
7811 DVDREAD_INTERNAL = $_dvdread_internal
7812 FAAC=$_faac
7813 FAAD = $_faad
7814 FAAD_INTERNAL = $_faad_internal
7815 FREETYPE = $_freetype
7816 FTP = $_ftp
7817 GIF = $_gif
7818 GUI = $_gui
7819 GUI_GTK = $_gui_gtk
7820 GUI_WIN32 = $_gui_win32
7821 JOYSTICK = $_joystick
7822 JPEG = $_jpeg
7823 LADSPA = $_ladspa
7824 LIBASS = $_ass
7825 LIBDCA = $_libdca
7826 LIBDV = $_libdv
7827 LIBDVDCSS_INTERNAL = $_libdvdcss_internal
7828 LIBLZO = $_liblzo
7829 LIBMAD = $_mad
7830 LIBMENU = $_menu
7831 LIBMENU_DVBIN = $_menu_dvbin
7832 LIBNEMESI = $_nemesi
7833 LIBNUT = $_libnut
7834 LIBSMBCLIENT = $_smbsupport
7835 LIBTHEORA = $_theora
7836 LIBVORBIS = $_vorbis
7837 LIRC = $_lirc
7838 MACOSX_BUNDLE = $_macosx_bundle
7839 MACOSX_FINDER_SUPPORT = $_macosx_finder_support
7840 MP3LAME = $_mp3lame
7841 MPLAYER_NETWORK = $_network
7842 MUSEPACK = $_musepack
7843 NATIVE_RTSP = $_native_rtsp
7844 PE_EXECUTABLE = $_pe_executable
7845 PNG = $_png
7846 PVR = $_pvr
7847 QTX_CODECS = $_qtx
7848 QTX_CODECS_WIN32 = $_qtx_codecs_win32
7849 QTX_EMULATION = $_qtx_emulation
7850 QUARTZ = $_quartz
7851 RADIO=$_radio
7852 RADIO_CAPTURE=$_radio_capture
7853 REAL_CODECS = $_real
7854 SPEEX = $_speex
7855 STREAMING_LIVE555 = $_live
7856 STREAM_CACHE = $_stream_cache
7857 TOOLAME=$_toolame
7858 TV = $_tv
7859 TV_BSDBT848 = $_tv_bsdbt848
7860 TV_DSHOW = $_tv_dshow
7861 TV_TELETEXT = $_tv_teletext
7862 TV_V4L = $_tv_v4l
7863 TV_V4L1 = $_tv_v4l1
7864 TV_V4L2 = $_tv_v4l2
7865 TWOLAME=$_twolame
7866 UNRAR_EXEC = $_unrar_exec
7867 VCD = $_vcd
7868 VIDIX = $_vidix
7869 VIDIX_PCIDB = $_vidix_pcidb_val
7870 VIDIX_CYBERBLADE=$_vidix_drv_cyberblade
7871 VIDIX_IVTV=$_vidix_drv_ivtv
7872 VIDIX_MACH64=$_vidix_drv_mach64
7873 VIDIX_MGA=$_vidix_drv_mga
7874 VIDIX_MGA_CRTC2=$_vidix_drv_mga_crtc2
7875 VIDIX_NVIDIA=$_vidix_drv_nvidia
7876 VIDIX_PM2=$_vidix_drv_pm2
7877 VIDIX_PM3=$_vidix_drv_pm3
7878 VIDIX_RADEON=$_vidix_drv_radeon
7879 VIDIX_RAGE128=$_vidix_drv_rage128
7880 VIDIX_S3=$_vidix_drv_s3
7881 VIDIX_SIS=$_vidix_drv_sis
7882 VIDIX_UNICHROME=$_vidix_drv_unichrome
7883 VSTREAM = $_vstream
7884 WIN32DLL = $_win32dll
7885 WIN32_EMULATION = $_win32_emulation
7886 X264 = $_x264
7887 XANIM_CODECS = $_xanim
7888 XMMS_PLUGINS = $_xmms
7889 XVID4 = $_xvid
7890 ZORAN = $_zr
7892 # FFmpeg
7893 LIBAVUTIL = $_libavutil
7894 LIBAVUTIL_A = $_libavutil_a
7895 LIBAVUTIL_SO = $_libavutil_so
7896 LIBAVCODEC = $_libavcodec
7897 LIBAVCODEC_A = $_libavcodec_a
7898 LIBAVCODEC_SO = $_libavcodec_so
7899 LIBAVFORMAT = $_libavformat
7900 LIBAVFORMAT_A = $_libavformat_a
7901 LIBAVFORMAT_SO = $_libavformat_so
7902 LIBPOSTPROC = $_libpostproc
7903 LIBPOSTPROC_A = $_libpostproc_a
7904 LIBPOSTPROC_SO = $_libpostproc_so
7906 BUILD_STATIC=yes
7907 SRC_PATH=..
7908 BUILD_ROOT=..
7909 LIBPREF=lib
7910 LIBSUF=.a
7911 LIBNAME=\$(LIBPREF)\$(NAME)\$(LIBSUF)
7913 CONFIG_ENCODERS=yes
7914 CONFIG_GPL=yes
7915 CONFIG_MUXERS=$_mencoder
7916 CONFIG_LIBAMR=$_libamr
7917 CONFIG_LIBAMR_NB=$_libamr_nb
7918 CONFIG_LIBAMR_WB=$_libamr_wb
7919 CONFIG_LIBDIRAC=$_libdirac_lavc
7920 CONFIG_LIBFAAC=$_faac_lavc
7921 CONFIG_LIBMP3LAME=$_mp3lame_lavc
7922 CONFIG_LIBSCHROEDINGER=$_libschroedinger_lavc
7923 CONFIG_LIBVORBIS=$_libvorbis
7924 CONFIG_LIBX264=$_x264_lavc
7925 CONFIG_LIBXVID=$_xvid_lavc
7926 CONFIG_MLIB = $_mlib
7927 CONFIG_POSTPROC = yes
7928 # Prevent building libavcodec/imgresample.c with conflicting symbols
7929 CONFIG_SWSCALE=yes
7930 CONFIG_ZLIB=$_zlib
7932 HAVE_PTHREADS = $_pthreads
7933 HAVE_W32THREADS = $_w32threads
7934 HAVE_XVMC = $_xvmc
7936 `echo $_libavdecoders | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
7937 `echo $_libavencoders | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
7938 `echo $_libavparsers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
7939 `echo $_libavdemuxers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
7940 `echo $_libavmuxers | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
7941 `echo $_libavbsfs | tr '[a-z] ' '[A-Z]\n' | sed 's/^/CONFIG_/;s/$/=yes/'`
7943 DEPEND_CMD = \$(CC) -MM \$(CFLAGS) \$(filter-out %.h,\$^) | sed "s,[0-9a-z._-]*: \(\$(SRC_DIR)/\)*\([a-z0-9]*/\)[^/]* ,\\2&,"
7945 MPDEPEND_CMD = \$(CC) -MM \$(CFLAGS) \$(filter-out %.h,$^) | sed -e "s,[0-9a-z._-]*: \([a-z0-9/]*/\)[^/]* ,\1&," -e "s,\(.*\)\.o: ,\1.d &,"
7946 MPDEPEND_CMD_CXX = \$(CC) -MM \$(CXXFLAGS) \$(filter-out %.h,$^) | sed -e "s,[0-9a-z._-]*: \([a-z0-9/]*/\)[^/]* ,\1&," -e "s,\(.*\)\.o: ,\1.d &,"
7950 #############################################################################
7952 ff_config_enable () {
7953 _nprefix=$3;
7954 test -z "$_nprefix" && _nprefix='CONFIG'
7955 for part in $1; do
7956 if ` echo $2 | grep -q -E "(^| )$part($| )" `; then
7957 echo "#define ${_nprefix}_$part 1"
7958 echo "#define ENABLE_$part 1"
7959 else
7960 echo "#define ENABLE_$part 0"
7962 done
7965 echo "Creating config.h"
7966 cat > $TMPH << EOF
7967 /* -------- This file has been automatically generated by configure ---------
7968 Note: Any changes in it will be lost when you run configure again. */
7970 /* Protect against multiple inclusion */
7971 #ifndef MPLAYER_CONFIG_H
7972 #define MPLAYER_CONFIG_H
7974 #define CONFIGURATION "$_configuration"
7976 /* make sure we never get lavformat's poll() emulation, the results are
7977 horrible if the X libs try to actually use it, see MPlayer-users
7978 Message-ID: <45D49541.8060101@infernix.net>
7979 Date: Thu, 15 Feb 2007 18:15:45 +0100
7980 Subject: [MPlayer-users] Crash with backtrace when playing back demuxed...
7982 #define HAVE_SYS_POLL_H 1
7984 /* yes, we have inttypes.h */
7985 #define HAVE_INTTYPES_H 1
7987 /* int_fastXY_t emulation */
7988 $_def_fast_inttypes
7990 /* libdvdcss */
7991 #define HAVE_ERRNO_H 1
7993 /* libdvdcss + libdvdread */
7994 #define HAVE_LIMITS_H 1
7996 /* libdvdcss + libfaad2 */
7997 #define HAVE_UNISTD_H 1
7999 /* libfaad2 + libdvdread */
8000 #define STDC_HEADERS 1
8002 /* libfaad2 */
8003 #define HAVE_MEMCPY 1
8004 #define HAVE_STRCHR 1
8006 /* libdvdread */
8007 #define HAVE_UINTPTR_T 1
8009 /* name of messages charset */
8010 $_def_charset
8012 /* Runtime CPU detection */
8013 $_def_runtime_cpudetection
8015 /* Dynamic a/v plugins */
8016 $_def_dynamic_plugins
8018 /* "restrict" keyword */
8019 $_def_restrict_keyword
8021 /* __builtin_expect branch prediction hint */
8022 $_def_builtin_expect
8023 #ifdef HAVE_BUILTIN_EXPECT
8024 #define likely(x) __builtin_expect ((x) != 0, 1)
8025 #define unlikely(x) __builtin_expect ((x) != 0, 0)
8026 #else
8027 #define likely(x) (x)
8028 #define unlikely(x) (x)
8029 #endif
8031 /* attribute(used) as needed by some compilers */
8032 #if (__GNUC__ * 100 + __GNUC_MINOR__ >= 300)
8033 # define attribute_used __attribute__((used))
8034 #else
8035 # define attribute_used
8036 #endif
8038 /* extern symbol prefix */
8039 $_def_extern_prefix
8041 /* compiler support for named assembler arguments */
8042 $_def_named_asm_args
8044 /* enable/disable SIGHANDLER */
8045 $_def_sighandler
8047 /* enable/disable automatic gdb attach on crash, requires SIGHANDLER */
8048 $_def_crash_debug
8050 /* Toggles debugging informations */
8051 $_def_debug
8053 /* Indicates that libcdio is available for VCD and CD-DA playback */
8054 $_def_libcdio
8056 /* Indicates that Ogle's libdvdread is available for DVD playback */
8057 $_def_dvdread
8059 /* Indicates that dvdread is internal */
8060 $_def_dvdread_internal
8062 /* Additional options for libdvdread/libdvdcss */
8063 $_def_dvd
8064 $_def_cdrom
8065 $_def_cdio
8066 $_def_dvdio
8067 $_def_bsdi_dvd
8068 $_def_dvd_bsd
8069 $_def_dvd_linux
8070 $_dev_dvd_openbsd
8071 $_def_dvd_darwin
8072 $_def_sol_scsi_h
8073 $_def_hpux_scsi_h
8075 /* Common data directory (for fonts, etc) */
8076 #define MPLAYER_DATADIR "$_datadir"
8077 #define MPLAYER_CONFDIR "$_confdir"
8078 #define MPLAYER_LIBDIR "$_libdir"
8080 /* Define this to compile stream-caching support, it can be enabled via
8081 -cache <kilobytes> */
8082 $_def_stream_cache
8084 /* Define if you are using Xvid library */
8085 $_def_xvid
8087 /* Define if you are using the X.264 library */
8088 $_def_x264
8090 /* Define if you are using libnut */
8091 $_def_libnut
8093 /* Define to include support for libdv-0.9.5 */
8094 $_def_libdv
8096 /* Indicates if libmp3lame is available
8097 Note: for mencoder */
8098 $_def_mp3lame
8099 $_def_mp3lame_preset
8100 $_def_mp3lame_preset_medium
8102 /* Undefine this if you do not want to select mono audio (left or right)
8103 with a stereo MPEG layer 2/3 audio stream. The command line option
8104 -stereo has three possible values (0 for stereo, 1 for left-only, 2 for
8105 right-only), with 0 being the default.
8107 #define CONFIG_FAKE_MONO 1
8109 /* Undefine this if your sound card driver has no working select().
8110 If you have kernel Oops, player hangups, or just no audio, you should
8111 try to recompile MPlayer with this option disabled! */
8112 $_def_select
8114 /* define this to use iconv(3) function to codepage conversions */
8115 $_def_iconv
8117 /* define this to use nl_langinfo function */
8118 $_def_langinfo
8120 /* define this to use RTC (/dev/rtc) for video timers */
8121 $_def_rtc
8123 /* set up max. outburst. use 65536 for ALSA 0.5, for others 16384 is enough */
8124 #define MAX_OUTBURST 65536
8126 /* set up audio OUTBURST. Do not change this! */
8127 #define OUTBURST 512
8129 /* Define this if your system has the header file for the OSS sound interface */
8130 $_def_sys_soundcard
8132 /* Define this if your system has the header file for the OSS sound interface
8133 * in /usr/include */
8134 $_def_soundcard
8136 /* Define this if your system has the sysinfo header */
8137 $_def_sys_sysinfo
8139 /* Define this if your system has the "malloc.h" header file */
8140 $_def_malloc
8142 /* memalign is mapped to malloc if unsupported */
8143 $_def_memalign
8144 $_def_map_memalign
8145 $_def_memalign_hack
8147 /* assembler handling of .align */
8148 $_def_asmalign_pot
8150 /* Define this if your system has the "alloca.h" header file */
8151 $_def_alloca
8153 /* Define this if your system has the "byteswap.h" header file */
8154 $_def_byteswap_h
8156 /* Define this if your system has the "sys/mman.h" header file */
8157 $_def_mman
8158 $_def_mman_has_map_failed
8160 /* Define this if you have the elf dynamic linker -ldl library */
8161 $_def_dl
8163 /* Define this if you have the kstat kernel statistics library */
8164 $_def_kstat
8166 /* Define this if you have zlib */
8167 $_def_zlib
8169 /* Define this if you have shm support */
8170 $_def_shm
8172 /* Define this if your system has strsep */
8173 $_def_strsep
8175 /* Define this if your system has vsscanf */
8176 $_def_vsscanf
8178 /* Define this if your system has swab */
8179 $_def_swab
8181 /* Define this if your system has posix select */
8182 $_def_posix_select
8184 /* Define this if your system has gettimeofday */
8185 $_def_gettimeofday
8187 /* Define this if your system has glob */
8188 $_def_glob
8190 /* Define this if your system has setenv */
8191 $_def_setenv
8192 #ifndef HAVE_SETENV
8193 int setenv(const char *name, const char *val, int overwrite);
8194 #endif
8196 /* Define this if your system has sysi86 */
8197 $_def_sysi86
8198 $_def_sysi86_iv
8200 /* Define this if your system has pthreads */
8201 $_def_pthreads
8203 /* LIRC (remote control, see www.lirc.org) support: */
8204 $_def_lirc
8206 /* Apple Remote (remote control, see http://docs.info.apple.com/article.html?artnum=302504) support: */
8207 $_def_apple_remote
8209 /* Apple IR Remote (Linux remote control driver) */
8210 $_def_apple_ir
8212 /* Support for maemo (http://www.maemo.org) */
8213 $_def_maemo
8216 * LIRCCD (LIRC client daemon)
8217 * See http://www.dolda2000.cjb.net/~fredrik/lirccd/
8219 $_def_lircc
8221 /* DVD navigation support using libdvdnav */
8222 $_def_dvdnav
8224 /* Define this to enable MPEG 1/2 image postprocessing (requires a FAST CPU!) */
8225 #define MPEG12_POSTPROC 1
8227 /* maximum alignment used by libmpeg2 */
8228 #define ATTRIBUTE_ALIGNED_MAX 16
8230 /* Win32 DLL support */
8231 $_def_win32dll
8232 #define WIN32_PATH "$_win32codecsdir"
8234 /* Mac OS X specific features */
8235 $_def_macosx_finder_support
8236 $_def_macosx_bundle
8237 $_def_coreaudio
8238 $_def_corevideo
8239 $_def_quartz
8240 $_def_quicktime
8242 /* Build our Win32-loader */
8243 $_def_win32_loader
8245 /* FFmpeg */
8246 /* Define this to enable image postprocessing in libavcodec (requires a FAST CPU!) */
8247 $_def_libpostproc
8248 $_def_libpostproc_a
8249 $_def_libpostproc_so
8251 /* Define this if you enabled thread support for libavcodec */
8252 $_def_threads
8253 #ifdef HAVE_THREADS
8254 #define ENABLE_THREADS 1
8255 #else
8256 #define ENABLE_THREADS 0
8257 #endif
8259 /* ffmpeg's libavcodec support (requires libavcodec source) */
8260 $_def_libavcodec
8261 $_def_libavcodec_a
8262 $_def_libavcodec_so
8263 $_def_libavcodec_mpegaudio_hp
8265 /* ffmpeg's libavformat support (requires libavformat source) */
8266 $_def_libavformat
8267 $_def_libavformat_a
8268 $_def_libavformat_so
8270 $_def_libavutil
8271 $_def_libavutil_a
8272 $_def_libavutil_so
8274 /* Use libavcodec's decoders */
8275 #define CONFIG_DECODERS 1
8276 #define ENABLE_DECODERS 1
8277 /* Use libavcodec's encoders */
8278 #define CONFIG_ENCODERS 1
8279 #define ENABLE_ENCODERS 1
8281 /* Use libavformat's demuxers */
8282 #define CONFIG_DEMUXERS 1
8283 #define ENABLE_DEMUXERS 1
8284 /* Use libavformat's muxers */
8285 $_def_muxers
8287 /* Use these registers in FFmpeg x86 inline asm. No proper detection yet. */
8288 #define HAVE_EBX_AVAILABLE 1
8289 #ifndef MP_DEBUG
8290 #define HAVE_EBP_AVAILABLE 1
8291 #endif
8293 #define CONFIG_GPL 1
8294 #define ENABLE_SMALL 0
8295 #define ENABLE_GRAY 0
8297 /* Use AMR codecs from libavcodec. */
8298 $_def_libamr
8299 $_def_libamr_nb
8300 $_def_libamr_wb
8302 /* Use specific parts from FFmpeg. */
8303 `ff_config_enable "$_libavdecoders_all" "$_libavdecoders"`
8304 `ff_config_enable "$_libavencoders_all" "$_libavencoders"`
8305 `ff_config_enable "$_libavparsers_all" "$_libavparsers"`
8306 `ff_config_enable "$_libavdemuxers_all" "$_libavdemuxers"`
8307 `ff_config_enable "$_libavmuxers_all" "$_libavmuxers"`
8308 `ff_config_enable "$_libavprotocols_all" "$_libavprotocols"`
8309 `ff_config_enable "$_libavbsfs_all" "$_libavbsfs"`
8311 $_def_libdirac_lavc
8312 $_def_faac_lavc
8313 $_def_mp3lame_lavc
8314 $_def_libschroedinger_lavc
8315 $_def_x264_lavc
8316 $_def_xvid_lavc
8318 /* Use codec libs included in mplayer CVS / source dist: */
8319 $_def_mp3lib
8320 $_def_liba52
8321 $_def_libmpeg2
8323 /* XAnim DLL support */
8324 $_def_xanim
8325 /* Default search path */
8326 $_def_xanim_path
8328 /* RealPlayer DLL support */
8329 $_def_real
8330 /* Default search path */
8331 $_def_real_path
8333 /* LIVE555 Streaming Media library support */
8334 $_def_live
8336 /* libnemesi Streaming Media library support */
8337 $_def_nemesi
8339 /* Use 3dnow/mmxext/sse/mmx optimized fast memcpy() [maybe buggy... signal 4]*/
8340 $_def_fastmemcpy
8342 /* Use UnRAR executable for Vobsubs */
8343 $_def_unrar_exec
8345 /* gui support, please do not edit this option */
8346 $_def_gui
8347 $_def_gtk2
8349 /* Audio output drivers */
8350 $_def_ossaudio
8351 $_def_ossaudio_devdsp
8352 $_def_ossaudio_devmixer
8353 $_def_alsa5
8354 $_def_alsa9
8355 $_def_alsa1x
8356 $_def_arts
8357 $_def_esd
8358 $_def_esd_latency
8359 $_def_pulse
8360 $_def_jack
8361 $_def_openal
8362 $_def_openal_h
8363 $_def_sys_asoundlib_h
8364 $_def_alsa_asoundlib_h
8365 $_def_sunaudio
8366 $_def_sgiaudio
8367 $_def_win32waveout
8368 $_def_nas
8370 /* Enable fast OSD/SUB renderer (looks ugly, but uses less CPU power) */
8371 #undef FAST_OSD
8372 #undef FAST_OSD_TABLE
8374 /* Enable TV Interface support */
8375 $_def_tv
8377 /* Enable Video 4 Linux TV interface support */
8378 $_def_tv_v4l
8380 /* Enable Video 4 Linux 1 TV interface support */
8381 $_def_tv_v4l1
8383 /* Enable Video 4 Linux 2 TV interface support */
8384 $_def_tv_v4l2
8386 /* Enable DirectShow TV interface support */
8387 $_def_tv_dshow
8389 /* *BSD BrookTree headers */
8390 $_def_ioctl_meteor_h_name
8391 $_def_ioctl_bt848_h_name
8393 /* Enable *BSD BrookTree TV interface support */
8394 $_def_tv_bsdbt848
8396 /* Enable TV Teletext Interface support */
8397 $_def_tv_teletext
8399 /* Enable Radio Interface support */
8400 $_def_radio
8402 /* Enable Capture for Radio Interface support */
8403 $_def_radio_capture
8405 /* Enable Video 4 Linux Radio interface support */
8406 $_def_radio_v4l
8408 /* Enable Video 4 Linux 2 Radio interface support */
8409 $_def_radio_v4l2
8411 /* Enable *BSD BrookTree Radio interface support */
8412 $_def_radio_bsdbt848
8414 /* Enable Video 4 Linux 2 MPEG PVR support */
8415 $_def_pvr
8417 /* Define if your processor stores words with the most significant
8418 byte first (like Motorola and SPARC, unlike Intel and VAX). */
8419 $_def_words_endian
8421 /* Define if your processor can access unaligned data in a fast way */
8422 $_def_fast_unaligned
8424 `ff_config_enable "$_arch_all" "$_arch" "ARCH"`
8426 /* For the PPC. G5 has the dcbzl when in 64bit mode but G4s and earlier do not
8427 have the instruction. */
8428 $_def_dcbzl
8430 /* Define this for Cygwin build for win32 */
8431 $_def_confwin32
8433 /* Define this to any prefered value from 386 up to infinity with step 100 */
8434 #define __CPU__ $iproc
8436 $_mp_wordsize
8438 $_def_vcd
8440 #ifdef sun
8441 #define DEFAULT_CDROM_DEVICE "/vol/dev/aliases/cdrom0"
8442 #define DEFAULT_DVD_DEVICE DEFAULT_CDROM_DEVICE
8443 #elif defined(WIN32) || defined(__OS2__)
8444 #define DEFAULT_CDROM_DEVICE "D:"
8445 #define DEFAULT_DVD_DEVICE DEFAULT_CDROM_DEVICE
8446 #elif defined(__APPLE__) || defined(__DARWIN__)
8447 #define DEFAULT_CDROM_DEVICE "/dev/disk1"
8448 #define DEFAULT_DVD_DEVICE "/dev/rdiskN"
8449 #elif defined(__OpenBSD__)
8450 #define DEFAULT_CDROM_DEVICE "/dev/rcd0a"
8451 #define DEFAULT_DVD_DEVICE DEFAULT_CDROM_DEVICE
8452 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
8453 #define DEFAULT_CDROM_DEVICE "/dev/acd0"
8454 #define DEFAULT_DVD_DEVICE DEFAULT_CDROM_DEVICE
8455 #elif defined(__DragonFly__)
8456 #define DEFAULT_CDROM_DEVICE "/dev/cd0"
8457 #define DEFAULT_DVD_DEVICE DEFAULT_CDROM_DEVICE
8458 #elif defined(__AMIGAOS4__)
8459 #define DEFAULT_CDROM_DEVICE "a1ide.device:2"
8460 #define DEFAULT_DVD_DEVICE DEFAULT_CDROM_DEVICE
8461 #else
8462 #define DEFAULT_CDROM_DEVICE "/dev/cdrom"
8463 #define DEFAULT_DVD_DEVICE "/dev/dvd"
8464 #endif
8467 /*----------------------------------------------------------------------------
8469 ** NOTE: Instead of modifying these definitions here, use the
8470 ** --enable/--disable options of the ./configure script!
8471 ** See ./configure --help for details.
8473 *---------------------------------------------------------------------------*/
8475 /* C99 *lrint* and round* functions available */
8476 $_def_llrint
8477 $_def_lrint
8478 $_def_lrintf
8479 $_def_round
8480 $_def_roundf
8482 /* mkstemp support */
8483 $_def_mkstemp
8485 /* nanosleep support */
8486 $_def_nanosleep
8488 /* SMB support */
8489 $_def_smbsupport
8491 /* termcap flag for getch2.c */
8492 $_def_termcap
8494 /* termios flag for getch2.c */
8495 $_def_termios
8496 $_def_termios_h
8497 $_def_termios_sys_h
8499 /* enable PNG support */
8500 $_def_png
8502 /* enable JPEG support */
8503 $_def_jpeg
8505 /* enable PNM support */
8506 $_def_pnm
8508 /* enable md5sum support */
8509 $_def_md5sum
8511 /* enable yuv4mpeg support */
8512 $_def_yuv4mpeg
8514 /* enable GIF support */
8515 $_def_gif
8516 $_def_gif_4
8517 $_def_gif_tvt_hack
8519 /* enable bitmap font support */
8520 $_def_bitmap_font
8522 /* enable FreeType support */
8523 $_def_freetype
8525 /* enable Fontconfig support */
8526 $_def_fontconfig
8528 /* enable SSA/ASS support */
8529 $_def_ass
8531 /* enable FriBiDi usage */
8532 $_def_fribidi
8534 /* enable ENCA usage */
8535 $_def_enca
8537 /* liblzo support */
8538 $_def_liblzo
8540 /* libmad support */
8541 $_def_mad
8543 /* enable OggVorbis support */
8544 $_def_vorbis
8545 $_def_tremor
8547 /* enable Speex support */
8548 $_def_speex
8550 /* enable musepack support */
8551 $_def_musepack
8553 /* enable OggTheora support */
8554 $_def_theora
8556 /* enable FAAD (AAC) support */
8557 $_def_faad
8558 $_def_faad_internal
8560 /* enable FAAC (AAC encoder) support */
8561 $_def_faac
8563 /* enable libdca support */
8564 $_def_libdca
8566 /* enable LADSPA plugin support */
8567 $_def_ladspa
8569 /* enable network */
8570 $_def_network
8572 /* enable ftp support */
8573 $_def_ftp
8575 /* enable vstream support */
8576 $_def_vstream
8578 /* enable winsock2 instead of Unix functions*/
8579 $_def_winsock2
8581 /* define this to use inet_aton() instead of inet_pton() */
8582 $_def_use_aton
8584 /* socklen_t support */
8585 $_def_socklen_t
8586 #ifndef HAVE_SOCKLEN_T
8587 #define HAVE_SOCKLEN_T 1
8588 typedef int socklen_t;
8589 #endif
8591 /* enables / disables cdparanoia support */
8592 $_def_cdparanoia
8593 $_def_cddb
8595 /* enables / disables VIDIX usage */
8596 $_def_vidix
8597 $_def_vidix_drv_cyberblade
8598 $_def_vidix_drv_ivtv
8599 $_def_vidix_drv_mach64
8600 $_def_vidix_drv_mga
8601 $_def_vidix_drv_mga_crtc2
8602 $_def_vidix_drv_nvidia
8603 $_def_vidix_drv_pm3
8604 $_def_vidix_drv_radeon
8605 $_def_vidix_drv_rage128
8606 $_def_vidix_drv_s3
8607 $_def_vidix_drv_sis
8608 $_def_vidix_drv_unichrome
8609 $_def_vidix_pfx
8611 /* enables / disables new input joystick support */
8612 $_def_joystick
8614 /* enables / disables QTX codecs */
8615 $_def_qtx
8616 $_def_qtx_win32
8618 /* enables / disables osd menu */
8619 $_def_menu
8621 /* enables / disables subtitles sorting */
8622 $_def_sortsub
8624 /* XMMS input plugin support */
8625 $_def_xmms
8626 #define XMMS_INPUT_PLUGIN_DIR "$_xmmsplugindir"
8628 /* enables inet6 support */
8629 $_def_inet6
8631 /* do we have gethostbyname2? */
8632 $_def_gethostbyname2
8634 /* Extension defines */
8635 `ff_config_enable "$_cpuexts_all" "$_cpuexts" "HAVE"`
8637 $_def_altivec_h // enables usage of altivec.h
8639 /* libvo options */
8640 #define SCREEN_SIZE_X 1
8641 #define SCREEN_SIZE_Y 1
8642 $_def_x11
8643 $_def_xv
8644 $_def_xvmc
8645 $_def_vm
8646 $_def_xf86keysym
8647 $_def_xinerama
8648 $_def_gl
8649 $_def_gl_win32
8650 $_def_dga
8651 $_def_dga1
8652 $_def_dga2
8653 $_def_sdl
8654 /* defined for SDLlib with keyrepeat bugs (before 1.2.1) */
8655 $_def_sdlbuggy
8656 $_def_directx
8657 $_def_ggi
8658 $_def_ggiwmh
8659 $_def_3dfx
8660 $_def_s3fb
8661 $_def_tdfxfb
8662 $_def_tdfxvid
8663 $_def_xvr100
8664 $_def_directfb
8665 $_def_directfb_version
8666 $_def_dfbmga
8667 $_def_zr
8668 $_def_bl
8669 $_def_mga
8670 $_def_xmga
8671 $_def_fbdev
8672 $_def_dxr2
8673 $_def_dxr3
8674 $_def_ivtv
8675 $_def_v4l2
8676 $_def_dvb
8677 $_def_dvb_in
8678 $_def_svga
8679 $_def_vesa
8680 $_def_xss
8681 $_def_xdpms
8682 $_def_aa
8683 $_def_caca
8684 $_def_tga
8685 $_def_toolame
8686 $_def_twolame
8688 /* used by GUI: */
8689 $_def_xshape
8691 #if defined(CONFIG_GL) || defined(HAVE_X11) || defined(HAVE_XV)
8692 #define X11_FULLSCREEN 1
8693 #endif
8695 #endif /* MPLAYER_CONFIG_H */
8698 # Do not overwrite an unchanged config.h to avoid superfluous rebuilds.
8699 cmp -s "$TMPH" config.h || mv -f "$TMPH" config.h
8701 cp -p config.h ffmpeg/config.h
8702 sed -e 's/OPTFLAGS/MPLAYER_OPTFLAGS/' -e 's/FFMPEG_OFLAGS/OPTFLAGS/' config.mak >ffmpeg/config.mak
8704 #############################################################################
8706 cat << EOF
8708 Config files successfully generated by ./configure $_configuration !
8710 Install prefix: $_prefix
8711 Data directory: $_datadir
8712 Config direct.: $_confdir
8714 Byte order: $_byte_order
8715 Optimizing for: $_optimizing
8717 Languages:
8718 Messages/GUI: $msg_lang
8719 Manual pages: $man_langs
8721 Enabled optional drivers:
8722 Input: $_inputmodules
8723 Codecs: $_codecmodules
8724 Audio output: $_aomodules
8725 Video output: $_vomodules
8727 Disabled optional drivers:
8728 Input: $_noinputmodules
8729 Codecs: $_nocodecmodules
8730 Audio output: $_noaomodules
8731 Video output: $_novomodules
8733 'config.h' and 'config.mak' contain your configuration options.
8734 Note: If you alter theses files (for instance CFLAGS) MPlayer may no longer
8735 compile *** DO NOT REPORT BUGS if you tweak these files ***
8737 'make' will now compile MPlayer and 'make install' will install it.
8738 Note: On non-Linux systems you might need to use 'gmake' instead of 'make'.
8743 if test "$_mtrr" = yes ; then
8744 echo "Please check mtrr settings at /proc/mtrr (see DOCS/HTML/$doc_lang/video.html#mtrr)"
8745 echo
8748 if ! x86_32; then
8749 cat <<EOF
8750 NOTE: Win32 codec DLLs are not supported on your CPU ($host_arch) or your
8751 operating system ($system_name). You may encounter a few files that cannot
8752 be played due to missing open source video/audio codec support.
8758 cat <<EOF
8759 Check $TMPLOG if you wonder why an autodetection failed (make sure
8760 development headers/packages are installed).
8762 NOTE: The --enable-* parameters unconditionally force options on, completely
8763 skipping autodetection. This behavior is unlike what you may be used to from
8764 autoconf-based configure scripts that can decide to override you. This greater
8765 level of control comes at a price. You may have to provide the correct compiler
8766 and linker flags yourself.
8767 If you used one of these options (except --enable-gui and similar ones that
8768 turn on internal features) and experience a compilation or linking failure,
8769 make sure you have passed the necessary compiler/linker flags to configure.
8771 If you suspect a bug, please read DOCS/HTML/$doc_lang/bugreports.html.
8775 if test "$_warn_CFLAGS" = yes; then
8776 cat <<EOF
8778 MPlayer compilation will use the CPPFLAGS/CFLAGS/LDFLAGS set by you, but:
8780 *** *** DO NOT REPORT BUGS IF IT DOES NOT COMPILE/WORK! *** ***
8782 It is strongly recommended to let MPlayer choose the correct CFLAGS!
8783 To do so, execute 'CFLAGS= ./configure <options>'
8788 # Last move:
8789 rm -f "$TMPEXE" "$TMPC" "$TMPS" "$TMPCPP" "$TMPH"