[Python-checkins] CVS: python/dist/src/Modules selectmodule.c,2.43,2.44

Sjoerd Mullender python-dev@python.org
Fri, 25 Aug 2000 06:59:21 -0700


Update of /cvsroot/python/python/dist/src/Modules
In directory slayer.i.sourceforge.net:/tmp/cvs-serv27851

Modified Files:
	selectmodule.c 
Log Message:
Not every OS that support poll seems to support POLLMSG.


Index: selectmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/selectmodule.c,v
retrieving revision 2.43
retrieving revision 2.44
diff -C2 -r2.43 -r2.44
*** selectmodule.c	2000/08/25 01:15:33	2.43
--- selectmodule.c	2000/08/25 13:59:18	2.44
***************
*** 658,662 ****
--- 658,664 ----
  	insint(d, "POLLWRNORM", POLLWRNORM);
  	insint(d, "POLLWRBAND", POLLWRBAND);
+ #ifdef POLLMSG
  	insint(d, "POLLMSG", POLLMSG);
+ #endif
  #endif /* HAVE_POLL */
  }