changeset 9353:e78cf2460121

- 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)
author filon
date Sat, 08 Feb 2003 22:27:04 +0000
parents 16ee9e419e06
children dd0874f98cdb
files configure
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/configure	Sat Feb 08 21:56:52 2003 +0000
+++ b/configure	Sat Feb 08 22:27:04 2003 +0000
@@ -224,6 +224,7 @@
   --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 @@
 
 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)"