mirror of
https://github.com/mpv-player/mpv
synced 2025-04-11 04:01:31 +00:00
- add missing entry for NAS in --help
- change order of looking for X11 includes, /usr/include almost alway will be the bad choice. often /usr/include/X11 is linked to /usr/X11R6/include/X11 so looking for NAS headers will fail (for example in RedHat) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9354 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
114687d46a
commit
5f0c1c4879
3
configure
vendored
3
configure
vendored
@ -224,6 +224,7 @@ Audio output:
|
|||||||
--disable-esd disable esd sound support [autodetect]
|
--disable-esd disable esd sound support [autodetect]
|
||||||
--disable-alsa disable alsa sound support [autodetect]
|
--disable-alsa disable alsa sound support [autodetect]
|
||||||
--disable-sunaudio disable Sun sound support [autodetect]
|
--disable-sunaudio disable Sun sound support [autodetect]
|
||||||
|
--disable-nas disable NAS sound support [autodetect]
|
||||||
--disable-win32waveout disable Windows waveout sound support [autodetect]
|
--disable-win32waveout disable Windows waveout sound support [autodetect]
|
||||||
--disable-select disable using select() on audio device [enable]
|
--disable-select disable using select() on audio device [enable]
|
||||||
|
|
||||||
@ -2360,7 +2361,7 @@ fi
|
|||||||
|
|
||||||
echocheck "X11 headers presence"
|
echocheck "X11 headers presence"
|
||||||
if test -z "$_inc_x11" ; then
|
if test -z "$_inc_x11" ; then
|
||||||
for I in /usr/include /usr/include/X11R6 /usr/X11R6/include /usr/X11/include /usr/openwin/include ; do
|
for I in /usr/X11/include /usr/X11R6/include /usr/include/X11R6 /usr/include /usr/openwin/include ; do
|
||||||
if test -d "$I/X11" && test -f "$I/X11/Xlib.h" ; then
|
if test -d "$I/X11" && test -f "$I/X11/Xlib.h" ; then
|
||||||
_inc_x11="-I$I"
|
_inc_x11="-I$I"
|
||||||
echores "yes (using $I)"
|
echores "yes (using $I)"
|
||||||
|
Loading…
Reference in New Issue
Block a user