[Python-checkins] r68178 - in python/branches/py3k: Python/pythonrun.c

benjamin.peterson python-checkins at python.org
Fri Jan 2 22:24:04 CET 2009


Author: benjamin.peterson
Date: Fri Jan  2 22:24:04 2009
New Revision: 68178

Log:
Merged revisions 68174 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r68174 | benjamin.peterson | 2009-01-02 14:47:27 -0600 (Fri, 02 Jan 2009) | 1 line
  
  fix compilation on non-Windows platforms
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Python/pythonrun.c

Modified: python/branches/py3k/Python/pythonrun.c
==============================================================================
--- python/branches/py3k/Python/pythonrun.c	(original)
+++ python/branches/py3k/Python/pythonrun.c	Fri Jan  2 22:24:04 2009
@@ -23,7 +23,9 @@
 #include <signal.h>
 #endif
 
+#ifdef MS_WINDOWS
 #include "malloc.h" /* for alloca */
+#endif
 
 #ifdef HAVE_LANGINFO_H
 #include <locale.h>


More information about the Python-checkins mailing list