comparison configure @ 28740:1f76d86e49ae

DART audio output driver for OS/2 by KO Myung-Hun, komh chollian net
author diego
date Sun, 01 Mar 2009 11:36:39 +0000
parents 838f5706f17e
children ee67a72f9dde
comparison
equal deleted inserted replaced
28739:d6b317bddd62 28740:1f76d86e49ae
413 --disable-jack disable JACK audio output [autodetect] 413 --disable-jack disable JACK audio output [autodetect]
414 --disable-openal disable OpenAL audio output [autodetect] 414 --disable-openal disable OpenAL audio output [autodetect]
415 --disable-nas disable NAS audio output [autodetect] 415 --disable-nas disable NAS audio output [autodetect]
416 --disable-sgiaudio disable SGI audio output [autodetect] 416 --disable-sgiaudio disable SGI audio output [autodetect]
417 --disable-sunaudio disable Sun audio output [autodetect] 417 --disable-sunaudio disable Sun audio output [autodetect]
418 --disable-dart disable DART audio output [autodetect]
418 --disable-win32waveout disable Windows waveout audio output [autodetect] 419 --disable-win32waveout disable Windows waveout audio output [autodetect]
419 --disable-select disable using select() on the audio device [enable] 420 --disable-select disable using select() on the audio device [enable]
420 421
421 Miscellaneous options: 422 Miscellaneous options:
422 --enable-runtime-cpudetection enable runtime CPU detection [disable] 423 --enable-runtime-cpudetection enable runtime CPU detection [disable]
586 _ossaudio=auto 587 _ossaudio=auto
587 _arts=auto 588 _arts=auto
588 _esd=auto 589 _esd=auto
589 _pulse=auto 590 _pulse=auto
590 _jack=auto 591 _jack=auto
592 _dart=auto
591 _openal=auto 593 _openal=auto
592 _libcdio=auto 594 _libcdio=auto
593 _liblzo=auto 595 _liblzo=auto
594 _mad=auto 596 _mad=auto
595 _mp3lame=auto 597 _mp3lame=auto
954 --disable-pulse) _pulse=no ;; 956 --disable-pulse) _pulse=no ;;
955 --enable-jack) _jack=yes ;; 957 --enable-jack) _jack=yes ;;
956 --disable-jack) _jack=no ;; 958 --disable-jack) _jack=no ;;
957 --enable-openal) _openal=yes ;; 959 --enable-openal) _openal=yes ;;
958 --disable-openal) _openal=no ;; 960 --disable-openal) _openal=no ;;
961 --enable-dart) _dart=yes ;;
962 --disable-dart) _dart=no ;;
959 --enable-mad) _mad=yes ;; 963 --enable-mad) _mad=yes ;;
960 --disable-mad) _mad=no ;; 964 --disable-mad) _mad=no ;;
961 --enable-mp3lame) _mp3lame=yes ;; 965 --enable-mp3lame) _mp3lame=yes ;;
962 --disable-mp3lame) _mp3lame=no ;; 966 --disable-mp3lame) _mp3lame=no ;;
963 --enable-mp3lame-lavc) _mp3lame_lavc=yes ;; 967 --enable-mp3lame-lavc) _mp3lame_lavc=yes ;;
5643 fi 5647 fi
5644 echores "$_sgiaudio" 5648 echores "$_sgiaudio"
5645 fi #if irix 5649 fi #if irix
5646 5650
5647 5651
5652 if os2 ; then
5653 echocheck "DART"
5654 if test "$_dart" = auto; then
5655 cat > $TMPC << EOF
5656 #include <os2.h>
5657 #include <dart.h>
5658 int main( void ) { return 0; }
5659 EOF
5660 _dart=no;
5661 cc_check -ldart && _dart=yes
5662 fi
5663 if test "$_dart" = yes ; then
5664 def_dart='#define CONFIG_DART 1'
5665 _libs_mplayer="$_libs_mplayer -ldart"
5666 _aomodules="dart $_aomodules"
5667 else
5668 def_dart='#undef CONFIG_DART'
5669 _noaomodules="dart $_noaomodules"
5670 fi
5671 echores "$_dart"
5672 fi #if os2
5673
5674
5648 # set default CD/DVD devices 5675 # set default CD/DVD devices
5649 if win32 || os2 ; then 5676 if win32 || os2 ; then
5650 default_cdrom_device="D:" 5677 default_cdrom_device="D:"
5651 elif darwin ; then 5678 elif darwin ; then
5652 default_cdrom_device="/dev/disk1" 5679 default_cdrom_device="/dev/disk1"
8081 CACA = $_caca 8108 CACA = $_caca
8082 CDDA = $_cdda 8109 CDDA = $_cdda
8083 CDDB = $_cddb 8110 CDDB = $_cddb
8084 COREAUDIO = $_coreaudio 8111 COREAUDIO = $_coreaudio
8085 COREVIDEO = $_corevideo 8112 COREVIDEO = $_corevideo
8113 DART = $_dart
8086 DFBMGA = $_dfbmga 8114 DFBMGA = $_dfbmga
8087 DGA = $_dga 8115 DGA = $_dga
8088 DIRECT3D = $_direct3d 8116 DIRECT3D = $_direct3d
8089 DIRECTFB = $_directfb 8117 DIRECTFB = $_directfb
8090 DIRECTX = $_directx 8118 DIRECTX = $_directx
8523 $def_alsa1x 8551 $def_alsa1x
8524 $def_alsa5 8552 $def_alsa5
8525 $def_alsa9 8553 $def_alsa9
8526 $def_arts 8554 $def_arts
8527 $def_coreaudio 8555 $def_coreaudio
8556 $def_dart
8528 $def_esd 8557 $def_esd
8529 $def_esd_latency 8558 $def_esd_latency
8530 $def_jack 8559 $def_jack
8531 $def_nas 8560 $def_nas
8532 $def_openal 8561 $def_openal