summaryrefslogtreecommitdiffstats
path: root/PC/config.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1999-02-05 22:34:57 (GMT)
committerGuido van Rossum <guido@python.org>1999-02-05 22:34:57 (GMT)
commit8f81a22d41d222f785c23508e16e93a8436ad4e6 (patch)
tree40a5c4fadf8d939c80963bac145c4c610464fc93 /PC/config.c
parentd42e46ead5d5f069a4fd11a24ee328d75ea31fb9 (diff)
downloadcpython-8f81a22d41d222f785c23508e16e93a8436ad4e6.zip
cpython-8f81a22d41d222f785c23508e16e93a8436ad4e6.tar.gz
cpython-8f81a22d41d222f785c23508e16e93a8436ad4e6.tar.bz2
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.)
Diffstat (limited to 'PC/config.c')
-rw-r--r--PC/config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/config.c b/PC/config.c
index 4f6f560..f202835 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},