From: Guido van Rossum Date: Fri, 5 Feb 1999 22:34:57 +0000 (+0000) Subject: Some weird symbol (M_I386) was used to decide whether to include the X-Git-Tag: v1.5.2b2~120 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8f81a22d41d222f785c23508e16e93a8436ad4e6;p=thirdparty%2FPython%2Fcpython.git Some weird symbol (M_I386) was used to decide whether to include the audioop module; this was no longer defined. Use MS_WINDOWS instead. (I have a feeling that this was for the WATCOM port; too bad.) --- diff --git a/PC/config.c b/PC/config.c index 4f6f56089687..f202835b88cf 100644 --- a/PC/config.c +++ b/PC/config.c @@ -75,7 +75,7 @@ extern void initimp(); struct _inittab _PyImport_Inittab[] = { {"array", initarray}, -#ifdef M_I386 +#ifdef MS_WINDOWS {"audioop", initaudioop}, #endif {"binascii", initbinascii},