Mercurial > hg > xemacs-beta
diff configure.in @ 553:5c6dc7d576ad
[xemacs-hg @ 2001-05-21 08:02:46 by yoshiki]
Paul's patch "Patch for sound under latest Cygwin",
<yz1ae4lz76u.fsf@milhouse.cs.cornell.edu>
* configure.in: Reverse the order of Windows and Linux sound tests
so that Cygwin will find Windows first.
author | yoshiki |
---|---|
date | Mon, 21 May 2001 08:02:55 +0000 |
parents | e9a3f8b4de53 |
children | f486da5f1a3b |
line wrap: on
line diff
--- a/configure.in Mon May 21 06:19:41 2001 +0000 +++ b/configure.in Mon May 21 08:02:55 2001 +0000 @@ -4050,6 +4050,14 @@ esac fi + dnl Win32 Native uses native sound + if test -z "$sound_found"; then + if test "$with_msw" = "yes"; then + sound_found=yes + native_sound_lib= + fi + fi + dnl Check for Linux/BSD native sound if test -z "$sound_found"; then for dir in "machine" "sys" "linux"; do @@ -4062,14 +4070,6 @@ done fi - dnl Win32 Native uses native sound - if test -z "$sound_found"; then - if test "$with_msw" = "yes"; then - sound_found=yes - native_sound_lib= - fi - fi - test "$sound_found" = "yes" && with_native_sound=yes fi