[pypy-commit] pypy py3.3: Add missing include for openpty()

rlamy noreply at buildbot.pypy.org
Wed Sep 23 17:07:40 CEST 2015


Author: Ronan Lamy <ronan.lamy at gmail.com>
Branch: py3.3
Changeset: r79790:4a280d6a4947
Date: 2015-09-23 16:05 +0100
http://bitbucket.org/pypy/pypy/changeset/4a280d6a4947/

Log:	Add missing include for openpty()

diff --git a/rpython/rlib/rposix.py b/rpython/rlib/rposix.py
--- a/rpython/rlib/rposix.py
+++ b/rpython/rlib/rposix.py
@@ -249,7 +249,7 @@
 else:
     includes = ['unistd.h',  'sys/types.h', 'sys/wait.h',
                 'utime.h', 'sys/time.h', 'sys/times.h',
-                'grp.h', 'dirent.h']
+                'grp.h', 'dirent.h', 'pty.h']
     libraries = ['util']
 eci = ExternalCompilationInfo(
     includes=includes,


More information about the pypy-commit mailing list