>>>> "ST" == Stephen J Turnbull
<turnbull(a)sk.tsukuba.ac.jp> writes:
ST> ./configure --with-sound=native,nas,noesd does not disable ESD.
ST> You need to do
ST> ./configure --with-sound=none,native,nas,noesd
ST> or
ST> ./configure --with-sound=none,native,nas
ST> to get the configuration I want.
ST> Why is the default "native, esd" and not "everything we can
detect"?
Sound support needs some improvement. The current configure stuff is
way too hard to understand. For starters, there's this patch to
enable
--with-sound=nas,noesd
to work. Untested, but must be correct.
1999-12-07 Martin Buchholz <martin(a)xemacs.org>
* configure.in (--with-sound): Variable with_esd was mispelled.
--- configure.in 1999/12/07 07:08:59 1.111.2.52
+++ configure.in 1999/12/08 07:35:26
@@ -618,7 +618,7 @@
nonas ) with_nas_sound=no ;;
esd ) with_esd=yes ;;
- noesd ) with_esh=no ;;
+ noesd ) with_esd=no ;;
* ) bogus_sound=yes ;;
esac