1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-25 00:02:13 +00:00

add --disable-select

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@464 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
pontscho 2001-04-16 00:44:29 +00:00
parent 974683f4f0
commit ee24055774

17
configure vendored
View File

@ -6,6 +6,10 @@
# #
# Changes in reversed order: # Changes in reversed order:
# #
# 2001/04/15 by Pontscho
# - added --disable-select option
# - added X11DIR variable in config.mak and fix syncfb Makefile -L/usr/X11/lib bug
#
# 2001/03/24 by Mike Graffam: # 2001/03/24 by Mike Graffam:
# - added autodetect code for XF86VidMode, along with explicit --enable-vm # - added autodetect code for XF86VidMode, along with explicit --enable-vm
# #
@ -91,6 +95,9 @@ params:
--enable-xmmp use XMMP audio drivers --enable-xmmp use XMMP audio drivers
--enable-lirc enable LIRC (remote control) support --enable-lirc enable LIRC (remote control) support
--disable-select disable audio select() support ( for example required this
option ALSA or Vortex2 driver )
--with-x11libdir=DIR X library files are in DIR --with-x11libdir=DIR X library files are in DIR
--with-win32libdir=DIR windows codec files --with-win32libdir=DIR windows codec files
@ -202,6 +209,8 @@ _sdllib=
_xvlib= _xvlib=
_x11lib= _x11lib=
_select='#define HAVE_AUDIO_SELECT'
for i in `echo $pparam`; do for i in `echo $pparam`; do
case "$i" in case "$i" in
@ -514,6 +523,9 @@ do
--enable-lirc) --enable-lirc)
_lirc=yes _lirc=yes
;; ;;
--enable-select)
_select='#define HAVE_AUDIO_SELECT'
;;
--disable-sse) --disable-sse)
_sse=no _sse=no
;; ;;
@ -563,6 +575,9 @@ do
--disable-termcap) --disable-termcap)
_termcap=no _termcap=no
;; ;;
--disable-select)
_select='#undef HAVE_AUDIO_SELECT'
;;
--with-win32libdir=*) --with-win32libdir=*)
_win32libdir=`echo $ac_option | cut -d '=' -f 2` _win32libdir=`echo $ac_option | cut -d '=' -f 2`
_win32libdirnotify=no _win32libdirnotify=no
@ -837,7 +852,7 @@ cat > $CCONF << EOF
/* Undefine this if your soundcard driver has no working select(). /* Undefine this if your soundcard driver has no working select().
If you have kernel Oops, player hangups, or just no audio, you should If you have kernel Oops, player hangups, or just no audio, you should
try to recompile MPlayer with this option disabled! */ try to recompile MPlayer with this option disabled! */
#define HAVE_AUDIO_SELECT $_select
/* You have a choice for MP3 decoding: mp3lib(mpg123) or Win32(l3codeca.acm) /* You have a choice for MP3 decoding: mp3lib(mpg123) or Win32(l3codeca.acm)
#define this if you prefer mpg123 (with 3Dnow! support) than l3codeca.acm #define this if you prefer mpg123 (with 3Dnow! support) than l3codeca.acm