]> granicus.if.org Git - python/commitdiff
Some weird symbol (M_I386) was used to decide whether to include the
authorGuido van Rossum <guido@python.org>
Fri, 5 Feb 1999 22:34:57 +0000 (22:34 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 5 Feb 1999 22:34:57 +0000 (22:34 +0000)
audioop module; this was no longer defined.  Use MS_WINDOWS instead.
(I have a feeling that this was for the WATCOM port; too bad.)

PC/config.c

index 4f6f56089687758d9a60cc2047b699ad7fe7e872..f202835b88cf60d63d5cafbbd0786fc7be97e4a9 100644 (file)
@@ -75,7 +75,7 @@ extern void initimp();
 struct _inittab _PyImport_Inittab[] = {
 
         {"array", initarray},
-#ifdef M_I386
+#ifdef MS_WINDOWS
         {"audioop", initaudioop},
 #endif
         {"binascii", initbinascii},