summaryrefslogtreecommitdiffstats
path: root/Modules/_tkinter.c
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2000-10-05 19:24:26 (GMT)
committerTim Peters <tim.peters@gmail.com>2000-10-05 19:24:26 (GMT)
commit98dc065c1b96705d42c4853fdb28ff5ae64093b9 (patch)
treeea19cd515600aeffccdeadb665a2076a6673cb52 /Modules/_tkinter.c
parent293b03f73f5ad48719a0f07fb45857182dfb1d51 (diff)
downloadcpython-98dc065c1b96705d42c4853fdb28ff5ae64093b9.zip
cpython-98dc065c1b96705d42c4853fdb28ff5ae64093b9.tar.gz
cpython-98dc065c1b96705d42c4853fdb28ff5ae64093b9.tar.bz2
SF "bug" 115973: patches from Norman Vine so that shared libraries and
Tkinter work under Cygwin. Accepted on faith & reasonableness.
Diffstat (limited to 'Modules/_tkinter.c')
-rw-r--r--Modules/_tkinter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c
index 34360fe..0a3b74b 100644
--- a/Modules/_tkinter.c
+++ b/Modules/_tkinter.c
@@ -57,7 +57,7 @@ Copyright (C) 1994 Steen Lumholt.
#include <Menus.h>
#endif
-#if !defined(MS_WINDOWS)
+#if !(defined(MS_WINDOWS) || defined(__CYGWIN__))
#define HAVE_CREATEFILEHANDLER
#endif