SoundStream.st
changeset 720 967fad20a8f1
parent 715 b2950d207977
child 721 99f4c93ca492
--- a/SoundStream.st	Sun Jan 10 18:28:09 1999 +0100
+++ b/SoundStream.st	Fri Jan 15 22:21:21 1999 +0100
@@ -40,10 +40,23 @@
 # define DEV_AUDIO
 #endif
 
+#if defined(__openVMS__) || defined(LINUX)
+  /*
+   * mhmh - used in stdio ...
+   * (new linuxes)
+   */
+# undef __new
+# define __NEED_REDEF_new__                                   
+#endif                                                        
+
 #ifdef DEV_AUDIO
 # include <stdio.h>
 #endif
 
+#ifdef __NEED_REDEF_new__
+# define __new  __STX___new
+#endif
+
 #ifdef WIN32
 
 # define _WIN32
@@ -1914,5 +1927,5 @@
 !SoundStream class methodsFor:'documentation'!
 
 version
-^ '$Header: /cvs/stx/stx/libbasic2/SoundStream.st,v 1.37 1998-12-23 15:40:09 cg Exp $'! !
+^ '$Header: /cvs/stx/stx/libbasic2/SoundStream.st,v 1.38 1999-01-15 21:21:16 cg Exp $'! !
 SoundStream initialize!