NOTE: This patch has been committed.
ChangeLog addition:
2005-11-13 Ben Wing <ben(a)xemacs.org>
* configure.ac (win32 native sound):
Dependent on operating system, not on window system.
build source patch:
Diff command: bash -ci "cvs-diff --show-c-function -no-changelog "
Files affected: configure.ac
Index: configure.ac
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/configure.ac,v
retrieving revision 1.18
diff -u -p -r1.18 configure.ac
--- configure.ac 2005/11/07 08:49:16 1.18
+++ configure.ac 2005/11/13 07:31:06
@@ -4821,13 +4821,14 @@ if test "$enable_sound_native" != "no";
esac
fi
- dnl Win32 Native uses native sound
+ dnl Win32 uses native sound
if test -z "$sound_found"; then
- if test "$with_msw" = "yes"; then
+ case "$opsys" in cygwin* | mingw* )
sound_found=yes
with_native_sound_lib=
XE_ADD_OBJS(ntplay.o)
- fi
+ ;;
+ esac
fi
dnl Check for Linux/BSD native sound (also on recent Cygwins)
Show replies by date