Update of /cvsroot/mplayer/main In directory usw-pr-cvs1:/tmp/cvs-serv4355 Modified Files: configure Log Message: add --disable-select Index: configure =================================================================== RCS file: /cvsroot/mplayer/main/configure,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -r1.22 -r1.23 *** configure 2001/04/15 20:31:57 1.22 --- configure 2001/04/16 00:44:29 1.23 *************** *** 7,10 **** --- 7,14 ---- # 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: # - added autodetect code for XF86VidMode, along with explicit --enable-vm *************** *** 92,95 **** --- 96,102 ---- --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-win32libdir=DIR windows codec files *************** *** 203,206 **** --- 210,215 ---- _x11lib= + _select='#define HAVE_AUDIO_SELECT' + for i in `echo $pparam`; do *************** *** 515,518 **** --- 524,530 ---- _lirc=yes ;; + --enable-select) + _select='#define HAVE_AUDIO_SELECT' + ;; --disable-sse) _sse=no *************** *** 564,567 **** --- 576,582 ---- _termcap=no ;; + --disable-select) + _select='#undef HAVE_AUDIO_SELECT' + ;; --with-win32libdir=*) _win32libdir=`echo $ac_option | cut -d '=' -f 2` *************** *** 838,842 **** If you have kernel Oops, player hangups, or just no audio, you should try to recompile MPlayer with this option disabled! */ ! #define HAVE_AUDIO_SELECT /* You have a choice for MP3 decoding: mp3lib(mpg123) or Win32(l3codeca.acm) --- 853,857 ---- If you have kernel Oops, player hangups, or just no audio, you should try to recompile MPlayer with this option disabled! */ ! $_select /* You have a choice for MP3 decoding: mp3lib(mpg123) or Win32(l3codeca.acm) _______________________________________________ Mplayer-cvslog mailing list Mplayer-cvslog@lists.sourceforge.net http://lists.sourceforge.net/lists/listinfo/mplayer-cvslog
participants (1)
-
Zoltan Ponekker