From: Fred Drake <fdrake@acm.org> Date: Thu, 5 Apr 2001 18:26:31 +0000 (+0000) Subject: Effectively revert the previous change: leave the new #include in, but X-Git-Tag: v2.1c1~184 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d3908e29523f2d2149571585ae8ff725eae6b531;p=python Effectively revert the previous change: leave the new #include in, but comment it out with an explanation. This makes it easier for someone who wants the additional symbols to try re-enabling it for their platform. --- diff --git a/Modules/termios.c b/Modules/termios.c index 0bce7d3fd0..146a16fe2f 100644 --- a/Modules/termios.c +++ b/Modules/termios.c @@ -5,7 +5,10 @@ #define PyInit_termios inittermios #include <termios.h> +/* XXX Some systems need this to get all the symbols, while + this breaks for others. #include <sys/ioctl.h> +*/ static char termios__doc__[] = "\ This module provides an interface to the Posix calls for tty I/O control.\n\