summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorfilon <filon@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-02-08 22:27:04 +0000
committerfilon <filon@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-02-08 22:27:04 +0000
commit5f0c1c4879a6352f21613a73787e4597b84134e6 (patch)
treed6d668ffd3420d011d9d0392460598a53411dbc4 /configure
parent114687d46a5d7e4c63640621c12ca377d6daddb7 (diff)
downloadmpv-5f0c1c4879a6352f21613a73787e4597b84134e6.tar.bz2
mpv-5f0c1c4879a6352f21613a73787e4597b84134e6.tar.xz
- 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
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure b/configure
index 37421fd584..bb9fbf7965 100755
--- a/configure
+++ b/configure
@@ -224,6 +224,7 @@ Audio output:
--disable-esd disable esd sound support [autodetect]
--disable-alsa disable alsa 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-select disable using select() on audio device [enable]
@@ -2360,7 +2361,7 @@ fi
echocheck "X11 headers presence"
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
_inc_x11="-I$I"
echores "yes (using $I)"