From: Eli Zaretskii Date: Sat, 8 Sep 2007 09:12:05 +0000 (+0000) Subject: [WINDOWSNT]: Don't include sysselect.h X-Git-Tag: emacs-pretest-23.0.90~11018 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4d395425c8592fe256755f57fdb9f77045b1ba10;p=emacs.git [WINDOWSNT]: Don't include sysselect.h --- diff --git a/src/ChangeLog b/src/ChangeLog index 6beadbcfad9..87e761864ab 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2007-09-08 Eli Zaretskii + + * sysdep.c [WINDOWSNT]: Don't include sysselect.h + 2007-09-07 Stefan Monnier * s/cygwin.h (GC_MARK_STACK): Enable conservative stack marking. diff --git a/src/sysdep.c b/src/sysdep.c index ff7a4f5f42c..d0a22808723 100644 --- a/src/sysdep.c +++ b/src/sysdep.c @@ -46,7 +46,11 @@ extern void srandom P_ ((unsigned int)); #endif #endif +/* The w32 build defines select stuff in w32.h, which is included by + sys/select.h (included below). */ +#ifndef WINDOWSNT #include "sysselect.h" +#endif #include "blockinput.h"