User: ben
Date: 05/11/13 08:31:57
Modified: xemacs ChangeLog configure.ac
Log:
fix inclusion of ntplay.o
configure.ac: Dependent on operating system, not on window system.
Revision Changes Path
1.467 +5 -0 XEmacs/xemacs/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/ChangeLog,v
retrieving revision 1.466
retrieving revision 1.467
diff -u -p -r1.466 -r1.467
--- ChangeLog 2005/11/07 08:49:17 1.466
+++ ChangeLog 2005/11/13 07:31:55 1.467
@@ -1,3 +1,8 @@
+2005-11-13 Ben Wing <ben(a)xemacs.org>
+
+ * configure.ac (win32 native sound):
+ Dependent on operating system, not on window system.
+
2005-11-07 Stephen J. Turnbull <stephen(a)xemacs.org>
* configure.ac (AC_INIT): Use it correctly.
1.19 +4 -3 XEmacs/xemacs/configure.ac
Index: configure.ac
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/configure.ac,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -p -r1.18 -r1.19
--- configure.ac 2005/11/07 08:49:16 1.18
+++ configure.ac 2005/11/13 07:31:55 1.19
@@ -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)